-- -- PostgreSQL database dump -- SET client_encoding = 'SQL_ASCII'; SET check_function_bodies = false; SET client_min_messages = warning; -- -- Name: frange; Type: SCHEMA; Schema: -; Owner: gilbertd -- CREATE SCHEMA frange; -- -- Name: genetic_code; Type: SCHEMA; Schema: -; Owner: gilbertd -- CREATE SCHEMA genetic_code; -- -- Name: godb; Type: SCHEMA; Schema: -; Owner: gilbertd -- CREATE SCHEMA godb; -- -- Name: SCHEMA public; Type: COMMENT; Schema: -; Owner: gilbertd -- COMMENT ON SCHEMA public IS 'Standard public schema'; -- -- Name: plpgsql; Type: PROCEDURAL LANGUAGE; Schema: -; Owner: -- CREATE PROCEDURAL LANGUAGE plpgsql; SET search_path = public, pg_catalog; -- -- Name: feature_by_fx_type; Type: TYPE; Schema: public; Owner: gilbertd -- CREATE TYPE feature_by_fx_type AS ( feature_id integer, depth integer ); -- -- Name: soi_type; Type: TYPE; Schema: public; Owner: gilbertd -- CREATE TYPE soi_type AS ( type_id integer, subject_id integer, object_id integer ); SET search_path = frange, pg_catalog; -- -- Name: _fill_featuregroup(integer, integer); Type: FUNCTION; Schema: frange; Owner: gilbertd -- CREATE FUNCTION _fill_featuregroup(integer, integer) RETURNS integer AS ' DECLARE groupid alias for $1; parentid alias for $2; g featuregroup%ROWTYPE; BEGIN FOR g IN SELECT DISTINCT 0, fr.subject_id, fr.object_id, groupid, fl.srcfeature_id, fl.fmin, fl.fmax, fl.strand, 0 FROM feature_relationship AS fr, featureloc AS fl WHERE fr.object_id = parentid AND fr.subject_id = fl.feature_id LOOP INSERT INTO featuregroup (subject_id, object_id, group_id, srcfeature_id, fmin, fmax, strand, is_root) VALUES (g.subject_id, g.object_id, g.group_id, g.srcfeature_id, g.fmin, g.fmax, g.strand, 0); PERFORM _fill_featuregroup(groupid,g.subject_id); END LOOP; RETURN 1; END; ' LANGUAGE plpgsql; -- -- Name: fill_featuregroup(); Type: FUNCTION; Schema: frange; Owner: gilbertd -- CREATE FUNCTION fill_featuregroup() RETURNS integer AS ' DECLARE p featuregroup%ROWTYPE; l featureloc%ROWTYPE; isa int; c int; BEGIN TRUNCATE featuregroup; SELECT INTO isa cvterm_id FROM cvterm WHERE (name = ''isa'' OR name = ''is_a''); -- Recursion is the biggest performance killer for this function. -- We can dodge the first round of recursion using the "fr1 / GROUP BY" approach. -- Luckily, most feature graphs are only 2 levels deep, so most recursion is -- avoidable. RAISE NOTICE ''Loading root and singleton features.''; FOR p IN SELECT DISTINCT 0, f.feature_id, f.feature_id, f.feature_id, srcfeature_id, fmin, fmax, strand, 1 FROM feature AS f LEFT JOIN feature_relationship ON (f.feature_id = object_id) LEFT JOIN featureloc ON (f.feature_id = featureloc.feature_id) WHERE f.feature_id NOT IN ( SELECT subject_id FROM feature_relationship ) AND srcfeature_id IS NOT NULL LOOP INSERT INTO featuregroup (subject_id, object_id, group_id, srcfeature_id, fmin, fmax, strand, is_root) VALUES (p.object_id, p.object_id, p.object_id, p.srcfeature_id, p.fmin, p.fmax, p.strand, 1); END LOOP; RAISE NOTICE ''Loading child features. If your database contains grandchild''; RAISE NOTICE ''features, they will be loaded recursively and may take a long time.''; FOR p IN SELECT DISTINCT 0, fr0.subject_id, fr0.object_id, fr0.object_id, fl.srcfeature_id, fl.fmin, fl.fmax, fl.strand, count(fr1.subject_id) FROM feature_relationship AS fr0 LEFT JOIN feature_relationship AS fr1 ON ( fr0.subject_id = fr1.object_id), featureloc AS fl WHERE fr0.subject_id = fl.feature_id AND fr0.object_id IN ( SELECT f.feature_id FROM feature AS f LEFT JOIN feature_relationship ON (f.feature_id = object_id) LEFT JOIN featureloc ON (f.feature_id = featureloc.feature_id) WHERE f.feature_id NOT IN ( SELECT subject_id FROM feature_relationship ) AND f.feature_id IN ( SELECT object_id FROM feature_relationship ) AND srcfeature_id IS NOT NULL ) GROUP BY fr0.subject_id, fr0.object_id, fl.srcfeature_id, fl.fmin, fl.fmax, fl.strand LOOP INSERT INTO featuregroup (subject_id, object_id, group_id, srcfeature_id, fmin, fmax, strand, is_root) VALUES (p.subject_id, p.object_id, p.object_id, p.srcfeature_id, p.fmin, p.fmax, p.strand, 0); IF ( p.is_root > 0 ) THEN PERFORM _fill_featuregroup(p.subject_id,p.subject_id); END IF; END LOOP; RETURN 1; END; ' LANGUAGE plpgsql; SET default_tablespace = ''; SET default_with_oids = false; -- -- Name: featuregroup; Type: TABLE; Schema: frange; Owner: gilbertd; Tablespace: -- CREATE TABLE featuregroup ( featuregroup_id serial NOT NULL, subject_id integer NOT NULL, object_id integer NOT NULL, group_id integer NOT NULL, srcfeature_id integer, fmin integer, fmax integer, strand integer, is_root integer DEFAULT 0 NOT NULL ); -- -- Name: groupcontains(integer, integer, character varying); Type: FUNCTION; Schema: frange; Owner: gilbertd -- CREATE FUNCTION groupcontains(integer, integer, character varying) RETURNS SETOF featuregroup AS ' SELECT * FROM groupoverlaps($1,$2,$3) WHERE fmin <= $1 AND fmax >= $2 ' LANGUAGE sql; -- -- Name: groupcontains(integer[], integer[], character varying[]); Type: FUNCTION; Schema: frange; Owner: gilbertd -- CREATE FUNCTION groupcontains(integer[], integer[], character varying[]) RETURNS SETOF featuregroup AS ' DECLARE mins alias for $1; maxs alias for $2; srcs alias for $3; f featuregroup%ROWTYPE; i int; s int; BEGIN i := 1; FOR i in array_lower( mins, 1 ) .. array_upper( mins, 1 ) LOOP SELECT INTO s feature_id FROM feature WHERE uniquename = srcs[i]; FOR f IN SELECT * FROM featuregroup WHERE group_id IN ( SELECT group_id FROM featuregroup WHERE (srcfeature_id = s OR srcfeature_id IS NULL) AND fmin <= mins[i] AND fmax >= maxs[i] AND group_id IN ( SELECT group_id FROM groupoverlaps( mins[i], maxs[i] ) WHERE srcfeature_id = s ) ) LOOP RETURN NEXT f; END LOOP; END LOOP; RETURN; END; ' LANGUAGE plpgsql; -- -- Name: groupidentical(integer, integer, character varying); Type: FUNCTION; Schema: frange; Owner: gilbertd -- CREATE FUNCTION groupidentical(integer, integer, character varying) RETURNS SETOF featuregroup AS ' SELECT * FROM groupoverlaps($1,$2,$3) WHERE fmin = $1 AND fmax = $2 ' LANGUAGE sql; -- -- Name: groupidentical(integer[], integer[], character varying[]); Type: FUNCTION; Schema: frange; Owner: gilbertd -- CREATE FUNCTION groupidentical(integer[], integer[], character varying[]) RETURNS SETOF featuregroup AS ' DECLARE mins alias for $1; maxs alias for $2; srcs alias for $3; f featuregroup%ROWTYPE; i int; s int; BEGIN i := 1; FOR i in array_lower( mins, 1 ) .. array_upper( mins, 1 ) LOOP SELECT INTO s feature_id FROM feature WHERE uniquename = srcs[i]; FOR f IN SELECT * FROM featuregroup WHERE group_id IN ( SELECT group_id FROM featuregroup WHERE (srcfeature_id = s OR srcfeature_id IS NULL) AND fmin = mins[i] AND fmax = maxs[i] AND group_id IN ( SELECT group_id FROM groupoverlaps( mins[i], maxs[i] ) WHERE srcfeature_id = s ) ) LOOP RETURN NEXT f; END LOOP; END LOOP; RETURN; END; ' LANGUAGE plpgsql; -- -- Name: groupinside(integer, integer, character varying); Type: FUNCTION; Schema: frange; Owner: gilbertd -- CREATE FUNCTION groupinside(integer, integer, character varying) RETURNS SETOF featuregroup AS ' SELECT * FROM groupoverlaps($1,$2,$3) WHERE fmin >= $1 AND fmax <= $2 ' LANGUAGE sql; -- -- Name: groupinside(integer[], integer[], character varying[]); Type: FUNCTION; Schema: frange; Owner: gilbertd -- CREATE FUNCTION groupinside(integer[], integer[], character varying[]) RETURNS SETOF featuregroup AS ' DECLARE mins alias for $1; maxs alias for $2; srcs alias for $3; f featuregroup%ROWTYPE; i int; s int; BEGIN i := 1; FOR i in array_lower( mins, 1 ) .. array_upper( mins, 1 ) LOOP SELECT INTO s feature_id FROM feature WHERE uniquename = srcs[i]; FOR f IN SELECT * FROM featuregroup WHERE group_id IN ( SELECT group_id FROM featuregroup WHERE (srcfeature_id = s OR srcfeature_id IS NULL) AND fmin >= mins[i] AND fmax <= maxs[i] AND group_id IN ( SELECT group_id FROM groupoverlaps( mins[i], maxs[i] ) WHERE srcfeature_id = s ) ) LOOP RETURN NEXT f; END LOOP; END LOOP; RETURN; END; ' LANGUAGE plpgsql; -- -- Name: groupoverlaps(integer, integer, character varying); Type: FUNCTION; Schema: frange; Owner: gilbertd -- CREATE FUNCTION groupoverlaps(integer, integer, character varying) RETURNS SETOF featuregroup AS ' SELECT g2.* FROM featuregroup g1, featuregroup g2 WHERE g1.is_root = 1 AND ( g1.srcfeature_id = g2.srcfeature_id OR g2.srcfeature_id IS NULL ) AND g1.group_id = g2.group_id AND g1.srcfeature_id = (SELECT feature_id FROM feature WHERE uniquename = $3) AND boxquery($1, $2) @ boxrange(g1.fmin,g2.fmax) ' LANGUAGE sql; -- -- Name: groupoverlaps(integer, integer); Type: FUNCTION; Schema: frange; Owner: gilbertd -- CREATE FUNCTION groupoverlaps(integer, integer) RETURNS SETOF featuregroup AS ' SELECT * FROM featuregroup WHERE is_root = 1 AND boxquery($1, $2) @ boxrange(fmin,fmax) ' LANGUAGE sql; -- -- Name: groupoverlaps(integer[], integer[], character varying[]); Type: FUNCTION; Schema: frange; Owner: gilbertd -- CREATE FUNCTION groupoverlaps(integer[], integer[], character varying[]) RETURNS SETOF featuregroup AS ' DECLARE mins alias for $1; maxs alias for $2; srcs alias for $3; f featuregroup%ROWTYPE; i int; s int; BEGIN i := 1; FOR i in array_lower( mins, 1 ) .. array_upper( mins, 1 ) LOOP SELECT INTO s feature_id FROM feature WHERE uniquename = srcs[i]; FOR f IN SELECT * FROM featuregroup WHERE group_id IN ( SELECT group_id FROM featuregroup WHERE (srcfeature_id = s OR srcfeature_id IS NULL) AND group_id IN ( SELECT group_id FROM groupoverlaps( mins[i], maxs[i] ) WHERE srcfeature_id = s ) ) LOOP RETURN NEXT f; END LOOP; END LOOP; RETURN; END; ' LANGUAGE plpgsql; SET search_path = public, pg_catalog; -- -- Name: _fill_cvtermpath4node(integer, integer, integer, integer, integer); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION _fill_cvtermpath4node(integer, integer, integer, integer, integer) RETURNS integer AS ' DECLARE origin alias for $1; child_id alias for $2; cvid alias for $3; typeid alias for $4; depth alias for $5; cterm cvterm_relationship%ROWTYPE; exist_c int; BEGIN --- RAISE NOTICE ''depth=% root=%'', depth,child_id; --- not check type_id as it may be null and not very meaningful in cvtermpath when pathdistance > 1 SELECT INTO exist_c count(*) FROM cvtermpath WHERE cv_id = cvid AND object_id = origin AND subject_id = child_id AND pathdistance = depth; IF (exist_c = 0) THEN INSERT INTO cvtermpath (object_id, subject_id, cv_id, type_id, pathdistance) VALUES(origin, child_id, cvid, typeid, depth); END IF; FOR cterm IN SELECT * FROM cvterm_relationship WHERE object_id = child_id LOOP PERFORM _fill_cvtermpath4node(origin, cterm.subject_id, cvid, cterm.type_id, depth+1); END LOOP; RETURN 1; END; ' LANGUAGE plpgsql; -- -- Name: _fill_cvtermpath4node2detect_cycle(integer, integer, integer, integer, integer); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION _fill_cvtermpath4node2detect_cycle(integer, integer, integer, integer, integer) RETURNS integer AS ' DECLARE origin alias for $1; child_id alias for $2; cvid alias for $3; typeid alias for $4; depth alias for $5; cterm cvterm_relationship%ROWTYPE; exist_c int; ccount int; ecount int; rtn int; BEGIN EXECUTE ''SELECT * FROM tmpcvtermpath p1, tmpcvtermpath p2 WHERE p1.subject_id=p2.object_id AND p1.object_id=p2.subject_id AND p1.object_id = ''|| origin || '' AND p2.subject_id = '' || child_id || ''AND '' || depth || ''> 0''; GET DIAGNOSTICS ccount = ROW_COUNT; IF (ccount > 0) THEN --RAISE EXCEPTION ''FOUND CYCLE: node % on cycle path'',origin; RETURN origin; END IF; EXECUTE ''SELECT * FROM tmpcvtermpath WHERE cv_id = '' || cvid || '' AND object_id = '' || origin || '' AND subject_id = '' || child_id || '' AND '' || origin || ''<>'' || child_id; GET DIAGNOSTICS ecount = ROW_COUNT; IF (ecount > 0) THEN --RAISE NOTICE ''FOUND TWICE (node), will check root obj % subj %'',origin, child_id; SELECT INTO rtn _fill_cvtermpath4root2detect_cycle(child_id, cvid); IF (rtn > 0) THEN RETURN rtn; END IF; END IF; EXECUTE ''SELECT * FROM tmpcvtermpath WHERE cv_id = '' || cvid || '' AND object_id = '' || origin || '' AND subject_id = '' || child_id || '' AND pathdistance = '' || depth; GET DIAGNOSTICS exist_c = ROW_COUNT; IF (exist_c = 0) THEN EXECUTE ''INSERT INTO tmpcvtermpath (object_id, subject_id, cv_id, type_id, pathdistance) VALUES('' || origin || '', '' || child_id || '', '' || cvid || '', '' || typeid || '', '' || depth || '')''; END IF; FOR cterm IN SELECT * FROM cvterm_relationship WHERE object_id = child_id LOOP --RAISE NOTICE ''DOING for node, % %'', origin, cterm.subject_id; SELECT INTO rtn _fill_cvtermpath4node2detect_cycle(origin, cterm.subject_id, cvid, cterm.type_id, depth+1); IF (rtn > 0) THEN RETURN rtn; END IF; END LOOP; RETURN 0; END; ' LANGUAGE plpgsql; -- -- Name: _fill_cvtermpath4root(integer, integer); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION _fill_cvtermpath4root(integer, integer) RETURNS integer AS ' DECLARE rootid alias for $1; cvid alias for $2; ttype int; cterm cvterm_relationship%ROWTYPE; child cvterm_relationship%ROWTYPE; BEGIN SELECT INTO ttype cvterm_id FROM cvterm WHERE (name = ''isa'' OR name = ''is_a''); PERFORM _fill_cvtermpath4node(rootid, rootid, cvid, ttype, 0); FOR cterm IN SELECT * FROM cvterm_relationship WHERE object_id = rootid LOOP PERFORM _fill_cvtermpath4root(cterm.subject_id, cvid); -- RAISE NOTICE ''DONE for term, %'', cterm.subject_id; END LOOP; RETURN 1; END; ' LANGUAGE plpgsql; -- -- Name: _fill_cvtermpath4root2detect_cycle(integer, integer); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION _fill_cvtermpath4root2detect_cycle(integer, integer) RETURNS integer AS ' DECLARE rootid alias for $1; cvid alias for $2; ttype int; ccount int; cterm cvterm_relationship%ROWTYPE; child cvterm_relationship%ROWTYPE; rtn int; BEGIN SELECT INTO ttype cvterm_id FROM cvterm WHERE (name = ''isa'' OR name = ''is_a''); SELECT INTO rtn _fill_cvtermpath4node2detect_cycle(rootid, rootid, cvid, ttype, 0); IF (rtn > 0) THEN RETURN rtn; END IF; FOR cterm IN SELECT * FROM cvterm_relationship WHERE object_id = rootid LOOP EXECUTE ''SELECT * FROM tmpcvtermpath p1, tmpcvtermpath p2 WHERE p1.subject_id=p2.object_id AND p1.object_id=p2.subject_id AND p1.object_id='' || rootid || '' AND p1.subject_id='' || cterm.subject_id; GET DIAGNOSTICS ccount = ROW_COUNT; IF (ccount > 0) THEN --RAISE NOTICE ''FOUND TWICE (root), will check root obj % subj %'',rootid,cterm.subject_id; SELECT INTO rtn _fill_cvtermpath4node2detect_cycle(rootid, cterm.subject_id, cvid, ttype, 0); IF (rtn > 0) THEN RETURN rtn; END IF; ELSE SELECT INTO rtn _fill_cvtermpath4root2detect_cycle(cterm.subject_id, cvid); IF (rtn > 0) THEN RETURN rtn; END IF; END IF; END LOOP; RETURN 0; END; ' LANGUAGE plpgsql; -- -- Name: _fill_cvtermpath4soi(integer, integer); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION _fill_cvtermpath4soi(integer, integer) RETURNS integer AS ' DECLARE rootid alias for $1; cvid alias for $2; ttype int; cterm soi_type%ROWTYPE; BEGIN SELECT INTO ttype cvterm_id FROM cvterm WHERE name = ''isa''; --RAISE NOTICE ''got ttype %'',ttype; PERFORM _fill_cvtermpath4soinode(rootid, rootid, cvid, ttype, 0); FOR cterm IN SELECT tmp_type AS type_id, subject_id FROM tmpcvtr WHERE object_id = rootid LOOP PERFORM _fill_cvtermpath4soi(cterm.subject_id, cvid); END LOOP; RETURN 1; END; ' LANGUAGE plpgsql; -- -- Name: _fill_cvtermpath4soinode(integer, integer, integer, integer, integer); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION _fill_cvtermpath4soinode(integer, integer, integer, integer, integer) RETURNS integer AS ' DECLARE origin alias for $1; child_id alias for $2; cvid alias for $3; typeid alias for $4; depth alias for $5; cterm soi_type%ROWTYPE; exist_c int; BEGIN --RAISE NOTICE ''depth=% o=%, root=%, cv=%, t=%'', depth,origin,child_id,cvid,typeid; SELECT INTO exist_c count(*) FROM cvtermpath WHERE cv_id = cvid AND object_id = origin AND subject_id = child_id AND pathdistance = depth; --- longest path IF (exist_c > 0) THEN UPDATE cvtermpath SET pathdistance = depth WHERE cv_id = cvid AND object_id = origin AND subject_id = child_id; ELSE INSERT INTO cvtermpath (object_id, subject_id, cv_id, type_id, pathdistance) VALUES(origin, child_id, cvid, typeid, depth); END IF; FOR cterm IN SELECT tmp_type AS type_id, subject_id FROM tmpcvtr WHERE object_id = child_id LOOP PERFORM _fill_cvtermpath4soinode(origin, cterm.subject_id, cvid, cterm.type_id, depth+1); END LOOP; RETURN 1; END; ' LANGUAGE plpgsql; -- -- Name: cvtermpath; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE cvtermpath ( cvtermpath_id serial NOT NULL, type_id integer, subject_id integer NOT NULL, object_id integer NOT NULL, cv_id integer NOT NULL, pathdistance integer ); -- -- Name: TABLE cvtermpath; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE cvtermpath IS 'The reflexive transitive closure of the cvterm_relationship relation. For a full discussion, see the file populating-cvtermpath.txt in this directory'; -- -- Name: COLUMN cvtermpath.type_id; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN cvtermpath.type_id IS 'The relationship type that this is a closure over. If null, then this is a closure over ALL relationship types. If non-null, then this references a relationship cvterm - note that the closure will apply to both this relationship AND the OBO_REL:is_a (subclass) relationship'; -- -- Name: COLUMN cvtermpath.cv_id; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN cvtermpath.cv_id IS 'Closures will mostly be within one cv. If the closure of a relationship traverses a cv, then this refers to the cv of the object_id cvterm'; -- -- Name: COLUMN cvtermpath.pathdistance; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN cvtermpath.pathdistance IS 'The number of steps required to get from the subject cvterm to the object cvterm, counting from zero (reflexive relationship)'; -- -- Name: _get_all_object_ids(integer); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION _get_all_object_ids(integer) RETURNS SETOF cvtermpath AS ' DECLARE leaf alias for $1; cterm cvtermpath%ROWTYPE; cterm2 cvtermpath%ROWTYPE; BEGIN FOR cterm IN SELECT * FROM cvterm_relationship WHERE subject_id = leaf LOOP RETURN NEXT cterm; FOR cterm2 IN SELECT * FROM _get_all_object_ids(cterm.object_id) LOOP RETURN NEXT cterm2; END LOOP; END LOOP; RETURN; END; ' LANGUAGE plpgsql; -- -- Name: _get_all_subject_ids(integer); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION _get_all_subject_ids(integer) RETURNS SETOF cvtermpath AS ' DECLARE root alias for $1; cterm cvtermpath%ROWTYPE; cterm2 cvtermpath%ROWTYPE; BEGIN FOR cterm IN SELECT * FROM cvterm_relationship WHERE object_id = root LOOP RETURN NEXT cterm; FOR cterm2 IN SELECT * FROM _get_all_subject_ids(cterm.subject_id) LOOP RETURN NEXT cterm2; END LOOP; END LOOP; RETURN; END; ' LANGUAGE plpgsql; -- -- Name: boxquery(integer, integer); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION boxquery(integer, integer) RETURNS box AS 'SELECT box (create_point($1, $2), create_point($1, $2))' LANGUAGE sql IMMUTABLE; -- -- Name: boxrange(integer, integer); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION boxrange(integer, integer) RETURNS box AS 'SELECT box (create_point(0, $1), create_point($2,500000000))' LANGUAGE sql IMMUTABLE; -- -- Name: complement_residues(text); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION complement_residues(text) RETURNS text AS 'SELECT (translate($1, ''acgtrymkswhbvdnxACGTRYMKSWHBVDNX'', ''tgcayrkmswdvbhnxTGCAYRKMSWDVBHNX''))' LANGUAGE sql; -- -- Name: concat_pair(text, text); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION concat_pair(text, text) RETURNS text AS 'SELECT $1 || $2' LANGUAGE sql; -- -- Name: create_point(integer, integer); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION create_point(integer, integer) RETURNS point AS 'SELECT point ($1, $2)' LANGUAGE sql; -- -- Name: create_soi(); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION create_soi() RETURNS integer AS ' DECLARE parent soi_type%ROWTYPE; isa_id cvterm.cvterm_id%TYPE; soi_term TEXT := ''soi''; soi_def TEXT := ''ontology of SO feature instantiated in database''; soi_cvid INTEGER; soiterm_id INTEGER; pcount INTEGER; count INTEGER := 0; cquery TEXT; BEGIN SELECT INTO isa_id cvterm_id FROM cvterm WHERE name = ''isa''; SELECT INTO soi_cvid cv_id FROM cv WHERE name = soi_term; IF (soi_cvid > 0) THEN DELETE FROM cvtermpath WHERE cv_id = soi_cvid; DELETE FROM cvterm WHERE cv_id = soi_cvid; ELSE INSERT INTO cv (name, definition) VALUES(soi_term, soi_def); END IF; SELECT INTO soi_cvid cv_id FROM cv WHERE name = soi_term; INSERT INTO cvterm (name, cv_id) VALUES(soi_term, soi_cvid); SELECT INTO soiterm_id cvterm_id FROM cvterm WHERE name = soi_term; CREATE TEMP TABLE tmpcvtr (tmp_type INT, type_id INT, subject_id INT, object_id INT); CREATE UNIQUE INDEX u_tmpcvtr ON tmpcvtr(subject_id, object_id); INSERT INTO tmpcvtr (tmp_type, type_id, subject_id, object_id) SELECT DISTINCT isa_id, soiterm_id, f.type_id, soiterm_id FROM feature f, cvterm t WHERE f.type_id = t.cvterm_id AND f.type_id > 0; EXECUTE ''select * from tmpcvtr where type_id = '' || soiterm_id || '';''; get diagnostics pcount = row_count; raise notice ''all types in feature %'',pcount; --- do it hard way, delete any child feature type from above (NOT IN clause did not work) FOR parent IN SELECT DISTINCT 0, t.cvterm_id, 0 FROM feature c, feature_relationship fr, cvterm t WHERE t.cvterm_id = c.type_id AND c.feature_id = fr.subject_id LOOP DELETE FROM tmpcvtr WHERE type_id = soiterm_id and object_id = soiterm_id AND subject_id = parent.subject_id; END LOOP; EXECUTE ''select * from tmpcvtr where type_id = '' || soiterm_id || '';''; get diagnostics pcount = row_count; raise notice ''all types in feature after delete child %'',pcount; --- create feature type relationship (store in tmpcvtr) CREATE TEMP TABLE tmproot (cv_id INTEGER not null, cvterm_id INTEGER not null, status INTEGER DEFAULT 0); cquery := ''SELECT * FROM tmproot tmp WHERE tmp.status = 0;''; ---temp use tmpcvtr to hold instantiated SO relationship for speed ---use soterm_id as type_id, will delete from tmpcvtr ---us tmproot for this as well INSERT INTO tmproot (cv_id, cvterm_id, status) SELECT DISTINCT soi_cvid, c.subject_id, 0 FROM tmpcvtr c WHERE c.object_id = soiterm_id; EXECUTE cquery; GET DIAGNOSTICS pcount = ROW_COUNT; WHILE (pcount > 0) LOOP RAISE NOTICE ''num child temp (to be inserted) in tmpcvtr: %'',pcount; INSERT INTO tmpcvtr (tmp_type, type_id, subject_id, object_id) SELECT DISTINCT fr.type_id, soiterm_id, c.type_id, p.cvterm_id FROM feature c, feature_relationship fr, tmproot p, feature pf, cvterm t WHERE c.feature_id = fr.subject_id AND fr.object_id = pf.feature_id AND p.cvterm_id = pf.type_id AND t.cvterm_id = c.type_id AND p.status = 0; UPDATE tmproot SET status = 1 WHERE status = 0; INSERT INTO tmproot (cv_id, cvterm_id, status) SELECT DISTINCT soi_cvid, c.type_id, 0 FROM feature c, feature_relationship fr, tmproot tmp, feature p, cvterm t WHERE c.feature_id = fr.subject_id AND fr.object_id = p.feature_id AND tmp.cvterm_id = p.type_id AND t.cvterm_id = c.type_id AND tmp.status = 1; UPDATE tmproot SET status = 2 WHERE status = 1; EXECUTE cquery; GET DIAGNOSTICS pcount = ROW_COUNT; END LOOP; DELETE FROM tmproot; ---get transitive closure for soi PERFORM _fill_cvtermpath4soi(soiterm_id, soi_cvid); DROP TABLE tmpcvtr; DROP TABLE tmproot; RETURN 1; END; ' LANGUAGE plpgsql; -- -- Name: feature; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE feature ( feature_id serial NOT NULL, dbxref_id integer, organism_id integer NOT NULL, name character varying(255), uniquename text NOT NULL, residues text, seqlen integer, md5checksum character(32), type_id integer NOT NULL, is_analysis boolean DEFAULT false NOT NULL, is_obsolete boolean DEFAULT false NOT NULL, timeaccessioned timestamp without time zone DEFAULT now() NOT NULL, timelastmodified timestamp without time zone DEFAULT now() NOT NULL ); -- -- Name: TABLE feature; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE feature IS 'A feature is a biological sequence or a section of a biological sequence, or a collection of such sections. Examples include genes, exons, transcripts, regulatory regions, polypeptides, protein domains, chromosome sequences, sequence variations, cross-genome match regions such as hits and HSPs and so on; see the Sequence Ontology for more'; -- -- Name: COLUMN feature.dbxref_id; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN feature.dbxref_id IS 'An optional primary public stable identifier for this feature. Secondary identifiers and external dbxrefs go in table:feature_dbxref'; -- -- Name: COLUMN feature.organism_id; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN feature.organism_id IS 'The organism to which this feature belongs. This column is mandatory'; -- -- Name: COLUMN feature.name; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN feature.name IS 'The optional human-readable common name for a feature, for display purposes'; -- -- Name: COLUMN feature.uniquename; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN feature.uniquename IS 'The unique name for a feature; may not be necessarily be particularly human-readable, although this is prefered. This name must be unique for this type of feature within this organism'; -- -- Name: COLUMN feature.residues; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN feature.residues IS 'A sequence of alphabetic characters representing biological residues (nucleic acids, amino acids). This column does not need to be manifested for all features; it is optional for features such as exons where the residues can be derived from the featureloc. It is recommended that the value for this column be manifested for features which may may non-contiguous sublocations (eg transcripts), since derivation at query time is non-trivial. For expressed sequence, the DNA sequence should be used rather than the RNA sequence'; -- -- Name: COLUMN feature.seqlen; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN feature.seqlen IS 'The length of the residue feature. See column:residues. This column is partially redundant with the residues column, and also with featureloc. This column is required because the location may be unknown and the residue sequence may not be manifested, yet it may be desirable to store and query the length of the feature. The seqlen should always be manifested where the length of the sequence is known'; -- -- Name: COLUMN feature.md5checksum; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN feature.md5checksum IS 'The 32-character checksum of the sequence, calculated using the MD5 algorithm. This is practically guaranteed to be unique for any feature. This column thus acts as a unique identifier on the mathematical sequence'; -- -- Name: COLUMN feature.type_id; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN feature.type_id IS 'A required reference to a table:cvterm giving the feature type. This will typically be a Sequence Ontology identifier. This column is thus used to subclass the feature table'; -- -- Name: COLUMN feature.is_analysis; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN feature.is_analysis IS 'Boolean indicating whether this feature is annotated or the result of an automated analysis. Analysis results also use the companalysis module. Note that the dividing line between analysis/annotation may be fuzzy, this should be determined on a per-project basis in a consistent manner. One requirement is that there should only be one non-analysis version of each wild-type gene feature in a genome, whereas the same gene feature can be predicted multiple times in different analyses'; -- -- Name: COLUMN feature.is_obsolete; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN feature.is_obsolete IS 'Boolean indicating whether this feature has been obsoleted. Some chado instances may choose to simply remove the feature altogether, others may choose to keep an obsolete row in the table'; -- -- Name: COLUMN feature.timeaccessioned; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN feature.timeaccessioned IS 'for handling object accession/modification timestamps (as opposed to db auditing info, handled elsewhere). The expectation is that these fields would be available to software interacting with chado'; -- -- Name: COLUMN feature.timelastmodified; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN feature.timelastmodified IS 'for handling object accession/modification timestamps (as opposed to db auditing info, handled elsewhere). The expectation is that these fields would be available to software interacting with chado'; -- -- Name: feature_disjoint_from(integer); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION feature_disjoint_from(integer) RETURNS SETOF feature AS 'SELECT feature.* FROM feature INNER JOIN featureloc AS x ON (x.feature_id=feature.feature_id) INNER JOIN featureloc AS y ON (y.feature_id=$1) WHERE x.srcfeature_id = y.srcfeature_id AND ( x.fmax < y.fmin OR x.fmin > y.fmax ) ' LANGUAGE sql; -- -- Name: feature_overlaps(integer); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION feature_overlaps(integer) RETURNS SETOF feature AS 'SELECT feature.* FROM feature INNER JOIN featureloc AS x ON (x.feature_id=feature.feature_id) INNER JOIN featureloc AS y ON (y.feature_id=$1) WHERE x.srcfeature_id = y.srcfeature_id AND ( x.fmax >= y.fmin AND x.fmin <= y.fmax ) ' LANGUAGE sql; -- -- Name: featureloc; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE featureloc ( featureloc_id serial NOT NULL, feature_id integer NOT NULL, srcfeature_id integer, fmin integer, is_fmin_partial boolean DEFAULT false NOT NULL, fmax integer, is_fmax_partial boolean DEFAULT false NOT NULL, strand smallint, phase integer, residue_info text, locgroup integer DEFAULT 0 NOT NULL, rank integer DEFAULT 0 NOT NULL, CONSTRAINT featureloc_c2 CHECK ((fmin <= fmax)) ); -- -- Name: TABLE featureloc; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE featureloc IS 'The location of a feature relative to another feature. IMPORTANT: INTERBASE COORDINATES ARE USED.(This is vital as it allows us to represent zero-length features eg splice sites, insertion points without an awkward fuzzy system). Features typically have exactly ONE location, but this need not be the case. Some features may not be localized (eg a gene that has been characterized genetically but no sequence/molecular info is available). NOTE ON MULTIPLE LOCATIONS: Each feature can have 0 or more locations. Multiple locations do NOT indicate non-contiguous locations (if a feature such as a transcript has a non-contiguous location, then the subfeatures such as exons should always be manifested). Instead, multiple featurelocs for a feature designate alternate locations or grouped locations; for instance, a feature designating a blast hit or hsp will have two locations, one on the query feature, one on the subject feature. features representing sequence variation could have alternate locations instantiated on a feature on the mutant strain. the column:rank is used to differentiate these different locations. Reflexive locations should never be stored - this is for -proper- (ie non-self) locations only; i.e. nothing should be located relative to itself'; -- -- Name: COLUMN featureloc.feature_id; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN featureloc.feature_id IS 'The feature that is being located. Any feature can have zero or more featurelocs'; -- -- Name: COLUMN featureloc.srcfeature_id; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN featureloc.srcfeature_id IS 'The source feature which this location is relative to. Every location is relative to another feature (however, this column is nullable, because the srcfeature may not be known). All locations are -proper- that is, nothing should be located relative to itself. No cycles are allowed in the featureloc graph'; -- -- Name: COLUMN featureloc.fmin; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN featureloc.fmin IS 'The leftmost/minimal boundary in the linear range represented by the featureloc. Sometimes (eg in bioperl) this is called -start- although this is confusing because it does not necessarily represent the 5-prime coordinate. IMPORTANT: This is space-based (INTERBASE) coordinates, counting from zero. To convert this to the leftmost position in a base-oriented system (eg GFF, bioperl), add 1 to fmin'; -- -- Name: COLUMN featureloc.is_fmin_partial; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN featureloc.is_fmin_partial IS 'This is typically false, but may be true if the value for column:fmin is inaccurate or the leftmost part of the range is unknown/unbounded'; -- -- Name: COLUMN featureloc.fmax; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN featureloc.fmax IS 'The rightmost/maximal boundary in the linear range represented by the featureloc. Sometimes (eg in bioperl) this is called -end- although this is confusing because it does not necessarily represent the 3-prime coordinate. IMPORTANT: This is space-based (INTERBASE) coordinates, counting from zero. No conversion is required to go from fmax to the rightmost coordinate in a base-oriented system that counts from 1 (eg GFF, bioperl)'; -- -- Name: COLUMN featureloc.is_fmax_partial; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN featureloc.is_fmax_partial IS 'This is typically false, but may be true if the value for column:fmax is inaccurate or the rightmost part of the range is unknown/unbounded'; -- -- Name: COLUMN featureloc.strand; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN featureloc.strand IS 'The orientation/directionality of the location. Should be 0,-1 or +1'; -- -- Name: COLUMN featureloc.phase; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN featureloc.phase IS 'phase of translation wrt srcfeature_id. Values are 0,1,2. It may not be possible to manifest this column for some features such as exons, because the phase is dependant on the spliceform (the same exon can appear in multiple spliceforms). This column is mostly useful for predicted exons and CDSs'; -- -- Name: COLUMN featureloc.residue_info; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN featureloc.residue_info IS 'Alternative residues, when these differ from feature.residues. for instance, a SNP feature located on a wild and mutant protein would have different alresidues. for alignment/similarity features, the altresidues is used to represent the alignment string (CIGAR format). Note on variation features; even if we dont want to instantiate a mutant chromosome/contig feature, we can still represent a SNP etc with 2 locations, one (rank 0) on the genome, the other (rank 1) would have most fields null, except for altresidues'; -- -- Name: COLUMN featureloc.locgroup; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN featureloc.locgroup IS 'This is used to manifest redundant, derivable extra locations for a feature. The default locgroup=0 is used for the DIRECT location of a feature. !! MOST CHADO USERS MAY NEVER USE featurelocs WITH logroup>0 !! Transitively derived locations are indicated with locgroup>0. For example, the position of an exon on a BAC and in global chromosome coordinates. This column is used to differentiate these groupings of locations. the default locgroup 0 is used for the main/primary location, from which the others can be derived via coordinate transformations. another example of redundant locations is storing ORF coordinates relative to both transcript and genome. redundant locations open the possibility of the database getting into inconsistent states; this schema gives us the flexibility of both warehouse instantiations with redundant locations (easier for querying) and management instantiations with no redundant locations. An example of using both locgroup and rank: imagine a feature indicating a conserved region between the chromosomes of two different species. we may want to keep redundant locations on both contigs and chromosomes. we would thus have 4 locations for the single conserved region feature - two distinct locgroups (contig level and chromosome level) and two distinct ranks (for the two species)'; -- -- Name: COLUMN featureloc.rank; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN featureloc.rank IS 'Used when a feature has >1 location, otherwise the default rank 0 is used. Some features (eg blast hits and HSPs) have two locations - one on the query and one on the subject. Rank is used to differentiate these. Rank=0 is always used for the query, Rank=1 for the subject. For multiple alignments, assignment of rank is arbitrary. Rank is also used for sequence_variant features, such as SNPs. Rank=0 indicates the wildtype (or baseline) feature, Rank=1 indicates the mutant (or compared) feature'; -- -- Name: feature_subalignments(integer); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION feature_subalignments(integer) RETURNS SETOF featureloc AS ' DECLARE return_data featureloc%ROWTYPE; f_id ALIAS FOR $1; feature_data feature%rowtype; featureloc_data featureloc%rowtype; s text; fmin integer; slen integer; BEGIN --RAISE NOTICE ''feature_id is %'', featureloc_data.feature_id; SELECT INTO feature_data * FROM feature WHERE feature_id = f_id; FOR featureloc_data IN SELECT * FROM featureloc WHERE feature_id = f_id LOOP --RAISE NOTICE ''fmin is %'', featureloc_data.fmin; return_data.feature_id = f_id; return_data.srcfeature_id = featureloc_data.srcfeature_id; return_data.is_fmin_partial = featureloc_data.is_fmin_partial; return_data.is_fmax_partial = featureloc_data.is_fmax_partial; return_data.strand = featureloc_data.strand; return_data.phase = featureloc_data.phase; return_data.residue_info = featureloc_data.residue_info; return_data.locgroup = featureloc_data.locgroup; return_data.rank = featureloc_data.rank; s = feature_data.residues; fmin = featureloc_data.fmin; slen = char_length(s); WHILE char_length(s) LOOP --RAISE NOTICE ''residues is %'', s; --trim off leading match s = trim(leading ''|ATCGNatcgn'' from s); --if leading match detected IF slen > char_length(s) THEN return_data.fmin = fmin; return_data.fmax = featureloc_data.fmin + (slen - char_length(s)); --if the string started with a match, return it, --otherwise, trim the gaps first (ie do not return this iteration) RETURN NEXT return_data; END IF; --trim off leading gap s = trim(leading ''-'' from s); fmin = featureloc_data.fmin + (slen - char_length(s)); END LOOP; END LOOP; RETURN; END; ' LANGUAGE plpgsql; -- -- Name: featureloc_slice(integer, integer); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION featureloc_slice(integer, integer) RETURNS SETOF featureloc AS 'SELECT * from featureloc where boxquery($1, $2) @ boxrange(fmin,fmax)' LANGUAGE sql; -- -- Name: featureloc_slice(character varying, integer, integer); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION featureloc_slice(character varying, integer, integer) RETURNS SETOF featureloc AS 'SELECT featureloc.* FROM featureloc INNER JOIN feature AS srcf ON (srcf.feature_id = featureloc.srcfeature_id) WHERE boxquery($2, $3) @ boxrange(fmin,fmax) AND srcf.name = $1 ' LANGUAGE sql; -- -- Name: featureloc_slice(integer, integer, integer); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION featureloc_slice(integer, integer, integer) RETURNS SETOF featureloc AS 'SELECT * FROM featureloc WHERE boxquery($2, $3) @ boxrange(fmin,fmax) AND srcfeature_id = $1 ' LANGUAGE sql; -- -- Name: featureslice(integer, integer); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION featureslice(integer, integer) RETURNS SETOF featureloc AS 'SELECT * from featureloc where boxquery($1, $2) @ boxrange(fmin,fmax)' LANGUAGE sql; -- -- Name: fill_cvtermpath(integer); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION fill_cvtermpath(integer) RETURNS integer AS ' DECLARE cvid alias for $1; root cvterm%ROWTYPE; BEGIN DELETE FROM cvtermpath WHERE cv_id = cvid; FOR root IN SELECT DISTINCT t.* from cvterm t LEFT JOIN cvterm_relationship r ON (t.cvterm_id = r.subject_id) INNER JOIN cvterm_relationship r2 ON (t.cvterm_id = r2.object_id) WHERE t.cv_id = cvid AND r.subject_id is null LOOP PERFORM _fill_cvtermpath4root(root.cvterm_id, root.cv_id); END LOOP; RETURN 1; END; ' LANGUAGE plpgsql; -- -- Name: fill_cvtermpath(character varying); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION fill_cvtermpath(character varying) RETURNS integer AS ' DECLARE cvname alias for $1; cv_id int; rtn int; BEGIN SELECT INTO cv_id cv.cv_id from cv WHERE cv.name = cvname; SELECT INTO rtn fill_cvtermpath(cv_id); RETURN rtn; END; ' LANGUAGE plpgsql; -- -- Name: get_all_object_ids(integer); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION get_all_object_ids(integer) RETURNS SETOF cvtermpath AS ' DECLARE leaf alias for $1; cterm cvtermpath%ROWTYPE; exist_c int; BEGIN SELECT INTO exist_c count(*) FROM cvtermpath WHERE object_id = leaf and pathdistance <= 0; IF (exist_c > 0) THEN FOR cterm IN SELECT * FROM cvtermpath WHERE subject_id = leaf AND pathdistance > 0 LOOP RETURN NEXT cterm; END LOOP; ELSE FOR cterm IN SELECT * FROM _get_all_object_ids(leaf) LOOP RETURN NEXT cterm; END LOOP; END IF; RETURN; END; ' LANGUAGE plpgsql; -- -- Name: get_all_subject_ids(integer); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION get_all_subject_ids(integer) RETURNS SETOF cvtermpath AS ' DECLARE root alias for $1; cterm cvtermpath%ROWTYPE; exist_c int; BEGIN SELECT INTO exist_c count(*) FROM cvtermpath WHERE object_id = root and pathdistance <= 0; IF (exist_c > 0) THEN FOR cterm IN SELECT * FROM cvtermpath WHERE object_id = root and pathdistance > 0 LOOP RETURN NEXT cterm; END LOOP; ELSE FOR cterm IN SELECT * FROM _get_all_subject_ids(root) LOOP RETURN NEXT cterm; END LOOP; END IF; RETURN; END; ' LANGUAGE plpgsql; -- -- Name: get_cv_id_for_feature(); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION get_cv_id_for_feature() RETURNS integer AS 'SELECT cv_id FROM cv WHERE name=''sequence''' LANGUAGE sql; -- -- Name: get_cv_id_for_feature_relationsgip(); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION get_cv_id_for_feature_relationsgip() RETURNS integer AS 'SELECT cv_id FROM cv WHERE name=''relationship''' LANGUAGE sql; -- -- Name: get_cv_id_for_featureprop(); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION get_cv_id_for_featureprop() RETURNS integer AS 'SELECT cv_id FROM cv WHERE name=''feature_property''' LANGUAGE sql; -- -- Name: get_cycle_cvterm_id(integer, integer); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION get_cycle_cvterm_id(integer, integer) RETURNS integer AS ' DECLARE cvid alias for $1; rootid alias for $2; rtn int; BEGIN CREATE TEMP TABLE tmpcvtermpath(object_id int, subject_id int, cv_id int, type_id int, pathdistance int); CREATE INDEX tmp_cvtpath1 ON tmpcvtermpath(object_id, subject_id); SELECT INTO rtn _fill_cvtermpath4root2detect_cycle(rootid, cvid); IF (rtn > 0) THEN DROP TABLE tmpcvtermpath; RETURN rtn; END IF; DROP TABLE tmpcvtermpath; RETURN 0; END; ' LANGUAGE plpgsql; -- -- Name: get_cycle_cvterm_id(integer); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION get_cycle_cvterm_id(integer) RETURNS integer AS ' DECLARE cvid alias for $1; root cvterm%ROWTYPE; rtn int; BEGIN CREATE TEMP TABLE tmpcvtermpath(object_id int, subject_id int, cv_id int, type_id int, pathdistance int); CREATE INDEX tmp_cvtpath1 ON tmpcvtermpath(object_id, subject_id); FOR root IN SELECT DISTINCT t.* from cvterm t LEFT JOIN cvterm_relationship r ON (t.cvterm_id = r.subject_id) INNER JOIN cvterm_relationship r2 ON (t.cvterm_id = r2.object_id) WHERE t.cv_id = cvid AND r.subject_id is null LOOP SELECT INTO rtn _fill_cvtermpath4root2detect_cycle(root.cvterm_id, root.cv_id); IF (rtn > 0) THEN DROP TABLE tmpcvtermpath; RETURN rtn; END IF; END LOOP; DROP TABLE tmpcvtermpath; RETURN 0; END; ' LANGUAGE plpgsql; -- -- Name: get_cycle_cvterm_id(character varying); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION get_cycle_cvterm_id(character varying) RETURNS integer AS ' DECLARE cvname alias for $1; cv_id int; rtn int; BEGIN SELECT INTO cv_id cv.cv_id from cv WHERE cv.name = cvname; SELECT INTO rtn get_cycle_cvterm_id(cv_id); RETURN rtn; END; ' LANGUAGE plpgsql; -- -- Name: get_cycle_cvterm_ids(integer); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION get_cycle_cvterm_ids(integer) RETURNS SETOF integer AS ' DECLARE cvid alias for $1; root cvterm%ROWTYPE; rtn int; BEGIN FOR root IN SELECT DISTINCT t.* from cvterm t WHERE cv_id = cvid LOOP SELECT INTO rtn get_cycle_cvterm_id(cvid,root.cvterm_id); IF (rtn > 0) THEN RETURN NEXT rtn; END IF; END LOOP; RETURN; END; ' LANGUAGE plpgsql; -- -- Name: get_feature_id(character varying, character varying, character varying); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION get_feature_id(character varying, character varying, character varying) RETURNS integer AS ' SELECT feature_id FROM feature WHERE uniquename=$1 AND type_id=get_feature_type_id($2) AND organism_id=get_organism_id($3) ' LANGUAGE sql; -- -- Name: get_feature_ids(text); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION get_feature_ids(text) RETURNS SETOF feature_by_fx_type AS ' DECLARE sql alias for $1; myrc feature_by_fx_type%ROWTYPE; myrc2 feature_by_fx_type%ROWTYPE; myrc3 feature_by_fx_type%ROWTYPE; BEGIN FOR myrc IN EXECUTE sql LOOP RETURN NEXT myrc; FOR myrc2 IN SELECT * FROM get_up_feature_ids(myrc.feature_id) LOOP RETURN NEXT myrc2; END LOOP; FOR myrc3 IN SELECT * FROM get_sub_feature_ids(myrc.feature_id) LOOP RETURN NEXT myrc3; END LOOP; END LOOP; RETURN; END; ' LANGUAGE plpgsql; -- -- Name: get_feature_ids_by_child_count(character varying, character varying, integer, character varying, character); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION get_feature_ids_by_child_count(character varying, character varying, integer, character varying, character) RETURNS SETOF feature_by_fx_type AS ' DECLARE ptype alias for $1; ctype alias for $2; ccount alias for $3; operator alias for $4; is_an alias for $5; query TEXT; myrc feature_by_fx_type%ROWTYPE; myrc2 feature_by_fx_type %ROWTYPE; BEGIN query := ''SELECT DISTINCT f.feature_id FROM feature f INNER join (select count(*) as c, p.feature_id FROM feature p INNER join cvterm pt ON (p.type_id = pt.cvterm_id) INNER join feature_relationship fr ON (p.feature_id = fr.object_id) INNER join feature c ON (c.feature_id = fr.subject_id) INNER join cvterm ct ON (c.type_id = ct.cvterm_id) WHERE pt.name = '' || quote_literal(ptype) || '' AND ct.name = '' || quote_literal(ctype) || '' AND p.is_analysis = '' || quote_literal(is_an) || '' group by p.feature_id) as cq ON (cq.feature_id = f.feature_id) WHERE cq.c '' || operator || ccount || '';''; ---RAISE NOTICE ''%'', query; FOR myrc IN SELECT * FROM get_feature_ids(query) LOOP RETURN NEXT myrc; END LOOP; RETURN; END; ' LANGUAGE plpgsql; -- -- Name: get_feature_ids_by_ont(character varying, character varying); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION get_feature_ids_by_ont(character varying, character varying) RETURNS SETOF feature_by_fx_type AS ' DECLARE aspect alias for $1; term alias for $2; query TEXT; myrc feature_by_fx_type%ROWTYPE; myrc2 feature_by_fx_type%ROWTYPE; BEGIN query := ''SELECT DISTINCT fcvt.feature_id FROM feature_cvterm fcvt, cv, cvterm t WHERE cv.cv_id = t.cv_id AND t.cvterm_id = fcvt.cvterm_id AND cv.name = '' || quote_literal(aspect) || '' AND t.name = '' || quote_literal(term) || '';''; IF (STRPOS(term, ''%'') > 0) THEN query := ''SELECT DISTINCT fcvt.feature_id FROM feature_cvterm fcvt, cv, cvterm t WHERE cv.cv_id = t.cv_id AND t.cvterm_id = fcvt.cvterm_id AND cv.name = '' || quote_literal(aspect) || '' AND t.name like '' || quote_literal(term) || '';''; END IF; FOR myrc IN SELECT * FROM get_feature_ids(query) LOOP RETURN NEXT myrc; END LOOP; RETURN; END; ' LANGUAGE plpgsql; -- -- Name: get_feature_ids_by_ont_root(character varying, character varying); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION get_feature_ids_by_ont_root(character varying, character varying) RETURNS SETOF feature_by_fx_type AS ' DECLARE aspect alias for $1; term alias for $2; query TEXT; subquery TEXT; myrc feature_by_fx_type%ROWTYPE; myrc2 feature_by_fx_type%ROWTYPE; BEGIN subquery := ''SELECT t.cvterm_id FROM cv, cvterm t WHERE cv.cv_id = t.cv_id AND cv.name = '' || quote_literal(aspect) || '' AND t.name = '' || quote_literal(term) || '';''; IF (STRPOS(term, ''%'') > 0) THEN subquery := ''SELECT t.cvterm_id FROM cv, cvterm t WHERE cv.cv_id = t.cv_id AND cv.name = '' || quote_literal(aspect) || '' AND t.name like '' || quote_literal(term) || '';''; END IF; query := ''SELECT DISTINCT fcvt.feature_id FROM feature_cvterm fcvt INNER JOIN (SELECT cvterm_id FROM get_it_sub_cvterm_ids('' || quote_literal(subquery) || '')) AS ont ON (fcvt.cvterm_id = ont.cvterm_id);''; FOR myrc IN SELECT * FROM get_feature_ids(query) LOOP RETURN NEXT myrc; END LOOP; RETURN; END; ' LANGUAGE plpgsql; -- -- Name: get_feature_ids_by_property(character varying, character varying); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION get_feature_ids_by_property(character varying, character varying) RETURNS SETOF feature_by_fx_type AS ' DECLARE p_type alias for $1; p_val alias for $2; query TEXT; myrc feature_by_fx_type%ROWTYPE; myrc2 feature_by_fx_type%ROWTYPE; BEGIN query := ''SELECT DISTINCT fprop.feature_id FROM featureprop fprop, cvterm t WHERE t.cvterm_id = fprop.type_id AND t.name = '' || quote_literal(p_type) || '' AND fprop.value = '' || quote_literal(p_val) || '';''; IF (STRPOS(p_val, ''%'') > 0) THEN query := ''SELECT DISTINCT fprop.feature_id FROM featureprop fprop, cvterm t WHERE t.cvterm_id = fprop.type_id AND t.name = '' || quote_literal(p_type) || '' AND fprop.value like '' || quote_literal(p_val) || '';''; END IF; FOR myrc IN SELECT * FROM get_feature_ids(query) LOOP RETURN NEXT myrc; END LOOP; RETURN; END; ' LANGUAGE plpgsql; -- -- Name: get_feature_ids_by_propval(character varying); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION get_feature_ids_by_propval(character varying) RETURNS SETOF feature_by_fx_type AS ' DECLARE p_val alias for $1; query TEXT; myrc feature_by_fx_type%ROWTYPE; myrc2 feature_by_fx_type%ROWTYPE; BEGIN query := ''SELECT DISTINCT fprop.feature_id FROM featureprop fprop WHERE fprop.value = '' || quote_literal(p_val) || '';''; IF (STRPOS(p_val, ''%'') > 0) THEN query := ''SELECT DISTINCT fprop.feature_id FROM featureprop fprop WHERE fprop.value like '' || quote_literal(p_val) || '';''; END IF; FOR myrc IN SELECT * FROM get_feature_ids(query) LOOP RETURN NEXT myrc; END LOOP; RETURN; END; ' LANGUAGE plpgsql; -- -- Name: get_feature_ids_by_type(character varying, character); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION get_feature_ids_by_type(character varying, character) RETURNS SETOF feature_by_fx_type AS ' DECLARE gtype alias for $1; is_an alias for $2; query TEXT; myrc feature_by_fx_type%ROWTYPE; myrc2 feature_by_fx_type%ROWTYPE; BEGIN query := ''SELECT DISTINCT f.feature_id FROM feature f, cvterm t WHERE t.cvterm_id = f.type_id AND t.name = '' || quote_literal(gtype) || '' AND f.is_analysis = '' || quote_literal(is_an) || '';''; IF (STRPOS(gtype, ''%'') > 0) THEN query := ''SELECT DISTINCT f.feature_id FROM feature f, cvterm t WHERE t.cvterm_id = f.type_id AND t.name like '' || quote_literal(gtype) || '' AND f.is_analysis = '' || quote_literal(is_an) || '';''; END IF; FOR myrc IN SELECT * FROM get_feature_ids(query) LOOP RETURN NEXT myrc; END LOOP; RETURN; END; ' LANGUAGE plpgsql; -- -- Name: get_feature_ids_by_type_name(character varying, text, character); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION get_feature_ids_by_type_name(character varying, text, character) RETURNS SETOF feature_by_fx_type AS ' DECLARE gtype alias for $1; name alias for $2; is_an alias for $3; query TEXT; myrc feature_by_fx_type%ROWTYPE; myrc2 feature_by_fx_type%ROWTYPE; BEGIN query := ''SELECT DISTINCT f.feature_id FROM feature f INNER join cvterm t ON (f.type_id = t.cvterm_id) WHERE t.name = '' || quote_literal(gtype) || '' AND (f.uniquename = '' || quote_literal(name) || '' OR f.name = '' || quote_literal(name) || '') AND f.is_analysis = '' || quote_literal(is_an) || '';''; IF (STRPOS(name, ''%'') > 0) THEN query := ''SELECT DISTINCT f.feature_id FROM feature f INNER join cvterm t ON (f.type_id = t.cvterm_id) WHERE t.name = '' || quote_literal(gtype) || '' AND (f.uniquename like '' || quote_literal(name) || '' OR f.name like '' || quote_literal(name) || '') AND f.is_analysis = '' || quote_literal(is_an) || '';''; END IF; FOR myrc IN SELECT * FROM get_feature_ids(query) LOOP RETURN NEXT myrc; END LOOP; RETURN; END; ' LANGUAGE plpgsql; -- -- Name: get_feature_ids_by_type_src(character varying, text, character); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION get_feature_ids_by_type_src(character varying, text, character) RETURNS SETOF feature_by_fx_type AS ' DECLARE gtype alias for $1; src alias for $2; is_an alias for $3; query TEXT; myrc feature_by_fx_type%ROWTYPE; myrc2 feature_by_fx_type%ROWTYPE; BEGIN query := ''SELECT DISTINCT f.feature_id FROM feature f INNER join cvterm t ON (f.type_id = t.cvterm_id) INNER join featureloc fl ON (f.feature_id = fl.feature_id) INNER join feature src ON (src.feature_id = fl.srcfeature_id) WHERE t.name = '' || quote_literal(gtype) || '' AND src.uniquename = '' || quote_literal(src) || '' AND f.is_analysis = '' || quote_literal(is_an) || '';''; IF (STRPOS(gtype, ''%'') > 0) THEN query := ''SELECT DISTINCT f.feature_id FROM feature f INNER join cvterm t ON (f.type_id = t.cvterm_id) INNER join featureloc fl ON (f.feature_id = fl.feature_id) INNER join feature src ON (src.feature_id = fl.srcfeature_id) WHERE t.name like '' || quote_literal(gtype) || '' AND src.uniquename = '' || quote_literal(src) || '' AND f.is_analysis = '' || quote_literal(is_an) || '';''; END IF; FOR myrc IN SELECT * FROM get_feature_ids(query) LOOP RETURN NEXT myrc; END LOOP; RETURN; END; ' LANGUAGE plpgsql; -- -- Name: get_feature_relationship_type_id(character varying); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION get_feature_relationship_type_id(character varying) RETURNS integer AS ' SELECT cvterm_id FROM cv INNER JOIN cvterm USING (cv_id) WHERE cvterm.name=$1 AND cv.name=''relationship'' ' LANGUAGE sql; -- -- Name: get_feature_type_id(character varying); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION get_feature_type_id(character varying) RETURNS integer AS ' SELECT cvterm_id FROM cv INNER JOIN cvterm USING (cv_id) WHERE cvterm.name=$1 AND cv.name=''sequence'' ' LANGUAGE sql; -- -- Name: get_featureprop_type_id(character varying); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION get_featureprop_type_id(character varying) RETURNS integer AS ' SELECT cvterm_id FROM cv INNER JOIN cvterm USING (cv_id) WHERE cvterm.name=$1 AND cv.name=''feature_property'' ' LANGUAGE sql; -- -- Name: get_graph_above(integer); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION get_graph_above(integer) RETURNS SETOF cvtermpath AS ' DECLARE leaf alias for $1; cterm cvtermpath%ROWTYPE; cterm2 cvtermpath%ROWTYPE; BEGIN FOR cterm IN SELECT * FROM cvterm_relationship WHERE subject_id = leaf LOOP RETURN NEXT cterm; FOR cterm2 IN SELECT * FROM get_all_object_ids(cterm.object_id) LOOP RETURN NEXT cterm2; END LOOP; END LOOP; RETURN; END; ' LANGUAGE plpgsql; -- -- Name: get_graph_below(integer); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION get_graph_below(integer) RETURNS SETOF cvtermpath AS ' DECLARE root alias for $1; cterm cvtermpath%ROWTYPE; cterm2 cvtermpath%ROWTYPE; BEGIN FOR cterm IN SELECT * FROM cvterm_relationship WHERE object_id = root LOOP RETURN NEXT cterm; FOR cterm2 IN SELECT * FROM get_all_subject_ids(cterm.subject_id) LOOP RETURN NEXT cterm2; END LOOP; END LOOP; RETURN; END; ' LANGUAGE plpgsql; -- -- Name: cvterm; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE cvterm ( cvterm_id serial NOT NULL, cv_id integer NOT NULL, name character varying(1024) NOT NULL, definition text, dbxref_id integer NOT NULL, is_obsolete integer DEFAULT 0 NOT NULL, is_relationshiptype integer DEFAULT 0 NOT NULL ); -- -- Name: TABLE cvterm; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE cvterm IS 'A term, class or concept within an ontology or controlled vocabulary. Also used for relationship types. A cvterm can also be thought of as a node in a graph'; -- -- Name: COLUMN cvterm.cv_id; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN cvterm.cv_id IS 'The cv/ontology/namespace to which this cvterm belongs'; -- -- Name: COLUMN cvterm.name; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN cvterm.name IS 'A concise human-readable name describing the meaning of the cvterm'; -- -- Name: COLUMN cvterm.definition; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN cvterm.definition IS 'A human-readable text definition'; -- -- Name: COLUMN cvterm.dbxref_id; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN cvterm.dbxref_id IS 'Primary dbxref - The unique global OBO identifier for this cvterm. Note that a cvterm may have multiple secondary dbxrefs - see also table: cvterm_dbxref'; -- -- Name: COLUMN cvterm.is_obsolete; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN cvterm.is_obsolete IS 'Boolean 0=false,1=true; see GO documentation for details of obsoletion. note that two terms with different primary dbxrefs may exist if one is obsolete'; -- -- Name: COLUMN cvterm.is_relationshiptype; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN cvterm.is_relationshiptype IS 'Boolean 0=false,1=true Relationship types (also known as Typedefs in OBO format, or as properties or slots) form a cv/ontology in themselves. We use this flag to indicate whether this cvterm is an actual term/concept or a relationship type'; -- -- Name: get_it_sub_cvterm_ids(text); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION get_it_sub_cvterm_ids(text) RETURNS SETOF cvterm AS ' DECLARE query alias for $1; cterm cvterm%ROWTYPE; cterm2 cvterm%ROWTYPE; BEGIN FOR cterm IN EXECUTE query LOOP RETURN NEXT cterm; FOR cterm2 IN SELECT subject_id as cvterm_id FROM get_all_subject_ids(cterm.cvterm_id) LOOP RETURN NEXT cterm2; END LOOP; END LOOP; RETURN; END; ' LANGUAGE plpgsql; -- -- Name: get_organism_id(character varying, character varying); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION get_organism_id(character varying, character varying) RETURNS integer AS ' SELECT organism_id FROM organism WHERE genus=$1 AND species=$2 ' LANGUAGE sql; -- -- Name: get_organism_id(character varying); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION get_organism_id(character varying) RETURNS integer AS ' SELECT organism_id FROM organism WHERE genus=substring($1,1,position('' '' IN $1)-1) AND species=substring($1,position('' '' IN $1)+1) ' LANGUAGE sql; -- -- Name: get_organism_id_abbrev(character varying); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION get_organism_id_abbrev(character varying) RETURNS integer AS ' SELECT organism_id FROM organism WHERE substr(genus,1,1)=substring($1,1,1) AND species=substring($1,position('' '' IN $1)+1) ' LANGUAGE sql; -- -- Name: get_sub_feature_ids(text); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION get_sub_feature_ids(text) RETURNS SETOF feature_by_fx_type AS ' DECLARE sql alias for $1; myrc feature_by_fx_type%ROWTYPE; myrc2 feature_by_fx_type%ROWTYPE; BEGIN FOR myrc IN EXECUTE sql LOOP FOR myrc2 IN SELECT * FROM get_sub_feature_ids(myrc.feature_id) LOOP RETURN NEXT myrc2; END LOOP; END LOOP; RETURN; END; ' LANGUAGE plpgsql; -- -- Name: get_sub_feature_ids(integer); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION get_sub_feature_ids(integer) RETURNS SETOF feature_by_fx_type AS ' DECLARE root alias for $1; myrc feature_by_fx_type%ROWTYPE; myrc2 feature_by_fx_type%ROWTYPE; BEGIN FOR myrc IN SELECT DISTINCT subject_id AS feature_id FROM feature_relationship WHERE object_id = root LOOP RETURN NEXT myrc; FOR myrc2 IN SELECT * FROM get_sub_feature_ids(myrc.feature_id) LOOP RETURN NEXT myrc2; END LOOP; END LOOP; RETURN; END; ' LANGUAGE plpgsql; -- -- Name: get_sub_feature_ids(integer, integer); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION get_sub_feature_ids(integer, integer) RETURNS SETOF feature_by_fx_type AS ' DECLARE root alias for $1; depth alias for $2; myrc feature_by_fx_type%ROWTYPE; myrc2 feature_by_fx_type%ROWTYPE; BEGIN FOR myrc IN SELECT DISTINCT subject_id AS feature_id, depth FROM feature_relationship WHERE object_id = root LOOP RETURN NEXT myrc; FOR myrc2 IN SELECT * FROM get_sub_feature_ids(myrc.feature_id,depth+1) LOOP RETURN NEXT myrc2; END LOOP; END LOOP; RETURN; END; ' LANGUAGE plpgsql; -- -- Name: get_sub_feature_ids_by_type_src(character varying, text, character); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION get_sub_feature_ids_by_type_src(character varying, text, character) RETURNS SETOF feature_by_fx_type AS ' DECLARE gtype alias for $1; src alias for $2; is_an alias for $3; query text; myrc feature_by_fx_type%ROWTYPE; myrc2 feature_by_fx_type%ROWTYPE; BEGIN query := ''SELECT DISTINCT f.feature_id FROM feature f INNER join cvterm t ON (f.type_id = t.cvterm_id) INNER join featureloc fl ON (f.feature_id = fl.feature_id) INNER join feature src ON (src.feature_id = fl.srcfeature_id) WHERE t.name = '' || quote_literal(gtype) || '' AND src.uniquename = '' || quote_literal(src) || '' AND f.is_analysis = '' || quote_literal(is_an) || '';''; IF (STRPOS(gtype, ''%'') > 0) THEN query := ''SELECT DISTINCT f.feature_id FROM feature f INNER join cvterm t ON (f.type_id = t.cvterm_id) INNER join featureloc fl ON (f.feature_id = fl.feature_id) INNER join feature src ON (src.feature_id = fl.srcfeature_id) WHERE t.name like '' || quote_literal(gtype) || '' AND src.uniquename = '' || quote_literal(src) || '' AND f.is_analysis = '' || quote_literal(is_an) || '';''; END IF; FOR myrc IN SELECT * FROM get_sub_feature_ids(query) LOOP RETURN NEXT myrc; END LOOP; RETURN; END; ' LANGUAGE plpgsql; -- -- Name: get_up_feature_ids(text); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION get_up_feature_ids(text) RETURNS SETOF feature_by_fx_type AS ' DECLARE sql alias for $1; myrc feature_by_fx_type%ROWTYPE; myrc2 feature_by_fx_type%ROWTYPE; BEGIN FOR myrc IN EXECUTE sql LOOP FOR myrc2 IN SELECT * FROM get_up_feature_ids(myrc.feature_id) LOOP RETURN NEXT myrc2; END LOOP; END LOOP; RETURN; END; ' LANGUAGE plpgsql; -- -- Name: get_up_feature_ids(integer); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION get_up_feature_ids(integer) RETURNS SETOF feature_by_fx_type AS ' DECLARE leaf alias for $1; myrc feature_by_fx_type%ROWTYPE; myrc2 feature_by_fx_type%ROWTYPE; BEGIN FOR myrc IN SELECT DISTINCT object_id AS feature_id FROM feature_relationship WHERE subject_id = leaf LOOP RETURN NEXT myrc; FOR myrc2 IN SELECT * FROM get_up_feature_ids(myrc.feature_id) LOOP RETURN NEXT myrc2; END LOOP; END LOOP; RETURN; END; ' LANGUAGE plpgsql; -- -- Name: get_up_feature_ids(integer, integer); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION get_up_feature_ids(integer, integer) RETURNS SETOF feature_by_fx_type AS ' DECLARE leaf alias for $1; depth alias for $2; myrc feature_by_fx_type%ROWTYPE; myrc2 feature_by_fx_type%ROWTYPE; BEGIN FOR myrc IN SELECT DISTINCT object_id AS feature_id, depth FROM feature_relationship WHERE subject_id = leaf LOOP RETURN NEXT myrc; FOR myrc2 IN SELECT * FROM get_up_feature_ids(myrc.feature_id,depth+1) LOOP RETURN NEXT myrc2; END LOOP; END LOOP; RETURN; END; ' LANGUAGE plpgsql; -- -- Name: gffattstring(integer); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION gffattstring(integer) RETURNS character varying AS 'DECLARE return_string varchar; f_id ALIAS FOR $1; atts_view gffatts%ROWTYPE; feature_row feature%ROWTYPE; name varchar; uniquename varchar; parent varchar; escape_loc int; BEGIN --Get name from feature.name --Get ID from feature.uniquename SELECT INTO feature_row * FROM feature WHERE feature_id = f_id; name = feature_row.name; return_string = ''ID='' || feature_row.uniquename; IF name IS NOT NULL AND name != '''' THEN return_string = return_string ||'';'' || ''Name='' || name; END IF; --Get Parent from feature_relationship SELECT INTO feature_row * FROM feature f, feature_relationship fr WHERE fr.subject_id = f_id AND fr.object_id = f.feature_id; IF FOUND THEN return_string = return_string||'';''||''Parent=''||feature_row.uniquename; END IF; FOR atts_view IN SELECT * FROM gff3atts WHERE feature_id = f_id LOOP escape_loc = position('';'' in atts_view.attribute); IF escape_loc > 0 THEN atts_view.attribute = replace(atts_view.attribute, '';'', ''%3B''); END IF; return_string = return_string || '';'' || atts_view.type || ''='' || atts_view.attribute; END LOOP; RETURN return_string; END; ' LANGUAGE plpgsql; -- -- Name: db; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE db ( db_id serial NOT NULL, name character varying(255) NOT NULL, description character varying(255), urlprefix character varying(255), url character varying(255) ); -- -- Name: TABLE db; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE db IS 'A database authority. Typical dbs in bioinformatics are FlyBase, GO, UniProt, NCBI, MGI, etc. The authority is generally known by this sortened form, which is unique within the bioinformatics and biomedical realm. **TODO** - add support for URIs, URNs (eg LSIDs). We can do this by treating the url as a uri - however, some applications may expect this to be resolvable - to be decided'; -- -- Name: dbxref; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE dbxref ( dbxref_id serial NOT NULL, db_id integer NOT NULL, accession character varying(255) NOT NULL, version character varying(255) DEFAULT ''::character varying NOT NULL, description text ); -- -- Name: TABLE dbxref; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE dbxref IS 'A unique, global, public, stable identifier. Not necessarily an eXternal reference - can reference data items inside the particular chado instance being used. Typically a row in a table can be uniquely identified with a primary identifier (called dbxref_id); a table may also have secondary identifiers (in a linking table _dbxref). A dbxref is generally written as : or as ::. '; -- -- Name: COLUMN dbxref.accession; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN dbxref.accession IS 'The local part of the identifier. Guaranteed by the db authority to be unique for that db'; -- -- Name: feature_cvterm; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE feature_cvterm ( feature_cvterm_id serial NOT NULL, feature_id integer NOT NULL, cvterm_id integer NOT NULL, pub_id integer NOT NULL, is_not boolean DEFAULT false NOT NULL ); -- -- Name: TABLE feature_cvterm; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE feature_cvterm IS 'Associate a term from a cv with a feature, for example, GO annotation'; -- -- Name: COLUMN feature_cvterm.pub_id; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN feature_cvterm.pub_id IS 'Provenance for the annotation. Each annotation should have a single primary publication (which may be of the appropriate type for computational analyses) where more details can be found. Additional provenance dbxrefs can be attached using feature_cvterm_dbxref'; -- -- Name: COLUMN feature_cvterm.is_not; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN feature_cvterm.is_not IS 'if this is set to true, then this annotation is interpreted as a NEGATIVE annotation - ie the feature does NOT have the specified function, process, component, part, etc. See GO docs for more details'; -- -- Name: feature_dbxref; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE feature_dbxref ( feature_dbxref_id serial NOT NULL, feature_id integer NOT NULL, dbxref_id integer NOT NULL, is_current boolean DEFAULT true NOT NULL ); -- -- Name: TABLE feature_dbxref; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE feature_dbxref IS 'links a feature to dbxrefs. This is for secondary identifiers; primary identifiers should use feature.dbxref_id'; -- -- Name: COLUMN feature_dbxref.is_current; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN feature_dbxref.is_current IS 'the is_current boolean indicates whether the linked dbxref is the current -official- dbxref for the linked feature'; -- -- Name: feature_pub; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE feature_pub ( feature_pub_id serial NOT NULL, feature_id integer NOT NULL, pub_id integer NOT NULL ); -- -- Name: TABLE feature_pub; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE feature_pub IS 'Provenance. Linking table between features and publications that mention them'; -- -- Name: feature_synonym; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE feature_synonym ( feature_synonym_id serial NOT NULL, synonym_id integer NOT NULL, feature_id integer NOT NULL, pub_id integer NOT NULL, is_current boolean DEFAULT true NOT NULL, is_internal boolean DEFAULT false NOT NULL ); -- -- Name: TABLE feature_synonym; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE feature_synonym IS 'Linking table between feature and synonym'; -- -- Name: COLUMN feature_synonym.pub_id; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN feature_synonym.pub_id IS 'the pub_id link is for relating the usage of a given synonym to the publication in which it was used'; -- -- Name: COLUMN feature_synonym.is_current; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN feature_synonym.is_current IS 'the is_current boolean indicates whether the linked synonym is the current -official- symbol for the linked feature'; -- -- Name: COLUMN feature_synonym.is_internal; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN feature_synonym.is_internal IS 'typically a synonym exists so that somebody querying the db with an obsolete name can find the object theyre looking for (under its current name. If the synonym has been used publicly & deliberately (eg in a paper), it my also be listed in reports as a synonym. If the synonym was not used deliberately (eg, there was a typo which went public), then the is_internal boolean may be set to -true- so that it is known that the synonym is -internal- and should be queryable but should not be listed in reports as a valid synonym'; -- -- Name: featureprop; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE featureprop ( featureprop_id serial NOT NULL, feature_id integer NOT NULL, type_id integer NOT NULL, value text, rank integer DEFAULT 0 NOT NULL ); -- -- Name: TABLE featureprop; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE featureprop IS 'A feature can have any number of slot-value property tags attached to it. This is an alternative to hardcoding a list of columns in the relational schema, and is completely extensible'; -- -- Name: COLUMN featureprop.type_id; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN featureprop.type_id IS 'The name of the property/slot is a cvterm. The meaning of the property is defined in that cvterm. Certain property types will only apply to certain feature types (e.g. the anticodon property will only apply to tRNA features) ; the types here come from the sequence feature property ontology'; -- -- Name: COLUMN featureprop.value; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN featureprop.value IS 'The value of the property, represented as text. Numeric values are converted to their text representation. This is less efficient than using native database types, but is easier to query.'; -- -- Name: COLUMN featureprop.rank; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN featureprop.rank IS 'Property-Value ordering. Any feature can have multiple values for any particular property type - these are ordered in a list using rank, counting from zero. For properties that are single-valued rather than multi-valued, the default 0 value should be used'; -- -- Name: pub; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE pub ( pub_id serial NOT NULL, title text, volumetitle text, volume character varying(255), series_name character varying(255), issue character varying(255), pyear character varying(255), pages character varying(255), miniref character varying(255), uniquename text NOT NULL, type_id integer NOT NULL, is_obsolete boolean DEFAULT false, publisher character varying(255), pubplace character varying(255) ); -- -- Name: TABLE pub; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE pub IS 'A documented provenance artefact - publications, documents, personal communication'; -- -- Name: COLUMN pub.title; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN pub.title IS 'descriptive general heading'; -- -- Name: COLUMN pub.volumetitle; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN pub.volumetitle IS 'title of part if one of a series'; -- -- Name: COLUMN pub.series_name; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN pub.series_name IS 'full name of (journal) series'; -- -- Name: COLUMN pub.pages; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN pub.pages IS 'page number range[s], eg, 457--459, viii + 664pp, lv--lvii'; -- -- Name: COLUMN pub.type_id; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN pub.type_id IS 'the type of the publication (book, journal, poem, graffiti, etc). Uses pub cv'; -- -- Name: synonym; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE synonym ( synonym_id serial NOT NULL, name character varying(255) NOT NULL, type_id integer NOT NULL, synonym_sgml character varying(255) NOT NULL ); -- -- Name: TABLE synonym; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE synonym IS 'A synonym for a feature. One feature can have multiple synonyms, and the same synonym can apply to multiple features'; -- -- Name: COLUMN synonym.name; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN synonym.name IS 'The synonym itself. Should be human-readable machine-searchable ascii text'; -- -- Name: COLUMN synonym.type_id; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN synonym.type_id IS 'types would be symbol and fullname for now'; -- -- Name: COLUMN synonym.synonym_sgml; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN synonym.synonym_sgml IS 'The fully specified synonym, with any non-ascii characters encoded in SGML'; -- -- Name: gffatts; Type: VIEW; Schema: public; Owner: gilbertd -- CREATE VIEW gffatts AS (((SELECT fs.feature_id, 'cvterm' AS "type", s.name AS attribute FROM cvterm s, feature_cvterm fs WHERE (fs.cvterm_id = s.cvterm_id) UNION ALL SELECT fs.feature_id, 'dbxref' AS "type", (((d.name)::text || ':'::text) || (s.accession)::text) AS attribute FROM dbxref s, feature_dbxref fs, db d WHERE ((fs.dbxref_id = s.dbxref_id) AND (s.db_id = d.db_id))) UNION ALL SELECT fs.feature_id, 'synonym' AS "type", s.name AS attribute FROM synonym s, feature_synonym fs WHERE (fs.synonym_id = s.synonym_id)) UNION ALL SELECT fp.feature_id, cv.name AS "type", fp.value AS attribute FROM featureprop fp, cvterm cv WHERE (fp.type_id = cv.cvterm_id)) UNION ALL SELECT fs.feature_id, 'pub' AS "type", (((s.series_name)::text || ':'::text) || s.title) AS attribute FROM pub s, feature_pub fs WHERE (fs.pub_id = s.pub_id); -- -- Name: gfffeatureatts(integer); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION gfffeatureatts(integer) RETURNS SETOF gffatts AS ' SELECT feature_id, ''cvterm'' AS type, s.name AS attribute FROM cvterm s, feature_cvterm fs WHERE fs.feature_id= $1 AND fs.cvterm_id = s.cvterm_id UNION SELECT feature_id, ''dbxref'' AS type, d.name || '':'' || s.accession AS attribute FROM dbxref s, feature_dbxref fs, db d WHERE fs.feature_id= $1 AND fs.dbxref_id = s.dbxref_id AND s.db_id = d.db_id --UNION --SELECT feature_id, ''expression'' AS type, s.description AS attribute --FROM expression s, feature_expression fs --WHERE fs.feature_id= $1 AND fs.expression_id = s.expression_id --UNION --SELECT fg.feature_id, ''genotype'' AS type, g.uniquename||'': ''||g.description AS attribute --FROM gcontext g, feature_gcontext fg --WHERE fg.feature_id= $1 AND g.gcontext_id = fg.gcontext_id --UNION --SELECT feature_id, ''genotype'' AS type, s.description AS attribute --FROM genotype s, feature_genotype fs --WHERE fs.feature_id= $1 AND fs.genotype_id = s.genotype_id --UNION --SELECT feature_id, ''phenotype'' AS type, s.description AS attribute --FROM phenotype s, feature_phenotype fs --WHERE fs.feature_id= $1 AND fs.phenotype_id = s.phenotype_id UNION SELECT feature_id, ''synonym'' AS type, s.name AS attribute FROM synonym s, feature_synonym fs WHERE fs.feature_id= $1 AND fs.synonym_id = s.synonym_id UNION SELECT fp.feature_id,cv.name,fp.value FROM featureprop fp, cvterm cv WHERE fp.feature_id= $1 AND fp.type_id = cv.cvterm_id UNION SELECT feature_id, ''pub'' AS type, s.series_name || '':'' || s.title AS attribute FROM pub s, feature_pub fs WHERE fs.feature_id= $1 AND fs.pub_id = s.pub_id ' LANGUAGE sql; -- -- Name: phylonode_depth(integer); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION phylonode_depth(integer) RETURNS double precision AS 'DECLARE id ALIAS FOR $1; DECLARE depth FLOAT := 0; DECLARE curr_node phylonode%ROWTYPE; BEGIN SELECT INTO curr_node * FROM phylonode WHERE phylonode_id=id; depth = depth + curr_node.distance; IF curr_node.parent_phylonode_id IS NULL THEN RETURN depth; ELSE RETURN depth + phylonode_depth(curr_node.parent_phylonode_id); END IF; END ' LANGUAGE plpgsql; -- -- Name: phylonode_height(integer); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION phylonode_height(integer) RETURNS double precision AS ' SELECT coalesce(max(phylonode_height(phylonode_id) + distance), 0.0) FROM phylonode WHERE parent_phylonode_id = $1 ' LANGUAGE sql; -- -- Name: project_featureloc_up(integer, integer); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION project_featureloc_up(integer, integer) RETURNS featureloc AS ' DECLARE in_featureloc_id alias for $1; up_srcfeature_id alias for $2; in_featureloc featureloc%ROWTYPE; up_featureloc featureloc%ROWTYPE; nu_featureloc featureloc%ROWTYPE; nu_fmin INT; nu_fmax INT; nu_strand INT; BEGIN SELECT INTO in_featureloc featureloc.* FROM featureloc WHERE featureloc_id = in_featureloc_id; SELECT INTO up_featureloc up_fl.* FROM featureloc AS in_fl INNER JOIN featureloc AS up_fl ON (in_fl.srcfeature_id = up_fl.feature_id) WHERE in_fl.featureloc_id = in_featureloc_id AND up_fl.srcfeature_id = up_srcfeature_id; IF up_featureloc.strand IS NULL THEN RETURN NULL; END IF; IF up_featureloc.strand < 0 THEN nu_fmin = project_point_up(in_featureloc.fmax, up_featureloc.fmin,up_featureloc.fmax,-1); nu_fmax = project_point_up(in_featureloc.fmin, up_featureloc.fmin,up_featureloc.fmax,-1); nu_strand = -in_featureloc.strand; ELSE nu_fmin = project_point_up(in_featureloc.fmin, up_featureloc.fmin,up_featureloc.fmax,1); nu_fmax = project_point_up(in_featureloc.fmax, up_featureloc.fmin,up_featureloc.fmax,1); nu_strand = in_featureloc.strand; END IF; in_featureloc.fmin = nu_fmin; in_featureloc.fmax = nu_fmax; in_featureloc.strand = nu_strand; in_featureloc.srcfeature_id = up_featureloc.srcfeature_id; RETURN in_featureloc; END ' LANGUAGE plpgsql; -- -- Name: project_point_down(integer, integer, integer, integer); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION project_point_down(integer, integer, integer, integer) RETURNS integer AS 'SELECT CASE WHEN $4<0 THEN $3-$1 ELSE $1+$2 END AS p' LANGUAGE sql; -- -- Name: project_point_g2t(integer, integer, integer); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION project_point_g2t(integer, integer, integer) RETURNS integer AS ' DECLARE in_p alias for $1; srcf_id alias for $2; t_id alias for $3; e_floc featureloc%ROWTYPE; out_p INT; exon_cvterm_id INT; BEGIN SELECT INTO exon_cvterm_id get_feature_type_id(''exon''); SELECT INTO out_p CASE WHEN strand<0 THEN fmax-p ELSE p-fmin END AS p FROM featureloc INNER JOIN feature USING (feature_id) INNER JOIN feature_relationship ON (feature.feature_id=subject_id) WHERE object_id = t_id AND feature.type_id = exon_cvterm_id AND featureloc.srcfeature_id = srcf_id AND in_p >= fmin AND in_p <= fmax; RETURN in_featureloc; END ' LANGUAGE plpgsql; -- -- Name: project_point_up(integer, integer, integer, integer); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION project_point_up(integer, integer, integer, integer) RETURNS integer AS 'SELECT CASE WHEN $4<0 THEN $3-$1 -- rev strand ELSE $1-$2 -- fwd strand END AS p' LANGUAGE sql; -- -- Name: reverse_complement(text); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION reverse_complement(text) RETURNS text AS 'SELECT reverse_string(complement_residues($1))' LANGUAGE sql; -- -- Name: reverse_string(text); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION reverse_string(text) RETURNS text AS ' DECLARE reversed_string TEXT; incoming ALIAS FOR $1; BEGIN reversed_string = ''''; FOR i IN REVERSE char_length(incoming)..1 loop reversed_string = reversed_string || substring(incoming FROM i FOR 1); END loop; RETURN reversed_string; END' LANGUAGE plpgsql; -- -- Name: store_analysis(character varying, character varying, character varying); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION store_analysis(character varying, character varying, character varying) RETURNS integer AS 'DECLARE v_program ALIAS FOR $1; v_programversion ALIAS FOR $2; v_sourcename ALIAS FOR $3; pkval INTEGER; BEGIN SELECT INTO pkval analysis_id FROM analysis WHERE program=v_program AND programversion=v_programversion AND sourcename=v_sourcename; IF NOT FOUND THEN INSERT INTO analysis (program,programversion,sourcename) VALUES (v_program,v_programversion,v_sourcename); RETURN currval(''analysis_analysis_id_seq''); END IF; RETURN pkval; END; ' LANGUAGE plpgsql; -- -- Name: store_db(character varying); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION store_db(character varying) RETURNS integer AS 'DECLARE v_name ALIAS FOR $1; v_db_id INTEGER; BEGIN SELECT INTO v_db_id db_id FROM db WHERE name=v_name; IF NOT FOUND THEN INSERT INTO db (name) VALUES (v_name); RETURN currval(''db_db_id_seq''); END IF; RETURN v_db_id; END; ' LANGUAGE plpgsql; -- -- Name: store_dbxref(character varying, character varying); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION store_dbxref(character varying, character varying) RETURNS integer AS 'DECLARE v_dbname ALIAS FOR $1; v_accession ALIAS FOR $1; v_db_id INTEGER; v_dbxref_id INTEGER; BEGIN SELECT INTO v_db_id store_db(v_dbname); SELECT INTO v_dbxref_id dbxref_id FROM dbxref WHERE db_id=v_db_id AND accession=v_accession; IF NOT FOUND THEN INSERT INTO dbxref (db_id,accession) VALUES (v_db_id,v_accession); RETURN currval(''dbxref_dbxref_id_seq''); END IF; RETURN v_dbxref_id; END; ' LANGUAGE plpgsql; -- -- Name: store_feature(integer, integer, integer, integer, integer, integer, character varying, character varying, integer, boolean); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION store_feature(integer, integer, integer, integer, integer, integer, character varying, character varying, integer, boolean) RETURNS integer AS 'DECLARE v_srcfeature_id ALIAS FOR $1; v_fmin ALIAS FOR $2; v_fmax ALIAS FOR $3; v_strand ALIAS FOR $4; v_dbxref_id ALIAS FOR $5; v_organism_id ALIAS FOR $6; v_name ALIAS FOR $7; v_uniquename ALIAS FOR $8; v_type_id ALIAS FOR $9; v_is_analysis ALIAS FOR $10; v_feature_id INT; v_featureloc_id INT; BEGIN IF v_dbxref_id IS NULL THEN SELECT INTO v_feature_id feature_id FROM feature WHERE uniquename=v_uniquename AND organism_id=v_organism_id AND type_id=v_type_id; ELSE SELECT INTO v_feature_id feature_id FROM feature WHERE dbxref_id=v_dbxref_id; END IF; IF NOT FOUND THEN INSERT INTO feature ( dbxref_id , organism_id , name , uniquename , type_id , is_analysis ) VALUES ( v_dbxref_id , v_organism_id , v_name , v_uniquename , v_type_id , v_is_analysis ); v_feature_id = currval(''feature_feature_id_seq''); ELSE UPDATE feature SET dbxref_id = v_dbxref_id , organism_id = v_organism_id , name = v_name , uniquename = v_uniquename , type_id = v_type_id , is_analysis = v_is_analysis WHERE feature_id=v_feature_id; END IF; PERFORM store_featureloc(v_feature_id, v_srcfeature_id, v_fmin, v_fmax, v_strand, 0, 0); RETURN v_feature_id; END; ' LANGUAGE plpgsql; -- -- Name: store_feature_synonym(integer, character varying, integer, boolean, boolean, integer); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION store_feature_synonym(integer, character varying, integer, boolean, boolean, integer) RETURNS integer AS 'DECLARE v_feature_id ALIAS FOR $1; v_syn ALIAS FOR $2; v_type_id ALIAS FOR $3; v_is_current ALIAS FOR $4; v_is_internal ALIAS FOR $5; v_pub_id ALIAS FOR $6; v_synonym_id INT; v_feature_synonym_id INT; BEGIN IF v_feature_id IS NULL THEN RAISE EXCEPTION ''feature_id cannot be null''; END IF; SELECT INTO v_synonym_id synonym_id FROM synonym WHERE name=v_syn AND type_id=v_type_id; IF NOT FOUND THEN INSERT INTO synonym ( name, synonym_sgml, type_id) VALUES ( v_syn, v_syn, v_type_id); v_synonym_id = currval(''synonym_synonym_id_seq''); END IF; SELECT INTO v_feature_synonym_id feature_synonym_id FROM feature_synonym WHERE feature_id=v_feature_id AND synonym_id=v_synonym_id AND pub_id=v_pub_id; IF NOT FOUND THEN INSERT INTO feature_synonym ( feature_id, synonym_id, pub_id, is_current, is_internal) VALUES ( v_feature_id, v_synonym_id, v_pub_id, v_is_current, v_is_internal); v_feature_synonym_id = currval(''feature_synonym_feature_synonym_id_seq''); ELSE UPDATE feature_synonym SET is_current=v_is_current, is_internal=v_is_internal WHERE feature_synonym_id=v_feature_synonym_id; END IF; RETURN v_feature_synonym_id; END; ' LANGUAGE plpgsql; -- -- Name: store_featureloc(integer, integer, integer, integer, integer, integer, integer); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION store_featureloc(integer, integer, integer, integer, integer, integer, integer) RETURNS integer AS 'DECLARE v_feature_id ALIAS FOR $1; v_srcfeature_id ALIAS FOR $2; v_fmin ALIAS FOR $3; v_fmax ALIAS FOR $4; v_strand ALIAS FOR $5; v_rank ALIAS FOR $6; v_locgroup ALIAS FOR $7; v_featureloc_id INT; BEGIN IF v_feature_id IS NULL THEN RAISE EXCEPTION ''feature_id cannot be null''; END IF; SELECT INTO v_featureloc_id featureloc_id FROM featureloc WHERE feature_id=v_feature_id AND rank=v_rank AND locgroup=v_locgroup; IF NOT FOUND THEN INSERT INTO featureloc ( feature_id, srcfeature_id, fmin, fmax, strand, rank, locgroup) VALUES ( v_feature_id, v_srcfeature_id, v_fmin, v_fmax, v_strand, v_rank, v_locgroup); v_featureloc_id = currval(''featureloc_featureloc_id_seq''); ELSE UPDATE featureloc SET feature_id = v_feature_id, srcfeature_id = v_srcfeature_id, fmin = v_fmin, fmax = v_fmax, strand = v_strand, rank = v_rank, locgroup = v_locgroup WHERE featureloc_id=v_featureloc_id; END IF; RETURN v_featureloc_id; END; ' LANGUAGE plpgsql; -- -- Name: store_organism(character varying, character varying, character varying); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION store_organism(character varying, character varying, character varying) RETURNS integer AS 'DECLARE v_genus ALIAS FOR $1; v_species ALIAS FOR $2; v_common_name ALIAS FOR $3; v_organism_id INTEGER; BEGIN SELECT INTO v_organism_id organism_id FROM organism WHERE genus=v_genus AND species=v_species; IF NOT FOUND THEN INSERT INTO organism (genus,species,common_name) VALUES (v_genus,v_species,v_common_name); RETURN currval(''organism_organism_id_seq''); ELSE UPDATE organism SET common_name=v_common_name WHERE organism_id = v_organism_id; END IF; RETURN v_organism_id; END; ' LANGUAGE plpgsql; -- -- Name: subsequence(integer, integer, integer, integer); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION subsequence(integer, integer, integer, integer) RETURNS text AS 'SELECT CASE WHEN $4<0 THEN reverse_complement(substring(srcf.residues,$2+1,($3-$2))) ELSE substring(residues,$2+1,($3-$2)) END AS residues FROM feature AS srcf WHERE srcf.feature_id=$1' LANGUAGE sql; -- -- Name: subsequence_by_feature(integer, integer, integer); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION subsequence_by_feature(integer, integer, integer) RETURNS text AS 'SELECT CASE WHEN strand<0 THEN reverse_complement(substring(srcf.residues,fmin+1,(fmax-fmin))) ELSE substring(srcf.residues,fmin+1,(fmax-fmin)) END AS residues FROM feature AS srcf INNER JOIN featureloc ON (srcf.feature_id=featureloc.srcfeature_id) WHERE featureloc.feature_id=$1 AND featureloc.rank=$2 AND featureloc.locgroup=$3' LANGUAGE sql; -- -- Name: subsequence_by_feature(integer); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION subsequence_by_feature(integer) RETURNS text AS 'SELECT subsequence_by_feature($1,0,0)' LANGUAGE sql; -- -- Name: subsequence_by_featureloc(integer); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION subsequence_by_featureloc(integer) RETURNS text AS 'SELECT CASE WHEN strand<0 THEN reverse_complement(substring(srcf.residues,fmin+1,(fmax-fmin))) ELSE substring(srcf.residues,fmin+1,(fmax-fmin)) END AS residues FROM feature AS srcf INNER JOIN featureloc ON (srcf.feature_id=featureloc.srcfeature_id) WHERE featureloc_id=$1' LANGUAGE sql; -- -- Name: subsequence_by_subfeatures(integer, integer, integer, integer); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION subsequence_by_subfeatures(integer, integer, integer, integer) RETURNS text AS ' DECLARE v_feature_id ALIAS FOR $1; DECLARE v_rtype_id ALIAS FOR $2; DECLARE v_rank ALIAS FOR $3; DECLARE v_locgroup ALIAS FOR $4; DECLARE subseq TEXT; DECLARE seqrow RECORD; BEGIN subseq = ''''; FOR seqrow IN SELECT CASE WHEN strand<0 THEN reverse_complement(substring(srcf.residues,fmin+1,(fmax-fmin))) ELSE substring(srcf.residues,fmin+1,(fmax-fmin)) END AS residues FROM feature AS srcf INNER JOIN featureloc ON (srcf.feature_id=featureloc.srcfeature_id) INNER JOIN feature_relationship AS fr ON (fr.subject_id=featureloc.feature_id) WHERE fr.object_id=v_feature_id AND fr.type_id=v_rtype_id AND featureloc.rank=v_rank AND featureloc.locgroup=v_locgroup ORDER BY fr.rank LOOP subseq = subseq || seqrow.residues; END LOOP; RETURN subseq; END ' LANGUAGE plpgsql; -- -- Name: subsequence_by_subfeatures(integer, integer); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION subsequence_by_subfeatures(integer, integer) RETURNS text AS 'SELECT subsequence_by_subfeatures($1,$2,0,0)' LANGUAGE sql; -- -- Name: subsequence_by_subfeatures(integer); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION subsequence_by_subfeatures(integer) RETURNS text AS ' SELECT subsequence_by_subfeatures($1,get_feature_relationship_type_id(''part_of''),0,0) ' LANGUAGE sql; -- -- Name: subsequence_by_typed_subfeatures(integer, integer, integer, integer); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION subsequence_by_typed_subfeatures(integer, integer, integer, integer) RETURNS text AS ' DECLARE v_feature_id ALIAS FOR $1; DECLARE v_ftype_id ALIAS FOR $2; DECLARE v_rank ALIAS FOR $3; DECLARE v_locgroup ALIAS FOR $4; DECLARE subseq TEXT; DECLARE seqrow RECORD; BEGIN subseq = ''''; FOR seqrow IN SELECT CASE WHEN strand<0 THEN reverse_complement(substring(srcf.residues,fmin+1,(fmax-fmin))) ELSE substring(srcf.residues,fmin+1,(fmax-fmin)) END AS residues FROM feature AS srcf INNER JOIN featureloc ON (srcf.feature_id=featureloc.srcfeature_id) INNER JOIN feature AS subf ON (subf.feature_id=featureloc.feature_id) INNER JOIN feature_relationship AS fr ON (fr.subject_id=subf.feature_id) WHERE fr.object_id=v_feature_id AND subf.type_id=v_ftype_id AND featureloc.rank=v_rank AND featureloc.locgroup=v_locgroup ORDER BY fr.rank LOOP subseq = subseq || seqrow.residues; END LOOP; RETURN subseq; END ' LANGUAGE plpgsql; -- -- Name: subsequence_by_typed_subfeatures(integer, integer); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION subsequence_by_typed_subfeatures(integer, integer) RETURNS text AS 'SELECT subsequence_by_typed_subfeatures($1,$2,0,0)' LANGUAGE sql; -- -- Name: translate_codon(text, integer); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION translate_codon(text, integer) RETURNS character AS 'SELECT aa FROM genetic_code.gencode_codon_aa WHERE codon=$1 AND gencode_id=$2' LANGUAGE sql; -- -- Name: translate_dna(text, integer); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION translate_dna(text, integer) RETURNS text AS ' DECLARE dnaseq ALIAS FOR $1; gcode ALIAS FOR $2; translation TEXT; dnaseqlen INT; codon CHAR(3); aa CHAR(1); i INT; BEGIN translation = ''''; dnaseqlen = char_length(dnaseq); i=1; WHILE i+1 < dnaseqlen loop codon = substring(dnaseq,i,3); aa = translate_codon(codon,gcode); translation = translation || aa; i = i+3; END loop; RETURN translation; END' LANGUAGE plpgsql; -- -- Name: translate_dna(text); Type: FUNCTION; Schema: public; Owner: gilbertd -- CREATE FUNCTION translate_dna(text) RETURNS text AS 'SELECT translate_dna($1,1)' LANGUAGE sql; -- -- Name: concat(text); Type: AGGREGATE; Schema: public; Owner: gilbertd -- CREATE AGGREGATE concat ( BASETYPE = text, SFUNC = concat_pair, STYPE = text, INITCOND = '' ); SET search_path = frange, pg_catalog; -- -- Name: featuregroup_featuregroup_id_seq; Type: SEQUENCE SET; Schema: frange; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('featuregroup', 'featuregroup_id'), 1, false); SET search_path = genetic_code, pg_catalog; -- -- Name: gencode; Type: TABLE; Schema: genetic_code; Owner: gilbertd; Tablespace: -- CREATE TABLE gencode ( gencode_id integer NOT NULL, organismstr character varying(512) NOT NULL ); -- -- Name: gencode_codon_aa; Type: TABLE; Schema: genetic_code; Owner: gilbertd; Tablespace: -- CREATE TABLE gencode_codon_aa ( gencode_id integer NOT NULL, codon character(3) NOT NULL, aa character(1) NOT NULL ); -- -- Name: gencode_startcodon; Type: TABLE; Schema: genetic_code; Owner: gilbertd; Tablespace: -- CREATE TABLE gencode_startcodon ( gencode_id integer NOT NULL, codon character(3) ); SET search_path = godb, pg_catalog; -- -- Name: association; Type: VIEW; Schema: godb; Owner: gilbertd -- CREATE VIEW association AS SELECT feature_cvterm.feature_cvterm_id AS id, feature_cvterm.cvterm_id AS term_id, feature_cvterm.feature_id AS gene_product_id, feature_cvterm.is_not, 0 AS role_group, 0 AS assocdate, 0 AS source_db_id FROM public.feature_cvterm; SET search_path = public, pg_catalog; -- -- Name: feature_cvtermprop; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE feature_cvtermprop ( feature_cvtermprop_id serial NOT NULL, feature_cvterm_id integer NOT NULL, type_id integer NOT NULL, value text, rank integer DEFAULT 0 NOT NULL ); -- -- Name: TABLE feature_cvtermprop; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE feature_cvtermprop IS 'Extensible properties for feature to cvterm associations. Examples: GO evidence codes; qualifiers; metadata such as the date on which the entry was curated and the source of the association. See the featureprop table for meanings of type_id, value and rank'; -- -- Name: COLUMN feature_cvtermprop.type_id; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN feature_cvtermprop.type_id IS 'The name of the property/slot is a cvterm. The meaning of the property is defined in that cvterm. cvterms may come from the OBO evidence code cv'; -- -- Name: COLUMN feature_cvtermprop.value; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN feature_cvtermprop.value IS 'The value of the property, represented as text. Numeric values are converted to their text representation. This is less efficient than using native database types, but is easier to query.'; -- -- Name: COLUMN feature_cvtermprop.rank; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN feature_cvtermprop.rank IS 'Property-Value ordering. Any feature_cvterm can have multiple values for any particular property type - these are ordered in a list using rank, counting from zero. For properties that are single-valued rather than multi-valued, the default 0 value should be used'; SET search_path = godb, pg_catalog; -- -- Name: association_qualifier; Type: VIEW; Schema: godb; Owner: gilbertd -- CREATE VIEW association_qualifier AS SELECT feature_cvtermprop.feature_cvtermprop_id AS id, feature_cvtermprop.feature_cvterm_id AS association_id, feature_cvtermprop.type_id AS term_id, feature_cvtermprop.value FROM public.feature_cvtermprop; -- -- Name: db; Type: VIEW; Schema: godb; Owner: gilbertd -- CREATE VIEW db AS SELECT db.db_id AS id, db.name, db.name AS fullname, NULL::character varying AS datatype, NULL::character varying AS url_syntax FROM public.db; -- -- Name: dbxref; Type: VIEW; Schema: godb; Owner: gilbertd -- CREATE VIEW dbxref AS SELECT dbxref.dbxref_id AS id, db.name AS xref_dbname, dbxref.accession AS xref_key, NULL::character varying AS xref_keytype, dbxref.description AS xref_desc FROM (public.dbxref JOIN public.db USING (db_id)); SET search_path = public, pg_catalog; -- -- Name: feature_cvterm_dbxref; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE feature_cvterm_dbxref ( feature_cvterm_dbxref_id serial NOT NULL, feature_cvterm_id integer NOT NULL, dbxref_id integer NOT NULL ); -- -- Name: TABLE feature_cvterm_dbxref; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE feature_cvterm_dbxref IS 'Additional dbxrefs for an association. Rows in the feature_cvterm table may be backed up by dbxrefs. For example, a feature_cvterm association that was inferred via a protein-protein interaction may be backed by by refering to the dbxref for the alternate protein. Corresponds to the WITH column in a GO gene association file (but can also be used for other analagous associations). See http://www.geneontology.org/doc/GO.annotation.shtml#file for more details'; SET search_path = godb, pg_catalog; -- -- Name: evidence; Type: VIEW; Schema: godb; Owner: gilbertd -- CREATE VIEW evidence AS SELECT feature_cvtermprop.feature_cvtermprop_id AS id, feature_cvtermprop.feature_cvterm_id AS association_id, feature_cvtermprop.type_id AS term_id, feature_cvtermprop.value FROM (public.feature_cvtermprop JOIN public.feature_cvterm_dbxref USING (feature_cvterm_id)); -- -- Name: evidence_dbxref; Type: VIEW; Schema: godb; Owner: gilbertd -- CREATE VIEW evidence_dbxref AS SELECT feature_cvtermprop.feature_cvterm_id AS id, feature_cvtermprop.feature_cvterm_id AS association_id, feature_cvtermprop.type_id AS term_id, feature_cvtermprop.value FROM (public.feature_cvtermprop JOIN public.feature_cvterm_dbxref USING (feature_cvterm_id)); -- -- Name: gene_product; Type: VIEW; Schema: godb; Owner: gilbertd -- CREATE VIEW gene_product AS SELECT feature.feature_id AS id, feature.name AS symbol, feature.dbxref_id, feature.organism_id AS species_id, NULL::integer AS secondary_species_id, feature.type_id, feature.name AS fullname FROM public.feature; -- -- Name: gene_product_count; Type: VIEW; Schema: godb; Owner: gilbertd -- CREATE VIEW gene_product_count AS SELECT feature.feature_id, feature.dbxref_id, feature.organism_id, feature.name, feature.uniquename, feature.residues, feature.seqlen, feature.md5checksum, feature.type_id, feature.is_analysis, feature.is_obsolete, feature.timeaccessioned, feature.timelastmodified FROM public.feature WHERE NULL::boolean; -- -- Name: gene_product_property; Type: VIEW; Schema: godb; Owner: gilbertd -- CREATE VIEW gene_product_property AS SELECT featureprop.feature_id AS gene_product_id, prop.name AS property_key, featureprop.value AS property_value FROM (public.featureprop JOIN public.cvterm prop ON ((featureprop.type_id = prop.cvterm_id))); -- -- Name: gene_product_seq; Type: VIEW; Schema: godb; Owner: gilbertd -- CREATE VIEW gene_product_seq AS SELECT feature.feature_id AS gene_product_id, feature.feature_id AS seq_id FROM public.feature WHERE (feature.residues IS NOT NULL); -- -- Name: gene_product_synonym; Type: VIEW; Schema: godb; Owner: gilbertd -- CREATE VIEW gene_product_synonym AS SELECT feature_synonym.feature_id AS gene_product_id, synonym.name AS product_synonym FROM (public.feature_synonym JOIN public.synonym USING (synonym_id)); -- -- Name: go_acc; Type: VIEW; Schema: godb; Owner: gilbertd -- CREATE VIEW go_acc AS SELECT dbxref.dbxref_id, (((db.name)::text || ':'::text) || (dbxref.accession)::text) AS acc FROM (public.dbxref JOIN public.db USING (db_id)); -- -- Name: graph_path; Type: VIEW; Schema: godb; Owner: gilbertd -- CREATE VIEW graph_path AS SELECT cvtermpath.cvtermpath_id AS id, cvtermpath.object_id AS term1_id, cvtermpath.subject_id AS term2_id, cvtermpath.pathdistance AS distance FROM public.cvtermpath; -- -- Name: instance_data; Type: VIEW; Schema: godb; Owner: gilbertd -- CREATE VIEW instance_data AS SELECT '' AS release_name, '' AS release_type, '' AS release_notes; -- -- Name: seq; Type: VIEW; Schema: godb; Owner: gilbertd -- CREATE VIEW seq AS SELECT feature.feature_id AS id, feature.name AS display_id, feature.name AS description, feature.residues AS seq, feature.seqlen AS seq_len, feature.md5checksum, "type".name AS moltype, 0 AS "timestamp" FROM (public.feature JOIN public.cvterm "type" ON ((feature.type_id = "type".cvterm_id))); -- -- Name: seq_dbxref; Type: VIEW; Schema: godb; Owner: gilbertd -- CREATE VIEW seq_dbxref AS SELECT feature_dbxref.feature_id AS seq_id, feature_dbxref.dbxref_id FROM public.feature_dbxref; -- -- Name: seq_property; Type: VIEW; Schema: godb; Owner: gilbertd -- CREATE VIEW seq_property AS SELECT feature.feature_id, feature.dbxref_id, feature.organism_id, feature.name, feature.uniquename, feature.residues, feature.seqlen, feature.md5checksum, feature.type_id, feature.is_analysis, feature.is_obsolete, feature.timeaccessioned, feature.timelastmodified FROM public.feature WHERE NULL::boolean; SET search_path = public, pg_catalog; -- -- Name: organism; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE organism ( organism_id serial NOT NULL, abbreviation character varying(255), genus character varying(255) NOT NULL, species character varying(255) NOT NULL, common_name character varying(255), "comment" text ); -- -- Name: TABLE organism; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE organism IS 'The organismal taxonomic classification. Note that phylogenies are represented using the phylogeny module, and taxonomies can be represented using the cvterm module or the phylogeny module'; -- -- Name: COLUMN organism.species; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN organism.species IS 'A type of organism is always uniquely identified by genus+species. When mapping from the NCBI taxonomy names.dmp file, the unique-name column must be used where it is present, as the name column is not always unique (eg environmental samples). If a particular strain or subspecies is to be represented, this is appended onto the species name. Follows standard NCBI taxonomy pattern'; -- -- Name: organism_dbxref; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE organism_dbxref ( organism_dbxref_id serial NOT NULL, organism_id integer NOT NULL, dbxref_id integer NOT NULL ); SET search_path = godb, pg_catalog; -- -- Name: species; Type: VIEW; Schema: godb; Owner: gilbertd -- CREATE VIEW species AS SELECT organism.organism_id AS id, dbxref.accession AS ncbi_taxa_id, organism.common_name, NULL::character varying AS lineage_string, organism.genus, organism.species FROM (((public.organism JOIN public.organism_dbxref USING (organism_id)) JOIN public.dbxref USING (dbxref_id)) JOIN public.db USING (db_id)) WHERE ((db.name)::text = 'NCBITaxon'::text); -- -- Name: term; Type: TABLE; Schema: godb; Owner: gilbertd; Tablespace: -- CREATE TABLE term ( id integer, acc text, name character varying(1024), is_obsolete integer, is_root integer ); SET search_path = public, pg_catalog; -- -- Name: cvterm_relationship; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE cvterm_relationship ( cvterm_relationship_id serial NOT NULL, type_id integer NOT NULL, subject_id integer NOT NULL, object_id integer NOT NULL ); -- -- Name: TABLE cvterm_relationship; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE cvterm_relationship IS 'A relationship linking two cvterms. A relationship can be thought of as an edge in a graph, or as a natural language statement about two cvterms. The statement is of the form SUBJECT PREDICATE OBJECT; for example "wing part_of body"'; -- -- Name: COLUMN cvterm_relationship.type_id; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN cvterm_relationship.type_id IS 'relationship type between subject and object. This is a cvterm, typically from the OBO relationship ontology, although other relationship types are allowed'; -- -- Name: COLUMN cvterm_relationship.subject_id; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN cvterm_relationship.subject_id IS 'the subject of the subj-predicate-obj sentence. In a DAG, this corresponds to the child node'; -- -- Name: COLUMN cvterm_relationship.object_id; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN cvterm_relationship.object_id IS 'the object of the subj-predicate-obj sentence. In a DAG, this corresponds to the parent node'; SET search_path = godb, pg_catalog; -- -- Name: term2term; Type: VIEW; Schema: godb; Owner: gilbertd -- CREATE VIEW term2term AS SELECT cvterm_relationship.cvterm_relationship_id AS id, cvterm_relationship.type_id AS relationship_type_id, cvterm_relationship.object_id AS term1_id, cvterm_relationship.subject_id AS term2_id FROM public.cvterm_relationship; SET search_path = public, pg_catalog; -- -- Name: cvterm_dbxref; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE cvterm_dbxref ( cvterm_dbxref_id serial NOT NULL, cvterm_id integer NOT NULL, dbxref_id integer NOT NULL, is_for_definition integer DEFAULT 0 NOT NULL ); -- -- Name: TABLE cvterm_dbxref; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE cvterm_dbxref IS 'In addition to the primary identifier (cvterm.dbxref_id) a cvterm can have zero or more secondary identifiers, which may be in external databases'; -- -- Name: COLUMN cvterm_dbxref.is_for_definition; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN cvterm_dbxref.is_for_definition IS 'A cvterm.definition should be supported by one or more references. If this column is true, the dbxref is not for a term in an external db - it is a dbxref for provenance information for the definition'; SET search_path = godb, pg_catalog; -- -- Name: term_dbxref; Type: VIEW; Schema: godb; Owner: gilbertd -- CREATE VIEW term_dbxref AS SELECT cvterm_dbxref.cvterm_id AS term_id, cvterm_dbxref.dbxref_id FROM public.cvterm_dbxref; -- -- Name: term_definition; Type: VIEW; Schema: godb; Owner: gilbertd -- CREATE VIEW term_definition AS SELECT cvterm.cvterm_id AS term_id, cvterm.definition AS term_definition FROM public.cvterm WHERE (cvterm.definition IS NOT NULL); SET search_path = public, pg_catalog; -- -- Name: cvtermsynonym; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE cvtermsynonym ( cvtermsynonym_id serial NOT NULL, cvterm_id integer NOT NULL, synonym character varying(1024) NOT NULL, type_id integer ); -- -- Name: TABLE cvtermsynonym; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE cvtermsynonym IS 'A cvterm actually represents a distinct class or concept. A concept can be refered to by different phrases or names. In addition to the primary name (cvterm.name) there can be a number of alternative aliases or synonyms. For example, -T cell- as a synonym for -T lymphocyte-'; -- -- Name: COLUMN cvtermsynonym.type_id; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN cvtermsynonym.type_id IS 'A synonym can be exact, narrow or borader than'; SET search_path = godb, pg_catalog; -- -- Name: term_synonym; Type: VIEW; Schema: godb; Owner: gilbertd -- CREATE VIEW term_synonym AS SELECT cvtermsynonym.cvterm_id AS term_id, cvtermsynonym.synonym AS term_synonym FROM public.cvtermsynonym; SET search_path = public, pg_catalog; -- -- Name: acquisition; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE acquisition ( acquisition_id serial NOT NULL, assay_id integer NOT NULL, protocol_id integer, channel_id integer, acquisitiondate timestamp without time zone DEFAULT now(), name text, uri text ); -- -- Name: TABLE acquisition; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE acquisition IS 'this represents the scanning of hybridized material. the output of this process is typically a digital image of an array'; -- -- Name: acquisition_acquisition_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('acquisition', 'acquisition_id'), 1, false); -- -- Name: acquisition_relationship; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE acquisition_relationship ( acquisition_relationship_id serial NOT NULL, subject_id integer NOT NULL, type_id integer NOT NULL, object_id integer NOT NULL, value text, rank integer DEFAULT 0 NOT NULL ); -- -- Name: TABLE acquisition_relationship; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE acquisition_relationship IS 'multiple monochrome images may be merged to form a multi-color image. red-green images of 2-channel hybridizations are an example of this'; -- -- Name: acquisition_relationship_acquisition_relationship_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('acquisition_relationship', 'acquisition_relationship_id'), 1, false); -- -- Name: acquisitionprop; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE acquisitionprop ( acquisitionprop_id serial NOT NULL, acquisition_id integer NOT NULL, type_id integer NOT NULL, value text, rank integer DEFAULT 0 NOT NULL ); -- -- Name: TABLE acquisitionprop; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE acquisitionprop IS 'parameters associated with image acquisition'; -- -- Name: acquisitionprop_acquisitionprop_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('acquisitionprop', 'acquisitionprop_id'), 1, false); -- -- Name: elementresult; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE elementresult ( elementresult_id serial NOT NULL, element_id integer NOT NULL, quantification_id integer NOT NULL, signal double precision NOT NULL ); -- -- Name: TABLE elementresult; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE elementresult IS 'an element on an array produces a measurement when hybridized to a biomaterial (traceable through quantification_id). this is the base data from which tables that actually contain data inherit'; -- -- Name: elementresult_elementresult_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('elementresult', 'elementresult_id'), 1, false); -- -- Name: affymetrixcel; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE affymetrixcel ( mean double precision NOT NULL, sd double precision NOT NULL, pixels integer NOT NULL ) INHERITS (elementresult); -- -- Name: affymetrixdabg; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE affymetrixdabg ( call_p double precision NOT NULL ) INHERITS (elementresult); -- -- Name: affymetrixdchip; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE affymetrixdchip ( z double precision ) INHERITS (elementresult); -- -- Name: affymetrixgcrma; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE affymetrixgcrma ( z double precision ) INHERITS (elementresult); -- -- Name: affymetrixmas5; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE affymetrixmas5 ( call character(1) NOT NULL, call_p double precision NOT NULL, statpairs integer NOT NULL, statpairsused integer NOT NULL, z double precision ) INHERITS (elementresult); -- -- Name: affymetrixplier; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE affymetrixplier ( ) INHERITS (elementresult); -- -- Name: affymetrixprobe; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE affymetrixprobe ( element_id serial NOT NULL, feature_id integer, arraydesign_id integer NOT NULL, type_id integer, dbxref_id integer, name character varying(255), affymetrixprobeset_id integer, "row" integer NOT NULL, col integer NOT NULL ); -- -- Name: affymetrixprobe_element_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('affymetrixprobe', 'element_id'), 1, false); -- -- Name: affymetrixprobeset; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE affymetrixprobeset ( element_id serial NOT NULL, feature_id integer, arraydesign_id integer NOT NULL, type_id integer, dbxref_id integer, name character varying(255) ); -- -- Name: affymetrixprobeset_element_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('affymetrixprobeset', 'element_id'), 1, false); -- -- Name: affymetrixprobesetstat; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE affymetrixprobesetstat ( mean double precision NOT NULL, median double precision NOT NULL, quartile1 double precision NOT NULL, quartile3 double precision NOT NULL, sd double precision NOT NULL, n integer NOT NULL ) INHERITS (elementresult); -- -- Name: affymetrixpsi; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE affymetrixpsi ( q1pas integer, q1pbs integer, q1mas integer, q1mbs integer, q1paa integer, q1pba integer, q1maa integer, q1mba integer, q2pas integer, q2pbs integer, q2mas integer, q2mbs integer, q2paa integer, q2pba integer, q2maa integer, q2mba integer, q3pas integer, q3pbs integer, q3mas integer, q3mbs integer, q3paa integer, q3pba integer, q3maa integer, q3mba integer, q4pas integer, q4pbs integer, q4mas integer, q4mbs integer, q4paa integer, q4pba integer, q4maa integer, q4mba integer, q5pas integer, q5pbs integer, q5mas integer, q5mbs integer, q5paa integer, q5pba integer, q5maa integer, q5mba integer, q6pas integer, q6pbs integer, q6mas integer, q6mbs integer, q6paa integer, q6pba integer, q6maa integer, q6mba integer ) INHERITS (elementresult); -- -- Name: affymetrixrma; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE affymetrixrma ( z double precision ) INHERITS (elementresult); -- -- Name: affymetrixsea; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE affymetrixsea ( ) INHERITS (elementresult); -- -- Name: affymetrixsnp; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE affymetrixsnp ( call smallint, call_p double precision, _signal real[] ) INHERITS (elementresult); -- -- Name: affymetrixvsn; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE affymetrixvsn ( z double precision ) INHERITS (elementresult); -- -- Name: analysis; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE analysis ( analysis_id serial NOT NULL, name character varying(255), description text, program character varying(255) NOT NULL, programversion character varying(255) NOT NULL, algorithm character varying(255), sourcename character varying(255), sourceversion character varying(255), sourceuri text, timeexecuted timestamp without time zone DEFAULT now() NOT NULL ); -- -- Name: analysis_analysis_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('analysis', 'analysis_id'), 9, true); -- -- Name: analysisfeature; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE analysisfeature ( analysisfeature_id serial NOT NULL, feature_id integer NOT NULL, analysis_id integer NOT NULL, rawscore double precision, normscore double precision, significance double precision, identity double precision ); -- -- Name: analysisfeature_analysisfeature_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('analysisfeature', 'analysisfeature_id'), 6, true); -- -- Name: analysisprop; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE analysisprop ( analysisprop_id serial NOT NULL, analysis_id integer NOT NULL, type_id integer NOT NULL, value text ); -- -- Name: analysisprop_analysisprop_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('analysisprop', 'analysisprop_id'), 1, false); -- -- Name: arraydesign; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE arraydesign ( arraydesign_id serial NOT NULL, manufacturer_id integer NOT NULL, platformtype_id integer NOT NULL, substratetype_id integer, protocol_id integer, dbxref_id integer, name text NOT NULL, version text, description text, array_dimensions text, element_dimensions text, num_of_elements integer, num_array_columns integer, num_array_rows integer, num_grid_columns integer, num_grid_rows integer, num_sub_columns integer, num_sub_rows integer ); -- -- Name: TABLE arraydesign; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE arraydesign IS 'general properties about an array. and array is a template used to generate physical slides, etc. it contains layout information, as well as global array properties, such as material (glass, nylon) and spot dimensions(in rows/columns).'; -- -- Name: arraydesign_arraydesign_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('arraydesign', 'arraydesign_id'), 38, true); -- -- Name: arraydesignprop; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE arraydesignprop ( arraydesignprop_id serial NOT NULL, arraydesign_id integer NOT NULL, type_id integer NOT NULL, value text, rank integer DEFAULT 0 NOT NULL ); -- -- Name: TABLE arraydesignprop; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE arraydesignprop IS 'extra arraydesign properties that are not accounted for in arraydesign'; -- -- Name: arraydesignprop_arraydesignprop_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('arraydesignprop', 'arraydesignprop_id'), 1, false); -- -- Name: assay; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE assay ( assay_id serial NOT NULL, arraydesign_id integer NOT NULL, protocol_id integer, assaydate timestamp without time zone DEFAULT now(), arrayidentifier text, arraybatchidentifier text, operator_id integer NOT NULL, dbxref_id integer, name text, description text ); -- -- Name: TABLE assay; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE assay IS 'an assay consists of a physical instance of an array, combined with the conditions used to create the array (protocols, technician info). the assay can be thought of as a hybridization'; -- -- Name: assay_assay_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('assay', 'assay_id'), 1, false); -- -- Name: assay_biomaterial; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE assay_biomaterial ( assay_biomaterial_id serial NOT NULL, assay_id integer NOT NULL, biomaterial_id integer NOT NULL, channel_id integer, rank integer DEFAULT 0 NOT NULL ); -- -- Name: TABLE assay_biomaterial; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE assay_biomaterial IS 'a biomaterial can be hybridized many times (technical replicates), or combined with other biomaterials in a single hybridization (for two-channel arrays)'; -- -- Name: assay_biomaterial_assay_biomaterial_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('assay_biomaterial', 'assay_biomaterial_id'), 1, false); -- -- Name: assay_project; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE assay_project ( assay_project_id serial NOT NULL, assay_id integer NOT NULL, project_id integer NOT NULL ); -- -- Name: TABLE assay_project; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE assay_project IS 'link assays to projects'; -- -- Name: assay_project_assay_project_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('assay_project', 'assay_project_id'), 1, false); -- -- Name: assayprop; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE assayprop ( assayprop_id serial NOT NULL, assay_id integer NOT NULL, type_id integer NOT NULL, value text, rank integer DEFAULT 0 NOT NULL ); -- -- Name: TABLE assayprop; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE assayprop IS 'extra assay properties that are not accounted for in assay'; -- -- Name: assayprop_assayprop_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('assayprop', 'assayprop_id'), 1, false); -- -- Name: biomaterial; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE biomaterial ( biomaterial_id serial NOT NULL, taxon_id integer, biosourceprovider_id integer, dbxref_id integer, name text, description text ); -- -- Name: TABLE biomaterial; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE biomaterial IS 'a biomaterial represents the MAGE concept of BioSource, BioSample, and LabeledExtract. it is essentially some biological material (tissue, cells, serum) that may have been processed. processed biomaterials should be traceable back to raw biomaterials via the biomaterialrelationship table.'; -- -- Name: biomaterial_biomaterial_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('biomaterial', 'biomaterial_id'), 1, false); -- -- Name: biomaterial_dbxref; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE biomaterial_dbxref ( biomaterial_dbxref_id serial NOT NULL, biomaterial_id integer NOT NULL, dbxref_id integer NOT NULL ); -- -- Name: biomaterial_dbxref_biomaterial_dbxref_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('biomaterial_dbxref', 'biomaterial_dbxref_id'), 1, false); -- -- Name: biomaterial_relationship; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE biomaterial_relationship ( biomaterial_relationship_id serial NOT NULL, subject_id integer NOT NULL, type_id integer NOT NULL, object_id integer NOT NULL ); -- -- Name: TABLE biomaterial_relationship; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE biomaterial_relationship IS 'relate biomaterials to one another. this is a way to track a series of treatments or material splits/merges, for instance'; -- -- Name: biomaterial_relationship_biomaterial_relationship_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('biomaterial_relationship', 'biomaterial_relationship_id'), 1, false); -- -- Name: biomaterial_treatment; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE biomaterial_treatment ( biomaterial_treatment_id serial NOT NULL, biomaterial_id integer NOT NULL, treatment_id integer NOT NULL, unittype_id integer, value real, rank integer DEFAULT 0 NOT NULL ); -- -- Name: TABLE biomaterial_treatment; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE biomaterial_treatment IS 'link biomaterials to treatments. treatments have an order of operations (rank), and associated measurements (unittype_id, value)'; -- -- Name: biomaterial_treatment_biomaterial_treatment_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('biomaterial_treatment', 'biomaterial_treatment_id'), 1, false); -- -- Name: biomaterialprop; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE biomaterialprop ( biomaterialprop_id serial NOT NULL, biomaterial_id integer NOT NULL, type_id integer NOT NULL, value text, rank integer DEFAULT 0 NOT NULL ); -- -- Name: TABLE biomaterialprop; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE biomaterialprop IS 'extra biomaterial properties that are not accounted for in biomaterial'; -- -- Name: biomaterialprop_biomaterialprop_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('biomaterialprop', 'biomaterialprop_id'), 1, false); -- -- Name: channel; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE channel ( channel_id serial NOT NULL, name text NOT NULL, definition text NOT NULL ); -- -- Name: TABLE channel; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE channel IS 'different array platforms can record signals from one or more channels (cDNA arrays typically use two CCD, but affy uses only one)'; -- -- Name: channel_channel_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('channel', 'channel_id'), 1, false); -- -- Name: common_ancestor_cvterm; Type: VIEW; Schema: public; Owner: gilbertd -- CREATE VIEW common_ancestor_cvterm AS SELECT p1.subject_id AS cvterm1_id, p2.subject_id AS cvterm2_id, p1.object_id AS ancestor_cvterm_id, p1.pathdistance AS pathdistance1, p2.pathdistance AS pathdistance2, (p1.pathdistance + p2.pathdistance) AS total_pathdistance FROM cvtermpath p1, cvtermpath p2 WHERE (p1.object_id = p2.object_id); -- -- Name: VIEW common_ancestor_cvterm; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON VIEW common_ancestor_cvterm IS 'The common ancestor of any two terms is the intersection of both terms ancestors. Two terms can have multiple common ancestors. Use total_pathdistance to get the least common ancestor'; -- -- Name: common_descendant_cvterm; Type: VIEW; Schema: public; Owner: gilbertd -- CREATE VIEW common_descendant_cvterm AS SELECT p1.object_id AS cvterm1_id, p2.object_id AS cvterm2_id, p1.subject_id AS ancestor_cvterm_id, p1.pathdistance AS pathdistance1, p2.pathdistance AS pathdistance2, (p1.pathdistance + p2.pathdistance) AS total_pathdistance FROM cvtermpath p1, cvtermpath p2 WHERE (p1.subject_id = p2.subject_id); -- -- Name: VIEW common_descendant_cvterm; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON VIEW common_descendant_cvterm IS 'The common descendant of any two terms is the intersection of both terms descendants. Two terms can have multiple common descendants. Use total_pathdistance to get the least common ancestor'; -- -- Name: contact; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE contact ( contact_id serial NOT NULL, type_id integer, name character varying(255) NOT NULL, description character varying(255) ); -- -- Name: TABLE contact; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE contact IS 'model persons, institutes, groups, organizations, etc'; -- -- Name: COLUMN contact.type_id; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN contact.type_id IS 'what type of contact is this? e.g. "person", "lab", etc.'; -- -- Name: contact_contact_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('contact', 'contact_id'), 2, true); -- -- Name: contact_relationship; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE contact_relationship ( contact_relationship_id serial NOT NULL, type_id integer NOT NULL, subject_id integer NOT NULL, object_id integer NOT NULL ); -- -- Name: TABLE contact_relationship; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE contact_relationship IS 'model relationships between contacts'; -- -- Name: COLUMN contact_relationship.type_id; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN contact_relationship.type_id IS 'relationship type between subject and object. This is a cvterm, typically from the OBO relationship ontology, although other relationship types are allowed'; -- -- Name: COLUMN contact_relationship.subject_id; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN contact_relationship.subject_id IS 'the subject of the subj-predicate-obj sentence. In a DAG, this corresponds to the child node'; -- -- Name: COLUMN contact_relationship.object_id; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN contact_relationship.object_id IS 'the object of the subj-predicate-obj sentence. In a DAG, this corresponds to the parent node'; -- -- Name: contact_relationship_contact_relationship_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('contact_relationship', 'contact_relationship_id'), 1, false); -- -- Name: control; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE control ( control_id serial NOT NULL, type_id integer NOT NULL, assay_id integer NOT NULL, tableinfo_id integer NOT NULL, row_id integer NOT NULL, name text, value text, rank integer DEFAULT 0 NOT NULL ); -- -- Name: control_control_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('control', 'control_id'), 1, false); -- -- Name: cv; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE cv ( cv_id serial NOT NULL, name character varying(255) NOT NULL, definition text ); -- -- Name: TABLE cv; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE cv IS 'A controlled vocabulary or ontology. A cv is composed of cvterms (aka terms, classes, concepts, frames) and the relationships between them'; -- -- Name: COLUMN cv.name; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN cv.name IS 'The name of the ontology. This corresponds to the obo-format -namespace-. cv names are unique'; -- -- Name: COLUMN cv.definition; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN cv.definition IS 'A description of the criteria for membership of this ontology'; -- -- Name: cv_cv_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('cv', 'cv_id'), 12, true); -- -- Name: cv_leaf; Type: VIEW; Schema: public; Owner: gilbertd -- CREATE VIEW cv_leaf AS SELECT cvterm.cv_id, cvterm.cvterm_id FROM cvterm WHERE (NOT (cvterm.cvterm_id IN (SELECT cvterm_relationship.object_id FROM cvterm_relationship))); -- -- Name: VIEW cv_leaf; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON VIEW cv_leaf IS 'the leaves of a cv are the set of terms which have no children (terms that are not the object of a relation). All cvs will have at least 1 leaf'; -- -- Name: cv_root; Type: VIEW; Schema: public; Owner: gilbertd -- CREATE VIEW cv_root AS SELECT cvterm.cv_id, cvterm.cvterm_id AS root_cvterm_id FROM cvterm WHERE ((NOT (cvterm.cvterm_id IN (SELECT cvterm_relationship.subject_id FROM cvterm_relationship))) AND (cvterm.is_obsolete = 0)); -- -- Name: VIEW cv_root; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON VIEW cv_root IS 'the roots of a cv are the set of terms which have no parents (terms that are not the subject of a relation). Most cvs will have a single root, some may have >1. All will have at least 1'; -- -- Name: cvterm_cvterm_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('cvterm', 'cvterm_id'), 22022, true); -- -- Name: cvterm_dbxref_cvterm_dbxref_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('cvterm_dbxref', 'cvterm_dbxref_id'), 33906, true); -- -- Name: cvterm_relationship_cvterm_relationship_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('cvterm_relationship', 'cvterm_relationship_id'), 31619, true); -- -- Name: cvtermpath_cvtermpath_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('cvtermpath', 'cvtermpath_id'), 1, false); -- -- Name: cvtermprop; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE cvtermprop ( cvtermprop_id serial NOT NULL, cvterm_id integer NOT NULL, type_id integer NOT NULL, value text DEFAULT ''::text NOT NULL, rank integer DEFAULT 0 NOT NULL ); -- -- Name: TABLE cvtermprop; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE cvtermprop IS 'Additional extensible properties can be attached to a cvterm using this table. Corresponds to -AnnotationProperty- in W3C OWL format'; -- -- Name: COLUMN cvtermprop.type_id; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN cvtermprop.type_id IS 'The name of the property/slot is a cvterm. The meaning of the property is defined in that cvterm'; -- -- Name: COLUMN cvtermprop.value; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN cvtermprop.value IS 'The value of the property, represented as text. Numeric values are converted to their text representation'; -- -- Name: COLUMN cvtermprop.rank; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN cvtermprop.rank IS 'Property-Value ordering. Any cvterm can have multiple values for any particular property type - these are ordered in a list using rank, counting from zero. For properties that are single-valued rather than multi-valued, the default 0 value should be used'; -- -- Name: cvtermprop_cvtermprop_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('cvtermprop', 'cvtermprop_id'), 1749, true); -- -- Name: cvtermsynonym_cvtermsynonym_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('cvtermsynonym', 'cvtermsynonym_id'), 18817, true); -- -- Name: db_db_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('db', 'db_id'), 97, true); -- -- Name: dbxref_dbxref_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('dbxref', 'dbxref_id'), 36728, true); -- -- Name: dbxrefd; Type: VIEW; Schema: public; Owner: gilbertd -- CREATE VIEW dbxrefd AS SELECT dbxref.dbxref_id, dbxref.db_id, dbxref.accession, dbxref.version, dbxref.description, db.name AS dbname, (((db.name)::text || ':'::text) || (dbxref.accession)::text) AS dbxrefstr FROM (dbxref JOIN db USING (db_id)); -- -- Name: dbxrefprop; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE dbxrefprop ( dbxrefprop_id serial NOT NULL, dbxref_id integer NOT NULL, type_id integer NOT NULL, value text DEFAULT ''::text NOT NULL, rank integer DEFAULT 0 NOT NULL ); -- -- Name: TABLE dbxrefprop; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE dbxrefprop IS 'Metadata about a dbxref. Note that this is not defined in the dbxref module, as it depends on the cvterm table. This table has a structure analagous to cvtermprop'; -- -- Name: dbxrefprop_dbxrefprop_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('dbxrefprop', 'dbxrefprop_id'), 1, false); -- -- Name: dfeatureloc; Type: VIEW; Schema: public; Owner: gilbertd -- CREATE VIEW dfeatureloc AS SELECT featureloc.featureloc_id, featureloc.feature_id, featureloc.srcfeature_id, featureloc.fmin AS nbeg, featureloc.is_fmin_partial AS is_nbeg_partial, featureloc.fmax AS nend, featureloc.is_fmax_partial AS is_nend_partial, featureloc.strand, featureloc.phase, featureloc.residue_info, featureloc.locgroup, featureloc.rank FROM featureloc WHERE ((featureloc.strand < 0) OR (featureloc.phase < 0)) UNION SELECT featureloc.featureloc_id, featureloc.feature_id, featureloc.srcfeature_id, featureloc.fmax AS nbeg, featureloc.is_fmax_partial AS is_nbeg_partial, featureloc.fmin AS nend, featureloc.is_fmin_partial AS is_nend_partial, featureloc.strand, featureloc.phase, featureloc.residue_info, featureloc.locgroup, featureloc.rank FROM featureloc WHERE (((featureloc.strand IS NULL) OR (featureloc.strand >= 0)) OR (featureloc.phase >= 0)); -- -- Name: eimage; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE eimage ( eimage_id serial NOT NULL, eimage_data text, eimage_type character varying(255) NOT NULL, image_uri character varying(255) ); -- -- Name: eimage_eimage_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('eimage', 'eimage_id'), 1, false); -- -- Name: element; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE element ( element_id serial NOT NULL, feature_id integer, arraydesign_id integer NOT NULL, type_id integer, dbxref_id integer ); -- -- Name: TABLE element; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE element IS 'represents a feature of the array. this is typically a region of the array coated or bound to DNA'; -- -- Name: element_element_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('element', 'element_id'), 1, false); -- -- Name: element_relationship; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE element_relationship ( element_relationship_id serial NOT NULL, subject_id integer NOT NULL, type_id integer NOT NULL, object_id integer NOT NULL, value text, rank integer DEFAULT 0 NOT NULL ); -- -- Name: TABLE element_relationship; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE element_relationship IS 'sometimes we want to combine measurements from multiple elements to get a composite value. affy combines many probes to form a probeset measurement, for instance'; -- -- Name: element_relationship_element_relationship_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('element_relationship', 'element_relationship_id'), 1, false); -- -- Name: elementresult_relationship; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE elementresult_relationship ( elementresult_relationship_id serial NOT NULL, subject_id integer NOT NULL, type_id integer NOT NULL, object_id integer NOT NULL, value text, rank integer DEFAULT 0 NOT NULL ); -- -- Name: TABLE elementresult_relationship; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE elementresult_relationship IS 'sometimes we want to combine measurements from multiple elements to get a composite value. affy combines many probes to form a probeset measurement, for instance'; -- -- Name: elementresult_relationship_elementresult_relationship_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('elementresult_relationship', 'elementresult_relationship_id'), 1, false); -- -- Name: environment; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE environment ( environment_id serial NOT NULL, uniquename text NOT NULL, description text ); -- -- Name: environment_cvterm; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE environment_cvterm ( environment_cvterm_id serial NOT NULL, environment_id integer NOT NULL, cvterm_id integer NOT NULL ); -- -- Name: environment_cvterm_environment_cvterm_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('environment_cvterm', 'environment_cvterm_id'), 1, false); -- -- Name: environment_environment_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('environment', 'environment_id'), 1, false); -- -- Name: expression; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE expression ( expression_id serial NOT NULL, description text ); -- -- Name: expression_cvterm; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE expression_cvterm ( expression_cvterm_id serial NOT NULL, expression_id integer NOT NULL, cvterm_id integer NOT NULL, rank integer NOT NULL, cvterm_type character varying(255) ); -- -- Name: expression_cvterm_expression_cvterm_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('expression_cvterm', 'expression_cvterm_id'), 1, false); -- -- Name: expression_expression_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('expression', 'expression_id'), 1, false); -- -- Name: expression_image; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE expression_image ( expression_image_id serial NOT NULL, expression_id integer NOT NULL, eimage_id integer NOT NULL ); -- -- Name: expression_image_expression_image_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('expression_image', 'expression_image_id'), 1, false); -- -- Name: expression_pub; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE expression_pub ( expression_pub_id serial NOT NULL, expression_id integer NOT NULL, pub_id integer NOT NULL ); -- -- Name: expression_pub_expression_pub_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('expression_pub', 'expression_pub_id'), 1, false); -- -- Name: f_type; Type: VIEW; Schema: public; Owner: gilbertd -- CREATE VIEW f_type AS SELECT f.feature_id, f.name, f.dbxref_id, c.name AS "type", f.residues, f.seqlen, f.md5checksum, f.type_id, f.timeaccessioned, f.timelastmodified FROM feature f, cvterm c WHERE (f.type_id = c.cvterm_id); -- -- Name: f_loc; Type: VIEW; Schema: public; Owner: gilbertd -- CREATE VIEW f_loc AS SELECT f.feature_id, f.name, f.dbxref_id, fl.nbeg, fl.nend, fl.strand FROM dfeatureloc fl, f_type f WHERE (f.feature_id = fl.feature_id); -- -- Name: feature_contains; Type: VIEW; Schema: public; Owner: gilbertd -- CREATE VIEW feature_contains AS SELECT x.feature_id AS subject_id, y.feature_id AS object_id FROM featureloc x, featureloc y WHERE ((x.srcfeature_id = y.srcfeature_id) AND ((y.fmin >= x.fmin) AND (y.fmin <= x.fmax))); -- -- Name: VIEW feature_contains; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON VIEW feature_contains IS 'subject intervals contains (or is same as) object interval. transitive,reflexive'; -- -- Name: feature_cvterm_dbxref_feature_cvterm_dbxref_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('feature_cvterm_dbxref', 'feature_cvterm_dbxref_id'), 1, false); -- -- Name: feature_cvterm_feature_cvterm_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('feature_cvterm', 'feature_cvterm_id'), 6, true); -- -- Name: feature_cvterm_pub; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE feature_cvterm_pub ( feature_cvterm_pub_id serial NOT NULL, feature_cvterm_id integer NOT NULL, pub_id integer NOT NULL ); -- -- Name: TABLE feature_cvterm_pub; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE feature_cvterm_pub IS 'Secondary pubs for an association. Each feature_cvterm association is supported by a single primary publication. Additional secondary pubs can be added using this linking table (in a GO gene association file, these corresponding to any IDs after the pipe symbol in the publications column'; -- -- Name: feature_cvterm_pub_feature_cvterm_pub_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('feature_cvterm_pub', 'feature_cvterm_pub_id'), 1, false); -- -- Name: feature_cvtermprop_feature_cvtermprop_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('feature_cvtermprop', 'feature_cvtermprop_id'), 1, false); -- -- Name: feature_dbxref_feature_dbxref_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('feature_dbxref', 'feature_dbxref_id'), 6, true); -- -- Name: feature_difference; Type: VIEW; Schema: public; Owner: gilbertd -- CREATE VIEW feature_difference AS SELECT x.feature_id AS subject_id, y.feature_id AS object_id, x.strand AS srcfeature_id, x.srcfeature_id AS fmin, x.fmin AS fmax, y.fmin AS strand FROM featureloc x, featureloc y WHERE ((x.srcfeature_id = y.srcfeature_id) AND ((x.fmin < y.fmin) AND (x.fmax >= y.fmax))) UNION SELECT x.feature_id AS subject_id, y.feature_id AS object_id, x.strand AS srcfeature_id, x.srcfeature_id AS fmin, y.fmax, x.fmax AS strand FROM featureloc x, featureloc y WHERE ((x.srcfeature_id = y.srcfeature_id) AND ((x.fmax > y.fmax) AND (x.fmin <= y.fmin))); -- -- Name: VIEW feature_difference; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON VIEW feature_difference IS 'size of gap between two features. must be abutting or disjoint'; -- -- Name: feature_disjoint; Type: VIEW; Schema: public; Owner: gilbertd -- CREATE VIEW feature_disjoint AS SELECT x.feature_id AS subject_id, y.feature_id AS object_id FROM featureloc x, featureloc y WHERE ((x.srcfeature_id = y.srcfeature_id) AND ((x.fmax < y.fmin) AND (x.fmin > y.fmax))); -- -- Name: VIEW feature_disjoint; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON VIEW feature_disjoint IS 'featurelocs do not meet. symmetric'; -- -- Name: feature_distance; Type: VIEW; Schema: public; Owner: gilbertd -- CREATE VIEW feature_distance AS SELECT x.feature_id AS subject_id, y.feature_id AS object_id, x.srcfeature_id, x.strand AS subject_strand, y.strand AS object_strand, CASE WHEN (x.fmax <= y.fmin) THEN (x.fmax - y.fmin) ELSE (y.fmax - x.fmin) END AS distance FROM featureloc x, featureloc y WHERE ((x.srcfeature_id = y.srcfeature_id) AND ((x.fmax <= y.fmin) OR (x.fmin >= y.fmax))); -- -- Name: feature_expression; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE feature_expression ( feature_expression_id serial NOT NULL, expression_id integer NOT NULL, feature_id integer NOT NULL ); -- -- Name: feature_expression_feature_expression_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('feature_expression', 'feature_expression_id'), 1, false); -- -- Name: feature_feature_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('feature', 'feature_id'), 6, true); -- -- Name: feature_genotype; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE feature_genotype ( feature_genotype_id serial NOT NULL, feature_id integer NOT NULL, genotype_id integer NOT NULL, chromosome_id integer, rank integer NOT NULL, cgroup integer NOT NULL, cvterm_id integer NOT NULL ); -- -- Name: feature_genotype_feature_genotype_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('feature_genotype', 'feature_genotype_id'), 1, false); -- -- Name: feature_intersection; Type: VIEW; Schema: public; Owner: gilbertd -- CREATE VIEW feature_intersection AS SELECT x.feature_id AS subject_id, y.feature_id AS object_id, x.srcfeature_id, x.strand AS subject_strand, y.strand AS object_strand, CASE WHEN (x.fmin < y.fmin) THEN y.fmin ELSE x.fmin END AS fmin, CASE WHEN (x.fmax > y.fmax) THEN y.fmax ELSE x.fmax END AS fmax FROM featureloc x, featureloc y WHERE ((x.srcfeature_id = y.srcfeature_id) AND ((x.fmax >= y.fmin) AND (x.fmin <= y.fmax))); -- -- Name: VIEW feature_intersection; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON VIEW feature_intersection IS 'set-intersection on interval defined by featureloc. featurelocs must meet'; -- -- Name: feature_meets; Type: VIEW; Schema: public; Owner: gilbertd -- CREATE VIEW feature_meets AS SELECT x.feature_id AS subject_id, y.feature_id AS object_id FROM featureloc x, featureloc y WHERE ((x.srcfeature_id = y.srcfeature_id) AND ((x.fmax >= y.fmin) AND (x.fmin <= y.fmax))); -- -- Name: VIEW feature_meets; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON VIEW feature_meets IS 'intervals have at least one interbase point in common (ie overlap OR abut). symmetric,reflexive'; -- -- Name: feature_meets_on_same_strand; Type: VIEW; Schema: public; Owner: gilbertd -- CREATE VIEW feature_meets_on_same_strand AS SELECT x.feature_id AS subject_id, y.feature_id AS object_id FROM featureloc x, featureloc y WHERE (((x.srcfeature_id = y.srcfeature_id) AND (x.strand = y.strand)) AND ((x.fmax >= y.fmin) AND (x.fmin <= y.fmax))); -- -- Name: VIEW feature_meets_on_same_strand; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON VIEW feature_meets_on_same_strand IS 'as feature_meets, but featurelocs must be on the same strand. symmetric,reflexive'; -- -- Name: feature_phenotype; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE feature_phenotype ( feature_phenotype_id serial NOT NULL, feature_id integer NOT NULL, phenotype_id integer NOT NULL ); -- -- Name: feature_phenotype_feature_phenotype_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('feature_phenotype', 'feature_phenotype_id'), 1, false); -- -- Name: feature_pub_feature_pub_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('feature_pub', 'feature_pub_id'), 1, false); -- -- Name: feature_relationship; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE feature_relationship ( feature_relationship_id serial NOT NULL, subject_id integer NOT NULL, object_id integer NOT NULL, type_id integer NOT NULL, value text, rank integer DEFAULT 0 NOT NULL ); -- -- Name: TABLE feature_relationship; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE feature_relationship IS 'features can be arranged in graphs, eg exon part_of transcript part_of gene; translation madeby transcript if type is thought of as a verb, each arc makes a statement [SUBJECT VERB OBJECT] object can also be thought of as parent (containing feature), and subject as child (contained feature or subfeature) -- we include the relationship rank/order, because even though most of the time we can order things implicitly by sequence coordinates, we cant always do this - eg transpliced genes. its also useful for quickly getting implicit introns'; -- -- Name: COLUMN feature_relationship.subject_id; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN feature_relationship.subject_id IS 'the subject of the subj-predicate-obj sentence. This is typically the subfeature'; -- -- Name: COLUMN feature_relationship.object_id; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN feature_relationship.object_id IS 'the object of the subj-predicate-obj sentence. This is typically the container feature'; -- -- Name: COLUMN feature_relationship.type_id; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN feature_relationship.type_id IS 'relationship type between subject and object. This is a cvterm, typically from the OBO relationship ontology, although other relationship types are allowed. The most common relationship type is OBO_REL:part_of. Valid relationship types are constrained by the Sequence Ontology'; -- -- Name: COLUMN feature_relationship.value; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN feature_relationship.value IS 'Additional notes/comments'; -- -- Name: COLUMN feature_relationship.rank; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN feature_relationship.rank IS 'The ordering of subject features with respect to the object feature may be important (for example, exon ordering on a transcript - not always derivable if you take trans spliced genes into consideration). rank is used to order these; starts from zero'; -- -- Name: feature_relationship_feature_relationship_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('feature_relationship', 'feature_relationship_id'), 6, true); -- -- Name: feature_relationship_pub; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE feature_relationship_pub ( feature_relationship_pub_id serial NOT NULL, feature_relationship_id integer NOT NULL, pub_id integer NOT NULL ); -- -- Name: TABLE feature_relationship_pub; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE feature_relationship_pub IS 'Provenance. Attach optional evidence to a feature_relationship in the form of a publication'; -- -- Name: feature_relationship_pub_feature_relationship_pub_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('feature_relationship_pub', 'feature_relationship_pub_id'), 1, false); -- -- Name: feature_relationshipprop; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE feature_relationshipprop ( feature_relationshipprop_id serial NOT NULL, feature_relationship_id integer NOT NULL, type_id integer NOT NULL, value text, rank integer DEFAULT 0 NOT NULL ); -- -- Name: TABLE feature_relationshipprop; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE feature_relationshipprop IS 'Extensible properties for feature_relationships. Analagous structure to featureprop. This table is largely optional and not used with a high frequency. Typical scenarios may be if one wishes to attach additional data to a feature_relationship - for example to say that the feature_relationship is only true in certain contexts'; -- -- Name: COLUMN feature_relationshipprop.type_id; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN feature_relationshipprop.type_id IS 'The name of the property/slot is a cvterm. The meaning of the property is defined in that cvterm. Currently there is no standard ontology for feature_relationship property types'; -- -- Name: COLUMN feature_relationshipprop.value; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN feature_relationshipprop.value IS 'The value of the property, represented as text. Numeric values are converted to their text representation. This is less efficient than using native database types, but is easier to query.'; -- -- Name: COLUMN feature_relationshipprop.rank; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN feature_relationshipprop.rank IS 'Property-Value ordering. Any feature_relationship can have multiple values for any particular property type - these are ordered in a list using rank, counting from zero. For properties that are single-valued rather than multi-valued, the default 0 value should be used'; -- -- Name: feature_relationshipprop_feature_relationshipprop_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('feature_relationshipprop', 'feature_relationshipprop_id'), 1, false); -- -- Name: feature_relationshipprop_pub; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE feature_relationshipprop_pub ( feature_relationshipprop_pub_id serial NOT NULL, feature_relationshipprop_id integer NOT NULL, pub_id integer NOT NULL ); -- -- Name: TABLE feature_relationshipprop_pub; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE feature_relationshipprop_pub IS 'Provenance for feature_relationshipprop'; -- -- Name: feature_relationshipprop_pub_feature_relationshipprop_pub_i_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('feature_relationshipprop_pub', 'feature_relationshipprop_pub_id'), 1, false); -- -- Name: feature_synonym_feature_synonym_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('feature_synonym', 'feature_synonym_id'), 6, true); -- -- Name: feature_union; Type: VIEW; Schema: public; Owner: gilbertd -- CREATE VIEW feature_union AS SELECT x.feature_id AS subject_id, y.feature_id AS object_id, x.srcfeature_id, x.strand AS subject_strand, y.strand AS object_strand, CASE WHEN (x.fmin < y.fmin) THEN x.fmin ELSE y.fmin END AS fmin, CASE WHEN (x.fmax > y.fmax) THEN x.fmax ELSE y.fmax END AS fmax FROM featureloc x, featureloc y WHERE ((x.srcfeature_id = y.srcfeature_id) AND ((x.fmax >= y.fmin) AND (x.fmin <= y.fmax))); -- -- Name: VIEW feature_union; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON VIEW feature_union IS 'set-union on interval defined by featureloc. featurelocs must meet'; -- -- Name: feature_uniquename_seq; Type: SEQUENCE; Schema: public; Owner: gilbertd -- CREATE SEQUENCE feature_uniquename_seq START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; -- -- Name: feature_uniquename_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval('feature_uniquename_seq', 1, false); -- -- Name: featureloc_featureloc_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('featureloc', 'featureloc_id'), 6, true); -- -- Name: featureloc_pub; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE featureloc_pub ( featureloc_pub_id serial NOT NULL, featureloc_id integer NOT NULL, pub_id integer NOT NULL ); -- -- Name: TABLE featureloc_pub; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE featureloc_pub IS 'Provenance of featureloc. Linking table between featurelocs and publications that mention them'; -- -- Name: featureloc_pub_featureloc_pub_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('featureloc_pub', 'featureloc_pub_id'), 1, false); -- -- Name: featurelocf; Type: VIEW; Schema: public; Owner: gilbertd -- CREATE VIEW featurelocf AS SELECT featureloc.featureloc_id, featureloc.feature_id, featureloc.srcfeature_id, featureloc.fmin, featureloc.is_fmin_partial, featureloc.fmax, featureloc.is_fmax_partial, featureloc.strand, featureloc.phase, featureloc.residue_info, featureloc.locgroup, featureloc.rank, feature.name AS srcname, feature.uniquename AS srcuniquename FROM (featureloc JOIN feature ON ((featureloc.srcfeature_id = feature.feature_id))); -- -- Name: featuremap; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE featuremap ( featuremap_id serial NOT NULL, name character varying(255), description text, unittype_id integer ); -- -- Name: featuremap_featuremap_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('featuremap', 'featuremap_id'), 1, false); -- -- Name: featuremap_pub; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE featuremap_pub ( featuremap_pub_id serial NOT NULL, featuremap_id integer NOT NULL, pub_id integer NOT NULL ); -- -- Name: featuremap_pub_featuremap_pub_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('featuremap_pub', 'featuremap_pub_id'), 1, false); -- -- Name: featurepair; Type: VIEW; Schema: public; Owner: gilbertd -- CREATE VIEW featurepair AS SELECT feature.feature_id, feature.dbxref_id, feature.organism_id, feature.name, feature.uniquename, feature.residues, feature.seqlen, feature.md5checksum, feature.type_id, feature.is_analysis, feature.is_obsolete, feature.timeaccessioned, feature.timelastmodified, fl1.srcfeature_id, fl1.fmin, fl1.fmax, fl1.strand, fl1.phase, fl2.srcfeature_id AS tsrcfeature_id, fl2.fmin AS tfmin, fl2.fmax AS tfmax, fl2.strand AS tstrand, fl2.phase AS tphase FROM ((feature JOIN featureloc fl1 USING (feature_id)) JOIN featureloc fl2 USING (feature_id)) WHERE ((((fl1.rank = 0) AND (fl2.rank = 0)) AND (fl1.locgroup = 0)) AND (fl2.locgroup = 0)); -- -- Name: featurepos; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE featurepos ( featurepos_id serial NOT NULL, featuremap_id serial NOT NULL, feature_id integer NOT NULL, map_feature_id integer NOT NULL, mappos double precision NOT NULL ); -- -- Name: featurepos_featuremap_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('featurepos', 'featuremap_id'), 1, false); -- -- Name: featurepos_featurepos_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('featurepos', 'featurepos_id'), 1, false); -- -- Name: featureprop_featureprop_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('featureprop', 'featureprop_id'), 6, true); -- -- Name: featureprop_pub; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE featureprop_pub ( featureprop_pub_id serial NOT NULL, featureprop_id integer NOT NULL, pub_id integer NOT NULL ); -- -- Name: TABLE featureprop_pub; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE featureprop_pub IS 'Provenance. Any featureprop assignment can optionally be supported by a publication'; -- -- Name: featureprop_pub_featureprop_pub_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('featureprop_pub', 'featureprop_pub_id'), 1, false); -- -- Name: featurepropd; Type: VIEW; Schema: public; Owner: gilbertd -- CREATE VIEW featurepropd AS SELECT featureprop.featureprop_id, featureprop.feature_id, featureprop.type_id, featureprop.value, featureprop.rank, cvterm.name AS "type" FROM (featureprop JOIN cvterm ON ((featureprop.type_id = cvterm.cvterm_id))); -- -- Name: featurerange; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE featurerange ( featurerange_id serial NOT NULL, featuremap_id integer NOT NULL, feature_id integer NOT NULL, leftstartf_id integer NOT NULL, leftendf_id integer, rightstartf_id integer, rightendf_id integer NOT NULL, rangestr character varying(255) ); -- -- Name: featurerange_featurerange_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('featurerange', 'featurerange_id'), 1, false); -- -- Name: featureset_meets; Type: VIEW; Schema: public; Owner: gilbertd -- CREATE VIEW featureset_meets AS SELECT x.object_id AS subject_id, y.object_id FROM ((feature_meets r JOIN feature_relationship x ON ((r.subject_id = x.subject_id))) JOIN feature_relationship y ON ((r.object_id = y.subject_id))); -- -- Name: featuresyn; Type: VIEW; Schema: public; Owner: gilbertd -- CREATE VIEW featuresyn AS SELECT feature.feature_id, feature.dbxref_id, feature.organism_id, feature.name, feature.uniquename, feature.residues, feature.seqlen, feature.md5checksum, feature.type_id, feature.is_analysis, feature.is_obsolete, feature.timeaccessioned, feature.timelastmodified, feature_synonym.pub_id, feature_synonym.is_current, feature_synonym.is_internal, synonym.synonym_id, synonym.type_id AS synonym_type_id, synonym.name AS synonym_name, synonym.synonym_sgml FROM ((feature JOIN feature_synonym USING (feature_id)) JOIN synonym USING (synonym_id)); -- -- Name: fnr_type; Type: VIEW; Schema: public; Owner: gilbertd -- CREATE VIEW fnr_type AS SELECT f.feature_id, f.name, f.dbxref_id, c.name AS "type", f.residues, f.seqlen, f.md5checksum, f.type_id, f.timeaccessioned, f.timelastmodified FROM (feature f LEFT JOIN analysisfeature af ON ((f.feature_id = af.feature_id))), cvterm c WHERE ((f.type_id = c.cvterm_id) AND (af.feature_id IS NULL)); -- -- Name: fp_key; Type: VIEW; Schema: public; Owner: gilbertd -- CREATE VIEW fp_key AS SELECT fp.feature_id, c.name AS pkey, fp.value FROM featureprop fp, cvterm c WHERE (fp.featureprop_id = c.cvterm_id); -- -- Name: genotype; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE genotype ( genotype_id serial NOT NULL, uniquename text NOT NULL, description character varying(255) ); -- -- Name: genotype_genotype_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('genotype', 'genotype_id'), 1, false); -- -- Name: gff3atts; Type: VIEW; Schema: public; Owner: gilbertd -- CREATE VIEW gff3atts AS (((((((SELECT fs.feature_id, 'Ontology_term' AS "type", CASE WHEN ((db.name)::text ~~ '%Gene Ontology%'::text) THEN (('GO:'::text || (dbx.accession)::text))::character varying WHEN ((db.name)::text ~~ 'Sequence Ontology%'::text) THEN (('SO:'::text || (dbx.accession)::text))::character varying ELSE ((((db.name)::text || ':'::text) || (dbx.accession)::text))::character varying END AS attribute FROM cvterm s, dbxref dbx, feature_cvterm fs, db WHERE (((fs.cvterm_id = s.cvterm_id) AND (s.dbxref_id = dbx.dbxref_id)) AND (db.db_id = dbx.db_id)) UNION ALL SELECT fs.feature_id, 'Dbxref' AS "type", (((d.name)::text || ':'::text) || (s.accession)::text) AS attribute FROM dbxref s, feature_dbxref fs, db d WHERE (((fs.dbxref_id = s.dbxref_id) AND (s.db_id = d.db_id)) AND ((d.name)::text <> 'GFF_source'::text))) UNION ALL SELECT f.feature_id, 'Alias' AS "type", s.name AS attribute FROM synonym s, feature_synonym fs, feature f WHERE ((((fs.synonym_id = s.synonym_id) AND (f.feature_id = fs.feature_id)) AND ((f.name)::text <> (s.name)::text)) AND (f.uniquename <> (s.name)::text))) UNION ALL SELECT fp.feature_id, cv.name AS "type", fp.value AS attribute FROM featureprop fp, cvterm cv WHERE (fp.type_id = cv.cvterm_id)) UNION ALL SELECT fs.feature_id, 'pub' AS "type", (((s.series_name)::text || ':'::text) || s.title) AS attribute FROM pub s, feature_pub fs WHERE (fs.pub_id = s.pub_id)) UNION ALL SELECT fr.subject_id AS feature_id, 'Parent' AS "type", parent.uniquename AS attribute FROM feature_relationship fr, feature parent WHERE (fr.object_id = parent.feature_id)) UNION ALL SELECT feature.feature_id, 'ID' AS "type", feature.uniquename AS attribute FROM feature WHERE (NOT (feature.type_id IN (SELECT cvterm.cvterm_id FROM cvterm WHERE ((cvterm.name)::text = 'CDS'::text))))) UNION ALL SELECT feature.feature_id, 'chado_feature_id' AS "type", (feature.feature_id)::character varying AS attribute FROM feature) UNION ALL SELECT feature.feature_id, 'Name' AS "type", feature.name AS attribute FROM feature; -- -- Name: gff3view; Type: VIEW; Schema: public; Owner: gilbertd -- CREATE VIEW gff3view AS SELECT f.feature_id, sf.name AS ref, dbx.accession AS source, cv.name AS "type", (fl.fmin + 1) AS fstart, fl.fmax AS fend, af.significance AS score, fl.strand, fl.phase, f.seqlen, f.name, f.organism_id FROM ((((((feature f LEFT JOIN featureloc fl ON ((f.feature_id = fl.feature_id))) LEFT JOIN feature sf ON ((fl.srcfeature_id = sf.feature_id))) LEFT JOIN feature_dbxref fd ON ((f.feature_id = fd.feature_id))) LEFT JOIN dbxref dbx ON ((dbx.dbxref_id = fd.dbxref_id))) LEFT JOIN cvterm cv ON ((f.type_id = cv.cvterm_id))) LEFT JOIN analysisfeature af ON ((f.feature_id = af.feature_id))) WHERE (dbx.db_id IN (SELECT db.db_id FROM db WHERE ((db.name)::text = 'GFF_source'::text))); -- -- Name: magedocumentation; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE magedocumentation ( magedocumentation_id serial NOT NULL, mageml_id integer NOT NULL, tableinfo_id integer NOT NULL, row_id integer NOT NULL, mageidentifier text NOT NULL ); -- -- Name: magedocumentation_magedocumentation_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('magedocumentation', 'magedocumentation_id'), 1, false); -- -- Name: mageml; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE mageml ( mageml_id serial NOT NULL, mage_package text NOT NULL, mage_ml text NOT NULL ); -- -- Name: TABLE mageml; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE mageml IS 'this table is for storing extra bits of mageml in a denormalized form. more normalization would require many more tables'; -- -- Name: mageml_mageml_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('mageml', 'mageml_id'), 1, false); -- -- Name: organism_dbxref_organism_dbxref_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('organism_dbxref', 'organism_dbxref_id'), 1, false); -- -- Name: organism_organism_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('organism', 'organism_id'), 10, true); -- -- Name: organismprop; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE organismprop ( organismprop_id serial NOT NULL, organism_id integer NOT NULL, type_id integer NOT NULL, value text, rank integer DEFAULT 0 NOT NULL ); -- -- Name: TABLE organismprop; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE organismprop IS 'tag-value properties - follows standard chado model'; -- -- Name: organismprop_organismprop_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('organismprop', 'organismprop_id'), 1, false); -- -- Name: phendesc; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE phendesc ( phendesc_id serial NOT NULL, genotype_id integer NOT NULL, environment_id integer NOT NULL, description text NOT NULL, pub_id integer NOT NULL ); -- -- Name: TABLE phendesc; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE phendesc IS 'a summary of a _set_ of phenotypic statements for any one gcontext made in any one publication'; -- -- Name: phendesc_phendesc_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('phendesc', 'phendesc_id'), 1, false); -- -- Name: phenotype; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE phenotype ( phenotype_id serial NOT NULL, uniquename text NOT NULL, observable_id integer, attr_id integer, value text, cvalue_id integer, assay_id integer ); -- -- Name: TABLE phenotype; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE phenotype IS 'a phenotypic statement, or a single atomic phenotypic observation a controlled sentence describing observable effect of non-wt function -- e.g. Obs=eye, attribute=color, cvalue=red'; -- -- Name: COLUMN phenotype.observable_id; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN phenotype.observable_id IS 'The entity: e.g. anatomy_part, biological_process'; -- -- Name: COLUMN phenotype.attr_id; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN phenotype.attr_id IS 'Phenotypic attribute (quality, property, attribute, character) - drawn from PATO'; -- -- Name: COLUMN phenotype.value; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN phenotype.value IS 'value of attribute - unconstrained free text. Used only if cvalue_id is not appropriate'; -- -- Name: COLUMN phenotype.cvalue_id; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN phenotype.cvalue_id IS 'Phenotype attribute value (state)'; -- -- Name: COLUMN phenotype.assay_id; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN phenotype.assay_id IS 'evidence type'; -- -- Name: phenotype_comparison; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE phenotype_comparison ( phenotype_comparison_id serial NOT NULL, genotype1_id integer NOT NULL, environment1_id integer NOT NULL, genotype2_id integer NOT NULL, environment2_id integer NOT NULL, phenotype1_id integer NOT NULL, phenotype2_id integer, type_id integer NOT NULL, pub_id integer NOT NULL ); -- -- Name: TABLE phenotype_comparison; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE phenotype_comparison IS 'comparison of phenotypes eg, genotype1/environment1/phenotype1 "non-suppressible" wrt genotype2/environment2/phenotype2'; -- -- Name: phenotype_comparison_phenotype_comparison_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('phenotype_comparison', 'phenotype_comparison_id'), 1, false); -- -- Name: phenotype_cvterm; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE phenotype_cvterm ( phenotype_cvterm_id serial NOT NULL, phenotype_id integer NOT NULL, cvterm_id integer NOT NULL ); -- -- Name: phenotype_cvterm_phenotype_cvterm_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('phenotype_cvterm', 'phenotype_cvterm_id'), 1, false); -- -- Name: phenotype_phenotype_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('phenotype', 'phenotype_id'), 1, false); -- -- Name: phenstatement; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE phenstatement ( phenstatement_id serial NOT NULL, genotype_id integer NOT NULL, environment_id integer NOT NULL, phenotype_id integer NOT NULL, type_id integer NOT NULL, pub_id integer NOT NULL ); -- -- Name: TABLE phenstatement; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE phenstatement IS 'Phenotypes are things like "larval lethal". Phenstatements are things like "dpp[1] is recessive larval lethal". So essentially phenstatement is a linking table expressing the relationship between genotype, environment, and phenotype.'; -- -- Name: phenstatement_phenstatement_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('phenstatement', 'phenstatement_id'), 1, false); -- -- Name: phylonode; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE phylonode ( phylonode_id serial NOT NULL, phylotree_id integer NOT NULL, parent_phylonode_id integer, left_idx integer NOT NULL, right_idx integer NOT NULL, type_id integer, feature_id integer, label character varying(255), distance double precision ); -- -- Name: phylonode_dbxref; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE phylonode_dbxref ( phylonode_dbxref_id serial NOT NULL, phylonode_id integer NOT NULL, dbxref_id integer NOT NULL ); -- -- Name: phylonode_dbxref_phylonode_dbxref_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('phylonode_dbxref', 'phylonode_dbxref_id'), 1, false); -- -- Name: phylonode_organism; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE phylonode_organism ( phylonode_organism_id serial NOT NULL, phylonode_id integer NOT NULL, organism_id integer NOT NULL ); -- -- Name: phylonode_organism_phylonode_organism_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('phylonode_organism', 'phylonode_organism_id'), 1, false); -- -- Name: phylonode_phylonode_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('phylonode', 'phylonode_id'), 1, false); -- -- Name: phylonode_pub; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE phylonode_pub ( phylonode_pub_id serial NOT NULL, phylonode_id integer NOT NULL, pub_id integer NOT NULL ); -- -- Name: phylonode_pub_phylonode_pub_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('phylonode_pub', 'phylonode_pub_id'), 1, false); -- -- Name: phylonode_relationship; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE phylonode_relationship ( phylonode_relationship_id serial NOT NULL, subject_id integer NOT NULL, object_id integer NOT NULL, type_id integer NOT NULL, rank integer ); -- -- Name: phylonode_relationship_phylonode_relationship_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('phylonode_relationship', 'phylonode_relationship_id'), 1, false); -- -- Name: phylonodeprop; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE phylonodeprop ( phylonodeprop_id serial NOT NULL, phylonode_id integer NOT NULL, type_id integer NOT NULL, value text DEFAULT ''::text NOT NULL, rank integer DEFAULT 0 NOT NULL ); -- -- Name: phylonodeprop_phylonodeprop_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('phylonodeprop', 'phylonodeprop_id'), 1, false); -- -- Name: phylotree; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE phylotree ( phylotree_id serial NOT NULL, dbxref_id integer NOT NULL, name character varying(255), type_id integer, "comment" text ); -- -- Name: phylotree_phylotree_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('phylotree', 'phylotree_id'), 1, false); -- -- Name: phylotree_pub; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE phylotree_pub ( phylotree_pub_id serial NOT NULL, phylotree_id integer NOT NULL, pub_id integer NOT NULL ); -- -- Name: phylotree_pub_phylotree_pub_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('phylotree_pub', 'phylotree_pub_id'), 1, false); -- -- Name: project; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE project ( project_id serial NOT NULL, name character varying(255) NOT NULL, description character varying(255) NOT NULL ); -- -- Name: project_project_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('project', 'project_id'), 1, false); -- -- Name: protocol; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE protocol ( protocol_id serial NOT NULL, type_id integer NOT NULL, pub_id integer, dbxref_id integer, name text NOT NULL, uri text, protocoldescription text, hardwaredescription text, softwaredescription text ); -- -- Name: TABLE protocol; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE protocol IS 'procedural notes on how data was prepared and processed'; -- -- Name: protocol_protocol_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('protocol', 'protocol_id'), 1, false); -- -- Name: protocolparam; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE protocolparam ( protocolparam_id serial NOT NULL, protocol_id integer NOT NULL, name text NOT NULL, datatype_id integer, unittype_id integer, value text, rank integer DEFAULT 0 NOT NULL ); -- -- Name: TABLE protocolparam; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE protocolparam IS 'parameters related to a protocol. if the protocol is a soak, this might include attributes of bath temperature and duration'; -- -- Name: protocolparam_protocolparam_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('protocolparam', 'protocolparam_id'), 1, false); -- -- Name: pub_dbxref; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE pub_dbxref ( pub_dbxref_id serial NOT NULL, pub_id integer NOT NULL, dbxref_id integer NOT NULL, is_current boolean DEFAULT true NOT NULL ); -- -- Name: TABLE pub_dbxref; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE pub_dbxref IS 'Handle links to eg, pubmed, biosis, zoorec, OCLC, mdeline, ISSN, coden...'; -- -- Name: pub_dbxref_pub_dbxref_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('pub_dbxref', 'pub_dbxref_id'), 1, false); -- -- Name: pub_pub_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('pub', 'pub_id'), 1, true); -- -- Name: pub_relationship; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE pub_relationship ( pub_relationship_id serial NOT NULL, subject_id integer NOT NULL, object_id integer NOT NULL, type_id integer NOT NULL ); -- -- Name: TABLE pub_relationship; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE pub_relationship IS 'Handle relationships between publications, eg, when one publication makes others obsolete, when one publication contains errata with respect to other publication(s), or when one publication also appears in another pub (I think these three are it - at least for fb)'; -- -- Name: pub_relationship_pub_relationship_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('pub_relationship', 'pub_relationship_id'), 1, false); -- -- Name: pubauthor; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE pubauthor ( pubauthor_id serial NOT NULL, pub_id integer NOT NULL, rank integer NOT NULL, editor boolean DEFAULT false, surname character varying(100) NOT NULL, givennames character varying(100), suffix character varying(100) ); -- -- Name: TABLE pubauthor; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE pubauthor IS 'an author for a publication. Note the denormalisation (hence lack of _ in table name) - this is deliberate as it is in general too hard to assign IDs to authors.'; -- -- Name: COLUMN pubauthor.rank; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN pubauthor.rank IS 'order of author in author list for this pub - order is important'; -- -- Name: COLUMN pubauthor.editor; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN pubauthor.editor IS 'indicates whether the author is an editor for linked publication. Note: this is a boolean field but does not follow the normal chado convention for naming booleans'; -- -- Name: COLUMN pubauthor.givennames; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN pubauthor.givennames IS 'first name, initials'; -- -- Name: COLUMN pubauthor.suffix; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON COLUMN pubauthor.suffix IS 'Jr., Sr., etc'; -- -- Name: pubauthor_pubauthor_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('pubauthor', 'pubauthor_id'), 1, false); -- -- Name: pubprop; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE pubprop ( pubprop_id serial NOT NULL, pub_id integer NOT NULL, type_id integer NOT NULL, value text NOT NULL, rank integer ); -- -- Name: TABLE pubprop; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE pubprop IS 'Property-value pairs for a pub. Follows standard chado pattern - see sequence module for details'; -- -- Name: pubprop_pubprop_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('pubprop', 'pubprop_id'), 1, false); -- -- Name: quantification; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE quantification ( quantification_id serial NOT NULL, acquisition_id integer NOT NULL, operator_id integer, protocol_id integer, analysis_id integer NOT NULL, quantificationdate timestamp without time zone DEFAULT now(), name text, uri text ); -- -- Name: TABLE quantification; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE quantification IS 'quantification is the transformation of an image acquisition to numeric data. this typically involves statistical procedures.'; -- -- Name: quantification_quantification_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('quantification', 'quantification_id'), 1, false); -- -- Name: quantification_relationship; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE quantification_relationship ( quantification_relationship_id serial NOT NULL, subject_id integer NOT NULL, type_id integer NOT NULL, object_id integer NOT NULL ); -- -- Name: TABLE quantification_relationship; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE quantification_relationship IS 'there may be multiple rounds of quantification, this allows us to keep an audit trail of what values went where'; -- -- Name: quantification_relationship_quantification_relationship_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('quantification_relationship', 'quantification_relationship_id'), 1, false); -- -- Name: quantificationprop; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE quantificationprop ( quantificationprop_id serial NOT NULL, quantification_id integer NOT NULL, type_id integer NOT NULL, value text, rank integer DEFAULT 0 NOT NULL ); -- -- Name: TABLE quantificationprop; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE quantificationprop IS 'extra quantification properties that are not accounted for in quantification'; -- -- Name: quantificationprop_quantificationprop_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('quantificationprop', 'quantificationprop_id'), 1, false); -- -- Name: stats_paths_to_root; Type: VIEW; Schema: public; Owner: gilbertd -- CREATE VIEW stats_paths_to_root AS SELECT cvtermpath.subject_id AS cvterm_id, count(DISTINCT cvtermpath.cvtermpath_id) AS total_paths, avg(cvtermpath.pathdistance) AS avg_distance, min(cvtermpath.pathdistance) AS min_distance, max(cvtermpath.pathdistance) AS max_distance FROM (cvtermpath JOIN cv_root ON ((cvtermpath.object_id = cv_root.root_cvterm_id))) GROUP BY cvtermpath.subject_id; -- -- Name: VIEW stats_paths_to_root; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON VIEW stats_paths_to_root IS 'per-cvterm statistics on its placement in the DAG relative to the root. There may be multiple paths from any term to the root. This gives the total number of paths, and the average minimum and maximum distances. Here distance is defined by cvtermpath.pathdistance'; -- -- Name: study; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE study ( study_id serial NOT NULL, contact_id integer NOT NULL, pub_id integer, dbxref_id integer, name text NOT NULL, description text ); -- -- Name: study_assay; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE study_assay ( study_assay_id serial NOT NULL, study_id integer NOT NULL, assay_id integer NOT NULL ); -- -- Name: study_assay_study_assay_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('study_assay', 'study_assay_id'), 1, false); -- -- Name: study_study_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('study', 'study_id'), 1, false); -- -- Name: studydesign; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE studydesign ( studydesign_id serial NOT NULL, study_id integer NOT NULL, description text ); -- -- Name: studydesign_studydesign_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('studydesign', 'studydesign_id'), 1, false); -- -- Name: studydesignprop; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE studydesignprop ( studydesignprop_id serial NOT NULL, studydesign_id integer NOT NULL, type_id integer NOT NULL, value text, rank integer DEFAULT 0 NOT NULL ); -- -- Name: studydesignprop_studydesignprop_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('studydesignprop', 'studydesignprop_id'), 1, false); -- -- Name: studyfactor; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE studyfactor ( studyfactor_id serial NOT NULL, studydesign_id integer NOT NULL, type_id integer, name text NOT NULL, description text ); -- -- Name: studyfactor_studyfactor_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('studyfactor', 'studyfactor_id'), 1, false); -- -- Name: studyfactorvalue; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE studyfactorvalue ( studyfactorvalue_id serial NOT NULL, studyfactor_id integer NOT NULL, assay_id integer NOT NULL, factorvalue text, name text, rank integer DEFAULT 0 NOT NULL ); -- -- Name: studyfactorvalue_studyfactorvalue_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('studyfactorvalue', 'studyfactorvalue_id'), 1, false); -- -- Name: synonym_synonym_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('synonym', 'synonym_id'), 6, true); -- -- Name: tableinfo; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE tableinfo ( tableinfo_id serial NOT NULL, name character varying(30) NOT NULL, primary_key_column character varying(30), is_view integer DEFAULT 0 NOT NULL, view_on_table_id integer, superclass_table_id integer, is_updateable integer DEFAULT 1 NOT NULL, modification_date date DEFAULT now() NOT NULL ); -- -- Name: tableinfo_tableinfo_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('tableinfo', 'tableinfo_id'), 1, false); -- -- Name: tfeature; Type: VIEW; Schema: public; Owner: gilbertd -- CREATE VIEW tfeature AS SELECT feature.feature_id, feature.dbxref_id, feature.organism_id, feature.name, feature.uniquename, feature.residues, feature.seqlen, feature.md5checksum, feature.type_id, feature.is_analysis, feature.is_obsolete, feature.timeaccessioned, feature.timelastmodified, cvterm.name AS "type" FROM (feature JOIN cvterm ON ((feature.type_id = cvterm.cvterm_id))); -- -- Name: treatment; Type: TABLE; Schema: public; Owner: gilbertd; Tablespace: -- CREATE TABLE treatment ( treatment_id serial NOT NULL, rank integer DEFAULT 0 NOT NULL, biomaterial_id integer NOT NULL, type_id integer NOT NULL, protocol_id integer, name text ); -- -- Name: TABLE treatment; Type: COMMENT; Schema: public; Owner: gilbertd -- COMMENT ON TABLE treatment IS 'a biomaterial may undergo multiple treatments. this can range from apoxia to fluorophore and biotin labeling'; -- -- Name: treatment_treatment_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gilbertd -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('treatment', 'treatment_id'), 1, false); -- -- Name: xfeature; Type: VIEW; Schema: public; Owner: gilbertd -- CREATE VIEW xfeature AS SELECT feature.feature_id, feature.dbxref_id, feature.organism_id, feature.name, feature.uniquename, feature.residues, feature.seqlen, feature.md5checksum, feature.type_id, feature.is_analysis, feature.is_obsolete, feature.timeaccessioned, feature.timelastmodified, dbxrefd.dbname, dbxrefd.accession, dbxrefd.version FROM (feature JOIN dbxrefd USING (dbxref_id)); -- -- Name: txfeature; Type: VIEW; Schema: public; Owner: gilbertd -- CREATE VIEW txfeature AS SELECT xfeature.feature_id, xfeature.dbxref_id, xfeature.organism_id, xfeature.name, xfeature.uniquename, xfeature.residues, xfeature.seqlen, xfeature.md5checksum, xfeature.type_id, xfeature.is_analysis, xfeature.is_obsolete, xfeature.timeaccessioned, xfeature.timelastmodified, xfeature.dbname, xfeature.accession, xfeature.version, cvterm.name AS "type" FROM (xfeature JOIN cvterm ON ((xfeature.type_id = cvterm.cvterm_id))); -- -- Name: xcvterm; Type: VIEW; Schema: public; Owner: gilbertd -- CREATE VIEW xcvterm AS SELECT cvterm.cvterm_id, cvterm.cv_id, cvterm.name, cvterm.definition, cvterm.dbxref_id, cvterm.is_obsolete, cvterm.is_relationshiptype, dbxrefd.dbname, dbxrefd.accession, dbxrefd.version, cv.name AS cvname FROM ((cvterm JOIN dbxrefd USING (dbxref_id)) JOIN cv USING (cv_id)); SET search_path = frange, pg_catalog; -- -- Data for Name: featuregroup; Type: TABLE DATA; Schema: frange; Owner: gilbertd -- COPY featuregroup (featuregroup_id, subject_id, object_id, group_id, srcfeature_id, fmin, fmax, strand, is_root) FROM stdin; \. SET search_path = genetic_code, pg_catalog; -- -- Data for Name: gencode; Type: TABLE DATA; Schema: genetic_code; Owner: gilbertd -- COPY gencode (gencode_id, organismstr) FROM stdin; \. -- -- Data for Name: gencode_codon_aa; Type: TABLE DATA; Schema: genetic_code; Owner: gilbertd -- COPY gencode_codon_aa (gencode_id, codon, aa) FROM stdin; \. -- -- Data for Name: gencode_startcodon; Type: TABLE DATA; Schema: genetic_code; Owner: gilbertd -- COPY gencode_startcodon (gencode_id, codon) FROM stdin; \. SET search_path = godb, pg_catalog; -- -- Data for Name: term; Type: TABLE DATA; Schema: godb; Owner: gilbertd -- COPY term (id, acc, name, is_obsolete, is_root) FROM stdin; 170 SO:0000096 proplastid_gene 0 0 171 SO:0000097 nucleomorph_gene 0 0 172 SO:0000098 plasmid_gene 0 0 173 SO:0000099 proviral_gene 0 0 174 SO:0000100 endogenous_retroviral_gene 0 0 175 SO:0000101 transposable_element 0 0 176 SO:0000102 expressed_sequence_match 0 0 177 SO:0000103 clone_insert_end 0 0 178 SO:0000104 polypeptide 0 0 179 SO:0000105 chromosome_arm 0 0 180 SO:0000106 non_capped_primary_transcript 0 0 181 SO:0000107 sequencing_primer 0 0 182 SO:0000108 mRNA_with_frameshift 0 0 183 SO:0000109 sequence_variant 0 0 184 SO:0000110 located_sequence_feature 0 0 185 SO:0000111 transposable_element_gene 0 0 186 SO:0000112 primer 0 0 187 SO:0000113 integrated_virus 0 0 188 SO:0000114 methylated_C 0 0 189 SO:0000115 transcript_feature 0 0 190 SO:0000116 edited_transcript 0 0 191 SO:0000117 transcript_with_readthrough_stop_codon (obsolete SO:0000117) 1 0 192 SO:0000118 transcript_with_translational_frameshift 0 0 193 SO:0000119 gene_by_class_of_regulation 0 0 194 SO:0000120 protein_coding_primary_transcript 0 0 195 SO:0000121 forward_primer 0 0 196 SO:0000122 RNA_sequence_secondary_structure 0 0 197 SO:0000123 transcriptionally_regulated 0 0 198 SO:0000124 transcriptionally_constitutive 0 0 199 SO:0000125 transcriptionally_induced 0 0 200 SO:0000126 transcriptionally_repressed 0 0 201 SO:0000127 silenced_gene 0 0 202 SO:0000128 gene_silenced_by_DNA_modification 0 0 203 SO:0000129 gene_silenced_by_DNA_methylation 0 0 204 SO:0000130 post_translationally_regulated 0 0 205 SO:0000131 translationally_regulated 0 0 206 SO:0000132 reverse_primer 0 0 207 SO:0000133 gene_by_epigenetic_modification 0 0 208 SO:0000134 imprinted 0 0 209 SO:0000135 maternally_imprinted 0 0 210 SO:0000136 paternally_imprinted 0 0 211 SO:0000137 allelically_excluded 0 0 212 SO:0000138 gene_rearranged_at_DNA_level 0 0 213 SO:0000139 ribosome_entry_site 0 0 214 SO:0000140 attenuator 0 0 215 SO:0000141 terminator 0 0 216 SO:0000142 DNA_sequence_secondary_structure 0 0 217 SO:0000143 assembly_component 0 0 218 SO:0000144 primary_transcript_attribute 0 0 219 SO:0000145 recoded_codon 0 0 220 SO:0000146 primary_transcript_by_cap_class 0 0 221 SO:0000147 exon 0 0 222 SO:0000148 supercontig 0 0 223 SO:0000149 contig 0 0 224 SO:0000150 read 0 0 225 SO:0000151 clone 0 0 226 SO:0000152 YAC 0 0 227 SO:0000153 BAC 0 0 228 SO:0000154 PAC 0 0 229 SO:0000155 plasmid 0 0 230 SO:0000156 cosmid 0 0 231 SO:0000157 phagemid 0 0 232 SO:0000158 fosmid 0 0 233 SO:0000159 deletion 0 0 234 SO:0000160 lambda_clone 0 0 235 SO:0000161 methylated_A 0 0 236 SO:0000162 splice_site 0 0 237 SO:0000163 splice_donor_site 0 0 238 SO:0000164 splice_acceptor_site 0 0 239 SO:0000165 enhancer 0 0 240 SO:0000166 enhancer_by_bound_factor 0 0 241 SO:0000167 promoter 0 0 242 SO:0000168 restriction_enzyme_cut_site (obsolete SO:0000168) 1 0 243 SO:0000169 RNApol_I_promoter 0 0 244 SO:0000170 RNApol_II_promoter 0 0 245 SO:0000171 RNApol_III_promoter 0 0 246 SO:0000172 CAAT_signal 0 0 247 SO:0000173 GC_rich_region 0 0 248 SO:0000174 TATA_box 0 0 249 SO:0000175 minus_10_signal 0 0 250 SO:0000176 minus_35_signal 0 0 251 SO:0000177 cross_genome_match 0 0 252 SO:0000178 operon 0 0 253 SO:0000179 clone_insert_start 0 0 254 SO:0000180 retrotransposon 0 0 255 SO:0000181 translated_nucleotide_match 0 0 256 SO:0000182 DNA_transposon 0 0 257 SO:0000183 non_transcribed_region 0 0 258 SO:0000184 U2_intron 0 0 259 SO:0000185 primary_transcript 0 0 260 SO:0000186 LTR_retrotransposon 0 0 261 SO:0000187 repeat_family 0 0 262 SO:0000188 intron 0 0 263 SO:0000189 non_LTR_retrotransposon 0 0 264 SO:0000190 five_prime_intron 0 0 265 SO:0000191 interior_intron 0 0 266 SO:0000192 three_prime_intron 0 0 267 SO:0000193 RFLP_fragment 0 0 268 SO:0000194 LINE_element 0 0 269 SO:0000195 coding_exon 0 0 270 SO:0000196 five_prime_exon_coding_region 0 0 271 SO:0000197 three_prime_exon_coding_region 0 0 272 SO:0000198 noncoding_exon 0 0 273 SO:0000199 translocation 0 0 274 SO:0000200 five_prime_coding_exon 0 0 275 SO:0000201 interior_exon 0 0 276 SO:0000202 three_prime_coding_exon 0 0 277 SO:0000203 UTR 0 0 278 SO:0000204 five_prime_UTR 0 0 279 SO:0000205 three_prime_UTR 0 0 280 SO:0000206 SINE_element 0 0 281 SO:0000207 simple_sequence_length_polymorphism 0 0 282 SO:0000208 terminal_inverted_repeat_element 0 0 283 SO:0000209 rRNA_primary_transcript 0 0 284 SO:0000210 tRNA_primary_transcript 0 0 285 SO:0000211 alanine_tRNA_primary_transcript 0 0 286 SO:0000212 arginine_tRNA_primary_transcript 0 0 287 SO:0000213 asparagine_tRNA_primary_transcript 0 0 288 SO:0000214 aspartic_acid_tRNA_primary_transcript 0 0 289 SO:0000215 cysteine_tRNA_primary_transcript 0 0 290 SO:0000216 glutamic_acid_tRNA_primary_transcript 0 0 291 SO:0000217 glutamine_tRNA_primary_transcript 0 0 292 SO:0000218 glycine_tRNA_primary_transcript 0 0 293 SO:0000219 histidine_tRNA_primary_transcript 0 0 294 SO:0000220 isoleucine_tRNA_primary_transcript 0 0 295 SO:0000221 leucine_tRNA_primary_transcript 0 0 296 SO:0000222 lysine_tRNA_primary_transcript 0 0 297 SO:0000223 methionine_tRNA_primary_transcript 0 0 298 SO:0000224 phenylalanine_tRNA_primary_transcript 0 0 299 SO:0000225 proline_tRNA_primary_transcript 0 0 300 SO:0000226 serine_tRNA_primary_transcript 0 0 301 SO:0000227 threonine_tRNA_primary_transcript 0 0 302 SO:0000228 tryptophan_tRNA_primary_transcript 0 0 303 SO:0000229 tyrosine_tRNA_primary_transcript 0 0 304 SO:0000230 valine_tRNA_primary_transcript 0 0 305 SO:0000231 snRNA_primary_transcript 0 0 306 SO:0000232 snoRNA_primary_transcript 0 0 307 SO:0000233 processed_transcript 0 0 308 SO:0000234 mRNA 0 0 309 SO:0000235 TF_binding_site 0 0 310 SO:0000236 ORF 0 0 311 SO:0000237 transcript_attribute 0 0 312 SO:0000238 foldback_element 0 0 313 SO:0000239 flanking_region 0 0 314 SO:0000240 chromosome_variation 0 0 315 SO:0000241 internal_UTR 0 0 316 SO:0000242 untranslated_region_polyicistronic_mRNA 0 0 317 SO:0000243 internal_ribosome_entry_site 0 0 318 SO:0000244 four_cutter_restriction_site (obsolete SO:0000244) 1 0 319 SO:0000245 mRNA_by_polyadenylation_status 0 0 320 SO:0000246 mRNA_polyadenylated 0 0 321 SO:0000247 mRNA_not_polyadenylated 0 0 322 SO:0000248 sequence_length_variation 0 0 323 SO:0000249 six_cutter_restriction_site (obsolete SO:0000249) 1 0 324 SO:0000250 modified_RNA_base_feature 0 0 325 SO:0000251 eight_cutter_restriction_site (obsolete SO:0000251) 1 0 326 SO:0000252 rRNA 0 0 327 SO:0000253 tRNA 0 0 328 SO:0000254 alanyl_tRNA 0 0 329 SO:0000255 rRNA_small_subunit_primary_transcript 0 0 330 SO:0000256 asparaginyl_tRNA 0 0 331 SO:0000257 aspartyl_tRNA 0 0 332 SO:0000258 cysteinyl_tRNA 0 0 333 SO:0000259 glutaminyl_tRNA 0 0 334 SO:0000260 glutamyl_tRNA 0 0 335 SO:0000261 glycyl_tRNA 0 0 336 SO:0000262 histidyl_tRNA 0 0 337 SO:0000263 isoleucyl_tRNA 0 0 338 SO:0000264 leucyl_tRNA 0 0 339 SO:0000265 lysyl_tRNA 0 0 340 SO:0000266 methionyl_tRNA 0 0 341 SO:0000267 phenylalanyl_tRNA 0 0 342 SO:0000268 prolyl_tRNA 0 0 343 SO:0000269 seryl_tRNA 0 0 344 SO:0000270 threonyl_tRNA 0 0 345 SO:0000271 tryptophanyl_tRNA 0 0 346 SO:0000272 tyrosyl_tRNA 0 0 347 SO:0000273 valyl_tRNA 0 0 348 SO:0000274 snRNA 0 0 349 SO:0000275 snoRNA 0 0 350 SO:0000276 miRNA 0 0 351 SO:0000277 transcript_by_bound_factor 0 0 352 SO:0000278 transcript_by_bound_nucleic_acid 0 0 353 SO:0000279 transcript_by_bound_protein 0 0 354 SO:0000280 engineered_gene 0 0 355 SO:0000281 engineered_foreign_gene 0 0 356 SO:0000282 mRNA_with_minus_1_frameshift 0 0 357 SO:0000283 engineered_foreign_transposable_element_gene 0 0 358 SO:0000284 type_I_enzyme_restriction_site (obsolete SO:0000284) 1 0 359 SO:0000285 foreign_gene 0 0 360 SO:0000286 long_terminal_repeat 0 0 361 SO:0000287 fusion_gene 0 0 362 SO:0000288 engineered_fusion_gene 0 0 363 SO:0000289 microsatellite 0 0 364 SO:0000290 dinucleotide_repeat_microsatellite_feature 0 0 365 SO:0000291 trinucleotide_repeat_microsatellite_feature 0 0 366 SO:0000292 repetitive_element 0 0 367 SO:0000293 engineered_foreign_repetitive_element 0 0 368 SO:0000294 inverted_repeat 0 0 369 SO:0000295 U12_intron 0 0 370 SO:0000296 origin_of_replication 0 0 371 SO:0000297 D_loop 0 0 372 SO:0000298 recombination_feature 0 0 373 SO:0000299 specific_recombination_site 0 0 374 SO:0000300 recombination_feature_of_rearranged_gene 0 0 375 SO:0000301 recombination_feature_of_vertebrate_immune_system_gene 0 0 376 SO:0000302 J_gene_recombination_feature 0 0 377 SO:0000303 clip 0 0 378 SO:0000304 type_II_enzyme_restriction_site (obsolete SO:0000304) 1 0 379 SO:0000305 modified_base_site 0 0 380 SO:0000306 methylated_base_feature 0 0 381 SO:0000307 CpG_island 0 0 382 SO:0000308 sequence_feature_locating_method 0 0 383 SO:0000309 computed_feature 0 0 384 SO:0000310 predicted_ab_initio_computation 0 0 385 SO:0000311 computed_feature_by_similarity 0 0 386 SO:0000312 experimentally_determined_feature 0 0 387 SO:0000313 stem_loop 0 0 388 SO:0000314 direct_repeat 0 0 389 SO:0000315 transcription_start_site 0 0 390 SO:0000316 CDS 0 0 391 SO:0000317 cDNA_clone 0 0 392 SO:0000318 start_codon 0 0 393 SO:0000319 stop_codon 0 0 394 SO:0000320 intronic_splice_enhancer 0 0 395 SO:0000321 mRNA_with_plus_1_frameshift 0 0 396 SO:0000322 nuclease_hypersensitive_site 0 0 397 SO:0000323 coding_start 0 0 398 SO:0000324 tag 0 0 399 SO:0000325 rRNA_large_subunit_primary_transcript 0 0 400 SO:0000326 SAGE_tag 0 0 401 SO:0000327 coding_end 0 0 402 SO:0000328 microarray_oligo 0 0 403 SO:0000329 mRNA_with_plus_2_frameshift 0 0 404 SO:0000330 conserved_region 0 0 405 SO:0000331 STS 0 0 406 SO:0000332 coding_conserved_region 0 0 407 SO:0000333 exon_junction 0 0 408 SO:0000334 nc_conserved_region 0 0 409 SO:0000335 mRNA_with_minus_2_frameshift 0 0 410 SO:0000336 pseudogene 0 0 411 SO:0000337 RNAi_reagent 0 0 412 SO:0000338 MITE 0 0 413 SO:0000339 recombination_hotspot 0 0 414 SO:0000340 chromosome 0 0 415 SO:0000341 chromosome_band 0 0 416 SO:0000342 site_specific_recombination_target_region 0 0 417 SO:0000343 match 0 0 418 SO:0000344 splice_enhancer 0 0 419 SO:0000345 EST 0 0 420 SO:0000346 Cre_recombination_target_region 0 0 421 SO:0000347 nucleotide_match 0 0 422 SO:0000348 nucleic_acid 0 0 423 SO:0000349 protein_match 0 0 424 SO:0000350 FLP_recombination_target_region 0 0 425 SO:0000351 synthetic_sequence 0 0 426 SO:0000352 DNA 0 0 427 SO:0000353 assembly 0 0 428 SO:0000354 group_1_intron_homing_endonuclease_target_region 0 0 429 SO:0000355 haplotype_block 0 0 430 SO:0000356 RNA 0 0 431 SO:0000357 sequence_by_flanking_target_attribute 0 0 432 SO:0000358 protein 0 0 433 SO:0000359 floxed_sequence 0 0 434 SO:0000360 codon 0 0 435 SO:0000361 FRT_flanked_sequence 0 0 436 SO:0000362 chimeric_cDNA_clone 0 0 437 SO:0000363 floxed_gene 0 0 438 SO:0000364 transposable_element_flanking_region 0 0 439 SO:0000365 integron 0 0 440 SO:0000366 insertion_site 0 0 441 SO:0000367 attI_site 0 0 442 SO:0000368 transposable_element_insertion_site 0 0 443 SO:0000369 integrase_coding_region 0 0 444 SO:0000370 small_regulatory_ncRNA 0 0 445 SO:0000371 conjugative_transposon 0 0 446 SO:0000372 enzymatic_RNA 0 0 447 SO:0000373 recombinationally_inverted 0 0 448 SO:0000374 ribozyme 0 0 449 SO:0000375 rRNA_5.8S 0 0 450 SO:0000376 RNA_6S 0 0 451 SO:0000377 CsrB_RsmB_RNA 0 0 452 SO:0000378 DsrA_RNA 0 0 453 SO:0000379 GcvB_RNA 0 0 454 SO:0000380 hammerhead_ribozyme 0 0 455 SO:0000381 group_IIA_intron 0 0 456 SO:0000382 group_IIB_intron 0 0 457 SO:0000383 MicF_RNA 0 0 458 SO:0000384 OxyS_RNA 0 0 459 SO:0000385 RNase_MRP_RNA 0 0 460 SO:0000386 RNase_P_RNA 0 0 461 SO:0000387 RprA_RNA 0 0 462 SO:0000388 RRE_RNA 0 0 463 SO:0000389 spot_42_RNA 0 0 464 SO:0000390 telomerase_RNA 0 0 465 SO:0000391 U1_snRNA 0 0 466 SO:0000392 U2_snRNA 0 0 467 SO:0000393 U4_snRNA 0 0 468 SO:0000394 U4atac_snRNA 0 0 469 SO:0000395 U5_snRNA 0 0 470 SO:0000396 U6_snRNA 0 0 471 SO:0000397 U6atac_snRNA 0 0 472 SO:0000398 U11_snRNA 0 0 473 SO:0000399 U12_snRNA 0 0 474 SO:0000400 sequence_attribute 0 0 475 SO:0000401 gene_attribute 0 0 476 SO:0000402 enhancer_attribute 0 0 477 SO:0000403 U14_snRNA 0 0 478 SO:0000404 vault_RNA 0 0 479 SO:0000405 Y_RNA 0 0 480 SO:0000406 twintron 0 0 481 SO:0000407 rRNA_18S 0 0 482 SO:0000408 site (obsolete SO:0000408) 1 0 483 SO:0000409 binding_site 0 0 484 SO:0000410 protein_binding_site 0 0 485 SO:0000411 rescue_fragment 0 0 486 SO:0000412 restriction_fragment 0 0 487 SO:0000413 sequence_difference 0 0 488 SO:0000414 genomically_contaminated_cDNA_clone 0 0 489 SO:0000415 genomic_polyA_primed_cDNA_clone 0 0 490 SO:0000416 partially_unprocessed_cDNA_clone 0 0 491 SO:0000417 polypeptide_domain 0 0 492 SO:0000418 signal_peptide 0 0 493 SO:0000419 mature_peptide 0 0 494 SO:0000420 five_prime_terminal_inverted_repeat 0 0 495 SO:0000421 three_prime_terminal_inverted_repeat 0 0 496 SO:0000422 U5_LTR_region 0 0 497 SO:0000423 R_LTR_region 0 0 498 SO:0000424 U3_LTR_region 0 0 499 SO:0000425 five_prime_LTR 0 0 500 SO:0000426 three_prime_LTR 0 0 501 SO:0000427 R_five_prime_LTR_region 0 0 502 SO:0000428 U5_five_prime_LTR_region 0 0 503 SO:0000429 U3_five_prime_LTR_region 0 0 504 SO:0000430 R_three_prime_LTR_region 0 0 505 SO:0000431 U3_three_prime_LTR_region 0 0 506 SO:0000432 U5_three_prime_LTR_region 0 0 507 SO:0000433 non_LTR_retrotransposon_polymeric_tract 0 0 508 SO:0000434 transposable_element_target_site_duplication 0 0 509 SO:0000435 RR_tract 0 0 510 SO:0000436 ARS 0 0 511 SO:0000437 assortment_derived_duplication (obsolete SO:0000437) 1 0 512 SO:0000438 gene_not_polyadenylated 0 0 513 SO:0000439 inverted_ring_chromosome 0 0 514 SO:0000440 vector 0 0 515 SO:0000441 ss_oligo 0 0 516 SO:0000442 ds_oligo 0 0 517 SO:0000443 polymer_type 0 0 518 SO:0000444 three_prime_noncoding_exon 0 0 519 SO:0000445 five_prime_noncoding_exon 0 0 520 SO:0000446 UTR_intron 0 0 521 SO:0000447 five_prime_UTR_intron 0 0 522 SO:0000448 three_prime_UTR_intron 0 0 523 SO:0000449 random_sequence 0 0 524 SO:0000450 interband 0 0 525 SO:0000451 gene_polyadenylated 0 0 526 SO:0000452 transgene 0 0 527 SO:0000453 transposition 0 0 528 SO:0000454 rasiRNA 0 0 529 SO:0000455 gene_with_mRNA_with_frameshift 0 0 530 SO:0000456 recombinationally_rearranged_gene 0 0 531 SO:0000457 interchromosomal_duplication 0 0 532 SO:0000458 D_gene 0 0 533 SO:0000459 gene_with_trans_spliced_transcript 0 0 534 SO:0000460 vertebrate_immunoglobulin_T_cell_receptor_gene 0 0 535 SO:0000461 inversion_derived_bipartite_deficiency 0 0 536 SO:0000462 pseudogenic_region 0 0 537 SO:0000463 gene_with_alternately_spliced_transcript 0 0 538 SO:0000464 decayed_exon 0 0 539 SO:0000465 inversion_derived_deficiency_plus_duplication 0 0 540 SO:0000466 V_gene 0 0 541 SO:0000467 post_translationally_regulated_by_protein_stability 0 0 542 SO:0000468 golden_path_fragment 0 0 543 SO:0000469 post_translationally_regulated_by_protein_modification 0 0 544 SO:0000470 J_gene 0 0 545 SO:0000471 autoregulated 0 0 546 SO:0000472 tiling_path 0 0 547 SO:0000473 negatively_autoregulated 0 0 548 SO:0000474 tiling_path_fragment 0 0 549 SO:0000475 positively_autoregulated 0 0 550 SO:0000476 contig_read 0 0 551 SO:0000477 polycistronic_gene 0 0 552 SO:0000478 C_gene 0 0 553 SO:0000479 trans_spliced_transcript 0 0 554 SO:0000480 tiling_path_clone 0 0 555 SO:0000481 terminal_inverted_repeat 0 0 556 SO:0000482 vertebrate_immunoglobulin_T_cell_receptor_gene_cluster 0 0 557 SO:0000483 nc_primary_transcript 0 0 558 SO:0000484 three_prime_exon_noncoding_region 0 0 559 SO:0000485 DJ_J_cluster 0 0 560 SO:0000486 five_prime_exon_noncoding_region 0 0 561 SO:0000487 VDJ_J_C_cluster 0 0 562 SO:0000488 VDJ_J_cluster 0 0 563 SO:0000489 VJ_C_cluster 0 0 564 SO:0000490 VJ_J_C_cluster 0 0 565 SO:0000491 VJ_J_cluster 0 0 566 SO:0000492 D_gene_recombination_feature 0 0 567 SO:0000493 three_prime_D_heptamer 0 0 568 SO:0000494 three_prime_D_nonamer 0 0 569 SO:0000495 three_prime_D_spacer 0 0 570 SO:0000496 five_prime_D_heptamer 0 0 571 SO:0000497 five_prime_D_nonamer 0 0 572 SO:0000498 five_prime_D_spacer 0 0 573 SO:0000499 virtual_sequence 0 0 574 SO:0000500 Hoogsteen_base_pair 0 0 575 SO:0000501 reverse_Hoogsteen_base_pair 0 0 576 SO:0000502 transcribed_region (obsolete SO:0000502) 1 0 577 SO:0000503 alternately_spliced_gene_encodeing_one_transcript (obsolete SO:0000503) 1 0 578 SO:0000504 D_DJ_C_cluster 0 0 579 SO:0000505 D_DJ_cluster 0 0 580 SO:0000506 D_DJ_J_C_cluster 0 0 581 SO:0000507 pseudogenic_exon 0 0 582 SO:0000508 D_DJ_J_cluster 0 0 583 SO:0000509 D_J_C_cluster 0 0 584 SO:0000510 VD_gene 0 0 585 SO:0000511 J_C_cluster 0 0 586 SO:0000512 inversion_derived_deficiency_plus_aneuploid 0 0 587 SO:0000513 J_cluster 0 0 588 SO:0000514 J_nonamer 0 0 589 SO:0000515 J_heptamer 0 0 590 SO:0000516 pseudogenic_transcript 0 0 591 SO:0000517 J_spacer 0 0 592 SO:0000518 V_DJ_cluster 0 0 593 SO:0000519 V_DJ_J_cluster 0 0 594 SO:0000520 V_VDJ_C_cluster 0 0 595 SO:0000521 V_VDJ_cluster 0 0 596 SO:0000522 V_VDJ_J_cluster 0 0 597 SO:0000523 V_VJ_C_cluster 0 0 598 SO:0000524 V_VJ_cluster 0 0 599 SO:0000525 V_VJ_J_cluster 0 0 600 SO:0000526 V_cluster 0 0 601 SO:0000527 V_D_DJ_C_cluster 0 0 602 SO:0000528 V_D_DJ_cluster 0 0 603 SO:0000529 V_D_DJ_J_C_cluster 0 0 604 SO:0000530 V_D_DJ_J_cluster 0 0 605 SO:0000531 V_D_J_C_cluster 0 0 606 SO:0000532 V_D_J_cluster 0 0 607 SO:0000533 V_heptamer 0 0 608 SO:0000534 V_J_cluster 0 0 609 SO:0000535 V_J_C_cluster 0 0 610 SO:0000536 V_nonamer 0 0 611 SO:0000537 V_spacer 0 0 612 SO:0000538 V_gene_recombination_feature 0 0 613 SO:0000539 DJ_C_cluster 0 0 614 SO:0000540 DJ_J_C_cluster 0 0 615 SO:0000541 VDJ_C_cluster 0 0 616 SO:0000542 V_DJ_C_cluster 0 0 617 SO:0000543 alternately_spliced_gene_encoding_greater_than_one_transcript (obsolete SO:0000543) 1 0 618 SO:0000544 helitron 0 0 619 SO:0000545 recoding_pseudoknot 0 0 620 SO:0000546 designed_sequence 0 0 621 SO:0000547 inversion_derived_bipartite_duplication 0 0 622 SO:0000548 gene_with_edited_transcript 0 0 623 SO:0000549 inversion_derived_duplication_plus_aneuploid 0 0 624 SO:0000550 aneuploid_chromosome 0 0 625 SO:0000551 polyA_signal_sequence 0 0 626 SO:0000552 Shine_Dalgarno_sequence 0 0 627 SO:0000553 polyA_site 0 0 628 SO:0000554 assortment_derived_deficiency_plus_duplication (obsolete SO:0000554) 1 0 629 SO:0000555 five_prime_clip 0 0 630 SO:0000556 five_prime_D_recombination_signal_sequence 0 0 631 SO:0000557 three_prime_clip 0 0 632 SO:0000558 C_cluster 0 0 633 SO:0000559 D_cluster 0 0 634 SO:0000560 D_J_cluster 0 0 635 SO:0000561 heptamer_of_recombination_feature_of_vertebrate_immune_system_gene 0 0 636 SO:0000562 nonamer_of_recombination_feature_of_vertebrate_immune_system_gene 0 0 637 SO:0000563 spacer_of_recombination_feature_of_vertebrate_immune_system_gene 0 0 638 SO:0000564 V_DJ_J_C_cluster 0 0 639 SO:0000565 V_VDJ_J_C_cluster 0 0 640 SO:0000566 V_VJ_J_C_cluster 0 0 641 SO:0000567 inversion_derived_aneuploid_chromosome 0 0 642 SO:0000568 bidirectional_promotor 0 0 643 SO:0000569 retrotransposed_protein_coding_gene 0 0 644 SO:0000570 three_prime_D_recombination_signal_sequence 0 0 645 SO:0000571 miRNA_gene 0 0 646 SO:0000572 DJ_gene 0 0 647 SO:0000573 rRNA_gene 0 0 648 SO:0000574 VDJ_gene 0 0 649 SO:0000575 scRNA_gene 0 0 650 SO:0000576 VJ_gene 0 0 651 SO:0000577 centromere 0 0 652 SO:0000578 snoRNA_gene 0 0 653 SO:0000579 edited_transcript_feature 0 0 654 SO:0000580 methylation_guide_snoRNA_primary_transcript 0 0 655 SO:0000581 cap 0 0 656 SO:0000582 rRNA_cleavage_snoRNA_primary_transcript 0 0 657 SO:0000583 pre_edited_region 0 0 658 SO:0000584 tmRNA 0 0 659 SO:0000585 C_D_box_snoRNA_gene 0 0 660 SO:0000586 tmRNA_primary_transcript 0 0 661 SO:0000587 group_I_intron 0 0 662 SO:0000588 autocatalytically_spliced_intron 0 0 663 SO:0000589 SRP_RNA_primary_transcript 0 0 664 SO:0000590 SRP_RNA 0 0 665 SO:0000591 pseudoknot 0 0 666 SO:0000592 H_pseudoknot 0 0 667 SO:0000593 C_D_box_snoRNA 0 0 668 SO:0000594 H_ACA_box_snoRNA 0 0 669 SO:0000595 C_D_box_snoRNA_primary_transcript 0 0 670 SO:0000596 H_ACA_box_snoRNA_primary_transcript 0 0 671 SO:0000597 transcript_edited_by_U_insertion/deletion 0 0 672 SO:0000598 transcript_edited_by_C_insertion_and_dinucleotide_insertion 0 0 673 SO:0000599 transcript_edited_by_C_to_U_substitution 0 0 674 SO:0000600 transcript_edited_by_A_to_I_substitution 0 0 675 SO:0000601 transcript_edited_by_G_addition 0 0 676 SO:0000602 guide_RNA 0 0 677 SO:0000603 group_II_intron 0 0 678 SO:0000604 editing_block 0 0 679 SO:0000605 intergenic_region 0 0 680 SO:0000606 editing_domain 0 0 681 SO:0000607 unedited_region 0 0 682 SO:0000608 H_ACA_box_snoRNA_gene 0 0 683 SO:0000609 oligo_U_tail 0 0 684 SO:0000610 polyA_sequence 0 0 685 SO:0000611 branch_site 0 0 686 SO:0000612 polypyrimidine_tract 0 0 687 SO:0000613 bacterial_RNApol_promoter 0 0 688 SO:0000614 bacterial_terminator 0 0 689 SO:0000615 terminator_of_type_2_RNApol_III_promoter 0 0 690 SO:0000616 transcription_end_site 0 0 691 SO:0000617 RNApol_III_promoter_type_1 0 0 692 SO:0000618 RNApol_III_promoter_type_2 0 0 693 SO:0000619 A_box 0 0 694 SO:0000620 B_box 0 0 695 SO:0000621 RNApol_III_promoter_type_3 0 0 696 SO:0000622 C_box 0 0 697 SO:0000623 snRNA_gene 0 0 698 SO:0000624 telomere 0 0 699 SO:0000625 silencer 0 0 700 SO:0000626 chromosomal_regulatory_element 0 0 701 SO:0000627 insulator 0 0 702 SO:0000628 chromosomal_structural_element 0 0 703 SO:0000629 five_prime_open_reading_frame 0 0 704 SO:0000630 upstream_AUG_codon 0 0 705 SO:0000631 polycistronic_primary_transcript 0 0 706 SO:0000632 monocistronic_primary_transcript 0 0 707 SO:0000633 monocistronic_mRNA 0 0 708 SO:0000634 polycistronic_mRNA 0 0 709 SO:0000635 mini_exon_donor_RNA 0 0 710 SO:0000636 spliced_leader_RNA 0 0 711 SO:0000637 engineered_plasmid 0 0 712 SO:0000638 transcribed_spacer_region 0 0 713 SO:0000639 internal_transcribed_spacer_region 0 0 714 SO:0000640 external_transcribed_spacer_region 0 0 715 SO:0000641 tetranucleotide_repeat_microsatellite_feature 0 0 716 SO:0000642 SRP_RNA_gene 0 0 717 SO:0000643 minisatellite 0 0 718 SO:0000644 antisense_RNA 0 0 719 SO:0000645 antisense_primary_transcript 0 0 720 SO:0000646 siRNA 0 0 721 SO:0000647 miRNA_primary_transcript 0 0 722 SO:0000648 stRNA_primary_transcript 0 0 723 SO:0000649 stRNA 0 0 724 SO:0000650 small_subunit_rRNA 0 0 725 SO:0000651 large_subunit_rRNA 0 0 726 SO:0000652 rRNA_5S 0 0 727 SO:0000653 rRNA_28S 0 0 728 SO:0000654 maxi_circle_gene 0 0 729 SO:0000655 ncRNA 0 0 730 SO:0000656 stRNA_gene 0 0 731 SO:0000657 repeat_region 0 0 732 SO:0000658 dispersed_repeat 0 0 733 SO:0000659 tmRNA_gene 0 0 734 SO:0000660 DNA_invertase_target_sequence 0 0 735 SO:0000661 intron_attribute 0 0 736 SO:0000662 spliceosomal_intron 0 0 737 SO:0000663 tRNA_gene 0 0 738 SO:0000664 introgressed_chromosome_region 0 0 739 SO:0000665 monocistronic_transcript 0 0 740 SO:0000666 mobile_intron 0 0 741 SO:0000667 insertion 0 0 742 SO:0000668 EST_match 0 0 743 SO:0000669 sequence_rearrangement_feature 0 0 744 SO:0000670 chromosome_breakage_sequence 0 0 745 SO:0000671 internal_eliminated_sequence 0 0 746 SO:0000672 macronucleus_destined_segment 0 0 747 SO:0000673 transcript 0 0 748 SO:0000674 non_canonical_splice_site 0 0 749 SO:0000675 canonical_splice_site 0 0 750 SO:0000676 canonical_three_prime_splice_site 0 0 751 SO:0000677 canonical_five_prime_splice_site 0 0 752 SO:0000678 non_canonical_three_prime_splice_site 0 0 753 SO:0000679 non_canonical_five_prime_splice_site 0 0 754 SO:0000680 non_canonical_start_codon 0 0 755 SO:0000681 aberrant_processed_transcript 0 0 756 SO:0000682 splicing_feature (obsolete SO:0000682) 1 0 757 SO:0000683 exonic_splice_enhancer 0 0 758 SO:0000684 nuclease_sensitive_site 0 0 759 SO:0000685 DNAaseI_hypersensitive_site 0 0 760 SO:0000686 translocation_element 0 0 761 SO:0000687 deletion_junction 0 0 762 SO:0000688 golden_path 0 0 763 SO:0000689 cDNA_match 0 0 764 SO:0000690 gene_with_polycistronic_transcript 0 0 765 SO:0000691 translocation_site 0 0 766 SO:0000692 gene_with_dicistronic_transcript 0 0 767 SO:0000693 gene_with_recoded_mRNA 0 0 768 SO:0000694 SNP 0 0 769 SO:0000695 reagent 0 0 770 SO:0000696 oligo 0 0 771 SO:0000697 gene_with_stop_codon_read_through 0 0 772 SO:0000698 gene_with_stop_codon_redefined_as_pyrrolysine 0 0 773 SO:0000699 junction 0 0 774 SO:0000700 remark 0 0 775 SO:0000701 possible_base_call_error 0 0 776 SO:0000702 possible_assembly_error 0 0 777 SO:0000703 experimental_result_region 0 0 778 SO:0000704 gene 0 0 779 SO:0000705 tandem_repeat 0 0 780 SO:0000706 trans_splice_acceptor_site 0 0 781 SO:0000707 trans_splice_donor_site 0 0 782 SO:0000708 SL1_acceptor_site 0 0 783 SO:0000709 SL2_acceptor_site 0 0 784 SO:0000710 gene_with_stop_codon_redefined_as_selenocysteine 0 0 785 SO:0000711 gene_with_mRNA_recoded_by_translational_bypass 0 0 786 SO:0000712 gene_with_transcript_with_translational_frameshift 0 0 787 SO:0000713 DNA_motif 0 0 788 SO:0000714 nucleotide_motif 0 0 789 SO:0000715 RNA_motif 0 0 790 SO:0000716 dicistronic_mRNA 0 0 791 SO:0000717 reading_frame 0 0 792 SO:0000718 blocked_reading_frame 0 0 793 SO:0000719 ultracontig 0 0 794 SO:0000720 foreign_transposable_element 0 0 795 SO:0000721 gene_with_dicistronic_primary_transcript 0 0 796 SO:0000722 gene_with_dicistronic_mRNA 0 0 797 SO:0000723 iDNA 0 0 798 SO:0000724 origin_of_transfer 0 0 799 SO:0000725 transit_peptide 0 0 800 SO:0000726 repeat_unit 0 0 801 SO:0000727 TF_module 0 0 802 SO:0000728 intein 0 0 803 SO:0000729 intein_containing_protein_coding_gene 0 0 804 SO:0000730 gap 0 0 805 SO:0000731 fragment 0 0 806 SO:0000732 predicted 0 0 807 SO:0000733 feature_attribute 0 0 808 SO:0000734 exemplar_mRNA 0 0 809 SO:0000735 sequence_location 0 0 810 SO:0000736 organelle_location 0 0 811 SO:0000737 mitochondrial_sequence 0 0 812 SO:0000738 nuclear_sequence 0 0 813 SO:0000739 nucleomorphic_sequence 0 0 814 SO:0000740 plastid_sequence 0 0 815 SO:0000741 kinetoplast_sequence 0 0 816 SO:0000742 maxicircle_sequence 0 0 817 SO:0000743 apicoplast_sequence 0 0 818 SO:0000744 chromoplast_sequence 0 0 819 SO:0000745 chloroplast_sequence 0 0 820 SO:0000746 cyanelle_sequence 0 0 821 SO:0000747 leucoplast_sequence 0 0 822 SO:0000748 proplastid_sequence 0 0 823 SO:0000749 plasmid_sequence 0 0 824 SO:0000750 amplification_origin 0 0 825 SO:0000751 proviral_sequence 0 0 826 SO:0000752 gene_group_regulatory_region 0 0 827 SO:0000753 clone_insert 0 0 828 SO:0000754 lambda_vector 0 0 829 SO:0000755 plasmid_vector 0 0 830 SO:0000756 cDNA 0 0 831 SO:0000757 single_stranded_cDNA 0 0 832 SO:0000758 double_stranded_cDNA 0 0 833 SO:0000759 plasmid_clone 0 0 834 SO:0000760 YAC_clone 0 0 835 SO:0000761 phagemid_clone 0 0 836 SO:0000762 PAC_clone 0 0 837 SO:0000763 fosmid_clone 0 0 838 SO:0000764 BAC_clone 0 0 839 SO:0000765 cosmid_clone 0 0 840 SO:0000766 pyrrolysyl_tRNA 0 0 841 SO:0000767 clone_insert_start (obsolete SO:0000767) 1 0 842 SO:0000768 episome 0 0 843 SO:0000769 tmRNA_coding_piece 0 0 844 SO:0000770 tmRNA_acceptor_piece 0 0 845 SO:0000771 QTL 0 0 846 SO:0000772 genomic_island 0 0 847 SO:0000773 pathogenic_island 0 0 848 SO:0000774 metabolic_island 0 0 849 SO:0000775 adaptive_island 0 0 850 SO:0000776 symbiosis_island 0 0 851 SO:0000777 pseudogenic_rRNA 0 0 852 SO:0000778 pseudogenic_tRNA 0 0 853 SO:0001044 nuclear_mt_pseudogene 0 0 854 SO:0005836 regulatory_region 0 0 855 SO:0005837 snRNA_4.5S_primary_transcript 0 0 856 SO:0005839 snRNA_4.5S 0 0 857 SO:0005841 methylation_guide_snoRNA 0 0 858 SO:0005843 rRNA_cleavage_snoRNA 0 0 859 SO:0005845 single_exon 0 0 860 SO:0005847 member_of_gene_cassette_array 0 0 861 SO:0005848 member_of_gene_cassette 0 0 862 SO:0005849 member_of_gene_subarray 0 0 863 SO:0005850 primer_binding_site 0 0 864 SO:0005851 gene_array 0 0 865 SO:0005852 gene_subarray 0 0 866 SO:0005853 gene_cassette 0 0 867 SO:0005854 gene_cassette_array 0 0 868 SO:0005855 gene_group 0 0 869 SO:0005856 selenocysteine_tRNA_primary_transcript 0 0 870 SO:0005857 selenocysteinyl_tRNA 0 0 871 SO:0005858 syntenic_region 0 0 872 SO:1000002 substitution 0 0 873 SO:1000004 partially_characterised_change_in_DNA_sequence 0 0 874 SO:1000005 complex_substitution 0 0 875 SO:1000007 uncharacterised_change_in_nucleotide_sequence 0 0 876 SO:1000008 point_mutation 0 0 877 SO:1000009 transition 0 0 878 SO:1000010 pyrimidine_transition 0 0 879 SO:1000011 C_to_T_transition 0 0 880 SO:1000012 C_to_T_transition_at_pCpG_site 0 0 881 SO:1000013 T_to_C_transition 0 0 882 SO:1000014 purine_transition 0 0 883 SO:1000015 A_to_G_transition 0 0 884 SO:1000016 G_to_A_transition 0 0 885 SO:1000017 transversion 0 0 886 SO:1000018 pyrimidine_to_purine_transversion 0 0 887 SO:1000019 C_to_A_transversion 0 0 888 SO:1000020 C_to_G_transversion 0 0 889 SO:1000021 T_to_A_transversion 0 0 890 SO:1000022 T_to_G_transversion 0 0 891 SO:1000023 purine_to_pyrimidine_transversion 0 0 892 SO:1000024 A_to_C_transversion 0 0 893 SO:1000025 A_to_T_transversion 0 0 894 SO:1000026 G_to_C_transversion 0 0 895 SO:1000027 G_to_T_transversion 0 0 896 SO:1000028 intrachromosomal_mutation 0 0 897 SO:1000029 chromosomal_deletion 0 0 898 SO:1000030 chromosomal_inversion 0 0 899 SO:1000031 interchromosomal_mutation 0 0 900 SO:1000032 indel 0 0 901 SO:1000033 nucleotide_deletion 0 0 902 SO:1000034 nucleotide_insertion 0 0 903 SO:1000035 nucleotide_duplication 0 0 904 SO:1000036 inversion 0 0 905 SO:1000037 chromosomal_duplication 0 0 906 SO:1000038 intrachromosomal_duplication 0 0 907 SO:1000039 direct_tandem_duplication 0 0 908 SO:1000040 inverted_tandem_duplication 0 0 909 SO:1000041 intrachromosomal_transposition 0 0 910 SO:1000042 compound_chromosome 0 0 911 SO:1000043 Robertsonian_fusion 0 0 912 SO:1000044 chromosomal_translocation 0 0 913 SO:1000045 ring_chromosome 0 0 914 SO:1000046 pericentric_inversion 0 0 915 SO:1000047 paracentric_inversion 0 0 916 SO:1000048 reciprocal_chromosomal_translocation 0 0 917 SO:1000049 mutation_affecting_transcript 0 0 918 SO:1000050 no_change_in_transcript 0 0 919 SO:1000052 complex_change_in_transcript 0 0 920 SO:1000054 mutation_affecting_coding_sequence 0 0 921 SO:1000055 initiator_codon_change_in_transcript 0 0 922 SO:1000056 amino_acid_coding_codon_change_in_transcript 0 0 923 SO:1000057 synonymous_codon_change_in_transcript 0 0 924 SO:1000058 non_synonymous_codon_change_in_transcript 0 0 925 SO:1000059 missense_codon_change_in_transcript 0 0 926 SO:1000060 conservative_missense_codon_change_in_transcript 0 0 927 SO:1000061 nonconservative_missense_codon_change_in_transcript 0 0 928 SO:1000062 nonsense_codon_change_in_transcript 0 0 929 SO:1000063 terminator_codon_change_in_transcript 0 0 930 SO:1000064 mutation_affecting_reading_frame 0 0 931 SO:1000065 frameshift_mutation 0 0 932 SO:1000066 plus_1_frameshift_mutation 0 0 933 SO:1000067 minus_1_frameshift_mutation 0 0 934 SO:1000068 plus_2_frameshift_mutation 0 0 935 SO:1000069 minus_2_frameshift_mutation 0 0 936 SO:1000070 mutation_affecting_transcript_processing 0 0 937 SO:1000071 mutation_affecting_splicing 0 0 938 SO:1000072 splice_donor_mutation 0 0 939 SO:1000073 splice_acceptor_mutation 0 0 940 SO:1000074 cryptic_splice_activator_mutation 0 0 941 SO:1000075 mutation_affecting_editing 0 0 942 SO:1000076 mutation_affecting_transcription 0 0 943 SO:1000078 mutation_decreasing_rate_of_transcription 0 0 944 SO:1000079 mutation_affecting_transcript_sequence 0 0 945 SO:1000080 mutation_increasing_rate_of_transcription 0 0 946 SO:1000081 mutation_affecting_rate_of_transcription 0 0 947 SO:1000082 mutation_affecting_transcript_stability 0 0 948 SO:1000083 mutation_increasing_transcript_stability 0 0 949 SO:1000084 mutation_decreasing_transcript_stability 0 0 950 SO:1000085 mutation_affecting_level_of_transcript 0 0 951 SO:1000086 mutation_decreasing_level_of_transcript 0 0 952 SO:1000087 mutation_increasing_level_of_transcript 0 0 953 SO:1000088 mutation_affecting_translational_product 0 0 954 SO:1000089 no_change_of_translational_product 0 0 955 SO:1000090 uncharacterised_change_of_translational_product 0 0 956 SO:1000091 partially_characterised_change_of_translational_product 0 0 957 SO:1000092 complex_change_of_translational_product 0 0 958 SO:1000093 amino_acid_substitution 0 0 959 SO:1000094 conservative_amino_acid_substitution 0 0 960 SO:1000095 nonconservative_amino_acid_substitution 0 0 961 SO:1000096 amino_acid_insertion 0 0 962 SO:1000097 amino_acid_deletion 0 0 963 SO:1000098 polypeptide_truncation 0 0 964 SO:1000099 polypeptide_elongation 0 0 965 SO:1000100 polypeptide_N_terminal_elongation 0 0 966 SO:1000101 polypeptide_C_terminal_elongation 0 0 967 SO:1000102 mutation_affecting_level_of_translational_product 0 0 968 SO:1000103 mutation_decreasing_level_of_translation_product 0 0 969 SO:1000104 mutation_increasing_level_of_translation_product 0 0 970 SO:1000105 mutation_affecting_polypeptide_amino_acid_sequence 0 0 971 SO:1000106 inframe_polypeptide_N_terminal_elongation 0 0 972 SO:1000107 out_of_frame_polypeptide_N_terminal_elongation 0 0 973 SO:1000108 inframe_polypeptide_C_terminal_elongation 0 0 974 SO:1000109 out_of_frame_polypeptide_C_terminal_elongation 0 0 975 SO:1000110 frame_restoring_mutation 0 0 976 SO:1000111 mutation_affecting_3D_structure_of_polypeptide 0 0 977 SO:1000112 no_3D_structural_change 0 0 978 SO:1000113 uncharacterised_3D_structural_change 0 0 979 SO:1000114 partially_characterised_3D_structural_change 0 0 980 SO:1000115 complex_3D_structural_change 0 0 981 SO:1000116 conformational_change 0 0 982 SO:1000117 mutation_affecting_polypeptide_function 0 0 983 SO:1000118 loss_of_function_of_polypeptide 0 0 984 SO:1000119 inactive_ligand_binding_site 0 0 985 SO:1000120 inactive_catalytic_site 0 0 986 SO:1000121 polypeptide_localization_affected 0 0 987 SO:1000122 polypeptide_post_translational_processing_affected 0 0 988 SO:1000123 polypeptide_post_translational_processing_affected (obsolete SO:1000123) 1 0 989 SO:1000124 partial_loss_of_function_of_polypeptide 0 0 990 SO:1000125 gain_of_function_of_polypeptide 0 0 991 SO:1000126 mutation_affecting_transcript_secondary_structure 0 0 992 SO:1000127 compensatory_transcript_secondary_structure_mutation 0 0 993 SO:1000132 consequences_of_mutation 0 0 994 SO:1000134 polypeptide_fusion 0 0 995 SO:1000136 autosynaptic_chromosome 0 0 996 SO:1000138 homo_compound_chromosome 0 0 997 SO:1000140 hetero_compound_chromosome 0 0 998 SO:1000141 chromosome_fission 0 0 999 SO:1000142 dexstrosynaptic_chromosome 0 0 1000 SO:1000143 laevosynaptic_chromosome 0 0 1001 SO:1000144 free_duplication 0 0 1002 SO:1000145 free_ring_duplication 0 0 1003 SO:1000146 complex_chromosomal_mutation 0 0 1004 SO:1000147 deficient_translocation 0 0 1005 SO:1000148 inversion_cum_translocation 0 0 1006 SO:1000149 bipartite_duplication 0 0 1007 SO:1000150 cyclic_translocation 0 0 1008 SO:1000151 bipartite_inversion 0 0 1009 SO:1000152 uninverted_insertional_duplication 0 0 1010 SO:1000153 inverted_insertional_duplication 0 0 1011 SO:1000154 insertional_duplication 0 0 1012 SO:1000155 interchromosomal_transposition 0 0 1013 SO:1000156 inverted_interchromosomal_transposition 0 0 1014 SO:1000157 uninverted_interchromosomal_transposition 0 0 1015 SO:1000158 inverted_intrachromosomal_transposition 0 0 1016 SO:1000159 uninverted_intrachromosomal_transposition 0 0 1017 SO:1000160 unoriented_insertional_duplication 0 0 1018 SO:1000161 unorientated_interchromosomal_transposition 0 0 1019 SO:1000162 unorientated_intrachromosomal_transposition 0 0 1020 SO:1000170 uncharacterised_chromosomal_mutation 0 0 1021 SO:1000171 deficient_inversion 0 0 1022 SO:1000173 tandem_duplication 0 0 1023 SO:1000175 partially_characterised_chromosomal_mutation 0 0 1024 SO:1000177 uncharacterised_change_in_transcript 0 0 1025 SO:1000179 partially_characterised_change_in_transcript 0 0 1026 SO:1000180 mutation_affecting_gene_structure 0 0 1027 SO:1000181 gene_fusion 0 0 1028 SO:1000182 chromosome_number_variation 0 0 1029 SO:1000183 chromosome_structure_variation 0 0 1030 SO:1000184 mutation_causes_exon_loss 0 0 1031 SO:1000185 mutation_causes_intron_gain 0 0 1032 SO:1000186 cryptic_splice_donor_activation 0 0 1033 SO:1001186 cryptic_splice_acceptor_activation 0 0 1034 SO:1001187 alternatively_spliced_transcript 0 0 1035 SO:1001188 alternatively_spliced_transcript_encoding_1_polypeptide 0 0 1036 SO:1001189 alternatively_spliced_transcript_encoding_greater_than_1_polypeptide 0 0 1037 SO:1001190 alternatively_spliced_transcript_encoding_greater_than_1_polypeptide_same_start_codon_different_stop_codon 0 0 1038 SO:1001191 alternatively_spliced_transcript_encoding_greater_than_1_polypeptide_different_start_codon_same_stop_codon 0 0 1039 SO:1001192 alternatively_spliced_transcript_encoding_greater_than_1_polypeptide_different_start_codon_different_stop_codon 0 0 1040 SO:1001193 alternatively_spliced_transcript_encoding_greater_than_1_polypeptide_different_start_codon_different_stop_codon_coding_regions_overlapping 0 0 1041 SO:1001194 alternatively_spliced_transcript_encoding_greater_than_1_polypeptide_coding_regions_overlapping 0 0 1042 SO:1001195 alternatively_spliced_transcript_encoding_greater_than_1_polypeptide_coding_regions_not_overlapping 0 0 1043 SO:1001196 cryptogene 0 0 1044 SO:1001197 dicistronic_primary_transcript 0 0 1045 SO:1001217 member_of_regulon 0 0 1046 SO:1001244 alternatively_spliced_transcript_encoding_greater_than_1_polypeptide_different_start_codon_different_stop_codon_coding_regions_non_overlapping 0 0 1047 SO:1001246 CDS_independently_known 0 0 1048 SO:1001247 orphan_CDS 0 0 1049 SO:1001249 CDS_supported_by_domain_match_data 0 0 1050 SO:1001251 CDS_supported_by_sequence_similarity_data 0 0 1051 SO:1001254 CDS_predicted 0 0 1052 SO:1001255 status_of_coding_sequence 0 0 1053 SO:1001259 CDS_supported_by_EST_or_cDNA_data 0 0 1054 SO:1001260 internal_Shine_Dalgarno_sequence 0 0 1055 SO:1001261 recoded_mRNA 0 0 1056 SO:1001262 minus_1_translational_frameshift 0 0 1057 SO:1001263 plus_1_translational_frameshift 0 0 1058 SO:1001264 mRNA_recoded_by_translational_bypass 0 0 1059 SO:1001265 mRNA_recoded_by_codon_redefinition 0 0 1060 SO:1001266 stop_codon_redefinition_as_selenocysteine 0 0 1061 SO:1001267 stop_codon_readthrough 0 0 1062 SO:1001268 recoding_stimulatory_region 0 0 1063 SO:1001269 four_bp_start_codon 0 0 1064 SO:1001270 stop_codon_redefinition_as_pyrrolysine 0 0 1065 SO:1001271 archeal_intron 0 0 1066 SO:1001272 tRNA_intron 0 0 1067 SO:1001273 CTG_start_codon 0 0 1068 SO:1001274 SECIS_element 0 0 1069 SO:1001275 retron 0 0 1070 SO:1001277 three_prime_recoding_site 0 0 1071 SO:1001279 three_prime_stem_loop_structure 0 0 1072 SO:1001280 five_prime_recoding_site 0 0 1073 SO:1001281 flanking_three_prime_quadruplet_recoding_signal 0 0 1074 SO:1001282 UAG_stop_codon_signal 0 0 1075 SO:1001283 UAA_stop_codon_signal 0 0 1076 SO:1001284 regulon 0 0 1077 SO:1001285 UGA_stop_codon_signal 0 0 1078 SO:1001286 three_prime_repeat_recoding_signal 0 0 1079 SO:1001287 distant_three_prime_recoding_signal 0 0 1080 SO:1001288 stop_codon_signal 0 0 1081 SO:2000061 databank_entry 0 0 1082 GO:0000001 mitochondrion inheritance 0 0 1083 GO:0000002 mitochondrial genome maintenance 0 0 1084 GO:0000003 reproduction 0 0 1085 GO:0000004 biological process unknown 0 0 1086 GO:0000005 ribosomal chaperone activity (obsolete GO:0000005) 1 0 1087 GO:0000006 high affinity zinc uptake transporter activity 0 0 1088 GO:0000007 low-affinity zinc ion transporter activity 0 0 1089 GO:0000008 thioredoxin (obsolete GO:0000008) 1 0 1090 GO:0000009 alpha-1,6-mannosyltransferase activity 0 0 1091 GO:0000010 trans-hexaprenyltranstransferase activity 0 0 2612 GO:0004099 chitin deacetylase activity 0 0 2613 GO:0004100 chitin synthase activity 0 0 2614 GO:0004102 choline O-acetyltransferase activity 0 0 2615 GO:0004103 choline kinase activity 0 0 2616 GO:0004104 cholinesterase activity 0 0 2617 GO:0004105 choline-phosphate cytidylyltransferase activity 0 0 2618 GO:0004106 chorismate mutase activity 0 0 2619 GO:0004107 chorismate synthase activity 0 0 2620 GO:0004108 citrate (Si)-synthase activity 0 0 2621 GO:0004109 coproporphyrinogen oxidase activity 0 0 2622 GO:0004110 corticosteroid side-chain-isomerase activity 0 0 2623 GO:0004111 creatine kinase activity 0 0 2624 GO:0004112 cyclic-nucleotide phosphodiesterase activity 0 0 2625 GO:0004113 2',3'-cyclic-nucleotide 3'-phosphodiesterase activity 0 0 2626 GO:0004114 3',5'-cyclic-nucleotide phosphodiesterase activity 0 0 2627 GO:0004115 3',5'-cyclic-AMP phosphodiesterase activity 0 0 2628 GO:0004117 calmodulin-dependent cyclic-nucleotide phosphodiesterase activity 0 0 2629 GO:0004118 cGMP-stimulated cyclic-nucleotide phosphodiesterase activity 0 0 2630 GO:0004119 cGMP-inhibited cyclic-nucleotide phosphodiesterase activity 0 0 2631 GO:0004120 photoreceptor cyclic-nucleotide phosphodiesterase activity 0 0 2632 GO:0004121 cystathionine beta-lyase activity 0 0 2633 GO:0004122 cystathionine beta-synthase activity 0 0 2634 GO:0004123 cystathionine gamma-lyase activity 0 0 2635 GO:0004124 cysteine synthase activity 0 0 2636 GO:0004125 L-seryl-tRNASec selenium transferase activity 0 0 2637 GO:0004126 cytidine deaminase activity 0 0 2638 GO:0004127 cytidylate kinase activity 0 0 2639 GO:0004128 cytochrome-b5 reductase activity 0 0 2640 GO:0004129 cytochrome-c oxidase activity 0 0 2641 GO:0004130 cytochrome-c peroxidase activity 0 0 2642 GO:0004131 cytosine deaminase activity 0 0 2643 GO:0004132 dCMP deaminase activity 0 0 2644 GO:0004133 glycogen debranching enzyme activity 0 0 2645 GO:0004134 4-alpha-glucanotransferase activity 0 0 2646 GO:0004135 amylo-alpha-1,6-glucosidase activity 0 0 2647 GO:0004136 deoxyadenosine kinase activity 0 0 2648 GO:0004137 deoxycytidine kinase activity 0 0 2649 GO:0004138 deoxyguanosine kinase activity 0 0 2650 GO:0004139 deoxyribose-phosphate aldolase activity 0 0 2651 GO:0004140 dephospho-CoA kinase activity 0 0 2652 GO:0004141 dethiobiotin synthase activity 0 0 2653 GO:0004142 diacylglycerol cholinephosphotransferase activity 0 0 2654 GO:0004143 diacylglycerol kinase activity 0 0 2655 GO:0004144 diacylglycerol O-acyltransferase activity 0 0 2656 GO:0004145 diamine N-acetyltransferase activity 0 0 2657 GO:0004146 dihydrofolate reductase activity 0 0 2658 GO:0004147 dihydrolipoamide branched chain acyltransferase activity 0 0 2659 GO:0004148 dihydrolipoyl dehydrogenase activity 0 0 2660 GO:0004149 dihydrolipoyllysine-residue succinyltransferase activity 0 0 2661 GO:0004150 dihydroneopterin aldolase activity 0 0 2662 GO:0004151 dihydroorotase activity 0 0 2663 GO:0004152 dihydroorotate dehydrogenase activity 0 0 2664 GO:0004153 dihydropterin deaminase activity 0 0 2665 GO:0004154 dihydropterin oxidase activity 0 0 2666 GO:0004155 6,7-dihydropteridine reductase activity 0 0 2667 GO:0004156 dihydropteroate synthase activity 0 0 2668 GO:0004157 dihydropyrimidinase activity 0 0 2669 GO:0004158 dihydroorotate oxidase activity 0 0 2670 GO:0004159 dihydrouracil dehydrogenase (NAD+) activity 0 0 2671 GO:0004160 dihydroxy-acid dehydratase activity 0 0 2672 GO:0004161 dimethylallyltranstransferase activity 0 0 2673 GO:0004162 dimethylnitrosamine demethylase activity 0 0 2674 GO:0004163 diphosphomevalonate decarboxylase activity 0 0 2675 GO:0004164 diphthine synthase activity 0 0 2676 GO:0004165 dodecenoyl-CoA delta-isomerase activity 0 0 2677 GO:0004166 dolichyl-phosphate alpha-N-acetylglucosaminyltransferase activity 0 0 2678 GO:0004167 dopachrome isomerase activity 0 0 2679 GO:0004168 dolichol kinase activity 0 0 2680 GO:0004169 dolichyl-phosphate-mannose-protein mannosyltransferase activity 0 0 2681 GO:0004170 dUTP diphosphatase activity 0 0 2682 GO:0004171 deoxyhypusine synthase activity (obsolete GO:0004171) 1 0 2683 GO:0004172 ecdysteroid UDP-glucosyl/UDP-glucuronosyl transferase activity (obsolete GO:0004172) 1 0 2684 GO:0004173 ecdysone O-acyltransferase activity 0 0 2685 GO:0004174 electron-transferring-flavoprotein dehydrogenase activity 0 0 2686 GO:0004175 endopeptidase activity 0 0 2687 GO:0004176 ATP-dependent peptidase activity 0 0 2688 GO:0004177 aminopeptidase activity 0 0 2689 GO:0004178 leucyl aminopeptidase activity 0 0 2690 GO:0004179 membrane alanyl aminopeptidase activity 0 0 2691 GO:0004180 carboxypeptidase activity 0 0 2692 GO:0004181 metallocarboxypeptidase activity 0 0 2693 GO:0004182 carboxypeptidase A activity 0 0 2694 GO:0004183 carboxypeptidase E activity 0 0 2695 GO:0004184 lysine carboxypeptidase activity 0 0 2696 GO:0004185 serine carboxypeptidase activity 0 0 2697 GO:0004186 carboxypeptidase C activity 0 0 2698 GO:0004187 carboxypeptidase D activity 0 0 2699 GO:0004188 serine-type Pro-X carboxypeptidase activity 0 0 2700 GO:0004189 tubulinyl-Tyr carboxypeptidase activity 0 0 2701 GO:0004190 aspartic-type endopeptidase activity 0 0 2702 GO:0004191 barrierpepsin activity 0 0 2703 GO:0004192 cathepsin D activity 0 0 2704 GO:0004193 cathepsin E activity 0 0 2705 GO:0004194 pepsin A activity 0 0 2706 GO:0004195 renin activity 0 0 2707 GO:0004196 saccharopepsin activity 0 0 2708 GO:0004197 cysteine-type endopeptidase activity 0 0 2709 GO:0004198 calpain activity 0 0 2710 GO:0004199 caspase activity (obsolete GO:0004199) 1 0 2711 GO:0004200 signaling (initiator) caspase activity (obsolete GO:0004200) 1 0 2712 GO:0004201 caspase-1 activity (obsolete GO:0004201) 1 0 2713 GO:0004202 caspase-2 activity (obsolete GO:0004202) 1 0 2714 GO:0004203 caspase-4 activity (obsolete GO:0004203) 1 0 2715 GO:0004204 caspase-5 activity (obsolete GO:0004204) 1 0 2716 GO:0004205 caspase-8 activity (obsolete GO:0004205) 1 0 2717 GO:0004206 caspase-10 activity (obsolete GO:0004206) 1 0 2718 GO:0004207 effector caspase activity (obsolete GO:0004207) 1 0 2719 GO:0004208 caspase-3 activity (obsolete GO:0004208) 1 0 2720 GO:0004209 caspase-6 activity (obsolete GO:0004209) 1 0 2721 GO:0004210 caspase-7 activity (obsolete GO:0004210) 1 0 2722 GO:0004211 caspase-9 activity (obsolete GO:0004211) 1 0 2723 GO:0004212 lysosomal cysteine-type endopeptidase (obsolete GO:0004212) 1 0 2724 GO:0004213 cathepsin B activity 0 0 2725 GO:0004214 dipeptidyl-peptidase I activity 0 0 2726 GO:0004215 cathepsin H activity 0 0 2727 GO:0004216 cathepsin K activity 0 0 2728 GO:0004217 cathepsin L activity 0 0 2729 GO:0004218 cathepsin S activity 0 0 2730 GO:0004219 pyroglutamyl-peptidase I activity 0 0 2731 GO:0004221 ubiquitin thiolesterase activity 0 0 2732 GO:0004222 metalloendopeptidase activity 0 0 2733 GO:0004226 Gly-X carboxypeptidase activity 0 0 2734 GO:0004228 gelatinase A activity 0 0 2735 GO:0004229 gelatinase B activity 0 0 2736 GO:0004230 glutamyl aminopeptidase activity 0 0 2737 GO:0004231 insulysin activity 0 0 2738 GO:0004232 interstitial collagenase activity 0 0 2739 GO:0004234 macrophage elastase activity 0 0 2740 GO:0004235 matrilysin activity 0 0 2741 GO:0004237 membrane dipeptidase activity 0 0 2742 GO:0004238 meprin A activity 0 0 2743 GO:0004239 methionyl aminopeptidase activity 0 0 2744 GO:0004240 mitochondrial processing peptidase activity 0 0 2745 GO:0004241 alpha-mitochondrial processing peptidase (obsolete GO:0004241) 1 0 2746 GO:0004242 beta-mitochondrial processing peptidase (obsolete GO:0004242) 1 0 2747 GO:0004243 mitochondrial intermediate peptidase activity 0 0 2748 GO:0004244 mitochondrial inner membrane peptidase activity 0 0 2749 GO:0004245 neprilysin activity 0 0 2750 GO:0004246 peptidyl-dipeptidase A activity 0 0 2751 GO:0004247 saccharolysin activity 0 0 2752 GO:0004248 stromelysin 1 activity 0 0 2753 GO:0004249 stromelysin 3 activity 0 0 2754 GO:0004250 aminopeptidase I activity 0 0 2755 GO:0004251 X-Pro dipeptidase activity 0 0 2756 GO:0004252 serine-type endopeptidase activity 0 0 2757 GO:0004253 gamma-renin activity 0 0 2758 GO:0004254 acylaminoacyl-peptidase activity 0 0 2759 GO:0004258 vacuolar carboxypeptidase Y (obsolete GO:0004258) 1 0 2760 GO:0004261 cathepsin G activity 0 0 2761 GO:0004262 cerevisin activity 0 0 2762 GO:0004263 chymotrypsin activity 0 0 2763 GO:0004274 dipeptidyl-peptidase IV activity 0 0 2764 GO:0004275 enteropeptidase activity 0 0 2765 GO:0004276 furin activity 0 0 2766 GO:0004277 granzyme A activity 0 0 2767 GO:0004278 granzyme B activity 0 0 2768 GO:0004281 pancreatic elastase II activity 0 0 2769 GO:0004283 plasmin activity 0 0 2770 GO:0004284 acrosin activity 0 0 2771 GO:0004285 proprotein convertase 1 activity 0 0 2772 GO:0004286 proprotein convertase 2 activity 0 0 2773 GO:0004287 prolyl oligopeptidase activity 0 0 2774 GO:0004289 subtilase activity 0 0 2775 GO:0004290 kexin activity 0 0 2776 GO:0004291 subtilisin activity 0 0 2777 GO:0004293 tissue kallikrein activity 0 0 2778 GO:0004294 tripeptidyl-peptidase II activity 0 0 2779 GO:0004295 trypsin activity 0 0 2780 GO:0004298 threonine endopeptidase activity 0 0 2781 GO:0004299 proteasome endopeptidase activity (obsolete GO:0004299) 1 0 2782 GO:0004300 enoyl-CoA hydratase activity 0 0 2783 GO:0004301 epoxide hydrolase activity 0 0 2784 GO:0004303 estradiol 17-beta-dehydrogenase activity 0 0 2785 GO:0004304 estrone sulfotransferase activity 0 0 2786 GO:0004305 ethanolamine kinase activity 0 0 2787 GO:0004306 ethanolamine-phosphate cytidylyltransferase activity 0 0 2788 GO:0004307 ethanolaminephosphotransferase activity 0 0 2789 GO:0004308 exo-alpha-sialidase activity 0 0 2790 GO:0004309 exopolyphosphatase activity 0 0 2791 GO:0004310 farnesyl-diphosphate farnesyltransferase activity 0 0 2792 GO:0004311 farnesyltranstransferase activity 0 0 2793 GO:0004312 fatty-acid synthase activity 0 0 2794 GO:0004313 [acyl-carrier protein] S-acetyltransferase activity 0 0 2795 GO:0004314 [acyl-carrier protein] S-malonyltransferase activity 0 0 2796 GO:0004315 3-oxoacyl-[acyl-carrier protein] synthase activity 0 0 2797 GO:0004316 3-oxoacyl-[acyl-carrier protein] reductase activity 0 0 2798 GO:0004317 3-hydroxypalmitoyl-[acyl-carrier protein] dehydratase activity 0 0 2799 GO:0004318 enoyl-[acyl-carrier protein] reductase (NADH) activity 0 0 2800 GO:0004319 enoyl-[acyl-carrier protein] reductase (NADPH, B-specific) activity 0 0 2801 GO:0004320 oleoyl-[acyl-carrier protein] hydrolase activity 0 0 2802 GO:0004321 fatty-acyl-CoA synthase activity 0 0 2803 GO:0004322 ferroxidase activity 0 0 2804 GO:0004323 multicopper ferroxidase iron transport mediator activity (obsolete GO:0004323) 1 0 2805 GO:0004324 ferredoxin-NADP+ reductase activity 0 0 2806 GO:0004325 ferrochelatase activity 0 0 2807 GO:0004326 tetrahydrofolylpolyglutamate synthase activity 0 0 2808 GO:0004327 formaldehyde dehydrogenase (glutathione) activity 0 0 2809 GO:0004328 formamidase activity 0 0 2810 GO:0004329 formate-tetrahydrofolate ligase activity 0 0 2811 GO:0004331 fructose-2,6-bisphosphate 2-phosphatase activity 0 0 2812 GO:0004332 fructose-bisphosphate aldolase activity 0 0 2813 GO:0004333 fumarate hydratase activity 0 0 2814 GO:0004334 fumarylacetoacetase activity 0 0 2815 GO:0004335 galactokinase activity 0 0 2816 GO:0004336 galactosylceramidase activity 0 0 2817 GO:0004337 geranyltranstransferase activity 0 0 2818 GO:0004338 glucan 1,3-beta-glucosidase activity 0 0 2819 GO:0004339 glucan 1,4-alpha-glucosidase activity 0 0 2820 GO:0004340 glucokinase activity 0 0 2821 GO:0004341 gluconolactonase activity 0 0 2822 GO:0004342 glucosamine-6-phosphate deaminase activity 0 0 2823 GO:0004343 glucosamine 6-phosphate N-acetyltransferase activity 0 0 2824 GO:0004344 glucose dehydrogenase (acceptor) activity 0 0 2825 GO:0004345 glucose-6-phosphate 1-dehydrogenase activity 0 0 2826 GO:0004346 glucose-6-phosphatase activity 0 0 2827 GO:0004347 glucose-6-phosphate isomerase activity 0 0 2828 GO:0004348 glucosylceramidase activity 0 0 2829 GO:0004349 glutamate 5-kinase activity 0 0 2830 GO:0004350 glutamate-5-semialdehyde dehydrogenase activity 0 0 2831 GO:0004351 glutamate decarboxylase activity 0 0 2832 GO:0004352 glutamate dehydrogenase activity 0 0 2833 GO:0004353 glutamate dehydrogenase [NAD(P)+] activity 0 0 2834 GO:0004354 glutamate dehydrogenase (NADP+) activity 0 0 2835 GO:0004355 glutamate synthase (NADPH) activity 0 0 2836 GO:0004356 glutamate-ammonia ligase activity 0 0 2837 GO:0004357 glutamate-cysteine ligase activity 0 0 2838 GO:0004358 glutamate N-acetyltransferase activity 0 0 2839 GO:0004359 glutaminase activity 0 0 2840 GO:0004360 glutamine-fructose-6-phosphate transaminase (isomerizing) activity 0 0 2841 GO:0004361 glutaryl-CoA dehydrogenase activity 0 0 2842 GO:0004362 glutathione-disulfide reductase activity 0 0 2843 GO:0004363 glutathione synthase activity 0 0 2844 GO:0004364 glutathione transferase activity 0 0 2845 GO:0004365 glyceraldehyde-3-phosphate dehydrogenase (phosphorylating) activity 0 0 2846 GO:0004366 glycerol-3-phosphate O-acyltransferase activity 0 0 2847 GO:0004367 glycerol-3-phosphate dehydrogenase (NAD+) activity 0 0 2848 GO:0004368 glycerol-3-phosphate dehydrogenase activity 0 0 2849 GO:0004369 glycerol-3-phosphate oxidase activity 0 0 2850 GO:0004370 glycerol kinase activity 0 0 2851 GO:0004371 glycerone kinase activity 0 0 2852 GO:0004372 glycine hydroxymethyltransferase activity 0 0 2853 GO:0004373 glycogen (starch) synthase activity 0 0 2854 GO:0004374 glycine cleavage system (obsolete GO:0004374) 1 0 2855 GO:0004375 glycine dehydrogenase (decarboxylating) activity 0 0 2856 GO:0004376 glycolipid mannosyltransferase activity 0 0 4276 GO:0005997 xylulose metabolism 0 0 4277 GO:0005998 xylulose catabolism 0 0 4278 GO:0005999 xylulose biosynthesis 0 0 4279 GO:0006000 fructose metabolism 0 0 4280 GO:0006001 fructose catabolism 0 0 4281 GO:0006002 fructose 6-phosphate metabolism 0 0 4282 GO:0006003 fructose 2,6-bisphosphate metabolism 0 0 4283 GO:0006004 fucose metabolism 0 0 4284 GO:0006005 L-fucose biosynthesis 0 0 4285 GO:0006006 glucose metabolism 0 0 4286 GO:0006007 glucose catabolism 0 0 4287 GO:0006008 glucose 1-phosphate utilization 0 0 4288 GO:0006009 glucose 1-phosphate phosphorylation 0 0 4289 GO:0006010 glucose 6-phosphate utilization 0 0 4290 GO:0006011 UDP-glucose metabolism 0 0 4291 GO:0006012 galactose metabolism 0 0 4292 GO:0006013 mannose metabolism 0 0 4293 GO:0006014 D-ribose metabolism 0 0 4294 GO:0006015 5-phosphoribose 1-diphosphate biosynthesis 0 0 4295 GO:0006016 2-deoxyribose 1-phosphate biosynthesis 0 0 4296 GO:0006017 deoxyribose 1,5-bisphosphate biosynthesis 0 0 4297 GO:0006018 deoxyribose 1-phosphate catabolism 0 0 4298 GO:0006019 deoxyribose 5-phosphate phosphorylation 0 0 4299 GO:0006020 myo-inositol metabolism 0 0 4300 GO:0006021 myo-inositol biosynthesis 0 0 4301 GO:0006022 aminoglycan metabolism 0 0 4302 GO:0006023 aminoglycan biosynthesis 0 0 4303 GO:0006024 glycosaminoglycan biosynthesis 0 0 4304 GO:0006025 galactosaminoglycan biosynthesis 0 0 4305 GO:0006026 aminoglycan catabolism 0 0 4306 GO:0006027 glycosaminoglycan catabolism 0 0 4307 GO:0006028 galactosaminoglycan catabolism 0 0 4308 GO:0006029 proteoglycan metabolism 0 0 4309 GO:0006030 chitin metabolism 0 0 4310 GO:0006031 chitin biosynthesis 0 0 4311 GO:0006032 chitin catabolism 0 0 4312 GO:0006033 chitin localization 0 0 4313 GO:0006034 cuticle chitin metabolism 0 0 4314 GO:0006035 cuticle chitin biosynthesis 0 0 4315 GO:0006036 cuticle chitin catabolism 0 0 4316 GO:0006037 cell wall chitin metabolism 0 0 4317 GO:0006038 cell wall chitin biosynthesis 0 0 4318 GO:0006039 cell wall chitin catabolism 0 0 4319 GO:0006040 amino sugar metabolism 0 0 4320 GO:0006041 glucosamine metabolism 0 0 4321 GO:0006042 glucosamine biosynthesis 0 0 4322 GO:0006043 glucosamine catabolism 0 0 4323 GO:0006044 N-acetylglucosamine metabolism 0 0 4324 GO:0006045 N-acetylglucosamine biosynthesis 0 0 4325 GO:0006046 N-acetylglucosamine catabolism 0 0 4326 GO:0006047 UDP-N-acetylglucosamine metabolism 0 0 4327 GO:0006048 UDP-N-acetylglucosamine biosynthesis 0 0 4328 GO:0006049 UDP-N-acetylglucosamine catabolism 0 0 4329 GO:0006050 mannosamine metabolism 0 0 4330 GO:0006051 N-acetylmannosamine metabolism 0 0 4331 GO:0006052 N-acetylmannosamine biosynthesis 0 0 4332 GO:0006053 N-acetylmannosamine catabolism 0 0 4333 GO:0006054 N-acetylneuraminate metabolism 0 0 4334 GO:0006055 CMP-N-acetylneuraminate biosynthesis 0 0 4335 GO:0006056 mannoprotein metabolism 0 0 4336 GO:0006057 mannoprotein biosynthesis 0 0 4337 GO:0006058 mannoprotein catabolism 0 0 4338 GO:0006059 hexitol metabolism 0 0 4339 GO:0006060 sorbitol metabolism 0 0 4340 GO:0006061 sorbitol biosynthesis 0 0 4341 GO:0006062 sorbitol catabolism 0 0 4342 GO:0006063 uronic acid metabolism 0 0 4343 GO:0006064 glucuronate catabolism 0 0 4344 GO:0006065 UDP-glucuronate biosynthesis 0 0 4345 GO:0006066 alcohol metabolism 0 0 4346 GO:0006067 ethanol metabolism 0 0 4347 GO:0006068 ethanol catabolism 0 0 4348 GO:0006069 ethanol oxidation 0 0 4349 GO:0006070 octanol metabolism 0 0 4350 GO:0006071 glycerol metabolism 0 0 4351 GO:0006072 glycerol-3-phosphate metabolism 0 0 4352 GO:0006073 glucan metabolism 0 0 4353 GO:0006074 1,3-beta-glucan metabolism 0 0 4354 GO:0006075 1,3-beta-glucan biosynthesis 0 0 4355 GO:0006076 1,3-beta-glucan catabolism 0 0 4356 GO:0006077 1,6-beta-glucan metabolism 0 0 4357 GO:0006078 1,6-beta-glucan biosynthesis 0 0 4358 GO:0006079 1,6-beta-glucan catabolism 0 0 4359 GO:0006080 mannan metabolism 0 0 4360 GO:0006081 aldehyde metabolism 0 0 4361 GO:0006082 organic acid metabolism 0 0 4362 GO:0006083 acetate metabolism 0 0 4363 GO:0006084 acetyl-CoA metabolism 0 0 4364 GO:0006085 acetyl-CoA biosynthesis 0 0 4365 GO:0006086 acetyl-CoA biosynthesis from pyruvate 0 0 4366 GO:0006087 pyruvate dehydrogenase bypass 0 0 4367 GO:0006088 acetate to acetyl-CoA (obsolete GO:0006088) 1 0 4368 GO:0006089 lactate metabolism 0 0 4369 GO:0006090 pyruvate metabolism 0 0 4370 GO:0006091 generation of precursor metabolites and energy 0 0 4371 GO:0006092 main pathways of carbohydrate metabolism 0 0 4372 GO:0006094 gluconeogenesis 0 0 4373 GO:0006096 glycolysis 0 0 4374 GO:0006097 glyoxylate cycle 0 0 4375 GO:0006098 pentose-phosphate shunt 0 0 4376 GO:0006099 tricarboxylic acid cycle 0 0 4377 GO:0006100 tricarboxylic acid cycle intermediate metabolism 0 0 4378 GO:0006101 citrate metabolism 0 0 4379 GO:0006102 isocitrate metabolism 0 0 4380 GO:0006103 2-oxoglutarate metabolism 0 0 4381 GO:0006104 succinyl-CoA metabolism 0 0 4382 GO:0006105 succinate metabolism 0 0 4383 GO:0006106 fumarate metabolism 0 0 4384 GO:0006107 oxaloacetate metabolism 0 0 4385 GO:0006108 malate metabolism 0 0 4386 GO:0006109 regulation of carbohydrate metabolism 0 0 4387 GO:0006110 regulation of glycolysis 0 0 4388 GO:0006111 regulation of gluconeogenesis 0 0 4389 GO:0006112 energy reserve metabolism 0 0 4390 GO:0006113 fermentation 0 0 4391 GO:0006114 glycerol biosynthesis 0 0 4392 GO:0006115 ethanol biosynthesis 0 0 4393 GO:0006116 NADH oxidation 0 0 4394 GO:0006117 acetaldehyde metabolism 0 0 4395 GO:0006118 electron transport 0 0 4396 GO:0006119 oxidative phosphorylation 0 0 4397 GO:0006120 mitochondrial electron transport, NADH to ubiquinone 0 0 4398 GO:0006121 mitochondrial electron transport, succinate to ubiquinone 0 0 4399 GO:0006122 mitochondrial electron transport, ubiquinol to cytochrome c 0 0 4400 GO:0006123 mitochondrial electron transport, cytochrome c to oxygen 0 0 4401 GO:0006124 ferredoxin metabolism 0 0 4402 GO:0006125 thioredoxin pathway 0 0 4403 GO:0006126 other pathways of electron transport (obsolete GO:0006126) 1 0 4404 GO:0006127 glycerophosphate shuttle 0 0 4405 GO:0006128 oxidized glutathione reduction (obsolete GO:0006128) 1 0 4406 GO:0006129 protein-disulfide reduction (obsolete GO:0006129) 1 0 4407 GO:0006130 6-phosphofructokinase reduction (obsolete GO:0006130) 1 0 4408 GO:0006131 dihydrolipoamide reduction (obsolete GO:0006131) 1 0 4409 GO:0006132 dihydrolipoylprotein reduction (obsolete GO:0006132) 1 0 4410 GO:0006133 5,10-methylenetetrahydrofolate oxidation 0 0 4411 GO:0006134 dihydrobiopterin reduction (obsolete GO:0006134) 1 0 4412 GO:0006135 dihydropteridine reduction (obsolete GO:0006135) 1 0 4413 GO:0006136 succinate-O2 electron transport 0 0 4414 GO:0006137 ubiquinone-8-O2 electron transport 0 0 4415 GO:0006138 NADH-O2 electron transport 0 0 4416 GO:0006139 nucleobase, nucleoside, nucleotide and nucleic acid metabolism 0 0 4417 GO:0006140 regulation of nucleotide metabolism 0 0 4418 GO:0006141 regulation of purine base metabolism 0 0 4419 GO:0006142 regulation of pyrimidine base metabolism 0 0 4420 GO:0006143 purine metabolism (obsolete GO:0006143) 1 0 4421 GO:0006144 purine base metabolism 0 0 4422 GO:0006145 purine base catabolism 0 0 4423 GO:0006146 adenine catabolism 0 0 4424 GO:0006147 guanine catabolism 0 0 4425 GO:0006148 inosine catabolism 0 0 4426 GO:0006149 deoxyinosine catabolism 0 0 4427 GO:0006150 hypoxanthine oxidation 0 0 4428 GO:0006151 xanthine oxidation 0 0 4429 GO:0006152 purine nucleoside catabolism 0 0 4430 GO:0006153 purine nucleosidase reaction (obsolete GO:0006153) 1 0 4431 GO:0006154 adenosine catabolism 0 0 4432 GO:0006155 adenosine deaminase reaction (obsolete GO:0006155) 1 0 4433 GO:0006156 adenosine phosphorolysis 0 0 4434 GO:0006157 deoxyadenosine catabolism 0 0 4435 GO:0006158 deoxyadenosine deaminase reaction (obsolete GO:0006158) 1 0 4436 GO:0006159 deoxyadenosine phosphorolysis 0 0 4437 GO:0006160 guanosine phosphorolysis 0 0 4438 GO:0006161 deoxyguanosine catabolism 0 0 4439 GO:0006162 purine/pyrimidine nucleoside diphosphate reduction (obsolete GO:0006162) 1 0 4440 GO:0006163 purine nucleotide metabolism 0 0 4441 GO:0006164 purine nucleotide biosynthesis 0 0 4442 GO:0006165 nucleoside diphosphate phosphorylation 0 0 4443 GO:0006166 purine ribonucleoside salvage 0 0 4444 GO:0006167 AMP biosynthesis 0 0 4445 GO:0006168 adenine salvage 0 0 4446 GO:0006169 adenosine salvage 0 0 4447 GO:0006170 dAMP biosynthesis 0 0 4448 GO:0006171 cAMP biosynthesis 0 0 4449 GO:0006172 ADP biosynthesis 0 0 4450 GO:0006173 dADP biosynthesis 0 0 4451 GO:0006174 dADP phosphorylation 0 0 4452 GO:0006175 dATP biosynthesis 0 0 4453 GO:0006176 dATP biosynthesis from ADP 0 0 4454 GO:0006177 GMP biosynthesis 0 0 4455 GO:0006178 guanine salvage 0 0 4456 GO:0006179 guanosine salvage 0 0 4457 GO:0006180 deoxyguanosine salvage 0 0 4458 GO:0006181 dGMP biosynthesis 0 0 4459 GO:0006182 cGMP biosynthesis 0 0 4460 GO:0006183 GTP biosynthesis 0 0 4461 GO:0006184 GTP catabolism 0 0 4462 GO:0006185 dGDP biosynthesis 0 0 4463 GO:0006186 dGDP phosphorylation 0 0 4464 GO:0006187 dGTP biosynthesis from dGDP 0 0 4465 GO:0006188 IMP biosynthesis 0 0 4466 GO:0006189 'de novo' IMP biosynthesis 0 0 4467 GO:0006190 inosine salvage 0 0 4468 GO:0006191 deoxyinosine salvage 0 0 4469 GO:0006192 IDP phosphorylation 0 0 4470 GO:0006193 ITP catabolism 0 0 4471 GO:0006194 dIDP phosphorylation 0 0 4472 GO:0006195 purine nucleotide catabolism 0 0 4473 GO:0006196 AMP catabolism 0 0 4474 GO:0006197 adenylate deaminase reaction (obsolete GO:0006197) 1 0 4475 GO:0006198 cAMP catabolism 0 0 4476 GO:0006199 ADP reduction (obsolete GO:0006199) 1 0 4477 GO:0006200 ATP catabolism 0 0 4478 GO:0006201 GMP catabolism to IMP 0 0 4479 GO:0006202 GMP catabolism to guanine 0 0 4480 GO:0006203 dGTP catabolism 0 0 4481 GO:0006204 IMP catabolism 0 0 4482 GO:0006205 pyrimidine metabolism (obsolete GO:0006205) 1 0 4483 GO:0006206 pyrimidine base metabolism 0 0 4484 GO:0006207 'de novo' pyrimidine base biosynthesis 0 0 4485 GO:0006208 pyrimidine base catabolism 0 0 4486 GO:0006209 cytosine catabolism 0 0 4487 GO:0006210 thymine catabolism 0 0 4488 GO:0006211 5-methylcytosine catabolism 0 0 4489 GO:0006212 uracil catabolism 0 0 4490 GO:0006213 pyrimidine nucleoside metabolism 0 0 4491 GO:0006214 thymidine catabolism 0 0 4492 GO:0006216 cytidine catabolism 0 0 4493 GO:0006217 deoxycytidine catabolism 0 0 4494 GO:0006218 uridine catabolism 0 0 4495 GO:0006219 deoxyuridine catabolism 0 0 4496 GO:0006220 pyrimidine nucleotide metabolism 0 0 4497 GO:0006221 pyrimidine nucleotide biosynthesis 0 0 4498 GO:0006222 UMP biosynthesis 0 0 4499 GO:0006223 uracil salvage 0 0 4500 GO:0006224 uridine kinase reaction (obsolete GO:0006224) 1 0 4501 GO:0006225 UDP biosynthesis 0 0 4502 GO:0006226 dUMP biosynthesis 0 0 4503 GO:0006227 dUDP biosynthesis 0 0 4504 GO:0006228 UTP biosynthesis 0 0 4505 GO:0006229 dUTP biosynthesis 0 0 4506 GO:0006230 TMP biosynthesis 0 0 4507 GO:0006231 dTMP biosynthesis 0 0 4508 GO:0006232 TDP biosynthesis 0 0 4509 GO:0006233 dTDP biosynthesis 0 0 4510 GO:0006234 TTP biosynthesis 0 0 4511 GO:0006235 dTTP biosynthesis 0 0 4512 GO:0006236 cytidine salvage 0 0 4513 GO:0006237 deoxycytidine salvage 0 0 4514 GO:0006238 CMP salvage 0 0 4515 GO:0006239 dCMP salvage 0 0 4516 GO:0006240 dCDP biosynthesis 0 0 4517 GO:0006241 CTP biosynthesis 0 0 4518 GO:0006242 dCTP biosynthesis 0 0 4519 GO:0006243 CTP deamination 0 0 4520 GO:0006244 pyrimidine nucleotide catabolism 0 0 4521 GO:0006245 TDP catabolism 0 0 4522 GO:0006246 dTDP catabolism 0 0 4523 GO:0006247 TTP reduction (obsolete GO:0006247) 1 0 4524 GO:0006248 CMP catabolism 0 0 4525 GO:0006249 dCMP catabolism 0 0 4526 GO:0006250 CDP reduction (obsolete GO:0006250) 1 0 4527 GO:0006251 dCDP catabolism 0 0 4528 GO:0006252 CTP reduction (obsolete GO:0006252) 1 0 4529 GO:0006253 dCTP catabolism 0 0 4530 GO:0006254 CTP catabolism 0 0 4531 GO:0006255 UDP reduction (obsolete GO:0006255) 1 0 4532 GO:0006256 UDP catabolism 0 0 4533 GO:0006257 dUDP catabolism 0 0 4534 GO:0006258 UDP-glucose catabolism 0 0 4535 GO:0006259 DNA metabolism 0 0 4536 GO:0006260 DNA replication 0 0 4537 GO:0006261 DNA-dependent DNA replication 0 0 4538 GO:0006264 mitochondrial DNA replication 0 0 4539 GO:0006265 DNA topological change 0 0 4540 GO:0006266 DNA ligation 0 0 4541 GO:0006267 pre-replicative complex formation and maintenance 0 0 4542 GO:0006268 DNA unwinding during replication 0 0 4543 GO:0006269 DNA replication, synthesis of RNA primer 0 0 4544 GO:0006270 DNA replication initiation 0 0 4545 GO:0006271 DNA strand elongation 0 0 4546 GO:0006272 leading strand elongation 0 0 4547 GO:0006273 lagging strand elongation 0 0 4548 GO:0006274 DNA replication termination 0 0 4549 GO:0006275 regulation of DNA replication 0 0 4550 GO:0006276 plasmid maintenance 0 0 4551 GO:0006277 DNA amplification 0 0 4552 GO:0006278 RNA-dependent DNA replication 0 0 4553 GO:0006279 premeiotic DNA synthesis 0 0 4554 GO:0006280 mutagenesis 0 0 4555 GO:0006281 DNA repair 0 0 4556 GO:0006282 regulation of DNA repair 0 0 4557 GO:0006283 transcription-coupled nucleotide-excision repair 0 0 4558 GO:0006284 base-excision repair 0 0 4559 GO:0006285 base-excision repair, AP site formation 0 0 4560 GO:0006286 base-excision repair, base-free sugar-phosphate removal 0 0 4561 GO:0006287 base-excision repair, gap-filling 0 0 4562 GO:0006288 base-excision repair, DNA ligation 0 0 4563 GO:0006289 nucleotide-excision repair 0 0 4564 GO:0006290 pyrimidine dimer repair 0 0 4565 GO:0006291 pyrimidine-dimer repair, DNA damage excision (obsolete GO:0006291) 1 0 4566 GO:0006292 pyrimidine-dimer repair, DNA damage recognition (obsolete GO:0006292) 1 0 4567 GO:0006293 nucleotide-excision repair, preincision complex stabilization 0 0 4568 GO:0006294 nucleotide-excision repair, preincision complex formation 0 0 4569 GO:0006295 nucleotide-excision repair, DNA incision, 3'-to lesion 0 0 4570 GO:0006296 nucleotide-excision repair, DNA incision, 5'-to lesion 0 0 4571 GO:0006297 nucleotide-excision repair, DNA gap filling 0 0 4572 GO:0006298 mismatch repair 0 0 4573 GO:0006299 short patch mismatch repair system 0 0 4574 GO:0006300 long patch mismatch repair system 0 0 4575 GO:0006301 postreplication repair 0 0 4576 GO:0006302 double-strand break repair 0 0 4577 GO:0006303 double-strand break repair via nonhomologous end joining 0 0 4578 GO:0006304 DNA modification 0 0 4579 GO:0006305 DNA alkylation 0 0 4580 GO:0006306 DNA methylation 0 0 4581 GO:0006307 DNA dealkylation 0 0 4582 GO:0006308 DNA catabolism 0 0 4583 GO:0006309 DNA fragmentation during apoptosis 0 0 4584 GO:0006310 DNA recombination 0 0 4585 GO:0006311 meiotic gene conversion 0 0 4586 GO:0006312 mitotic recombination 0 0 4587 GO:0006313 DNA transposition 0 0 4588 GO:0006314 intron homing 0 0 4589 GO:0006315 homing of group II introns 0 0 4590 GO:0006316 movement of group I intron 0 0 4591 GO:0006317 P-element transposition 0 0 4592 GO:0006318 P-element excision 0 0 4593 GO:0006319 Ty element transposition 0 0 4594 GO:0006320 Ty1 element transposition 0 0 4595 GO:0006321 Ty2 element transposition 0 0 4596 GO:0006322 Ty3 element transposition 0 0 4597 GO:0006323 DNA packaging 0 0 4598 GO:0006324 S-phase regulated histone modification 0 0 4599 GO:0006325 establishment and/or maintenance of chromatin architecture 0 0 4600 GO:0006326 bent DNA binding (obsolete GO:0006326) 1 0 4601 GO:0006327 random coil binding (obsolete GO:0006327) 1 0 4602 GO:0006328 AT binding (obsolete GO:0006328) 1 0 4603 GO:0006329 satellite DNA binding (obsolete GO:0006329) 1 0 4604 GO:0006330 single-stranded DNA binding (obsolete GO:0006330) 1 0 4605 GO:0006333 chromatin assembly or disassembly 0 0 4606 GO:0006334 nucleosome assembly 0 0 4607 GO:0006335 DNA replication-dependent nucleosome assembly 0 0 4608 GO:0006336 DNA replication-independent nucleosome assembly 0 0 4609 GO:0006337 nucleosome disassembly 0 0 4610 GO:0006338 chromatin remodeling 0 0 4611 GO:0006339 positive regulation of transcription of homeotic gene (trithorax group) (obsolete GO:0006339) 1 0 4612 GO:0006340 negative regulation of transcription of homeotic gene (Polycomb group) (obsolete GO:0006340) 1 0 4613 GO:0006341 chromatin insulator sequence binding (obsolete GO:0006341) 1 0 4614 GO:0006342 chromatin silencing 0 0 4615 GO:0006343 establishment of chromatin silencing 0 0 4616 GO:0006344 maintenance of chromatin silencing 0 0 4617 GO:0006345 loss of chromatin silencing 0 0 4618 GO:0006346 methylation-dependent chromatin silencing 0 0 4619 GO:0006348 chromatin silencing at telomere 0 0 4620 GO:0006349 imprinting 0 0 4621 GO:0006350 transcription 0 0 4622 GO:0006351 transcription, DNA-dependent 0 0 4623 GO:0006352 transcription initiation 0 0 4624 GO:0006353 transcription termination 0 0 4625 GO:0006354 RNA elongation 0 0 4626 GO:0006355 regulation of transcription, DNA-dependent 0 0 4627 GO:0006356 regulation of transcription from RNA polymerase I promoter 0 0 4628 GO:0006357 regulation of transcription from RNA polymerase II promoter 0 0 4629 GO:0006358 regulation of global transcription from RNA polymerase II promoter 0 0 4630 GO:0006359 regulation of transcription from RNA polymerase III promoter 0 0 4631 GO:0006360 transcription from RNA polymerase I promoter 0 0 4632 GO:0006361 transcription initiation from RNA polymerase I promoter 0 0 4633 GO:0006362 RNA elongation from RNA polymerase I promoter 0 0 4634 GO:0006363 transcription termination from RNA polymerase I promoter 0 0 4635 GO:0006364 rRNA processing 0 0 4636 GO:0006365 35S primary transcript processing 0 0 4637 GO:0006366 transcription from RNA polymerase II promoter 0 0 4638 GO:0006367 transcription initiation from RNA polymerase II promoter 0 0 4639 GO:0006368 RNA elongation from RNA polymerase II promoter 0 0 4640 GO:0006369 transcription termination from RNA polymerase II promoter 0 0 4641 GO:0006370 mRNA capping 0 0 4642 GO:0006371 mRNA splicing (obsolete GO:0006371) 1 0 4643 GO:0006372 lariat formation, 5'-splice site cleavage (obsolete GO:0006372) 1 0 4644 GO:0006373 3'-splice site cleavage, exon ligation (obsolete GO:0006373) 1 0 4645 GO:0006374 nuclear mRNA splicing via U2-type spliceosome 0 0 4646 GO:0006375 nuclear mRNA splicing via U12-type spliceosome 0 0 4647 GO:0006376 mRNA splice site selection 0 0 4648 GO:0006377 MATa1 (A1) pre-mRNA splicing (obsolete GO:0006377) 1 0 4649 GO:0006378 mRNA polyadenylylation 0 0 4650 GO:0006379 mRNA cleavage 0 0 4651 GO:0006380 poly-A binding (obsolete GO:0006380) 1 0 4652 GO:0006381 mRNA editing 0 0 4653 GO:0006382 adenosine to inosine editing 0 0 4654 GO:0006383 transcription from RNA polymerase III promoter 0 0 4655 GO:0006384 transcription initiation from RNA polymerase III promoter 0 0 4656 GO:0006385 RNA elongation from RNA polymerase III promoter 0 0 4657 GO:0006386 transcription termination from RNA polymerase III promoter 0 0 4658 GO:0006387 snRNA capping 0 0 4659 GO:0006388 tRNA splicing 0 0 4660 GO:0006389 tRNA-Y splicing (obsolete GO:0006389) 1 0 4661 GO:0006390 transcription from mitochondrial promoter 0 0 4662 GO:0006391 transcription initiation from mitochondrial promoter 0 0 4663 GO:0006392 RNA elongation from mitochondrial promoter 0 0 4664 GO:0006393 RNA transcription termination from mitochondrial promoter 0 0 4665 GO:0006396 RNA processing 0 0 4666 GO:0006397 mRNA processing 0 0 4667 GO:0006398 histone mRNA 3'-end processing 0 0 4668 GO:0006399 tRNA metabolism 0 0 4669 GO:0006400 tRNA modification 0 0 4670 GO:0006401 RNA catabolism 0 0 4671 GO:0006402 mRNA catabolism 0 0 4672 GO:0006403 RNA localization 0 0 4673 GO:0006404 RNA import into nucleus 0 0 4674 GO:0006405 RNA export from nucleus 0 0 4675 GO:0006406 mRNA export from nucleus 0 0 4676 GO:0006407 rRNA export from nucleus 0 0 4677 GO:0006408 snRNA export from nucleus 0 0 4678 GO:0006409 tRNA export from nucleus 0 0 4679 GO:0006410 transcription, RNA-dependent 0 0 4680 GO:0006412 protein biosynthesis 0 0 4681 GO:0006413 translational initiation 0 0 4682 GO:0006414 translational elongation 0 0 4683 GO:0006415 translational termination 0 0 4684 GO:0006417 regulation of protein biosynthesis 0 0 4685 GO:0006418 tRNA aminoacylation for protein translation 0 0 4686 GO:0006419 alanyl-tRNA aminoacylation 0 0 4687 GO:0006420 arginyl-tRNA aminoacylation 0 0 4688 GO:0006421 asparaginyl-tRNA aminoacylation 0 0 4689 GO:0006422 aspartyl-tRNA aminoacylation 0 0 4690 GO:0006423 cysteinyl-tRNA aminoacylation 0 0 4691 GO:0006424 glutamyl-tRNA aminoacylation 0 0 4692 GO:0006425 glutaminyl-tRNA aminoacylation 0 0 4693 GO:0006426 glycyl-tRNA aminoacylation 0 0 4694 GO:0006427 histidyl-tRNA aminoacylation 0 0 4695 GO:0006428 isoleucyl-tRNA aminoacylation 0 0 4696 GO:0006429 leucyl-tRNA aminoacylation 0 0 4697 GO:0006430 lysyl-tRNA aminoacylation 0 0 4698 GO:0006431 methionyl-tRNA aminoacylation 0 0 4699 GO:0006432 phenylalanyl-tRNA aminoacylation 0 0 4700 GO:0006433 prolyl-tRNA aminoacylation 0 0 4701 GO:0006434 seryl-tRNA aminoacylation 0 0 4702 GO:0006435 threonyl-tRNA aminoacylation 0 0 4703 GO:0006436 tryptophanyl-tRNA aminoacylation 0 0 4704 GO:0006437 tyrosyl-tRNA aminoacylation 0 0 4705 GO:0006438 valyl-tRNA aminoacylation 0 0 4706 GO:0006439 aminoacyl-tRNA hydrolase reaction (obsolete GO:0006439) 1 0 4707 GO:0006441 binding to mRNA cap (obsolete GO:0006441) 1 0 4708 GO:0006445 regulation of translation 0 0 4709 GO:0006446 regulation of translational initiation 0 0 4710 GO:0006447 regulation of translational initiation by iron 0 0 4711 GO:0006448 regulation of translational elongation 0 0 4712 GO:0006449 regulation of translational termination 0 0 4713 GO:0006450 regulation of translational fidelity 0 0 4714 GO:0006451 translational readthrough 0 0 4715 GO:0006452 translational frameshifting 0 0 4716 GO:0006457 protein folding 0 0 4717 GO:0006458 'de novo' protein folding 0 0 4718 GO:0006459 binding unfolded ER proteins (obsolete GO:0006459) 1 0 4719 GO:0006460 peptidyl-prolyl isomerase B reaction (obsolete GO:0006460) 1 0 4720 GO:0006461 protein complex assembly 0 0 4721 GO:0006462 protein complex assembly, multichaperone pathway (obsolete GO:0006462) 1 0 4722 GO:0006463 steroid hormone receptor complex assembly 0 0 4723 GO:0006464 protein modification 0 0 4724 GO:0006465 signal peptide processing 0 0 4725 GO:0006466 protein disulfide-isomerase reaction (obsolete GO:0006466) 1 0 4726 GO:0006467 protein thiol-disulfide exchange 0 0 4727 GO:0006468 protein amino acid phosphorylation 0 0 4728 GO:0006469 negative regulation of protein kinase activity 0 0 4729 GO:0006470 protein amino acid dephosphorylation 0 0 4730 GO:0006471 protein amino acid ADP-ribosylation 0 0 4731 GO:0006473 protein amino acid acetylation 0 0 4732 GO:0006474 N-terminal protein amino acid acetylation 0 0 4733 GO:0006475 internal protein amino acid acetylation 0 0 4734 GO:0006476 protein amino acid deacetylation 0 0 4735 GO:0006477 protein amino acid sulfation 0 0 4736 GO:0006478 peptidyl-tyrosine sulfation 0 0 4737 GO:0006479 protein amino acid methylation 0 0 4738 GO:0006480 N-terminal protein amino acid methylation 0 0 4739 GO:0006481 C-terminal protein amino acid methylation 0 0 4740 GO:0006482 protein amino acid demethylation 0 0 4741 GO:0006483 peptidyl-aspartic acid/asparagine hydroxylation (obsolete GO:0006483) 1 0 4742 GO:0006484 protein cysteine-thiol oxidation (obsolete GO:0006484) 1 0 4743 GO:0006486 protein amino acid glycosylation 0 0 4744 GO:0006487 protein amino acid N-linked glycosylation 0 0 4745 GO:0006488 dolichol-linked oligosaccharide biosynthesis 0 0 4746 GO:0006489 dolichyl diphosphate biosynthesis 0 0 4747 GO:0006490 oligosaccharide-lipid intermediate assembly 0 0 4748 GO:0006491 N-glycan processing 0 0 4749 GO:0006493 protein amino acid O-linked glycosylation 0 0 4750 GO:0006494 protein amino acid terminal glycosylation 0 0 4751 GO:0006495 terminal O-glycosylation (obsolete GO:0006495) 1 0 4752 GO:0006496 protein amino acid terminal N-glycosylation 0 0 4753 GO:0006497 protein amino acid lipidation 0 0 4754 GO:0006498 N-terminal protein lipidation 0 0 4755 GO:0006499 N-terminal protein myristoylation 0 0 4756 GO:0006500 N-terminal protein palmitoylation 0 0 4757 GO:0006501 C-terminal protein lipidation 0 0 4758 GO:0006502 C-terminal protein prenylation (obsolete GO:0006502) 1 0 4759 GO:0006503 C-terminal protein farnesylation (obsolete GO:0006503) 1 0 4760 GO:0006504 C-terminal protein geranylgeranylation (obsolete GO:0006504) 1 0 4761 GO:0006505 GPI anchor metabolism 0 0 4762 GO:0006506 GPI anchor biosynthesis 0 0 4763 GO:0006507 GPI anchor release 0 0 4764 GO:0006508 proteolysis 0 0 4765 GO:0006509 membrane protein ectodomain proteolysis 0 0 4766 GO:0006510 ATP-dependent proteolysis 0 0 4767 GO:0006511 ubiquitin-dependent protein catabolism 0 0 4768 GO:0006512 ubiquitin cycle 0 0 4769 GO:0006513 protein monoubiquitination 0 0 4770 GO:0006515 misfolded or incompletely synthesized protein catabolism 0 0 4771 GO:0006516 glycoprotein catabolism 0 0 4772 GO:0006517 protein deglycosylation 0 0 4773 GO:0006518 peptide metabolism 0 0 4774 GO:0006519 amino acid and derivative metabolism 0 0 4775 GO:0006520 amino acid metabolism 0 0 4776 GO:0006521 regulation of amino acid metabolism 0 0 4777 GO:0006522 alanine metabolism 0 0 4778 GO:0006523 alanine biosynthesis 0 0 4779 GO:0006524 alanine catabolism 0 0 4780 GO:0006525 arginine metabolism 0 0 4781 GO:0006526 arginine biosynthesis 0 0 4782 GO:0006527 arginine catabolism 0 0 4783 GO:0006528 asparagine metabolism 0 0 4784 GO:0006529 asparagine biosynthesis 0 0 4785 GO:0006530 asparagine catabolism 0 0 4786 GO:0006531 aspartate metabolism 0 0 4787 GO:0006532 aspartate biosynthesis 0 0 4788 GO:0006533 aspartate catabolism 0 0 4789 GO:0006534 cysteine metabolism 0 0 4790 GO:0006535 cysteine biosynthesis from serine 0 0 4791 GO:0006536 glutamate metabolism 0 0 4792 GO:0006537 glutamate biosynthesis 0 0 4793 GO:0006538 glutamate catabolism 0 0 4794 GO:0006539 glutamate catabolism via 2-oxoglutarate 0 0 4795 GO:0006540 glutamate decarboxylation to succinate 0 0 4796 GO:0006541 glutamine metabolism 0 0 4797 GO:0006542 glutamine biosynthesis 0 0 4798 GO:0006543 glutamine catabolism 0 0 4799 GO:0006544 glycine metabolism 0 0 4800 GO:0006545 glycine biosynthesis 0 0 4801 GO:0006546 glycine catabolism 0 0 4802 GO:0006547 histidine metabolism 0 0 4803 GO:0006548 histidine catabolism 0 0 4804 GO:0006549 isoleucine metabolism 0 0 4805 GO:0006550 isoleucine catabolism 0 0 4806 GO:0006551 leucine metabolism 0 0 4807 GO:0006552 leucine catabolism 0 0 4808 GO:0006553 lysine metabolism 0 0 4809 GO:0006554 lysine catabolism 0 0 4810 GO:0006555 methionine metabolism 0 0 4811 GO:0006556 S-adenosylmethionine biosynthesis 0 0 4812 GO:0006557 S-adenosylmethioninamine biosynthesis 0 0 4813 GO:0006558 L-phenylalanine metabolism 0 0 4814 GO:0006559 L-phenylalanine catabolism 0 0 4815 GO:0006560 proline metabolism 0 0 4816 GO:0006561 proline biosynthesis 0 0 4817 GO:0006562 proline catabolism 0 0 4818 GO:0006563 L-serine metabolism 0 0 4819 GO:0006564 L-serine biosynthesis 0 0 4820 GO:0006565 L-serine catabolism 0 0 4821 GO:0006566 threonine metabolism 0 0 4822 GO:0006567 threonine catabolism 0 0 4823 GO:0006568 tryptophan metabolism 0 0 4824 GO:0006569 tryptophan catabolism 0 0 4825 GO:0006570 tyrosine metabolism 0 0 4826 GO:0006571 tyrosine biosynthesis 0 0 4827 GO:0006572 tyrosine catabolism 0 0 4828 GO:0006573 valine metabolism 0 0 4829 GO:0006574 valine catabolism 0 0 4830 GO:0006575 amino acid derivative metabolism 0 0 4831 GO:0006576 biogenic amine metabolism 0 0 4832 GO:0006577 betaine metabolism 0 0 4833 GO:0006578 betaine biosynthesis 0 0 4834 GO:0006579 betaine catabolism 0 0 4835 GO:0006580 ethanolamine metabolism 0 0 4836 GO:0006581 acetylcholine catabolism 0 0 4837 GO:0006582 melanin metabolism 0 0 4838 GO:0006583 melanin biosynthesis from tyrosine 0 0 4839 GO:0006584 catecholamine metabolism 0 0 4840 GO:0006585 dopamine biosynthesis from tyrosine 0 0 4841 GO:0006586 indolalkylamine metabolism 0 0 4842 GO:0006587 serotonin biosynthesis from tryptophan 0 0 4843 GO:0006588 tryptophan hydroxylase activation 0 0 4844 GO:0006589 octopamine biosynthesis 0 0 4845 GO:0006590 thyroid hormone generation 0 0 4846 GO:0006591 ornithine metabolism 0 0 4847 GO:0006592 ornithine biosynthesis 0 0 4848 GO:0006593 ornithine catabolism 0 0 4849 GO:0006595 polyamine metabolism 0 0 4850 GO:0006596 polyamine biosynthesis 0 0 4851 GO:0006597 spermine biosynthesis 0 0 4852 GO:0006598 polyamine catabolism 0 0 4853 GO:0006599 phosphagen metabolism 0 0 4854 GO:0006600 creatine metabolism 0 0 4855 GO:0006601 creatine biosynthesis 0 0 4856 GO:0006602 creatinine catabolism 0 0 4857 GO:0006603 phosphocreatine metabolism 0 0 4858 GO:0006604 phosphoarginine metabolism 0 0 4859 GO:0006605 protein targeting 0 0 4860 GO:0006606 protein import into nucleus 0 0 4861 GO:0006607 NLS-bearing substrate import into nucleus 0 0 4862 GO:0006608 snRNP protein import into nucleus 0 0 4863 GO:0006609 mRNA-binding (hnRNP) protein import into nucleus 0 0 4864 GO:0006610 ribosomal protein import into nucleus 0 0 4865 GO:0006611 protein export from nucleus 0 0 4866 GO:0006612 protein targeting to membrane 0 0 4867 GO:0006613 cotranslational protein targeting to membrane 0 0 4868 GO:0006614 SRP-dependent cotranslational protein targeting to membrane 0 0 4869 GO:0006615 SRP-dependent cotranslational protein targeting to membrane, docking 0 0 4870 GO:0006616 SRP-dependent cotranslational protein targeting to membrane, translocation 0 0 4871 GO:0006617 SRP-dependent cotranslational protein targeting to membrane, signal sequence recognition 0 0 4872 GO:0006618 SRP-dependent cotranslational protein targeting to membrane, signal sequence processing 0 0 4873 GO:0006619 SRP-independent cotranslational protein-membrane targeting (obsolete GO:0006619) 1 0 4874 GO:0006620 posttranslational protein targeting to membrane 0 0 4875 GO:0006621 protein retention in ER 0 0 4876 GO:0006622 protein targeting to lysosome 0 0 4877 GO:0006623 protein targeting to vacuole 0 0 4878 GO:0006624 vacuolar protein processing or maturation 0 0 4879 GO:0006625 protein targeting to peroxisome 0 0 4880 GO:0006626 protein targeting to mitochondrion 0 0 4881 GO:0006627 mitochondrial protein processing 0 0 4882 GO:0006628 mitochondrial translocation (obsolete GO:0006628) 1 0 4883 GO:0006629 lipid metabolism 0 0 4884 GO:0006630 lipid binding (obsolete GO:0006630) 1 0 4885 GO:0006631 fatty acid metabolism 0 0 4886 GO:0006633 fatty acid biosynthesis 0 0 4887 GO:0006634 hexadecanal biosynthesis 0 0 4888 GO:0006635 fatty acid beta-oxidation 0 0 4889 GO:0006636 fatty acid desaturation 0 0 4890 GO:0006637 acyl-CoA metabolism 0 0 4891 GO:0006638 neutral lipid metabolism 0 0 4892 GO:0006639 acylglycerol metabolism 0 0 4893 GO:0006640 monoacylglycerol biosynthesis 0 0 4894 GO:0006641 triacylglycerol metabolism 0 0 4895 GO:0006642 triacylglycerol mobilization 0 0 4896 GO:0006643 membrane lipid metabolism 0 0 4897 GO:0006644 phospholipid metabolism 0 0 4898 GO:0006646 phosphatidylethanolamine biosynthesis 0 0 4899 GO:0006647 phosphatidyl-N-monomethylethanolamine biosynthesis 0 0 4900 GO:0006648 dihydrosphingosine-1-P pathway 0 0 4901 GO:0006649 phospholipid transfer to membrane 0 0 4902 GO:0006650 glycerophospholipid metabolism 0 0 4903 GO:0006651 diacylglycerol biosynthesis 0 0 6726 GO:0008955 peptidoglycan glycosyltransferase activity 0 0 6727 GO:0008956 peptidyl-dipeptidase Dcp activity 0 0 6728 GO:0008957 phenylacetaldehyde dehydrogenase activity 0 0 6729 GO:0008959 phosphate acetyltransferase activity 0 0 6730 GO:0008960 phosphatidylglycerol-membrane-oligosaccharide glycerophosphotransferase activity 0 0 6731 GO:0008961 phosphatidylglycerol-prolipoprotein diacylglyceryl transferase activity 0 0 6732 GO:0008962 phosphatidylglycerophosphatase activity 0 0 6733 GO:0008963 phospho-N-acetylmuramoyl-pentapeptide-transferase activity 0 0 6734 GO:0008964 phosphoenolpyruvate carboxylase activity 0 0 6735 GO:0008965 phosphoenolpyruvate-protein phosphotransferase activity 0 0 6736 GO:0008966 phosphoglucosamine mutase activity 0 0 6737 GO:0008967 phosphoglycolate phosphatase activity 0 0 6738 GO:0008968 phosphoheptose isomerase activity 0 0 6739 GO:0008969 phosphohistidine phosphatase activity 0 0 6740 GO:0008970 phospholipase A1 activity 0 0 6741 GO:0008972 phosphomethylpyrimidine kinase activity 0 0 6742 GO:0008973 phosphopentomutase activity 0 0 6743 GO:0008974 phosphoribulokinase activity 0 0 6744 GO:0008975 pitrilysin activity 0 0 6745 GO:0008976 polyphosphate kinase activity 0 0 6746 GO:0008977 prephenate dehydrogenase activity 0 0 6747 GO:0008978 prepilin peptidase activity 0 0 6748 GO:0008979 prophage integrase activity 0 0 6749 GO:0008980 propionate kinase activity 0 0 6750 GO:0008981 protease IV activity 0 0 6751 GO:0008982 protein-N(PI)-phosphohistidine-sugar phosphotransferase activity 0 0 6752 GO:0008983 protein-glutamate O-methyltransferase activity 0 0 6753 GO:0008984 protein-glutamate methylesterase activity 0 0 6754 GO:0008985 pyruvate dehydrogenase (cytochrome) activity 0 0 6755 GO:0008986 pyruvate, water dikinase activity 0 0 6756 GO:0008987 quinolinate synthetase A activity 0 0 6757 GO:0008988 rRNA (adenine-N6-)-methyltransferase activity 0 0 6758 GO:0008989 rRNA (guanine-N1-)-methyltransferase activity 0 0 6759 GO:0008990 rRNA (guanine-N2-)-methyltransferase activity 0 0 6760 GO:0008991 serine-type signal peptidase activity 0 0 6761 GO:0008992 repressor LexA activity 0 0 6762 GO:0008993 rhamnulokinase activity 0 0 6763 GO:0008994 rhamnulose-1-phosphate aldolase activity 0 0 6764 GO:0008995 ribonuclease E activity 0 0 6765 GO:0008996 ribonuclease G activity 0 0 6766 GO:0008997 ribonuclease R activity 0 0 6767 GO:0008998 ribonucleoside-triphosphate reductase activity 0 0 6768 GO:0008999 ribosomal-protein-alanine N-acetyltransferase activity 0 0 6769 GO:0009000 selenocysteine lyase activity 0 0 6770 GO:0009001 serine O-acetyltransferase activity 0 0 6771 GO:0009002 serine-type D-Ala-D-Ala carboxypeptidase activity 0 0 6772 GO:0009003 signal peptidase activity 0 0 6773 GO:0009004 signal peptidase I activity 0 0 6774 GO:0009005 signal peptidase II activity 0 0 6775 GO:0009006 siroheme synthase activity (obsolete GO:0009006) 1 0 6776 GO:0009007 site-specific DNA-methyltransferase (adenine-specific) activity 0 0 6777 GO:0009008 DNA-methyltransferase activity 0 0 6778 GO:0009009 site-specific recombinase activity 0 0 6779 GO:0009010 sorbitol-6-phosphate 2-dehydrogenase activity 0 0 6780 GO:0009011 starch synthase activity 0 0 6781 GO:0009012 streptomycin 3''-adenylyltransferase activity 0 0 6782 GO:0009013 succinate-semialdehyde dehydrogenase [NAD(P)+] activity 0 0 6783 GO:0009014 succinyl-diaminopimelate desuccinylase activity 0 0 6784 GO:0009015 succinylarginine dihydrolase activity 0 0 6785 GO:0009016 succinyldiaminopimelate transaminase activity 0 0 6786 GO:0009017 succinylglutamate desuccinylase activity 0 0 6787 GO:0009018 sucrose phosphorylase activity 0 0 6788 GO:0009019 tRNA (guanine-N1-)-methyltransferase activity 0 0 6789 GO:0009020 tRNA (guanosine-2'-O-)-methyltransferase activity 0 0 6790 GO:0009021 tRNA (uracil-5-)-methyltransferase activity 0 0 6791 GO:0009022 tRNA nucleotidyltransferase activity 0 0 6792 GO:0009023 tRNA sulfurtransferase (obsolete GO:0009023) 1 0 6793 GO:0009024 tagatose-6-phosphate kinase activity 0 0 6794 GO:0009025 tagatose-bisphosphate aldolase activity 0 0 6795 GO:0009026 tagaturonate reductase activity 0 0 6796 GO:0009027 tartrate dehydrogenase activity 0 0 6797 GO:0009028 tartronate-semialdehyde synthase activity 0 0 6798 GO:0009029 tetraacyldisaccharide 4'-kinase activity 0 0 6799 GO:0009030 thiamin phosphate kinase activity 0 0 6800 GO:0009032 thymidine phosphorylase activity 0 0 6801 GO:0009033 trimethylamine-N-oxide reductase activity 0 0 6802 GO:0009034 tryptophanase activity 0 0 6803 GO:0009035 Type I site-specific deoxyribonuclease activity 0 0 6804 GO:0009036 Type II site-specific deoxyribonuclease activity 0 0 6805 GO:0009037 tyrosine-based site-specific recombinase activity 0 0 6806 GO:0009038 undecaprenol kinase activity 0 0 6807 GO:0009039 urease activity 0 0 6808 GO:0009040 ureidoglycolate dehydrogenase activity 0 0 6809 GO:0009041 uridylate kinase activity 0 0 6810 GO:0009042 valine-pyruvate transaminase activity 0 0 6811 GO:0009044 xylan 1,4-beta-xylosidase activity 0 0 6812 GO:0009045 xylose isomerase activity 0 0 6813 GO:0009046 zinc D-Ala-D-Ala carboxypeptidase activity 0 0 6814 GO:0009047 dosage compensation, by hyperactivation of X chromosome 0 0 6815 GO:0009048 dosage compensation, by inactivation of X chromosome 0 0 6816 GO:0009049 aspartic-type signal peptidase activity 0 0 6817 GO:0009050 glycopeptide catabolism 0 0 6818 GO:0009051 pentose-phosphate shunt, oxidative branch 0 0 6819 GO:0009052 pentose-phosphate shunt, non-oxidative branch 0 0 6820 GO:0009053 electron donor activity 0 0 6821 GO:0009054 electron acceptor activity 0 0 6822 GO:0009055 electron carrier activity 0 0 6823 GO:0009056 catabolism 0 0 6824 GO:0009057 macromolecule catabolism 0 0 6825 GO:0009058 biosynthesis 0 0 6826 GO:0009059 macromolecule biosynthesis 0 0 6827 GO:0009060 aerobic respiration 0 0 6828 GO:0009061 anaerobic respiration 0 0 6829 GO:0009062 fatty acid catabolism 0 0 6830 GO:0009063 amino acid catabolism 0 0 6831 GO:0009064 glutamine family amino acid metabolism 0 0 6832 GO:0009065 glutamine family amino acid catabolism 0 0 6833 GO:0009066 aspartate family amino acid metabolism 0 0 6834 GO:0009067 aspartate family amino acid biosynthesis 0 0 6835 GO:0009068 aspartate family amino acid catabolism 0 0 6836 GO:0009069 serine family amino acid metabolism 0 0 6837 GO:0009070 serine family amino acid biosynthesis 0 0 6838 GO:0009071 serine family amino acid catabolism 0 0 6839 GO:0009072 aromatic amino acid family metabolism 0 0 6840 GO:0009073 aromatic amino acid family biosynthesis 0 0 6841 GO:0009074 aromatic amino acid family catabolism 0 0 6842 GO:0009075 histidine family amino acid metabolism 0 0 6843 GO:0009076 histidine family amino acid biosynthesis 0 0 6844 GO:0009077 histidine family amino acid catabolism 0 0 6845 GO:0009078 pyruvate family amino acid metabolism 0 0 6846 GO:0009079 pyruvate family amino acid biosynthesis 0 0 6847 GO:0009080 pyruvate family amino acid catabolism 0 0 6848 GO:0009081 branched chain family amino acid metabolism 0 0 6849 GO:0009082 branched chain family amino acid biosynthesis 0 0 6850 GO:0009083 branched chain family amino acid catabolism 0 0 6851 GO:0009084 glutamine family amino acid biosynthesis 0 0 6852 GO:0009085 lysine biosynthesis 0 0 6853 GO:0009086 methionine biosynthesis 0 0 6854 GO:0009087 methionine catabolism 0 0 6855 GO:0009088 threonine biosynthesis 0 0 6856 GO:0009089 lysine biosynthesis via diaminopimelate 0 0 6857 GO:0009090 homoserine biosynthesis 0 0 6858 GO:0009091 homoserine catabolism 0 0 6859 GO:0009092 homoserine metabolism 0 0 6860 GO:0009093 cysteine catabolism 0 0 6861 GO:0009094 L-phenylalanine biosynthesis 0 0 6862 GO:0009095 aromatic amino acid family biosynthesis, prephenate pathway 0 0 6863 GO:0009096 aromatic amino acid family biosynthesis, anthranilate pathway 0 0 6864 GO:0009097 isoleucine biosynthesis 0 0 6865 GO:0009098 leucine biosynthesis 0 0 6866 GO:0009099 valine biosynthesis 0 0 6867 GO:0009100 glycoprotein metabolism 0 0 6868 GO:0009101 glycoprotein biosynthesis 0 0 6869 GO:0009102 biotin biosynthesis 0 0 6870 GO:0009103 lipopolysaccharide biosynthesis 0 0 6871 GO:0009104 lipopolysaccharide catabolism 0 0 6872 GO:0009105 lipoic acid biosynthesis 0 0 6873 GO:0009106 lipoate metabolism 0 0 6874 GO:0009107 lipoate biosynthesis 0 0 6875 GO:0009108 coenzyme biosynthesis 0 0 6876 GO:0009109 coenzyme catabolism 0 0 6877 GO:0009110 vitamin biosynthesis 0 0 6878 GO:0009111 vitamin catabolism 0 0 6879 GO:0009112 nucleobase metabolism 0 0 6880 GO:0009113 purine base biosynthesis 0 0 6881 GO:0009114 hypoxanthine catabolism 0 0 6882 GO:0009115 xanthine catabolism 0 0 6883 GO:0009116 nucleoside metabolism 0 0 6884 GO:0009117 nucleotide metabolism 0 0 6885 GO:0009118 regulation of nucleoside metabolism 0 0 6886 GO:0009119 ribonucleoside metabolism 0 0 6887 GO:0009120 deoxyribonucleoside metabolism 0 0 6888 GO:0009123 nucleoside monophosphate metabolism 0 0 6889 GO:0009124 nucleoside monophosphate biosynthesis 0 0 6890 GO:0009125 nucleoside monophosphate catabolism 0 0 6891 GO:0009126 purine nucleoside monophosphate metabolism 0 0 6892 GO:0009127 purine nucleoside monophosphate biosynthesis 0 0 6893 GO:0009128 purine nucleoside monophosphate catabolism 0 0 6894 GO:0009129 pyrimidine nucleoside monophosphate metabolism 0 0 6895 GO:0009130 pyrimidine nucleoside monophosphate biosynthesis 0 0 6896 GO:0009131 pyrimidine nucleoside monophosphate catabolism 0 0 6897 GO:0009132 nucleoside diphosphate metabolism 0 0 6898 GO:0009133 nucleoside diphosphate biosynthesis 0 0 6899 GO:0009134 nucleoside diphosphate catabolism 0 0 6900 GO:0009135 purine nucleoside diphosphate metabolism 0 0 6901 GO:0009136 purine nucleoside diphosphate biosynthesis 0 0 6902 GO:0009137 purine nucleoside diphosphate catabolism 0 0 6903 GO:0009138 pyrimidine nucleoside diphosphate metabolism 0 0 6904 GO:0009139 pyrimidine nucleoside diphosphate biosynthesis 0 0 6905 GO:0009140 pyrimidine nucleoside diphosphate catabolism 0 0 6906 GO:0009141 nucleoside triphosphate metabolism 0 0 6907 GO:0009142 nucleoside triphosphate biosynthesis 0 0 6908 GO:0009143 nucleoside triphosphate catabolism 0 0 6909 GO:0009144 purine nucleoside triphosphate metabolism 0 0 6910 GO:0009145 purine nucleoside triphosphate biosynthesis 0 0 6911 GO:0009146 purine nucleoside triphosphate catabolism 0 0 6912 GO:0009147 pyrimidine nucleoside triphosphate metabolism 0 0 6913 GO:0009148 pyrimidine nucleoside triphosphate biosynthesis 0 0 6914 GO:0009149 pyrimidine nucleoside triphosphate catabolism 0 0 6915 GO:0009150 purine ribonucleotide metabolism 0 0 6916 GO:0009151 purine deoxyribonucleotide metabolism 0 0 6917 GO:0009152 purine ribonucleotide biosynthesis 0 0 6918 GO:0009153 purine deoxyribonucleotide biosynthesis 0 0 6919 GO:0009154 purine ribonucleotide catabolism 0 0 6920 GO:0009155 purine deoxyribonucleotide catabolism 0 0 6921 GO:0009156 ribonucleoside monophosphate biosynthesis 0 0 6922 GO:0009157 deoxyribonucleoside monophosphate biosynthesis 0 0 6923 GO:0009158 ribonucleoside monophosphate catabolism 0 0 6924 GO:0009159 deoxyribonucleoside monophosphate catabolism 0 0 6925 GO:0009161 ribonucleoside monophosphate metabolism 0 0 6926 GO:0009162 deoxyribonucleoside monophosphate metabolism 0 0 6927 GO:0009163 nucleoside biosynthesis 0 0 6928 GO:0009164 nucleoside catabolism 0 0 6929 GO:0009165 nucleotide biosynthesis 0 0 6930 GO:0009166 nucleotide catabolism 0 0 6931 GO:0009167 purine ribonucleoside monophosphate metabolism 0 0 6932 GO:0009168 purine ribonucleoside monophosphate biosynthesis 0 0 6933 GO:0009169 purine ribonucleoside monophosphate catabolism 0 0 6934 GO:0009170 purine deoxyribonucleoside monophosphate metabolism 0 0 6935 GO:0009171 purine deoxyribonucleoside monophosphate biosynthesis 0 0 6936 GO:0009172 purine deoxyribonucleoside monophosphate catabolism 0 0 6937 GO:0009173 pyrimidine ribonucleoside monophosphate metabolism 0 0 6938 GO:0009174 pyrimidine ribonucleoside monophosphate biosynthesis 0 0 6939 GO:0009175 pyrimidine ribonucleoside monophosphate catabolism 0 0 6940 GO:0009176 pyrimidine deoxyribonucleoside monophosphate metabolism 0 0 6941 GO:0009177 pyrimidine deoxyribonucleoside monophosphate biosynthesis 0 0 6942 GO:0009178 pyrimidine deoxyribonucleoside monophosphate catabolism 0 0 6943 GO:0009179 purine ribonucleoside diphosphate metabolism 0 0 6944 GO:0009180 purine ribonucleoside diphosphate biosynthesis 0 0 6945 GO:0009181 purine ribonucleoside diphosphate catabolism 0 0 6946 GO:0009182 purine deoxyribonucleoside diphosphate metabolism 0 0 6947 GO:0009183 purine deoxyribonucleoside diphosphate biosynthesis 0 0 6948 GO:0009184 purine deoxyribonucleoside diphosphate catabolism 0 0 6949 GO:0009185 ribonucleoside diphosphate metabolism 0 0 6950 GO:0009186 deoxyribonucleoside diphosphate metabolism 0 0 6951 GO:0009187 cyclic nucleotide metabolism 0 0 6952 GO:0009188 ribonucleoside diphosphate biosynthesis 0 0 6953 GO:0009189 deoxyribonucleoside diphosphate biosynthesis 0 0 6954 GO:0009190 cyclic nucleotide biosynthesis 0 0 6955 GO:0009191 ribonucleoside diphosphate catabolism 0 0 6956 GO:0009192 deoxyribonucleoside diphosphate catabolism 0 0 6957 GO:0009193 pyrimidine ribonucleoside diphosphate metabolism 0 0 6958 GO:0009194 pyrimidine ribonucleoside diphosphate biosynthesis 0 0 6959 GO:0009195 pyrimidine ribonucleoside diphosphate catabolism 0 0 6960 GO:0009196 pyrimidine deoxyribonucleoside diphosphate metabolism 0 0 6961 GO:0009197 pyrimidine deoxyribonucleoside diphosphate biosynthesis 0 0 6962 GO:0009198 pyrimidine deoxyribonucleoside diphosphate catabolism 0 0 6963 GO:0009199 ribonucleoside triphosphate metabolism 0 0 6964 GO:0009200 deoxyribonucleoside triphosphate metabolism 0 0 6965 GO:0009201 ribonucleoside triphosphate biosynthesis 0 0 6966 GO:0009202 deoxyribonucleoside triphosphate biosynthesis 0 0 6967 GO:0009203 ribonucleoside triphosphate catabolism 0 0 6968 GO:0009204 deoxyribonucleoside triphosphate catabolism 0 0 6969 GO:0009205 purine ribonucleoside triphosphate metabolism 0 0 6970 GO:0009206 purine ribonucleoside triphosphate biosynthesis 0 0 6971 GO:0009207 purine ribonucleoside triphosphate catabolism 0 0 6972 GO:0009208 pyrimidine ribonucleoside triphosphate metabolism 0 0 6973 GO:0009209 pyrimidine ribonucleoside triphosphate biosynthesis 0 0 6974 GO:0009210 pyrimidine ribonucleoside triphosphate catabolism 0 0 6975 GO:0009211 pyrimidine deoxyribonucleoside triphosphate metabolism 0 0 6976 GO:0009212 pyrimidine deoxyribonucleoside triphosphate biosynthesis 0 0 6977 GO:0009213 pyrimidine deoxyribonucleoside triphosphate catabolism 0 0 6978 GO:0009214 cyclic nucleotide catabolism 0 0 6979 GO:0009215 purine deoxyribonucleoside triphosphate metabolism 0 0 6980 GO:0009216 purine deoxyribonucleoside triphosphate biosynthesis 0 0 6981 GO:0009217 purine deoxyribonucleoside triphosphate catabolism 0 0 6982 GO:0009218 pyrimidine ribonucleotide metabolism 0 0 6983 GO:0009219 pyrimidine deoxyribonucleotide metabolism 0 0 6984 GO:0009220 pyrimidine ribonucleotide biosynthesis 0 0 6985 GO:0009221 pyrimidine deoxyribonucleotide biosynthesis 0 0 6986 GO:0009222 pyrimidine ribonucleotide catabolism 0 0 6987 GO:0009223 pyrimidine deoxyribonucleotide catabolism 0 0 6988 GO:0009224 CMP biosynthesis 0 0 6989 GO:0009225 nucleotide-sugar metabolism 0 0 6990 GO:0009226 nucleotide-sugar biosynthesis 0 0 6991 GO:0009227 nucleotide-sugar catabolism 0 0 6992 GO:0009228 thiamin biosynthesis 0 0 6993 GO:0009229 thiamin diphosphate biosynthesis 0 0 6994 GO:0009230 thiamin catabolism 0 0 6995 GO:0009231 riboflavin biosynthesis 0 0 6996 GO:0009232 riboflavin catabolism 0 0 6997 GO:0009233 menaquinone metabolism 0 0 6998 GO:0009234 menaquinone biosynthesis 0 0 6999 GO:0009235 cobalamin metabolism 0 0 7000 GO:0009236 cobalamin biosynthesis 0 0 7001 GO:0009237 siderophore metabolism 0 0 7002 GO:0009238 enterobactin metabolism 0 0 7003 GO:0009239 enterobactin biosynthesis 0 0 7004 GO:0009240 isopentenyl diphosphate biosynthesis 0 0 7005 GO:0009241 polyisoprenoid biosynthesis 0 0 7006 GO:0009242 colanic acid biosynthesis 0 0 7007 GO:0009243 O antigen biosynthesis 0 0 7008 GO:0009244 lipopolysaccharide core region biosynthesis 0 0 7009 GO:0009245 lipid A biosynthesis 0 0 7010 GO:0009246 enterobacterial common antigen biosynthesis 0 0 7011 GO:0009247 glycolipid biosynthesis 0 0 7012 GO:0009248 K antigen biosynthesis 0 0 7013 GO:0009249 protein-lipoylation 0 0 7014 GO:0009250 glucan biosynthesis 0 0 7015 GO:0009251 glucan catabolism 0 0 7016 GO:0009252 peptidoglycan biosynthesis 0 0 7017 GO:0009253 peptidoglycan catabolism 0 0 7018 GO:0009254 peptidoglycan turnover 0 0 7019 GO:0009255 Entner-Doudoroff pathway 0 0 7020 GO:0009256 10-formyltetrahydrofolate metabolism 0 0 7021 GO:0009257 10-formyltetrahydrofolate biosynthesis 0 0 7022 GO:0009258 10-formyltetrahydrofolate catabolism 0 0 7023 GO:0009259 ribonucleotide metabolism 0 0 7024 GO:0009260 ribonucleotide biosynthesis 0 0 7025 GO:0009261 ribonucleotide catabolism 0 0 7026 GO:0009262 deoxyribonucleotide metabolism 0 0 7027 GO:0009263 deoxyribonucleotide biosynthesis 0 0 7028 GO:0009264 deoxyribonucleotide catabolism 0 0 7029 GO:0009265 2'-deoxyribonucleotide biosynthesis 0 0 7030 GO:0009266 response to temperature stimulus 0 0 7031 GO:0009267 cellular response to starvation 0 0 7032 GO:0009268 response to pH 0 0 7033 GO:0009269 response to desiccation 0 0 7034 GO:0009270 response to humidity 0 0 7035 GO:0009271 phage shock 0 0 7036 GO:0009272 cell wall biosynthesis (sensu Fungi) 0 0 7037 GO:0009273 cell wall biosynthesis (sensu Bacteria) 0 0 7038 GO:0009274 cell wall (sensu Bacteria) 0 0 7039 GO:0009275 cell wall (sensu Firmicutes) 0 0 7040 GO:0009276 cell wall (sensu Proteobacteria) 0 0 7041 GO:0009277 cell wall (sensu Fungi) 0 0 7042 GO:0009278 murein sacculus (obsolete GO:0009278) 1 0 7043 GO:0009279 outer membrane (sensu Proteobacteria) 0 0 7044 GO:0009280 cell wall inner membrane (obsolete GO:0009280) 1 0 7045 GO:0009281 cytosolic ribosome (sensu Bacteria) 0 0 7046 GO:0009282 cytosolic large ribosomal subunit (sensu Bacteria) 0 0 7047 GO:0009283 cytosolic small ribosomal subunit (sensu Bacteria) 0 0 7048 GO:0009288 flagellum (sensu Bacteria) 0 0 7049 GO:0009289 fimbrium 0 0 7050 GO:0009290 DNA import into cell during transformation 0 0 7051 GO:0009291 unidirectional conjugation 0 0 7052 GO:0009292 genetic transfer 0 0 7053 GO:0009293 transduction 0 0 7054 GO:0009294 DNA mediated transformation 0 0 7055 GO:0009295 nucleoid 0 0 7056 GO:0009296 flagellum biogenesis 0 0 7057 GO:0009297 pilus biogenesis 0 0 7058 GO:0009298 GDP-mannose biosynthesis 0 0 7059 GO:0009299 mRNA transcription 0 0 7060 GO:0009300 antisense RNA transcription 0 0 7061 GO:0009301 snRNA transcription 0 0 7062 GO:0009302 snoRNA transcription 0 0 7063 GO:0009303 rRNA transcription 0 0 7064 GO:0009304 tRNA transcription 0 0 7065 GO:0009305 protein amino acid biotinylation 0 0 7066 GO:0009306 protein secretion 0 0 7067 GO:0009307 DNA restriction-modification system 0 0 7068 GO:0009308 amine metabolism 0 0 7069 GO:0009309 amine biosynthesis 0 0 7070 GO:0009310 amine catabolism 0 0 7071 GO:0009311 oligosaccharide metabolism 0 0 7072 GO:0009312 oligosaccharide biosynthesis 0 0 7073 GO:0009313 oligosaccharide catabolism 0 0 7074 GO:0009314 response to radiation 0 0 7075 GO:0009315 drug resistance (obsolete GO:0009315) 1 0 7076 GO:0009316 3-isopropylmalate dehydratase complex 0 0 7077 GO:0009317 acetyl-CoA carboxylase complex 0 0 7078 GO:0009318 exodeoxyribonuclease VII complex 0 0 7079 GO:0009319 cytochrome o ubiquinol oxidase complex 0 0 7080 GO:0009320 phosphoribosylaminoimidazole carboxylase complex 0 0 7081 GO:0009321 alkyl hydroperoxide reductase complex 0 0 7082 GO:0009322 trimethylamine-N-oxide reductase complex 0 0 7083 GO:0009323 ribosomal-protein-alanine N-acetyltransferase complex 0 0 7084 GO:0009324 D-amino-acid dehydrogenase complex 0 0 7085 GO:0009325 nitrate reductase complex 0 0 7086 GO:0009326 formate dehydrogenase complex 0 0 7087 GO:0009327 NAD(P)+ transhydrogenase complex (AB-specific) 0 0 7088 GO:0009328 phenylalanine-tRNA ligase complex 0 0 7089 GO:0009329 acetate CoA-transferase complex 0 0 7090 GO:0009330 DNA topoisomerase complex (ATP-hydrolyzing) 0 0 7091 GO:0009331 glycerol-3-phosphate dehydrogenase complex 0 0 7092 GO:0009332 glutamate-tRNA ligase complex 0 0 7093 GO:0009333 cysteine synthase complex 0 0 7094 GO:0009334 3-phenylpropionate dioxygenase complex 0 0 7095 GO:0009335 holo-[acyl-carrier protein] synthase complex (obsolete GO:0009335) 1 0 7096 GO:0009336 sulfate adenylyltransferase complex (ATP) 0 0 7097 GO:0009337 sulfite reductase complex (NADPH) 0 0 7098 GO:0009338 exodeoxyribonuclease V complex 0 0 7099 GO:0009339 glycolate oxidase complex 0 0 7100 GO:0009340 DNA topoisomerase IV complex 0 0 7101 GO:0009341 beta-galactosidase complex 0 0 7102 GO:0009342 glutamate synthase complex (NADPH) 0 0 7103 GO:0009343 biotin carboxylase complex 0 0 7104 GO:0009344 nitrite reductase complex [NAD(P)H] 0 0 7105 GO:0009345 glycine-tRNA ligase complex 0 0 7106 GO:0009346 citrate lyase complex 0 0 7107 GO:0009347 aspartate carbamoyltransferase complex 0 0 7108 GO:0009348 ornithine carbamoyltransferase complex 0 0 7109 GO:0009349 riboflavin synthase complex 0 0 7110 GO:0009350 ethanolamine ammonia-lyase complex 0 0 7111 GO:0009351 dihydrolipoamide S-acyltransferase complex (obsolete GO:0009351) 1 0 7112 GO:0009352 dihydrolipoyl dehydrogenase complex (obsolete GO:0009352) 1 0 7113 GO:0009353 oxoglutarate dehydrogenase complex (sensu Eukaryota) 0 0 7114 GO:0009354 dihydrolipoamide S-succinyltransferase complex (obsolete GO:0009354) 1 0 7115 GO:0009355 DNA polymerase V complex 0 0 7116 GO:0009356 p-aminobenzoate synthetase complex 0 0 7117 GO:0009357 protein-N(PI)-phosphohistidine-sugar phosphotransferase complex 0 0 7118 GO:0009358 polyphosphate kinase complex 0 0 7119 GO:0009359 Type II site-specific deoxyribonuclease complex 0 0 7120 GO:0009360 DNA polymerase III complex 0 0 7121 GO:0009361 succinate-CoA ligase complex (ADP-forming) 0 0 7122 GO:0009365 protein histidine kinase complex 0 0 7123 GO:0009366 enterobactin synthetase complex 0 0 7124 GO:0009367 prepilin peptidase complex 0 0 7125 GO:0009368 endopeptidase Clp complex 0 0 7126 GO:0009369 quorum sensing signal generator activity 0 0 7127 GO:0009370 quorum sensing response regulator activity 0 0 7128 GO:0009371 positive regulation of transcription by pheromones 0 0 7129 GO:0009372 quorum sensing 0 0 7130 GO:0009373 regulation of transcription by pheromones 0 0 7131 GO:0009374 biotin binding 0 0 7132 GO:0009375 ferredoxin hydrogenase complex 0 0 7133 GO:0009376 HslUV protease complex 0 0 7134 GO:0009377 HslUV protease activity 0 0 7135 GO:0009378 Holliday junction helicase activity 0 0 7136 GO:0009379 Holliday junction helicase complex 0 0 7137 GO:0009380 excinuclease ABC complex 0 0 7138 GO:0009381 excinuclease ABC activity 0 0 7139 GO:0009382 imidazoleglycerol-phosphate synthase complex 0 0 7140 GO:0009383 rRNA (cytosine-C5-967)-methyltransferase activity 0 0 7141 GO:0009384 N-acylmannosamine kinase activity 0 0 7142 GO:0009385 N-acylmannosamine-6-phosphate 2-epimerase activity 0 0 7143 GO:0009386 translational attenuation 0 0 7144 GO:0009388 antisense RNA (obsolete GO:0009388) 1 0 7145 GO:0009389 dimethyl sulfoxide reductase activity 0 0 7146 GO:0009390 dimethyl sulfoxide reductase complex 0 0 7147 GO:0009391 ribonucleotide reductase activating enzyme activity 0 0 7148 GO:0009392 N-acetyl-anhydromuramoyl-L-alanine amidase activity 0 0 7149 GO:0009394 2'-deoxyribonucleotide metabolism 0 0 7150 GO:0009395 phospholipid catabolism 0 0 7151 GO:0009396 folic acid and derivative biosynthesis 0 0 7152 GO:0009397 folic acid and derivative catabolism 0 0 7153 GO:0009398 FMN biosynthesis 0 0 7154 GO:0009399 nitrogen fixation 0 0 7155 GO:0009400 receptor signaling protein serine/threonine phosphatase activity 0 0 7156 GO:0009401 phosphoenolpyruvate-dependent sugar phosphotransferase system 0 0 7157 GO:0009402 toxin resistance (obsolete GO:0009402) 1 0 7158 GO:0009403 toxin biosynthesis 0 0 7159 GO:0009404 toxin metabolism 0 0 7160 GO:0009405 pathogenesis 0 0 7161 GO:0009406 virulence (obsolete GO:0009406) 1 0 7162 GO:0009407 toxin catabolism 0 0 7163 GO:0009408 response to heat 0 0 7164 GO:0009409 response to cold 0 0 7165 GO:0009410 response to xenobiotic stimulus 0 0 7166 GO:0009411 response to UV 0 0 7167 GO:0009412 response to heavy metal (obsolete GO:0009412) 1 0 7168 GO:0009413 response to flooding 0 0 7169 GO:0009414 response to water deprivation 0 0 7170 GO:0009415 response to water 0 0 7171 GO:0009416 response to light stimulus 0 0 7172 GO:0009417 fimbrin (obsolete GO:0009417) 1 0 7173 GO:0009418 fimbrial shaft 0 0 7174 GO:0009419 fimbrial tip 0 0 7175 GO:0009420 flagellar filament (sensu Bacteria) 0 0 7176 GO:0009421 flagellar filament cap (sensu Bacteria) 0 0 7177 GO:0009422 flagellar hook-filament junction (sensu Bacteria) 0 0 7178 GO:0009423 chorismate biosynthesis 0 0 7179 GO:0009424 flagellar hook (sensu Bacteria) 0 0 7180 GO:0009425 flagellar basal body (sensu Bacteria) 0 0 7181 GO:0009426 flagellar basal body, distal rod (sensu Bacteria) 0 0 7182 GO:0009427 flagellar basal body, distal rod, L ring (sensu Bacteria) 0 0 7183 GO:0009428 flagellar basal body, distal rod, P ring (sensu Bacteria) 0 0 7184 GO:0009429 flagellar basal body, proximal rod (sensu Bacteria) 0 0 7185 GO:0009431 flagellar basal body, MS ring (sensu Bacteria) 0 0 7186 GO:0009432 SOS response 0 0 7187 GO:0009433 flagellar basal body, C ring (sensu Bacteria) 0 0 7188 GO:0009434 flagellum (sensu Eukaryota) 0 0 7189 GO:0009435 NAD biosynthesis 0 0 7190 GO:0009436 glyoxylate catabolism 0 0 7191 GO:0009437 carnitine metabolism 0 0 7192 GO:0009438 methylglyoxal metabolism 0 0 7193 GO:0009439 cyanate metabolism 0 0 7194 GO:0009440 cyanate catabolism 0 0 7195 GO:0009441 glycolate metabolism 0 0 7196 GO:0009442 allantoin assimilation pathway 0 0 7197 GO:0009443 pyridoxal 5'-phosphate salvage 0 0 7198 GO:0009444 pyruvate oxidation 0 0 7199 GO:0009445 putrescine metabolism 0 0 7200 GO:0009446 putrescine biosynthesis 0 0 7201 GO:0009447 putrescine catabolism 0 0 7202 GO:0009448 gamma-aminobutyric acid metabolism 0 0 7203 GO:0009449 gamma-aminobutyric acid biosynthesis 0 0 7204 GO:0009450 gamma-aminobutyric acid catabolism 0 0 7205 GO:0009451 RNA modification 0 0 7206 GO:0009452 RNA capping 0 0 7207 GO:0009453 energy taxis 0 0 7208 GO:0009454 aerotaxis 0 0 7209 GO:0009455 redox taxis 0 0 7210 GO:0009457 flavodoxin (obsolete GO:0009457) 1 0 7211 GO:0009458 cytochrome (obsolete GO:0009458) 1 0 7212 GO:0009459 cytochrome a (obsolete GO:0009459) 1 0 7213 GO:0009460 cytochrome b (obsolete GO:0009460) 1 0 7214 GO:0009461 cytochrome c (obsolete GO:0009461) 1 0 7215 GO:0009462 cytochrome d (obsolete GO:0009462) 1 0 7216 GO:0009463 cytochrome b/b6 (obsolete GO:0009463) 1 0 7217 GO:0009464 cytochrome b5 (obsolete GO:0009464) 1 0 7218 GO:0009465 soluble cytochrome b562 (obsolete GO:0009465) 1 0 7219 GO:0009466 class I cytochrome c (obsolete GO:0009466) 1 0 7220 GO:0009467 monoheme class I cytochrome c (obsolete GO:0009467) 1 0 7221 GO:0009468 diheme class I cytochrome c (obsolete GO:0009468) 1 0 7222 GO:0009469 class II cytochrome c (obsolete GO:0009469) 1 0 7223 GO:0009470 class IIa cytochrome c (obsolete GO:0009470) 1 0 7224 GO:0009471 class III cytochrome c (obsolete GO:0009471) 1 0 7225 GO:0009472 cytochrome c3 (tetraheme) (obsolete GO:0009472) 1 0 7226 GO:0009473 cytochrome c7 (triheme) (obsolete GO:0009473) 1 0 7227 GO:0009474 nonaheme cytochrome c (obsolete GO:0009474) 1 0 7228 GO:0009475 high-molecular-weight cytochrome c (hexadecaheme) (obsolete GO:0009475) 1 0 7229 GO:0009476 class IV cytochrome c (obsolete GO:0009476) 1 0 7230 GO:0009477 cytochrome c1 (obsolete GO:0009477) 1 0 7231 GO:0009478 cytochrome c554 (obsolete GO:0009478) 1 0 7232 GO:0009479 cytochrome f (obsolete GO:0009479) 1 0 7233 GO:0009480 class IIb cytochrome c (obsolete GO:0009480) 1 0 7234 GO:0009481 aa3-type cytochrome c oxidase (obsolete GO:0009481) 1 0 7235 GO:0009482 ba3-type cytochrome c oxidase (obsolete GO:0009482) 1 0 7236 GO:0009483 caa3-type cytochrome c oxidase (obsolete GO:0009483) 1 0 7237 GO:0009485 cbb3-type cytochrome c oxidase (obsolete GO:0009485) 1 0 7238 GO:0009486 cytochrome bo3 ubiquinol oxidase activity 0 0 7239 GO:0009487 glutaredoxin (obsolete GO:0009487) 1 0 7240 GO:0009488 amicyanin (obsolete GO:0009488) 1 0 7241 GO:0009489 rubredoxin (obsolete GO:0009489) 1 0 7242 GO:0009490 mononuclear iron electron carrier (obsolete GO:0009490) 1 0 7243 GO:0009491 redox-active disulfide bond electron carrier (obsolete GO:0009491) 1 0 7244 GO:0009492 2Fe-2S electron transfer carrier (obsolete GO:0009492) 1 0 7245 GO:0009493 adrenodoxin-type ferredoxin (obsolete GO:0009493) 1 0 7246 GO:0009494 chloroplast-type ferredoxin (obsolete GO:0009494) 1 0 7247 GO:0009495 thioredoxin-like 2Fe-2S ferredoxin (obsolete GO:0009495) 1 0 7248 GO:0009496 plastoquinol-plastocyanin reductase activity 0 0 7249 GO:0009497 3Fe-4S/4Fe-4S electron transfer carrier (obsolete GO:0009497) 1 0 7250 GO:0009498 bacterial-type ferredoxin (obsolete GO:0009498) 1 0 7251 GO:0009499 monocluster bacterial-type ferredoxin (obsolete GO:0009499) 1 0 7252 GO:0009500 dicluster bacterial-type ferredoxin (obsolete GO:0009500) 1 0 7253 GO:0009501 amyloplast 0 0 7254 GO:0009502 photosynthetic electron transport chain 0 0 7255 GO:0009503 light-harvesting complex (sensu Viridiplantae) 0 0 7256 GO:0009504 cell plate 0 0 7257 GO:0009505 cell wall (sensu Magnoliophyta) 0 0 7258 GO:0009506 plasmodesma 0 0 7259 GO:0009507 chloroplast 0 0 7260 GO:0009508 plastid chromosome 0 0 7261 GO:0009509 chromoplast 0 0 7262 GO:0009510 plasmodesmatal desmotubule 0 0 7263 GO:0009511 plasmodesmatal endoplasmic reticulum 0 0 7264 GO:0009512 cytochrome b6f complex 0 0 7265 GO:0009513 etioplast 0 0 7266 GO:0009514 glyoxysome 0 0 7267 GO:0009515 granal stacked thylakoid 0 0 7268 GO:0009516 leucoplast 0 0 7269 GO:0009517 PSII associated light-harvesting complex II 0 0 7270 GO:0009518 PSI associated light-harvesting complex I 0 0 7271 GO:0009519 middle lamella 0 0 7272 GO:0009521 photosystem 0 0 7273 GO:0009522 photosystem I 0 0 7274 GO:0009523 photosystem II 0 0 7275 GO:0009524 phragmoplast 0 0 7276 GO:0009525 phragmosome 0 0 7277 GO:0009526 plastid envelope 0 0 7278 GO:0009527 plastid outer membrane 0 0 7279 GO:0009528 plastid inner membrane 0 0 7280 GO:0009529 plastid intermembrane space 0 0 7281 GO:0009530 primary cell wall 0 0 7282 GO:0009531 secondary cell wall 0 0 7283 GO:0009532 plastid stroma 0 0 7284 GO:0009533 chloroplast stromal thylakoid 0 0 7285 GO:0009534 thylakoid (sensu Viridiplantae) 0 0 7286 GO:0009535 thylakoid membrane (sensu Viridiplantae) 0 0 7287 GO:0009536 plastid 0 0 7288 GO:0009537 proplastid 0 0 7289 GO:0009538 photosystem I reaction center 0 0 7290 GO:0009539 photosystem II reaction center 0 0 7291 GO:0009540 zeaxanthin epoxidase activity 0 0 7292 GO:0009541 etioplast prolamellar body 0 0 7293 GO:0009542 granum 0 0 7294 GO:0009543 thylakoid lumen (sensu Viridiplantae) 0 0 7295 GO:0009544 chloroplast ATP synthase complex 0 0 7296 GO:0009545 elaioplast 0 0 7297 GO:0009546 plasmodesmatal cytoplasmic sleeve 0 0 7298 GO:0009547 plastid ribosome 0 0 7299 GO:0009548 plasmodesmatal plasma membrane 0 0 7300 GO:0009549 cellulose microfibril 0 0 7301 GO:0009550 primary plasmodesma 0 0 7302 GO:0009551 secondary plasmodesma 0 0 7303 GO:0009552 gamete generation (sensu Magnoliophyta) 0 0 7304 GO:0009553 female gametophyte development 0 0 7305 GO:0009554 megasporogenesis 0 0 7306 GO:0009555 male gametophyte development 0 0 7307 GO:0009556 microsporogenesis 0 0 7308 GO:0009557 antipodal cell differentiation 0 0 7309 GO:0009558 cellularization of megagametophyte 0 0 7310 GO:0009559 female gametophyte central cell differentiation 0 0 7311 GO:0009560 female gametophyte egg cell differentiation 0 0 7312 GO:0009561 megagametophyte nuclear division 0 0 7313 GO:0009562 megagametophyte nuclear migration 0 0 7314 GO:0009563 synergid differentiation 0 0 7315 GO:0009564 formation of generative and vegetative cell 0 0 7316 GO:0009566 fertilization 0 0 7317 GO:0009567 double fertilization (sensu Magnoliophyta) 0 0 7318 GO:0009568 amyloplast starch grain 0 0 7319 GO:0009569 chloroplast starch grain 0 0 7320 GO:0009570 chloroplast stroma 0 0 7321 GO:0009571 proplastid stroma 0 0 7322 GO:0009572 desmotubule central rod 0 0 7323 GO:0009573 ribulose bisphosphate carboxylase complex (sensu Magnoliophyta) 0 0 7324 GO:0009574 preprophase band 0 0 7325 GO:0009575 chromoplast stroma 0 0 7326 GO:0009576 leucoplast stroma 0 0 7327 GO:0009577 elaioplast stroma 0 0 7328 GO:0009578 etioplast stroma 0 0 7329 GO:0009579 thylakoid 0 0 7330 GO:0009580 thylakoid (sensu Bacteria) (obsolete GO:0009580) 1 0 7331 GO:0009581 detection of external stimulus 0 0 7332 GO:0009582 detection of abiotic stimulus 0 0 7333 GO:0009583 detection of light stimulus 0 0 7334 GO:0009584 detection of visible light 0 0 7335 GO:0009585 red, far-red light phototransduction 0 0 7336 GO:0009586 rhodopsin mediated phototransduction 0 0 7337 GO:0009587 phototrophin mediated phototransduction (obsolete GO:0009587) 1 0 7338 GO:0009588 UV-A, blue light phototransduction 0 0 7339 GO:0009589 detection of UV 0 0 7340 GO:0009590 detection of gravity 0 0 7341 GO:0009591 perception of mechanical stimulus (obsolete GO:0009591) 1 0 7342 GO:0009593 detection of chemical stimulus 0 0 7343 GO:0009594 detection of nutrient 0 0 7344 GO:0009595 detection of biotic stimulus 0 0 7345 GO:0009596 detection of pest, pathogen or parasite 0 0 7346 GO:0009597 detection of virus 0 0 7347 GO:0009598 detection of pathogenic bacteria 0 0 7348 GO:0009599 detection of pathogenic fungi 0 0 7349 GO:0009600 detection of nematode 0 0 7350 GO:0009601 detection of insect 0 0 7351 GO:0009602 detection of symbiont 0 0 7352 GO:0009603 detection of symbiotic fungi 0 0 7353 GO:0009604 detection of symbiotic bacteria 0 0 7354 GO:0009605 response to external stimulus 0 0 7355 GO:0009606 tropism 0 0 7356 GO:0009607 response to biotic stimulus 0 0 7357 GO:0009608 response to symbiont 0 0 7358 GO:0009609 response to symbiotic bacteria 0 0 7359 GO:0009610 response to symbiotic fungi 0 0 7360 GO:0009611 response to wounding 0 0 7361 GO:0009612 response to mechanical stimulus 0 0 7362 GO:0009613 response to pest, pathogen or parasite 0 0 7363 GO:0009614 disease resistance (obsolete GO:0009614) 1 0 7364 GO:0009615 response to virus 0 0 7365 GO:0009616 virus induced gene silencing 0 0 7366 GO:0009617 response to bacteria 0 0 7367 GO:0009618 response to pathogenic bacteria 0 0 7368 GO:0009619 resistance to pathogenic bacteria (obsolete GO:0009619) 1 0 7369 GO:0009620 response to fungi 0 0 7370 GO:0009621 response to pathogenic fungi 0 0 7371 GO:0009622 resistance to pathogenic fungi (obsolete GO:0009622) 1 0 7372 GO:0009623 response to parasitic fungi 0 0 7373 GO:0009624 response to nematode 0 0 7374 GO:0009625 response to insect 0 0 7375 GO:0009626 hypersensitive response 0 0 7376 GO:0009627 systemic acquired resistance 0 0 7377 GO:0009628 response to abiotic stimulus 0 0 7378 GO:0009629 response to gravity 0 0 7379 GO:0009630 gravitropism 0 0 7380 GO:0009631 cold acclimation 0 0 7381 GO:0009632 freezing tolerance (obsolete GO:0009632) 1 0 7382 GO:0009633 drought tolerance (obsolete GO:0009633) 1 0 7383 GO:0009634 heavy metal sensitivity/resistance (obsolete GO:0009634) 1 0 7384 GO:0009635 response to herbicide 0 0 7385 GO:0009636 response to toxin 0 0 7386 GO:0009637 response to blue light 0 0 7387 GO:0009638 phototropism 0 0 7388 GO:0009639 response to red or far red light 0 0 7389 GO:0009640 photomorphogenesis 0 0 7390 GO:0009641 shade avoidance 0 0 7391 GO:0009642 response to light intensity 0 0 7392 GO:0009643 photosynthetic acclimation 0 0 7393 GO:0009644 response to high light intensity 0 0 7394 GO:0009645 response to low light intensity 0 0 7395 GO:0009646 response to absence of light 0 0 7396 GO:0009647 skotomorphogenesis 0 0 7397 GO:0009648 photoperiodism 0 0 7398 GO:0009649 entrainment of circadian clock 0 0 7399 GO:0009650 UV protection 0 0 7400 GO:0009651 response to salt stress 0 0 7401 GO:0009652 thigmotropism 0 0 7402 GO:0009653 morphogenesis 0 0 7403 GO:0009654 oxygen evolving complex 0 0 7404 GO:0009655 PSII associated light-harvesting complex II, core complex 0 0 7405 GO:0009656 PSII associated light-harvesting complex II, peripheral complex 0 0 7406 GO:0009657 plastid organization and biogenesis 0 0 7407 GO:0009658 chloroplast organization and biogenesis 0 0 7408 GO:0009659 leucoplast organization and biogenesis 0 0 7409 GO:0009660 amyloplast organization and biogenesis 0 0 7410 GO:0009661 chromoplast organization and biogenesis 0 0 7411 GO:0009662 etioplast organization and biogenesis 0 0 7412 GO:0009663 plasmodesma organization and biogenesis 0 0 7413 GO:0009664 cell wall organization and biogenesis (sensu Magnoliophyta) 0 0 7414 GO:0009665 plastid inheritance 0 0 7415 GO:0009666 plastid outer membrane organization and biogenesis 0 0 7416 GO:0009667 plastid inner membrane organization and biogenesis 0 0 7417 GO:0009668 plastid membrane organization and biogenesis 0 0 7418 GO:0009669 sucrose permease activity 0 0 7419 GO:0009670 triose-phosphate transporter activity 0 0 7420 GO:0009671 nitrate:hydrogen symporter activity 0 0 7421 GO:0009672 auxin:hydrogen symporter activity 0 0 7422 GO:0009673 low affinity phosphate transporter activity 0 0 7423 GO:0009674 potassium:sodium symporter activity 0 0 7424 GO:0009675 high affinity sulfate:hydrogen symporter activity 0 0 7425 GO:0009676 low affinity sulfate:hydrogen symporter activity 0 0 7426 GO:0009677 double fertilization (sensu Gnetophyta) 0 0 7427 GO:0009678 hydrogen-translocating pyrophosphatase activity 0 0 7428 GO:0009679 hexose:hydrogen symporter activity 0 0 7429 GO:0009680 response to non-pathogenic bacteria 0 0 7430 GO:0009681 detection of non-pathogenic bacteria 0 0 7431 GO:0009682 induced systemic resistance 0 0 7432 GO:0009683 indoleacetic acid metabolism 0 0 7433 GO:0009684 indoleacetic acid biosynthesis 0 0 7434 GO:0009685 gibberellic acid metabolism 0 0 7435 GO:0009686 gibberellic acid biosynthesis 0 0 7436 GO:0009687 abscisic acid metabolism 0 0 7437 GO:0009688 abscisic acid biosynthesis 0 0 7438 GO:0009689 induction of phytoalexin biosynthesis 0 0 7439 GO:0009690 cytokinin metabolism 0 0 7440 GO:0009691 cytokinin biosynthesis 0 0 7441 GO:0009692 ethylene metabolism 0 0 9584 GO:0016585 chromatin remodeling complex 0 0 9585 GO:0016586 RSC complex 0 0 9586 GO:0016587 ISW1 complex 0 0 9587 GO:0016589 NURF complex 0 0 9588 GO:0016590 ACF complex 0 0 9589 GO:0016591 DNA-directed RNA polymerase II, holoenzyme 0 0 9590 GO:0016592 Srb-mediator complex 0 0 9591 GO:0016593 Cdc73/Paf1 complex 0 0 9592 GO:0016594 glycine binding 0 0 9593 GO:0016595 glutamate binding 0 0 9594 GO:0016596 thienylcyclohexylpiperidine binding 0 0 9595 GO:0016597 amino acid binding 0 0 9596 GO:0016598 protein arginylation 0 0 9597 GO:0016599 caveolar membrane 0 0 9598 GO:0016600 flotillin complex 0 0 9599 GO:0016601 Rac protein signal transduction 0 0 9600 GO:0016602 CCAAT-binding factor complex 0 0 9601 GO:0016603 glutaminyl-peptide cyclotransferase activity 0 0 9602 GO:0016604 nuclear body 0 0 9603 GO:0016605 PML body 0 0 9604 GO:0016606 Lands 0 0 9605 GO:0016607 nuclear speck 0 0 9606 GO:0016608 growth hormone-releasing hormone activity 0 0 9607 GO:0016609 G-protein coupled serotonin receptor activity 0 0 9608 GO:0016610 nitrogenase complex 0 0 9609 GO:0016611 iron-iron nitrogenase complex 0 0 9610 GO:0016612 molybdenum-iron nitrogenase complex 0 0 9611 GO:0016613 vanadium-iron nitrogenase complex 0 0 9612 GO:0016614 oxidoreductase activity, acting on CH-OH group of donors 0 0 9613 GO:0016615 malate dehydrogenase activity 0 0 9614 GO:0016616 oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor 0 0 9615 GO:0016617 4-oxoproline reductase activity 0 0 9616 GO:0016618 hydroxypyruvate reductase activity 0 0 9617 GO:0016619 malate dehydrogenase (oxaloacetate-decarboxylating) activity 0 0 9618 GO:0016620 oxidoreductase activity, acting on the aldehyde or oxo group of donors, NAD or NADP as acceptor 0 0 9619 GO:0016621 cinnamoyl-CoA reductase activity 0 0 9620 GO:0016622 oxidoreductase activity, acting on the aldehyde or oxo group of donors, cytochrome as acceptor 0 0 9621 GO:0016623 oxidoreductase activity, acting on the aldehyde or oxo group of donors, oxygen as acceptor 0 0 9622 GO:0016624 oxidoreductase activity, acting on the aldehyde or oxo group of donors, disulfide as acceptor 0 0 9623 GO:0016625 oxidoreductase activity, acting on the aldehyde or oxo group of donors, iron-sulfur protein as acceptor 0 0 9624 GO:0016626 oxidoreductase activity, acting on the aldehyde or oxo group of donors, other acceptors (obsolete GO:0016626) 1 0 9625 GO:0016627 oxidoreductase activity, acting on the CH-CH group of donors 0 0 9626 GO:0016628 oxidoreductase activity, acting on the CH-CH group of donors, NAD or NADP as acceptor 0 0 9627 GO:0016629 12-oxophytodienoate reductase activity 0 0 9628 GO:0016630 protochlorophyllide reductase activity 0 0 9629 GO:0016631 enoyl-[acyl-carrier protein] reductase activity 0 0 9630 GO:0016632 oxidoreductase activity, acting on the CH-CH group of donors, cytochrome as acceptor 0 0 9631 GO:0016633 galactonolactone dehydrogenase activity 0 0 9632 GO:0016634 oxidoreductase activity, acting on the CH-CH group of donors, oxygen as acceptor 0 0 9633 GO:0016635 oxidoreductase activity, acting on the CH-CH group of donors, quinone or related compound as acceptor 0 0 9634 GO:0016636 oxidoreductase activity, acting on the CH-CH group of donors, iron-sulfur protein as acceptor 0 0 9635 GO:0016637 oxidoreductase activity, acting on the CH-CH group of donors, other acceptors (obsolete GO:0016637) 1 0 9636 GO:0016638 oxidoreductase activity, acting on the CH-NH2 group of donors 0 0 9637 GO:0016639 oxidoreductase activity, acting on the CH-NH2 group of donors, NAD or NADP as acceptor 0 0 9638 GO:0016640 oxidoreductase activity, acting on the CH-NH2 group of donors, cytochrome as acceptor 0 0 9639 GO:0016641 oxidoreductase activity, acting on the CH-NH2 group of donors, oxygen as acceptor 0 0 9640 GO:0016642 oxidoreductase activity, acting on the CH-NH2 group of donors, disulfide as acceptor 0 0 9641 GO:0016643 oxidoreductase activity, acting on the CH-NH2 group of donors, iron-sulfur protein as acceptor 0 0 9642 GO:0016644 oxidoreductase activity, acting on the CH-NH2 group of donors, other acceptors (obsolete GO:0016644) 1 0 9643 GO:0016645 oxidoreductase activity, acting on the CH-NH group of donors 0 0 9644 GO:0016646 oxidoreductase activity, acting on the CH-NH group of donors, NAD or NADP as acceptor 0 0 9645 GO:0016647 oxidoreductase activity, acting on the CH-NH group of donors, oxygen as acceptor 0 0 9646 GO:0016648 oxidoreductase activity, acting on the CH-NH group of donors, disulfide as acceptor 0 0 9647 GO:0016649 oxidoreductase activity, acting on the CH-NH group of donors, quinone or similar compound as acceptor 0 0 9648 GO:0016650 oxidoreductase activity, acting on the CH-NH group of donors, other acceptors (obsolete GO:0016650) 1 0 9649 GO:0016651 oxidoreductase activity, acting on NADH or NADPH 0 0 9650 GO:0016652 oxidoreductase activity, acting on NADH or NADPH, NAD or NADP as acceptor 0 0 9651 GO:0016653 oxidoreductase activity, acting on NADH or NADPH, heme protein as acceptor 0 0 9652 GO:0016654 oxidoreductase activity, acting on NADH or NADPH, disulfide as acceptor 0 0 9653 GO:0016655 oxidoreductase activity, acting on NADH or NADPH, quinone or similar compound as acceptor 0 0 9654 GO:0016656 monodehydroascorbate reductase (NADH) activity 0 0 9655 GO:0016657 oxidoreductase activity, acting on NADH or NADPH, nitrogenous group as acceptor 0 0 9656 GO:0016658 oxidoreductase activity, acting on NADH or NADPH, flavin as acceptor (obsolete GO:0016658) 1 0 9657 GO:0016659 oxidoreductase activity, acting on NADH or NADPH, other acceptor (obsolete GO:0016659) 1 0 9658 GO:0016661 oxidoreductase activity, acting on other nitrogenous compounds as donors 0 0 9659 GO:0016662 oxidoreductase activity, acting on other nitrogenous compounds as donors, cytochrome as acceptor 0 0 9660 GO:0016663 oxidoreductase activity, acting on other nitrogenous compounds as donors, oxygen as acceptor 0 0 9661 GO:0016664 oxidoreductase activity, acting on other nitrogenous compounds as donors, iron-sulfur protein as acceptor 0 0 9662 GO:0016665 oxidoreductase activity, acting on other nitrogenous compounds as donors, other acceptors (obsolete GO:0016665) 1 0 9663 GO:0016667 oxidoreductase activity, acting on sulfur group of donors 0 0 9664 GO:0016668 oxidoreductase activity, acting on sulfur group of donors, NAD or NADP as acceptor 0 0 9665 GO:0016669 oxidoreductase activity, acting on sulfur group of donors, cytochrome as acceptor 0 0 9666 GO:0016670 oxidoreductase activity, acting on sulfur group of donors, oxygen as acceptor 0 0 9667 GO:0016671 oxidoreductase activity, acting on sulfur group of donors, disulfide as acceptor 0 0 9668 GO:0016672 oxidoreductase activity, acting on sulfur group of donors, quinone or similar compound as acceptor 0 0 9669 GO:0016673 oxidoreductase activity, acting on sulfur group of donors, iron-sulfur protein as acceptor 0 0 9670 GO:0016674 oxidoreductase activity, acting on sulfur group of donors, other acceptors (obsolete GO:0016674) 1 0 9671 GO:0016675 oxidoreductase activity, acting on heme group of donors 0 0 9672 GO:0016676 oxidoreductase activity, acting on heme group of donors, oxygen as acceptor 0 0 9673 GO:0016677 oxidoreductase activity, acting on heme group of donors, nitrogenous group as acceptor 0 0 9674 GO:0016678 oxidoreductase activity, acting on heme group of donors, other acceptors (obsolete GO:0016678) 1 0 9675 GO:0016679 oxidoreductase activity, acting on diphenols and related substances as donors 0 0 9676 GO:0016680 oxidoreductase activity, acting on diphenols and related substances as donors, NAD or NADP as acceptor 0 0 9677 GO:0016681 oxidoreductase activity, acting on diphenols and related substances as donors, cytochrome as acceptor 0 0 9678 GO:0016682 oxidoreductase activity, acting on diphenols and related substances as donors, oxygen as acceptor 0 0 9679 GO:0016683 oxidoreductase activity, acting on diphenols and related substances as donors, other acceptors (obsolete GO:0016683) 1 0 9680 GO:0016684 oxidoreductase activity, acting on peroxide as acceptor 0 0 9681 GO:0016688 L-ascorbate peroxidase activity 0 0 9682 GO:0016689 manganese peroxidase activity 0 0 9683 GO:0016690 diarylpropane peroxidase activity 0 0 9684 GO:0016691 chloride peroxidase activity 0 0 9685 GO:0016692 NADH peroxidase activity 0 0 9686 GO:0016693 secretory plant peroxidase activity 0 0 9687 GO:0016694 bacterial catalase-peroxidase activity (obsolete GO:0016694) 1 0 9688 GO:0016695 oxidoreductase activity, acting on hydrogen as donor 0 0 9689 GO:0016696 oxidoreductase activity, acting on hydrogen as donor, NAD or NADP as acceptor 0 0 9690 GO:0016697 oxidoreductase activity, acting on hydrogen as donor, cytochrome as acceptor 0 0 9691 GO:0016699 oxidoreductase activity, acting on hydrogen as donor, iron-sulfur protein as acceptor 0 0 9692 GO:0016700 oxidoreductase activity, acting on hydrogen as donor, other acceptors (obsolete GO:0016700) 1 0 9693 GO:0016701 oxidoreductase activity, acting on single donors with incorporation of molecular oxygen 0 0 9694 GO:0016702 oxidoreductase activity, acting on single donors with incorporation of molecular oxygen, incorporation of two atoms of oxygen 0 0 9695 GO:0016703 oxidoreductase activity, acting on single donors with incorporation of molecular oxygen, incorporation of one atom of oxygen (internal monooxygenases or internal mixed function oxidases) 0 0 9696 GO:0016704 oxidoreductase activity, acting on single donors with incorporation of molecular oxygen, miscellaneous (obsolete GO:0016704) 1 0 9697 GO:0016705 oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen 0 0 9698 GO:0016706 oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, 2-oxoglutarate as one donor, and incorporation of one atom each of oxygen into both donors 0 0 9699 GO:0016707 gibberellin 3-beta-dioxygenase activity 0 0 9700 GO:0016708 oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, NAD or NADH as one donor, and incorporation of two atoms of oxygen into one donor 0 0 9701 GO:0016709 oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, NAD or NADH as one donor, and incorporation of one atom of oxygen 0 0 9702 GO:0016710 trans-cinnamate 4-monooxygenase activity 0 0 9703 GO:0016711 flavonoid 3'-monooxygenase activity 0 0 9704 GO:0016712 oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, reduced flavin or flavoprotein as one donor, and incorporation of one atom of oxygen 0 0 9705 GO:0016713 oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, reduced iron-sulfur protein as one donor, and incorporation of one atom of oxygen 0 0 9706 GO:0016714 oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, reduced pteridine as one donor, and incorporation of one atom of oxygen 0 0 9707 GO:0016715 oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, reduced ascorbate as one donor, and incorporation of one atom of oxygen 0 0 9708 GO:0016716 oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, another compound as one donor, and incorporation of one atom of oxygen 0 0 9709 GO:0016717 oxidoreductase activity, acting on paired donors, with oxidation of a pair of donors resulting in the reduction of molecular oxygen to two molecules of water 0 0 9710 GO:0016718 oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, miscellaneous (obsolete GO:0016718) 1 0 9711 GO:0016719 carotene 7,8-desaturase activity 0 0 9712 GO:0016720 delta12-fatty acid dehydrogenase activity 0 0 9713 GO:0016721 oxidoreductase activity, acting on superoxide radicals as acceptor 0 0 9714 GO:0016722 oxidoreductase activity, oxidizing metal ions 0 0 9715 GO:0016723 oxidoreductase activity, oxidizing metal ions, NAD or NADP as acceptor 0 0 9716 GO:0016724 oxidoreductase activity, oxidizing metal ions, oxygen as acceptor 0 0 9717 GO:0016725 oxidoreductase activity, acting on CH2 groups 0 0 9718 GO:0016726 oxidoreductase activity, acting on CH2 groups, NAD or NADP as acceptor 0 0 9719 GO:0016727 oxidoreductase activity, acting on CH2 groups, oxygen as acceptor 0 0 9720 GO:0016728 oxidoreductase activity, acting on CH2 groups, disulfide as acceptor 0 0 9721 GO:0016729 oxidoreductase activity, acting on CH2 groups, other acceptors (obsolete GO:0016729) 1 0 9722 GO:0016730 oxidoreductase activity, acting on iron-sulfur proteins as donors 0 0 9723 GO:0016731 oxidoreductase activity, acting on iron-sulfur proteins as donors, NAD or NADP as acceptor 0 0 9724 GO:0016732 oxidoreductase activity, acting on iron-sulfur proteins as donors, dinitrogen as acceptor 0 0 9725 GO:0016733 iron-iron nitrogenase activity (obsolete GO:0016733) 1 0 9726 GO:0016734 molybdenum-iron nitrogenase activity (obsolete GO:0016734) 1 0 9727 GO:0016735 vanadium-iron nitrogenase activity (obsolete GO:0016735) 1 0 9728 GO:0016737 oxidoreductase activity, acting on reduced flavodoxin as donor 0 0 9729 GO:0016738 oxidoreductase activity, acting on reduced flavodoxin as donor, dinitrogen as acceptor 0 0 9730 GO:0016739 oxidoreductase activity, acting on other substrates (obsolete GO:0016739) 1 0 9731 GO:0016740 transferase activity 0 0 9732 GO:0016741 transferase activity, transferring one-carbon groups 0 0 9733 GO:0016742 hydroxymethyl-, formyl- and related transferase activity 0 0 9734 GO:0016743 carboxyl- and carbamoyltransferase activity 0 0 9735 GO:0016744 transferase activity, transferring aldehyde or ketonic groups 0 0 9736 GO:0016746 transferase activity, transferring acyl groups 0 0 9737 GO:0016747 transferase activity, transferring groups other than amino-acyl groups 0 0 9738 GO:0016748 succinyltransferase activity 0 0 9739 GO:0016749 N-succinyltransferase activity 0 0 9740 GO:0016750 O-succinyltransferase activity 0 0 9741 GO:0016751 S-succinyltransferase activity 0 0 9742 GO:0016752 sinapoyltransferase activity 0 0 9743 GO:0016753 O-sinapoyltransferase activity 0 0 9744 GO:0016754 sinapoylglucose-malate O-sinapoyltransferase activity 0 0 9745 GO:0016755 transferase activity, transferring amino-acyl groups 0 0 9746 GO:0016756 glutathione gamma-glutamylcysteinyltransferase activity 0 0 9747 GO:0016757 transferase activity, transferring glycosyl groups 0 0 9748 GO:0016758 transferase activity, transferring hexosyl groups 0 0 9749 GO:0016759 cellulose synthase activity 0 0 9750 GO:0016760 cellulose synthase (UDP-forming) activity 0 0 9751 GO:0016761 cellulose synthase (GDP-forming) activity 0 0 9752 GO:0016762 xyloglucan:xyloglucosyl transferase activity 0 0 9753 GO:0016763 transferase activity, transferring pentosyl groups 0 0 9754 GO:0016764 transferase activity, transferring other glycosyl groups (obsolete GO:0016764) 1 0 9755 GO:0016765 transferase activity, transferring alkyl or aryl (other than methyl) groups 0 0 9756 GO:0016767 geranylgeranyl-diphosphate geranylgeranyltransferase activity 0 0 9757 GO:0016768 spermine synthase activity 0 0 9758 GO:0016769 transferase activity, transferring nitrogenous groups 0 0 9759 GO:0016770 oximinotransaminase activity 0 0 9760 GO:0016771 transferase activity, transferring other nitrogenous groups (obsolete GO:0016771) 1 0 9761 GO:0016772 transferase activity, transferring phosphorus-containing groups 0 0 9762 GO:0016773 phosphotransferase activity, alcohol group as acceptor 0 0 9763 GO:0016774 phosphotransferase activity, carboxyl group as acceptor 0 0 9764 GO:0016775 phosphotransferase activity, nitrogenous group as acceptor 0 0 9765 GO:0016776 phosphotransferase activity, phosphate group as acceptor 0 0 9766 GO:0016777 phosphotransferase activity, with regeneration of donors, apparently catalyzing intramolecular transfers 0 0 9767 GO:0016778 diphosphotransferase activity 0 0 9768 GO:0016779 nucleotidyltransferase activity 0 0 9769 GO:0016780 phosphotransferase activity, for other substituted phosphate groups 0 0 9770 GO:0016781 phosphotransferase activity, paired acceptors 0 0 9771 GO:0016782 transferase activity, transferring sulfur-containing groups 0 0 9772 GO:0016783 sulfurtransferase activity 0 0 9773 GO:0016784 3-mercaptopyruvate sulfurtransferase activity 0 0 9774 GO:0016785 transferase activity, transferring selenium-containing groups 0 0 9775 GO:0016786 selenotransferase activity 0 0 9776 GO:0016787 hydrolase activity 0 0 9777 GO:0016788 hydrolase activity, acting on ester bonds 0 0 9778 GO:0016789 carboxylic ester hydrolase activity 0 0 9779 GO:0016790 thiolester hydrolase activity 0 0 9780 GO:0016791 phosphoric monoester hydrolase activity 0 0 9781 GO:0016793 triphosphoric monoester hydrolase activity 0 0 9782 GO:0016794 diphosphoric monoester hydrolase activity 0 0 9783 GO:0016795 phosphoric triester hydrolase activity 0 0 9784 GO:0016796 exonuclease activity, active with either ribo- or deoxyribonucleic acids and producing 5'-phosphomonoesters 0 0 9785 GO:0016797 exonuclease activity, active with either ribo- or deoxyribonucleic acids and producing 3'-phosphomonoesters 0 0 9786 GO:0016798 hydrolase activity, acting on glycosyl bonds 0 0 9787 GO:0016799 hydrolase activity, hydrolyzing N-glycosyl compounds 0 0 9788 GO:0016800 hydrolase activity, hydrolyzing S-glycosyl compounds 0 0 9789 GO:0016801 hydrolase activity, acting on ether bonds 0 0 9790 GO:0016802 trialkylsulfonium hydrolase activity 0 0 9791 GO:0016803 ether hydrolase activity 0 0 9792 GO:0016804 prolyl aminopeptidase activity 0 0 9793 GO:0016805 dipeptidase activity 0 0 9794 GO:0016806 dipeptidyl-peptidase and tripeptidyl-peptidase activity 0 0 9795 GO:0016807 cysteine-type carboxypeptidase activity 0 0 9796 GO:0016808 proprotein convertase activity 0 0 9797 GO:0016810 hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds 0 0 9798 GO:0016811 hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds, in linear amides 0 0 9799 GO:0016812 hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds, in cyclic amides 0 0 9800 GO:0016813 hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds, in linear amidines 0 0 9801 GO:0016814 hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds, in cyclic amidines 0 0 9802 GO:0016815 hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds, in nitriles 0 0 9803 GO:0016816 hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds, in other compounds (obsolete GO:0016816) 1 0 9804 GO:0016817 hydrolase activity, acting on acid anhydrides 0 0 9805 GO:0016818 hydrolase activity, acting on acid anhydrides, in phosphorus-containing anhydrides 0 0 9806 GO:0016819 hydrolase activity, acting on acid anhydrides, in sulfonyl-containing anhydrides 0 0 9807 GO:0016820 hydrolase activity, acting on acid anhydrides, catalyzing transmembrane movement of substances 0 0 9808 GO:0016821 hydrolase activity, acting on acid anhydrides, involved in cellular and subcellular movement (obsolete GO:0016821) 1 0 9809 GO:0016822 hydrolase activity, acting on acid carbon-carbon bonds 0 0 9810 GO:0016823 hydrolase activity, acting on acid carbon-carbon bonds, in ketonic substances 0 0 9811 GO:0016824 hydrolase activity, acting on acid halide bonds 0 0 9812 GO:0016825 hydrolase activity, acting on acid phosphorus-nitrogen bonds 0 0 9813 GO:0016826 hydrolase activity, acting on acid sulfur-nitrogen bonds 0 0 9814 GO:0016827 hydrolase activity, acting on acid carbon-phosphorus bonds 0 0 9815 GO:0016828 hydrolase activity, acting on acid sulfur-sulfur bonds 0 0 9816 GO:0016829 lyase activity 0 0 9817 GO:0016830 carbon-carbon lyase activity 0 0 9818 GO:0016831 carboxy-lyase activity 0 0 9819 GO:0016832 aldehyde-lyase activity 0 0 9820 GO:0016833 oxo-acid-lyase activity 0 0 9821 GO:0016834 other carbon-carbon lyase activity (obsolete GO:0016834) 1 0 9822 GO:0016835 carbon-oxygen lyase activity 0 0 9823 GO:0016836 hydro-lyase activity 0 0 9824 GO:0016837 carbon-oxygen lyase activity, acting on polysaccharides 0 0 9825 GO:0016838 carbon-oxygen lyase activity, acting on phosphates 0 0 9826 GO:0016839 other carbon-oxygen lyase activity (obsolete GO:0016839) 1 0 9827 GO:0016840 carbon-nitrogen lyase activity 0 0 9828 GO:0016841 ammonia-lyase activity 0 0 9829 GO:0016842 amidine-lyase activity 0 0 9830 GO:0016843 amine-lyase activity 0 0 9831 GO:0016844 strictosidine synthase activity 0 0 9832 GO:0016845 other carbon-nitrogen lyase activity (obsolete GO:0016845) 1 0 9833 GO:0016846 carbon-sulfur lyase activity 0 0 9834 GO:0016847 1-aminocyclopropane-1-carboxylate synthase activity 0 0 9835 GO:0016848 carbon-halide lyase activity 0 0 9836 GO:0016849 phosphorus-oxygen lyase activity 0 0 9837 GO:0016850 other lyase activity (obsolete GO:0016850) 1 0 9838 GO:0016851 magnesium chelatase activity 0 0 9839 GO:0016852 sirohydrochlorin cobaltochelatase activity 0 0 9840 GO:0016853 isomerase activity 0 0 9841 GO:0016854 racemase and epimerase activity 0 0 9842 GO:0016855 racemase and epimerase activity, acting on amino acids and derivatives 0 0 9843 GO:0016856 racemase and epimerase activity, acting on hydroxy acids and derivatives 0 0 9844 GO:0016857 racemase and epimerase activity, acting on carbohydrates and derivatives 0 0 9845 GO:0016858 racemase and epimerase activity, acting on other compounds (obsolete GO:0016858) 1 0 9846 GO:0016859 cis-trans isomerase activity 0 0 9847 GO:0016860 intramolecular oxidoreductase activity 0 0 9848 GO:0016861 intramolecular oxidoreductase activity, interconverting aldoses and ketoses 0 0 9849 GO:0016862 intramolecular oxidoreductase activity, interconverting keto- and enol-groups 0 0 9850 GO:0016863 intramolecular oxidoreductase activity, transposing C=C bonds 0 0 9851 GO:0016864 intramolecular oxidoreductase activity, transposing S-S bonds 0 0 9852 GO:0016865 intramolecular oxidoreductase activity, other intramolecular oxidoreductases (obsolete GO:0016865) 1 0 9853 GO:0016866 intramolecular transferase activity 0 0 9854 GO:0016867 intramolecular transferase activity, transferring acyl groups 0 0 9855 GO:0016868 intramolecular transferase activity, phosphotransferases 0 0 9856 GO:0016869 intramolecular transferase activity, transferring amino groups 0 0 9857 GO:0016870 intramolecular transferase activity, transferring other groups (obsolete GO:0016870) 1 0 9858 GO:0016871 cycloartenol synthase activity 0 0 9859 GO:0016872 intramolecular lyase activity 0 0 9860 GO:0016873 other isomerase activity (obsolete GO:0016873) 1 0 9861 GO:0016874 ligase activity 0 0 9862 GO:0016875 ligase activity, forming carbon-oxygen bonds 0 0 9863 GO:0016876 ligase activity, forming aminoacyl-tRNA and related compounds 0 0 9864 GO:0016877 ligase activity, forming carbon-sulfur bonds 0 0 9865 GO:0016878 acid-thiol ligase activity 0 0 9866 GO:0016879 ligase activity, forming carbon-nitrogen bonds 0 0 9867 GO:0016880 acid-ammonia (or amide) ligase activity 0 0 9868 GO:0016881 acid-amino acid ligase activity 0 0 9869 GO:0016882 cyclo-ligase activity 0 0 9870 GO:0016883 other carbon-nitrogen ligase activity (obsolete GO:0016883) 1 0 9871 GO:0016884 carbon-nitrogen ligase activity, with glutamine as amido-N-donor 0 0 9872 GO:0016885 ligase activity, forming carbon-carbon bonds 0 0 9873 GO:0016886 ligase activity, forming phosphoric ester bonds 0 0 9874 GO:0016887 ATPase activity 0 0 9875 GO:0016888 endodeoxyribonuclease activity, producing 5'-phosphomonoesters 0 0 9876 GO:0016889 endodeoxyribonuclease activity, producing 3'-phosphomonoesters 0 0 9877 GO:0016890 site-specific endodeoxyribonuclease activity, specific for altered base 0 0 9878 GO:0016891 endoribonuclease activity, producing 5'-phosphomonoesters 0 0 9879 GO:0016892 endoribonuclease activity, producing 3'-phosphomonoesters 0 0 9880 GO:0016893 endonuclease activity, active with either ribo- or deoxyribonucleic acids and producing 5'-phosphomonoesters 0 0 9881 GO:0016894 endonuclease activity, active with either ribo- or deoxyribonucleic acids and producing 3'-phosphomonoesters 0 0 9882 GO:0016895 exodeoxyribonuclease activity, producing 5'-phosphomonoesters 0 0 9883 GO:0016896 exoribonuclease activity, producing 5'-phosphomonoesters 0 0 9884 GO:0016897 exoribonuclease activity, producing 3'-phosphomonoesters 0 0 9885 GO:0016898 oxidoreductase activity, acting on the CH-OH group of donors, cytochrome as acceptor 0 0 9886 GO:0016899 oxidoreductase activity, acting on the CH-OH group of donors, oxygen as acceptor 0 0 9887 GO:0016900 oxidoreductase activity, acting on the CH-OH group of donors, disulfide as acceptor 0 0 9888 GO:0016901 oxidoreductase activity, acting on the CH-OH group of donors, quinone or similar compound as acceptor 0 0 9889 GO:0016902 oxidoreductase activity, acting on the CH-OH group of donors, other acceptors (obsolete GO:0016902) 1 0 9890 GO:0016903 oxidoreductase activity, acting on the aldehyde or oxo group of donors 0 0 9891 GO:0016905 myosin heavy chain kinase activity 0 0 9892 GO:0016906 sterol 3-beta-glucosyltransferase activity 0 0 9893 GO:0016907 G-protein coupled acetylcholine receptor activity 0 0 9894 GO:0016908 MAP kinase 2 activity 0 0 9895 GO:0016909 SAP kinase activity 0 0 9896 GO:0016910 SAP kinase 3 activity (obsolete GO:0016910) 1 0 9897 GO:0016911 SAP kinase 4 activity (obsolete GO:0016911) 1 0 9898 GO:0016912 SAP kinase 5 activity (obsolete GO:0016912) 1 0 9899 GO:0016913 follicle-stimulating hormone activity 0 0 9900 GO:0016914 follicle-stimulating hormone complex 0 0 9901 GO:0016915 activin (obsolete GO:0016915) 1 0 9902 GO:0016916 inhibin (obsolete GO:0016916) 1 0 9903 GO:0016917 GABA receptor activity 0 0 9904 GO:0016918 retinal binding 0 0 9905 GO:0016919 nardilysin activity 0 0 9906 GO:0016920 pyroglutamyl-peptidase activity 0 0 9907 GO:0016921 pyroglutamyl-peptidase II activity 0 0 9908 GO:0016922 ligand-dependent nuclear receptor binding 0 0 9909 GO:0016923 ligand-dependent thyroid hormone receptor interactor activity (obsolete GO:0016923) 1 0 9910 GO:0016924 double-strand break repair via homologous recombination (obsolete GO:0016924) 1 0 9911 GO:0016925 protein sumoylation 0 0 9912 GO:0016926 protein desumoylation 0 0 9913 GO:0016929 SUMO-specific protease activity 0 0 9914 GO:0016931 vasopressin activated calcium mobilizing receptor activity 0 0 9915 GO:0016933 glycine-gated ion channel activity 0 0 9916 GO:0016934 glycine-gated chloride channel activity 0 0 9917 GO:0016935 glycine-gated chloride channel complex 0 0 9918 GO:0016936 galactoside binding 0 0 9919 GO:0016937 short-branched-chain-acyl-CoA dehydrogenase activity 0 0 9920 GO:0016938 kinesin I complex 0 0 9921 GO:0016939 kinesin II complex 0 0 9922 GO:0016941 natriuretic peptide receptor activity 0 0 9923 GO:0016942 insulin-like growth factor binding protein complex 0 0 9924 GO:0016943 RNA polymerase I transcription elongation factor activity 0 0 9925 GO:0016944 RNA polymerase II transcription elongation factor activity 0 0 9926 GO:0016945 RNA polymerase III transcription elongation factor activity 0 0 9927 GO:0016946 cathepsin F activity 0 0 9928 GO:0016947 N5,N10-methylenetetrahydromethanopterin dehydrogenase activity 0 0 9929 GO:0016948 iron hydrogenase activity 0 0 9930 GO:0016949 nickel hydrogenase activity 0 0 9931 GO:0016950 nickel-iron hydrogenase activity 0 0 9932 GO:0016951 nickel-iron-selenium hydrogenase activity 0 0 9933 GO:0016954 nickel superoxide dismutase activity 0 0 9934 GO:0016959 class I ribonucleotide reductase activity 0 0 9935 GO:0016960 class II ribonucleotide reductase activity 0 0 9936 GO:0016961 class III ribonucleotide reductase activity 0 0 9937 GO:0016962 receptor-associated protein activity (obsolete GO:0016962) 1 0 9938 GO:0016963 alpha-2 macroglobulin receptor-associated protein activity (obsolete GO:0016963) 1 0 9939 GO:0016964 alpha-2 macroglobulin receptor activity 0 0 9940 GO:0016966 nitric oxide reductase activity 0 0 9941 GO:0016969 hemerythrin (obsolete GO:0016969) 1 0 9942 GO:0016970 hemocyanin (obsolete GO:0016970) 1 0 9943 GO:0016971 flavin-linked sulfhydryl oxidase activity 0 0 9944 GO:0016972 thiol oxidase activity 0 0 9945 GO:0016973 poly(A)+ mRNA export from nucleus 0 0 9946 GO:0016974 sodium channel auxiliary protein activity 0 0 9947 GO:0016975 alpha-2 macroglobulin (obsolete GO:0016975) 1 0 9948 GO:0016976 NEDD8 conjugating enzyme activity 0 0 9949 GO:0016977 chitosanase activity 0 0 9950 GO:0016978 lipoate-protein ligase B activity 0 0 9951 GO:0016979 lipoate-protein ligase activity 0 0 9952 GO:0016980 creatinase activity 0 0 9953 GO:0016983 cytokine beta-glucosidase activity 0 0 9954 GO:0016984 ribulose-bisphosphate carboxylase activity 0 0 9955 GO:0016985 mannan endo-1,4-beta-mannosidase activity 0 0 9956 GO:0016986 transcription initiation factor activity 0 0 9957 GO:0016987 sigma factor activity 0 0 9958 GO:0016988 transcription initiation factor antagonist activity 0 0 9959 GO:0016989 sigma factor antagonist activity 0 0 9960 GO:0016990 arginine deiminase activity 0 0 9961 GO:0016991 gentamicin 3'-N-acetyltransferase activity 0 0 9962 GO:0016992 lipoate synthase activity 0 0 9963 GO:0016993 precorrin-8X methylmutase activity 0 0 9964 GO:0016994 precorrin-6A reductase activity 0 0 9965 GO:0016995 cholesterol oxidase activity 0 0 9966 GO:0016996 endo-alpha-sialidase activity 0 0 9967 GO:0016997 alpha-sialidase activity 0 0 9968 GO:0016998 cell wall catabolism 0 0 9969 GO:0016999 antibiotic metabolism 0 0 9970 GO:0017000 antibiotic biosynthesis 0 0 9971 GO:0017001 antibiotic catabolism 0 0 9972 GO:0017002 activin receptor activity 0 0 9973 GO:0017003 protein-heme linkage 0 0 9974 GO:0017004 cytochrome complex assembly 0 0 9975 GO:0017005 tyrosyl-DNA phosphodiesterase activity 0 0 9976 GO:0017006 protein-tetrapyrrole linkage 0 0 9977 GO:0017007 protein-bilin linkage 0 0 9978 GO:0017008 protein-phycobiliviolin linkage 0 0 9979 GO:0017009 protein-phycocyanobilin linkage 0 0 9980 GO:0017010 protein-phycourobilin linkage 0 0 9981 GO:0017011 protein-phycoerythrobilin linkage 0 0 9982 GO:0017012 protein-phytochromobilin linkage 0 0 9983 GO:0017013 protein amino acid flavinylation 0 0 9984 GO:0017014 protein amino acid nitrosylation 0 0 9985 GO:0017015 regulation of transforming growth factor beta receptor signaling pathway 0 0 9986 GO:0017016 Ras GTPase binding 0 0 9987 GO:0017017 MAP kinase phosphatase activity 0 0 9988 GO:0017018 myosin phosphatase activity 0 0 9989 GO:0017020 myosin phosphatase regulator activity 0 0 9990 GO:0017021 myosin phosphatase myosin binding (obsolete GO:0017021) 1 0 9991 GO:0017022 myosin binding 0 0 9992 GO:0017023 myosin phosphatase complex 0 0 9993 GO:0017024 myosin I binding 0 0 9994 GO:0017025 TATA-binding protein binding 0 0 9995 GO:0017026 procollagen C-endopeptidase activity 0 0 9996 GO:0017027 transmembrane receptor protein serine/threonine kinase receptor-associated protein activity (obsolete GO:0017027) 1 0 9997 GO:0017028 protein stabilization activity (obsolete GO:0017028) 1 0 9998 GO:0017029 lysosomal protein stabilization (obsolete GO:0017029) 1 0 9999 GO:0017030 beta-galactosidase stabilization activity (obsolete GO:0017030) 1 0 10000 GO:0017032 potassium:amino acid symporter activity 0 0 10001 GO:0017033 DNA topoisomerase I binding 0 0 10002 GO:0017034 Rap guanyl-nucleotide exchange factor activity 0 0 10003 GO:0017038 protein import 0 0 10004 GO:0017039 dipeptidyl-peptidase III activity 0 0 10005 GO:0017040 ceramidase activity 0 0 10006 GO:0017041 galactosylgalactosylglucosylceramidase activity 0 0 10007 GO:0017042 glycosylceramidase activity 0 0 10008 GO:0017043 adrenocorticotropin (obsolete GO:0017043) 1 0 10009 GO:0017044 alpha-melanocyte stimulating hormone activity 0 0 10010 GO:0017045 adrenocorticotropin-releasing hormone activity 0 0 10011 GO:0017046 peptide hormone binding 0 0 10012 GO:0017047 adrenocorticotropin-releasing hormone binding 0 0 10013 GO:0017048 Rho GTPase binding 0 0 10014 GO:0017049 GTP-Rho binding 0 0 10015 GO:0017050 D-erythro-sphingosine kinase activity 0 0 10016 GO:0017051 retinol dehydratase activity 0 0 10017 GO:0017052 insulin-like growth factor binding protein (obsolete GO:0017052) 1 0 10018 GO:0017053 transcriptional repressor complex 0 0 10019 GO:0017054 negative cofactor 2 complex 0 0 10020 GO:0017055 negative regulation of transcriptional preinitiation complex formation 0 0 10021 GO:0017056 structural constituent of nuclear pore 0 0 10022 GO:0017057 6-phosphogluconolactonase activity 0 0 10023 GO:0017058 FH1 domain binding 0 0 10024 GO:0017059 serine C-palmitoyltransferase complex 0 0 10025 GO:0017060 3-galactosyl-N-acetylglucosaminide 4-alpha-L-fucosyltransferase activity 0 0 10026 GO:0017061 S-methyl-5-thioadenosine phosphorylase activity 0 0 10027 GO:0017062 cytochrome bc(1) complex assembly 0 0 10028 GO:0017063 phosphatidylserine-specific phospholipase A1 activity 0 0 10029 GO:0017064 fatty acid amide hydrolase activity 0 0 10030 GO:0017065 single-strand selective uracil DNA N-glycosylase activity 0 0 10031 GO:0017067 tyrosine-ester sulfotransferase activity 0 0 10032 GO:0017068 glutamyl-tRNA(Gln) amidotransferase activity 0 0 10033 GO:0017069 snRNA binding 0 0 10034 GO:0017070 U6 snRNA binding 0 0 10035 GO:0017071 intracellular cyclic nucleotide activated cation channel complex 0 0 10036 GO:0017072 tubulin-specific chaperone activity (obsolete GO:0017072) 1 0 10037 GO:0017074 procollagen N-endopeptidase activity 0 0 10038 GO:0017075 syntaxin-1 binding 0 0 10039 GO:0017076 purine nucleotide binding 0 0 10040 GO:0017077 oxidative phosphorylation uncoupler activity 0 0 10041 GO:0017078 Hsc70 protein regulator activity 0 0 10042 GO:0017080 sodium channel regulator activity 0 0 10043 GO:0017081 chloride channel regulator activity 0 0 10044 GO:0017082 mineralocorticoid receptor activity 0 0 10045 GO:0017083 4-galactosyl-N-acetylglucosaminide 3-alpha-L-fucosyltransferase activity 0 0 10046 GO:0017084 delta1-pyrroline-5-carboxylate synthetase activity 0 0 10047 GO:0017085 response to insecticide 0 0 10048 GO:0017086 3-methyl-2-oxobutanoate dehydrogenase (lipoamide) complex 0 0 10049 GO:0017087 mitochondrial processing peptidase complex 0 0 10050 GO:0017088 X-Pro dipeptidyl-peptidase activity 0 0 10051 GO:0017089 glycolipid transporter activity 0 0 10052 GO:0017090 meprin A complex 0 0 10053 GO:0017091 AU-specific RNA binding 0 0 10054 GO:0017092 sterol regulatory element-binding protein site 2 protease activity 0 0 10055 GO:0017093 sterol regulatory element-binding protein protease activity 0 0 10056 GO:0017094 sterol regulatory element-binding protein site 1 protease activity 0 0 10057 GO:0017095 heparan sulfate 6-O-sulfotransferase activity 0 0 10058 GO:0017096 acetylserotonin O-methyltransferase activity 0 0 10059 GO:0017097 acetylserotonin N-methyltransferase activity 0 0 10060 GO:0017098 sulfonylurea receptor binding 0 0 10061 GO:0017099 very-long-chain-acyl-CoA dehydrogenase activity 0 0 10062 GO:0017100 aminoacyl-tRNA synthetase auxiliary protein activity 0 0 10063 GO:0017101 aminoacyl-tRNA synthetase multienzyme complex 0 0 10064 GO:0017102 methionyl glutamyl tRNA synthetase complex 0 0 10065 GO:0017103 UTP:galactose-1-phosphate uridylyltransferase activity 0 0 10066 GO:0017105 acyl-CoA delta11-desaturase activity 0 0 10067 GO:0017106 activin inhibitor activity 0 0 10068 GO:0017107 anion exchanger adaptor activity 0 0 10069 GO:0017108 5'-flap endonuclease activity 0 0 10070 GO:0017109 glutamate-cysteine ligase complex 0 0 10071 GO:0017110 nucleoside-diphosphatase activity 0 0 10072 GO:0017111 nucleoside-triphosphatase activity 0 0 10073 GO:0017112 Rab guanyl-nucleotide exchange factor activity 0 0 10074 GO:0017113 dihydropyrimidine dehydrogenase (NADP+) activity 0 0 10075 GO:0017114 wide-spectrum protease inhibitor activity 0 0 10076 GO:0017116 single-stranded DNA-dependent ATP-dependent DNA helicase activity 0 0 10077 GO:0017117 single-stranded DNA-dependent ATP-dependent DNA helicase complex 0 0 10078 GO:0017118 lipoyltransferase activity 0 0 10079 GO:0017119 Golgi transport complex 0 0 10080 GO:0017120 polyphosphoinositide phosphatase activity 0 0 10081 GO:0017121 phospholipid scrambling 0 0 10082 GO:0017122 UDP-N-acetylglucosamine-peptide N-acetylglucosaminyltransferase complex 0 0 10083 GO:0017123 Ral GTPase activator activity 0 0 10084 GO:0017124 SH3 domain binding 0 0 10085 GO:0017125 deoxycytidyl transferase activity 0 0 11560 GO:0019475 L-lysine catabolism to acetate 0 0 11561 GO:0019476 D-lysine catabolism 0 0 11562 GO:0019477 L-lysine catabolism 0 0 11563 GO:0019478 D-amino acid catabolism 0 0 11564 GO:0019479 L-alanine oxidation to propanoate 0 0 11565 GO:0019480 L-alanine oxidation to pyruvate via D-alanine 0 0 11566 GO:0019481 L-alanine catabolism, by transamination 0 0 11567 GO:0019482 beta-alanine metabolism 0 0 11568 GO:0019483 beta-alanine biosynthesis 0 0 11569 GO:0019484 beta-alanine catabolism 0 0 11570 GO:0019485 beta-alanine catabolism to L-alanine 0 0 11571 GO:0019486 beta-alanine catabolism to mevalonate semialdehyde, by transamination 0 0 11572 GO:0019487 anaerobic acetylene catabolism 0 0 11573 GO:0019488 ribitol catabolism to xylulose 5-phosphate 0 0 11574 GO:0019489 methylgallate metabolism 0 0 11575 GO:0019490 2-aminobenzenesulfonate desulfonation 0 0 11576 GO:0019491 ectoine biosynthesis 0 0 11577 GO:0019492 proline salvage 0 0 11578 GO:0019493 arginine catabolism to proline 0 0 11579 GO:0019494 proline oxidation 0 0 11580 GO:0019495 proline catabolism to 2-oxoglutarate 0 0 11581 GO:0019496 serine-isocitrate lyase pathway 0 0 11582 GO:0019497 hexachlorocyclohexane metabolism 0 0 11583 GO:0019498 n-octane oxidation 0 0 11584 GO:0019499 cyanide metabolism 0 0 11585 GO:0019500 cyanide catabolism 0 0 11586 GO:0019501 arsonoacetate catabolism 0 0 11587 GO:0019502 stachydrine metabolism 0 0 11588 GO:0019503 stachydrine biosynthesis 0 0 11589 GO:0019504 stachydrine catabolism 0 0 11590 GO:0019505 resorcinol metabolism 0 0 11591 GO:0019506 phenylmercury acetate catabolism 0 0 11592 GO:0019507 pyridine metabolism 0 0 11593 GO:0019508 2,5-dihydroxypyridine catabolism to fumarate 0 0 11594 GO:0019509 methionine salvage 0 0 11595 GO:0019510 S-adenosylhomocysteine catabolism 0 0 11596 GO:0019511 peptidyl-proline hydroxylation 0 0 11597 GO:0019512 lactose catabolism via tagatose-6-phosphate 0 0 11598 GO:0019513 lactose catabolism, using glucoside 3-dehydrogenase 0 0 11599 GO:0019514 lactose hydrolysis (obsolete GO:0019514) 1 0 11600 GO:0019515 lactose catabolism via UDP-galactose 0 0 11601 GO:0019516 lactate oxidation 0 0 11602 GO:0019517 threonine catabolism to D-lactate 0 0 11603 GO:0019518 threonine catabolism to pyruvate 0 0 11604 GO:0019519 pentitol metabolism 0 0 11605 GO:0019520 aldonic acid metabolism 0 0 11606 GO:0019521 D-gluconate metabolism 0 0 11607 GO:0019522 ketogluconate metabolism 0 0 11608 GO:0019523 L-idonate metabolism 0 0 11609 GO:0019524 D-dehydro-D-gluconate catabolism 0 0 11610 GO:0019525 D-dehydro-D-gluconate metabolism 0 0 11611 GO:0019526 pentitol biosynthesis 0 0 11612 GO:0019527 pentitol catabolism 0 0 11613 GO:0019528 D-arabitol catabolism to xylulose 5-phosphate 0 0 11614 GO:0019529 taurine catabolism 0 0 11615 GO:0019530 taurine metabolism 0 0 11616 GO:0019531 oxalate transporter activity 0 0 11617 GO:0019532 oxalate transport 0 0 11618 GO:0019533 cellobiose transport 0 0 11619 GO:0019534 toxin transporter activity 0 0 11620 GO:0019535 ferric-vibriobactin transporter activity 0 0 11621 GO:0019536 vibriobactin metabolism 0 0 11622 GO:0019537 vibriobactin biosynthesis 0 0 11623 GO:0019538 protein metabolism 0 0 11624 GO:0019539 siderophore biosynthesis from hydroxamic acid 0 0 11625 GO:0019540 siderophore biosynthesis from catechol 0 0 11626 GO:0019541 propionate metabolism 0 0 11627 GO:0019542 propionate biosynthesis 0 0 11628 GO:0019543 propionate catabolism 0 0 11629 GO:0019544 arginine catabolism to glutamate 0 0 11630 GO:0019545 arginine catabolism to succinate 0 0 11631 GO:0019546 arginine deiminase pathway 0 0 11632 GO:0019547 arginine catabolism to ornithine 0 0 11633 GO:0019548 arginine catabolism to spermine 0 0 11634 GO:0019549 glutamate catabolism to succinate 0 0 11635 GO:0019550 glutamate catabolism to aspartate 0 0 11636 GO:0019551 glutamate catabolism to 2-oxoglutarate 0 0 11637 GO:0019552 glutamate catabolism via 2-hydroxyglutarate 0 0 11638 GO:0019553 glutamate catabolism via L-citramalate 0 0 11639 GO:0019554 glutamate catabolism to oxaloacetate 0 0 11640 GO:0019555 glutamate catabolism to ornithine 0 0 11641 GO:0019556 histidine catabolism to glutamate and formamide 0 0 11642 GO:0019557 histidine catabolism to glutamate and formate 0 0 11643 GO:0019558 histidine catabolism to 2-oxoglutarate 0 0 11644 GO:0019559 histidine catabolism to imidazol-5-yl-lactate 0 0 11645 GO:0019560 histidine catabolism to hydantoin-5-propionate 0 0 11646 GO:0019561 anaerobic phenylalanine oxidation 0 0 11647 GO:0019562 phenylalanine catabolism to phosphoenolpyruvate 0 0 11648 GO:0019563 glycerol catabolism 0 0 11649 GO:0019564 aerobic glycerol catabolism 0 0 11650 GO:0019565 aerobic glycerol degradation 0 0 11651 GO:0019566 arabinose metabolism 0 0 11652 GO:0019567 arabinose biosynthesis 0 0 11653 GO:0019568 arabinose catabolism 0 0 11654 GO:0019569 L-arabinose catabolism to xylulose 5-phosphate 0 0 11655 GO:0019570 L-arabinose catabolism to 2-oxoglutarate 0 0 11656 GO:0019571 D-arabinose catabolism 0 0 11657 GO:0019572 L-arabinose catabolism 0 0 11658 GO:0019573 D-arabinose catabolism to xylulose 5-phosphate 0 0 11659 GO:0019574 sucrose catabolism, using glucoside 3-dehydrogenase 0 0 11660 GO:0019575 sucrose catabolism, using beta-fructofuranosidase 0 0 11661 GO:0019576 aerobic fructose catabolism 0 0 11662 GO:0019577 aldaric acid metabolism 0 0 11663 GO:0019578 aldaric acid biosynthesis 0 0 11664 GO:0019579 aldaric acid catabolism 0 0 11665 GO:0019580 galactarate metabolism 0 0 11666 GO:0019582 D-galactarate catabolism 0 0 11667 GO:0019583 galactonate metabolism 0 0 11668 GO:0019584 galactonate catabolism 0 0 11669 GO:0019585 glucuronate metabolism 0 0 11670 GO:0019586 galacturonate metabolism 0 0 11671 GO:0019588 anaerobic glycerol catabolism 0 0 11672 GO:0019589 anaerobic glycerol catabolism to propane-1,3-diol 0 0 11673 GO:0019590 L-arabitol catabolism to xylulose 5-phosphate 0 0 11674 GO:0019591 arabitol utilization 0 0 11675 GO:0019592 mannitol catabolism 0 0 11676 GO:0019593 mannitol biosynthesis 0 0 11677 GO:0019594 mannitol metabolism 0 0 11678 GO:0019595 non-phosphorylated glucose catabolism 0 0 11679 GO:0019596 mandelate catabolism 0 0 11680 GO:0019597 (R)-mandelate catabolism to benzoate 0 0 11681 GO:0019598 (R)-mandelate catabolism to catechol 0 0 11682 GO:0019599 (R)-4-hydroxymandelate catabolism 0 0 11683 GO:0019600 toluene oxidation 0 0 11684 GO:0019601 toluene oxidation via 2-hydroxytoluene 0 0 11685 GO:0019602 toluene oxidation via 3-hydroxytoluene 0 0 11686 GO:0019603 toluene oxidation via 4-hydroxytoluene 0 0 11687 GO:0019604 toluene oxidation to catechol 0 0 11688 GO:0019605 butyrate metabolism 0 0 11689 GO:0019606 2-oxobutyrate catabolism 0 0 11690 GO:0019607 phenylethylamine catabolism 0 0 11691 GO:0019608 nicotine catabolism 0 0 11692 GO:0019609 3-hydroxyphenylacetate metabolism 0 0 11693 GO:0019610 3-hydroxyphenylacetate catabolism 0 0 11694 GO:0019611 4-toluenecarboxylate metabolism 0 0 11695 GO:0019612 4-toluenecarboxylate catabolism 0 0 11696 GO:0019613 bile acid 7alpha-dehydroxylation pathway 0 0 11697 GO:0019614 catechol catabolism 0 0 11698 GO:0019615 catechol catabolism, ortho-cleavage 0 0 11699 GO:0019616 catechol catabolism, meta-cleavage 0 0 11700 GO:0019617 protocatechuate catabolism, meta-cleavage 0 0 11701 GO:0019618 protocatechuate catabolism, ortho-cleavage 0 0 11702 GO:0019619 protocatechuate catabolism 0 0 11703 GO:0019620 aerobic benzoate metabolism 0 0 11704 GO:0019621 creatinine catabolism to formate 0 0 11705 GO:0019622 3-(3-hydroxy)phenylpropionate catabolism 0 0 11706 GO:0019623 atrazine catabolism to urea 0 0 11707 GO:0019624 atrazine catabolism to isopropylamine 0 0 11708 GO:0019625 atrazine catabolism to cyanuric acid 0 0 11709 GO:0019626 short-chain fatty acid catabolism 0 0 11710 GO:0019627 urea metabolism 0 0 11711 GO:0019628 urate catabolism 0 0 11712 GO:0019629 propionate catabolism, 2-methylcitrate cycle 0 0 11713 GO:0019630 quinate metabolism 0 0 11714 GO:0019631 quinate catabolism 0 0 11715 GO:0019632 shikimate metabolism 0 0 11716 GO:0019633 shikimate catabolism 0 0 11717 GO:0019634 phosphonate metabolism 0 0 11718 GO:0019635 2-aminoethylphosphonate catabolism 0 0 11719 GO:0019636 phosphonoacetate metabolism 0 0 11720 GO:0019637 organophosphate metabolism 0 0 11721 GO:0019638 6-hydroxycineole metabolism 0 0 11722 GO:0019639 6-hydroxycineole catabolism 0 0 11723 GO:0019640 glucuronate catabolism to xylulose 5-phosphate 0 0 11724 GO:0019641 Embden-Meyerhof pathway 0 0 11725 GO:0019642 anaerobic glycolysis 0 0 11726 GO:0019643 reductive tricarboxylic acid cycle 0 0 11727 GO:0019645 anaerobic electron transport 0 0 11728 GO:0019646 aerobic electron transport 0 0 11729 GO:0019647 formaldehyde assimilation via ribulose monophosphate cycle 0 0 11730 GO:0019648 formaldehyde assimilation via xylulose monophosphate cycle 0 0 11731 GO:0019649 formaldehyde assimilation 0 0 11732 GO:0019650 glucose catabolism to butanediol 0 0 11733 GO:0019651 citrate catabolism to diacetyl 0 0 11734 GO:0019652 lactate fermentation to propionate and acetate 0 0 11735 GO:0019653 anaerobic purine catabolism 0 0 11736 GO:0019654 acetate fermentation 0 0 11737 GO:0019655 glucose catabolism to ethanol 0 0 11738 GO:0019656 glucose catabolism to D-lactate and ethanol 0 0 11739 GO:0019657 pyruvate fermentation to propionate 0 0 11740 GO:0019658 glucose catabolism to lactate and acetate 0 0 11741 GO:0019659 glucose catabolism to lactate 0 0 11742 GO:0019660 glycolytic fermentation 0 0 11743 GO:0019661 glucose catabolism to lactate via pyruvate 0 0 11744 GO:0019662 non-glycolytic fermentation 0 0 11745 GO:0019663 homoacetate catabolism 0 0 11746 GO:0019664 glucose catabolism to mixed acids 0 0 11747 GO:0019665 anaerobic amino acid catabolism 0 0 11748 GO:0019666 nitrogenous compound catabolism 0 0 11749 GO:0019667 anaerobic L-alanine catabolism 0 0 11750 GO:0019668 anaerobic catabolism of pairs of amino acids 0 0 11751 GO:0019669 anaerobic glycine catabolism 0 0 11752 GO:0019670 anaerobic glutamate catabolism 0 0 11753 GO:0019671 glutamate catabolism via mesaconate and citramalate 0 0 11754 GO:0019672 ethanol-acetate fermentation to butyrate and caproate 0 0 11755 GO:0019673 GDP-mannose metabolism 0 0 11756 GO:0019674 NAD metabolism 0 0 11757 GO:0019675 NAD phosphorylation and dephosphorylation (obsolete GO:0019675) 1 0 11758 GO:0019676 ammonia assimilation cycle 0 0 11759 GO:0019677 NAD catabolism 0 0 11760 GO:0019678 propionate metabolism, methylmalonyl pathway 0 0 11761 GO:0019679 propionate metabolism, methylcitrate cycle 0 0 11762 GO:0019680 L-methylmalonyl-CoA biosynthesis 0 0 11763 GO:0019681 acetyl-CoA assimilation pathway 0 0 11764 GO:0019682 glyceraldehyde-3-phosphate metabolism 0 0 11765 GO:0019683 glyceraldehyde-3-phosphate catabolism 0 0 11766 GO:0019684 photosynthesis, light reaction 0 0 11767 GO:0019685 photosynthesis, dark reaction 0 0 11768 GO:0019686 purine nucleoside interconversion 0 0 11769 GO:0019687 pyruvate biosynthesis from acetate 0 0 11770 GO:0019688 purine deoxyribonucleoside interconversion 0 0 11771 GO:0019689 pyrimidine nucleoside interconversion 0 0 11772 GO:0019690 pyrimidine deoxyribonucleoside interconversion 0 0 11773 GO:0019691 UDP-glucose conversion 0 0 11774 GO:0019692 deoxyribose phosphate metabolism 0 0 11775 GO:0019693 ribose phosphate metabolism 0 0 11776 GO:0019694 alkanesulfonate metabolism 0 0 11777 GO:0019695 choline metabolism 0 0 11778 GO:0019696 toluene oxidation via toluene-cis-1,2-dihydrodiol 0 0 11779 GO:0019697 L-xylitol catabolism to xylulose 5-phosphate 0 0 11780 GO:0019698 D-galacturonate catabolism 0 0 11781 GO:0019700 phosphonate catabolism 0 0 11782 GO:0019701 peptidyl-arginine N5-methylation 0 0 11783 GO:0019702 protein-arginine N5-methyltransferase activity 0 0 11784 GO:0019703 coenzyme A-peptidyl-cysteine covalent linking 0 0 11785 GO:0019704 peptidyl-S-myristoyl-L-cysteine biosynthesis from peptidyl-cysteine 0 0 11786 GO:0019705 protein-cysteine S-myristoyltransferase activity 0 0 11787 GO:0019706 protein-cysteine S-palmitoleyltransferase activity 0 0 11788 GO:0019707 protein-cysteine S-acyltransferase activity 0 0 11789 GO:0019708 peptidyl-glycine cholesteryl ester biosynthesis from peptidyl-glycine 0 0 11790 GO:0019709 iron incorporation into iron-sulfur cluster via pentakis-L-cysteinyl L-histidino nickel tetrairon pentasulfide 0 0 11791 GO:0019710 peptidyl-asparagine methylation 0 0 11792 GO:0019711 peptidyl-beta-carboxyaspartic acid biosynthesis from peptidyl-aspartic acid 0 0 11793 GO:0019712 peptidyl-L-glutamic acid 5-methyl ester biosynthesis from glutamic acid 0 0 11794 GO:0019713 peptidyl-L-glutamic acid 5-methyl ester biosynthesis from glutamine 0 0 11795 GO:0019714 peptidyl-glutamine esterification 0 0 11796 GO:0019715 peptidyl-aspartic acid hydroxylation to form L-erythro-beta-hydroxyaspartic acid 0 0 11797 GO:0019716 N-terminal peptidyl-alanine mono-methylation 0 0 11798 GO:0019717 synaptosome 0 0 11799 GO:0019718 rough microsome 0 0 11800 GO:0019719 smooth microsome 0 0 11801 GO:0019720 Mo-molybdopterin cofactor metabolism 0 0 11802 GO:0019722 calcium-mediated signaling 0 0 11803 GO:0019724 B cell mediated immunity 0 0 11804 GO:0019725 cell homeostasis 0 0 11805 GO:0019726 mevaldate reductase (NADPH) activity 0 0 11806 GO:0019727 mevaldate reductase (NAD+) activity 0 0 11807 GO:0019728 peptidyl-allysine oxidation to 2-aminoadipic acid 0 0 11808 GO:0019729 peptide cross-linking via 2-imino-glutaminyl-5-imidazolinone glycine 0 0 11809 GO:0019730 antimicrobial humoral response 0 0 11810 GO:0019731 antibacterial humoral response 0 0 11811 GO:0019732 antifungal humoral response 0 0 11812 GO:0019733 antibacterial humoral response (sensu Vertebrata) 0 0 11813 GO:0019734 antifungal humoral response (sensu Vertebrata) 0 0 11814 GO:0019735 antimicrobial humoral response (sensu Vertebrata) 0 0 11815 GO:0019736 peptidyl-sarcosine incorporation 0 0 11816 GO:0019740 nitrogen utilization 0 0 11817 GO:0019741 pentacyclic triterpenoid catabolism 0 0 11818 GO:0019742 pentacyclic triterpenoid metabolism 0 0 11819 GO:0019743 hopanoid catabolism 0 0 11820 GO:0019744 hopanoid metabolism 0 0 11821 GO:0019745 pentacyclic triterpenoid biosynthesis 0 0 11822 GO:0019746 hopanoid biosynthesis 0 0 11823 GO:0019747 regulation of isoprenoid metabolism 0 0 11824 GO:0019748 secondary metabolism 0 0 11825 GO:0019749 cytoskeleton-dependent cytoplasmic transport, nurse cell to oocyte 0 0 11826 GO:0019750 chloroplast transport 0 0 11827 GO:0019751 polyol metabolism 0 0 11828 GO:0019752 carboxylic acid metabolism 0 0 11829 GO:0019753 one-carbon compound biosynthesis 0 0 11830 GO:0019754 one-carbon compound catabolism 0 0 11831 GO:0019755 one-carbon compound transport 0 0 11832 GO:0019756 cyanogenic glycoside biosynthesis 0 0 11833 GO:0019757 glycosinolate metabolism 0 0 11834 GO:0019758 glycosinolate biosynthesis 0 0 11835 GO:0019759 glycosinolate catabolism 0 0 11836 GO:0019760 glucosinolate metabolism 0 0 11837 GO:0019761 glucosinolate biosynthesis 0 0 11838 GO:0019762 glucosinolate catabolism 0 0 11839 GO:0019763 immunoglobulin receptor activity 0 0 11840 GO:0019764 high affinity Fc receptor activity (obsolete GO:0019764) 1 0 11841 GO:0019765 low affinity Fc receptor activity (obsolete GO:0019765) 1 0 11842 GO:0019766 IgA receptor activity 0 0 11843 GO:0019767 IgE receptor activity 0 0 11844 GO:0019768 high affinity IgE receptor activity 0 0 11845 GO:0019769 low affinity IgE receptor activity 0 0 11846 GO:0019770 IgG receptor activity 0 0 11847 GO:0019771 high affinity IgG receptor activity 0 0 11848 GO:0019772 low affinity IgG receptor activity 0 0 11849 GO:0019773 proteasome core complex, alpha-subunit complex (sensu Eukaryota) 0 0 11850 GO:0019774 proteasome core complex, beta-subunit complex (sensu Eukaryota) 0 0 11851 GO:0019775 FAT10 conjugating enzyme activity 0 0 11852 GO:0019776 APG8 conjugating enzyme activity 0 0 11853 GO:0019777 APG12 conjugating enzyme activity 0 0 11854 GO:0019778 APG12 activating enzyme activity 0 0 11855 GO:0019779 APG8 activating enzyme activity 0 0 11856 GO:0019780 FAT10 activating enzyme activity 0 0 11857 GO:0019781 NEDD8 activating enzyme activity 0 0 11858 GO:0019782 ISG15 activating enzyme activity 0 0 11859 GO:0019783 ubiquitin-like-protein-specific protease activity 0 0 11860 GO:0019784 NEDD8-specific protease activity 0 0 11861 GO:0019785 ISG15-specific protease activity 0 0 11862 GO:0019786 APG8-specific protease activity 0 0 11863 GO:0019787 ubiquitin-like-protein ligase activity 0 0 11864 GO:0019788 NEDD8 ligase activity 0 0 11865 GO:0019789 SUMO ligase activity 0 0 11866 GO:0019790 ubiquitin-like hydrolase activity 0 0 11867 GO:0019791 FAT10 hydrolase activity 0 0 11868 GO:0019792 APG12 hydrolase activity 0 0 11869 GO:0019793 ISG15 carrier activity 0 0 11870 GO:0019794 nonprotein amino acid metabolism 0 0 11871 GO:0019795 nonprotein amino acid biosynthesis 0 0 11872 GO:0019796 nonprotein amino acid catabolism 0 0 11873 GO:0019797 procollagen-proline 3-dioxygenase activity 0 0 11874 GO:0019798 procollagen-proline dioxygenase activity 0 0 11875 GO:0019799 tubulin N-acetyltransferase activity 0 0 11876 GO:0019800 peptide cross-linking via chondroitin 4-sulfate glycosaminoglycan 0 0 11877 GO:0019801 cyclization of asparagine, during protein splicing 0 0 11878 GO:0019802 cyclization of glutamine, during protein splicing 0 0 11879 GO:0019803 peptidyl-aspartic acid carboxylation 0 0 11880 GO:0019804 quinolinate synthetase complex 0 0 11881 GO:0019805 quinolinate biosynthesis 0 0 11882 GO:0019806 bromide peroxidase activity 0 0 11883 GO:0019807 aspartoacylase activity 0 0 11884 GO:0019808 polyamine binding 0 0 11885 GO:0019809 spermidine binding 0 0 11886 GO:0019810 putrescine binding 0 0 11887 GO:0019811 cocaine binding 0 0 11888 GO:0019812 Type I site-specific deoxyribonuclease complex 0 0 11889 GO:0019813 Type III site-specific deoxyribonuclease complex 0 0 11890 GO:0019814 immunoglobulin complex 0 0 11891 GO:0019815 B cell receptor complex 0 0 11892 GO:0019816 B cell receptor accessory molecule complex (obsolete GO:0019816) 1 0 11893 GO:0019817 vesicle fusion with peroxisome 0 0 11894 GO:0019819 P1 peroxisome 0 0 11895 GO:0019820 P2 peroxisome 0 0 11896 GO:0019821 P3 peroxisome 0 0 11897 GO:0019822 P4 peroxisome 0 0 11898 GO:0019823 P5 peroxisome 0 0 11899 GO:0019824 P6 peroxisome 0 0 11900 GO:0019825 oxygen binding 0 0 11901 GO:0019826 oxygen sensor activity 0 0 11902 GO:0019827 stem cell maintenance 0 0 11903 GO:0019828 aspartic-type endopeptidase inhibitor activity 0 0 11904 GO:0019829 cation-transporting ATPase activity 0 0 11905 GO:0019830 cadmium sensitivity/resistance (obsolete GO:0019830) 1 0 11906 GO:0019831 chromate sensitivity/resistance (obsolete GO:0019831) 1 0 11907 GO:0019832 mercuric sensitivity/resistance (obsolete GO:0019832) 1 0 11908 GO:0019833 ice nucleation activity (obsolete GO:0019833) 1 0 11909 GO:0019834 phospholipase A2 inhibitor activity 0 0 11910 GO:0019835 cytolysis 0 0 11911 GO:0019836 hemolysis of host red blood cells 0 0 11912 GO:0019837 herbicide susceptibility/resistance (obsolete GO:0019837) 1 0 11913 GO:0019838 growth factor binding 0 0 11914 GO:0019840 isoprenoid binding 0 0 11915 GO:0019841 retinol binding 0 0 11916 GO:0019842 vitamin binding 0 0 11917 GO:0019843 rRNA binding 0 0 11918 GO:0019844 endotoxin activity (obsolete GO:0019844) 1 0 11919 GO:0019845 exotoxin activity (obsolete GO:0019845) 1 0 11920 GO:0019846 enterotoxin activity (obsolete GO:0019846) 1 0 11921 GO:0019847 neurotoxin activity (obsolete GO:0019847) 1 0 11922 GO:0019848 conotoxin activity (obsolete GO:0019848) 1 0 11923 GO:0019849 cytotoxin activity (obsolete GO:0019849) 1 0 11924 GO:0019851 D-tyrosyl-tRNA hydrolase activity 0 0 11925 GO:0019852 L-ascorbic acid metabolism 0 0 11926 GO:0019853 L-ascorbic acid biosynthesis 0 0 11927 GO:0019854 L-ascorbic acid catabolism 0 0 11928 GO:0019855 calcium channel inhibitor activity 0 0 11929 GO:0019856 pyrimidine base biosynthesis 0 0 11930 GO:0019857 5-methylcytosine metabolism 0 0 11931 GO:0019858 cytosine metabolism 0 0 11932 GO:0019859 thymine metabolism 0 0 11933 GO:0019860 uracil metabolism 0 0 11934 GO:0019861 flagellum 0 0 11935 GO:0019862 IgA binding 0 0 11936 GO:0019863 IgE binding 0 0 11937 GO:0019864 IgG binding 0 0 11938 GO:0019865 immunoglobulin binding 0 0 11939 GO:0019866 organelle inner membrane 0 0 11940 GO:0019867 outer membrane 0 0 11941 GO:0019869 chloride channel inhibitor activity 0 0 11942 GO:0019870 potassium channel inhibitor activity 0 0 11943 GO:0019871 sodium channel inhibitor activity 0 0 11944 GO:0019872 streptomycin biosynthesis 0 0 11945 GO:0019873 tellurium sensitivity/resistance (obsolete GO:0019873) 1 0 11946 GO:0019874 6-aminohexanoate-cyclic-dimer hydrolase activity 0 0 11947 GO:0019875 6-aminohexanoate-dimer hydrolase activity 0 0 11948 GO:0019876 nylon catabolism 0 0 11949 GO:0019877 diaminopimelate biosynthesis 0 0 11950 GO:0019878 lysine biosynthesis via aminoadipic acid 0 0 11951 GO:0019879 peptidyl-thyronine biosynthesis from peptidyl-tyrosine 0 0 11952 GO:0019880 bacteriocin susceptibility/resistance (obsolete GO:0019880) 1 0 11953 GO:0019881 streptomycin susceptibility/resistance (obsolete GO:0019881) 1 0 11954 GO:0019882 antigen presentation 0 0 11955 GO:0019883 antigen presentation, endogenous antigen 0 0 11956 GO:0019884 antigen presentation, exogenous antigen 0 0 11957 GO:0019885 antigen processing, endogenous antigen via MHC class I 0 0 11958 GO:0019886 antigen processing, exogenous antigen via MHC class II 0 0 11959 GO:0019887 protein kinase regulator activity 0 0 11960 GO:0019888 protein phosphatase regulator activity 0 0 11961 GO:0019889 pteridine metabolism 0 0 11962 GO:0019893 DNA replication inhibitor (obsolete GO:0019893) 1 0 11963 GO:0019894 kinesin binding 0 0 11964 GO:0019895 kinesin-associated mitochondrial adaptor activity 0 0 11965 GO:0019896 axon transport of mitochondrion 0 0 11966 GO:0019897 extrinsic to plasma membrane 0 0 11967 GO:0019898 extrinsic to membrane 0 0 11968 GO:0019899 enzyme binding 0 0 11969 GO:0019900 kinase binding 0 0 11970 GO:0019901 protein kinase binding 0 0 11971 GO:0019902 phosphatase binding 0 0 11972 GO:0019903 protein phosphatase binding 0 0 11973 GO:0019904 protein domain specific binding 0 0 11974 GO:0019905 syntaxin binding 0 0 11975 GO:0019907 cyclin-dependent protein kinase activating kinase holoenzyme complex 0 0 11976 GO:0019908 nuclear cyclin-dependent protein kinase holoenzyme complex 0 0 11977 GO:0019909 [pyruvate dehydrogenase (lipoamide)] phosphatase regulator activity 0 0 11978 GO:0019910 pyruvate dehydrogenase (lipoamide) phosphatase complex (sensu Eukaryota) 0 0 11979 GO:0019911 structural constituent of myelin sheath 0 0 11980 GO:0019912 cyclin-dependent protein kinase activating kinase activity 0 0 11981 GO:0019914 cyclin-dependent protein kinase activating kinase regulator activity 0 0 11982 GO:0019915 sequestering of lipid 0 0 11983 GO:0019916 peptidyl-D-alanine racemization, direct 0 0 11984 GO:0019917 peptidyl-D-alanine racemization via peptidyl-L-serine 0 0 11985 GO:0019918 peptidyl-arginine methylation, to symmetrical-dimethyl arginine 0 0 11986 GO:0019919 peptidyl-arginine methylation, to asymmetrical-dimethyl arginine 0 0 11987 GO:0019920 peptidyl-1-thioglycine biosynthesis, internal 0 0 11988 GO:0019921 peptidyl-1-thioglycine biosynthesis, carboxy-terminal 0 0 11989 GO:0019922 protein-chromophore linkage via peptidyl-cysteine 0 0 11990 GO:0019923 alpha-1-microglobulin-chromophore linkage 0 0 11991 GO:0019926 peptidyl-tryptophan oxidation to tryptophyl quinone 0 0 11992 GO:0019927 peptide cross-linking via 4'-(S-L-cysteinyl)-L-tryptophyl quinone 0 0 11993 GO:0019928 peptide cross-linking via 3-(S-L-cysteinyl)-L-aspartic acid 0 0 11994 GO:0019929 peptide cross-linking via 4-(S-L-cysteinyl)-L-glutamic acid 0 0 11995 GO:0019930 cis-14-hydroxy-10,13-dioxo-7-heptadecenoic acid peptidyl-aspartate ester biosynthesis from peptidyl-aspartic acid 0 0 11996 GO:0019931 protein-chromophore linkage via peptidyl-N6-3-dehydroretinal-L-lysine 0 0 11997 GO:0019932 second-messenger-mediated signaling 0 0 11998 GO:0019933 cAMP-mediated signaling 0 0 11999 GO:0019934 cGMP-mediated signaling 0 0 12000 GO:0019935 cyclic-nucleotide-mediated signaling 0 0 12001 GO:0019936 inositol phospholipid-mediated signaling (obsolete GO:0019936) 1 0 12002 GO:0019937 protein catenane formation via N6-(L-isoaspartyl)-L-lysine, autocatalytic 0 0 12003 GO:0019938 peptide cross-linking via N6-(L-isoaspartyl)-L-lysine, presumed catalytic 0 0 12004 GO:0019939 peptidyl-S-palmitoleyl-L-cysteine biosynthesis from peptidyl-cysteine 0 0 12005 GO:0019940 SUMO-dependent protein catabolism (obsolete GO:0019940) 1 0 12006 GO:0019941 modification-dependent protein catabolism 0 0 12007 GO:0019942 NEDD8 class-dependent protein catabolism (obsolete GO:0019942) 1 0 12008 GO:0019948 SUMO activating enzyme activity 0 0 12009 GO:0019949 SUMO conjugating enzyme activity 0 0 12010 GO:0019950 SMT3-dependent protein catabolism 0 0 12011 GO:0019951 Smt3-protein conjugation 0 0 12012 GO:0019953 sexual reproduction 0 0 12013 GO:0019954 asexual reproduction 0 0 12014 GO:0019955 cytokine binding 0 0 12015 GO:0019956 chemokine binding 0 0 12016 GO:0019957 C-C chemokine binding 0 0 12017 GO:0019958 C-X-C chemokine binding 0 0 12018 GO:0019959 interleukin-8 binding 0 0 12019 GO:0019960 C-X3-C chemokine binding 0 0 12020 GO:0019961 interferon binding 0 0 12021 GO:0019962 interferon-alpha/beta binding 0 0 12022 GO:0019964 interferon-gamma binding 0 0 12023 GO:0019965 interleukin binding 0 0 12024 GO:0019966 interleukin-1 binding 0 0 12025 GO:0019967 interleukin-1, Type I, activating binding 0 0 12026 GO:0019968 interleukin-1, Type II, blocking binding 0 0 12027 GO:0019969 interleukin-10 binding 0 0 12028 GO:0019970 interleukin-11 binding 0 0 12029 GO:0019972 interleukin-12 binding 0 0 12030 GO:0019973 interleukin-13 binding 0 0 12031 GO:0019974 interleukin-14 binding 0 0 12032 GO:0019975 interleukin-17 binding 0 0 12033 GO:0019976 interleukin-2 binding 0 0 12034 GO:0019977 interleukin-21 binding 0 0 12035 GO:0019978 interleukin-3 binding 0 0 12036 GO:0019979 interleukin-4 binding 0 0 12037 GO:0019980 interleukin-5 binding 0 0 12038 GO:0019981 interleukin-6 binding 0 0 12039 GO:0019982 interleukin-7 binding 0 0 12040 GO:0019983 interleukin-9 binding 0 0 12041 GO:0019984 sigma DNA polymerase activity 0 0 12042 GO:0019985 bypass DNA synthesis 0 0 12043 GO:0019987 negative regulation of anti-apoptosis 0 0 12044 GO:0019988 charged-tRNA modification 0 0 12045 GO:0019990 pteridine catabolism 0 0 12046 GO:0019991 septate junction assembly 0 0 12047 GO:0019992 diacylglycerol binding 0 0 12048 GO:0020002 host cell plasma membrane 0 0 12049 GO:0020003 parasitophorous vacuole 0 0 12050 GO:0020004 parasitophorous vacuolar space 0 0 12051 GO:0020005 parasitophorous vacuolar membrane 0 0 12052 GO:0020006 parasitophorous vacuolar membrane network 0 0 12053 GO:0020007 apical complex 0 0 12054 GO:0020008 rhoptry 0 0 12055 GO:0020009 microneme 0 0 12056 GO:0020010 conoid 0 0 12057 GO:0020011 apicoplast 0 0 12058 GO:0020012 evasion of host immune response 0 0 12059 GO:0020013 rosetting 0 0 12060 GO:0020014 schizogony 0 0 12061 GO:0020015 glycosome 0 0 12062 GO:0020016 flagellar pocket 0 0 12063 GO:0020017 flagellar membrane 0 0 12064 GO:0020018 flagellar pocket membrane 0 0 12065 GO:0020020 food vacuole 0 0 12066 GO:0020021 immortalization of host cell 0 0 12067 GO:0020022 acidocalcisome 0 0 12068 GO:0020023 kinetoplast 0 0 12069 GO:0020025 subpellicular microtubule 0 0 12070 GO:0020026 dense granule (sensu Apicomplexa) 0 0 12071 GO:0020027 hemoglobin metabolism 0 0 12072 GO:0020028 hemoglobin import 0 0 12073 GO:0020030 infected host cell surface knob 0 0 12074 GO:0020031 polar ring of apical complex 0 0 12075 GO:0020032 basal ring of apical complex 0 0 12076 GO:0020033 antigenic variation 0 0 12077 GO:0020035 cytoadherence to microvasculature, mediated by parasite protein 0 0 12078 GO:0020036 Maurer's cleft 0 0 12079 GO:0020037 heme binding 0 0 12080 GO:0020038 subpellicular network 0 0 12081 GO:0020039 pellicle 0 0 12082 GO:0030001 metal ion transport 0 0 12083 GO:0030002 anion homeostasis 0 0 12084 GO:0030003 cation homeostasis 0 0 12085 GO:0030004 monovalent inorganic cation homeostasis 0 0 12086 GO:0030005 di-, tri-valent inorganic cation homeostasis 0 0 12087 GO:0030006 heavy metal ion homeostasis (obsolete GO:0030006) 1 0 12088 GO:0030007 potassium ion homeostasis 0 0 12089 GO:0030008 TRAPP complex 0 0 12090 GO:0030009 complement factor H activity (obsolete GO:0030009) 1 0 12091 GO:0030010 establishment of cell polarity 0 0 12092 GO:0030011 maintenance of cell polarity 0 0 12093 GO:0030014 CCR4-NOT complex 0 0 12094 GO:0030015 CCR4-NOT core complex 0 0 12095 GO:0030016 myofibril 0 0 12096 GO:0030017 sarcomere 0 0 12097 GO:0030018 Z disc 0 0 12098 GO:0030019 tryptase activity 0 0 12099 GO:0030020 extracellular matrix structural constituent conferring tensile strength 0 0 12100 GO:0030021 extracellular matrix structural constituent conferring compression resistance 0 0 12101 GO:0030022 adhesive extracellular matrix constituent (obsolete GO:0030022) 1 0 12102 GO:0030023 extracellular matrix constituent conferring elasticity 0 0 12103 GO:0030026 manganese ion homeostasis 0 0 12104 GO:0030027 lamellipodium 0 0 12105 GO:0030029 actin filament-based process 0 0 12106 GO:0030030 cell projection organization and biogenesis 0 0 12107 GO:0030031 cell projection biogenesis 0 0 12108 GO:0030032 lamellipodium biogenesis 0 0 12109 GO:0030033 microvillus biogenesis 0 0 12110 GO:0030034 microvillar actin bundle formation 0 0 12111 GO:0030035 microspike biogenesis 0 0 12112 GO:0030036 actin cytoskeleton organization and biogenesis 0 0 12113 GO:0030037 actin filament reorganization during cell cycle 0 0 12114 GO:0030038 contractile actin filament bundle formation 0 0 12115 GO:0030039 DNA unwinding factor (obsolete GO:0030039) 1 0 12116 GO:0030041 actin filament polymerization 0 0 12117 GO:0030042 actin filament depolymerization 0 0 12118 GO:0030043 actin filament fragmentation 0 0 12119 GO:0030046 parallel actin filament bundle formation 0 0 12120 GO:0030047 actin modification 0 0 12121 GO:0030048 actin filament-based movement 0 0 12122 GO:0030049 muscle filament sliding 0 0 12123 GO:0030050 vesicle transport along actin filament 0 0 12124 GO:0030051 FK506-sensitive peptidyl-prolyl cis-trans isomerase (obsolete GO:0030051) 1 0 12125 GO:0030052 parvulin (obsolete GO:0030052) 1 0 12126 GO:0030053 immunophilin (obsolete GO:0030053) 1 0 12127 GO:0030054 cell junction 0 0 12128 GO:0030055 cell-matrix junction 0 0 12129 GO:0030056 hemidesmosome 0 0 12130 GO:0030057 desmosome 0 0 12131 GO:0030058 amine dehydrogenase activity 0 0 12132 GO:0030059 aralkylamine dehydrogenase activity 0 0 12133 GO:0030060 L-malate dehydrogenase activity 0 0 12134 GO:0030061 mitochondrial crista 0 0 12135 GO:0030062 tricarboxylic acid cycle enzyme complex (sensu Eukaryota) 0 0 12136 GO:0030063 murein sacculus (obsolete GO:0030063) 1 0 12137 GO:0030064 cell wall inner membrane (obsolete GO:0030064) 1 0 12138 GO:0030065 chlorite dismutase activity 0 0 12139 GO:0030066 cytochrome b6 (obsolete GO:0030066) 1 0 12140 GO:0030067 respiratory chain cytochrome b6 (obsolete GO:0030067) 1 0 12141 GO:0030068 lytic viral life cycle (obsolete GO:0030068) 1 0 12142 GO:0030069 lysogeny 0 0 12143 GO:0030070 insulin processing 0 0 12144 GO:0030071 regulation of mitotic metaphase/anaphase transition 0 0 12145 GO:0030072 peptide hormone secretion 0 0 12146 GO:0030073 insulin secretion 0 0 12147 GO:0030074 thylakoid (sensu Proteobacteria) (obsolete GO:0030074) 1 0 12148 GO:0030075 thylakoid (sensu Cyanobacteria) 0 0 12149 GO:0030076 light-harvesting complex 0 0 12150 GO:0030077 light-harvesting complex (sensu Proteobacteria) 0 0 12151 GO:0030078 light-harvesting complex, core complex 0 0 12152 GO:0030079 light-harvesting complex, peripheral complex 0 0 12153 GO:0030080 B875 antenna complex 0 0 12154 GO:0030081 B800-820 antenna complex 0 0 12155 GO:0030082 B800-850 antenna complex 0 0 12156 GO:0030083 PSI associated light-harvesting complex I, LHCIa subcomplex 0 0 12157 GO:0030084 PSI associated light-harvesting complex I, LHCIb subcomplex 0 0 12158 GO:0030085 PSII associated light-harvesting complex II, peripheral complex, LHCIIb subcomplex 0 0 12159 GO:0030086 PSII associated light-harvesting complex II, core complex, LHCIIa subcomplex (obsolete GO:0030086) 1 0 12160 GO:0030087 PSII associated light-harvesting complex II, core complex, LHCIIc subcomplex (obsolete GO:0030087) 1 0 12161 GO:0030088 PSII associated light-harvesting complex II, core complex, LHCIId subcomplex (obsolete GO:0030088) 1 0 12162 GO:0030089 phycobilisome 0 0 12163 GO:0030090 reaction center (sensu Proteobacteria) 0 0 12164 GO:0030091 protein repair 0 0 12165 GO:0030092 regulation of flagellum biogenesis 0 0 12166 GO:0030093 photosystem I (sensu Viridiplantae) 0 0 12167 GO:0030094 photosystem I (sensu Cyanobacteria) 0 0 12168 GO:0030095 photosystem II (sensu Viridiplantae) 0 0 12169 GO:0030096 photosystem II (sensu Cyanobacteria) 0 0 12170 GO:0030097 hemopoiesis 0 0 12171 GO:0030098 lymphocyte differentiation 0 0 12172 GO:0030099 myeloid cell differentiation 0 0 12173 GO:0030100 regulation of endocytosis 0 0 12174 GO:0030101 natural killer cell activation 0 0 12175 GO:0030102 negative regulation of natural killer cell activity 0 0 12176 GO:0030103 vasopressin secretion 0 0 12177 GO:0030104 water homeostasis 0 0 12178 GO:0030105 anaphylaxis (obsolete GO:0030105) 1 0 12179 GO:0030106 MHC class I receptor activity 0 0 12180 GO:0030107 HLA-A specific inhibitory MHC class I receptor activity 0 0 12181 GO:0030108 HLA-A specific activating MHC class I receptor activity 0 0 12182 GO:0030109 HLA-B specific inhibitory MHC class I receptor activity 0 0 12183 GO:0030110 HLA-C specific inhibitory MHC class I receptor activity 0 0 12184 GO:0030111 regulation of Wnt receptor signaling pathway 0 0 12185 GO:0030112 glycocalyx 0 0 12186 GO:0030113 capsule (sensu Bacteria) 0 0 12187 GO:0030114 slime layer 0 0 12188 GO:0030115 S-layer 0 0 12189 GO:0030116 glial cell line-derived neurotrophic factor receptor binding 0 0 12190 GO:0030117 membrane coat 0 0 12191 GO:0030118 clathrin coat 0 0 12192 GO:0030119 membrane coat adaptor complex 0 0 12193 GO:0030120 vesicle coat 0 0 12194 GO:0030121 AP-1 adaptor complex 0 0 12195 GO:0030122 AP-2 adaptor complex 0 0 12196 GO:0030123 AP-3 adaptor complex 0 0 12197 GO:0030124 AP-4 adaptor complex 0 0 12198 GO:0030125 clathrin vesicle coat 0 0 12199 GO:0030126 COPI vesicle coat 0 0 12200 GO:0030127 COPII vesicle coat 0 0 12201 GO:0030128 clathrin coat of endocytic vesicle 0 0 12202 GO:0030129 clathrin coat of synaptic vesicle 0 0 12203 GO:0030130 clathrin coat of trans-Golgi network vesicle 0 0 12204 GO:0030131 clathrin adaptor complex 0 0 12205 GO:0030132 clathrin coat of coated pit 0 0 12206 GO:0030133 transport vesicle 0 0 12207 GO:0030134 ER to Golgi transport vesicle 0 0 12208 GO:0030135 coated vesicle 0 0 12209 GO:0030136 clathrin-coated vesicle 0 0 12210 GO:0030137 COPI-coated vesicle 0 0 12211 GO:0030139 endocytic vesicle 0 0 12212 GO:0030140 trans-Golgi network transport vesicle 0 0 12213 GO:0030141 secretory granule 0 0 12214 GO:0030142 Golgi to ER transport vesicle 0 0 12215 GO:0030143 inter-Golgi transport vesicle 0 0 12216 GO:0030144 alpha-1,6-mannosyl-glycoprotein 6-beta-N-acetylglucosaminyltransferase activity 0 0 12217 GO:0030145 manganese ion binding 0 0 12218 GO:0030146 diuresis 0 0 12219 GO:0030147 natriuresis 0 0 12220 GO:0030148 sphingolipid biosynthesis 0 0 12221 GO:0030149 sphingolipid catabolism 0 0 12222 GO:0030150 protein import into mitochondrial matrix 0 0 12223 GO:0030151 molybdenum ion binding 0 0 12224 GO:0030152 bacteriocin biosynthesis 0 0 12225 GO:0030153 bacteriocin immunity 0 0 12226 GO:0030154 cell differentiation 0 0 12227 GO:0030155 regulation of cell adhesion 0 0 12228 GO:0030156 benzodiazepine receptor binding 0 0 12229 GO:0030157 pancreatic juice secretion 0 0 12230 GO:0030158 protein xylosyltransferase activity 0 0 12231 GO:0030159 receptor signaling complex scaffold activity 0 0 12232 GO:0030160 GKAP/Homer scaffold activity 0 0 12233 GO:0030161 calpain inhibitor activity 0 0 12234 GO:0030162 regulation of proteolysis 0 0 12235 GO:0030163 protein catabolism 0 0 12236 GO:0030164 protein denaturation 0 0 12237 GO:0030165 PDZ domain binding 0 0 12238 GO:0030166 proteoglycan biosynthesis 0 0 12239 GO:0030167 proteoglycan catabolism 0 0 12240 GO:0030168 platelet activation 0 0 12241 GO:0030169 low-density lipoprotein binding 0 0 12242 GO:0030170 pyridoxal phosphate binding 0 0 12243 GO:0030171 voltage-gated proton channel activity 0 0 12244 GO:0030172 troponin C binding 0 0 12245 GO:0030173 integral to Golgi membrane 0 0 12246 GO:0030174 regulation of DNA replication initiation 0 0 12247 GO:0030175 filopodium 0 0 12248 GO:0030176 integral to endoplasmic reticulum membrane 0 0 12249 GO:0030177 positive regulation of Wnt receptor signaling pathway 0 0 12250 GO:0030178 negative regulation of Wnt receptor signaling pathway 0 0 12251 GO:0030180 solute:solute exchange (obsolete GO:0030180) 1 0 12252 GO:0030181 sodium:calcium exchange (obsolete GO:0030181) 1 0 12253 GO:0030182 neuron differentiation 0 0 12254 GO:0030183 B cell differentiation 0 0 12255 GO:0030184 nitric oxide transporter activity 0 0 12256 GO:0030185 nitric oxide transport 0 0 12257 GO:0030186 melatonin metabolism 0 0 12258 GO:0030187 melatonin biosynthesis 0 0 12259 GO:0030188 chaperone regulator activity 0 0 12260 GO:0030189 chaperone activator activity 0 0 12261 GO:0030190 chaperone inhibitor activity 0 0 12262 GO:0030191 Hsp70/Hsc70 protein inhibitor activity 0 0 12263 GO:0030192 Hsp70/Hsc70 protein regulator activity 0 0 12264 GO:0030193 regulation of blood coagulation 0 0 12265 GO:0030194 positive regulation of blood coagulation 0 0 12266 GO:0030195 negative regulation of blood coagulation 0 0 12267 GO:0030196 cyanide hydratase activity 0 0 12268 GO:0030197 extracellular matrix constituent, lubricant activity 0 0 12269 GO:0030198 extracellular matrix organization and biogenesis 0 0 12270 GO:0030199 collagen fibril organization 0 0 12271 GO:0030200 heparan sulfate proteoglycan catabolism 0 0 12272 GO:0030201 heparan sulfate proteoglycan metabolism 0 0 12273 GO:0030202 heparin metabolism 0 0 12274 GO:0030203 glycosaminoglycan metabolism 0 0 12275 GO:0030204 chondroitin sulfate metabolism 0 0 12276 GO:0030205 dermatan sulfate metabolism 0 0 12277 GO:0030206 chondroitin sulfate biosynthesis 0 0 12278 GO:0030207 chondroitin sulfate catabolism 0 0 12279 GO:0030208 dermatan sulfate biosynthesis 0 0 12280 GO:0030209 dermatan sulfate catabolism 0 0 12281 GO:0030210 heparin biosynthesis 0 0 12282 GO:0030211 heparin catabolism 0 0 12283 GO:0030212 hyaluronan metabolism 0 0 12284 GO:0030213 hyaluronan biosynthesis 0 0 12285 GO:0030214 hyaluronan catabolism 0 0 12286 GO:0030215 semaphorin receptor binding 0 0 12287 GO:0030216 keratinocyte differentiation 0 0 12288 GO:0030217 T cell differentiation 0 0 12289 GO:0030218 erythrocyte differentiation 0 0 12290 GO:0030219 megakaryocyte differentiation 0 0 12291 GO:0030220 platelet formation 0 0 12292 GO:0030221 basophil differentiation 0 0 12293 GO:0030222 eosinophil differentiation 0 0 12294 GO:0030223 neutrophil differentiation 0 0 12295 GO:0030224 monocyte differentiation 0 0 12296 GO:0030225 macrophage differentiation 0 0 12297 GO:0030226 apolipoprotein receptor activity 0 0 12298 GO:0030227 apolipoprotein E receptor activity 0 0 12299 GO:0030228 lipoprotein receptor activity 0 0 12300 GO:0030229 very-low-density lipoprotein receptor activity 0 0 12301 GO:0030232 insulin control element activator complex 0 0 12302 GO:0030233 deoxynucleotide transporter activity 0 0 12303 GO:0030234 enzyme regulator activity 0 0 14662 GO:0042151 nematocyst 0 0 14663 GO:0042152 RNA-mediated DNA recombination 0 0 14664 GO:0042153 RPTP-like protein binding 0 0 14665 GO:0042154 attenuation of antimicrobial humoral response (sensu Protostomia) 0 0 14666 GO:0042155 attenuation of antimicrobial humoral response (sensu Vertebrata) 0 0 14667 GO:0042156 zinc-mediated transcriptional activator activity 0 0 14668 GO:0042157 lipoprotein metabolism 0 0 14669 GO:0042158 lipoprotein biosynthesis 0 0 14670 GO:0042159 lipoprotein catabolism 0 0 14671 GO:0042160 lipoprotein modification 0 0 14672 GO:0042161 lipoprotein oxidation 0 0 14673 GO:0042162 telomeric DNA binding 0 0 14674 GO:0042163 interleukin-12 beta subunit binding 0 0 14675 GO:0042164 interleukin-12 alpha subunit binding 0 0 14676 GO:0042165 neurotransmitter binding 0 0 14677 GO:0042166 acetylcholine binding 0 0 14678 GO:0042167 heme catabolism 0 0 14679 GO:0042168 heme metabolism 0 0 14680 GO:0042169 SH2 domain binding 0 0 14681 GO:0042170 plastid membrane 0 0 14682 GO:0042171 lysophosphatidic acid acyltransferase activity 0 0 14683 GO:0042173 regulation of sporulation 0 0 14684 GO:0042174 negative regulation of sporulation 0 0 14685 GO:0042175 nuclear envelope-endoplasmic reticulum network 0 0 14686 GO:0042176 regulation of protein catabolism 0 0 14687 GO:0042177 negative regulation of protein catabolism 0 0 14688 GO:0042178 xenobiotic catabolism 0 0 14689 GO:0042179 nicotine biosynthesis 0 0 14690 GO:0042180 ketone metabolism 0 0 14691 GO:0042181 ketone biosynthesis 0 0 14692 GO:0042182 ketone catabolism 0 0 14693 GO:0042183 formate catabolism 0 0 14694 GO:0042184 xylene catabolism 0 0 14695 GO:0042185 m-xylene catabolism 0 0 14696 GO:0042186 o-xylene catabolism 0 0 14697 GO:0042187 p-xylene catabolism 0 0 14698 GO:0042188 1,1,1-trichloro-2,2-bis-(4-chlorophenyl)ethane catabolism 0 0 14699 GO:0042189 vanillin biosynthesis 0 0 14700 GO:0042190 vanillin catabolism 0 0 14701 GO:0042191 methylmercury metabolism 0 0 14702 GO:0042192 methylmercury biosynthesis 0 0 14703 GO:0042193 methylmercury catabolism 0 0 14704 GO:0042194 quinate biosynthesis 0 0 14705 GO:0042195 aerobic gallate catabolism 0 0 14706 GO:0042196 chlorinated hydrocarbon metabolism 0 0 14707 GO:0042197 halogenated hydrocarbon metabolism 0 0 14708 GO:0042198 nylon metabolism 0 0 14709 GO:0042199 cyanuric acid metabolism 0 0 14710 GO:0042200 cyanuric acid catabolism 0 0 14711 GO:0042201 N-cyclopropylmelamine metabolism 0 0 14712 GO:0042202 N-cyclopropylmelamine catabolism 0 0 14713 GO:0042203 toluene catabolism 0 0 14714 GO:0042204 s-triazine compound catabolism 0 0 14715 GO:0042205 chlorinated hydrocarbon catabolism 0 0 14716 GO:0042206 halogenated hydrocarbon catabolism 0 0 14717 GO:0042207 styrene catabolism 0 0 14718 GO:0042208 propylene catabolism 0 0 14719 GO:0042209 orcinol catabolism 0 0 14720 GO:0042210 octamethylcyclotetrasiloxane catabolism to dimethylsilanediol 0 0 14721 GO:0042211 dimethylsilanediol catabolism 0 0 14722 GO:0042212 cresol metabolism 0 0 14723 GO:0042213 m-cresol catabolism 0 0 14724 GO:0042214 terpene metabolism 0 0 14725 GO:0042215 anaerobic phenol metabolism 0 0 14726 GO:0042216 phenanthrene catabolism 0 0 14727 GO:0042217 1-aminocyclopropane-1-carboxylate catabolism 0 0 14728 GO:0042218 1-aminocyclopropane-1-carboxylate biosynthesis 0 0 14729 GO:0042219 amino acid derivative catabolism 0 0 14730 GO:0042220 response to cocaine 0 0 14731 GO:0042221 response to chemical stimulus 0 0 14732 GO:0042222 interleukin-1 biosynthesis 0 0 14733 GO:0042223 interleukin-3 biosynthesis 0 0 14734 GO:0042225 interleukin-5 biosynthesis 0 0 14735 GO:0042226 interleukin-6 biosynthesis 0 0 14736 GO:0042227 interleukin-7 biosynthesis 0 0 14737 GO:0042228 interleukin-8 biosynthesis 0 0 14738 GO:0042229 interleukin-9 biosynthesis 0 0 14739 GO:0042230 interleukin-11 biosynthesis 0 0 14740 GO:0042231 interleukin-13 biosynthesis 0 0 14741 GO:0042232 interleukin-14 biosynthesis 0 0 14742 GO:0042233 interleukin-15 biosynthesis 0 0 14743 GO:0042234 interleukin-16 biosynthesis 0 0 14744 GO:0042235 interleukin-17 biosynthesis 0 0 14745 GO:0042236 interleukin-19 biosynthesis 0 0 14746 GO:0042237 interleukin-20 biosynthesis 0 0 14747 GO:0042238 interleukin-21 biosynthesis 0 0 14748 GO:0042239 interleukin-22 biosynthesis 0 0 14749 GO:0042240 interleukin-23 biosynthesis 0 0 14750 GO:0042241 interleukin-18 biosynthesis 0 0 14751 GO:0042242 cobyrinic acid a,c-diamide synthase activity 0 0 14752 GO:0042243 spore wall assembly (sensu Bacteria) 0 0 14753 GO:0042244 spore wall assembly 0 0 14754 GO:0042245 RNA repair 0 0 14755 GO:0042246 tissue regeneration 0 0 14756 GO:0042247 establishment of polarity of follicular epithelium 0 0 14757 GO:0042248 maintenance of polarity of follicular epithelium 0 0 14758 GO:0042249 establishment of polarity of embryonic epithelium 0 0 14759 GO:0042250 maintenance of polarity of embryonic epithelium 0 0 14760 GO:0042251 maintenance of polarity of larval imaginal disc epithelium 0 0 14761 GO:0042252 establishment of polarity of larval imaginal disc epithelium 0 0 14762 GO:0042253 granulocyte macrophage colony-stimulating factor biosynthesis 0 0 14763 GO:0042254 ribosome biogenesis and assembly 0 0 14764 GO:0042255 ribosome assembly 0 0 14765 GO:0042256 mature ribosome assembly 0 0 14766 GO:0042257 ribosomal subunit assembly 0 0 14767 GO:0042258 molybdenum incorporation via L-serinyl molybdopterin guanine dinucleotide 0 0 14768 GO:0042259 peptidyl-L-beta-methylthioasparagine biosynthesis from peptidyl-asparagine 0 0 14769 GO:0042262 DNA protection 0 0 14770 GO:0042263 neuropeptide F receptor activity 0 0 14771 GO:0042264 peptidyl-aspartic acid hydroxylation 0 0 14772 GO:0042265 peptidyl-asparagine hydroxylation 0 0 14773 GO:0042267 natural killer cell mediated cytotoxicity 0 0 14774 GO:0042268 regulation of cytolysis 0 0 14775 GO:0042269 regulation of natural killer cell mediated cytotoxicity 0 0 14776 GO:0042270 protection from natural killer cell mediated cytotoxicity 0 0 14777 GO:0042271 susceptibility to natural killer cell mediated cytotoxicity 0 0 14778 GO:0042272 nuclear RNA export factor complex 0 0 14779 GO:0042273 ribosomal large subunit biogenesis 0 0 14780 GO:0042274 ribosomal small subunit biogenesis 0 0 14781 GO:0042275 error-free postreplication DNA repair 0 0 14782 GO:0042276 error-prone postreplication DNA repair 0 0 14783 GO:0042277 peptide binding 0 0 14784 GO:0042278 purine nucleoside metabolism 0 0 14785 GO:0042279 nitrite reductase (cytochrome, ammonia-forming) activity 0 0 14786 GO:0042280 cell surface antigen activity, host-interacting (obsolete GO:0042280) 1 0 14787 GO:0042281 dolichyl pyrophosphate Man9GlcNAc2 alpha-1,3-glucosyltransferase activity 0 0 14788 GO:0042282 hydroxymethylglutaryl-CoA reductase activity 0 0 14789 GO:0042283 dolichyl pyrophosphate Glc1Man9GlcNAc2 alpha-1,3-glucosyltransferase activity 0 0 14790 GO:0042284 sphingolipid delta-4 desaturase activity 0 0 14791 GO:0042285 xylosyltransferase activity 0 0 14792 GO:0042286 glutamate-1-semialdehyde 2,1-aminomutase activity 0 0 14793 GO:0042287 MHC protein binding 0 0 14794 GO:0042288 MHC class I protein binding 0 0 14795 GO:0042289 MHC class II protein binding 0 0 14796 GO:0042290 URM1 hydrolase activity 0 0 14797 GO:0042291 Hub1 hydrolase activity 0 0 14798 GO:0042292 URM1 activating enzyme activity 0 0 14799 GO:0042293 Hub1 activating enzyme activity 0 0 14800 GO:0042294 URM1 conjugating enzyme activity 0 0 14801 GO:0042296 ISG15 conjugating enzyme activity 0 0 14802 GO:0042297 vocal learning 0 0 14803 GO:0042299 lupeol synthase activity 0 0 14804 GO:0042300 beta-amyrin synthase activity 0 0 14805 GO:0042301 phosphate binding 0 0 14806 GO:0042302 structural constituent of cuticle 0 0 14807 GO:0042303 molting cycle 0 0 14808 GO:0042304 regulation of fatty acid biosynthesis 0 0 14809 GO:0042305 specification of segmental identity, mandibular segment 0 0 14810 GO:0042306 regulation of protein import into nucleus 0 0 14811 GO:0042307 positive regulation of protein import into nucleus 0 0 14812 GO:0042308 negative regulation of protein import into nucleus 0 0 14813 GO:0042309 homoiothermy 0 0 14814 GO:0042310 vasoconstriction 0 0 14815 GO:0042311 vasodilation 0 0 14816 GO:0042312 regulation of vasodilation 0 0 14817 GO:0042313 protein kinase C deactivation 0 0 14818 GO:0042314 bacteriochlorophyll binding 0 0 14819 GO:0042315 cytosol nonspecific dipeptidase activity 0 0 14820 GO:0042316 penicillin metabolism 0 0 14821 GO:0042317 penicillin catabolism 0 0 14822 GO:0042318 penicillin biosynthesis 0 0 14823 GO:0042320 regulation of circadian sleep/wake cycle, REM sleep 0 0 14824 GO:0042321 negative regulation of circadian sleep/wake cycle, sleep 0 0 14825 GO:0042322 negative regulation of circadian sleep/wake cycle, REM sleep 0 0 14826 GO:0042323 negative regulation of circadian sleep/wake cycle, non-REM sleep 0 0 14827 GO:0042324 hypocretin receptor binding 0 0 14828 GO:0042325 regulation of phosphorylation 0 0 14829 GO:0042326 negative regulation of phosphorylation 0 0 14830 GO:0042327 positive regulation of phosphorylation 0 0 14831 GO:0042328 heparan sulfate N-acetylglucosaminyltransferase activity 0 0 14832 GO:0042329 structural constituent of cuticle (sensu Nematoda) 0 0 14833 GO:0042330 taxis 0 0 14834 GO:0042331 phototaxis 0 0 14835 GO:0042332 gravitaxis 0 0 14836 GO:0042333 chemotaxis to oxidizable substrate 0 0 14837 GO:0042334 taxis to electron acceptor 0 0 14838 GO:0042335 cuticle biosynthesis 0 0 14839 GO:0042336 cuticle biosynthesis during molting (sensu Protostomia and Nematoda) 0 0 14840 GO:0042337 cuticle biosynthesis during molting (sensu Insecta) 0 0 14841 GO:0042338 cuticle biosynthesis during molting (sensu Nematoda) 0 0 14842 GO:0042339 keratan sulfate metabolism 0 0 14843 GO:0042340 keratan sulfate catabolism 0 0 14844 GO:0042341 cyanogenic glycoside metabolism 0 0 14845 GO:0042342 cyanogenic glycoside catabolism 0 0 14846 GO:0042343 indole glucosinolate metabolism 0 0 14847 GO:0042344 indole glucosinolate catabolism 0 0 14848 GO:0042345 regulation of NF-kappaB import into nucleus 0 0 14849 GO:0042346 positive regulation of NF-kappaB import into nucleus 0 0 14850 GO:0042347 negative regulation of NF-kappaB import into nucleus 0 0 14851 GO:0042348 NF-kappaB import into nucleus 0 0 14852 GO:0042349 guiding stereospecific synthesis activity 0 0 14853 GO:0042350 GDP-L-fucose biosynthesis 0 0 14854 GO:0042351 'de novo' GDP-L-fucose biosynthesis 0 0 14855 GO:0042352 GDP-L-fucose salvage 0 0 14856 GO:0042353 fucose biosynthesis 0 0 14857 GO:0042354 L-fucose metabolism 0 0 14858 GO:0042355 L-fucose catabolism 0 0 14859 GO:0042356 GDP-4-dehydro-D-rhamnose reductase activity 0 0 14860 GO:0042357 thiamin diphosphate metabolism 0 0 14861 GO:0042358 thiamin diphosphate catabolism 0 0 14862 GO:0042359 vitamin D metabolism 0 0 14863 GO:0042360 vitamin E metabolism 0 0 14864 GO:0042361 menaquinone catabolism 0 0 14865 GO:0042362 fat-soluble vitamin biosynthesis 0 0 14866 GO:0042363 fat-soluble vitamin catabolism 0 0 14867 GO:0042364 water-soluble vitamin biosynthesis 0 0 14868 GO:0042365 water-soluble vitamin catabolism 0 0 14869 GO:0042366 cobalamin catabolism 0 0 14870 GO:0042367 biotin catabolism 0 0 14871 GO:0042368 vitamin D biosynthesis 0 0 14872 GO:0042369 vitamin D catabolism 0 0 14873 GO:0042370 thiamin diphosphate dephosphorylation 0 0 14874 GO:0042371 vitamin K biosynthesis 0 0 14875 GO:0042372 phylloquinone biosynthesis 0 0 14876 GO:0042373 vitamin K metabolism 0 0 14877 GO:0042374 phylloquinone metabolism 0 0 14878 GO:0042375 quinone cofactor metabolism 0 0 14879 GO:0042376 phylloquinone catabolism 0 0 14880 GO:0042377 vitamin K catabolism 0 0 14881 GO:0042378 quinone cofactor catabolism 0 0 14882 GO:0042379 chemokine receptor binding 0 0 14883 GO:0042380 hydroxymethylbutenyl pyrophosphate reductase activity 0 0 14884 GO:0042381 hemolymph coagulation 0 0 14885 GO:0042382 paraspeckles 0 0 14886 GO:0042383 sarcolemma 0 0 14887 GO:0042384 cilium biogenesis 0 0 14888 GO:0042385 myosin III 0 0 14889 GO:0042386 hemocyte differentiation (sensu Arthropoda) 0 0 14890 GO:0042387 plasmatocyte differentiation 0 0 14891 GO:0042388 gibberellic acid mediated signaling, G-alpha-dependent 0 0 14892 GO:0042389 omega-3 fatty acid desaturase activity 0 0 14893 GO:0042390 gibberellic acid mediated signaling, G-alpha-independent 0 0 14894 GO:0042391 regulation of membrane potential 0 0 14895 GO:0042392 sphingosine-1-phosphate phosphatase activity 0 0 14896 GO:0042393 histone binding 0 0 14897 GO:0042394 ecdysis (sensu Protostomia and Nematoda) 0 0 14898 GO:0042395 ecdysis (sensu Nematoda) 0 0 14899 GO:0042396 phosphagen biosynthesis 0 0 14900 GO:0042397 phosphagen catabolism 0 0 14901 GO:0042398 amino acid derivative biosynthesis 0 0 14902 GO:0042399 ectoine metabolism 0 0 14903 GO:0042400 ectoine catabolism 0 0 14904 GO:0042401 biogenic amine biosynthesis 0 0 14905 GO:0042402 biogenic amine catabolism 0 0 14906 GO:0042403 thyroid hormone metabolism 0 0 14907 GO:0042404 thyroid hormone catabolism 0 0 14908 GO:0042405 nuclear inclusion body 0 0 14909 GO:0042406 extrinsic to endoplasmic reticulum membrane 0 0 14910 GO:0042407 cristae formation 0 0 14911 GO:0042408 myrcene/(E)-beta-ocimene synthase activity 0 0 14912 GO:0042409 caffeoyl-CoA O-methyltransferase activity 0 0 14913 GO:0042410 6-carboxyhexanoate-CoA ligase activity 0 0 14914 GO:0042411 beta-carotene hydroxylase activity 0 0 14915 GO:0042412 taurine biosynthesis 0 0 14916 GO:0042413 carnitine catabolism 0 0 14917 GO:0042414 epinephrine metabolism 0 0 14918 GO:0042415 norepinephrine metabolism 0 0 14919 GO:0042416 dopamine biosynthesis 0 0 14920 GO:0042417 dopamine metabolism 0 0 14921 GO:0042418 epinephrine biosynthesis 0 0 14922 GO:0042419 epinephrine catabolism 0 0 14923 GO:0042420 dopamine catabolism 0 0 14924 GO:0042421 norepinephrine biosynthesis 0 0 14925 GO:0042422 norepinephrine catabolism 0 0 14926 GO:0042423 catecholamine biosynthesis 0 0 14927 GO:0042424 catecholamine catabolism 0 0 14928 GO:0042425 choline biosynthesis 0 0 14929 GO:0042426 choline catabolism 0 0 14930 GO:0042427 serotonin biosynthesis 0 0 14931 GO:0042428 serotonin metabolism 0 0 14932 GO:0042429 serotonin catabolism 0 0 14933 GO:0042430 indole and derivative metabolism 0 0 14934 GO:0042431 indole metabolism 0 0 14935 GO:0042432 indole biosynthesis 0 0 14936 GO:0042433 indole catabolism 0 0 14937 GO:0042434 indole derivative metabolism 0 0 14938 GO:0042435 indole derivative biosynthesis 0 0 14939 GO:0042436 indole derivative catabolism 0 0 14940 GO:0042437 indoleacetic acid catabolism 0 0 14941 GO:0042438 melanin biosynthesis 0 0 14942 GO:0042439 ethanolamine and derivative metabolism 0 0 14943 GO:0042440 pigment metabolism 0 0 14944 GO:0042441 eye pigment metabolism 0 0 14945 GO:0042442 melatonin catabolism 0 0 14946 GO:0042443 phenylethylamine metabolism 0 0 14947 GO:0042444 phenylethylamine biosynthesis 0 0 14948 GO:0042445 hormone metabolism 0 0 14949 GO:0042446 hormone biosynthesis 0 0 14950 GO:0042447 hormone catabolism 0 0 14951 GO:0042448 progesterone metabolism 0 0 14952 GO:0042450 arginine biosynthesis via ornithine 0 0 14953 GO:0042451 purine nucleoside biosynthesis 0 0 14954 GO:0042452 deoxyguanosine biosynthesis 0 0 14955 GO:0042453 deoxyguanosine metabolism 0 0 14956 GO:0042454 ribonucleoside catabolism 0 0 14957 GO:0042455 ribonucleoside biosynthesis 0 0 14958 GO:0042457 ethylene catabolism 0 0 14959 GO:0042458 nopaline catabolism to proline 0 0 14960 GO:0042459 octopine catabolism to proline 0 0 14961 GO:0042461 photoreceptor cell development 0 0 14962 GO:0042462 eye photoreceptor cell development 0 0 14963 GO:0042463 non-eye photoreceptor cell development 0 0 14964 GO:0042464 dosage compensation, by hypoactivation of X chromosome 0 0 14965 GO:0042465 kinesis 0 0 14966 GO:0042466 chemokinesis 0 0 14967 GO:0042467 orthokinesis 0 0 14968 GO:0042468 klinokinesis 0 0 14969 GO:0042469 versicolorin reductase activity 0 0 14970 GO:0042470 melanosome 0 0 14971 GO:0042471 ear morphogenesis 0 0 14972 GO:0042472 inner ear morphogenesis 0 0 14973 GO:0042473 outer ear morphogenesis 0 0 14974 GO:0042474 middle ear morphogenesis 0 0 14975 GO:0042475 odontogenesis (sensu Vertebrata) 0 0 14976 GO:0042476 odontogenesis 0 0 14977 GO:0042477 odontogenesis (sensu Protostomia) 0 0 14978 GO:0042478 regulation of eye photoreceptor cell development 0 0 14979 GO:0042479 positive regulation of eye photoreceptor cell development 0 0 14980 GO:0042480 negative regulation of eye photoreceptor cell development 0 0 14981 GO:0042481 regulation of odontogenesis 0 0 14982 GO:0042482 positive regulation of odontogenesis 0 0 14983 GO:0042483 negative regulation of odontogenesis 0 0 14984 GO:0042484 regulation of odontogenesis (sensu Protostomia) 0 0 14985 GO:0042485 positive regulation of odontogenesis (sensu Protostomia) 0 0 14986 GO:0042486 negative regulation of odontogenesis (sensu Protostomia) 0 0 14987 GO:0042487 regulation of odontogenesis (sensu Vertebrata) 0 0 14988 GO:0042488 positive regulation of odontogenesis (sensu Vertebrata) 0 0 14989 GO:0042489 negative regulation of odontogenesis (sensu Vertebrata) 0 0 14990 GO:0042490 mechanoreceptor differentiation 0 0 14991 GO:0042491 auditory receptor cell differentiation 0 0 14992 GO:0042492 gamma-delta T cell differentiation 0 0 14993 GO:0042493 response to drug 0 0 14994 GO:0042494 detection of bacterial lipoprotein 0 0 14995 GO:0042495 detection of triacylated bacterial lipoprotein 0 0 14996 GO:0042496 detection of diacylated bacterial lipoprotein 0 0 14997 GO:0042497 triacylated lipoprotein binding 0 0 14998 GO:0042498 diacylated lipoprotein binding 0 0 14999 GO:0042499 signal peptide peptidase activity 0 0 15000 GO:0042500 aspartic endopeptidase activity, intramembrane cleaving 0 0 15001 GO:0042501 serine phosphorylation of STAT protein 0 0 15002 GO:0042502 tyrosine phosphorylation of Stat2 protein 0 0 15003 GO:0042503 tyrosine phosphorylation of Stat3 protein 0 0 15004 GO:0042504 tyrosine phosphorylation of Stat4 protein 0 0 15005 GO:0042505 tyrosine phosphorylation of Stat6 protein 0 0 15006 GO:0042506 tyrosine phosphorylation of Stat5 protein 0 0 15007 GO:0042507 tyrosine phosphorylation of Stat7 protein 0 0 15008 GO:0042508 tyrosine phosphorylation of Stat1 protein 0 0 15009 GO:0042509 regulation of tyrosine phosphorylation of STAT protein 0 0 15010 GO:0042510 regulation of tyrosine phosphorylation of Stat1 protein 0 0 15011 GO:0042511 positive regulation of tyrosine phosphorylation of Stat1 protein 0 0 15012 GO:0042512 negative regulation of tyrosine phosphorylation of Stat1 protein 0 0 15013 GO:0042513 regulation of tyrosine phosphorylation of Stat2 protein 0 0 15014 GO:0042514 negative regulation of tyrosine phosphorylation of Stat2 protein 0 0 15015 GO:0042515 positive regulation of tyrosine phosphorylation of Stat2 protein 0 0 15016 GO:0042516 regulation of tyrosine phosphorylation of Stat3 protein 0 0 15017 GO:0042517 positive regulation of tyrosine phosphorylation of Stat3 protein 0 0 15018 GO:0042518 negative regulation of tyrosine phosphorylation of Stat3 protein 0 0 15019 GO:0042519 regulation of tyrosine phosphorylation of Stat4 protein 0 0 15020 GO:0042520 positive regulation of tyrosine phosphorylation of Stat4 protein 0 0 15021 GO:0042521 negative regulation of tyrosine phosphorylation of Stat4 protein 0 0 15022 GO:0042522 regulation of tyrosine phosphorylation of Stat5 protein 0 0 15023 GO:0042523 positive regulation of tyrosine phosphorylation of Stat5 protein 0 0 15024 GO:0042524 negative regulation of tyrosine phosphorylation of Stat5 protein 0 0 15025 GO:0042525 regulation of tyrosine phosphorylation of Stat6 protein 0 0 15026 GO:0042526 positive regulation of tyrosine phosphorylation of Stat6 protein 0 0 15027 GO:0042527 negative regulation of tyrosine phosphorylation of Stat6 protein 0 0 15028 GO:0042528 regulation of tyrosine phosphorylation of Stat7 protein 0 0 15029 GO:0042529 positive regulation of tyrosine phosphorylation of Stat7 protein 0 0 15030 GO:0042530 negative regulation of tyrosine phosphorylation of Stat7 protein 0 0 15031 GO:0042531 positive regulation of tyrosine phosphorylation of STAT protein 0 0 15032 GO:0042532 negative regulation of tyrosine phosphorylation of STAT protein 0 0 15033 GO:0042533 tumor necrosis factor-alpha biosynthesis 0 0 15034 GO:0042534 regulation of tumor necrosis factor-alpha biosynthesis 0 0 15035 GO:0042535 positive regulation of tumor necrosis factor-alpha biosynthesis 0 0 15036 GO:0042536 negative regulation of tumor necrosis factor-alpha biosynthesis 0 0 15037 GO:0042537 benzene and derivative metabolism 0 0 15038 GO:0042538 hyperosmotic salinity response 0 0 15039 GO:0042539 hypotonic salinity response 0 0 15040 GO:0042540 hemoglobin catabolism 0 0 15041 GO:0042541 hemoglobin biosynthesis 0 0 15042 GO:0042542 response to hydrogen peroxide 0 0 15043 GO:0042543 protein amino acid N-linked glycosylation via arginine 0 0 15044 GO:0042544 melibiose biosynthesis 0 0 15045 GO:0042545 cell wall modification 0 0 15046 GO:0042546 cell wall biosynthesis 0 0 15047 GO:0042547 cell wall modification during multidimensional cell growth 0 0 15048 GO:0042548 regulation of photosynthesis, light reaction 0 0 15049 GO:0042549 photosystem II stabilization 0 0 15050 GO:0042550 photosystem I stabilization 0 0 15051 GO:0042551 neuron maturation 0 0 15052 GO:0042552 myelination 0 0 15053 GO:0042553 cellular nerve ensheathment 0 0 15054 GO:0042554 superoxide release 0 0 15055 GO:0042555 MCM complex 0 0 15056 GO:0042556 eukaryotic elongation factor-2 kinase regulator activity 0 0 15057 GO:0042557 eukaryotic elongation factor-2 kinase activator activity 0 0 15058 GO:0042558 pteridine and derivative metabolism 0 0 15059 GO:0042559 pteridine and derivative biosynthesis 0 0 15060 GO:0042560 pteridine and derivative catabolism 0 0 15061 GO:0042561 alpha-amyrin synthase activity 0 0 15062 GO:0042562 hormone binding 0 0 15063 GO:0042563 importin alpha-subunit nuclear export complex 0 0 15064 GO:0042564 NLS-dependent protein nuclear import complex 0 0 15065 GO:0042565 RNA nuclear export complex 0 0 15066 GO:0042566 hydrogenosome 0 0 15067 GO:0042567 insulin-like growth factor ternary complex 0 0 15068 GO:0042568 insulin-like growth factor binary complex 0 0 15069 GO:0042571 immunoglobulin complex, circulating 0 0 15070 GO:0042572 retinol metabolism 0 0 15071 GO:0042573 retinoic acid metabolism 0 0 15072 GO:0042574 retinal metabolism 0 0 15073 GO:0042575 DNA polymerase complex 0 0 15074 GO:0042576 aspartyl aminopeptidase activity 0 0 15075 GO:0042577 lipid phosphatase activity 0 0 15076 GO:0042578 phosphoric ester hydrolase activity 0 0 15077 GO:0042579 microbody 0 0 15078 GO:0042580 mannosome 0 0 15079 GO:0042581 specific granule 0 0 15080 GO:0042582 azurophil granule 0 0 15081 GO:0042583 chromaffin granule 0 0 15082 GO:0042584 chromaffin granule membrane 0 0 15083 GO:0042585 germinal vesicle 0 0 15084 GO:0042586 peptide deformylase activity 0 0 15085 GO:0042587 glycogen granule 0 0 15086 GO:0042588 zymogen granule 0 0 15087 GO:0042589 zymogen granule membrane 0 0 15088 GO:0042590 antigen presentation, exogenous antigen via MHC class I 0 0 15089 GO:0042591 antigen presentation, exogenous antigen via MHC class II 0 0 15090 GO:0042592 homeostasis 0 0 15091 GO:0042593 glucose homeostasis 0 0 15092 GO:0042594 response to starvation 0 0 15093 GO:0042595 behavioral response to starvation 0 0 15094 GO:0042596 fear response 0 0 15095 GO:0042597 periplasmic space 0 0 15096 GO:0042598 vesicular fraction 0 0 15097 GO:0042599 lamellar body 0 0 15098 GO:0042600 chorion 0 0 15099 GO:0042601 forespore (sensu Bacteria) 0 0 15100 GO:0042602 flavin reductase activity 0 0 15101 GO:0042603 capsule 0 0 15102 GO:0042604 capsule (sensu Fungi) 0 0 15103 GO:0042605 peptide antigen binding 0 0 15104 GO:0042606 endogenous peptide antigen binding 0 0 15105 GO:0042607 exogenous peptide antigen binding 0 0 15106 GO:0042608 T cell receptor binding 0 0 15107 GO:0042609 CD4 receptor binding 0 0 15108 GO:0042610 CD8 receptor binding 0 0 15109 GO:0042611 MHC protein complex 0 0 15110 GO:0042612 MHC class I protein complex 0 0 15111 GO:0042613 MHC class II protein complex 0 0 15112 GO:0042614 CD70 receptor binding 0 0 15113 GO:0042615 CD154 receptor binding 0 0 15114 GO:0042616 paclitaxel metabolism 0 0 15115 GO:0042617 paclitaxel biosynthesis 0 0 15116 GO:0042618 poly-hydroxybutyrate metabolism 0 0 15117 GO:0042619 poly-hydroxybutyrate biosynthesis 0 0 15118 GO:0042620 poly(3-hydroxyalkanoate) metabolism 0 0 15119 GO:0042621 poly(3-hydroxyalkanoate) biosynthesis 0 0 15120 GO:0042622 photoreceptor outer segment membrane 0 0 15121 GO:0042623 ATPase activity, coupled 0 0 15122 GO:0042624 ATPase activity, uncoupled 0 0 15123 GO:0042625 ATPase activity, coupled to transmembrane movement of ions 0 0 15124 GO:0042626 ATPase activity, coupled to transmembrane movement of substances 0 0 15125 GO:0042627 chylomicron 0 0 15126 GO:0042628 mating plug formation 0 0 15127 GO:0042629 mast cell granule 0 0 15128 GO:0042630 behavioral response to water deprivation 0 0 15129 GO:0042631 cellular response to water deprivation 0 0 15130 GO:0042632 cholesterol homeostasis 0 0 15131 GO:0042633 hair cycle 0 0 15132 GO:0042634 regulation of hair cycle 0 0 15133 GO:0042635 positive regulation of hair cycle 0 0 15134 GO:0042636 negative regulation of hair cycle 0 0 15135 GO:0042637 catagen 0 0 15136 GO:0042638 exogen 0 0 15137 GO:0042639 telogen 0 0 15138 GO:0042640 anagen 0 0 15139 GO:0042641 actomyosin 0 0 15140 GO:0042642 actomyosin, myosin part 0 0 15141 GO:0042643 actomyosin, actin part 0 0 15142 GO:0042644 chloroplast nucleoid 0 0 15143 GO:0042645 mitochondrial nucleoid 0 0 15144 GO:0042646 plastid nucleoid 0 0 15145 GO:0042647 proplastid nucleoid 0 0 15146 GO:0042648 chloroplast chromosome 0 0 15147 GO:0042649 prothylakoid 0 0 15148 GO:0042650 prothylakoid membrane 0 0 15149 GO:0042651 thylakoid membrane 0 0 15150 GO:0042652 respiratory chain complex I, peripheral segment (sensu Eukaryota) 0 0 15151 GO:0042653 respiratory chain complex I, membrane segment (sensu Eukaryota) 0 0 15152 GO:0042654 ecdysis-triggering hormone receptor activity 0 0 15153 GO:0042655 activation of JNKKK activity 0 0 15154 GO:0042656 JUN kinase kinase kinase kinase activity 0 0 15155 GO:0042657 MHC class II protein binding, via lateral surface 0 0 15156 GO:0042658 MHC class II protein binding, via antigen binding groove 0 0 15157 GO:0042659 regulation of cell fate specification 0 0 15158 GO:0042660 positive regulation of cell fate specification 0 0 15159 GO:0042661 regulation of mesodermal cell fate specification 0 0 15160 GO:0042662 negative regulation of mesodermal cell fate specification 0 0 15161 GO:0042663 regulation of endodermal cell fate specification 0 0 15162 GO:0042664 negative regulation of endodermal cell fate specification 0 0 15163 GO:0042665 regulation of ectodermal cell fate specification 0 0 15164 GO:0042666 negative regulation of ectodermal cell fate specification 0 0 15165 GO:0042667 auditory receptor cell fate specification 0 0 15166 GO:0042668 auditory receptor cell fate determination 0 0 15167 GO:0042669 regulation of auditory receptor cell fate specification 0 0 15168 GO:0042670 retinal cone cell differentiation 0 0 15169 GO:0042671 retinal cone cell fate determination 0 0 15170 GO:0042672 retinal cone cell fate specification 0 0 15171 GO:0042673 regulation of retinal cone cell fate specification 0 0 15172 GO:0042674 cone cell differentiation (sensu Endopterygota) 0 0 15173 GO:0042675 cone cell differentiation 0 0 15174 GO:0042676 cone cell fate commitment 0 0 15175 GO:0042677 cone cell fate determination (sensu Endopterygota) 0 0 15176 GO:0042678 cone cell fate specification (sensu Endopterygota) 0 0 15177 GO:0042679 cone cell fate specification 0 0 15178 GO:0042680 cone cell fate determination 0 0 15179 GO:0042681 regulation of cone cell fate specification (sensu Endopterygota) 0 0 15180 GO:0042682 regulation of cone cell fate specification 0 0 15181 GO:0042683 negative regulation of cone cell fate specification 0 0 15182 GO:0042684 cardioblast cell fate commitment 0 0 15183 GO:0042685 cardioblast cell fate specification 0 0 15184 GO:0042686 regulation of cardioblast cell fate specification 0 0 15185 GO:0042688 crystal cell differentiation 0 0 15186 GO:0042689 regulation of crystal cell differentiation 0 0 15187 GO:0042690 negative regulation of crystal cell differentiation 0 0 15188 GO:0042691 positive regulation of crystal cell differentiation 0 0 15189 GO:0042692 muscle cell differentiation 0 0 15190 GO:0042693 muscle cell fate commitment 0 0 15191 GO:0042694 muscle cell fate specification 0 0 15192 GO:0042695 thelarche 0 0 15193 GO:0042696 menarche 0 0 15194 GO:0042697 menopause 0 0 15195 GO:0042698 menstrual cycle 0 0 15196 GO:0042699 follicle stimulating hormone signaling pathway 0 0 15197 GO:0042700 luteinizing hormone signaling pathway 0 0 15198 GO:0042701 progesterone secretion 0 0 15199 GO:0042702 uterine wall growth 0 0 15200 GO:0042703 menstruation 0 0 15201 GO:0042704 uterine wall breakdown 0 0 15202 GO:0042705 non-eye photoreceptor cell differentiation 0 0 15203 GO:0042706 eye photoreceptor cell fate commitment 0 0 15204 GO:0042707 non-eye photoreceptor cell fate commitment 0 0 15205 GO:0042708 elastase activity 0 0 15206 GO:0042709 succinate-CoA ligase complex 0 0 15207 GO:0042710 biofilm formation 0 0 15208 GO:0042711 maternal behavior 0 0 15209 GO:0042712 paternal behavior 0 0 15210 GO:0042713 sperm ejaculation 0 0 15211 GO:0042714 dosage compensation complex assembly 0 0 15212 GO:0042715 dosage compensation complex assembly (sensu Nematoda) 0 0 15213 GO:0042716 chromatophore 0 0 15214 GO:0042717 chromatophore membrane 0 0 15215 GO:0042718 yolk granule 0 0 15216 GO:0042719 mitochondrial intermembrane space protein transporter complex 0 0 15217 GO:0042720 mitochondrial inner membrane peptidase complex 0 0 15218 GO:0042721 mitochondrial inner membrane protein insertion complex 0 0 15219 GO:0042722 alpha-beta T cell activation by superantigen 0 0 15220 GO:0042723 thiamin and derivative metabolism 0 0 15221 GO:0042724 thiamin and derivative biosynthesis 0 0 15222 GO:0042725 thiamin and derivative catabolism 0 0 15223 GO:0042726 riboflavin and derivative metabolism 0 0 15224 GO:0042727 riboflavin and derivative biosynthesis 0 0 15225 GO:0042728 riboflavin and derivative catabolism 0 0 15226 GO:0042729 DASH complex 0 0 15227 GO:0042730 fibrinolysis 0 0 15228 GO:0042731 PH domain binding 0 0 15229 GO:0042732 D-xylose metabolism 0 0 15230 GO:0042733 embryonic digit morphogenesis 0 0 15231 GO:0042734 presynaptic membrane 0 0 15232 GO:0042735 protein body 0 0 15233 GO:0042736 NADH kinase activity 0 0 15234 GO:0042737 drug catabolism 0 0 15235 GO:0042738 exogenous drug catabolism 0 0 15236 GO:0042739 endogenous drug catabolism 0 0 15237 GO:0042740 exogenous antibiotic catabolism 0 0 15238 GO:0042741 endogenous antibiotic catabolism 0 0 15239 GO:0042742 defense response to bacteria 0 0 15240 GO:0042743 hydrogen peroxide metabolism 0 0 15241 GO:0042744 hydrogen peroxide catabolism 0 0 15242 GO:0042745 circadian sleep/wake cycle 0 0 15243 GO:0042746 circadian sleep/wake cycle, wakefulness 0 0 15244 GO:0042747 circadian sleep/wake cycle, REM sleep 0 0 15245 GO:0042748 circadian sleep/wake cycle, non-REM sleep 0 0 15246 GO:0042749 regulation of circadian sleep/wake cycle 0 0 15247 GO:0042750 hibernation 0 0 15248 GO:0042751 estivation 0 0 15249 GO:0042752 regulation of circadian rhythm 0 0 15250 GO:0042753 positive regulation of circadian rhythm 0 0 15251 GO:0042754 negative regulation of circadian rhythm 0 0 15252 GO:0042755 eating behavior 0 0 15253 GO:0042756 drinking behavior 0 0 15254 GO:0042757 giant axon 0 0 15255 GO:0042758 long-chain fatty acid catabolism 0 0 15256 GO:0042759 long-chain fatty acid biosynthesis 0 0 15257 GO:0042760 very-long-chain fatty acid catabolism 0 0 15258 GO:0042761 very-long-chain fatty acid biosynthesis 0 0 15259 GO:0042762 regulation of sulfur metabolism 0 0 15260 GO:0042763 immature spore 0 0 15261 GO:0042764 prospore 0 0 15262 GO:0042765 GPI-anchor transamidase complex 0 0 15263 GO:0042766 nucleosome mobilization 0 0 15264 GO:0042767 ecdysteroid 22-hydroxylase activity 0 0 15265 GO:0042768 ecdysteroid 2-hydroxylase activity 0 0 15266 GO:0042769 DNA damage response, detection of DNA damage 0 0 15267 GO:0042770 DNA damage response, signal transduction 0 0 15268 GO:0042771 DNA damage response, signal transduction by p53 class mediator resulting in induction of apoptosis 0 0 15269 GO:0042772 DNA damage response, signal transduction resulting in transcription 0 0 15270 GO:0042773 ATP synthesis coupled electron transport 0 0 15271 GO:0042774 ATP synthesis coupled electron transport (sensu Bacteria) 0 0 15272 GO:0042775 ATP synthesis coupled electron transport (sensu Eukaryota) 0 0 15273 GO:0042776 ATP synthesis coupled proton transport (sensu Eukaryota) 0 0 15274 GO:0042777 ATP synthesis coupled proton transport (sensu Bacteria) 0 0 15275 GO:0042778 tRNA end turnover 0 0 15276 GO:0042779 removal of tRNA 3'-trailer sequence 0 0 15277 GO:0042780 tRNA 3'-processing 0 0 15278 GO:0042781 3'-tRNA processing endoribonuclease activity 0 0 15279 GO:0042782 passive evasion of host immune response 0 0 15280 GO:0042783 active evasion of host immune response 0 0 15281 GO:0042784 active evasion of host immune response via regulation of complement system 0 0 15282 GO:0042785 active evasion of host immune response via regulation of host cytokine network 0 0 15283 GO:0042786 active evasion of host immune response via regulation of antigen-processing or presentation pathway 0 0 15284 GO:0042787 protein ubiquitination during ubiquitin-dependent protein catabolism 0 0 15285 GO:0042788 polysomal ribosome 0 0 15286 GO:0042789 mRNA transcription from RNA polymerase II promoter 0 0 15287 GO:0042790 transcription of nuclear rRNA large RNA polymerase I transcript 0 0 15288 GO:0042791 5S class rRNA transcription 0 0 15289 GO:0042792 rRNA transcription from mitochondrial promoter 0 0 15290 GO:0042793 transcription from plastid promoter 0 0 15291 GO:0042794 rRNA transcription from plastid promoter 0 0 15292 GO:0042795 snRNA transcription from RNA polymerase II promoter 0 0 15293 GO:0042796 snRNA transcription from RNA polymerase III promoter 0 0 15294 GO:0042797 tRNA transcription from RNA polymerase III promoter 0 0 15295 GO:0042798 protein neddylation during NEDD8 class-dependent protein catabolism (obsolete GO:0042798) 1 0 15296 GO:0042799 histone lysine N-methyltransferase activity (H4-K20 specific) 0 0 15297 GO:0042800 histone lysine N-methyltransferase activity (H3-K4 specific) 0 0 15298 GO:0042801 polo kinase kinase activity 0 0 15299 GO:0042802 identical protein binding 0 0 15300 GO:0042803 protein homodimerization activity 0 0 15301 GO:0042804 protein homooligomerization activity (obsolete GO:0042804) 1 0 15302 GO:0042805 actinin binding 0 0 15303 GO:0042806 fucose binding 0 0 15304 GO:0042807 central vacuole 0 0 15305 GO:0042808 neuronal Cdc2-like kinase binding 0 0 15306 GO:0042809 vitamin D receptor binding 0 0 15307 GO:0042810 pheromone metabolism 0 0 15308 GO:0042811 pheromone biosynthesis 0 0 15309 GO:0042812 pheromone catabolism 0 0 15310 GO:0042813 Wnt receptor activity 0 0 15311 GO:0042814 monopolar cell growth 0 0 15312 GO:0042815 bipolar cell growth 0 0 15313 GO:0042816 vitamin B6 metabolism 0 0 15314 GO:0042817 pyridoxal metabolism 0 0 15315 GO:0042818 pyridoxamine metabolism 0 0 15316 GO:0042819 vitamin B6 biosynthesis 0 0 15317 GO:0042820 vitamin B6 catabolism 0 0 15318 GO:0042821 pyridoxal biosynthesis 0 0 15319 GO:0042822 pyridoxal phosphate metabolism 0 0 15320 GO:0042823 pyridoxal phosphate biosynthesis 0 0 15321 GO:0042824 MHC class I peptide loading complex 0 0 15322 GO:0042825 TAP complex 0 0 15323 GO:0042826 histone deacetylase binding 0 0 15324 GO:0042827 platelet dense granule 0 0 15325 GO:0042828 response to pathogen 0 0 15326 GO:0042829 defense response to pathogen 0 0 15327 GO:0042830 defense response to pathogenic bacteria 0 0 15328 GO:0042831 defense response to pathogenic fungi 0 0 15329 GO:0042832 defense response to pathogenic protozoa 0 0 15330 GO:0042833 response to pathogenic protozoa 0 0 15331 GO:0042834 peptidoglycan binding 0 0 15332 GO:0042835 BRE binding 0 0 15333 GO:0042836 D-glucarate metabolism 0 0 15334 GO:0042837 D-glucarate biosynthesis 0 0 15335 GO:0042838 D-glucarate catabolism 0 0 15336 GO:0042839 D-glucuronate metabolism 0 0 15337 GO:0042840 D-glucuronate catabolism 0 0 15338 GO:0042841 D-glucuronate biosynthesis 0 0 15339 GO:0042842 D-xylose biosynthesis 0 0 15340 GO:0042843 D-xylose catabolism 0 0 15341 GO:0042844 glycol metabolism 0 0 15342 GO:0042845 glycol biosynthesis 0 0 15343 GO:0042846 glycol catabolism 0 0 15344 GO:0042847 sorbose biosynthesis 0 0 15345 GO:0042848 sorbose catabolism 0 0 15346 GO:0042849 L-sorbose biosynthesis 0 0 15347 GO:0042850 L-sorbose catabolism 0 0 15348 GO:0042851 L-alanine metabolism 0 0 15349 GO:0042852 L-alanine biosynthesis 0 0 15350 GO:0042853 L-alanine catabolism 0 0 15351 GO:0042854 eugenol metabolism 0 0 15352 GO:0042855 eugenol biosynthesis 0 0 15353 GO:0042856 eugenol catabolism 0 0 15354 GO:0042857 chrysobactin metabolism 0 0 15355 GO:0042858 chrysobactin biosynthesis 0 0 15356 GO:0042859 chrysobactin catabolism 0 0 15357 GO:0042860 achromobactin metabolism 0 0 15358 GO:0042861 achromobactin biosynthesis 0 0 15359 GO:0042862 achromobactin catabolism 0 0 15360 GO:0042863 pyochelin metabolism 0 0 15361 GO:0042864 pyochelin biosynthesis 0 0 15362 GO:0042865 pyochelin catabolism 0 0 15363 GO:0042866 pyruvate biosynthesis 0 0 15364 GO:0042867 pyruvate catabolism 0 0 15365 GO:0042868 antisense RNA metabolism 0 0 15366 GO:0042869 aldarate transport 0 0 15367 GO:0042870 D-glucarate transport 0 0 15368 GO:0042871 D-galactarate transport 0 0 15369 GO:0042872 D-galactarate biosynthesis 0 0 15370 GO:0042873 aldonate transport 0 0 15371 GO:0042874 D-glucuronate transport 0 0 15372 GO:0042875 D-galactonate transport 0 0 15373 GO:0042876 aldarate transporter activity 0 0 15374 GO:0042877 D-galactarate transporter activity 0 0 15375 GO:0042878 D-glucarate transporter activity 0 0 15376 GO:0042879 aldonate transporter activity 0 0 15377 GO:0042880 D-glucuronate transporter activity 0 0 15378 GO:0042881 D-galactonate transporter activity 0 0 15379 GO:0042882 L-arabinose transport 0 0 15380 GO:0042883 L-cysteine transport 0 0 15381 GO:0042884 microcin transport 0 0 15382 GO:0042885 microcin B17 transport 0 0 15383 GO:0042886 amide transport 0 0 15384 GO:0042887 amide transporter activity 0 0 15385 GO:0042888 molybdenum ion transporter activity 0 0 15386 GO:0042889 3-phenylpropionic acid transport 0 0 15387 GO:0042890 3-phenylpropionic acid transporter activity 0 0 15388 GO:0042891 antibiotic transport 0 0 15389 GO:0042892 chloramphenicol transport 0 0 15390 GO:0042893 polymyxin transport 0 0 15391 GO:0042894 fosmidomycin transport 0 0 15392 GO:0042895 antibiotic transporter activity 0 0 15393 GO:0042896 chloramphenicol transporter activity 0 0 15394 GO:0042897 polymyxin transporter activity 0 0 15395 GO:0042898 fosmidomycin transporter activity 0 0 15396 GO:0042899 arabinose polymer transport 0 0 15397 GO:0042900 arabinose transporter activity 0 0 15398 GO:0042901 arabinose polymer transporter activity 0 0 15399 GO:0042902 peptidoglycan-protein cross-linking via L-threonyl-pentaglycyl-murein 0 0 15400 GO:0042903 tubulin deacetylase activity 0 0 15401 GO:0042904 9-cis-retinoic acid biosynthesis 0 0 15402 GO:0042905 9-cis-retinoic acid metabolism 0 0 15403 GO:0042906 xanthine transport 0 0 15404 GO:0042907 xanthine transporter activity 0 0 15405 GO:0042908 xenobiotic transport 0 0 15406 GO:0042909 acridine transport 0 0 15407 GO:0042910 xenobiotic transporter activity 0 0 15408 GO:0042911 acridine transporter activity 0 0 15409 GO:0042912 colicin transporter activity 0 0 15410 GO:0042913 group A colicin transporter activity 0 0 15411 GO:0042914 colicin transport 0 0 15412 GO:0042915 group A colicin transport 0 0 15413 GO:0042916 alkylphosphonate transport 0 0 15414 GO:0042917 alkylphosphonate transporter activity 0 0 15415 GO:0042918 alkanesulfonate transport 0 0 15416 GO:0042919 benzoate transport 0 0 15417 GO:0042920 3-hydroxyphenylpropionic acid transport 0 0 15418 GO:0042921 glucocorticoid receptor signaling pathway 0 0 15419 GO:0042922 neuromedin U receptor binding 0 0 15420 GO:0042923 neuropeptide binding 0 0 15421 GO:0042924 neuromedin U binding 0 0 15422 GO:0042925 benzoate transporter activity 0 0 15423 GO:0042926 3-hydroxyphenylpropionic acid transporter activity 0 0 15424 GO:0042927 siderophore transporter activity 0 0 15425 GO:0042928 ferrichrome transport 0 0 15426 GO:0042929 ferrichrome transporter activity 0 0 15427 GO:0042930 enterobactin transport 0 0 15428 GO:0042931 enterobactin transporter activity 0 0 15429 GO:0042932 chrysobactin transport 0 0 15430 GO:0042933 chrysobactin transporter activity 0 0 15431 GO:0042934 achromobactin transporter activity 0 0 15432 GO:0042935 achromobactin transport 0 0 15433 GO:0042936 dipeptide transporter activity 0 0 15434 GO:0042937 tripeptide transporter activity 0 0 15435 GO:0042938 dipeptide transport 0 0 15436 GO:0042939 tripeptide transport 0 0 15437 GO:0042940 D-amino acid transport 0 0 15438 GO:0042941 D-alanine transport 0 0 15439 GO:0042942 D-serine transport 0 0 15440 GO:0042943 D-amino acid transporter activity 0 0 15441 GO:0042944 D-alanine transporter activity 0 0 15442 GO:0042945 D-serine transporter activity 0 0 15443 GO:0042946 glucoside transport 0 0 15444 GO:0042947 glucoside transporter activity 0 0 15445 GO:0042948 salicin transport 0 0 15446 GO:0042949 arbutin transport 0 0 15447 GO:0042950 salicin transporter activity 0 0 15448 GO:0042951 arbutin transporter activity 0 0 15449 GO:0042952 beta-ketoadipate pathway 0 0 15450 GO:0042953 lipoprotein transport 0 0 15451 GO:0042954 lipoprotein transporter activity 0 0 15452 GO:0042955 dextrin transport 0 0 15453 GO:0042956 maltodextrin transport 0 0 15454 GO:0042957 dextrin transporter activity 0 0 15455 GO:0042958 maltodextrin transporter activity 0 0 15456 GO:0042959 alkanesulfonate transporter activity 0 0 15457 GO:0042960 antimonite porter activity 0 0 15458 GO:0042961 antimonite-transporting ATPase activity 0 0 15459 GO:0042962 acridine:hydrogen antiporter activity 0 0 15460 GO:0042963 phage assembly 0 0 15461 GO:0042964 thioredoxin biosynthesis 0 0 15462 GO:0042965 glutaredoxin biosynthesis 0 0 15463 GO:0042966 biotin carboxyl carrier protein biosynthesis 0 0 15464 GO:0042967 acyl-carrier protein biosynthesis 0 0 15465 GO:0042968 homoserine transport 0 0 15466 GO:0042969 lactone transport 0 0 15467 GO:0042970 homoserine transporter activity 0 0 15468 GO:0042971 lactone transporter activity 0 0 15469 GO:0042972 licheninase activity 0 0 15470 GO:0042973 glucan endo-1,3-beta-D-glucosidase activity 0 0 15471 GO:0042974 retinoic acid receptor binding 0 0 15472 GO:0042975 peroxisome proliferator activated receptor binding 0 0 15473 GO:0042976 activation of JAK protein 0 0 15474 GO:0042977 tyrosine phosphorylation of JAK2 protein 0 0 15475 GO:0042978 ornithine decarboxylase activator activity 0 0 15476 GO:0042979 ornithine decarboxylase regulator activity 0 0 15477 GO:0042980 cystic fibrosis transmembrane conductance regulator binding 0 0 15478 GO:0042981 regulation of apoptosis 0 0 15479 GO:0042982 amyloid precursor protein metabolism 0 0 15480 GO:0042983 amyloid precursor protein biosynthesis 0 0 15481 GO:0042984 regulation of amyloid precursor protein biosynthesis 0 0 15482 GO:0042985 negative regulation of amyloid precursor protein biosynthesis 0 0 15483 GO:0042986 positive regulation of amyloid precursor protein biosynthesis 0 0 15484 GO:0042987 amyloid precursor protein catabolism 0 0 15485 GO:0042988 X11-like protein binding 0 0 15486 GO:0042989 sequestering of actin monomers 0 0 15487 GO:0042990 regulation of transcription factor import into nucleus 0 0 15488 GO:0042991 transcription factor import into nucleus 0 0 15489 GO:0042992 negative regulation of transcription factor import into nucleus 0 0 15490 GO:0042993 positive regulation of transcription factor import into nucleus 0 0 15491 GO:0042994 cytoplasmic sequestering of transcription factor 0 0 15492 GO:0042995 cell projection 0 0 15493 GO:0042996 regulation of Golgi to plasma membrane protein transport 0 0 15494 GO:0042997 negative regulation of Golgi to plasma membrane protein transport 0 0 15495 GO:0042998 positive regulation of Golgi to plasma membrane protein transport 0 0 15496 GO:0042999 regulation of Golgi to plasma membrane CFTR protein transport 0 0 15497 GO:0043000 Golgi to plasma membrane CFTR protein transport 0 0 15498 GO:0043001 Golgi to plasma membrane protein transport 0 0 15499 GO:0043002 negative regulation of Golgi to plasma membrane CFTR protein transport 0 0 15500 GO:0043003 positive regulation of Golgi to plasma membrane CFTR protein transport 0 0 15501 GO:0043004 cytoplasmic sequestering of CFTR protein 0 0 15502 GO:0043005 neuron projection 0 0 15503 GO:0043006 calcium-dependent phospholipase A2 activation 0 0 15504 GO:0043007 maintenance of rDNA 0 0 15505 GO:0043008 ATP-dependent protein binding 0 0 15506 GO:0043009 embryonic development (sensu Vertebrata) 0 0 15507 GO:0043010 eye development (sensu Vertebrata) 0 0 15508 GO:0043011 dendritic cell differentiation 0 0 15509 GO:0043012 regulation of fusion of sperm to egg plasma membrane 0 0 15510 GO:0043013 negative regulation of fusion of sperm to egg plasma membrane 0 0 15511 GO:0043014 alpha-tubulin binding 0 0 15512 GO:0043015 gamma-tubulin binding 0 0 15513 GO:0043016 regulation of tumor necrosis factor-beta biosynthesis 0 0 15514 GO:0043017 positive regulation of tumor necrosis factor-beta biosynthesis 0 0 15515 GO:0043018 negative regulation of tumor necrosis factor-beta biosynthesis 0 0 15516 GO:0043019 response to pathogenic insect 0 0 15517 GO:0043020 NADPH oxidase complex 0 0 15518 GO:0043021 ribonucleoprotein binding 0 0 15519 GO:0043022 ribosome binding 0 0 15520 GO:0043023 ribosomal large subunit binding 0 0 18116 GO:0046858 chlorosome 0 0 18117 GO:0046859 hydrogenosomal membrane 0 0 18118 GO:0046860 glycosome membrane 0 0 18119 GO:0046861 glyoxysomal membrane 0 0 18120 GO:0046862 chromoplast membrane 0 0 18121 GO:0046863 ribulose-1,5-bisphosphate carboxylase/oxygenase activase activity 0 0 18122 GO:0046864 isoprenoid transport 0 0 18123 GO:0046865 terpenoid transport 0 0 18124 GO:0046866 tetraterpenoid transport 0 0 18125 GO:0046867 carotenoid transport 0 0 18126 GO:0046868 mesosome 0 0 18127 GO:0046869 iron incorporation into iron-sulfur cluster via tris-L-cysteinyl-L-aspartato diiron disulfide 0 0 18128 GO:0046870 cadmium ion binding 0 0 18129 GO:0046871 N-acetylgalactosamine binding 0 0 18130 GO:0046872 metal ion binding 0 0 18131 GO:0046873 metal ion transporter activity 0 0 18132 GO:0046874 quinolinate metabolism 0 0 18133 GO:0046875 ephrin receptor binding 0 0 18134 GO:0046876 3,4-didehydroretinal binding 0 0 18135 GO:0046877 regulation of saliva secretion 0 0 18136 GO:0046878 positive regulation of saliva secretion 0 0 18137 GO:0046879 hormone secretion 0 0 18138 GO:0046880 regulation of follicle-stimulating hormone secretion 0 0 18139 GO:0046881 positive regulation of follicle-stimulating hormone secretion 0 0 18140 GO:0046882 negative regulation of follicle-stimulating hormone secretion 0 0 18141 GO:0046883 regulation of hormone secretion 0 0 18142 GO:0046884 follicle-stimulating hormone secretion 0 0 18143 GO:0046885 regulation of hormone biosynthesis 0 0 18144 GO:0046886 positive regulation of hormone biosynthesis 0 0 18145 GO:0046887 positive regulation of hormone secretion 0 0 18146 GO:0046888 negative regulation of hormone secretion 0 0 18147 GO:0046889 positive regulation of lipid biosynthesis 0 0 18148 GO:0046890 regulation of lipid biosynthesis 0 0 18149 GO:0046891 peptidyl-cysteine S-carbamoylation 0 0 18150 GO:0046892 peptidyl-S-carbamoyl-L-cysteine dehydration 0 0 18151 GO:0046893 iron incorporation into hydrogenase diiron subcluster via L-cysteine ligation 0 0 18152 GO:0046894 enzyme active site formation via S-amidino-L-cysteine 0 0 18153 GO:0046895 N-terminal peptidyl-isoleucine methylation 0 0 18154 GO:0046896 N-terminal peptidyl-leucine methylation 0 0 18155 GO:0046897 N-terminal peptidyl-tyrosine methylation 0 0 18156 GO:0046898 response to cycloheximide 0 0 18157 GO:0046899 nucleoside triphosphate adenylate kinase activity 0 0 18158 GO:0046900 tetrahydrofolylpolyglutamate metabolism 0 0 18159 GO:0046901 tetrahydrofolylpolyglutamate biosynthesis 0 0 18160 GO:0046902 regulation of mitochondrial membrane permeability 0 0 18161 GO:0046903 secretion 0 0 18162 GO:0046904 calcium oxalate binding 0 0 18163 GO:0046905 phytoene synthase activity 0 0 18164 GO:0046906 tetrapyrrole binding 0 0 18165 GO:0046907 intracellular transport 0 0 18166 GO:0046908 negative regulation of crystal formation (obsolete GO:0046908) 1 0 18167 GO:0046909 intermembrane transport 0 0 18168 GO:0046910 pectinesterase inhibitor activity 0 0 18169 GO:0046911 metal chelating activity 0 0 18170 GO:0046912 transferase activity, transferring acyl groups, acyl groups converted into alkyl on transfer 0 0 18171 GO:0046914 transition metal ion binding 0 0 18172 GO:0046915 transition metal ion transporter activity 0 0 18173 GO:0046916 transition metal ion homeostasis 0 0 18174 GO:0046917 triphosphoribosyl-dephospho-CoA synthase activity 0 0 18175 GO:0046918 N-terminal peptidyl-glycine N-palmitoylation 0 0 18176 GO:0046919 pyruvyltransferase activity 0 0 18177 GO:0046920 alpha(1,3)-fucosyltransferase activity 0 0 18178 GO:0046921 alpha(1,6)-fucosyltransferase activity 0 0 18179 GO:0046922 peptide-O-fucosyltransferase activity 0 0 18180 GO:0046923 ER retention sequence binding 0 0 18181 GO:0046924 peptide cross-linking via 2-(S-L-cysteinyl)-L-phenylalanine 0 0 18182 GO:0046925 peptide cross-linking via 2-(S-L-cysteinyl)-D-phenylalanine 0 0 18183 GO:0046926 peptide cross-linking via 2-(S-L-cysteinyl)-D-allo-threonine 0 0 18184 GO:0046927 peptidyl-threonine racemization 0 0 18185 GO:0046928 regulation of neurotransmitter secretion 0 0 18186 GO:0046929 negative regulation of neurotransmitter secretion 0 0 18187 GO:0046930 pore complex 0 0 18188 GO:0046931 pore complex biogenesis 0 0 18189 GO:0046932 sodium-transporting ATP synthase activity, rotational mechanism 0 0 18190 GO:0046933 hydrogen-transporting ATP synthase activity, rotational mechanism 0 0 18191 GO:0046934 phosphatidylinositol-4,5-bisphosphate 3-kinase activity 0 0 18192 GO:0046935 phosphatidylinositol 3-kinase regulator activity 0 0 18193 GO:0046936 deoxyadenosine deaminase activity 0 0 18194 GO:0046937 phytochelatin metabolism 0 0 18195 GO:0046938 phytochelatin biosynthesis 0 0 18196 GO:0046939 nucleotide phosphorylation 0 0 18197 GO:0046940 nucleoside monophosphate phosphorylation 0 0 18198 GO:0046941 azetidine-2-carboxylic acid acetyltransferase activity 0 0 18199 GO:0046942 carboxylic acid transport 0 0 18200 GO:0046943 carboxylic acid transporter activity 0 0 18201 GO:0046944 protein amino acid carbamoylation 0 0 18202 GO:0046945 N-terminal peptidyl-alanine N-carbamoylation 0 0 18203 GO:0046946 hydroxylysine metabolism 0 0 18204 GO:0046947 hydroxylysine biosynthesis 0 0 18205 GO:0046948 hydroxylysine catabolism 0 0 18206 GO:0046949 acyl-CoA biosynthesis 0 0 18207 GO:0046950 ketone body metabolism 0 0 18208 GO:0046951 ketone body biosynthesis 0 0 18209 GO:0046952 ketone body catabolism 0 0 18210 GO:0046956 positive phototaxis 0 0 18211 GO:0046957 negative phototaxis 0 0 18212 GO:0046958 nonassociative learning 0 0 18213 GO:0046959 habituation 0 0 18214 GO:0046960 sensitization 0 0 18215 GO:0046961 hydrogen-transporting ATPase activity, rotational mechanism 0 0 18216 GO:0046962 sodium-transporting ATPase activity, rotational mechanism 0 0 18217 GO:0046963 3'-phosphoadenosine 5'-phosphosulfate transport 0 0 18218 GO:0046964 3'-phosphoadenosine 5'-phosphosulfate transporter activity 0 0 18219 GO:0046965 retinoid X receptor binding 0 0 18220 GO:0046966 thyroid hormone receptor binding 0 0 18221 GO:0046967 cytosol to ER transport 0 0 18222 GO:0046968 peptide antigen transport 0 0 18223 GO:0046969 NAD-dependent histone deacetylase activity (H3-K9 specific) 0 0 18224 GO:0046970 NAD-dependent histone deacetylase activity (H4-K16 specific) 0 0 18225 GO:0046972 histone acetyltransferase activity (H4-K16 specific) 0 0 18226 GO:0046973 histone lysine N-methyltransferase activity (H3-K24 specific) (obsolete GO:0046973) 1 0 18227 GO:0046974 histone lysine N-methyltransferase activity (H3-K9 specific) 0 0 18228 GO:0046975 histone lysine N-methyltransferase activity (H3-K36 specific) 0 0 18229 GO:0046976 histone lysine N-methyltransferase activity (H3-K27 specific) 0 0 18230 GO:0046977 TAP binding 0 0 18231 GO:0046978 TAP1 binding 0 0 18232 GO:0046979 TAP2 binding 0 0 18233 GO:0046980 tapasin binding 0 0 18234 GO:0046981 beta-1,4-mannosylglycolipid beta-1,3-N-acetylglucosaminyltransferase activity 0 0 18235 GO:0046982 protein heterodimerization activity 0 0 18236 GO:0046983 protein dimerization activity 0 0 18237 GO:0046984 regulation of hemoglobin biosynthesis 0 0 18238 GO:0046985 positive regulation of hemoglobin biosynthesis 0 0 18239 GO:0046986 negative regulation of hemoglobin biosynthesis 0 0 18240 GO:0046987 N-acetyllactosamine beta-1,3-glucuronosyltransferase activity 0 0 18241 GO:0046988 asioloorosomucoid beta-1,3-glucuronosyltransferase activity 0 0 18242 GO:0046989 galactosyl beta-1,3 N-acetylgalactosamine beta-1,3-glucuronosyltransferase activity 0 0 18243 GO:0046990 N-hydroxyarylamine O-acetyltransferase activity 0 0 18244 GO:0046991 hydroxynitrilase activity 0 0 18245 GO:0046992 oxidoreductase activity, acting on X-H and Y-H to form an X-Y bond 0 0 18246 GO:0046993 oxidoreductase activity, acting on X-H and Y-H to form an X-Y bond, with oxygen as acceptor 0 0 18247 GO:0046994 oxidoreductase activity, acting on hydrogen as donor, with a quinone or similar compound as acceptor 0 0 18248 GO:0046995 oxidoreductase activity, acting on hydrogen as donor, with other known acceptors 0 0 18249 GO:0046996 oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, with NADH or NADPH as one donor, and the other dehydrogenated 0 0 18250 GO:0046997 oxidoreductase activity, acting on the CH-NH group of donors, with a flavin as acceptor 0 0 18251 GO:0046998 (S)-usnate reductase activity 0 0 18252 GO:0046999 regulation of conjugation 0 0 18253 GO:0047000 2-dehydro-3-deoxy-D-gluconate 6-dehydrogenase activity 0 0 18254 GO:0047001 2-dehydro-3-deoxy-D-gluconate 5-dehydrogenase activity 0 0 18255 GO:0047002 L-arabinitol 2-dehydrogenase activity 0 0 18256 GO:0047003 dTDP-6-deoxy-L-talose 4-dehydrogenase activity 0 0 18257 GO:0047004 UDP-N-acetylglucosamine 6-dehydrogenase activity 0 0 18258 GO:0047005 16-alpha-hydroxysteroid dehydrogenase activity 0 0 18259 GO:0047006 20-alpha-hydroxysteroid dehydrogenase activity 0 0 18260 GO:0047007 21-hydroxysteroid dehydrogenase (NAD+) activity 0 0 18261 GO:0047008 21-hydroxysteroid dehydrogenase (NADP+) activity 0 0 18262 GO:0047009 3-alpha-hydroxy-5-beta-androstane-17-one 3-alpha-dehydrogenase activity 0 0 18263 GO:0047010 hydroxycyclohexanecarboxylate dehydrogenase activity 0 0 18264 GO:0047011 2-dehydropantolactone reductase (A-specific) activity 0 0 18265 GO:0047012 sterol-4-alpha-carboxylate 3-dehydrogenase (decarboxylating) activity 0 0 18266 GO:0047013 12-alpha-hydroxysteroid dehydrogenase activity 0 0 18267 GO:0047014 glycerol-3-phosphate 1-dehydrogenase (NADP+) activity 0 0 18268 GO:0047015 3-hydroxy-2-methylbutyryl-CoA dehydrogenase activity 0 0 18269 GO:0047016 cholest-5-ene-3-beta,7-alpha-diol 3-beta-dehydrogenase activity 0 0 18270 GO:0047017 prostaglandin-F synthase activity 0 0 18271 GO:0047018 indole-3-acetaldehyde reductase (NADH) activity 0 0 18272 GO:0047019 indole-3-acetaldehyde reductase (NADPH) activity 0 0 18273 GO:0047020 15-hydroxyprostaglandin-D dehydrogenase (NADP+) activity 0 0 18274 GO:0047021 15-hydroxyprostaglandin dehydrogenase (NADP+) activity 0 0 18275 GO:0047022 7-beta-hydroxysteroid dehydrogenase (NADP+) activity 0 0 18276 GO:0047023 3(or 17)-alpha-hydroxysteroid dehydrogenase activity 0 0 18277 GO:0047024 3-beta(or 20-alpha)-hydroxysteroid dehydrogenase activity 0 0 18278 GO:0047025 3-oxoacyl-[acyl-carrier protein] reductase (NADH) activity 0 0 18279 GO:0047026 3-alpha-hydroxysteroid dehydrogenase (A-specific) activity 0 0 18280 GO:0047027 benzyl-2-methyl-hydroxybutyrate dehydrogenase activity 0 0 18281 GO:0047028 6-pyruvoyltetrahydropterin 2'-reductase activity 0 0 18282 GO:0047029 (R)-4-hydroxyphenyllactate dehydrogenase activity 0 0 18283 GO:0047030 4-hydroxycyclohexanecarboxylate dehydrogenase activity 0 0 18284 GO:0047031 diethyl 2-methyl-3-oxosuccinate reductase activity 0 0 18285 GO:0047032 3-alpha-hydroxyglycyrrhetinate dehydrogenase activity 0 0 18286 GO:0047033 15-hydroxyprostaglandin-I dehydrogenase (NADP+) activity 0 0 18287 GO:0047034 15-hydroxyicosatetraenoate dehydrogenase activity 0 0 18288 GO:0047035 3-alpha(17-beta)-hydroxysteroid dehydrogenase (NAD+) activity 0 0 18289 GO:0047036 codeinone reductase (NADPH) activity 0 0 18290 GO:0047037 salutaridine reductase (NADPH) activity 0 0 18291 GO:0047038 D-arabinitol 2-dehydrogenase activity 0 0 18292 GO:0047039 tetrahydroxynaphthalene reductase activity 0 0 18293 GO:0047040 pteridine reductase activity 0 0 18294 GO:0047041 (S)-carnitine 3-dehydrogenase activity 0 0 18295 GO:0047042 3-alpha-hydroxysteroid dehydrogenase (B-specific) activity 0 0 18296 GO:0047043 3-alpha-hydroxycholanate dehydrogenase activity 0 0 18297 GO:0047044 3-alpha(or 20-beta)-hydroxysteroid dehydrogenase activity 0 0 18298 GO:0047045 testosterone 17-beta-dehydrogenase (NADP+) activity 0 0 18299 GO:0047046 homoisocitrate dehydrogenase activity 0 0 18300 GO:0047047 oxaloglycolate reductase (decarboxylating) activity 0 0 18301 GO:0047048 3-hydroxybenzyl-alcohol dehydrogenase activity 0 0 18302 GO:0047049 (R)-2-hydroxy-fatty-acid dehydrogenase activity 0 0 18303 GO:0047050 (S)-2-hydroxy-fatty-acid dehydrogenase activity 0 0 18304 GO:0047051 D-lactate dehydrogenase (cytochrome c-553) activity 0 0 18305 GO:0047052 (S)-stylopine synthase activity 0 0 18306 GO:0047053 (S)-cheilanthifoline synthase activity 0 0 18307 GO:0047054 berbamunine synthase activity 0 0 18308 GO:0047055 salutaridine synthase activity 0 0 18309 GO:0047056 (S)-canadine synthase activity 0 0 18310 GO:0047057 vitamin-K-epoxide reductase (warfarin-sensitive) activity 0 0 18311 GO:0047058 vitamin-K-epoxide reductase (warfarin-insensitive) activity 0 0 18312 GO:0047059 polyvinyl-alcohol dehydrogenase (acceptor) activity 0 0 18313 GO:0047060 (R)-pantolactone dehydrogenase (flavin) activity 0 0 18314 GO:0047061 glucose-fructose oxidoreductase activity 0 0 18315 GO:0047062 trans-acenaphthene-1,2-diol dehydrogenase activity 0 0 18316 GO:0047063 L-ascorbate-cytochrome-b5 reductase activity 0 0 18317 GO:0047064 sulochrin oxidase [(+)-bisdechlorogeodin-forming] activity 0 0 18318 GO:0047065 sulochrin oxidase [(-)-bisdechlorogeodin-forming] activity 0 0 18319 GO:0047066 phospholipid-hydroperoxide glutathione peroxidase activity 0 0 18320 GO:0047067 hydrogen:quinone oxidoreductase activity 0 0 18321 GO:0047068 N5,N10-methenyltetrahydromethanopterin hydrogenase activity 0 0 18322 GO:0047069 7,8-dihydroxykynurenate 8,8a-dioxygenase activity 0 0 18323 GO:0047070 3-carboxyethylcatechol 2,3-dioxygenase activity 0 0 18324 GO:0047071 3,4-dihydroxy-9,10-secoandrosta-1,3,5(10)-triene-9,17-dione 4,5-dioxygenase activity 0 0 18325 GO:0047072 2,3-dihydroxybenzoate 2,3-dioxygenase activity 0 0 18326 GO:0047073 2,4'-dihydroxyacetophenone dioxygenase activity 0 0 18327 GO:0047074 4-hydroxycatechol 1,2-dioxygenase activity 0 0 18328 GO:0047075 2,5-dihydroxypyridine 5,6-dioxygenase activity 0 0 18329 GO:0047076 methylphenyltetrahydropyridine N-monooxygenase activity 0 0 18330 GO:0047077 Photinus-luciferin 4-monooxygenase (ATP-hydrolyzing) activity 0 0 18331 GO:0047078 3-hydroxy-4-oxoquinoline 2,4-dioxygenase activity 0 0 18332 GO:0047079 pyrimidine-deoxynucleoside 1'-dioxygenase activity 0 0 18333 GO:0047080 pyrimidine-deoxynucleoside 2'-dioxygenase activity 0 0 18334 GO:0047081 3-hydroxy-2-methylpyridinecarboxylate dioxygenase activity 0 0 18335 GO:0047082 3,9-dihydroxypterocarpan 6a-monooxygenase activity 0 0 18336 GO:0047083 5-O-(4-coumaroyl)-D-quinate 3'-monooxygenase activity 0 0 18337 GO:0047084 methyltetrahydroprotoberberine 14-monooxygenase activity 0 0 18338 GO:0047085 hydroxyphenylacetonitrile 2-monooxygenase activity 0 0 18339 GO:0047086 ketosteroid monooxygenase activity 0 0 18340 GO:0047087 protopine 6-monooxygenase activity 0 0 18341 GO:0047088 dihydrosanguinarine 10-monooxygenase activity 0 0 18342 GO:0047089 dihydrochelirubine 12-monooxygenase activity 0 0 18343 GO:0047090 benzoyl-CoA 3-monooxygenase activity 0 0 18344 GO:0047091 L-lysine 6-monooxygenase (NADPH) activity 0 0 18345 GO:0047092 27-hydroxycholesterol 7-alpha-monooxygenase activity 0 0 18346 GO:0047093 4-hydroxyquinoline 3-monooxygenase activity 0 0 18347 GO:0047094 3-hydroxyphenylacetate 6-hydroxylase activity 0 0 18348 GO:0047095 2-hydroxycyclohexanone 2-monooxygenase activity 0 0 18349 GO:0047096 androst-4-ene-3,17-dione monooxygenase activity 0 0 18350 GO:0047097 phylloquinone monooxygenase (2,3-epoxidizing) activity 0 0 18351 GO:0047098 Latia-luciferin monooxygenase (demethylating) activity 0 0 18352 GO:0047099 CDP-4-dehydro-6-deoxyglucose reductase activity 0 0 18353 GO:0047100 glyceraldehyde-3-phosphate dehydrogenase (NADP+) (phosphorylating) activity 0 0 18354 GO:0047101 2-oxoisovalerate dehydrogenase (acylating) activity 0 0 18355 GO:0047102 aminomuconate-semialdehyde dehydrogenase activity 0 0 18356 GO:0047103 3-alpha,7-alpha,12-alpha-trihydroxycholestan-26-al 26-oxidoreductase activity 0 0 18357 GO:0047104 hexadecanal dehydrogenase (acylating) activity 0 0 18358 GO:0047105 4-trimethylammoniobutyraldehyde dehydrogenase activity 0 0 18359 GO:0047106 4-hydroxyphenylacetaldehyde dehydrogenase activity 0 0 18360 GO:0047107 gamma-guanidinobutyraldehyde dehydrogenase activity 0 0 18361 GO:0047108 (R)-3-hydroxyacid-ester dehydrogenase activity 0 0 18362 GO:0047109 (S)-3-hydroxyacid-ester dehydrogenase activity 0 0 18363 GO:0047110 phenylglyoxylate dehydrogenase (acylating) activity 0 0 18364 GO:0047111 formate dehydrogenase (cytochrome-c-553) activity 0 0 18365 GO:0047112 pyruvate oxidase activity 0 0 18366 GO:0047113 aldehyde dehydrogenase (pyrroloquinoline-quinone) activity 0 0 18367 GO:0047114 kynurenate-7,8-dihydrodiol dehydrogenase activity 0 0 18368 GO:0047115 trans-1,2-dihydrobenzene-1,2-diol dehydrogenase activity 0 0 18369 GO:0047116 1,6-dihydroxycyclohexa-2,4-diene-1-carboxylate dehydrogenase activity 0 0 18370 GO:0047117 enoyl-[acyl-carrier protein] reductase (NADPH, A-specific) activity 0 0 18371 GO:0047118 2-hydroxy-6-oxo-6-phenylhexa-2,4-dienoate reductase activity 0 0 18372 GO:0047119 2-methyl-branched-chain-enoyl-CoA reductase activity 0 0 18373 GO:0047120 (3S,4R)-3,4-dihydroxycyclohexa-1,5-diene-1,4-dicarboxylate dehydrogenase activity 0 0 18374 GO:0047121 isoquinoline 1-oxidoreductase activity 0 0 18375 GO:0047122 quinaldate 4-oxidoreductase activity 0 0 18376 GO:0047123 quinoline-4-carboxylate 2-oxidoreductase activity 0 0 18377 GO:0047124 L-erythro-3,5-diaminohexanoate dehydrogenase activity 0 0 18378 GO:0047125 delta1-piperideine-2-carboxylate reductase activity 0 0 18379 GO:0047126 N5-(carboxyethyl)ornithine synthase activity 0 0 18380 GO:0047127 thiomorpholine-carboxylate dehydrogenase activity 0 0 18381 GO:0047128 1,2-dehydroreticulinium reductase (NADPH) activity 0 0 18382 GO:0047129 opine dehydrogenase activity 0 0 18383 GO:0047130 saccharopine dehydrogenase (NADP+, L-lysine-forming) activity 0 0 18384 GO:0047131 saccharopine dehydrogenase (NAD+, L-glutamate-forming) activity 0 0 18385 GO:0047132 dihydrobenzophenanthridine oxidase activity 0 0 18386 GO:0047133 dimethylamine dehydrogenase activity 0 0 18387 GO:0047134 protein-disulfide reductase activity 0 0 18388 GO:0047135 bis-gamma-glutamylcystine reductase activity 0 0 18389 GO:0047136 4-(dimethylamino)phenylazoxybenzene reductase activity 0 0 18390 GO:0047137 N-hydroxy-2-acetamidofluorene reductase activity 0 0 18391 GO:0047138 aquacobalamin reductase activity 0 0 18392 GO:0047139 glutathione-homocystine transhydrogenase activity 0 0 18393 GO:0047140 glutathione-CoA-glutathione transhydrogenase activity 0 0 18394 GO:0047141 glutathione-cystine transhydrogenase activity 0 0 18395 GO:0047142 enzyme-thiol transhydrogenase (glutathione-disulfide) activity 0 0 18396 GO:0047143 chlorate reductase activity 0 0 18397 GO:0047144 2-acylglycerol-3-phosphate O-acyltransferase activity 0 0 18398 GO:0047145 demethylsterigmatocystin 6-O-methyltransferase activity 0 0 18399 GO:0047146 sterigmatocystin 7-O-methyltransferase activity 0 0 18400 GO:0047147 trimethylsulfonium-tetrahydrofolate N-methyltransferase activity 0 0 18401 GO:0047148 methylamine-glutamate N-methyltransferase activity 0 0 18402 GO:0047149 thetin-homocysteine S-methyltransferase activity 0 0 18403 GO:0047150 betaine-homocysteine S-methyltransferase activity 0 0 18404 GO:0047151 methylenetetrahydrofolate-tRNA-(uracil-5-)-methyltransferase (FADH2-oxidizing) activity 0 0 18405 GO:0047152 methanol-5-hydroxybenzimidazolylcobamide Co-methyltransferase activity 0 0 18406 GO:0047153 deoxycytidylate 5-hydroxymethyltransferase activity 0 0 18407 GO:0047154 methylmalonyl-CoA carboxytransferase activity 0 0 18408 GO:0047155 3-hydroxymethylcephem carbamoyltransferase activity 0 0 18409 GO:0047156 acetoin-ribose-5-phosphate transaldolase activity 0 0 18410 GO:0047157 myelin-proteolipid O-palmitoyltransferase activity 0 0 18411 GO:0047158 sinapoylglucose-sinapoylglucose O-sinapoyltransferase activity 0 0 18412 GO:0047159 1-alkenylglycerophosphocholine O-acyltransferase activity 0 0 18413 GO:0047160 alkylglycerophosphate 2-O-acetyltransferase activity 0 0 18414 GO:0047161 tartronate O-hydroxycinnamoyltransferase activity 0 0 18415 GO:0047162 17-O-deacetylvindoline O-acetyltransferase activity 0 0 18416 GO:0047163 3,4-dichloroaniline N-malonyltransferase activity 0 0 18417 GO:0047164 isoflavone-7-O-beta-glucoside 6''-O-malonyltransferase activity 0 0 18418 GO:0047165 flavonol-3-O-beta-glucoside O-malonyltransferase activity 0 0 18419 GO:0047166 1-alkenylglycerophosphoethanolamine O-acyltransferase activity 0 0 18420 GO:0047167 1-alkyl-2-acetylglycerol O-acyltransferase activity 0 0 18421 GO:0047168 isocitrate O-dihydroxycinnamoyltransferase activity 0 0 18422 GO:0047169 galactarate O-hydroxycinnamoyltransferase activity 0 0 18423 GO:0047170 glucarate O-hydroxycinnamoyltransferase activity 0 0 18424 GO:0047171 glucarolactone O-hydroxycinnamoyltransferase activity 0 0 18425 GO:0047172 shikimate O-hydroxycinnamoyltransferase activity 0 0 18426 GO:0047173 phosphatidylcholine-retinol O-acyltransferase activity 0 0 18427 GO:0047174 putrescine N-hydroxycinnamoyltransferase activity 0 0 18428 GO:0047175 galactosylacylglycerol O-acyltransferase activity 0 0 18429 GO:0047176 beta-glucogallin-tetrakisgalloylglucose O-galloyltransferase activity 0 0 18430 GO:0047177 glycerophospholipid arachidonoyl-transferase (CoA-independent) activity 0 0 18431 GO:0047178 glycerophospholipid acyltransferase (CoA-dependent) activity 0 0 18432 GO:0047179 platelet-activating factor acetyltransferase activity 0 0 18433 GO:0047180 salutaridinol 7-O-acetyltransferase activity 0 0 18434 GO:0047181 benzophenone synthase activity 0 0 18435 GO:0047182 alcohol O-cinnamoyltransferase activity 0 0 18436 GO:0047183 anthocyanin 5-aromatic acyltransferase activity 0 0 18437 GO:0047184 1-acylglycerophosphocholine O-acyltransferase activity 0 0 18438 GO:0047185 N-acetylneuraminate 4-O-acetyltransferase activity 0 0 18439 GO:0047186 N-acetylneuraminate 7-O(or 9-O)-acetyltransferase activity 0 0 18440 GO:0047187 deacetyl-[citrate-(pro-3S)-lyase] S-acetyltransferase activity 0 0 18441 GO:0047188 aromatic-hydroxylamine O-acetyltransferase activity 0 0 18442 GO:0047189 2,3-diaminopropionate N-oxalyltransferase activity 0 0 18443 GO:0047190 2-acylglycerophosphocholine O-acyltransferase activity 0 0 18444 GO:0047191 1-alkylglycerophosphocholine O-acyltransferase activity 0 0 18445 GO:0047192 1-alkylglycerophosphocholine O-acetyltransferase activity 0 0 18446 GO:0047193 CDP-acylglycerol O-arachidonoyltransferase activity 0 0 18447 GO:0047194 indoleacetylglucose-inositol O-acyltransferase activity 0 0 18448 GO:0047195 diacylglycerol-sterol O-acyltransferase activity 0 0 18449 GO:0047196 long-chain-alcohol O-fatty-acyltransferase activity 0 0 18450 GO:0047197 triacylglycerol-sterol O-acyltransferase activity 0 0 18451 GO:0047198 cysteine-S-conjugate N-acetyltransferase activity 0 0 18452 GO:0047199 phosphatidylcholine-dolichol O-acyltransferase activity 0 0 18453 GO:0047200 tetrahydrodipicolinate N-acetyltransferase activity 0 0 18454 GO:0047201 beta-glucogallin O-galloyltransferase activity 0 0 18455 GO:0047202 sinapoylglucose-choline O-sinapoyltransferase activity 0 0 18456 GO:0047203 13-hydroxylupinine O-tigloyltransferase activity 0 0 18457 GO:0047204 chlorogenate-glucarate O-hydroxycinnamoyltransferase activity 0 0 18458 GO:0047205 quinate O-hydroxycinnamoyltransferase activity 0 0 18459 GO:0047206 UDP-N-acetylmuramoylpentapeptide-lysine N6-alanyltransferase activity 0 0 18460 GO:0047207 1,2-beta-fructan 1F-fructosyltransferase activity 0 0 18461 GO:0047208 o-dihydroxycoumarin 7-O-glucosyltransferase activity 0 0 18462 GO:0047209 coniferyl-alcohol glucosyltransferase activity 0 0 18463 GO:0047210 alpha-1,4-glucan-protein synthase (UDP-forming) activity 0 0 18464 GO:0047211 alpha-1,4-glucan-protein synthase (ADP-forming) activity 0 0 18465 GO:0047212 2-coumarate O-beta-glucosyltransferase activity 0 0 18466 GO:0047213 anthocyanidin 3-O-glucosyltransferase activity 0 0 18467 GO:0047214 cyanidin-3-rhamnosylglucoside 5-O-glucosyltransferase activity 0 0 18468 GO:0047215 indole-3-acetate beta-glucosyltransferase activity 0 0 18469 GO:0047216 inositol 3-alpha-galactosyltransferase activity 0 0 18470 GO:0047217 sucrose-1,6-alpha-glucan 3(6)-alpha-glucosyltransferase activity 0 0 18471 GO:0047218 hydroxycinnamate 4-beta-glucosyltransferase activity 0 0 18472 GO:0047219 monoterpenol beta-glucosyltransferase activity 0 0 18473 GO:0047220 galactosylxylosylprotein 3-beta-galactosyltransferase activity 0 0 18474 GO:0047221 sn-glycerol-3-phosphate 2-alpha-galactosyltransferase activity 0 0 18475 GO:0047222 mannotetraose 2-alpha-N-acetylglucosaminyltransferase activity 0 0 18476 GO:0047223 beta-1,3-galactosyl-O-glycosyl-glycoprotein beta-1,3-N-acetylglucosaminyltransferase activity 0 0 18477 GO:0047224 acetylgalactosaminyl-O-glycosyl-glycoprotein beta-1,3-N-acetylglucosaminyltransferase activity 0 0 18478 GO:0047225 acetylgalactosaminyl-O-glycosyl-glycoprotein beta-1,6-N-acetylglucosaminyltransferase activity 0 0 18479 GO:0047226 globotriosylceramide beta-1,6-N-acetylgalactosaminyltransferase activity 0 0 18480 GO:0047227 indolylacetyl-myo-inositol galactosyltransferase activity 0 0 18481 GO:0047228 1,2-diacylglycerol 3-glucosyltransferase activity 0 0 18482 GO:0047229 13-hydroxydocosanoate 13-beta-glucosyltransferase activity 0 0 18483 GO:0047230 flavonol-3-O-glucoside L-rhamnosyltransferase activity 0 0 18484 GO:0047231 pyridoxine 5'-O-beta-D-glucosyltransferase activity 0 0 18485 GO:0047232 galactosyl-N-acetylglucosaminylgalactosylglucosyl-ceramide beta-1,6-N-acetylglucosaminyltransferase activity 0 0 18486 GO:0047233 N-acetylneuraminylgalactosylglucosylceramide beta-1,4-N-acetylgalactosaminyltransferase activity 0 0 18487 GO:0047234 raffinose-raffinose alpha-galactotransferase activity 0 0 18488 GO:0047235 sucrose 6F-alpha-galactotransferase activity 0 0 18489 GO:0047236 methyl-ONN-azoxymethanol beta-D-glucosyltransferase activity 0 0 18490 GO:0047237 glucuronylgalactosylproteoglycan 4-beta-N-acetylgalactosaminyltransferase activity 0 0 18491 GO:0047238 glucuronosyl-N-acetylgalactosaminyl-proteoglycan 4-beta-N-acetylgalactosaminyltransferase activity 0 0 18492 GO:0047239 hydroxymandelonitrile glucosyltransferase activity 0 0 18493 GO:0047240 lactosylceramide beta-1,3-galactosyltransferase activity 0 0 18494 GO:0047241 lipopolysaccharide N-acetylmannosaminouronosyltransferase activity 0 0 18495 GO:0047242 hydroxyanthraquinone glucosyltransferase activity 0 0 18496 GO:0047243 flavanone 7-O-beta-glucosyltransferase activity 0 0 18497 GO:0047244 N-acetylglucosaminyldiphosphoundecaprenol N-acetyl-beta-D-mannosaminyltransferase activity 0 0 18498 GO:0047245 N-acetylglucosaminyldiphosphoundecaprenol glucosyltransferase activity 0 0 18499 GO:0047246 luteolin-7-O-glucuronide 7-O-glucuronosyltransferase activity 0 0 18500 GO:0047247 luteolin-7-O-diglucuronide 4'-O-glucuronosyltransferase activity 0 0 18501 GO:0047248 nuatigenin 3-beta-glucosyltransferase activity 0 0 18502 GO:0047249 sarsapogenin 3-beta-glucosyltransferase activity 0 0 18503 GO:0047250 4-hydroxybenzoate 4-O-beta-D-glucosyltransferase activity 0 0 18504 GO:0047251 thiohydroximate beta-D-glucosyltransferase activity 0 0 18505 GO:0047252 beta-mannosylphosphodecaprenol-mannooligosaccharide 6-mannosyltransferase activity 0 0 18506 GO:0047253 alpha-1,6-mannosyl-glycoprotein 4-beta-N-acetylglucosaminyltransferase activity 0 0 18507 GO:0047254 2,4-dihydroxy-7-methoxy-2H-1,4-benzoxazin-3(4H)-one 2-D-glucosyltransferase activity 0 0 18508 GO:0047255 galactogen 6-beta-galactosyltransferase activity 0 0 18509 GO:0047256 lactosylceramide 1,3-N-acetyl-beta-D-glucosaminyltransferase activity 0 0 18510 GO:0047257 diglucosyl diacylglycerol synthase activity 0 0 18511 GO:0047258 sphingosine beta-galactosyltransferase activity 0 0 18512 GO:0047259 glucomannan 4-beta-mannosyltransferase activity 0 0 18513 GO:0047260 alpha,alpha-trehalose-phosphate synthase (GDP-forming) activity 0 0 18514 GO:0047261 steroid N-acetylglucosaminyltransferase activity 0 0 18515 GO:0047262 polygalacturonate 4-alpha-galacturonosyltransferase activity 0 0 18516 GO:0047263 N-acylsphingosine galactosyltransferase activity 0 0 18517 GO:0047264 heteroglycan alpha-mannosyltransferase activity 0 0 18518 GO:0047265 poly(glycerol-phosphate) alpha-glucosyltransferase activity 0 0 18519 GO:0047266 poly(ribitol-phosphate) beta-glucosyltransferase activity 0 0 18520 GO:0047267 undecaprenyl-phosphate mannosyltransferase activity 0 0 18521 GO:0047268 galactinol-raffinose galactosyltransferase activity 0 0 18522 GO:0047269 poly(ribitol-phosphate) N-acetylglucosaminyltransferase activity 0 0 18523 GO:0047270 lipopolysaccharide glucosyltransferase II activity 0 0 18524 GO:0047271 glycosaminoglycan galactosyltransferase activity 0 0 18525 GO:0047272 phosphopolyprenol glucosyltransferase activity 0 0 18526 GO:0047273 galactosylgalactosylglucosylceramide beta-D-acetylgalactosaminyltransferase activity 0 0 18527 GO:0047274 galactinol-sucrose galactosyltransferase activity 0 0 18528 GO:0047275 glucosaminylgalactosylglucosylceramide beta-galactosyltransferase activity 0 0 18529 GO:0047276 N-acetyllactosaminide 3-alpha-galactosyltransferase activity 0 0 18530 GO:0047277 globoside alpha-N-acetylgalactosaminyltransferase activity 0 0 20042 GO:0050006 isomaltulose synthase activity 0 0 20043 GO:0050007 isonocardicin synthase activity 0 0 20044 GO:0050008 isopiperitenone delta-isomerase activity 0 0 20045 GO:0050009 isopropanol dehydrogenase (NADP+) activity 0 0 20046 GO:0050010 isovitexin beta-glucosyltransferase activity 0 0 20047 GO:0050011 itaconyl-CoA hydratase activity 0 0 20048 GO:0050012 juglone 3-monooxygenase activity 0 0 20049 GO:0050013 2-dehydropantoate aldolase activity 0 0 20050 GO:0050014 ketotetrose-phosphate aldolase activity 0 0 20051 GO:0050015 kievitone hydratase activity 0 0 20052 GO:0050016 kynurenine 7,8-hydroxylase activity 0 0 20053 GO:0050017 L-3-cyanoalanine synthase activity 0 0 20054 GO:0050018 L-amino-acid dehydrogenase activity 0 0 20055 GO:0050019 L-arabinitol 4-dehydrogenase activity 0 0 20056 GO:0050020 L-arabinonate dehydratase activity 0 0 20057 GO:0050021 L-arabinonolactonase activity 0 0 20058 GO:0050022 L-arabinose 1-dehydrogenase activity 0 0 20059 GO:0050023 L-fuconate dehydratase activity 0 0 20060 GO:0050024 L-galactonolactone oxidase activity 0 0 20061 GO:0050025 L-glutamate oxidase activity 0 0 20062 GO:0050026 L-glycol dehydrogenase activity 0 0 20063 GO:0050027 L-idonate 2-dehydrogenase activity 0 0 20064 GO:0050028 L-lysine-lactamase activity 0 0 20065 GO:0050029 L-lysine oxidase activity 0 0 20066 GO:0050030 L-pipecolate dehydrogenase activity 0 0 20067 GO:0050031 L-pipecolate oxidase activity 0 0 20068 GO:0050032 L-rhamnonate dehydratase activity 0 0 20069 GO:0050033 L-rhamnono-1,4-lactonase activity 0 0 20070 GO:0050034 L-rhamnose 1-dehydrogenase activity 0 0 20071 GO:0050035 L-sorbose oxidase activity 0 0 20072 GO:0050036 L-threonate 3-dehydrogenase activity 0 0 20073 GO:0050037 L-xylose 1-dehydrogenase activity 0 0 20074 GO:0050038 L-xylulose reductase activity 0 0 20075 GO:0050039 lactaldehyde reductase (NADPH) activity 0 0 20076 GO:0050040 lactate 2-monooxygenase activity 0 0 20077 GO:0050041 lactate aldolase activity 0 0 20078 GO:0050042 lactate-malate transhydrogenase activity 0 0 20079 GO:0050043 lactate racemase activity 0 0 20080 GO:0050044 galactose-6-phosphate isomerase activity 0 0 20081 GO:0050045 laminaribiose phosphorylase activity 0 0 20082 GO:0050046 lathosterol oxidase activity 0 0 20083 GO:0050047 leucine 2,3-aminomutase activity 0 0 20084 GO:0050048 leucine transaminase activity 0 0 20085 GO:0050049 leucine dehydrogenase activity 0 0 20086 GO:0050050 leucine N-acetyltransferase activity 0 0 20087 GO:0050051 leukotriene-B4 20-monooxygenase activity 0 0 20088 GO:0050052 leukotriene-E4 20-monooxygenase activity 0 0 20089 GO:0050053 levansucrase activity 0 0 20090 GO:0050054 lignostilbene alpha beta-dioxygenase activity 0 0 20091 GO:0050055 limonin-D-ring-lactonase activity 0 0 20092 GO:0050056 linalool 8-monooxygenase activity 0 0 20093 GO:0050057 linamarin synthase activity 0 0 20094 GO:0050058 linoleate isomerase activity 0 0 20095 GO:0050059 lombricine kinase activity 0 0 20096 GO:0050060 long-chain-alcohol dehydrogenase activity 0 0 20097 GO:0050061 long-chain-aldehyde dehydrogenase activity 0 0 20098 GO:0050062 long-chain-fatty-acyl-CoA reductase activity 0 0 20099 GO:0050063 low-density lipoprotein kinase activity 0 0 20100 GO:0050064 luteolin 7-O-glucuronosyltransferase activity 0 0 20101 GO:0050065 lysine-pyruvate 6-transaminase activity 0 0 20102 GO:0050066 lysine 2,3-aminomutase activity 0 0 20103 GO:0050067 lysine 2-monooxygenase activity 0 0 20104 GO:0050068 lysine carbamoyltransferase activity 0 0 20105 GO:0050069 lysine dehydrogenase activity 0 0 20106 GO:0050070 lysolecithin acylmutase activity 0 0 20107 GO:0050071 lysyltransferase activity 0 0 20108 GO:0050072 m7G(5')pppN diphosphatase activity 0 0 20109 GO:0050073 macrolide 2'-kinase activity 0 0 20110 GO:0050074 malate-CoA ligase activity 0 0 20111 GO:0050075 maleate hydratase activity 0 0 20112 GO:0050076 maleate isomerase activity 0 0 20113 GO:0050077 maleylpyruvate isomerase activity 0 0 20114 GO:0050078 malonate CoA-transferase activity 0 0 20115 GO:0050079 acetylenecarboxylate hydratase activity, producing 3-oxopropanoate 0 0 20116 GO:0050080 malonyl-CoA decarboxylase activity 0 0 20117 GO:0050081 maltose-6'-phosphate glucosidase activity 0 0 20118 GO:0050082 maltose phosphorylase activity 0 0 20119 GO:0050083 malyl-CoA lyase activity 0 0 20120 GO:0050084 mannitol-1-phosphatase activity 0 0 20121 GO:0050085 mannitol 2-dehydrogenase (NADP+) activity 0 0 20122 GO:0050086 mannitol 2-dehydrogenase activity 0 0 20123 GO:0050087 mannitol dehydrogenase (cytochrome) activity 0 0 20124 GO:0050088 mannose-6-phosphate 6-reductase activity 0 0 20125 GO:0050089 mannose isomerase activity 0 0 20126 GO:0050090 mannuronate reductase activity 0 0 20127 GO:0050091 melilotate 3-monooxygenase activity 0 0 20128 GO:0050092 meso-tartrate dehydrogenase activity 0 0 20129 GO:0050093 methanol dehydrogenase activity 0 0 20130 GO:0050094 methionine-glyoxylate transaminase activity 0 0 20131 GO:0050095 methionine decarboxylase activity 0 0 20132 GO:0050096 methylaspartate ammonia-lyase activity 0 0 20133 GO:0050097 methylaspartate mutase activity 0 0 20134 GO:0050098 methylguanidinase activity 0 0 20135 GO:0050099 methylglutamate dehydrogenase activity 0 0 20136 GO:0050100 methylitaconate delta-isomerase activity 0 0 20137 GO:0050101 mimosinase activity 0 0 20138 GO:0050102 cellodextrin phosphorylase activity 0 0 20139 GO:0050103 dextrin dextranase activity 0 0 20140 GO:0050104 L-gulonate 3-dehydrogenase activity 0 0 20141 GO:0050105 L-gulonolactone oxidase activity 0 0 20142 GO:0050106 monomethyl-sulfatase activity 0 0 20143 GO:0050107 monoterpenol O-acetyltransferase activity 0 0 20144 GO:0050108 monoterpenyl-diphosphatase activity 0 0 20145 GO:0050109 morphine 6-dehydrogenase activity 0 0 20146 GO:0050110 mucinaminylserine mucinaminidase activity 0 0 20147 GO:0050111 mycocerosate synthase activity 0 0 20148 GO:0050112 inositol 2-dehydrogenase activity 0 0 20149 GO:0050113 inositol oxygenase activity 0 0 20150 GO:0050114 myo-inosose-2 dehydratase activity 0 0 20151 GO:0050115 myosin-light-chain-phosphatase activity 0 0 20152 GO:0050116 N,N-dimethylformamidase activity 0 0 20153 GO:0050117 N-acetyl-beta-alanine deacetylase activity 0 0 20154 GO:0050118 N-acetyldiaminopimelate deacetylase activity 0 0 20155 GO:0050119 N-acetylglucosamine deacetylase activity 0 0 20156 GO:0050120 N-acetylhexosamine 1-dehydrogenase activity 0 0 20157 GO:0050121 N-acylglucosamine 2-epimerase activity 0 0 20158 GO:0050122 N-acylhexosamine oxidase activity 0 0 20159 GO:0050123 N-acylmannosamine 1-dehydrogenase activity 0 0 20160 GO:0050124 N-acylneuraminate-9-phosphatase activity 0 0 20161 GO:0050125 N-benzyloxycarbonylglycine hydrolase activity 0 0 20162 GO:0050126 N-carbamoylputrescine amidase activity 0 0 20163 GO:0050127 N-carbamoylsarcosine amidase activity 0 0 20164 GO:0050128 N-feruloylglycine deacylase activity 0 0 20165 GO:0050129 N-formylglutamate deformylase activity 0 0 20166 GO:0050130 N-methyl-2-oxoglutaramate hydrolase activity 0 0 20167 GO:0050131 N-methyl-L-amino-acid oxidase activity 0 0 20168 GO:0050132 N-methylalanine dehydrogenase activity 0 0 20169 GO:0050133 N6-hydroxylysine O-acetyltransferase activity 0 0 20170 GO:0050134 N6-methyl-lysine oxidase activity 0 0 20171 GO:0050135 NAD(P)+ nucleosidase activity 0 0 20172 GO:0050136 NADH dehydrogenase (quinone) activity 0 0 20173 GO:0050137 NADPH peroxidase activity 0 0 20174 GO:0050138 nicotinate dehydrogenase activity 0 0 20175 GO:0050139 nicotinate glucosyltransferase activity 0 0 20176 GO:0050140 nitrate reductase (cytochrome) activity 0 0 20177 GO:0050141 nitroethane oxidase activity 0 0 20178 GO:0050142 nitrogenase (flavodoxin) activity 0 0 20179 GO:0050143 nocardicin-A epimerase activity 0 0 20180 GO:0050144 nucleoside deoxyribosyltransferase activity 0 0 20181 GO:0050145 nucleoside phosphate kinase activity 0 0 20182 GO:0050146 nucleoside phosphotransferase activity 0 0 20183 GO:0050147 nucleoside ribosyltransferase activity 0 0 20184 GO:0050148 nucleotide diphosphokinase activity 0 0 20185 GO:0050149 o-aminophenol oxidase activity 0 0 20186 GO:0050150 o-pyrocatechuate decarboxylase activity 0 0 20187 GO:0050151 oleate hydratase activity 0 0 20188 GO:0050152 omega-amidase activity 0 0 20189 GO:0050153 omega-hydroxydecanoate dehydrogenase activity 0 0 20190 GO:0050154 opheline kinase activity 0 0 20191 GO:0050155 ornithine(lysine) transaminase activity 0 0 20192 GO:0050156 ornithine N-benzoyltransferase activity 0 0 20193 GO:0050157 ornithine racemase activity 0 0 20194 GO:0050158 orotate reductase (NADPH) activity 0 0 20195 GO:0050159 orsellinate decarboxylase activity 0 0 20196 GO:0050160 orsellinate-depside hydrolase activity 0 0 20197 GO:0050161 oxalate CoA-transferase activity 0 0 20198 GO:0050162 oxalate oxidase activity 0 0 20199 GO:0050163 oxaloacetate tautomerase activity 0 0 20200 GO:0050164 oxoglutarate dehydrogenase (NADP+) activity 0 0 20201 GO:0050165 pantetheine kinase activity 0 0 20202 GO:0050166 pantoate 4-dehydrogenase activity 0 0 20203 GO:0050167 pantothenoylcysteine decarboxylase activity 0 0 20204 GO:0050168 pentanamidase activity 0 0 20205 GO:0050169 peptide-tryptophan 2,3-dioxygenase activity 0 0 20206 GO:0050170 peptidyl-glutaminase activity 0 0 20207 GO:0050171 phenol beta-glucosyltransferase activity 0 0 20208 GO:0050172 phenylalanine 2-monooxygenase activity 0 0 20209 GO:0050173 phenylalanine adenylyltransferase activity 0 0 20210 GO:0050174 phenylalanine decarboxylase activity 0 0 20211 GO:0050175 phenylalanine dehydrogenase activity 0 0 20212 GO:0050176 phenylalanine N-acetyltransferase activity 0 0 20213 GO:0050177 phenylpyruvate decarboxylase activity 0 0 20214 GO:0050178 phenylpyruvate tautomerase activity 0 0 20215 GO:0050179 phenylserine aldolase activity 0 0 20216 GO:0050180 phloretin hydrolase activity 0 0 20217 GO:0050181 phorbol-diester hydrolase activity 0 0 20218 GO:0050182 phosphate butyryltransferase activity 0 0 20219 GO:0050183 phosphatidylcholine 12-monooxygenase activity 0 0 20220 GO:0050184 phosphatidylcholine desaturase activity 0 0 20221 GO:0050185 phosphatidylinositol deacylase activity 0 0 20222 GO:0050186 phosphoadenylylsulfatase activity 0 0 20223 GO:0050187 phosphoamidase activity 0 0 20224 GO:0050188 phosphoenolpyruvate mutase activity 0 0 20225 GO:0050189 phosphoenolpyruvate phosphatase activity 0 0 20226 GO:0050190 phosphoglucokinase activity 0 0 20227 GO:0050191 phosphoglycerate kinase (GTP) activity 0 0 20228 GO:0050192 phosphoglycerate phosphatase activity 0 0 20229 GO:0050193 phosphoketolase activity 0 0 20230 GO:0050194 phosphonoacetaldehyde hydrolase activity 0 0 20231 GO:0050195 phosphoribokinase activity 0 0 20232 GO:0050196 [phosphorylase] phosphatase activity 0 0 20233 GO:0050197 phytanate-CoA ligase activity 0 0 20234 GO:0050198 pinosylvin synthase activity 0 0 20235 GO:0050199 piperidine N-piperoyltransferase activity 0 0 20236 GO:0050200 plasmalogen synthase activity 0 0 20237 GO:0050201 fucokinase activity 0 0 20238 GO:0050202 octopamine dehydratase activity 0 0 20239 GO:0050203 oxalate-CoA ligase activity 0 0 20240 GO:0050204 oxalomalate lyase activity 0 0 20241 GO:0050205 oxamate carbamoyltransferase activity 0 0 20242 GO:0050206 oximinotransferase activity 0 0 20243 GO:0050207 plasmanylethanolamine desaturase activity 0 0 20244 GO:0050208 polysialic-acid O-acetyltransferase activity 0 0 20245 GO:0050209 polyvinyl-alcohol oxidase activity 0 0 20246 GO:0050210 prenyl-diphosphatase activity 0 0 20247 GO:0050211 procollagen galactosyltransferase activity 0 0 20248 GO:0050212 progesterone 11-alpha-monooxygenase activity 0 0 20249 GO:0050213 progesterone 5-alpha-reductase activity 0 0 20250 GO:0050214 progesterone monooxygenase activity 0 0 20251 GO:0050215 propanediol dehydratase activity 0 0 20252 GO:0050216 propanediol-phosphate dehydrogenase activity 0 0 20253 GO:0050217 propioin synthase activity 0 0 20254 GO:0050218 propionate-CoA ligase activity 0 0 20255 GO:0050219 prostaglandin-A1 delta-isomerase activity 0 0 20256 GO:0050220 prostaglandin-E synthase activity 0 0 20257 GO:0050221 prostaglandin-E2 9-reductase activity 0 0 20258 GO:0050223 protocatechuate decarboxylase activity 0 0 20259 GO:0050224 prunasin beta-glucosidase activity 0 0 20260 GO:0050225 pseudouridine kinase activity 0 0 20261 GO:0050226 psychosine sulfotransferase activity 0 0 20262 GO:0050227 pteridine oxidase activity 0 0 20263 GO:0050228 pterin deaminase activity 0 0 20264 GO:0050229 pterocarpin synthase activity 0 0 20265 GO:0050230 purine imidazole-ring cyclase activity 0 0 20266 GO:0050231 putrescine carbamoyltransferase activity 0 0 20267 GO:0050232 putrescine oxidase activity 0 0 20268 GO:0050233 pyranose oxidase activity 0 0 20269 GO:0050234 pyrazolylalanine synthase activity 0 0 20270 GO:0050235 pyridoxal 4-dehydrogenase activity 0 0 20271 GO:0050236 pyridoxine 4-dehydrogenase activity 0 0 20272 GO:0050237 pyridoxine 4-oxidase activity 0 0 20273 GO:0050238 pyridoxine 5-dehydrogenase activity 0 0 20274 GO:0050239 pyrithiamine deaminase activity 0 0 20275 GO:0050240 pyrogallol 1,2-oxygenase activity 0 0 20276 GO:0050241 pyrroline-2-carboxylate reductase activity 0 0 20277 GO:0050242 pyruvate, phosphate dikinase activity 0 0 20278 GO:0050243 pyruvate dehydrogenase (NADP+) activity 0 0 20279 GO:0050244 pyruvate oxidase (CoA-acetylating) activity 0 0 20280 GO:0050245 quercitrinase activity 0 0 20281 GO:0050246 questin monooxygenase activity 0 0 20282 GO:0050247 raucaffricine beta-glucosidase activity 0 0 20283 GO:0050248 Renilla-luciferin 2-monooxygenase activity 0 0 20284 GO:0050249 Renilla-luciferin sulfotransferase activity 0 0 20285 GO:0050250 retinal oxidase activity 0 0 20286 GO:0050251 retinol isomerase activity 0 0 20287 GO:0050252 retinol O-fatty-acyltransferase activity 0 0 20288 GO:0050253 retinyl-palmitate esterase activity 0 0 20289 GO:0050254 rhodopsin kinase activity 0 0 20290 GO:0050255 ribitol 2-dehydrogenase activity 0 0 20291 GO:0050256 ribitol-5-phosphate 2-dehydrogenase activity 0 0 20292 GO:0050257 riboflavin phosphotransferase activity 0 0 20293 GO:0050258 riboflavinase activity 0 0 20294 GO:0050259 ribose 1-dehydrogenase (NADP+) activity 0 0 20295 GO:0050260 ribose-5-phosphate-ammonia ligase activity 0 0 20296 GO:0050261 ribose isomerase activity 0 0 20297 GO:0050262 ribosylnicotinamide kinase activity 0 0 20298 GO:0050263 ribosylpyrimidine nucleosidase activity 0 0 20299 GO:0050264 rifamycin-B oxidase activity 0 0 20300 GO:0050265 RNA uridylyltransferase activity 0 0 20301 GO:0050266 rosmarinate synthase activity 0 0 20302 GO:0050267 rubber cis-polyprenylcistransferase activity 0 0 20303 GO:0050268 coniferyl-alcohol dehydrogenase activity 0 0 20304 GO:0050269 coniferyl-aldehyde dehydrogenase activity 0 0 20305 GO:0050270 S-adenosylhomocysteine deaminase activity 0 0 20306 GO:0050271 S-alkylcysteine lyase activity 0 0 20307 GO:0050272 S-carboxymethylcysteine synthase activity 0 0 20308 GO:0050273 S-succinylglutathione hydrolase activity 0 0 20309 GO:0050274 salicyl-alcohol beta-D-glucosyltransferase activity 0 0 20310 GO:0050275 scopoletin glucosyltransferase activity 0 0 20311 GO:0050276 scyllo-inosamine 4-kinase activity 0 0 20312 GO:0050277 sedoheptulokinase activity 0 0 20313 GO:0050278 sedoheptulose-bisphosphatase activity 0 0 20314 GO:0050279 sepiapterin deaminase activity 0 0 20315 GO:0050280 sequoyitol dehydrogenase activity 0 0 20316 GO:0050281 serine-glyoxylate transaminase activity 0 0 20317 GO:0050282 serine 2-dehydrogenase activity 0 0 20318 GO:0050283 serine-sulfate ammonia-lyase activity 0 0 20319 GO:0050284 sinapate 1-glucosyltransferase activity 0 0 20320 GO:0050285 sinapine esterase activity 0 0 20321 GO:0050286 sorbitol-6-phosphatase activity 0 0 20322 GO:0050287 sorbose 5-dehydrogenase (NADP+) activity 0 0 20323 GO:0050288 sorbose dehydrogenase activity 0 0 20324 GO:0050289 spermidine dehydrogenase activity 0 0 20325 GO:0050290 sphingomyelin phosphodiesterase D activity 0 0 20326 GO:0050291 sphingosine N-acyltransferase activity 0 0 20327 GO:0050292 steroid 9-alpha-monooxygenase activity 0 0 20328 GO:0050293 steroid-lactonase activity 0 0 20329 GO:0050294 steroid sulfotransferase activity 0 0 20330 GO:0050295 steryl-beta-glucosidase activity 0 0 20331 GO:0050296 stipitatonate decarboxylase activity 0 0 20332 GO:0050297 stizolobate synthase activity 0 0 20333 GO:0050298 stizolobinate synthase activity 0 0 20334 GO:0050299 streptomycin 3''-kinase activity 0 0 20335 GO:0050300 streptomycin 6-kinase activity 0 0 20336 GO:0050301 streptomycin-6-phosphatase activity 0 0 20337 GO:0050302 indole-3-acetaldehyde oxidase activity 0 0 20338 GO:0050303 lysine 6-dehydrogenase activity 0 0 20339 GO:0050304 nitrous-oxide reductase activity 0 0 20340 GO:0050305 strombine dehydrogenase activity 0 0 20341 GO:0050306 sucrose 1F-fructosyltransferase activity 0 0 20342 GO:0050307 sucrose-phosphatase activity 0 0 20343 GO:0050308 sugar-phosphatase activity 0 0 20344 GO:0050309 sugar-terminal-phosphatase activity 0 0 20345 GO:0050310 sulfite dehydrogenase activity 0 0 20346 GO:0050311 sulfite reductase (ferredoxin) activity 0 0 20347 GO:0050312 sulfoacetaldehyde lyase activity 0 0 20348 GO:0050313 sulfur dioxygenase activity 0 0 20349 GO:0050314 sym-norspermidine synthase activity 0 0 20350 GO:0050315 synephrine dehydratase activity 0 0 20351 GO:0050316 T2-induced deoxynucleotide kinase activity 0 0 20352 GO:0050317 tagatose kinase activity 0 0 20353 GO:0050318 tannase activity 0 0 20354 GO:0050319 tartrate decarboxylase activity 0 0 20355 GO:0050320 tartrate epimerase activity 0 0 20356 GO:0050321 tau-protein kinase activity 0 0 20357 GO:0050322 taurine-2-oxoglutarate transaminase activity 0 0 20358 GO:0050323 taurine dehydrogenase activity 0 0 20359 GO:0050324 taurocyamine kinase activity 0 0 20360 GO:0050325 tauropine dehydrogenase activity 0 0 20361 GO:0050326 taxifolin 8-monooxygenase activity 0 0 20362 GO:0050327 testosterone 17-beta-dehydrogenase activity 0 0 20363 GO:0050328 tetrahydroberberine oxidase activity 0 0 20364 GO:0050329 tetrahydroxypteridine cycloisomerase activity 0 0 20365 GO:0050330 theanine hydrolase activity 0 0 20366 GO:0050331 thiamin diphosphate kinase activity 0 0 20367 GO:0050332 thiamin pyridinylase activity 0 0 20368 GO:0050333 thiamin-triphosphatase activity 0 0 20369 GO:0050334 thiaminase activity 0 0 20370 GO:0050335 thiocyanate isomerase activity 0 0 20371 GO:0050336 thioethanolamine S-acetyltransferase activity 0 0 20372 GO:0050337 thiosulfate-thiol sulfurtransferase activity 0 0 20373 GO:0050338 thiosulfate dehydrogenase activity 0 0 20374 GO:0050339 thymidine-triphosphatase activity 0 0 20375 GO:0050340 thymidylate 5'-phosphatase activity 0 0 20376 GO:0050341 thymine dioxygenase activity 0 0 20377 GO:0050342 tocopherol O-methyltransferase activity 0 0 20378 GO:0050343 trans-2-enoyl-CoA reductase (NAD+) activity 0 0 20379 GO:0050344 trans-cinnamate 2-monooxygenase activity 0 0 20380 GO:0050345 trans-epoxysuccinate hydrolase activity 0 0 20381 GO:0050346 trans-L-3-hydroxyproline dehydratase activity 0 0 20382 GO:0050347 trans-octaprenyltranstransferase activity 0 0 20383 GO:0050348 trehalose O-mycolyltransferase activity 0 0 20384 GO:0050349 triacetate-lactonase activity 0 0 1 null:local:null null 0 0 2 null:local:Note Note 0 0 3 null:local:Gap Gap 0 0 4 null:local:computer file computer file 0 0 5 null:local:synonym synonym 0 0 6 null:local:score score 0 0 7 null:local:glass glass 0 0 8 null:local:photochemical_oligo photochemical_oligo 0 0 9 null:developmental stages:fetus fetus 0 0 10 null:developmental stages:neonate neonate 0 0 11 null:developmental stages:child child 0 0 12 null:developmental stages:adult_young adult_young 0 0 13 null:developmental stages:adult adult 0 0 14 null:developmental stages:adult_old adult_old 0 0 15 null:local:survival_time survival_time 0 0 16 null:Statistical Terms:n n 0 0 17 null:Statistical Terms:minimum minimum 0 0 18 null:Statistical Terms:maximum maximum 0 0 19 null:Statistical Terms:modality modality 0 0 20 null:Statistical Terms:modality p modality p 0 0 21 null:Statistical Terms:mean mean 0 0 22 null:Statistical Terms:median median 0 0 23 null:Statistical Terms:mode mode 0 0 24 null:Statistical Terms:quartile 1 quartile 1 0 0 25 null:Statistical Terms:quartile 3 quartile 3 0 0 26 null:Statistical Terms:skewness skewness 0 0 27 null:Statistical Terms:kurtosis kurtosis 0 0 28 null:Statistical Terms:chi square p chi square p 0 0 29 null:Statistical Terms:standard deviation standard deviation 0 0 30 null:Statistical Terms:expectation maximization gaussian mean expectation maximization gaussian mean 0 0 31 null:Statistical Terms:expectation maximization p expectation maximization p 0 0 32 null:Statistical Terms:histogram histogram 0 0 35 OBO_REL:relationship relationship 0 0 38 OBO_REL:has_part has_part 0 0 39 OBO_REL:integral_part_of integral_part_of 0 0 40 OBO_REL:has_integral_part has_integral_part 0 0 41 OBO_REL:proper_part_of proper_part_of 0 0 42 OBO_REL:has_proper_part has_proper_part 0 0 43 OBO_REL:has_improper_part has_improper_part 0 0 44 OBO_REL:improper_part_of improper_part_of 0 0 45 OBO_REL:located_in located_in 0 0 46 OBO_REL:location_of location_of 0 0 47 OBO_REL:contained_in contained_in 0 0 48 OBO_REL:contains contains 0 0 50 OBO_REL:transformation_of transformation_of 0 0 51 OBO_REL:transformed_into transformed_into 0 0 53 OBO_REL:derived_into derived_into 0 0 54 OBO_REL:preceded_by preceded_by 0 0 55 OBO_REL:precedes precedes 0 0 56 OBO_REL:has_participant has_participant 0 0 57 OBO_REL:participates_in participates_in 0 0 58 OBO_REL:has_agent has_agent 0 0 59 OBO_REL:agent_in agent_in 0 0 60 OBO_REL:instance_of instance_of 0 0 49 OBO_REL:adjacent_to adjacent_to 0 0 61 OBO_REL:associated_with associated_with 0 0 52 OBO_REL:derives_from derives_from 0 0 62 OBO_REL:genome_of genome_of 0 0 63 OBO_REL:has_genome_location has_genome_location 1 0 64 OBO_REL:homologous_to homologous_to 0 0 65 OBO_REL:member_of member_of 0 0 66 OBO_REL:non_functional_homolog_of non_functional_homolog_of 0 0 67 OBO_REL:orthologous_to orthologous_to 0 0 68 OBO_REL:paralogous_to paralogous_to 0 0 69 OBO_REL:position_of position_of 0 0 70 OBO_REL:regulated_by regulated_by 1 0 71 OBO_REL:sequence_of sequence_of 0 0 72 OBO_REL:similar_to similar_to 0 0 73 SO:0000000 Sequence_Ontology 0 0 74 SO:0000001 region 0 0 76 SO:0000002 sequence_secondary_structure 0 0 77 SO:0000003 G_quartet 0 0 78 SO:0000004 interior_coding_exon 0 0 79 SO:0000005 satellite_DNA 0 0 80 SO:0000006 PCR_product 0 0 81 SO:0000007 read_pair 0 0 82 SO:0000008 gene_sensu_your_favorite_organism 0 0 83 SO:0000009 gene_class 0 0 84 SO:0000010 protein_coding_gene 0 0 85 SO:0000011 non_protein_coding_gene 0 0 86 SO:0000012 scRNA_primary_transcript 0 0 87 SO:0000013 scRNA 0 0 88 SO:0000014 INR_motif 0 0 89 SO:0000015 DPE_motif 0 0 90 SO:0000016 BRE_motif 0 0 91 SO:0000017 PSE_motif 0 0 92 SO:0000018 linkage_group 0 0 93 SO:0000019 RNA_hairpin_loop 0 0 94 SO:0000020 RNA_internal_loop 0 0 95 SO:0000021 asymmetric_RNA_internal_loop 0 0 96 SO:0000022 A_minor_RNA_motif 0 0 97 SO:0000023 K_turn_RNA_motif 0 0 98 SO:0000024 Sarcin_like_RNA_motif 0 0 99 SO:0000025 symmetric_RNA_internal_loop 0 0 100 SO:0000026 RNA_junction_loop 0 0 101 SO:0000027 RNA_hook_turn 0 0 102 SO:0000028 base_pair 0 0 103 SO:0000029 WC_base_pair 0 0 104 SO:0000030 sugar_edge_base_pair 0 0 105 SO:0000031 aptamer 0 0 106 SO:0000032 DNA_aptamer 0 0 107 SO:0000033 RNA_aptamer 0 0 108 SO:0000034 morpholino 0 0 109 SO:0000035 riboswitch 0 0 110 SO:0000036 matrix_attachment_site 0 0 111 SO:0000037 locus_control_region 0 0 112 SO:0000038 match_set 0 0 113 SO:0000039 match_part 0 0 114 SO:0000040 genomic_clone 0 0 115 SO:0000041 variation_operation 0 0 116 SO:0000042 pseudogene_attribute 0 0 117 SO:0000043 processed_pseudogene 0 0 118 SO:0000044 pseudogene_by_unequal_crossing_over 0 0 119 SO:0000045 delete 0 0 120 SO:0000046 insert 0 0 121 SO:0000047 invert 0 0 122 SO:0000048 substitute 0 0 123 SO:0000049 translocate 0 0 124 SO:0000050 gene_part (obsolete SO:0000050) 1 0 125 SO:0000051 probe 0 0 126 SO:0000052 assortment_derived_deficiency (obsolete SO:0000052) 1 0 127 SO:0000053 mutation_affecting_regulatory_region 0 0 128 SO:0000054 aneuploid 0 0 129 SO:0000055 hyperploid 0 0 130 SO:0000056 hypoploid 0 0 131 SO:0000057 operator 0 0 132 SO:0000058 assortment_derived_aneuploid (obsolete SO:0000058) 1 0 133 SO:0000059 nuclease_binding_site 0 0 134 SO:0000060 compound_chromosome_arm 0 0 135 SO:0000061 restriction_enzyme_binding_site 0 0 136 SO:0000062 deficient_intrachromosomal_transposition 0 0 137 SO:0000063 deficient_interchromosomal_transposition 0 0 138 SO:0000064 gene_by_transcript_attribute 0 0 139 SO:0000065 free_chromosome_arm 0 0 140 SO:0000066 gene_by_polyadenylation_attribute 0 0 141 SO:0000067 gene_to_gene_feature 0 0 142 SO:0000068 overlapping_gene 0 0 143 SO:0000069 gene_included_within_intron 0 0 144 SO:0000070 gene_included_within_intron_antiparallel 0 0 145 SO:0000071 gene_included_within_intron_parallel 0 0 146 SO:0000072 end_overlapping_gene 0 0 147 SO:0000073 end_overlapping_gene_five_primethree_prime_overlap 0 0 148 SO:0000074 end_overlapping_gene_five_primefive_prime_overlap 0 0 149 SO:0000075 end_overlapping_gene_three_primethree_prime_overlap 0 0 150 SO:0000076 end_overlapping_gene_three_primefive_prime_overlap 0 0 151 SO:0000077 antisense_gene 0 0 152 SO:0000078 polycistronic_transcript 0 0 153 SO:0000079 dicistronic_transcript 0 0 154 SO:0000080 member_of_operon 0 0 155 SO:0000081 member_gene_array 0 0 156 SO:0000082 processed_transcript_attribute 0 0 157 SO:0000083 macronuclear_sequence_feature 0 0 158 SO:0000084 micronuclear_sequence_feature 0 0 159 SO:0000085 gene_by_genome_location 0 0 160 SO:0000086 gene_by_organelle_of_genome 0 0 161 SO:0000087 nuclear_gene 0 0 162 SO:0000088 mt_gene 0 0 163 SO:0000089 kinetoplast_gene 0 0 164 SO:0000090 plastid_gene 0 0 165 SO:0000091 apicoplast_gene 0 0 166 SO:0000092 ct_gene 0 0 167 SO:0000093 chromoplast_gene 0 0 168 SO:0000094 cyanelle_gene 0 0 169 SO:0000095 leucoplast_gene 0 0 75 internal: 0 0 33 internal:cvterm_property_type comment 0 0 34 OBO_REL:is_a is_a 0 0 37 OBO_REL:part_of part_of 0 0 2392 GO:0003861 3-isopropylmalate dehydratase activity 0 0 2393 GO:0003862 3-isopropylmalate dehydrogenase activity 0 0 2394 GO:0003863 3-methyl-2-oxobutanoate dehydrogenase (2-methylpropanoyl-transferring) activity 0 0 2395 GO:0003864 3-methyl-2-oxobutanoate hydroxymethyltransferase activity 0 0 2396 GO:0003865 3-oxo-5-alpha-steroid 4-dehydrogenase activity 0 0 2397 GO:0003866 3-phosphoshikimate 1-carboxyvinyltransferase activity 0 0 2398 GO:0003867 4-aminobutyrate transaminase activity 0 0 2399 GO:0003868 4-hydroxyphenylpyruvate dioxygenase activity 0 0 2400 GO:0003869 4-nitrophenylphosphatase activity 0 0 2401 GO:0003870 5-aminolevulinate synthase activity 0 0 2402 GO:0003871 5-methyltetrahydropteroyltriglutamate-homocysteine S-methyltransferase activity 0 0 2403 GO:0003872 6-phosphofructokinase activity 0 0 2404 GO:0003873 6-phosphofructo-2-kinase activity 0 0 2405 GO:0003874 6-pyruvoyltetrahydropterin synthase activity 0 0 2406 GO:0003875 ADP-ribosylarginine hydrolase activity 0 0 2407 GO:0003876 AMP deaminase activity 0 0 2408 GO:0003877 ATP adenylyltransferase activity 0 0 2409 GO:0003878 ATP citrate synthase activity 0 0 2410 GO:0003879 ATP phosphoribosyltransferase activity 0 0 2411 GO:0003880 C-terminal protein carboxyl methyltransferase activity 0 0 2412 GO:0003881 CDP-diacylglycerol-inositol 3-phosphatidyltransferase activity 0 0 2413 GO:0003882 CDP-diacylglycerol-serine O-phosphatidyltransferase activity 0 0 2414 GO:0003883 CTP synthase activity 0 0 2415 GO:0003884 D-amino-acid oxidase activity 0 0 2416 GO:0003885 D-arabinono-1,4-lactone oxidase activity 0 0 2417 GO:0003886 DNA (cytosine-5-)-methyltransferase activity 0 0 2418 GO:0003887 DNA-directed DNA polymerase activity 0 0 2419 GO:0003889 alpha DNA polymerase activity 0 0 2420 GO:0003890 beta DNA polymerase activity 0 0 2421 GO:0003891 delta DNA polymerase activity 0 0 2422 GO:0003892 proliferating cell nuclear antigen (obsolete GO:0003892) 1 0 2423 GO:0003893 epsilon DNA polymerase activity 0 0 2424 GO:0003894 zeta DNA polymerase activity 0 0 2425 GO:0003895 gamma DNA-directed DNA polymerase activity 0 0 2426 GO:0003896 DNA primase activity 0 0 2427 GO:0003899 DNA-directed RNA polymerase activity 0 0 2428 GO:0003900 DNA-directed RNA polymerase I activity (obsolete GO:0003900) 1 0 2429 GO:0003901 DNA-directed RNA polymerase II activity (obsolete GO:0003901) 1 0 2430 GO:0003902 DNA-directed RNA polymerase III activity (obsolete GO:0003902) 1 0 2431 GO:0003904 deoxyribodipyrimidine photo-lyase activity 0 0 2432 GO:0003905 alkylbase DNA N-glycosylase activity 0 0 2433 GO:0003906 DNA-(apurinic or apyrimidinic site) lyase activity 0 0 2434 GO:0003908 methylated-DNA-[protein]-cysteine S-methyltransferase activity 0 0 2435 GO:0003909 DNA ligase activity 0 0 2436 GO:0003910 DNA ligase (ATP) activity 0 0 2437 GO:0003911 DNA ligase (NAD+) activity 0 0 2438 GO:0003912 DNA nucleotidylexotransferase activity 0 0 2439 GO:0003913 DNA photolyase activity 0 0 2440 GO:0003914 DNA (6-4) photolyase activity 0 0 2441 GO:0003916 DNA topoisomerase activity 0 0 2442 GO:0003917 DNA topoisomerase type I activity 0 0 2443 GO:0003918 DNA topoisomerase (ATP-hydrolyzing) activity 0 0 2444 GO:0003919 FMN adenylyltransferase activity 0 0 2445 GO:0003920 GMP reductase activity 0 0 2446 GO:0003921 GMP synthase activity 0 0 2447 GO:0003922 GMP synthase (glutamine-hydrolyzing) activity 0 0 2448 GO:0003923 GPI-anchor transamidase activity 0 0 2449 GO:0003924 GTPase activity 0 0 2450 GO:0003925 small monomeric GTPase activity (obsolete GO:0003925) 1 0 2451 GO:0003926 ARF small monomeric GTPase activity (obsolete GO:0003926) 1 0 2452 GO:0003927 heterotrimeric G-protein GTPase activity (obsolete GO:0003927) 1 0 2453 GO:0003928 RAB small monomeric GTPase activity (obsolete GO:0003928) 1 0 2454 GO:0003929 RAN small monomeric GTPase activity (obsolete GO:0003929) 1 0 2455 GO:0003930 RAS small monomeric GTPase activity (obsolete GO:0003930) 1 0 2456 GO:0003931 Rho small monomeric GTPase activity (obsolete GO:0003931) 1 0 2457 GO:0003932 SAR small monomeric GTPase activity (obsolete GO:0003932) 1 0 2458 GO:0003933 GTP cyclohydrolase activity 0 0 2459 GO:0003934 GTP cyclohydrolase I activity 0 0 2460 GO:0003935 GTP cyclohydrolase II activity 0 0 2461 GO:0003936 hydrogen-transporting two-sector ATPase activity (obsolete GO:0003936) 1 0 2462 GO:0003937 IMP cyclohydrolase activity 0 0 2463 GO:0003938 IMP dehydrogenase activity 0 0 2464 GO:0003939 L-iditol 2-dehydrogenase activity 0 0 2465 GO:0003940 L-iduronidase activity 0 0 2466 GO:0003941 L-serine ammonia-lyase activity 0 0 2467 GO:0003942 N-acetyl-gamma-glutamyl-phosphate reductase activity 0 0 2468 GO:0003943 N-acetylgalactosamine-4-sulfatase activity 0 0 2469 GO:0003944 N-acetylglucosamine-1-phosphodiester alpha-N-acetylglucosaminidase activity 0 0 2470 GO:0003945 N-acetyllactosamine synthase activity 0 0 2471 GO:0003947 (N-acetylneuraminyl)-galactosylglucosylceramide N-acetylgalactosaminyltransferase activity 0 0 2472 GO:0003948 N4-(beta-N-acetylglucosaminyl)-L-asparaginase activity 0 0 2473 GO:0003949 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino]imidazole-4-carboxamide isomerase activity 0 0 2474 GO:0003950 NAD+ ADP-ribosyltransferase activity 0 0 2475 GO:0003951 NAD+ kinase activity 0 0 2476 GO:0003952 NAD+ synthase (glutamine-hydrolyzing) activity 0 0 2477 GO:0003953 NAD+ nucleosidase activity 0 0 2478 GO:0003954 NADH dehydrogenase activity 0 0 2479 GO:0003955 NAD(P)H dehydrogenase (quinone) activity 0 0 2480 GO:0003956 NAD(P)+-protein-arginine ADP-ribosyltransferase activity 0 0 2481 GO:0003957 NAD(P)+ transhydrogenase (B-specific) activity 0 0 2482 GO:0003958 NADPH-hemoprotein reductase activity 0 0 2483 GO:0003959 NADPH dehydrogenase activity 0 0 2484 GO:0003960 NADPH:quinone reductase activity 0 0 2485 GO:0003961 O-acetylhomoserine aminocarboxypropyltransferase activity 0 0 2486 GO:0003962 cystathionine gamma-synthase activity 0 0 2487 GO:0003963 RNA-3'-phosphate cyclase activity 0 0 2488 GO:0003964 RNA-directed DNA polymerase activity 0 0 2489 GO:0003966 RNA-directed DNA polymerase, transposon encoded (obsolete GO:0003966) 1 0 2490 GO:0003967 RNA-directed DNA polymerase, group II intron encoded (obsolete GO:0003967) 1 0 2491 GO:0003968 RNA-directed RNA polymerase activity 0 0 2492 GO:0003969 RNA editase activity 0 0 2493 GO:0003971 double-stranded RNA specific editase activity 0 0 2494 GO:0003972 RNA ligase (ATP) activity 0 0 2495 GO:0003973 (S)-2-hydroxy-acid oxidase activity 0 0 2496 GO:0003974 UDP-N-acetylglucosamine 4-epimerase activity 0 0 2497 GO:0003975 UDP-N-acetylglucosamine-dolichyl-phosphate N-acetylglucosaminephosphotransferase activity 0 0 2498 GO:0003976 UDP-N-acetylglucosamine-lysosomal-enzyme N-acetylglucosaminephosphotransferase activity 0 0 2499 GO:0003977 UDP-N-acetylglucosamine diphosphorylase activity 0 0 2500 GO:0003978 UDP-glucose 4-epimerase activity 0 0 2501 GO:0003979 UDP-glucose 6-dehydrogenase activity 0 0 2502 GO:0003980 UDP-glucose:glycoprotein glucosyltransferase activity 0 0 2503 GO:0003983 UTP:glucose-1-phosphate uridylyltransferase activity 0 0 2504 GO:0003984 acetolactate synthase activity 0 0 2505 GO:0003985 acetyl-CoA C-acetyltransferase activity 0 0 2506 GO:0003986 acetyl-CoA hydrolase activity 0 0 2507 GO:0003987 acetate-CoA ligase activity 0 0 2508 GO:0003988 acetyl-CoA C-acyltransferase activity 0 0 2509 GO:0003989 acetyl-CoA carboxylase activity 0 0 2510 GO:0003990 acetylcholinesterase activity 0 0 2511 GO:0003991 acetylglutamate kinase activity 0 0 2512 GO:0003992 acetylornithine transaminase activity 0 0 2513 GO:0003993 acid phosphatase activity 0 0 2514 GO:0003994 aconitate hydratase activity 0 0 2515 GO:0003995 acyl-CoA dehydrogenase activity 0 0 2516 GO:0003996 acyl-CoA ligase activity 0 0 2517 GO:0003997 acyl-CoA oxidase activity 0 0 2518 GO:0003998 acylphosphatase activity 0 0 2519 GO:0003999 adenine phosphoribosyltransferase activity 0 0 2520 GO:0004000 adenosine deaminase activity 0 0 2521 GO:0004001 adenosine kinase activity 0 0 2522 GO:0004003 ATP-dependent DNA helicase activity 0 0 2523 GO:0004004 ATP-dependent RNA helicase activity 0 0 2524 GO:0004005 plasma membrane cation-transporting ATPase (obsolete GO:0004005) 1 0 2525 GO:0004007 heavy metal-exporting ATPase activity (obsolete GO:0004007) 1 0 2526 GO:0004008 copper-exporting ATPase activity 0 0 2527 GO:0004009 ATP-binding cassette (ABC) transporter activity (obsolete GO:0004009) 1 0 2528 GO:0004012 phospholipid-translocating ATPase activity 0 0 2529 GO:0004013 adenosylhomocysteinase activity 0 0 2530 GO:0004014 adenosylmethionine decarboxylase activity 0 0 2531 GO:0004015 adenosylmethionine-8-amino-7-oxononanoate transaminase activity 0 0 2532 GO:0004016 adenylate cyclase activity 0 0 2533 GO:0004017 adenylate kinase activity 0 0 2534 GO:0004018 adenylosuccinate lyase activity 0 0 2535 GO:0004019 adenylosuccinate synthase activity 0 0 2536 GO:0004020 adenylylsulfate kinase activity 0 0 2537 GO:0004021 alanine transaminase activity 0 0 2538 GO:0004022 alcohol dehydrogenase activity 0 0 2539 GO:0004023 alcohol dehydrogenase activity, metal ion-independent 0 0 2540 GO:0004024 alcohol dehydrogenase activity, zinc-dependent 0 0 2541 GO:0004025 alcohol dehydrogenase activity, iron-dependent 0 0 2542 GO:0004026 alcohol O-acetyltransferase activity 0 0 2543 GO:0004027 alcohol sulfotransferase activity 0 0 2544 GO:0004028 3-chloroallyl aldehyde dehydrogenase activity 0 0 2545 GO:0004029 aldehyde dehydrogenase (NAD) activity 0 0 2546 GO:0004030 aldehyde dehydrogenase [NAD(P)+] activity 0 0 2547 GO:0004031 aldehyde oxidase activity 0 0 2548 GO:0004032 aldehyde reductase activity 0 0 2549 GO:0004033 aldo-keto reductase activity 0 0 2550 GO:0004034 aldose 1-epimerase activity 0 0 2551 GO:0004035 alkaline phosphatase activity 0 0 2552 GO:0004036 alkylbase DNA glycosidase activity 0 0 2553 GO:0004037 allantoicase activity 0 0 2554 GO:0004038 allantoinase activity 0 0 2555 GO:0004039 allophanate hydrolase activity 0 0 2556 GO:0004040 amidase activity 0 0 2557 GO:0004042 amino-acid N-acetyltransferase activity 0 0 2558 GO:0004043 L-aminoadipate-semialdehyde dehydrogenase activity 0 0 2559 GO:0004044 amidophosphoribosyltransferase activity 0 0 2560 GO:0004045 aminoacyl-tRNA hydrolase activity 0 0 2561 GO:0004046 aminoacylase activity 0 0 2562 GO:0004047 aminomethyltransferase activity 0 0 2563 GO:0004048 anthranilate phosphoribosyltransferase activity 0 0 2564 GO:0004049 anthranilate synthase activity 0 0 2565 GO:0004050 apyrase activity (obsolete GO:0004050) 1 0 2566 GO:0004051 arachidonate 5-lipoxygenase activity 0 0 2567 GO:0004052 arachidonate 12-lipoxygenase activity 0 0 2568 GO:0004053 arginase activity 0 0 2569 GO:0004054 arginine kinase activity 0 0 2570 GO:0004055 argininosuccinate synthase activity 0 0 2571 GO:0004056 argininosuccinate lyase activity 0 0 2572 GO:0004057 arginyltransferase activity 0 0 2573 GO:0004058 aromatic-L-amino-acid decarboxylase activity 0 0 2574 GO:0004059 aralkylamine N-acetyltransferase activity 0 0 2575 GO:0004060 arylamine N-acetyltransferase activity 0 0 2576 GO:0004061 arylformamidase activity 0 0 2577 GO:0004062 aryl sulfotransferase activity 0 0 2578 GO:0004063 aryldialkylphosphatase activity 0 0 2579 GO:0004064 arylesterase activity 0 0 2580 GO:0004065 arylsulfatase activity 0 0 2581 GO:0004066 asparagine synthase (glutamine-hydrolyzing) activity 0 0 2582 GO:0004067 asparaginase activity 0 0 2583 GO:0004068 aspartate 1-decarboxylase activity 0 0 2584 GO:0004069 aspartate transaminase activity 0 0 2585 GO:0004070 aspartate carbamoyltransferase activity 0 0 2586 GO:0004071 aspartate-ammonia ligase activity 0 0 2587 GO:0004072 aspartate kinase activity 0 0 2588 GO:0004073 aspartate-semialdehyde dehydrogenase activity 0 0 2589 GO:0004074 biliverdin reductase activity 0 0 2590 GO:0004075 biotin carboxylase activity 0 0 2591 GO:0004076 biotin synthase activity 0 0 2592 GO:0004077 biotin-[acetyl-CoA-carboxylase] ligase activity 0 0 2593 GO:0004078 biotin-[methylcrotonoyl-CoA-carboxylase] ligase activity 0 0 2594 GO:0004079 biotin-[methylmalonyl-CoA-carboxytransferase] ligase activity 0 0 2595 GO:0004080 biotin-[propionyl-CoA-carboxylase (ATP-hydrolyzing)] ligase activity 0 0 2596 GO:0004081 bis(5'-nucleosyl)-tetraphosphatase (asymmetrical) activity 0 0 2597 GO:0004082 bisphosphoglycerate mutase activity 0 0 2598 GO:0004083 bisphosphoglycerate phosphatase activity 0 0 2599 GO:0004084 branched-chain-amino-acid transaminase activity 0 0 2600 GO:0004085 butyryl-CoA dehydrogenase activity 0 0 2601 GO:0004086 carbamoyl-phosphate synthase activity 0 0 2602 GO:0004087 carbamoyl-phosphate synthase (ammonia) activity 0 0 2603 GO:0004088 carbamoyl-phosphate synthase (glutamine-hydrolyzing) activity 0 0 2604 GO:0004089 carbonate dehydratase activity 0 0 2605 GO:0004090 carbonyl reductase (NADPH) activity 0 0 2606 GO:0004091 carboxylesterase activity 0 0 2607 GO:0004092 carnitine O-acetyltransferase activity 0 0 2608 GO:0004095 carnitine O-palmitoyltransferase activity 0 0 2609 GO:0004096 catalase activity 0 0 2610 GO:0004097 catechol oxidase activity 0 0 2611 GO:0004098 cerebroside-sulfatase activity 0 0 3558 GO:0005139 interleukin-7 receptor binding 0 0 3559 GO:0005140 interleukin-9 receptor binding 0 0 3560 GO:0005141 interleukin-10 receptor binding 0 0 3561 GO:0005142 interleukin-11 receptor binding 0 0 3562 GO:0005143 interleukin-12 receptor binding 0 0 3563 GO:0005144 interleukin-13 receptor binding 0 0 3564 GO:0005145 interleukin-14 receptor binding 0 0 3565 GO:0005146 leukemia inhibitory factor receptor binding 0 0 3566 GO:0005147 oncostatin-M receptor binding 0 0 3567 GO:0005148 prolactin receptor binding 0 0 3568 GO:0005149 interleukin-1 receptor binding 0 0 3569 GO:0005150 interleukin-1, Type I receptor binding 0 0 3570 GO:0005151 interleukin-1, Type II receptor binding 0 0 3571 GO:0005152 interleukin-1 receptor antagonist activity 0 0 3572 GO:0005153 interleukin-8 receptor binding 0 0 3573 GO:0005154 epidermal growth factor receptor binding 0 0 3574 GO:0005155 epidermal growth factor receptor activating ligand activity 0 0 3575 GO:0005156 epidermal growth factor receptor inhibiting ligand activity 0 0 3576 GO:0005157 macrophage colony stimulating factor receptor binding 0 0 3577 GO:0005158 insulin receptor binding 0 0 3578 GO:0005159 insulin-like growth factor receptor binding 0 0 3579 GO:0005160 transforming growth factor beta receptor binding 0 0 3580 GO:0005161 platelet-derived growth factor receptor binding 0 0 3581 GO:0005163 nerve growth factor receptor binding 0 0 3582 GO:0005164 tumor necrosis factor receptor binding 0 0 3583 GO:0005165 neurotrophin receptor binding 0 0 3584 GO:0005166 neurotrophin p75 receptor binding 0 0 3585 GO:0005167 neurotrophin TRK receptor binding 0 0 3586 GO:0005168 neurotrophin TRKA receptor binding 0 0 3587 GO:0005169 neurotrophin TRKB receptor binding 0 0 3588 GO:0005170 neurotrophin TRKC receptor binding 0 0 3589 GO:0005171 hepatocyte growth factor receptor binding 0 0 3590 GO:0005172 vascular endothelial growth factor receptor binding 0 0 3591 GO:0005173 stem cell factor receptor binding 0 0 3592 GO:0005174 CD40 receptor binding 0 0 3593 GO:0005175 CD27 receptor binding 0 0 3594 GO:0005176 ErbB-2 class receptor binding 0 0 3595 GO:0005177 neuroligin (obsolete GO:0005177) 1 0 3596 GO:0005178 integrin binding 0 0 3597 GO:0005179 hormone activity 0 0 3598 GO:0005180 peptide hormone (obsolete GO:0005180) 1 0 3599 GO:0005181 glycopeptide hormone (obsolete GO:0005181) 1 0 3600 GO:0005182 lipopeptide hormone (obsolete GO:0005182) 1 0 3601 GO:0005183 luteinizing hormone-releasing factor activity 0 0 3602 GO:0005184 neuropeptide hormone activity 0 0 3603 GO:0005185 neurohypophyseal hormone activity 0 0 3604 GO:0005186 pheromone activity 0 0 3605 GO:0005187 storage protein (obsolete GO:0005187) 1 0 3606 GO:0005188 larval serum protein (sensu Insecta) (obsolete GO:0005188) 1 0 3607 GO:0005189 milk protein (obsolete GO:0005189) 1 0 3608 GO:0005190 seminal fluid protein (obsolete GO:0005190) 1 0 3609 GO:0005191 acidic epididymal glycoprotein (obsolete GO:0005191) 1 0 3610 GO:0005192 urinary protein (obsolete GO:0005192) 1 0 3611 GO:0005193 major urinary protein (obsolete GO:0005193) 1 0 3612 GO:0005194 cell adhesion molecule activity (obsolete GO:0005194) 1 0 3613 GO:0005198 structural molecule activity 0 0 3614 GO:0005199 structural constituent of cell wall 0 0 3615 GO:0005200 structural constituent of cytoskeleton 0 0 3616 GO:0005201 extracellular matrix structural constituent 0 0 3617 GO:0005202 collagen (obsolete GO:0005202) 1 0 3618 GO:0005203 proteoglycan (obsolete GO:0005203) 1 0 3619 GO:0005204 chondroitin sulfate proteoglycan (obsolete GO:0005204) 1 0 3620 GO:0005205 chondroitin sulfate/dermatan sulfate proteoglycan (obsolete GO:0005205) 1 0 3621 GO:0005206 heparin sulfate proteoglycan (obsolete GO:0005206) 1 0 3622 GO:0005207 extracellular matrix glycoprotein (obsolete GO:0005207) 1 0 3623 GO:0005208 amyloid protein (obsolete GO:0005208) 1 0 3624 GO:0005209 plasma protein (obsolete GO:0005209) 1 0 3625 GO:0005211 plasma glycoprotein (obsolete GO:0005211) 1 0 3626 GO:0005212 structural constituent of eye lens 0 0 3627 GO:0005213 structural constituent of chorion (sensu Insecta) 0 0 3628 GO:0005214 structural constituent of cuticle (sensu Insecta) 0 0 3629 GO:0005215 transporter activity 0 0 3630 GO:0005216 ion channel activity 0 0 3631 GO:0005217 intracellular ligand-gated ion channel activity 0 0 3632 GO:0005218 intracellular ligand-gated calcium channel activity 0 0 3633 GO:0005219 ryanodine-sensitive calcium-release channel activity 0 0 3634 GO:0005220 inositol 1,4,5-triphosphate-sensitive calcium-release channel activity 0 0 3635 GO:0005221 intracellular cyclic nucleotide activated cation channel activity 0 0 3636 GO:0005222 intracellular cAMP activated cation channel activity 0 0 3637 GO:0005223 intracellular cGMP activated cation channel activity 0 0 3638 GO:0005224 ATP-binding and phosphorylation-dependent chloride channel activity 0 0 3639 GO:0005225 volume-sensitive anion channel activity 0 0 3640 GO:0005227 calcium activated cation channel activity 0 0 3641 GO:0005228 intracellular sodium activated potassium channel activity 0 0 3642 GO:0005229 intracellular calcium activated chloride channel activity 0 0 3643 GO:0005230 extracellular ligand-gated ion channel activity 0 0 3644 GO:0005231 excitatory extracellular ligand-gated ion channel activity 0 0 3645 GO:0005232 serotonin-activated cation-selective channel activity 0 0 3646 GO:0005234 glutamate-gated ion channel activity 0 0 3647 GO:0005237 inhibitory extracellular ligand-gated ion channel activity 0 0 3648 GO:0005240 glycine receptor-associated protein (obsolete GO:0005240) 1 0 3649 GO:0005241 inward rectifier channel (obsolete GO:0005241) 1 0 3650 GO:0005242 inward rectifier potassium channel activity 0 0 3651 GO:0005243 gap-junction forming channel activity 0 0 3652 GO:0005244 voltage-gated ion channel activity 0 0 3653 GO:0005245 voltage-gated calcium channel activity 0 0 3654 GO:0005246 calcium channel regulator activity 0 0 3655 GO:0005247 voltage-gated chloride channel activity 0 0 3656 GO:0005248 voltage-gated sodium channel activity 0 0 3657 GO:0005249 voltage-gated potassium channel activity 0 0 3658 GO:0005250 A-type (transient outward) potassium channel activity 0 0 3659 GO:0005251 delayed rectifier potassium channel activity 0 0 3660 GO:0005252 open rectifier potassium channel activity 0 0 3661 GO:0005253 anion channel activity 0 0 3662 GO:0005254 chloride channel activity 0 0 3663 GO:0005260 channel-conductance-controlling ATPase activity 0 0 3664 GO:0005261 cation channel activity 0 0 3665 GO:0005262 calcium channel activity 0 0 3666 GO:0005267 potassium channel activity 0 0 3667 GO:0005272 sodium channel activity 0 0 3668 GO:0005274 allantoin permease activity 0 0 3669 GO:0005275 amine transporter activity 0 0 3670 GO:0005276 hydrogen:vesicular amine antiporter activity 0 0 3671 GO:0005277 acetylcholine transporter activity 0 0 3672 GO:0005278 acetylcholine:hydrogen antiporter activity 0 0 3673 GO:0005279 amino acid-polyamine transporter activity 0 0 3674 GO:0005280 hydrogen:amino acid symporter activity 0 0 3675 GO:0005281 general amino acid permease activity (obsolete GO:0005281) 1 0 3676 GO:0005283 sodium:amino acid symporter activity 0 0 3677 GO:0005284 insulin-activated sodium:amino acid symporter activity 0 0 3678 GO:0005286 basic amino acid permease activity 0 0 3679 GO:0005287 high-affinity basic amino acid transporter activity 0 0 3680 GO:0005288 arginine permease activity 0 0 3681 GO:0005289 high-affinity arginine transporter activity 0 0 3682 GO:0005290 L-histidine transporter activity 0 0 3683 GO:0005291 high affinity histidine permease activity 0 0 3684 GO:0005292 high-affinity lysine transporter activity 0 0 3685 GO:0005293 lysine permease activity 0 0 3686 GO:0005294 neutral L-amino acid porter activity 0 0 3687 GO:0005295 neutral amino acid:sodium symporter activity 0 0 3688 GO:0005296 L-proline permease activity 0 0 3689 GO:0005297 hydrogen:proline symporter activity 0 0 3690 GO:0005298 proline:sodium symporter activity 0 0 3691 GO:0005299 L-tryptophan permease activity 0 0 3692 GO:0005300 high-affinity tryptophan transporter activity 0 0 3693 GO:0005301 valine/tyrosine/tryptophan permease activity (obsolete GO:0005301) 1 0 3694 GO:0005302 L-tyrosine transporter activity 0 0 3695 GO:0005304 L-valine transporter activity 0 0 3696 GO:0005306 choline permease activity 0 0 3697 GO:0005307 choline:sodium symporter activity 0 0 3698 GO:0005308 creatine transporter activity 0 0 3699 GO:0005309 creatine:sodium symporter activity 0 0 3700 GO:0005310 dicarboxylic acid transporter activity 0 0 3701 GO:0005311 sodium:dicarboxylate/tricarboxylate symporter activity (obsolete GO:0005311) 1 0 3702 GO:0005313 L-glutamate transporter activity 0 0 3703 GO:0005314 high-affinity glutamate transporter activity 0 0 3704 GO:0005315 inorganic phosphate transporter activity 0 0 3705 GO:0005316 high affinity inorganic phosphate:sodium symporter activity 0 0 3706 GO:0005318 phosphate:hydrogen symporter (obsolete GO:0005318) 1 0 3707 GO:0005319 lipid transporter activity 0 0 3708 GO:0005320 apolipoprotein (obsolete GO:0005320) 1 0 3709 GO:0005321 high-density lipoprotein (obsolete GO:0005321) 1 0 3710 GO:0005322 low-density lipoprotein (obsolete GO:0005322) 1 0 3711 GO:0005323 very-low-density lipoprotein (obsolete GO:0005323) 1 0 3712 GO:0005324 long-chain fatty acid transporter activity 0 0 3713 GO:0005325 peroxisomal fatty acyl CoA transporter activity 0 0 3714 GO:0005326 neurotransmitter transporter activity 0 0 3715 GO:0005328 neurotransmitter:sodium symporter activity 0 0 3716 GO:0005329 dopamine transporter activity 0 0 3717 GO:0005330 dopamine:sodium symporter activity 0 0 3718 GO:0005332 gamma-aminobutyric acid:sodium symporter activity 0 0 3719 GO:0005333 norepinephrine transporter activity 0 0 3720 GO:0005334 norephinephrine:sodium symporter activity 0 0 3721 GO:0005335 serotonin:sodium symporter activity 0 0 3722 GO:0005337 nucleoside transporter activity 0 0 3723 GO:0005338 nucleotide-sugar transporter activity 0 0 3724 GO:0005340 nucleotide-sulfate transporter activity 0 0 3725 GO:0005342 organic acid transporter activity 0 0 3726 GO:0005343 organic acid:sodium symporter activity 0 0 3727 GO:0005344 oxygen transporter activity 0 0 3728 GO:0005345 purine transporter activity 0 0 3729 GO:0005346 purine ribonucleotide transporter activity 0 0 3730 GO:0005347 ATP transporter activity 0 0 3731 GO:0005350 pyrimidine transporter activity 0 0 3732 GO:0005351 sugar porter activity 0 0 3733 GO:0005352 alpha-glucoside:hydrogen symporter activity 0 0 3734 GO:0005353 fructose transporter activity 0 0 3735 GO:0005354 galactose transporter activity 0 0 3736 GO:0005355 glucose transporter activity 0 0 3737 GO:0005356 hydrogen:glucose transporter activity 0 0 3738 GO:0005357 constitutive hydrogen:glucose transporter activity 0 0 3739 GO:0005358 high-affinity hydrogen:glucose transporter activity 0 0 3740 GO:0005359 low-affinity hydrogen:glucose transporter activity 0 0 3741 GO:0005360 insulin-responsive hydrogen:glucose transporter activity 0 0 3742 GO:0005361 transepithelial hydrogen:glucose transporter activity 0 0 3743 GO:0005362 low-affinity glucose:sodium symporter activity 0 0 3744 GO:0005363 maltose transporter activity 0 0 3745 GO:0005364 maltose:hydrogen symporter activity 0 0 3746 GO:0005365 myo-inositol transporter activity 0 0 3747 GO:0005366 myo-inositol:hydrogen symporter activity 0 0 3748 GO:0005367 myo-inositol:sodium symporter activity 0 0 3749 GO:0005368 taurine transporter activity 0 0 3750 GO:0005369 taurine:sodium symporter activity 0 0 3751 GO:0005371 tricarboxylate carrier activity 0 0 3752 GO:0005372 water transporter activity 0 0 3753 GO:0005373 heavy metal ion porter activity (obsolete GO:0005373) 1 0 3754 GO:0005375 copper ion transporter activity 0 0 3755 GO:0005376 plasma membrane copper transporter (obsolete GO:0005376) 1 0 3756 GO:0005377 intracellular copper ion transporter (obsolete GO:0005377) 1 0 3757 GO:0005381 iron ion transporter activity 0 0 3758 GO:0005382 transmembrane iron ion permease activity 0 0 3759 GO:0005384 manganese ion transporter activity 0 0 3760 GO:0005385 zinc ion transporter activity 0 0 3761 GO:0005386 carrier activity 0 0 3762 GO:0005388 calcium-transporting ATPase activity 0 0 3763 GO:0005391 sodium:potassium-exchanging ATPase activity 0 0 3764 GO:0005395 eye pigment precursor transporter activity 0 0 3765 GO:0005396 transmembrane conductance regulator activity (obsolete GO:0005396) 1 0 3766 GO:0005400 peroxisomal membrane transporter (obsolete GO:0005400) 1 0 3767 GO:0005402 cation:sugar symporter activity 0 0 3768 GO:0005403 hydrogen:sugar symporter activity 0 0 3769 GO:0005412 glucose:sodium symporter activity 0 0 3770 GO:0005415 nucleoside:sodium symporter activity 0 0 3771 GO:0005416 cation:amino acid symporter activity 0 0 3772 GO:0005427 proton-dependent oligopeptide transporter activity 0 0 3773 GO:0005429 chromaffin granule amine transporter activity 0 0 3774 GO:0005430 synaptic vesicle amine transporter activity 0 0 3775 GO:0005432 calcium:sodium antiporter activity 0 0 3776 GO:0005436 sodium:phosphate symporter activity 0 0 3777 GO:0005451 monovalent cation:proton antiporter activity 0 0 3778 GO:0005452 inorganic anion exchanger activity 0 0 3779 GO:0005456 CMP-sialic acid transporter activity 0 0 3780 GO:0005457 GDP-fucose transporter activity 0 0 3781 GO:0005458 GDP-mannose transporter activity 0 0 3782 GO:0005459 UDP-galactose transporter activity 0 0 3783 GO:0005460 UDP-glucose transporter activity 0 0 3784 GO:0005461 UDP-glucuronic acid transporter activity 0 0 3785 GO:0005462 UDP-N-acetylglucosamine transporter activity 0 0 3786 GO:0005463 UDP-N-acetylgalactosamine transporter activity 0 0 3787 GO:0005464 UDP-xylose transporter activity 0 0 3788 GO:0005468 small-molecule carrier or transporter (obsolete GO:0005468) 1 0 3789 GO:0005469 succinate:fumarate antiporter activity 0 0 3790 GO:0005471 ATP:ADP antiporter activity 0 0 3791 GO:0005472 FAD carrier activity 0 0 3792 GO:0005476 carnitine:acyl carnitine antiporter activity 0 0 3793 GO:0005477 pyruvate carrier activity 0 0 3794 GO:0005478 intracellular transporter activity 0 0 3795 GO:0005479 vacuolar assembly (obsolete GO:0005479) 1 0 3796 GO:0005480 vesicle transport (obsolete GO:0005480) 1 0 3797 GO:0005481 vesicle fusion (obsolete GO:0005481) 1 0 3798 GO:0005482 vesicle targeting (obsolete GO:0005482) 1 0 3799 GO:0005483 soluble NSF attachment protein activity 0 0 3800 GO:0005484 SNAP receptor activity 0 0 3801 GO:0005485 v-SNARE activity 0 0 3802 GO:0005486 t-SNARE activity 0 0 3803 GO:0005487 nucleocytoplasmic transporter activity 0 0 3804 GO:0005488 binding 0 0 3805 GO:0005489 electron transporter activity (obsolete GO:0005489) 1 0 3806 GO:0005490 cytochrome P450 (obsolete GO:0005490) 1 0 3807 GO:0005496 steroid binding 0 0 3808 GO:0005497 androgen binding 0 0 3809 GO:0005498 sterol carrier activity 0 0 3810 GO:0005499 vitamin D binding 0 0 3811 GO:0005500 juvenile hormone binding 0 0 3812 GO:0005501 retinoid binding 0 0 3813 GO:0005502 11-cis retinal binding 0 0 3814 GO:0005503 all-trans retinal binding 0 0 3815 GO:0005504 fatty acid binding 0 0 3816 GO:0005505 heavy metal binding (obsolete GO:0005505) 1 0 3817 GO:0005506 iron ion binding 0 0 3818 GO:0005507 copper ion binding 0 0 3819 GO:0005508 copper/cadmium binding (obsolete GO:0005508) 1 0 3820 GO:0005509 calcium ion binding 0 0 3821 GO:0005513 detection of calcium ion 0 0 3822 GO:0005514 calcium ion storage activity (obsolete GO:0005514) 1 0 3823 GO:0005515 protein binding 0 0 3824 GO:0005516 calmodulin binding 0 0 3825 GO:0005517 calmodulin inhibitor activity 0 0 3826 GO:0005518 collagen binding 0 0 3827 GO:0005519 cytoskeletal regulatory protein binding 0 0 3828 GO:0005520 insulin-like growth factor binding 0 0 3829 GO:0005521 lamin binding 0 0 3830 GO:0005522 profilin binding 0 0 3831 GO:0005523 tropomyosin binding 0 0 3832 GO:0005524 ATP binding 0 0 3833 GO:0005525 GTP binding 0 0 3834 GO:0005527 macrolide binding 0 0 3835 GO:0005528 FK506 binding 0 0 3836 GO:0005529 sugar binding 0 0 3837 GO:0005530 lectin (obsolete GO:0005530) 1 0 3838 GO:0005531 galactose binding lectin (obsolete GO:0005531) 1 0 3839 GO:0005532 mannose binding lectin (obsolete GO:0005532) 1 0 3840 GO:0005533 N-acetylgalactosamine lectin (obsolete GO:0005533) 1 0 3841 GO:0005534 galactose binding 0 0 3842 GO:0005536 glucose binding 0 0 3843 GO:0005537 mannose binding 0 0 3844 GO:0005539 glycosaminoglycan binding 0 0 3845 GO:0005540 hyaluronic acid binding 0 0 3846 GO:0005541 acyl-CoA or acyl binding (obsolete GO:0005541) 1 0 3847 GO:0005542 folic acid binding 0 0 3848 GO:0005543 phospholipid binding 0 0 3849 GO:0005544 calcium-dependent phospholipid binding 0 0 3850 GO:0005545 phosphatidylinositol binding 0 0 3851 GO:0005546 phosphatidylinositol-4,5-bisphosphate binding 0 0 3852 GO:0005547 phosphatidylinositol-3,4,5-triphosphate binding 0 0 3853 GO:0005548 phospholipid transporter activity 0 0 3854 GO:0005549 odorant binding 0 0 3855 GO:0005550 pheromone binding 0 0 3856 GO:0005551 ubiquitin (obsolete GO:0005551) 1 0 3857 GO:0005552 polyubiquitin (obsolete GO:0005552) 1 0 3858 GO:0005553 ubiquitin-ribosomal protein fusion protein (obsolete GO:0005553) 1 0 3859 GO:0005554 molecular function unknown 0 0 3860 GO:0005555 blood group antigen (obsolete GO:0005555) 1 0 3861 GO:0005557 lymphocyte antigen (obsolete GO:0005557) 1 0 3862 GO:0005558 minor histocompatibility antigen (obsolete GO:0005558) 1 0 3863 GO:0005559 ribozyme (obsolete GO:0005559) 1 0 3864 GO:0005561 nucleic acid (obsolete GO:0005561) 1 0 3865 GO:0005562 RNA (obsolete GO:0005562) 1 0 3866 GO:0005563 transfer RNA (obsolete GO:0005563) 1 0 3867 GO:0005564 cytosolic tRNA (obsolete GO:0005564) 1 0 3868 GO:0005565 mitochondrial tRNA (obsolete GO:0005565) 1 0 3869 GO:0005566 ribosomal RNA (obsolete GO:0005566) 1 0 3870 GO:0005567 cytosolic ribosomal RNA (obsolete GO:0005567) 1 0 3871 GO:0005568 mitochondrial rRNA (obsolete GO:0005568) 1 0 3872 GO:0005569 small nucleolar RNA (obsolete GO:0005569) 1 0 3873 GO:0005570 small nuclear RNA (obsolete GO:0005570) 1 0 3874 GO:0005571 untranslated RNA (obsolete GO:0005571) 1 0 3875 GO:0005572 RNA polymerase II transcribed untranslated RNA (obsolete GO:0005572) 1 0 3876 GO:0005573 telomerase RNA (obsolete GO:0005573) 1 0 3877 GO:0005574 DNA (obsolete GO:0005574) 1 0 3878 GO:0005575 cellular_component 0 0 3879 GO:0005576 extracellular region 0 0 3880 GO:0005577 fibrinogen complex 0 0 3881 GO:0005578 extracellular matrix (sensu Metazoa) 0 0 3882 GO:0005579 membrane attack complex 0 0 3883 GO:0005580 membrane attack complex protein alphaM chain (obsolete GO:0005580) 1 0 3884 GO:0005581 collagen 0 0 3885 GO:0005582 collagen type XV 0 0 3886 GO:0005583 fibrillar collagen 0 0 3887 GO:0005584 collagen type I 0 0 3888 GO:0005585 collagen type II 0 0 3889 GO:0005586 collagen type III 0 0 3890 GO:0005587 collagen type IV 0 0 3891 GO:0005588 collagen type V 0 0 3892 GO:0005589 collagen type VI 0 0 3893 GO:0005590 collagen type VII 0 0 3894 GO:0005591 collagen type VIII 0 0 3895 GO:0005592 collagen type XI 0 0 3896 GO:0005593 FACIT collagen 0 0 3897 GO:0005594 collagen type IX 0 0 3898 GO:0005595 collagen type XII 0 0 3899 GO:0005596 collagen type XIV 0 0 3900 GO:0005597 collagen type XVI 0 0 3901 GO:0005598 short-chain collagen 0 0 3902 GO:0005599 collagen type X 0 0 3903 GO:0005600 collagen type XIII 0 0 3904 GO:0005601 classical-complement-pathway C3/C5 convertase complex 0 0 3905 GO:0005602 complement component C1q complex 0 0 3906 GO:0005603 complement component C2 complex 0 0 3907 GO:0005604 basement membrane 0 0 3908 GO:0005605 basal lamina 0 0 3909 GO:0005606 laminin-1 0 0 3910 GO:0005607 laminin-2 0 0 3911 GO:0005608 laminin-3 0 0 3912 GO:0005609 laminin-4 0 0 3913 GO:0005610 laminin-5 0 0 3914 GO:0005611 laminin-6 0 0 3915 GO:0005612 laminin-7 0 0 3916 GO:0005613 laminin receptor protein (obsolete GO:0005613) 1 0 3917 GO:0005614 interstitial matrix 0 0 3918 GO:0005615 extracellular space 0 0 3919 GO:0005616 larval serum protein complex 0 0 3920 GO:0005617 larval serum protein-1 (obsolete GO:0005617) 1 0 3921 GO:0005618 cell wall 0 0 3922 GO:0005619 spore wall (sensu Fungi) 0 0 3923 GO:0005620 periplasmic space (obsolete GO:0005620) 1 0 3924 GO:0005621 bud scar 0 0 3925 GO:0005622 intracellular 0 0 3926 GO:0005623 cell 0 0 3927 GO:0005624 membrane fraction 0 0 3928 GO:0005625 soluble fraction 0 0 3929 GO:0005626 insoluble fraction 0 0 3930 GO:0005627 ascus (obsolete GO:0005627) 1 0 3931 GO:0005628 prospore membrane 0 0 3932 GO:0005630 dityrosine layer of spore wall 0 0 3933 GO:0005631 chitosan layer of spore wall 0 0 3934 GO:0005632 inner layer of spore wall 0 0 3935 GO:0005633 ascus lipid droplet 0 0 3936 GO:0005634 nucleus 0 0 3937 GO:0005635 nuclear envelope 0 0 3938 GO:0005637 nuclear inner membrane 0 0 3939 GO:0005638 lamin filament 0 0 3940 GO:0005639 integral to nuclear inner membrane 0 0 3941 GO:0005640 nuclear outer membrane 0 0 3942 GO:0005641 nuclear envelope lumen 0 0 3943 GO:0005642 annulate lamellae 0 0 3944 GO:0005643 nuclear pore 0 0 3945 GO:0005645 RAN-binding protein (obsolete GO:0005645) 1 0 3946 GO:0005646 importin (obsolete GO:0005646) 1 0 3947 GO:0005647 importin, alpha-subunit (obsolete GO:0005647) 1 0 3948 GO:0005648 importin, beta-subunit (obsolete GO:0005648) 1 0 3949 GO:0005649 transportin (obsolete GO:0005649) 1 0 3950 GO:0005650 importin, alpha-subunit transport factor (obsolete GO:0005650) 1 0 3951 GO:0005651 exportin (obsolete GO:0005651) 1 0 3952 GO:0005652 nuclear lamina 0 0 3953 GO:0005654 nucleoplasm 0 0 3954 GO:0005655 nucleolar ribonuclease P complex 0 0 3955 GO:0005656 pre-replicative complex 0 0 3956 GO:0005657 replication fork 0 0 3957 GO:0005658 alpha DNA polymerase:primase complex 0 0 3958 GO:0005659 delta DNA polymerase complex (obsolete GO:0005659) 1 0 3959 GO:0005660 delta-DNA polymerase cofactor complex (obsolete GO:0005660) 1 0 3960 GO:0005662 DNA replication factor A complex 0 0 3961 GO:0005663 DNA replication factor C complex 0 0 3962 GO:0005664 nuclear origin of replication recognition complex 0 0 3963 GO:0005665 DNA-directed RNA polymerase II, core complex 0 0 3964 GO:0005666 DNA-directed RNA polymerase III complex 0 0 3965 GO:0005667 transcription factor complex 0 0 3966 GO:0005668 selectivity factor SL1 complex 0 0 3967 GO:0005669 transcription factor TFIID complex 0 0 3968 GO:0005670 transcription-activating factor, 30kD (obsolete GO:0005670) 1 0 3969 GO:0005671 Ada2/Gcn5/Ada3 transcription activator complex 0 0 3970 GO:0005672 transcription factor TFIIA complex 0 0 3971 GO:0005673 transcription factor TFIIE complex 0 0 3972 GO:0005674 transcription factor TFIIF complex 0 0 3973 GO:0005675 transcription factor TFIIH complex 0 0 3974 GO:0005676 condensin complex (obsolete GO:0005676) 1 0 3975 GO:0005677 chromatin silencing complex 0 0 3976 GO:0005678 chromatin assembly complex 0 0 3977 GO:0005680 anaphase-promoting complex 0 0 3978 GO:0005681 spliceosome complex 0 0 3979 GO:0005682 snRNP U5 0 0 3980 GO:0005683 snRNP U7 0 0 3981 GO:0005684 major (U2-dependent) spliceosome 0 0 3982 GO:0005685 snRNP U1 0 0 3983 GO:0005686 snRNP U2 0 0 3984 GO:0005687 snRNP U4 0 0 3985 GO:0005688 snRNP U6 0 0 3986 GO:0005689 minor (U12-dependent) spliceosome complex 0 0 3987 GO:0005690 snRNP U4atac 0 0 3988 GO:0005691 snRNP U6atac 0 0 3989 GO:0005692 snRNP U11 0 0 3990 GO:0005693 snRNP U12 0 0 3991 GO:0005694 chromosome 0 0 3992 GO:0005695 chromatid (obsolete GO:0005695) 1 0 3993 GO:0005696 telomere (obsolete GO:0005696) 1 0 3994 GO:0005697 telomerase holoenzyme complex 0 0 3995 GO:0005698 centromere (obsolete GO:0005698) 1 0 3996 GO:0005699 kinetochore (obsolete GO:0005699) 1 0 3997 GO:0005700 polytene chromosome 0 0 3998 GO:0005701 polytene chromosome chromocenter 0 0 3999 GO:0005702 polytene chromosome weak point 0 0 4000 GO:0005703 polytene chromosome puff 0 0 4001 GO:0005704 polytene chromosome band 0 0 4002 GO:0005705 polytene chromosome interband 0 0 4003 GO:0005706 polytene chromosome ectopic fiber 0 0 4004 GO:0005707 interphase chromosome (obsolete GO:0005707) 1 0 4005 GO:0005708 mitotic chromosome (obsolete GO:0005708) 1 0 4006 GO:0005709 prophase chromosome (obsolete GO:0005709) 1 0 4007 GO:0005710 metaphase chromosome (obsolete GO:0005710) 1 0 4008 GO:0005711 meiotic chromosome (obsolete GO:0005711) 1 0 4009 GO:0005712 chiasma 0 0 4010 GO:0005713 recombination nodule 0 0 4011 GO:0005714 early recombination nodule 0 0 4012 GO:0005715 late recombination nodule 0 0 4013 GO:0005716 synaptonemal complex (obsolete GO:0005716) 1 0 4014 GO:0005717 chromatin (obsolete GO:0005717) 1 0 4015 GO:0005718 nucleosome (obsolete GO:0005718) 1 0 4016 GO:0005719 nuclear euchromatin 0 0 4017 GO:0005720 nuclear heterochromatin 0 0 4018 GO:0005721 centric heterochromatin 0 0 4019 GO:0005722 beta-heterochromatin 0 0 4020 GO:0005723 alpha-heterochromatin 0 0 4021 GO:0005724 nuclear telomeric heterochromatin 0 0 4022 GO:0005725 intercalary heterochromatin 0 0 4023 GO:0005726 perichromatin fibrils 0 0 4024 GO:0005727 extrachromosomal circular DNA 0 0 4025 GO:0005728 extrachromosomal rDNA circle 0 0 4026 GO:0005729 2-micrometer circle DNA 0 0 4027 GO:0005730 nucleolus 0 0 4028 GO:0005731 nucleolus organizer complex 0 0 4029 GO:0005732 small nucleolar ribonucleoprotein complex 0 0 4030 GO:0005733 small nucleolar RNA (obsolete GO:0005733) 1 0 4031 GO:0005734 box C + D snoRNP protein (obsolete GO:0005734) 1 0 4032 GO:0005735 box H + ACA snoRNP protein (obsolete GO:0005735) 1 0 4033 GO:0005736 DNA-directed RNA polymerase I complex 0 0 4034 GO:0005737 cytoplasm 0 0 4035 GO:0005739 mitochondrion 0 0 4036 GO:0005740 mitochondrial envelope 0 0 4037 GO:0005741 mitochondrial outer membrane 0 0 4038 GO:0005742 mitochondrial outer membrane translocase complex 0 0 4039 GO:0005743 mitochondrial inner membrane 0 0 4040 GO:0005744 mitochondrial inner membrane presequence translocase complex 0 0 4041 GO:0005745 m-AAA complex 0 0 4042 GO:0005746 mitochondrial electron transport chain 0 0 4043 GO:0005747 respiratory chain complex I (sensu Eukaryota) 0 0 4044 GO:0005749 respiratory chain complex II (sensu Eukaryota) 0 0 4045 GO:0005750 respiratory chain complex III (sensu Eukaryota) 0 0 4046 GO:0005751 respiratory chain complex IV (sensu Eukaryota) 0 0 4047 GO:0005753 proton-transporting ATP synthase complex (sensu Eukaryota) 0 0 4048 GO:0005754 proton-transporting ATP synthase, catalytic core (sensu Eukaryota) 0 0 4049 GO:0005755 hydrogen-transporting ATP synthase, coupling factor CF(0) (obsolete GO:0005755) 1 0 4050 GO:0005756 proton-transporting ATP synthase, central stalk (sensu Eukaryota) 0 0 4051 GO:0005757 mitochondrial permeability transition pore 0 0 4052 GO:0005758 mitochondrial intermembrane space 0 0 4053 GO:0005759 mitochondrial matrix 0 0 4054 GO:0005760 gamma DNA polymerase complex 0 0 4055 GO:0005761 mitochondrial ribosome 0 0 4056 GO:0005762 mitochondrial large ribosomal subunit 0 0 4057 GO:0005763 mitochondrial small ribosomal subunit 0 0 4058 GO:0005764 lysosome 0 0 4059 GO:0005765 lysosomal membrane 0 0 4060 GO:0005766 primary lysosome 0 0 4061 GO:0005767 secondary lysosome 0 0 4062 GO:0005768 endosome 0 0 4063 GO:0005769 early endosome 0 0 4064 GO:0005770 late endosome 0 0 4065 GO:0005771 multivesicular body 0 0 4066 GO:0005773 vacuole 0 0 4067 GO:0005774 vacuolar membrane 0 0 4068 GO:0005775 vacuolar lumen 0 0 4069 GO:0005776 autophagic vacuole 0 0 4070 GO:0005777 peroxisome 0 0 4071 GO:0005778 peroxisomal membrane 0 0 4072 GO:0005779 integral to peroxisomal membrane 0 0 4073 GO:0005780 extrinsic to intraperoxisomal membrane 0 0 4074 GO:0005781 peroxisome targeting signal receptor complex 0 0 4075 GO:0005782 peroxisomal matrix 0 0 4076 GO:0005783 endoplasmic reticulum 0 0 4077 GO:0005784 translocon complex 0 0 4078 GO:0005785 signal recognition particle receptor complex 0 0 4079 GO:0005786 signal recognition particle (sensu Eukaryota) 0 0 4080 GO:0005787 signal peptidase complex 0 0 4081 GO:0005788 endoplasmic reticulum lumen 0 0 4082 GO:0005789 endoplasmic reticulum membrane 0 0 4083 GO:0005790 smooth endoplasmic reticulum 0 0 4084 GO:0005791 rough endoplasmic reticulum 0 0 4085 GO:0005792 microsome 0 0 4086 GO:0005793 ER-Golgi intermediate compartment 0 0 4087 GO:0005794 Golgi apparatus 0 0 4088 GO:0005795 Golgi stack 0 0 4089 GO:0005796 Golgi lumen 0 0 4090 GO:0005797 Golgi medial cisterna 0 0 4091 GO:0005798 Golgi-associated vesicle 0 0 4092 GO:0005799 coatomer (obsolete GO:0005799) 1 0 4093 GO:0005800 COPII vesicle (obsolete GO:0005800) 1 0 4094 GO:0005801 Golgi cis-face 0 0 4095 GO:0005802 Golgi trans face 0 0 4096 GO:0005803 secretory vesicle (obsolete GO:0005803) 1 0 4097 GO:0005804 secretory vesicle membrane (obsolete GO:0005804) 1 0 4098 GO:0005805 ER-Golgi transport vesicle (obsolete GO:0005805) 1 0 4099 GO:0005806 Golgi-ER transport vesicle (obsolete GO:0005806) 1 0 4100 GO:0005807 inter-Golgi transport vesicle (obsolete GO:0005807) 1 0 4101 GO:0005808 Golgi-plasma membrane transport vesicle (obsolete GO:0005808) 1 0 4102 GO:0005809 Golgi-vacuole transport vesicle (obsolete GO:0005809) 1 0 4103 GO:0005810 endocytotic transport vesicle (obsolete GO:0005810) 1 0 4104 GO:0005811 lipid particle 0 0 4105 GO:0005813 centrosome 0 0 4106 GO:0005814 centriole 0 0 4107 GO:0005815 microtubule organizing center 0 0 4108 GO:0005816 spindle pole body 0 0 4109 GO:0005817 centrosomal mitotic factor (obsolete GO:0005817) 1 0 4110 GO:0005818 aster 0 0 4111 GO:0005819 spindle 0 0 4112 GO:0005821 intermediate layer of spindle pole body 0 0 4113 GO:0005822 inner plaque of spindle pole body 0 0 4114 GO:0005823 central plaque of spindle pole body 0 0 4115 GO:0005824 outer plaque of spindle pole body 0 0 4116 GO:0005825 half bridge of spindle pole body 0 0 4117 GO:0005826 contractile ring 0 0 4118 GO:0005827 polar microtubule 0 0 4119 GO:0005828 kinetochore microtubule 0 0 4120 GO:0005829 cytosol 0 0 4121 GO:0005830 cytosolic ribosome (sensu Eukaryota) 0 0 4122 GO:0005831 steroid hormone aporeceptor complex 0 0 4123 GO:0005832 chaperonin-containing T-complex 0 0 4124 GO:0005833 hemoglobin complex 0 0 4125 GO:0005834 heterotrimeric G-protein complex 0 0 4126 GO:0005835 fatty acid synthase complex 0 0 4127 GO:0005836 fatty-acyl-CoA synthase complex 0 0 4128 GO:0005837 26S proteasome (obsolete GO:0005837) 1 0 4129 GO:0005838 proteasome regulatory particle (sensu Eukaryota) 0 0 4130 GO:0005839 proteasome core complex (sensu Eukaryota) 0 0 4131 GO:0005840 ribosome 0 0 4132 GO:0005842 cytosolic large ribosomal subunit (sensu Eukaryota) 0 0 4133 GO:0005843 cytosolic small ribosomal subunit (sensu Eukaryota) 0 0 4134 GO:0005844 polysome 0 0 4135 GO:0005845 mRNA cap complex 0 0 4136 GO:0005846 snRNA cap binding complex 0 0 4137 GO:0005847 mRNA cleavage and polyadenylation specificity factor complex 0 0 4138 GO:0005848 mRNA cleavage stimulating factor complex 0 0 4139 GO:0005849 mRNA cleavage factor complex 0 0 4140 GO:0005850 eukaryotic translation initiation factor 2 complex 0 0 4141 GO:0005851 eukaryotic translation initiation factor 2B complex 0 0 4142 GO:0005852 eukaryotic translation initiation factor 3 complex 0 0 4143 GO:0005853 eukaryotic translation elongation factor 1 complex 0 0 4144 GO:0005854 nascent polypeptide-associated complex 0 0 4145 GO:0005856 cytoskeleton 0 0 4146 GO:0005858 axonemal dynein complex 0 0 4147 GO:0005859 muscle myosin 0 0 4148 GO:0005861 troponin complex 0 0 4149 GO:0005862 muscle thin filament tropomyosin 0 0 4150 GO:0005863 striated muscle thick filament 0 0 4151 GO:0005865 striated muscle thin filament 0 0 4152 GO:0005868 cytoplasmic dynein complex 0 0 4153 GO:0005869 dynactin complex 0 0 4154 GO:0005870 actin capping protein of dynactin complex 0 0 4155 GO:0005871 kinesin complex 0 0 4156 GO:0005872 minus-end kinesin complex 0 0 4157 GO:0005873 plus-end kinesin complex 0 0 4158 GO:0005874 microtubule 0 0 4159 GO:0005875 microtubule associated complex 0 0 4160 GO:0005876 spindle microtubule 0 0 4161 GO:0005879 axonemal microtubule 0 0 4162 GO:0005880 nuclear microtubule 0 0 4163 GO:0005881 cytoplasmic microtubule 0 0 4164 GO:0005882 intermediate filament 0 0 4165 GO:0005883 neurofilament 0 0 4166 GO:0005884 actin filament 0 0 4167 GO:0005885 Arp2/3 protein complex 0 0 4168 GO:0005886 plasma membrane 0 0 4169 GO:0005887 integral to plasma membrane 0 0 4170 GO:0005888 proteoglycan integral to plasma membrane (obsolete GO:0005888) 1 0 4171 GO:0005889 hydrogen:potassium-exchanging ATPase complex 0 0 4172 GO:0005890 sodium:potassium-exchanging ATPase complex 0 0 4173 GO:0005891 voltage-gated calcium channel complex 0 0 4174 GO:0005892 nicotinic acetylcholine-gated receptor-channel complex 0 0 4175 GO:0005893 interleukin-2 receptor complex 0 0 4176 GO:0005894 interleukin-3 receptor complex 0 0 4177 GO:0005895 interleukin-5 receptor complex 0 0 4178 GO:0005896 interleukin-6 receptor complex 0 0 4179 GO:0005897 interleukin-9 receptor complex 0 0 4180 GO:0005898 interleukin-13 receptor complex 0 0 4181 GO:0005899 insulin receptor complex 0 0 4182 GO:0005900 oncostatin-M receptor complex 0 0 4183 GO:0005901 caveola 0 0 4184 GO:0005902 microvillus 0 0 4185 GO:0005903 brush border 0 0 4186 GO:0005904 plasma membrane lipid bilayer 0 0 4187 GO:0005905 coated pit 0 0 4188 GO:0005906 clathrin adaptor (obsolete GO:0005906) 1 0 4189 GO:0005907 HA1 clathrin adaptor (obsolete GO:0005907) 1 0 4190 GO:0005908 HA2 clathrin adaptor (obsolete GO:0005908) 1 0 4191 GO:0005909 coated vesicle (obsolete GO:0005909) 1 0 4192 GO:0005911 intercellular junction 0 0 4193 GO:0005912 adherens junction 0 0 4194 GO:0005913 cell-cell adherens junction 0 0 4195 GO:0005914 spot adherens junction 0 0 4196 GO:0005915 zonula adherens 0 0 4197 GO:0005916 fascia adherens 0 0 4198 GO:0005917 nephrocyte junction 0 0 4199 GO:0005918 septate junction 0 0 4200 GO:0005919 pleated septate junction 0 0 4201 GO:0005920 smooth septate junction 0 0 4202 GO:0005921 gap junction 0 0 4203 GO:0005922 connexon complex 0 0 4204 GO:0005923 tight junction 0 0 4205 GO:0005924 cell-substrate adherens junction 0 0 4206 GO:0005925 focal adhesion 0 0 4207 GO:0005926 connecting hemi-adherens junction 0 0 4208 GO:0005927 muscle tendon junction 0 0 4209 GO:0005928 apical hemi-adherens junction 0 0 4210 GO:0005929 cilium 0 0 4211 GO:0005930 axoneme 0 0 4212 GO:0005931 nexin 0 0 4213 GO:0005932 basal body 0 0 4214 GO:0005933 bud 0 0 4215 GO:0005934 bud tip 0 0 4216 GO:0005935 bud neck 0 0 4217 GO:0005936 shmoo (obsolete GO:0005936) 1 0 4218 GO:0005937 mating projection 0 0 4219 GO:0005938 cell cortex 0 0 4220 GO:0005940 septin ring 0 0 4221 GO:0005941 unlocalized protein complex 0 0 4222 GO:0005942 phosphoinositide 3-kinase complex 0 0 4223 GO:0005943 1-phosphatidylinositol-4-phosphate kinase, class IA complex 0 0 4224 GO:0005944 1-phosphatidylinositol-4-phosphate kinase, class IB complex 0 0 4225 GO:0005945 6-phosphofructokinase complex 0 0 4226 GO:0005946 alpha,alpha-trehalose-phosphate synthase complex (UDP-forming) 0 0 4227 GO:0005947 alpha-ketoglutarate dehydrogenase complex (sensu Eukaryota) 0 0 4228 GO:0005948 acetolactate synthase complex 0 0 4229 GO:0005949 aminoadipate-semialdehyde dehydrogenase complex (obsolete GO:0005949) 1 0 4230 GO:0005950 anthranilate synthase complex 0 0 4231 GO:0005951 carbamoyl-phosphate synthase complex 0 0 4232 GO:0005952 cAMP-dependent protein kinase complex 0 0 4233 GO:0005953 CAAX-protein geranylgeranyltransferase complex 0 0 4234 GO:0005954 calcium- and calmodulin-dependent protein kinase complex 0 0 4235 GO:0005955 calcineurin complex 0 0 4236 GO:0005956 protein kinase CK2 complex 0 0 4237 GO:0005957 debranching enzyme (obsolete GO:0005957) 1 0 4238 GO:0005958 DNA-dependent protein kinase complex 0 0 4239 GO:0005960 glycine cleavage complex 0 0 4240 GO:0005961 glycine dehydrogenase complex (decarboxylating) 0 0 4241 GO:0005962 isocitrate dehydrogenase complex (NAD+) (sensu Eukaryota) 0 0 4242 GO:0005963 magnesium-dependent protein serine/threonine phosphatase complex 0 0 4243 GO:0005964 phosphorylase kinase complex 0 0 4244 GO:0005965 protein farnesyltransferase complex 0 0 4245 GO:0005966 photoreceptor cyclic-nucleotide phosphodiesterase complex 0 0 4246 GO:0005967 pyruvate dehydrogenase complex (sensu Eukaryota) 0 0 4247 GO:0005968 Rab-protein geranylgeranyltransferase complex 0 0 4248 GO:0005969 serine-pyruvate aminotransferase, type 2B complex 0 0 4249 GO:0005970 serine-pyruvate aminotransferase, type 1 complex 0 0 4250 GO:0005971 ribonucleoside-diphosphate reductase complex 0 0 4251 GO:0005972 fibrinogen alpha chain (obsolete GO:0005972) 1 0 4252 GO:0005973 fibrinogen beta chain (obsolete GO:0005973) 1 0 4253 GO:0005974 fibrinogen gamma chain (obsolete GO:0005974) 1 0 4254 GO:0005975 carbohydrate metabolism 0 0 4255 GO:0005976 polysaccharide metabolism 0 0 4256 GO:0005977 glycogen metabolism 0 0 4257 GO:0005978 glycogen biosynthesis 0 0 4258 GO:0005979 regulation of glycogen biosynthesis 0 0 4259 GO:0005980 glycogen catabolism 0 0 4260 GO:0005981 regulation of glycogen catabolism 0 0 4261 GO:0005982 starch metabolism 0 0 4262 GO:0005983 starch catabolism 0 0 4263 GO:0005984 disaccharide metabolism 0 0 4264 GO:0005985 sucrose metabolism 0 0 4265 GO:0005986 sucrose biosynthesis 0 0 4266 GO:0005987 sucrose catabolism 0 0 4267 GO:0005988 lactose metabolism 0 0 4268 GO:0005989 lactose biosynthesis 0 0 4269 GO:0005990 lactose catabolism 0 0 4270 GO:0005991 trehalose metabolism 0 0 4271 GO:0005992 trehalose biosynthesis 0 0 4272 GO:0005993 trehalose catabolism 0 0 4273 GO:0005994 melibiose metabolism 0 0 4274 GO:0005995 melibiose catabolism 0 0 4275 GO:0005996 monosaccharide metabolism 0 0 6328 GO:0008529 endogenous peptide receptor activity (obsolete GO:0008529) 1 0 6329 GO:0008530 exogenous peptide receptor activity (obsolete GO:0008530) 1 0 6330 GO:0008531 riboflavin kinase activity 0 0 6331 GO:0008532 N-acetyllactosaminide beta-1,3-N-acetylglucosaminyltransferase activity 0 0 6332 GO:0008533 astacin activity 0 0 6333 GO:0008534 purine-specific oxidized base lesion DNA N-glycosylase activity 0 0 6334 GO:0008535 cytochrome c oxidase complex assembly 0 0 6335 GO:0008536 Ran GTPase binding 0 0 6336 GO:0008537 proteasome activator complex 0 0 6337 GO:0008538 proteasome activator activity 0 0 6338 GO:0008539 proteasome inhibitor activity 0 0 6339 GO:0008540 proteasome regulatory particle, base subcomplex (sensu Eukaryota) 0 0 6340 GO:0008541 proteasome regulatory particle, lid subcomplex (sensu Eukaryota) 0 0 6341 GO:0008542 visual learning 0 0 6342 GO:0008543 fibroblast growth factor receptor signaling pathway 0 0 6343 GO:0008544 epidermis development 0 0 6344 GO:0008545 JUN kinase kinase activity 0 0 6345 GO:0008546 microtubule/chromatin interaction (obsolete GO:0008546) 1 0 6346 GO:0008547 protein-synthesizing GTPase activity (obsolete GO:0008547) 1 0 6347 GO:0008548 signal-recognition-particle GTPase activity (obsolete GO:0008548) 1 0 6348 GO:0008549 dynamin GTPase activity (obsolete GO:0008549) 1 0 6349 GO:0008550 tubulin GTPase activity (obsolete GO:0008550) 1 0 6350 GO:0008551 cadmium-exporting ATPase activity 0 0 6351 GO:0008552 zinc, cadmium, cobalt, nickel, lead-efflux ATPase activity (obsolete GO:0008552) 1 0 6352 GO:0008553 hydrogen-exporting ATPase activity, phosphorylative mechanism 0 0 6353 GO:0008554 sodium-exporting ATPase activity, phosphorylative mechanism 0 0 6354 GO:0008555 chloride-transporting ATPase activity 0 0 6355 GO:0008556 potassium-transporting ATPase activity 0 0 6356 GO:0008558 guanine-transporting ATPase activity 0 0 6357 GO:0008559 xenobiotic-transporting ATPase activity 0 0 6358 GO:0008560 steroid-transporting ATPase activity 0 0 6359 GO:0008563 alpha-factor sex pheromone exporter (obsolete GO:0008563) 1 0 6360 GO:0008564 protein-exporting ATPase activity 0 0 6361 GO:0008565 protein transporter activity 0 0 6362 GO:0008566 mitochondrial protein-transporting ATPase activity 0 0 6363 GO:0008567 dynein ATPase activity (obsolete GO:0008567) 1 0 6364 GO:0008568 microtubule-severing ATPase activity 0 0 6365 GO:0008569 minus-end-directed microtubule motor activity 0 0 6366 GO:0008570 myosin ATPase activity (obsolete GO:0008570) 1 0 6367 GO:0008571 non-chaperonin molecular chaperone ATPase activity (obsolete GO:0008571) 1 0 6368 GO:0008572 nucleoplasmin ATPase activity (obsolete GO:0008572) 1 0 6369 GO:0008573 peroxisome-assembly ATPase activity (obsolete GO:0008573) 1 0 6370 GO:0008574 plus-end-directed microtubule motor activity 0 0 6371 GO:0008575 proteasome ATPase activity (obsolete GO:0008575) 1 0 6372 GO:0008576 vesicle-fusing ATPase activity (obsolete GO:0008576) 1 0 6373 GO:0008579 JUN kinase phosphatase activity 0 0 6374 GO:0008580 cytoskeletal regulator activity (obsolete GO:0008580) 1 0 6375 GO:0008581 ubiquitin-specific protease 5 activity 0 0 6376 GO:0008582 regulation of synaptic growth at neuromuscular junction 0 0 6377 GO:0008583 mystery cell fate differentiation (sensu Endopterygota) 0 0 6378 GO:0008584 male gonad development 0 0 6379 GO:0008585 female gonad development 0 0 6380 GO:0008586 wing vein morphogenesis 0 0 6381 GO:0008587 wing margin morphogenesis 0 0 6382 GO:0008588 release of cytoplasmic sequestered NF-kappaB 0 0 6383 GO:0008589 regulation of smoothened signaling pathway 0 0 6384 GO:0008590 regulation of frizzled signaling pathway 0 0 6385 GO:0008591 regulation of frizzled-2 signaling pathway 0 0 6386 GO:0008592 regulation of Toll signaling pathway 0 0 6387 GO:0008593 regulation of Notch signaling pathway 0 0 6388 GO:0008594 photoreceptor cell morphogenesis (sensu Endopterygota) 0 0 6389 GO:0008595 determination of anterior/posterior axis, embryo 0 0 6390 GO:0008597 calcium-dependent protein serine/threonine phosphatase regulator activity 0 0 6391 GO:0008599 protein phosphatase type 1 regulator activity 0 0 6392 GO:0008601 protein phosphatase type 2A regulator activity 0 0 6393 GO:0008603 cAMP-dependent protein kinase regulator activity 0 0 6394 GO:0008605 protein kinase CK2 regulator activity 0 0 6395 GO:0008607 phosphorylase kinase regulator activity 0 0 6396 GO:0008608 attachment of spindle microtubules to kinetochore 0 0 6397 GO:0008609 alkylglycerone-phosphate synthase activity 0 0 6398 GO:0008610 lipid biosynthesis 0 0 6399 GO:0008611 ether lipid biosynthesis 0 0 6400 GO:0008612 hypusine biosynthesis from peptidyl-lysine 0 0 6401 GO:0008613 diuretic hormone activity 0 0 6402 GO:0008614 pyridoxine metabolism 0 0 6403 GO:0008615 pyridoxine biosynthesis 0 0 6404 GO:0008616 queuosine biosynthesis 0 0 6405 GO:0008617 guanosine metabolism 0 0 6406 GO:0008618 7-methylguanosine metabolism 0 0 6407 GO:0008619 RHEB small monomeric GTPase activity (obsolete GO:0008619) 1 0 6408 GO:0008621 condensin core heterodimer (obsolete GO:0008621) 1 0 6409 GO:0008622 epsilon DNA polymerase complex 0 0 6410 GO:0008623 chromatin accessibility complex 0 0 6411 GO:0008624 induction of apoptosis by extracellular signals 0 0 6412 GO:0008625 induction of apoptosis via death domain receptors 0 0 6413 GO:0008626 induction of apoptosis by granzyme 0 0 6414 GO:0008627 induction of apoptosis by ionic changes 0 0 6415 GO:0008628 induction of apoptosis by hormones 0 0 6416 GO:0008629 induction of apoptosis by intracellular signals 0 0 6417 GO:0008630 DNA damage response, signal transduction resulting in induction of apoptosis 0 0 6418 GO:0008631 induction of apoptosis by oxidative stress 0 0 6419 GO:0008632 apoptotic program 0 0 6420 GO:0008633 activation of pro-apoptotic gene products 0 0 6421 GO:0008634 negative regulation of survival gene product activity 0 0 6422 GO:0008635 caspase activation via cytochrome c 0 0 6423 GO:0008636 caspase activation via phosphorylation 0 0 6424 GO:0008637 apoptotic mitochondrial changes 0 0 6425 GO:0008638 protein tagging activity (obsolete GO:0008638) 1 0 6426 GO:0008639 small protein conjugating enzyme activity 0 0 6427 GO:0008640 ubiquitin-like conjugating enzyme activity 0 0 6428 GO:0008641 small protein activating enzyme activity 0 0 6429 GO:0008642 ubiquitin-like activating enzyme activity 0 0 6430 GO:0008643 carbohydrate transport 0 0 6431 GO:0008645 hexose transport 0 0 6432 GO:0008646 high-affinity hexose transport 0 0 6433 GO:0008647 low-affinity hexose transport 0 0 6434 GO:0008648 tachykinin (obsolete GO:0008648) 1 0 6435 GO:0008649 rRNA methyltransferase activity 0 0 6436 GO:0008650 rRNA (uridine-2'-O-)-methyltransferase activity 0 0 6437 GO:0008651 actin polymerizing activity (obsolete GO:0008651) 1 0 6438 GO:0008652 amino acid biosynthesis 0 0 6439 GO:0008653 lipopolysaccharide metabolism 0 0 6440 GO:0008654 phospholipid biosynthesis 0 0 6441 GO:0008655 pyrimidine salvage 0 0 6442 GO:0008656 caspase activator activity 0 0 6443 GO:0008657 DNA gyrase inhibitor activity 0 0 6444 GO:0008658 penicillin binding 0 0 6445 GO:0008659 (3R)-hydroxymyristoyl-[acyl-carrier protein] dehydratase activity 0 0 6446 GO:0008660 1-aminocyclopropane-1-carboxylate deaminase activity 0 0 6447 GO:0008661 1-deoxy-D-xylulose-5-phosphate synthase activity 0 0 6448 GO:0008662 1-phosphofructokinase activity 0 0 6449 GO:0008663 2',3'-cyclic-nucleotide 2'-phosphodiesterase activity 0 0 6450 GO:0008664 2'-5'-RNA ligase activity 0 0 6451 GO:0008665 2'-phosphotransferase activity 0 0 6452 GO:0008666 2,3,4,5-tetrahydropyridine-2,6-dicarboxylate N-succinyltransferase activity 0 0 6453 GO:0008667 2,3-dihydro-2,3-dihydroxybenzoate dehydrogenase activity 0 0 6454 GO:0008668 (2,3-dihydroxybenzoyl)adenylate synthase activity 0 0 6455 GO:0008669 2,3-dihydroxy-phenylpropionate 1,2-dioxygenase activity 0 0 6456 GO:0008670 2,4-dienoyl-CoA reductase (NADPH) activity 0 0 6457 GO:0008671 2-dehydro-3-deoxygalactonokinase activity 0 0 6458 GO:0008672 2-dehydro-3-deoxyglucarate aldolase activity 0 0 6459 GO:0008673 2-dehydro-3-deoxygluconokinase activity 0 0 6460 GO:0008674 2-dehydro-3-deoxy-6-phosphogalactonate aldolase activity 0 0 6461 GO:0008675 2-dehydro-3-deoxy-phosphogluconate aldolase activity 0 0 6462 GO:0008676 3-deoxy-8-phosphooctulonate synthase activity 0 0 6463 GO:0008677 2-dehydropantoate 2-reductase activity 0 0 6464 GO:0008678 2-deoxy-D-gluconate 3-dehydrogenase activity 0 0 6465 GO:0008679 2-hydroxy-3-oxopropionate reductase activity 0 0 6466 GO:0008681 2-octaprenyl-6-methoxyphenol hydroxylase activity 0 0 6467 GO:0008682 2-octoprenyl-3-methyl-6-methoxy-1,4-benzoquinone hydroxylase activity 0 0 6468 GO:0008683 2-oxoglutarate decarboxylase activity 0 0 6469 GO:0008684 2-oxopent-4-enoate hydratase activity 0 0 6470 GO:0008685 2-C-methyl-D-erythritol 2,4-cyclodiphosphate synthase activity 0 0 6471 GO:0008686 3,4-dihydroxy-2-butanone-4-phosphate synthase activity 0 0 6472 GO:0008687 3,4-dihydroxyphenylacetate 2,3-dioxygenase activity 0 0 6473 GO:0008688 3-(3-hydroxy-phenyl)propionate hydroxylase activity 0 0 6474 GO:0008689 3-demethylubiquinone-9 3-O-methyltransferase activity 0 0 6475 GO:0008690 3-deoxy-manno-octulosonate cytidylyltransferase activity 0 0 6476 GO:0008691 3-hydroxybutyryl-CoA dehydrogenase activity 0 0 6477 GO:0008692 3-hydroxybutyryl-CoA epimerase activity 0 0 6478 GO:0008693 3-hydroxydecanoyl-[acyl-carrier protein] dehydratase activity 0 0 6479 GO:0008694 3-octaprenyl-4-hydroxybenzoate carboxy-lyase activity 0 0 6480 GO:0008695 3-phenylpropionate dioxygenase activity 0 0 6481 GO:0008696 4-amino-4-deoxychorismate lyase activity 0 0 6482 GO:0008697 4-deoxy-L-threo-5-hexosulose-uronate ketol-isomerase activity 0 0 6483 GO:0008700 4-hydroxy-2-oxoglutarate aldolase activity 0 0 6484 GO:0008701 4-hydroxy-2-oxovalerate aldolase activity 0 0 6485 GO:0008703 5-amino-6-(5-phosphoribosylamino)uracil reductase activity 0 0 6486 GO:0008704 5-carboxymethyl-2-hydroxymuconate delta-isomerase activity 0 0 6487 GO:0008705 methionine synthase activity 0 0 6488 GO:0008706 6-phospho-beta-glucosidase activity 0 0 6489 GO:0008707 4-phytase activity 0 0 6490 GO:0008708 glucose dehydrogenase activity 0 0 6491 GO:0008709 7-alpha-hydroxysteroid dehydrogenase activity 0 0 6492 GO:0008710 8-amino-7-oxononanoate synthase activity 0 0 6493 GO:0008711 ADP-L-glycero-D-manno-heptose synthase activity 0 0 6494 GO:0008712 ADP-glyceromanno-heptose 6-epimerase activity 0 0 6495 GO:0008713 ADP-heptose-lipopolysaccharide heptosyltransferase activity 0 0 6496 GO:0008714 AMP nucleosidase activity 0 0 6497 GO:0008715 CDP-diacylglycerol diphosphatase activity 0 0 6498 GO:0008716 D-alanine-D-alanine ligase activity 0 0 6499 GO:0008717 D-alanyl-D-alanine endopeptidase activity 0 0 6500 GO:0008718 D-amino-acid dehydrogenase activity 0 0 6501 GO:0008719 dihydroneopterin triphosphate 2'-epimerase activity 0 0 6502 GO:0008720 D-lactate dehydrogenase activity 0 0 6503 GO:0008721 D-serine ammonia-lyase activity 0 0 6504 GO:0008723 DNA polymerase V activity 0 0 6505 GO:0008724 DNA topoisomerase IV activity (obsolete GO:0008724) 1 0 6506 GO:0008725 DNA-3-methyladenine glycosylase I activity 0 0 6507 GO:0008726 alkanesulfonate monooxygenase activity 0 0 6508 GO:0008727 GDP-mannose mannosyl hydrolase activity 0 0 6509 GO:0008728 GTP diphosphokinase activity 0 0 6510 GO:0008730 L(+)-tartrate dehydratase activity 0 0 6511 GO:0008732 L-allo-threonine aldolase activity 0 0 6512 GO:0008733 L-arabinose isomerase activity 0 0 6513 GO:0008734 L-aspartate oxidase activity 0 0 6514 GO:0008735 carnitine dehydratase activity 0 0 6515 GO:0008736 L-fucose isomerase activity 0 0 6516 GO:0008737 L-fuculokinase activity 0 0 6517 GO:0008738 L-fuculose-phosphate aldolase activity 0 0 6518 GO:0008740 L-rhamnose isomerase activity 0 0 6519 GO:0008741 ribulokinase activity 0 0 6520 GO:0008742 L-ribulose-phosphate 4-epimerase activity 0 0 6521 GO:0008743 L-threonine 3-dehydrogenase activity 0 0 6522 GO:0008744 L-xylulokinase activity 0 0 6523 GO:0008745 N-acetylmuramoyl-L-alanine amidase activity 0 0 6524 GO:0008746 NAD(P) transhydrogenase activity 0 0 6525 GO:0008747 N-acetylneuraminate lyase activity 0 0 6526 GO:0008748 N-ethylmaleimide reductase activity 0 0 6527 GO:0008750 NAD(P)+ transhydrogenase (AB-specific) activity 0 0 6528 GO:0008751 NAD(P)H dehydrogenase (obsolete GO:0008751) 1 0 6529 GO:0008752 FMN reductase activity 0 0 6530 GO:0008753 NADPH dehydrogenase (quinone) activity 0 0 6531 GO:0008754 O antigen ligase activity 0 0 6532 GO:0008755 O antigen polymerase activity 0 0 6533 GO:0008756 o-succinylbenzoate-CoA ligase activity 0 0 6534 GO:0008757 S-adenosylmethionine-dependent methyltransferase activity 0 0 6535 GO:0008758 UDP-2,3-diacylglucosamine hydrolase activity 0 0 6536 GO:0008759 UDP-3-O-[3-hydroxymyristoyl] N-acetylglucosamine deacetylase activity 0 0 6537 GO:0008760 UDP-N-acetylglucosamine 1-carboxyvinyltransferase activity 0 0 6538 GO:0008761 UDP-N-acetylglucosamine 2-epimerase activity 0 0 6539 GO:0008762 UDP-N-acetylmuramate dehydrogenase activity 0 0 6540 GO:0008763 UDP-N-acetylmuramate-L-alanine ligase activity 0 0 6541 GO:0008764 UDP-N-acetylmuramoylalanine-D-glutamate ligase activity 0 0 6542 GO:0008765 UDP-N-acetylmuramoylalanyl-D-glutamate-2,6-diaminopimelate ligase activity 0 0 6543 GO:0008766 UDP-N-acetylmuramoylalanyl-D-glutamyl-2,6-diaminopimelate-D-alanyl-D-alanine ligase activity 0 0 6544 GO:0008767 UDP-galactopyranose mutase activity 0 0 6545 GO:0008768 UDP-sugar diphosphatase activity 0 0 6546 GO:0008769 X-His dipeptidase activity 0 0 6547 GO:0008770 [acyl-carrier protein] phosphodiesterase activity 0 0 6548 GO:0008771 [citrate (pro-3S)-lyase] ligase activity 0 0 6549 GO:0008772 [isocitrate dehydrogenase (NADP+)] kinase activity 0 0 6550 GO:0008773 [protein-PII] uridylyltransferase activity 0 0 6551 GO:0008774 acetaldehyde dehydrogenase (acetylating) activity 0 0 6552 GO:0008775 acetate CoA-transferase activity 0 0 6553 GO:0008776 acetate kinase activity 0 0 6554 GO:0008777 acetylornithine deacetylase activity 0 0 6555 GO:0008778 acyl-CoA thioesterase II activity 0 0 6556 GO:0008779 acyl-[acyl-carrier protein]-phospholipid O-acyltransferase activity 0 0 6557 GO:0008780 acyl-[acyl-carrier protein]-UDP-N-acetylglucosamine O-acyltransferase activity 0 0 6558 GO:0008781 N-acylneuraminate cytidylyltransferase activity 0 0 6559 GO:0008782 adenosylhomocysteine nucleosidase activity 0 0 6560 GO:0008783 agmatinase activity 0 0 6561 GO:0008784 alanine racemase activity 0 0 6562 GO:0008785 alkyl hydroperoxide reductase activity 0 0 6563 GO:0008786 allose 6-phosphate isomerase activity 0 0 6564 GO:0008787 allose kinase activity 0 0 6565 GO:0008788 alpha,alpha-phosphotrehalase activity 0 0 6566 GO:0008789 altronate dehydratase activity 0 0 6567 GO:0008790 arabinose isomerase activity 0 0 6568 GO:0008791 arginine N-succinyltransferase activity 0 0 6569 GO:0008792 arginine decarboxylase activity 0 0 6570 GO:0008793 aromatic-amino-acid transaminase activity 0 0 6571 GO:0008794 arsenate reductase (glutaredoxin) activity 0 0 6572 GO:0008795 NAD+ synthase activity 0 0 6573 GO:0008796 bis(5'-nucleosyl)-tetraphosphatase activity 0 0 6574 GO:0008797 aspartate ammonia-lyase activity 0 0 6575 GO:0008798 beta-aspartyl-peptidase activity 0 0 6576 GO:0008800 beta-lactamase activity 0 0 6577 GO:0008801 beta-phosphoglucomutase activity 0 0 6578 GO:0008802 betaine-aldehyde dehydrogenase activity 0 0 6579 GO:0008803 bis(5'-nucleosyl)-tetraphosphatase (symmetrical) activity 0 0 6580 GO:0008804 carbamate kinase activity 0 0 6581 GO:0008805 carbon-monoxide oxygenase activity 0 0 6582 GO:0008806 carboxymethylenebutenolidase activity 0 0 6583 GO:0008807 carboxyvinyl-carboxyphosphonate phosphorylmutase activity 0 0 6584 GO:0008808 cardiolipin synthase activity 0 0 6585 GO:0008809 carnitine racemase activity 0 0 6586 GO:0008810 cellulase activity 0 0 6587 GO:0008811 chloramphenicol O-acetyltransferase activity 0 0 6588 GO:0008812 choline dehydrogenase activity 0 0 6589 GO:0008813 chorismate pyruvate lyase activity 0 0 6590 GO:0008814 citrate CoA-transferase activity 0 0 6591 GO:0008815 citrate (pro-3S)-lyase activity 0 0 6592 GO:0008816 citryl-CoA lyase activity 0 0 6593 GO:0008817 cob(I)yrinic acid a,c-diamide adenosyltransferase activity 0 0 6594 GO:0008818 cobalamin 5'-phosphate synthase activity 0 0 6595 GO:0008819 cobinamide kinase activity 0 0 6596 GO:0008820 cobinamide phosphate guanylyltransferase activity 0 0 6597 GO:0008821 crossover junction endodeoxyribonuclease activity 0 0 6598 GO:0008822 crotonobetaine/carnitine-CoA ligase activity (obsolete GO:0008822) 1 0 6599 GO:0008823 cupric reductase activity 0 0 6600 GO:0008824 cyanate hydratase activity 0 0 6601 GO:0008825 cyclopropane-fatty-acyl-phospholipid synthase activity 0 0 6602 GO:0008826 cysteine sulfinate desulfinase activity 0 0 6603 GO:0008827 cytochrome o ubiquinol oxidase activity 0 0 6604 GO:0008828 dATP pyrophosphohydrolase activity 0 0 6605 GO:0008829 dCTP deaminase activity 0 0 6606 GO:0008830 dTDP-4-dehydrorhamnose 3,5-epimerase activity 0 0 6607 GO:0008831 dTDP-4-dehydrorhamnose reductase activity 0 0 6608 GO:0008832 dGTPase activity 0 0 6609 GO:0008833 deoxyribonuclease IV (phage-T4-induced) activity 0 0 6610 GO:0008834 di-trans,poly-cis-decaprenylcistransferase activity 0 0 6611 GO:0008835 diaminohydroxyphosphoribosylaminopyrimidine deaminase activity 0 0 6612 GO:0008836 diaminopimelate decarboxylase activity 0 0 6613 GO:0008837 diaminopimelate epimerase activity 0 0 6614 GO:0008838 diaminopropionate ammonia-lyase activity 0 0 6615 GO:0008839 dihydrodipicolinate reductase activity 0 0 6616 GO:0008840 dihydrodipicolinate synthase activity 0 0 6617 GO:0008841 dihydrofolate synthase activity 0 0 6618 GO:0008842 diphosphate-purine nucleoside kinase activity 0 0 6619 GO:0008843 endochitinase activity 0 0 6620 GO:0008845 endonuclease VIII activity (obsolete GO:0008845) 1 0 6621 GO:0008846 endopeptidase La activity 0 0 6622 GO:0008847 Enterobacter ribonuclease activity 0 0 6623 GO:0008848 enterobactin synthetase (obsolete GO:0008848) 1 0 6624 GO:0008849 enterochelin esterase activity 0 0 6625 GO:0008851 ethanolamine ammonia-lyase activity 0 0 6626 GO:0008852 exodeoxyribonuclease I activity 0 0 6627 GO:0008853 exodeoxyribonuclease III activity 0 0 6628 GO:0008854 exodeoxyribonuclease V activity 0 0 6629 GO:0008855 exodeoxyribonuclease VII activity 0 0 6630 GO:0008856 exodeoxyribonuclease X activity 0 0 6631 GO:0008857 exonuclease IX activity 0 0 6632 GO:0008858 exonuclease VIII activity 0 0 6633 GO:0008859 exoribonuclease II activity 0 0 6634 GO:0008860 ferredoxin-NAD+ reductase activity 0 0 6635 GO:0008861 formate C-acetyltransferase activity 0 0 6636 GO:0008863 formate dehydrogenase activity 0 0 6637 GO:0008864 formyltetrahydrofolate deformylase activity 0 0 6638 GO:0008865 fructokinase activity 0 0 6639 GO:0008866 fructuronate reductase activity 0 0 6640 GO:0008867 galactarate dehydratase activity 0 0 6641 GO:0008868 galactitol-1-phosphate 5-dehydrogenase activity 0 0 6642 GO:0008869 galactonate dehydratase activity 0 0 6643 GO:0008870 galactoside O-acetyltransferase activity 0 0 6644 GO:0008871 gentamicin 2''-nucleotidyltransferase activity 0 0 6645 GO:0008872 glucarate dehydratase activity 0 0 6646 GO:0008873 gluconate 2-dehydrogenase activity 0 0 6647 GO:0008874 gluconate 5-dehydrogenase activity 0 0 6648 GO:0008875 gluconate dehydrogenase activity 0 0 6649 GO:0008876 quinoprotein glucose dehydrogenase activity 0 0 6650 GO:0008877 glucose-1-phosphatase activity 0 0 6651 GO:0008878 glucose-1-phosphate adenylyltransferase activity 0 0 6652 GO:0008879 glucose-1-phosphate thymidylyltransferase activity 0 0 6653 GO:0008880 glucuronate isomerase activity 0 0 6654 GO:0008881 glutamate racemase activity 0 0 6655 GO:0008882 [glutamate-ammonia-ligase] adenylyltransferase activity 0 0 6656 GO:0008883 glutamyl-tRNA reductase activity 0 0 6657 GO:0008884 glutathionylspermidine amidase activity 0 0 6658 GO:0008885 glutathionylspermidine synthase activity 0 0 6659 GO:0008886 glyceraldehyde-3-phosphate dehydrogenase (NADP+) activity 0 0 6660 GO:0008887 glycerate kinase activity 0 0 6661 GO:0008888 glycerol dehydrogenase activity 0 0 6662 GO:0008889 glycerophosphodiester phosphodiesterase activity 0 0 6663 GO:0008890 glycine C-acetyltransferase activity 0 0 6664 GO:0008891 glycolate oxidase activity 0 0 6665 GO:0008892 guanine deaminase activity 0 0 6666 GO:0008893 guanosine-3',5'-bis(diphosphate) 3'-diphosphatase activity 0 0 6667 GO:0008894 guanosine-5'-triphosphate,3'-diphosphate diphosphatase activity 0 0 6668 GO:0008895 heme lyase disulfide oxidoreductase activity 0 0 6669 GO:0008897 phosphopantetheinyltransferase activity 0 0 6670 GO:0008898 homocysteine S-methyltransferase activity 0 0 6671 GO:0008899 homoserine O-succinyltransferase activity 0 0 6672 GO:0008900 hydrogen:potassium-exchanging ATPase activity 0 0 6673 GO:0008901 ferredoxin hydrogenase activity 0 0 6674 GO:0008902 hydroxymethylpyrimidine kinase activity 0 0 6675 GO:0008903 hydroxypyruvate isomerase activity 0 0 6676 GO:0008904 hygromycin B kinase activity 0 0 6677 GO:0008905 mannose-phosphate guanylyltransferase activity 0 0 6678 GO:0008906 inosine kinase activity 0 0 6679 GO:0008907 integrase activity 0 0 6680 GO:0008908 isochorismatase activity 0 0 6681 GO:0008909 isochorismate synthase activity 0 0 6682 GO:0008910 kanamycin kinase activity 0 0 6683 GO:0008911 lactaldehyde dehydrogenase activity 0 0 6684 GO:0008912 lactaldehyde reductase activity 0 0 6685 GO:0008913 lauroyl transferase activity 0 0 6686 GO:0008914 leucyltransferase activity 0 0 6687 GO:0008915 lipid-A-disaccharide synthase activity 0 0 6688 GO:0008916 lipoate-protein ligase A activity 0 0 6689 GO:0008917 lipopolysaccharide N-acetylglucosaminyltransferase activity 0 0 6690 GO:0008918 lipopolysaccharide 3-alpha-galactosyltransferase activity 0 0 6691 GO:0008919 lipopolysaccharide glucosyltransferase I activity 0 0 6692 GO:0008920 lipopolysaccharide heptosyltransferase activity 0 0 6693 GO:0008921 lipopolysaccharide-1,6-galactosyltransferase activity 0 0 6694 GO:0008922 long-chain-fatty-acid-[acyl-carrier protein] ligase activity 0 0 6695 GO:0008923 lysine decarboxylase activity 0 0 6696 GO:0008924 malate dehydrogenase (acceptor) activity 0 0 6697 GO:0008925 maltose O-acetyltransferase activity 0 0 6698 GO:0008926 mannitol-1-phosphate 5-dehydrogenase activity 0 0 6699 GO:0008927 mannonate dehydratase activity 0 0 6700 GO:0008928 mannose-1-phosphate guanylyltransferase (GDP) activity 0 0 6701 GO:0008929 methylglyoxal synthase activity 0 0 6702 GO:0008930 methylthioadenosine nucleosidase activity 0 0 6703 GO:0008931 murein DD-endopeptidase activity 0 0 6704 GO:0008932 murein lytic endotransglycosylase E activity 0 0 6705 GO:0008933 murein transglycosylase B activity 0 0 6706 GO:0008934 inositol-1(or 4)-monophosphatase activity 0 0 6707 GO:0008935 naphthoate synthase activity 0 0 6708 GO:0008936 nicotinamidase activity 0 0 6709 GO:0008937 ferredoxin reductase activity 0 0 6710 GO:0008938 nicotinate N-methyltransferase activity 0 0 6711 GO:0008939 nicotinate-nucleotide-dimethylbenzimidazole phosphoribosyltransferase activity 0 0 6712 GO:0008940 nitrate reductase activity 0 0 6713 GO:0008941 nitric oxide dioxygenase activity 0 0 6714 GO:0008942 nitrite reductase [NAD(P)H] activity 0 0 6715 GO:0008943 glyceraldehyde-3-phosphate dehydrogenase activity 0 0 6716 GO:0008944 oligopeptidase A activity 0 0 6717 GO:0008945 oligopeptidase B activity 0 0 6718 GO:0008946 oligonucleotidase activity 0 0 6719 GO:0008947 omptin activity 0 0 6720 GO:0008948 oxaloacetate decarboxylase activity 0 0 6721 GO:0008949 oxalyl-CoA decarboxylase activity 0 0 6722 GO:0008950 p-aminobenzoate synthetase (obsolete GO:0008950) 1 0 6723 GO:0008951 palmitoleoyl [acyl-carrier protein]-dependent acyltransferase activity 0 0 6724 GO:0008953 penicillin amidase activity 0 0 6725 GO:0008954 peptidoglycan synthetase activity 0 0 8902 GO:0015826 L-threonine transport 0 0 8903 GO:0015827 L-tryptophan transport 0 0 8904 GO:0015828 L-tyrosine transport 0 0 8905 GO:0015829 L-valine transport 0 0 8906 GO:0015830 diaminopimelate transport 0 0 8907 GO:0015832 holin (obsolete GO:0015832) 1 0 8908 GO:0015833 peptide transport 0 0 8909 GO:0015834 peptidoglycan peptide transport 0 0 8910 GO:0015835 peptidoglycan transport 0 0 8911 GO:0015836 lipid-linked peptidoglycan transport 0 0 8912 GO:0015837 amine transport 0 0 8913 GO:0015838 betaine transport 0 0 8914 GO:0015839 cadaverine transport 0 0 8915 GO:0015840 urea transport 0 0 8916 GO:0015841 chromaffin granule amine transport 0 0 8917 GO:0015842 synaptic vesicle amine transport 0 0 8918 GO:0015843 methylammonium transport 0 0 8919 GO:0015844 monoamine transport 0 0 8920 GO:0015846 polyamine transport 0 0 8921 GO:0015847 putrescine transport 0 0 8922 GO:0015848 spermidine transport 0 0 8923 GO:0015849 organic acid transport 0 0 8924 GO:0015850 organic alcohol transport 0 0 8925 GO:0015851 nucleobase transport 0 0 8926 GO:0015853 adenine transport 0 0 8927 GO:0015854 guanine transport 0 0 8928 GO:0015855 pyrimidine transport 0 0 8929 GO:0015856 cytosine transport 0 0 8930 GO:0015857 uracil transport 0 0 8931 GO:0015858 nucleoside transport 0 0 8932 GO:0015859 intracellular nucleoside transport 0 0 8933 GO:0015860 purine nucleoside transport 0 0 8934 GO:0015861 cytidine transport 0 0 8935 GO:0015862 uridine transport 0 0 8936 GO:0015863 xanthosine transport 0 0 8937 GO:0015864 pyrimidine nucleoside transport 0 0 8938 GO:0015865 purine nucleotide transport 0 0 8939 GO:0015866 ADP transport 0 0 8940 GO:0015867 ATP transport 0 0 8941 GO:0015868 purine ribonucleotide transport 0 0 8942 GO:0015869 DNA-protein complex transport 0 0 8943 GO:0015870 acetylcholine transport 0 0 8944 GO:0015871 choline transport 0 0 8945 GO:0015872 dopamine transport 0 0 8946 GO:0015874 norepinephrine transport 0 0 8947 GO:0015875 vitamin or cofactor transport (obsolete GO:0015875) 1 0 8948 GO:0015876 acetyl-CoA transport 0 0 8949 GO:0015877 biopterin transport 0 0 8950 GO:0015878 biotin transport 0 0 8951 GO:0015879 carnitine transport 0 0 8952 GO:0015880 coenzyme A transport 0 0 8953 GO:0015881 creatine transport 0 0 8954 GO:0015882 L-ascorbic acid transport 0 0 8955 GO:0015883 FAD transport 0 0 8956 GO:0015884 folic acid transport 0 0 8957 GO:0015885 5-formyltetrahydrofolate transport 0 0 8958 GO:0015886 heme transport 0 0 8959 GO:0015887 pantothenate transport 0 0 8960 GO:0015888 thiamin transport 0 0 8961 GO:0015889 cobalamin transport 0 0 8962 GO:0015890 nicotinamide mononucleotide transport 0 0 8963 GO:0015891 siderophore transport 0 0 8964 GO:0015892 siderophore-iron transport 0 0 8965 GO:0015893 drug transport 0 0 8966 GO:0015894 acriflavine transport 0 0 8967 GO:0015895 alkane transport 0 0 8968 GO:0015896 nalidixic acid transport 0 0 8969 GO:0015897 organomercurial transport 0 0 8970 GO:0015898 amiloride transport 0 0 8971 GO:0015899 aminotriazole transport 0 0 8972 GO:0015900 benomyl transport 0 0 8973 GO:0015901 cycloheximide transport 0 0 8974 GO:0015902 carbonyl cyanide m-chlorophenylhydrazone transport 0 0 8975 GO:0015903 fluconazole transport 0 0 8976 GO:0015904 tetracycline transport 0 0 8977 GO:0015905 bicyclomycin transport 0 0 8978 GO:0015906 sulfathiazole transport 0 0 8979 GO:0015908 fatty acid transport 0 0 8980 GO:0015909 long-chain fatty acid transport 0 0 8981 GO:0015910 peroxisomal long-chain fatty acid import 0 0 8982 GO:0015911 plasma membrane long-chain fatty acid transport 0 0 8983 GO:0015912 short-chain fatty acid transport 0 0 8984 GO:0015913 short-chain fatty acid import 0 0 8985 GO:0015914 phospholipid transport 0 0 8986 GO:0015915 fatty acyl transport 0 0 8987 GO:0015916 fatty acyl coenzyme A transport 0 0 8988 GO:0015917 aminophospholipid transport 0 0 8989 GO:0015918 sterol transport 0 0 8990 GO:0015919 peroxisomal membrane transport 0 0 8991 GO:0015920 lipopolysaccharide transport 0 0 8992 GO:0015921 lipopolysaccharide export 0 0 8993 GO:0015922 aspartate oxidase activity 0 0 8994 GO:0015923 mannosidase activity 0 0 8995 GO:0015924 mannosyl-oligosaccharide mannosidase activity 0 0 8996 GO:0015925 galactosidase activity 0 0 8997 GO:0015926 glucosidase activity 0 0 8998 GO:0015927 trehalase activity 0 0 8999 GO:0015928 fucosidase activity 0 0 9000 GO:0015929 hexosaminidase activity 0 0 9001 GO:0015930 glutamate synthase activity 0 0 9002 GO:0015931 nucleobase, nucleoside, nucleotide and nucleic acid transport 0 0 9003 GO:0015932 nucleobase, nucleoside, nucleotide and nucleic acid transporter activity 0 0 9004 GO:0015933 flavin-containing electron transporter (obsolete GO:0015933) 1 0 9005 GO:0015934 large ribosomal subunit 0 0 9006 GO:0015935 small ribosomal subunit 0 0 9007 GO:0015936 coenzyme A metabolism 0 0 9008 GO:0015937 coenzyme A biosynthesis 0 0 9009 GO:0015938 coenzyme A catabolism 0 0 9010 GO:0015939 pantothenate metabolism 0 0 9011 GO:0015940 pantothenate biosynthesis 0 0 9012 GO:0015941 pantothenate catabolism 0 0 9013 GO:0015942 formate metabolism 0 0 9014 GO:0015943 formate biosynthesis 0 0 9015 GO:0015944 formate oxidation 0 0 9016 GO:0015945 methanol metabolism 0 0 9017 GO:0015946 methanol oxidation 0 0 9018 GO:0015947 methane metabolism 0 0 9019 GO:0015948 methanogenesis 0 0 9020 GO:0015949 nucleobase, nucleoside and nucleotide interconversion 0 0 9021 GO:0015950 purine nucleotide interconversion 0 0 9022 GO:0015951 purine ribonucleotide interconversion 0 0 9023 GO:0015952 purine deoxyribonucleotide interconversion 0 0 9024 GO:0015953 pyrimidine nucleotide interconversion 0 0 9025 GO:0015954 pyrimidine ribonucleotide interconversion 0 0 9026 GO:0015955 pyrimidine deoxyribonucleotide interconversion 0 0 9027 GO:0015956 bis(5'-nucleosidyl) oligophosphate metabolism 0 0 9028 GO:0015957 bis(5'-nucleosidyl) oligophosphate biosynthesis 0 0 9029 GO:0015958 bis(5'-nucleosidyl) oligophosphate catabolism 0 0 9030 GO:0015959 diadenosine polyphosphate metabolism 0 0 9031 GO:0015960 diadenosine polyphosphate biosynthesis 0 0 9032 GO:0015961 diadenosine polyphosphate catabolism 0 0 9033 GO:0015962 diadenosine triphosphate metabolism 0 0 9034 GO:0015963 diadenosine triphosphate biosynthesis 0 0 9035 GO:0015964 diadenosine triphosphate catabolism 0 0 9036 GO:0015965 diadenosine tetraphosphate metabolism 0 0 9037 GO:0015966 diadenosine tetraphosphate biosynthesis 0 0 9038 GO:0015967 diadenosine tetraphosphate catabolism 0 0 9039 GO:0015968 stringent response 0 0 9040 GO:0015969 guanosine tetraphosphate metabolism 0 0 9041 GO:0015970 guanosine tetraphosphate biosynthesis 0 0 9042 GO:0015971 guanosine tetraphosphate catabolism 0 0 9043 GO:0015972 guanosine pentaphosphate metabolism 0 0 9044 GO:0015973 guanosine pentaphosphate biosynthesis 0 0 9045 GO:0015974 guanosine pentaphosphate catabolism 0 0 9046 GO:0015975 energy derivation by oxidation of reduced inorganic compounds 0 0 9047 GO:0015976 carbon utilization 0 0 9048 GO:0015977 carbon utilization by fixation of carbon dioxide 0 0 9049 GO:0015978 carbon utilization by utilization of organic compounds 0 0 9050 GO:0015979 photosynthesis 0 0 9051 GO:0015980 energy derivation by oxidation of organic compounds 0 0 9052 GO:0015981 passive proton transport, down the electrochemical gradient (obsolete GO:0015981) 1 0 9053 GO:0015982 antiport (obsolete GO:0015982) 1 0 9054 GO:0015983 symport (obsolete GO:0015983) 1 0 9055 GO:0015984 uniport (obsolete GO:0015984) 1 0 9056 GO:0015985 energy coupled proton transport, down electrochemical gradient 0 0 9057 GO:0015986 ATP synthesis coupled proton transport 0 0 9058 GO:0015987 GTP synthesis coupled proton transport 0 0 9059 GO:0015988 energy coupled proton transport, against electrochemical gradient 0 0 9060 GO:0015989 light-driven proton transport 0 0 9061 GO:0015990 electron transport coupled proton transport 0 0 9062 GO:0015991 ATP hydrolysis coupled proton transport 0 0 9063 GO:0015992 proton transport 0 0 9064 GO:0015993 molecular hydrogen transport 0 0 9065 GO:0015994 chlorophyll metabolism 0 0 9066 GO:0015995 chlorophyll biosynthesis 0 0 9067 GO:0015996 chlorophyll catabolism 0 0 9068 GO:0015997 ubiquinone biosynthesis monooxygenase activity 0 0 9069 GO:0015999 eta DNA polymerase activity 0 0 9070 GO:0016000 iota DNA polymerase activity 0 0 9071 GO:0016002 sulfite reductase activity 0 0 9072 GO:0016004 phospholipase activator activity 0 0 9073 GO:0016005 phospholipase A2 activator activity 0 0 9074 GO:0016006 Nebenkern 0 0 9075 GO:0016007 mitochondrial derivative 0 0 9076 GO:0016008 major mitochondrial derivative 0 0 9077 GO:0016009 minor mitochondrial derivative 0 0 9078 GO:0016010 dystrophin-associated glycoprotein complex 0 0 9079 GO:0016011 dystroglycan complex 0 0 9080 GO:0016012 sarcoglycan complex 0 0 9081 GO:0016013 syntrophin complex 0 0 9082 GO:0016014 dystrobrevin complex 0 0 9083 GO:0016015 morphogen activity 0 0 9084 GO:0016016 short-wave-sensitive opsin (obsolete GO:0016016) 1 0 9085 GO:0016018 cyclosporin A binding 0 0 9086 GO:0016019 peptidoglycan receptor activity 0 0 9087 GO:0016020 membrane 0 0 9088 GO:0016021 integral to membrane 0 0 9089 GO:0016022 endoplasmic reticulum cisterna 0 0 9090 GO:0016023 cytoplasmic membrane-bound vesicle 0 0 9091 GO:0016024 CDP-diacylglycerol biosynthesis 0 0 9092 GO:0016025 proteasome endopeptidase regulator (obsolete GO:0016025) 1 0 9093 GO:0016026 proteasome endopeptidase core (obsolete GO:0016026) 1 0 9094 GO:0016027 inaD signaling complex 0 0 9095 GO:0016028 rhabdomere 0 0 9096 GO:0016029 subrhabdomeral cisterna 0 0 9097 GO:0016030 metarhodopsin binding 0 0 9098 GO:0016031 cytoplasmic tRNA import into mitochondrion 0 0 9099 GO:0016032 viral life cycle 0 0 9100 GO:0016034 maleylacetoacetate isomerase activity 0 0 9101 GO:0016035 zeta DNA polymerase complex 0 0 9102 GO:0016036 cellular response to phosphate starvation 0 0 9103 GO:0016037 absorption of light 0 0 9104 GO:0016038 absorption of visible light 0 0 9105 GO:0016039 absorption of UV light 0 0 9106 GO:0016040 glutamate synthase (NADH) activity 0 0 9107 GO:0016041 glutamate synthase (ferredoxin) activity 0 0 9108 GO:0016042 lipid catabolism 0 0 9109 GO:0016043 cell organization and biogenesis 0 0 9110 GO:0016044 membrane organization and biogenesis 0 0 9111 GO:0016045 detection of bacteria 0 0 9112 GO:0016046 detection of fungi 0 0 9113 GO:0016047 detection of parasitic fungi 0 0 9114 GO:0016048 detection of temperature stimulus 0 0 9115 GO:0016049 cell growth 0 0 9116 GO:0016050 vesicle organization and biogenesis 0 0 9117 GO:0016051 carbohydrate biosynthesis 0 0 9118 GO:0016052 carbohydrate catabolism 0 0 9119 GO:0016053 organic acid biosynthesis 0 0 9120 GO:0016054 organic acid catabolism 0 0 9121 GO:0016055 Wnt receptor signaling pathway 0 0 9122 GO:0016056 rhodopsin mediated signaling 0 0 9123 GO:0016057 changes in polarization state of photoreceptor cell membrane 0 0 9124 GO:0016058 maintenance of rhodopsin mediated signaling 0 0 9125 GO:0016059 deactivation of rhodopsin mediated signaling 0 0 9126 GO:0016060 metarhodopsin inactivation 0 0 9127 GO:0016061 regulation of light-activated channel activity 0 0 9128 GO:0016062 adaptation of rhodopsin mediated signaling 0 0 9129 GO:0016063 rhodopsin biosynthesis 0 0 9130 GO:0016064 humoral defense mechanism (sensu Vertebrata) 0 0 9131 GO:0016065 humoral defense mechanism (sensu Protostomia) 0 0 9132 GO:0016066 cellular defense response (sensu Vertebrata) 0 0 9133 GO:0016067 cellular defense response (sensu Protostomia) 0 0 9134 GO:0016068 type I hypersensitivity 0 0 9135 GO:0016070 RNA metabolism 0 0 9136 GO:0016071 mRNA metabolism 0 0 9137 GO:0016072 rRNA metabolism 0 0 9138 GO:0016073 snRNA metabolism 0 0 9139 GO:0016074 snoRNA metabolism 0 0 9140 GO:0016075 rRNA catabolism 0 0 9141 GO:0016076 snRNA catabolism 0 0 9142 GO:0016077 snoRNA catabolism 0 0 9143 GO:0016078 tRNA catabolism 0 0 9144 GO:0016079 synaptic vesicle exocytosis 0 0 9145 GO:0016080 synaptic vesicle targeting 0 0 9146 GO:0016081 synaptic vesicle docking during exocytosis 0 0 9147 GO:0016082 synaptic vesicle priming 0 0 9148 GO:0016083 synaptic vesicle fusion (obsolete GO:0016083) 1 0 9149 GO:0016084 myostimulatory hormone activity 0 0 9150 GO:0016085 myoinhibitory hormone activity 0 0 9151 GO:0016086 allatostatin (obsolete GO:0016086) 1 0 9152 GO:0016087 ecdysiostatic hormone activity 0 0 9153 GO:0016088 insulin (obsolete GO:0016088) 1 0 9154 GO:0016089 aromatic amino acid family biosynthesis, shikimate pathway 0 0 9155 GO:0016090 prenol metabolism 0 0 9156 GO:0016091 prenol biosynthesis 0 0 9157 GO:0016092 prenol catabolism 0 0 9158 GO:0016093 polyprenol metabolism 0 0 9159 GO:0016094 polyprenol biosynthesis 0 0 9160 GO:0016095 polyprenol catabolism 0 0 9161 GO:0016096 polyisoprenoid metabolism 0 0 9162 GO:0016097 polyisoprenoid catabolism 0 0 9163 GO:0016098 monoterpenoid metabolism 0 0 9164 GO:0016099 monoterpenoid biosynthesis 0 0 9165 GO:0016100 monoterpenoid catabolism 0 0 9166 GO:0016101 diterpenoid metabolism 0 0 9167 GO:0016102 diterpenoid biosynthesis 0 0 9168 GO:0016103 diterpenoid catabolism 0 0 9169 GO:0016104 triterpenoid biosynthesis 0 0 9170 GO:0016105 triterpenoid catabolism 0 0 9171 GO:0016106 sesquiterpenoid biosynthesis 0 0 9172 GO:0016107 sesquiterpenoid catabolism 0 0 9173 GO:0016108 tetraterpenoid metabolism 0 0 9174 GO:0016109 tetraterpenoid biosynthesis 0 0 9175 GO:0016110 tetraterpenoid catabolism 0 0 9176 GO:0016111 polyterpenoid metabolism 0 0 9177 GO:0016112 polyterpenoid biosynthesis 0 0 9178 GO:0016113 polyterpenoid catabolism 0 0 9179 GO:0016114 terpenoid biosynthesis 0 0 9180 GO:0016115 terpenoid catabolism 0 0 9181 GO:0016116 carotenoid metabolism 0 0 9182 GO:0016117 carotenoid biosynthesis 0 0 9183 GO:0016118 carotenoid catabolism 0 0 9184 GO:0016119 carotene metabolism 0 0 9185 GO:0016120 carotene biosynthesis 0 0 9186 GO:0016121 carotene catabolism 0 0 9187 GO:0016122 xanthophyll metabolism 0 0 9188 GO:0016123 xanthophyll biosynthesis 0 0 9189 GO:0016124 xanthophyll catabolism 0 0 9190 GO:0016125 sterol metabolism 0 0 9191 GO:0016126 sterol biosynthesis 0 0 9192 GO:0016127 sterol catabolism 0 0 9193 GO:0016128 phytosteroid metabolism 0 0 9194 GO:0016129 phytosteroid biosynthesis 0 0 9195 GO:0016130 phytosteroid catabolism 0 0 9196 GO:0016131 brassinosteroid metabolism 0 0 9197 GO:0016132 brassinosteroid biosynthesis 0 0 9198 GO:0016133 brassinosteroid catabolism 0 0 9199 GO:0016134 saponin metabolism 0 0 9200 GO:0016135 saponin biosynthesis 0 0 9201 GO:0016136 saponin catabolism 0 0 9202 GO:0016137 glycoside metabolism 0 0 9203 GO:0016138 glycoside biosynthesis 0 0 9204 GO:0016139 glycoside catabolism 0 0 9205 GO:0016140 O-glycoside metabolism 0 0 9206 GO:0016141 O-glycoside biosynthesis 0 0 9207 GO:0016142 O-glycoside catabolism 0 0 9208 GO:0016143 S-glycoside metabolism 0 0 9209 GO:0016144 S-glycoside biosynthesis 0 0 9210 GO:0016145 S-glycoside catabolism 0 0 9211 GO:0016146 protein-synthesizing GTPase activity, initiation (obsolete GO:0016146) 1 0 9212 GO:0016147 protein-synthesizing GTPase activity, elongation (obsolete GO:0016147) 1 0 9213 GO:0016148 protein-synthesizing GTPase activity, termination (obsolete GO:0016148) 1 0 9214 GO:0016149 translation release factor activity, codon specific 0 0 9215 GO:0016150 translation release factor activity, codon nonspecific 0 0 9216 GO:0016151 nickel ion binding 0 0 9217 GO:0016152 mercury (II) reductase activity 0 0 9218 GO:0016153 urocanate hydratase activity 0 0 9219 GO:0016154 pyrimidine-nucleoside phosphorylase activity 0 0 9220 GO:0016155 formyltetrahydrofolate dehydrogenase activity 0 0 9221 GO:0016156 fumarate reductase (NADH) activity 0 0 9222 GO:0016157 sucrose synthase activity 0 0 9223 GO:0016158 3-phytase activity 0 0 9224 GO:0016159 muconolactone delta-isomerase activity 0 0 9225 GO:0016160 amylase activity 0 0 9226 GO:0016161 beta-amylase activity 0 0 9227 GO:0016162 cellulose 1,4-beta-cellobiosidase activity 0 0 9228 GO:0016163 nitrogenase activity 0 0 9229 GO:0016164 Mo-molybdopterin oxidoreductase activity 0 0 9230 GO:0016165 lipoxygenase activity 0 0 9231 GO:0016166 phytoene dehydrogenase activity 0 0 9232 GO:0016167 glial cell line-derived neurotrophic factor receptor activity 0 0 9233 GO:0016168 chlorophyll binding 0 0 9234 GO:0016169 bacteriochlorophyll c binding 0 0 9235 GO:0016170 interleukin-15 receptor binding 0 0 9236 GO:0016171 cell surface antigen (obsolete GO:0016171) 1 0 9237 GO:0016172 antifreeze activity (obsolete GO:0016172) 1 0 9238 GO:0016173 ice nucleation inhibitor activity (obsolete GO:0016173) 1 0 9239 GO:0016174 NAD(P)H oxidase activity 0 0 9240 GO:0016175 superoxide-generating NADPH oxidase activity 0 0 9241 GO:0016176 superoxide-generating NADPH oxidase activator activity 0 0 9242 GO:0016180 snRNA processing 0 0 9243 GO:0016181 synaptic vesicle transport (obsolete GO:0016181) 1 0 9244 GO:0016182 endosome to synaptic vesicle budding 0 0 9245 GO:0016183 synaptic vesicle coating 0 0 9246 GO:0016184 synaptic vesicle retrieval (obsolete GO:0016184) 1 0 9247 GO:0016185 synaptic vesicle budding 0 0 9248 GO:0016186 synaptic vesicle fission (obsolete GO:0016186) 1 0 9249 GO:0016187 synaptic vesicle internalization (obsolete GO:0016187) 1 0 9250 GO:0016188 synaptic vesicle maturation 0 0 9251 GO:0016189 synaptic vesicle to endosome fusion 0 0 9252 GO:0016190 clathrin coat (obsolete GO:0016190) 1 0 9253 GO:0016191 synaptic vesicle uncoating 0 0 9254 GO:0016192 vesicle-mediated transport 0 0 9255 GO:0016197 endosome transport 0 0 9256 GO:0016198 axon choice point recognition 0 0 9257 GO:0016199 axon midline choice point recognition 0 0 9258 GO:0016200 synaptic target attraction 0 0 9259 GO:0016201 synaptic target inhibition 0 0 9260 GO:0016202 regulation of striated muscle development 0 0 9261 GO:0016203 muscle attachment 0 0 9262 GO:0016204 determination of muscle attachment site 0 0 9263 GO:0016205 selenocysteine methyltransferase activity 0 0 9264 GO:0016206 catechol O-methyltransferase activity 0 0 9265 GO:0016207 4-coumarate-CoA ligase activity 0 0 9266 GO:0016208 AMP binding 0 0 9267 GO:0016209 antioxidant activity 0 0 9268 GO:0016210 naringenin-chalcone synthase activity 0 0 9269 GO:0016211 ammonia ligase activity 0 0 9270 GO:0016212 kynurenine-oxoglutarate transaminase activity 0 0 9271 GO:0016213 linoleoyl-CoA desaturase activity 0 0 9272 GO:0016215 CoA desaturase activity 0 0 9273 GO:0016216 isopenicillin-N synthase activity 0 0 9274 GO:0016217 N-ethylammeline chlorohydrolase activity 0 0 9275 GO:0016218 polyketide synthase activity 0 0 9276 GO:0016219 GDP-dissociation stimulator activity 0 0 9277 GO:0016220 RAL GDP-dissociation stimulator activity 0 0 9278 GO:0016222 procollagen-proline, 2-oxoglutarate-4-dioxygenase complex 0 0 9279 GO:0016223 beta-alanine-pyruvate transaminase activity 0 0 9280 GO:0016226 iron-sulfur cluster assembly 0 0 9281 GO:0016227 tRNA sulfurtransferase activity 0 0 9282 GO:0016229 steroid dehydrogenase activity 0 0 9283 GO:0016230 sphingomyelin phosphodiesterase activator activity 0 0 9284 GO:0016231 beta-N-acetylglucosaminidase activity 0 0 9285 GO:0016232 HNK-1 sulfotransferase activity 0 0 9286 GO:0016233 telomere capping 0 0 9287 GO:0016234 inclusion body 0 0 9288 GO:0016235 aggresome 0 0 9289 GO:0016236 macroautophagy 0 0 9290 GO:0016237 microautophagy 0 0 9291 GO:0016238 chaperone-mediated autophagy 0 0 9292 GO:0016239 positive regulation of macroautophagy 0 0 9293 GO:0016240 autophagic vacuole docking 0 0 9294 GO:0016241 regulation of macroautophagy 0 0 9295 GO:0016242 negative regulation of macroautophagy 0 0 9296 GO:0016243 regulation of autophagic vacuole size 0 0 9297 GO:0016244 non-apoptotic programmed cell death 0 0 9298 GO:0016245 hyperphosphorylation of RNA polymerase II 0 0 9299 GO:0016246 RNA interference 0 0 9300 GO:0016247 channel regulator activity 0 0 9301 GO:0016248 channel inhibitor activity 0 0 9302 GO:0016249 channel localizer activity 0 0 9303 GO:0016250 N-sulfoglucosamine sulfohydrolase activity 0 0 9304 GO:0016251 general RNA polymerase II transcription factor activity 0 0 9305 GO:0016252 nonspecific RNA polymerase II transcription factor activity 0 0 9306 GO:0016253 UDP-N-acetylglucosamine-peptide N-acetylglucosaminyltransferase activity 0 0 9307 GO:0016254 preassembly of GPI anchor in ER membrane 0 0 9308 GO:0016255 attachment of GPI anchor to protein 0 0 9309 GO:0016256 N-glycan processing to lysosome 0 0 9310 GO:0016257 N-glycan processing to secreted and cell-surface N-glycans 0 0 9311 GO:0016258 N-glycan diversification 0 0 9312 GO:0016259 selenocysteine metabolism 0 0 9313 GO:0016260 selenocysteine biosynthesis 0 0 9314 GO:0016261 selenocysteine catabolism 0 0 9315 GO:0016262 protein N-acetylglucosaminyltransferase activity 0 0 9316 GO:0016263 glycoprotein-N-acetylgalactosamine 3-beta-galactosyltransferase activity 0 0 9317 GO:0016264 gap junction assembly 0 0 9318 GO:0016265 death 0 0 9319 GO:0016266 O-glycan processing 0 0 9320 GO:0016267 O-glycan processing, core 1 0 0 9321 GO:0016268 O-glycan processing, core 2 0 0 9322 GO:0016269 O-glycan processing, core 3 0 0 9323 GO:0016270 O-glycan processing, core 4 0 0 9324 GO:0016271 tissue death 0 0 9325 GO:0016272 prefoldin complex 0 0 9326 GO:0016273 arginine N-methyltransferase activity 0 0 9327 GO:0016274 protein-arginine N-methyltransferase activity 0 0 9328 GO:0016275 [cytochrome c]-arginine N-methyltransferase activity 0 0 9329 GO:0016277 [myelin basic protein]-arginine N-methyltransferase activity 0 0 9330 GO:0016278 lysine N-methyltransferase activity 0 0 9331 GO:0016279 protein-lysine N-methyltransferase activity 0 0 9332 GO:0016281 eukaryotic translation initiation factor 4F complex 0 0 9333 GO:0016282 eukaryotic 43S preinitiation complex 0 0 9334 GO:0016283 eukaryotic 48S initiation complex 0 0 9335 GO:0016284 alanine aminopeptidase activity 0 0 9336 GO:0016285 cytosol alanyl aminopeptidase activity 0 0 9337 GO:0016286 small conductance calcium-activated potassium channel activity 0 0 9338 GO:0016287 glycerone-phosphate O-acyltransferase activity 0 0 9339 GO:0016288 cytokinesis (obsolete GO:0016288) 1 0 9340 GO:0016289 CoA hydrolase activity 0 0 9341 GO:0016290 palmitoyl-CoA hydrolase activity 0 0 9342 GO:0016291 acyl-CoA thioesterase activity 0 0 9343 GO:0016292 acyl-CoA thioesterase I activity 0 0 9344 GO:0016295 myristoyl-[acyl-carrier protein] hydrolase activity 0 0 9345 GO:0016296 palmitoyl-[acyl-carrier protein] hydrolase activity 0 0 9346 GO:0016297 acyl-[acyl-carrier protein] hydrolase activity 0 0 9347 GO:0016298 lipase activity 0 0 9348 GO:0016299 regulator of G-protein signaling activity 0 0 9349 GO:0016300 tRNA (uracil) methyltransferase activity 0 0 9350 GO:0016301 kinase activity 0 0 9351 GO:0016303 phosphatidylinositol 3-kinase activity 0 0 9352 GO:0016304 phosphatidylinositol 3-kinase activity, class I (obsolete GO:0016304) 1 0 9353 GO:0016305 phosphatidylinositol 3-kinase activity, class II (obsolete GO:0016305) 1 0 9354 GO:0016306 phosphatidylinositol 3-kinase activity, class III (obsolete GO:0016306) 1 0 9355 GO:0016307 phosphatidylinositol phosphate kinase activity 0 0 9356 GO:0016308 1-phosphatidylinositol-4-phosphate 5-kinase activity 0 0 9357 GO:0016309 1-phosphatidylinositol-5-phosphate 4-kinase activity 0 0 9358 GO:0016310 phosphorylation 0 0 9359 GO:0016311 dephosphorylation 0 0 9360 GO:0016312 inositol bisphosphate phosphatase activity 0 0 9361 GO:0016313 inositol-1,4,5-trisphosphate phosphatase (obsolete GO:0016313) 1 0 9362 GO:0016314 phosphatidylinositol-3,4,5-trisphosphate 3-phosphatase activity 0 0 9363 GO:0016316 phosphatidylinositol-3,4-bisphosphate 4-phosphatase activity 0 0 9364 GO:0016318 ommatidial rotation 0 0 9365 GO:0016319 mushroom body development 0 0 9366 GO:0016320 endoplasmic reticulum membrane fusion 0 0 9367 GO:0016321 female meiosis chromosome segregation 0 0 9368 GO:0016322 neuron remodeling 0 0 9369 GO:0016323 basolateral plasma membrane 0 0 9370 GO:0016324 apical plasma membrane 0 0 9371 GO:0016325 oocyte microtubule cytoskeleton organization 0 0 9372 GO:0016326 kinesin motor activity (obsolete GO:0016326) 1 0 9373 GO:0016327 apicolateral plasma membrane 0 0 9374 GO:0016328 lateral plasma membrane 0 0 9375 GO:0016329 apoptosis regulator activity (obsolete GO:0016329) 1 0 9376 GO:0016330 second mitotic wave (sensu Endopterygota) 0 0 9377 GO:0016331 morphogenesis of embryonic epithelium 0 0 9378 GO:0016332 establishment and/or maintenance of polarity of embryonic epithelium 0 0 9379 GO:0016333 morphogenesis of follicular epithelium 0 0 9380 GO:0016334 establishment and/or maintenance of polarity of follicular epithelium 0 0 9381 GO:0016335 morphogenesis of larval imaginal disc epithelium 0 0 9382 GO:0016336 establishment and/or maintenance of polarity of larval imaginal disc epithelium 0 0 9383 GO:0016337 cell-cell adhesion 0 0 9384 GO:0016338 calcium-independent cell-cell adhesion 0 0 9385 GO:0016339 calcium-dependent cell-cell adhesion 0 0 9386 GO:0016340 calcium-dependent cell-matrix adhesion 0 0 9387 GO:0016341 other collagen (obsolete GO:0016341) 1 0 9388 GO:0016342 catenin complex 0 0 9389 GO:0016343 cytoskeletal anchoring activity (obsolete GO:0016343) 1 0 9390 GO:0016344 meiotic chromosome movement towards spindle pole 0 0 9391 GO:0016345 female meiotic chromosome movement towards spindle pole 0 0 9392 GO:0016346 male meiotic chromosome movement towards spindle pole 0 0 9393 GO:0016347 calcium-independent cell adhesion molecule activity (obsolete GO:0016347) 1 0 9394 GO:0016348 leg joint morphogenesis (sensu Endopterygota) 0 0 9395 GO:0016350 maintenance of oocyte identity (sensu Insecta) 0 0 9396 GO:0016351 drug susceptibility/resistance (obsolete GO:0016351) 1 0 9397 GO:0016352 insecticide susceptibility/resistance (obsolete GO:0016352) 1 0 9398 GO:0016353 carbamate susceptibility/resistance (obsolete GO:0016353) 1 0 9399 GO:0016354 cyclodiene susceptibility/resistance (obsolete GO:0016354) 1 0 9400 GO:0016355 DDT susceptibility/resistance (obsolete GO:0016355) 1 0 9401 GO:0016356 organophosphorus susceptibility/resistance (obsolete GO:0016356) 1 0 9402 GO:0016357 pyrethroid susceptibility/resistance (obsolete GO:0016357) 1 0 9403 GO:0016358 dendrite development 0 0 9404 GO:0016360 sensory organ precursor cell fate determination 0 0 9405 GO:0016361 activin receptor activity, type I 0 0 9406 GO:0016362 activin receptor activity, type II 0 0 9407 GO:0016363 nuclear matrix 0 0 9408 GO:0016401 palmitoyl-CoA oxidase activity 0 0 9409 GO:0016402 pristanoyl-CoA oxidase activity 0 0 9410 GO:0016403 dimethylargininase activity 0 0 9411 GO:0016404 15-hydroxyprostaglandin dehydrogenase (NAD+) activity 0 0 9412 GO:0016405 CoA-ligase activity 0 0 9413 GO:0016406 carnitine O-acyltransferase activity 0 0 9414 GO:0016407 acetyltransferase activity 0 0 9415 GO:0016408 C-acyltransferase activity 0 0 9416 GO:0016409 palmitoyltransferase activity 0 0 9417 GO:0016410 N-acyltransferase activity 0 0 9418 GO:0016411 acylglycerol O-acyltransferase activity 0 0 9419 GO:0016412 serine O-acyltransferase activity 0 0 9420 GO:0016413 O-acetyltransferase activity 0 0 9421 GO:0016414 O-octanoyltransferase activity 0 0 9422 GO:0016415 octanoyltransferase activity 0 0 9423 GO:0016416 O-palmitoyltransferase activity 0 0 9424 GO:0016417 S-acyltransferase activity 0 0 9425 GO:0016418 S-acetyltransferase activity 0 0 9426 GO:0016419 S-malonyltransferase activity 0 0 9427 GO:0016420 malonyltransferase activity 0 0 9428 GO:0016421 CoA carboxylase activity 0 0 9429 GO:0016422 mRNA (2'-O-methyladenosine-N6-)-methyltransferase activity 0 0 9430 GO:0016423 tRNA (guanine) methyltransferase activity 0 0 9431 GO:0016424 tRNA (guanosine) methyltransferase activity 0 0 9432 GO:0016426 tRNA (adenine)-methyltransferase activity 0 0 9433 GO:0016427 tRNA (cytosine)-methyltransferase activity 0 0 9434 GO:0016428 tRNA (cytosine-5-)-methyltransferase activity 0 0 9435 GO:0016429 tRNA (adenine-N1-)-methyltransferase activity 0 0 9436 GO:0016430 tRNA (adenine-N6-)-methyltransferase activity 0 0 9437 GO:0016431 tRNA (uridine) methyltransferase activity 0 0 9438 GO:0016432 tRNA-uridine aminocarboxypropyltransferase activity 0 0 9439 GO:0016433 rRNA (adenine) methyltransferase activity 0 0 9440 GO:0016434 rRNA (cytosine) methyltransferase activity 0 0 9441 GO:0016435 rRNA (guanine) methyltransferase activity 0 0 9442 GO:0016436 rRNA (uridine) methyltransferase activity 0 0 9443 GO:0016437 tRNA cytidylyltransferase activity 0 0 9444 GO:0016438 tRNA-queuosine beta-mannosyltransferase activity 0 0 9445 GO:0016439 tRNA-pseudouridine synthase activity 0 0 9446 GO:0016441 posttranscriptional gene silencing 0 0 9447 GO:0016442 RNA-induced silencing complex 0 0 9448 GO:0016443 bidentate ribonuclease III activity 0 0 9449 GO:0016444 somatic cell DNA recombination 0 0 9450 GO:0016445 generation of antibody gene diversity 0 0 9451 GO:0016446 somatic hypermutation of antibody genes 0 0 9452 GO:0016447 somatic recombination of antibody genes 0 0 9453 GO:0016448 mu DNA polymerase activity 0 0 9454 GO:0016449 lambda DNA polymerase activity 0 0 9455 GO:0016450 kappa DNA polymerase activity 0 0 9456 GO:0016451 nu DNA polymerase activity 0 0 9457 GO:0016452 theta DNA polymerase activity 0 0 9458 GO:0016453 C-acetyltransferase activity 0 0 9459 GO:0016454 C-palmitoyltransferase activity 0 0 9460 GO:0016455 RNA polymerase II transcription mediator activity 0 0 9461 GO:0016456 dosage compensation complex (sensu Insecta) 0 0 9462 GO:0016457 dosage compensation complex assembly (sensu Insecta) 0 0 9463 GO:0016458 gene silencing 0 0 9464 GO:0016459 myosin 0 0 9465 GO:0016460 myosin II 0 0 9466 GO:0016461 unconventional myosin 0 0 9467 GO:0016462 pyrophosphatase activity 0 0 9468 GO:0016463 zinc-exporting ATPase activity 0 0 9469 GO:0016464 chloroplast protein-transporting ATPase activity 0 0 9470 GO:0016465 chaperonin ATPase complex 0 0 9471 GO:0016466 hydrogen-translocating A-type ATPase activity (obsolete GO:0016466) 1 0 9472 GO:0016467 hydrogen-translocating F-type ATPase activity (obsolete GO:0016467) 1 0 9473 GO:0016468 sodium-translocating F-type ATPase activity (obsolete GO:0016468) 1 0 9474 GO:0016469 proton-transporting two-sector ATPase complex 0 0 9475 GO:0016471 hydrogen-translocating V-type ATPase complex 0 0 9476 GO:0016472 sodium-transporting two-sector ATPase complex 0 0 9477 GO:0016473 sodium-translocating F-type ATPase complex 0 0 9478 GO:0016474 sodium-translocating V-type ATPase complex 0 0 9479 GO:0016475 detection of nuclear:cytoplasmic ratio 0 0 9480 GO:0016476 shape changes of embryonic cells 0 0 9481 GO:0016477 cell migration 0 0 9482 GO:0016478 negative regulation of translation 0 0 9483 GO:0016479 negative regulation of transcription from RNA polymerase I promoter 0 0 9484 GO:0016480 negative regulation of transcription from RNA polymerase III promoter 0 0 9485 GO:0016481 negative regulation of transcription 0 0 9486 GO:0016482 cytoplasmic transport 0 0 9487 GO:0016483 tryptophan hydroxylase activator activity 0 0 9488 GO:0016484 proprotein convertase 2 activator activity 0 0 9489 GO:0016485 protein processing 0 0 9490 GO:0016486 peptide hormone processing 0 0 9491 GO:0016487 farnesol metabolism 0 0 9492 GO:0016488 farnesol catabolism 0 0 9493 GO:0016489 immunoglobulin receptor activity (obsolete GO:0016489) 1 0 9494 GO:0016490 structural constituent of peritrophic membrane (sensu Insecta) 0 0 9495 GO:0016491 oxidoreductase activity 0 0 9496 GO:0016492 neurotensin receptor activity, G-protein coupled 0 0 9497 GO:0016493 C-C chemokine receptor activity 0 0 9498 GO:0016494 C-X-C chemokine receptor activity 0 0 9499 GO:0016495 C-X3-C chemokine receptor activity 0 0 9500 GO:0016496 substance P receptor activity 0 0 9501 GO:0016497 substance K receptor activity 0 0 9502 GO:0016498 neuromedin K receptor activity 0 0 9503 GO:0016499 orexin receptor activity 0 0 9504 GO:0016500 protein-hormone receptor activity 0 0 9505 GO:0016501 prostacyclin receptor activity 0 0 9506 GO:0016502 nucleotide receptor activity 0 0 9507 GO:0016503 pheromone receptor activity 0 0 9508 GO:0016504 protease activator activity 0 0 9509 GO:0016505 apoptotic protease activator activity 0 0 9510 GO:0016506 apoptosis activator activity (obsolete GO:0016506) 1 0 9511 GO:0016507 fatty acid beta-oxidation multienzyme complex 0 0 9512 GO:0016508 long-chain-enoyl-CoA hydratase activity 0 0 9513 GO:0016509 long-chain-3-hydroxyacyl-CoA dehydrogenase activity 0 0 9514 GO:0016511 endothelin-converting enzyme activity 0 0 9515 GO:0016512 endothelin-converting enzyme 1 activity 0 0 9516 GO:0016513 core-binding factor complex 0 0 9517 GO:0016514 SWI/SNF complex 0 0 9518 GO:0016515 interleukin-13 receptor activity 0 0 9519 GO:0016516 interleukin-4 receptor complex 0 0 9520 GO:0016517 interleukin-12 receptor activity 0 0 9521 GO:0016518 interleukin-14 receptor activity 0 0 9522 GO:0016519 gastric inhibitory peptide receptor activity 0 0 9523 GO:0016520 growth hormone-releasing hormone receptor activity 0 0 9524 GO:0016521 pituitary adenylate cyclase activating polypeptide activity 0 0 9525 GO:0016524 latrotoxin receptor activity 0 0 9526 GO:0016525 negative regulation of angiogenesis 0 0 9527 GO:0016526 G-protein coupled receptor activity, unknown ligand 0 0 9528 GO:0016527 brain-specific angiogenesis inhibitor activity 0 0 9529 GO:0016528 sarcoplasm 0 0 9530 GO:0016529 sarcoplasmic reticulum 0 0 9531 GO:0016530 metallochaperone activity 0 0 9532 GO:0016531 copper chaperone activity 0 0 9533 GO:0016532 superoxide dismutase copper chaperone activity 0 0 9534 GO:0016533 cyclin-dependent protein kinase 5 activator complex 0 0 9535 GO:0016534 cyclin-dependent protein kinase 5 activator activity 0 0 9536 GO:0016536 cyclin-dependent protein kinase 5 activator regulator activity 0 0 9537 GO:0016538 cyclin-dependent protein kinase regulator activity 0 0 9538 GO:0016539 intein-mediated protein splicing 0 0 9539 GO:0016540 protein autoprocessing 0 0 9540 GO:0016541 intein (obsolete GO:0016541) 1 0 9541 GO:0016542 male courtship behavior (sensu Insecta) 0 0 9542 GO:0016543 male courtship behavior (sensu Insecta), orientation 0 0 9543 GO:0016544 male courtship behavior (sensu Insecta), tapping 0 0 9544 GO:0016545 male courtship behavior (sensu Insecta), wing vibration 0 0 9545 GO:0016546 male courtship behavior (sensu Insecta), licking 0 0 9546 GO:0016547 RNA editing 0 0 9547 GO:0016548 rRNA editing 0 0 9548 GO:0016549 tRNA editing 0 0 9549 GO:0016550 insertion or deletion editing 0 0 9550 GO:0016551 posttranscriptional insertion or deletion editing 0 0 9551 GO:0016552 cotranscriptional insertion or deletion editing 0 0 9552 GO:0016553 base conversion or substitution editing 0 0 9553 GO:0016554 cytidine to uridine editing 0 0 9554 GO:0016555 uridine to cytidine editing 0 0 9555 GO:0016556 mRNA modification 0 0 9556 GO:0016557 peroxisome membrane biogenesis 0 0 9557 GO:0016558 protein import into peroxisome matrix 0 0 9558 GO:0016559 peroxisome fission 0 0 9559 GO:0016560 protein import into peroxisome matrix, docking 0 0 9560 GO:0016561 protein import into peroxisome matrix, translocation 0 0 9561 GO:0016562 protein import into peroxisome matrix, receptor recycling 0 0 9562 GO:0016563 transcriptional activator activity 0 0 9563 GO:0016564 transcriptional repressor activity 0 0 9564 GO:0016565 general transcriptional repressor activity 0 0 9565 GO:0016566 specific transcriptional repressor activity 0 0 9566 GO:0016567 protein ubiquitination 0 0 9567 GO:0016568 chromatin modification 0 0 9568 GO:0016569 covalent chromatin modification 0 0 9569 GO:0016570 histone modification 0 0 9570 GO:0016571 histone methylation 0 0 9571 GO:0016572 histone phosphorylation 0 0 9572 GO:0016573 histone acetylation 0 0 9573 GO:0016574 histone ubiquitination 0 0 9574 GO:0016575 histone deacetylation 0 0 9575 GO:0016576 histone dephosphorylation 0 0 9576 GO:0016577 histone demethylation 0 0 9577 GO:0016578 histone deubiquitination 0 0 9578 GO:0016579 protein deubiquitination 0 0 9579 GO:0016580 Sin3 complex 0 0 9580 GO:0016581 NuRD complex 0 0 9581 GO:0016582 non-covalent chromatin modification 0 0 9582 GO:0016583 nucleosome modeling (obsolete GO:0016583) 1 0 9583 GO:0016584 nucleosome spacing 0 0 11015 GO:0018915 ethylbenzene metabolism 0 0 11016 GO:0018916 nitrobenzene metabolism 0 0 11017 GO:0018917 fluorene metabolism 0 0 11018 GO:0018918 gallate metabolism 0 0 11019 GO:0018919 gamma-1,2,3,4,5,6-hexachlorocyclohexane metabolism 0 0 11020 GO:0018920 glyphosate metabolism 0 0 11021 GO:0018921 3-hydroxybenzyl alcohol metabolism 0 0 11022 GO:0018922 iprodione metabolism 0 0 11023 GO:0018923 limonene metabolism 0 0 11024 GO:0018924 mandelate metabolism 0 0 11025 GO:0018925 m-cresol metabolism 0 0 11026 GO:0018926 methanesulfonic acid metabolism 0 0 11027 GO:0018927 methionine and threonine metabolism (obsolete GO:0018927) 1 0 11028 GO:0018928 methyl ethyl ketone metabolism 0 0 11029 GO:0018929 methyl fluoride metabolism 0 0 11030 GO:0018930 3-methylquinoline metabolism 0 0 11031 GO:0018931 naphthalene metabolism 0 0 11032 GO:0018933 nicotine metabolism 0 0 11033 GO:0018934 nitrilotriacetate metabolism 0 0 11034 GO:0018935 aerobic nitrilotriacetate metabolism 0 0 11035 GO:0018936 anaerobic nitrilotriacetate metabolism 0 0 11036 GO:0018937 nitroglycerin metabolism 0 0 11037 GO:0018938 2-nitropropane metabolism 0 0 11038 GO:0018939 n-octane metabolism 0 0 11039 GO:0018940 orcinol metabolism 0 0 11040 GO:0018941 organomercury metabolism 0 0 11041 GO:0018942 organometal metabolism 0 0 11042 GO:0018943 organotin metabolism 0 0 11043 GO:0018944 tri-n-butyltin metabolism 0 0 11044 GO:0018945 organosilicon metabolism 0 0 11045 GO:0018946 aerobic organosilicon metabolism 0 0 11046 GO:0018947 anaerobic organosilicon metabolism 0 0 11047 GO:0018948 xylene metabolism 0 0 11048 GO:0018949 m-xylene metabolism 0 0 11049 GO:0018950 o-xylene metabolism 0 0 11050 GO:0018951 p-xylene metabolism 0 0 11051 GO:0018952 parathion metabolism 0 0 11052 GO:0018953 p-cymene metabolism 0 0 11053 GO:0018954 pentaerythritol tetranitrate metabolism 0 0 11054 GO:0018955 phenanthrene metabolism 0 0 11055 GO:0018956 phenanthrene catabolism via trans-9(R),10(R)-dihydrodiolphenanthrene 0 0 11056 GO:0018957 phenanthrene catabolism via trans-9(S),10(S)-dihydrodiolphenanthrene 0 0 11057 GO:0018958 phenol metabolism 0 0 11058 GO:0018959 aerobic phenol metabolism 0 0 11059 GO:0018960 4-nitrophenol metabolism 0 0 11060 GO:0018961 pentachlorophenol metabolism 0 0 11061 GO:0018962 3-phenylpropionate metabolism 0 0 11062 GO:0018963 phthalate metabolism 0 0 11063 GO:0018964 propylene metabolism 0 0 11064 GO:0018965 s-triazine compound metabolism 0 0 11065 GO:0018966 styrene metabolism 0 0 11066 GO:0018967 tetrachloroethylene metabolism 0 0 11067 GO:0018968 tetrahydrofuran metabolism 0 0 11068 GO:0018969 thiocyanate metabolism 0 0 11069 GO:0018970 toluene metabolism 0 0 11070 GO:0018971 anaerobic toluene metabolism 0 0 11071 GO:0018972 toluene-4-sulfonate metabolism 0 0 11072 GO:0018973 trinitrotoluene metabolism 0 0 11073 GO:0018974 2,4,6-trinitrotoluene metabolism 0 0 11074 GO:0018975 anaerobic 2,4,6-trinitrotoluene metabolism 0 0 11075 GO:0018976 1,2,3-tribromopropane metabolism 0 0 11076 GO:0018977 1,1,1-trichloro-2,2-bis-(4-chlorophenyl)ethane metabolism 0 0 11077 GO:0018978 anaerobic 1,1,1-trichloro-2,2-bis-(4-chlorophenyl)ethane metabolism 0 0 11078 GO:0018979 trichloroethylene metabolism 0 0 11079 GO:0018980 2,4,5-trichlorophenoxyacetic acid metabolism 0 0 11080 GO:0018981 triethanolamine metabolism 0 0 11081 GO:0018982 vanillin metabolism 0 0 11082 GO:0018983 Z-phenylacetaldoxime metabolism 0 0 11083 GO:0018984 naphthalenesulfonate metabolism 0 0 11084 GO:0018985 pronuclear envelope synthesis 0 0 11085 GO:0018987 osmoregulation 0 0 11086 GO:0018988 molting cycle (sensu Protostomia and Nematoda) 0 0 11087 GO:0018989 apolysis 0 0 11088 GO:0018990 ecdysis (sensu Insecta) 0 0 11089 GO:0018991 oviposition 0 0 11090 GO:0018992 germ-line sex determination 0 0 11091 GO:0018993 somatic sex determination 0 0 11092 GO:0018994 polar granule 0 0 11093 GO:0018995 host 0 0 11094 GO:0018996 molting cycle (sensu Nematoda) 0 0 11095 GO:0018997 electron transfer carrier (obsolete GO:0018997) 1 0 11096 GO:0018998 metaxin (obsolete GO:0018998) 1 0 11097 GO:0019000 endonuclease G activity (obsolete GO:0019000) 1 0 11098 GO:0019001 guanyl nucleotide binding 0 0 11099 GO:0019002 GMP binding 0 0 11100 GO:0019003 GDP binding 0 0 11101 GO:0019005 SCF ubiquitin ligase complex 0 0 11102 GO:0019007 N-acetylneuraminic acid phosphate synthase activity 0 0 11103 GO:0019008 molybdopterin synthase complex 0 0 11104 GO:0019009 molybdopterin converting factor 0 0 11105 GO:0019010 farnesoic acid O-methyltransferase activity 0 0 11106 GO:0019011 DNA replication accessory factor (obsolete GO:0019011) 1 0 11107 GO:0019012 virion 0 0 11108 GO:0019013 viral nucleocapsid 0 0 11109 GO:0019015 viral genome 0 0 11110 GO:0019016 non-segmented viral genome 0 0 11111 GO:0019017 segmented viral genome 0 0 11112 GO:0019018 bipartite viral genome 0 0 11113 GO:0019019 tripartite viral genome 0 0 11114 GO:0019020 multipartite viral genome 0 0 11115 GO:0019021 DNA viral genome 0 0 11116 GO:0019022 RNA viral genome 0 0 11117 GO:0019023 dsRNA viral genome 0 0 11118 GO:0019024 ssRNA viral genome 0 0 11119 GO:0019025 positive sense viral genome 0 0 11120 GO:0019026 negative sense viral genome 0 0 11121 GO:0019027 ambisense viral genome 0 0 11122 GO:0019028 viral capsid 0 0 11123 GO:0019029 helical viral capsid 0 0 11124 GO:0019030 icosahedral viral capsid 0 0 11125 GO:0019031 viral envelope 0 0 11126 GO:0019032 viral glycoprotein (obsolete GO:0019032) 1 0 11127 GO:0019033 viral tegument 0 0 11128 GO:0019034 viral replication complex 0 0 11129 GO:0019035 viral integration complex 0 0 11130 GO:0019036 viral transcriptional complex 0 0 11131 GO:0019037 viral assembly intermediate 0 0 11132 GO:0019038 provirus 0 0 11133 GO:0019039 viral-cell fusion molecule activity (obsolete GO:0019039) 1 0 11134 GO:0019040 viral host shutoff protein (obsolete GO:0019040) 1 0 11135 GO:0019041 viral antireceptor activity 0 0 11136 GO:0019042 latent virus infection 0 0 11137 GO:0019043 establishment of viral latency 0 0 11138 GO:0019044 latent virus maintenance 0 0 11139 GO:0019045 latent virus replication 0 0 11140 GO:0019046 reactivation of latent virus 0 0 11141 GO:0019047 provirus integration 0 0 11142 GO:0019048 virus-host interaction 0 0 11143 GO:0019049 evasion of host defenses by virus 0 0 11144 GO:0019050 suppression of apoptosis in host by virus 0 0 11145 GO:0019051 induction of apoptosis in host by virus 0 0 11146 GO:0019052 suppression of host intracellular antiviral response by virus 0 0 11147 GO:0019053 suppression of host extracellular antiviral response by virus 0 0 11148 GO:0019054 modification by virus of host cell process 0 0 11149 GO:0019055 modification by virus of host cell cycle regulation 0 0 11150 GO:0019056 modification by virus of host cell transcription 0 0 11151 GO:0019057 modification by virus of host cell mRNA translation 0 0 11152 GO:0019058 viral infectious cycle 0 0 11153 GO:0019059 initiation of viral infection 0 0 11154 GO:0019060 intracellular transport of viral proteins in host cell 0 0 11155 GO:0019061 uncoating of virus 0 0 11156 GO:0019062 virion attachment to host cell surface receptor 0 0 11157 GO:0019063 virion penetration into host cell 0 0 11158 GO:0019064 viral envelope fusion with host membrane 0 0 11159 GO:0019065 receptor mediated endocytosis of virus by host 0 0 11160 GO:0019066 translocation of virus into host cell 0 0 11161 GO:0019067 viral assembly, maturation, egress, and release 0 0 11162 GO:0019068 virus assembly 0 0 11163 GO:0019069 viral capsid assembly 0 0 11164 GO:0019070 viral genome maturation 0 0 11165 GO:0019071 viral DNA cleavage 0 0 11166 GO:0019072 viral genome packaging 0 0 11167 GO:0019073 viral DNA genome packaging 0 0 11168 GO:0019074 viral RNA genome packaging 0 0 11169 GO:0019075 virus maturation 0 0 11170 GO:0019076 release of virus from host 0 0 11171 GO:0019077 lytic viral release 0 0 11172 GO:0019078 lytic viral budding 0 0 11173 GO:0019079 viral genome replication 0 0 11174 GO:0019080 viral genome expression 0 0 11175 GO:0019081 viral protein biosynthesis 0 0 11176 GO:0019082 viral protein processing 0 0 11177 GO:0019083 viral transcription 0 0 11178 GO:0019084 (delayed) early viral mRNA transcription 0 0 11179 GO:0019085 immediate early viral mRNA transcription 0 0 11180 GO:0019086 late viral mRNA transcription 0 0 11181 GO:0019087 transformation of host cell by virus 0 0 11182 GO:0019088 immortalization of host cell by virus 0 0 11183 GO:0019089 transmission of virus 0 0 11184 GO:0019090 mitochondrial rRNA export from mitochondrion 0 0 11185 GO:0019091 mitochondrial lrRNA export from mitochondrion 0 0 11186 GO:0019092 mitochondrial srRNA export from mitochondrion 0 0 11187 GO:0019093 mitochondrial RNA localization 0 0 11188 GO:0019094 pole plasm mRNA localization 0 0 11189 GO:0019095 pole plasm mitochondrial rRNA localization 0 0 11190 GO:0019096 pole plasm mitochondrial lrRNA localization 0 0 11191 GO:0019097 pole plasm mitochondrial srRNA localization 0 0 11192 GO:0019098 reproductive behavior 0 0 11193 GO:0019099 female germ-line sex determination 0 0 11194 GO:0019100 male germ-line sex determination 0 0 11195 GO:0019101 female somatic sex determination 0 0 11196 GO:0019102 male somatic sex determination 0 0 11197 GO:0019103 pyrimidine nucleotide binding 0 0 11198 GO:0019104 DNA N-glycosylase activity 0 0 11199 GO:0019105 N-palmitoyltransferase activity 0 0 11200 GO:0019107 myristoyltransferase activity 0 0 11201 GO:0019108 aryl-aldehyde dehydrogenase activity 0 0 11202 GO:0019109 acyl-CoA reductase activity 0 0 11203 GO:0019110 oxidoreductase activity, acting on iron-sulfur proteins as donors, hydrogen ions as acceptor 0 0 11204 GO:0019111 phenanthrol sulfotransferase activity 0 0 11205 GO:0019112 phenanthrol glycosyltransferase activity 0 0 11206 GO:0019113 limonene monooxygenase activity 0 0 11207 GO:0019114 catechol dioxygenase activity 0 0 11208 GO:0019115 benzaldehyde dehydrogenase activity 0 0 11209 GO:0019116 hydroxy-nicotine oxidase activity 0 0 11210 GO:0019117 dihydroxyfluorene dioxygenase activity 0 0 11211 GO:0019118 phenanthrene-epoxide hydrolase activity 0 0 11212 GO:0019119 phenanthrene-9,10-epoxide hydrolase activity 0 0 11213 GO:0019120 hydrolase activity, acting on acid halide bonds, in C-halide compounds 0 0 11214 GO:0019121 peptidoglycan-protein cross-linking via N6-mureinyl-L-lysine 0 0 11215 GO:0019122 peptidyl-D-alanine racemization 0 0 11216 GO:0019123 peptidyl-methionine racemization 0 0 11217 GO:0019124 peptidyl-isoleucine racemization 0 0 11218 GO:0019125 peptidyl-phenylalanine racemization 0 0 11219 GO:0019126 peptidyl-serine racemization 0 0 11220 GO:0019128 peptidyl-tryptophan racemization 0 0 11221 GO:0019129 peptidyl-leucine racemization 0 0 11222 GO:0019131 tripeptidyl-peptidase I activity 0 0 11223 GO:0019132 C-terminal processing peptidase activity 0 0 11224 GO:0019133 choline monooxygenase activity 0 0 11225 GO:0019134 glucosamine-1-phosphate N-acetyltransferase activity 0 0 11226 GO:0019135 deoxyhypusine monooxygenase activity 0 0 11227 GO:0019136 deoxynucleoside kinase activity 0 0 11228 GO:0019137 thioglucosidase activity 0 0 11229 GO:0019138 ribosylhomocysteinase activity 0 0 11230 GO:0019139 cytokinin dehydrogenase activity 0 0 11231 GO:0019140 inositol 3-kinase activity 0 0 11232 GO:0019141 2-dehydropantolactone reductase (B-specific) activity 0 0 11233 GO:0019142 2-hydroxyglutarate synthase activity 0 0 11234 GO:0019143 3-deoxy-manno-octulosonate-8-phosphatase activity 0 0 11235 GO:0019144 ADP-sugar diphosphatase activity 0 0 11236 GO:0019145 aminobutyraldehyde dehydrogenase activity 0 0 11237 GO:0019146 arabinose-5-phosphate isomerase activity 0 0 11238 GO:0019147 (R)-aminopropanol dehydrogenase activity 0 0 11239 GO:0019148 D-cysteine desulfhydrase activity 0 0 11240 GO:0019149 3-chloro-D-alanine dehydrochlorinase activity 0 0 11241 GO:0019150 D-ribulokinase activity 0 0 11242 GO:0019151 galactose 1-dehydrogenase activity 0 0 11243 GO:0019152 acetoin dehydrogenase activity 0 0 11244 GO:0019153 protein-disulfide reductase (glutathione) activity 0 0 11245 GO:0019154 glycolate dehydrogenase activity 0 0 11246 GO:0019155 3-(imidazol-5-yl)lactate dehydrogenase activity 0 0 11247 GO:0019156 isoamylase activity 0 0 11248 GO:0019157 malate oxidase activity 0 0 11249 GO:0019158 mannokinase activity 0 0 11250 GO:0019159 nicotinamide-nucleotide amidase activity 0 0 11251 GO:0019160 NMN nucleosidase activity 0 0 11252 GO:0019161 diamine transaminase activity 0 0 11253 GO:0019162 pyridoxamine-oxaloacetate transaminase activity 0 0 11254 GO:0019163 pyridoxamine-phosphate transaminase activity 0 0 11255 GO:0019164 pyruvate synthase activity 0 0 11256 GO:0019165 thiamin kinase activity 0 0 11257 GO:0019166 trans-2-enoyl-CoA reductase (NADPH) activity 0 0 11258 GO:0019167 3-octaprenyl-4-hydroxybenzoate decarboxylase activity 0 0 11259 GO:0019168 2-octaprenylphenol hydroxylase activity 0 0 11260 GO:0019170 D-lactaldehyde dehydrogenase activity 0 0 11261 GO:0019171 3-hydroxyacyl-[acyl-carrier protein] dehydratase activity 0 0 11262 GO:0019172 glyoxalase III activity 0 0 11263 GO:0019173 pyrimidine phosphatase activity 0 0 11264 GO:0019174 tetrahydrothiophene 1-oxide reductase activity 0 0 11265 GO:0019175 alpha-ribazole-5'-P phosphatase activity 0 0 11266 GO:0019176 dihydroneopterin monophosphate phosphatase activity 0 0 11267 GO:0019177 dihydroneopterin triphosphate pyrophosphohydrolase activity 0 0 11268 GO:0019178 NADP phosphatase activity 0 0 11269 GO:0019179 dTDP-4-amino-4,6-dideoxy-D-glucose transaminase activity 0 0 11270 GO:0019180 dTDP-4-amino-4,6-dideoxygalactose transaminase activity 0 0 11271 GO:0019181 halohydrin hydrogen-halide-lyase activity 0 0 11272 GO:0019182 histamine-gated chloride channel activity 0 0 11273 GO:0019183 histamine-gated chloride channel complex 0 0 11274 GO:0019184 nonribosomal peptide biosynthesis 0 0 11275 GO:0019185 snRNA-activating protein complex 0 0 11276 GO:0019186 acyl-CoA N-acyltransferase activity 0 0 11277 GO:0019187 beta-1,4-mannosyltransferase activity 0 0 11278 GO:0019188 sucrose permease (PTS) activity 0 0 11279 GO:0019189 lactose permease activity 0 0 11280 GO:0019190 cellobiose permease activity 0 0 11281 GO:0019191 cellobiose transporter activity 0 0 11282 GO:0019192 fructose porter activity 0 0 11283 GO:0019193 sorbose porter activity 0 0 11284 GO:0019194 sorbose transporter activity 0 0 11285 GO:0019195 galactosamine porter activity 0 0 11286 GO:0019196 galactosamine transporter activity 0 0 11287 GO:0019197 phosphoenolpyruvate-dependent sugar phosphotransferase complex 0 0 11288 GO:0019198 transmembrane receptor protein phosphatase activity 0 0 11289 GO:0019199 transmembrane receptor protein kinase activity 0 0 11290 GO:0019200 carbohydrate kinase activity 0 0 11291 GO:0019201 nucleotide kinase activity 0 0 11292 GO:0019202 amino acid kinase activity 0 0 11293 GO:0019203 carbohydrate phosphatase activity 0 0 11294 GO:0019204 nucleotide phosphatase activity 0 0 11295 GO:0019205 nucleobase, nucleoside, nucleotide kinase activity 0 0 11296 GO:0019206 nucleoside kinase activity 0 0 11297 GO:0019207 kinase regulator activity 0 0 11298 GO:0019208 phosphatase regulator activity 0 0 11299 GO:0019209 kinase activator activity 0 0 11300 GO:0019210 kinase inhibitor activity 0 0 11301 GO:0019211 phosphatase activator activity 0 0 11302 GO:0019212 phosphatase inhibitor activity 0 0 11303 GO:0019213 deacetylase activity 0 0 11304 GO:0019214 surfactant activity (obsolete GO:0019214) 1 0 11305 GO:0019215 intermediate filament binding 0 0 11306 GO:0019216 regulation of lipid metabolism 0 0 11307 GO:0019217 regulation of fatty acid metabolism 0 0 11308 GO:0019218 regulation of steroid metabolism 0 0 11309 GO:0019219 regulation of nucleobase, nucleoside, nucleotide and nucleic acid metabolism 0 0 11310 GO:0019220 regulation of phosphate metabolism 0 0 11311 GO:0019221 cytokine and chemokine mediated signaling pathway 0 0 11312 GO:0019222 regulation of metabolism 0 0 11313 GO:0019226 transmission of nerve impulse 0 0 11314 GO:0019227 action potential propagation 0 0 11315 GO:0019228 generation of action potential 0 0 11316 GO:0019229 regulation of vasoconstriction 0 0 11317 GO:0019230 proprioception 0 0 11318 GO:0019231 perception of static position 0 0 11319 GO:0019232 perception of rate of movement 0 0 11320 GO:0019233 sensory perception of pain 0 0 11321 GO:0019234 sensory perception of fast pain 0 0 11322 GO:0019235 sensory perception of slow pain 0 0 11323 GO:0019236 response to pheromone 0 0 11324 GO:0019237 centromeric DNA binding 0 0 11325 GO:0019238 cyclohydrolase activity 0 0 11326 GO:0019239 deaminase activity 0 0 11327 GO:0019240 citrulline biosynthesis 0 0 11328 GO:0019241 citrulline catabolism 0 0 11329 GO:0019242 methylglyoxal biosynthesis 0 0 11330 GO:0019243 methylglyoxal catabolism to D-lactate 0 0 11331 GO:0019244 lactate biosynthesis from pyruvate 0 0 11332 GO:0019245 D(-)-lactate biosynthesis from pyruvate 0 0 11333 GO:0019246 L(+)-lactate biosynthesis from pyruvate 0 0 11334 GO:0019247 lactate racemization 0 0 11335 GO:0019248 D-lactate biosynthesis from methylglyoxal via (R)-lactaldehyde 0 0 11336 GO:0019249 lactate biosynthesis 0 0 11337 GO:0019250 aerobic cobalamin biosynthesis 0 0 11338 GO:0019251 anaerobic cobalamin biosynthesis 0 0 11339 GO:0019252 starch biosynthesis 0 0 11340 GO:0019253 reductive pentose-phosphate cycle 0 0 11341 GO:0019254 carnitine metabolism, CoA-linked 0 0 11342 GO:0019255 glucose 1-phosphate metabolism 0 0 11343 GO:0019256 acrylonitrile catabolism 0 0 11344 GO:0019257 4-nitrotoluene metabolism 0 0 11345 GO:0019258 4-nitrotoluene catabolism 0 0 11346 GO:0019259 2-aminobenzoate catabolism 0 0 11347 GO:0019260 1,2-dichloroethane catabolism 0 0 11348 GO:0019261 1,4-dichlorobenzene catabolism 0 0 11349 GO:0019262 N-acetylneuraminate catabolism 0 0 11350 GO:0019263 adamantanone catabolism 0 0 11351 GO:0019264 glycine biosynthesis from serine 0 0 11352 GO:0019265 glycine biosynthesis, by transamination of glyoxylate 0 0 11353 GO:0019266 asparagine biosynthesis from oxaloacetate 0 0 11354 GO:0019267 asparagine biosynthesis from cysteine 0 0 11355 GO:0019268 glutamate biosynthesis, using glutamate dehydrogenase (NAD(P)+) (obsolete GO:0019268) 1 0 11356 GO:0019269 glutamate biosynthesis, using glutamate synthase (NADPH) (obsolete GO:0019269) 1 0 11357 GO:0019270 aerobactin biosynthesis 0 0 11358 GO:0019271 aerobactin transport 0 0 11359 GO:0019272 L-alanine biosynthesis from pyruvate 0 0 11360 GO:0019273 L-alanine biosynthesis via ornithine 0 0 11361 GO:0019274 phenylalanine biosynthesis, prephenate pathway 0 0 11362 GO:0019275 phenylalanine biosynthesis, shikimate pathway 0 0 11363 GO:0019276 UDP-N-acetylgalactosamine metabolism 0 0 11364 GO:0019277 UDP-N-acetylgalactosamine biosynthesis 0 0 11365 GO:0019278 UDP-N-acetylgalactosamine catabolism 0 0 11366 GO:0019279 methionine biosynthesis from L-homoserine via cystathione 0 0 11367 GO:0019280 methionine biosynthesis from homoserine via O-acetyl-L-homoserine and cystathione 0 0 11368 GO:0019281 methionine biosynthesis from homoserine via O-succinyl-L-homoserine and cystathione 0 0 11369 GO:0019282 methionine biosynthesis, direct, from O-acetyl-L-homoserine 0 0 11370 GO:0019283 methionine biosynthesis from O-phospho-L-homoserine and cystathione 0 0 11371 GO:0019284 methionine biosynthesis from S-adenosylmethionine 0 0 11372 GO:0019285 glycine betaine biosynthesis from choline 0 0 11373 GO:0019286 glycine betaine biosynthesis from glycine 0 0 11374 GO:0019287 isopentenyl diphosphate biosynthesis, mevalonate pathway 0 0 11375 GO:0019288 isopentenyl diphosphate biosynthesis, mevalonate-independent pathway 0 0 11376 GO:0019289 rhizobactin 1021 biosynthesis 0 0 11377 GO:0019290 siderophore biosynthesis 0 0 11378 GO:0019291 tyrosine biosynthesis from chorismate via L-phenylalanine 0 0 11379 GO:0019292 tyrosine biosynthesis from chorismate via 4-hydroxyphenylpyruvate 0 0 11380 GO:0019293 tyrosine biosynthesis, by oxidation of phenylalanine 0 0 11381 GO:0019294 ketodeoxyoctanoate biosynthesis 0 0 11382 GO:0019295 coenzyme M biosynthesis 0 0 11383 GO:0019296 coenzyme M metabolism 0 0 11384 GO:0019297 coenzyme B metabolism 0 0 11385 GO:0019298 coenzyme B biosynthesis 0 0 11386 GO:0019299 rhamnose metabolism 0 0 11387 GO:0019300 rhamnose biosynthesis 0 0 11388 GO:0019301 rhamnose catabolism 0 0 11389 GO:0019302 D-ribose biosynthesis 0 0 11390 GO:0019303 D-ribose catabolism 0 0 11391 GO:0019304 anaerobic rhamnose catabolism 0 0 11392 GO:0019305 dTDP-rhamnose biosynthesis 0 0 11393 GO:0019306 GDP-D-rhamnose biosynthesis 0 0 11394 GO:0019307 mannose biosynthesis 0 0 11395 GO:0019308 dTDP-mannose biosynthesis 0 0 11396 GO:0019309 mannose catabolism 0 0 11397 GO:0019310 myo-inositol catabolism 0 0 11398 GO:0019311 sorbose metabolism 0 0 11399 GO:0019312 L-sorbose metabolism 0 0 11400 GO:0019313 allose metabolism 0 0 11401 GO:0019314 D-allose metabolism 0 0 11402 GO:0019315 D-allose biosynthesis 0 0 11403 GO:0019316 D-allose catabolism 0 0 11404 GO:0019317 fucose catabolism 0 0 11405 GO:0019318 hexose metabolism 0 0 11406 GO:0019319 hexose biosynthesis 0 0 11407 GO:0019320 hexose catabolism 0 0 11408 GO:0019321 pentose metabolism 0 0 11409 GO:0019322 pentose biosynthesis 0 0 11410 GO:0019323 pentose catabolism 0 0 11411 GO:0019324 L-lyxose metabolism 0 0 11412 GO:0019325 anaerobic fructose catabolism 0 0 11413 GO:0019326 nitrotoluene metabolism 0 0 11414 GO:0019327 oxidation of lead sulfide 0 0 11415 GO:0019328 anaerobic gallate catabolism 0 0 11416 GO:0019329 ammonia oxidation 0 0 11417 GO:0019330 aldoxime metabolism 0 0 11418 GO:0019331 anaerobic respiration, using ammonium as electron donor 0 0 11419 GO:0019332 aerobic respiration, using nitrite as electron donor 0 0 11420 GO:0019333 denitrification pathway 0 0 11421 GO:0019334 p-cymene catabolism 0 0 11422 GO:0019335 3-methylquinoline catabolism 0 0 11423 GO:0019336 phenol catabolism 0 0 11424 GO:0019337 tetrachloroethylene catabolism 0 0 11425 GO:0019338 pentachlorophenol catabolism 0 0 11426 GO:0019339 parathion catabolism 0 0 11427 GO:0019340 dibenzofuran catabolism 0 0 11428 GO:0019341 dibenzo-p-dioxin catabolism 0 0 11429 GO:0019342 trypanothione biosynthesis 0 0 11430 GO:0019343 cysteine biosynthesis via cystathione 0 0 11431 GO:0019344 cysteine biosynthesis 0 0 11432 GO:0019345 cysteine biosynthesis via S-sulfo-L-cysteine 0 0 11433 GO:0019346 transsulfuration 0 0 11434 GO:0019347 GDP-alpha-D-mannosylchitobiosyldiphosphodolichol biosynthesis 0 0 11435 GO:0019348 dolichol metabolism 0 0 11436 GO:0019349 ribitol metabolism 0 0 11437 GO:0019350 teichoic acid biosynthesis 0 0 11438 GO:0019351 dethiobiotin biosynthesis 0 0 11439 GO:0019352 protoporphyrinogen IX biosynthesis from glycine 0 0 11440 GO:0019353 protoporphyrinogen IX biosynthesis from glutamate 0 0 11441 GO:0019354 siroheme biosynthesis 0 0 11442 GO:0019355 nicotinamide nucleotide biosynthesis from aspartate 0 0 11443 GO:0019356 nicotinate nucleotide biosynthesis from tryptophan 0 0 11444 GO:0019357 nicotinate nucleotide biosynthesis 0 0 11445 GO:0019358 nicotinate nucleotide salvage 0 0 11446 GO:0019359 nicotinamide nucleotide biosynthesis 0 0 11447 GO:0019360 nicotinamide nucleotide biosynthesis from niacinamide 0 0 11448 GO:0019361 2'-(5''-triphosphoribosyl)-3'-dephospho-CoA biosynthesis 0 0 11449 GO:0019362 pyridine nucleotide metabolism 0 0 11450 GO:0019363 pyridine nucleotide biosynthesis 0 0 11451 GO:0019364 pyridine nucleotide catabolism 0 0 11452 GO:0019365 pyridine nucleotide salvage 0 0 11453 GO:0019367 fatty acid elongation, saturated fatty acid 0 0 11454 GO:0019368 fatty acid elongation, unsaturated fatty acid 0 0 11455 GO:0019369 arachidonic acid metabolism 0 0 11456 GO:0019370 leukotriene biosynthesis 0 0 11457 GO:0019371 cyclooxygenase pathway 0 0 11458 GO:0019372 lipoxygenase pathway 0 0 11459 GO:0019373 epoxygenase P450 pathway 0 0 11460 GO:0019374 galactolipid metabolism 0 0 11461 GO:0019375 galactolipid biosynthesis 0 0 11462 GO:0019376 galactolipid catabolism 0 0 11463 GO:0019377 glycolipid catabolism 0 0 11464 GO:0019378 sulfate assimilation, phosphoadenylyl sulfate reduction by an oxidoreductase, acting on sulfur group of donors, NAD or NADP as acceptor 0 0 11465 GO:0019379 sulfate assimilation, phosphoadenylyl sulfate reduction by phosphoadenylyl-sulfate reductase (thioredoxin) 0 0 11466 GO:0019380 3-phenylpropionate catabolism 0 0 11467 GO:0019381 atrazine catabolism 0 0 11468 GO:0019382 carbon tetrachloride catabolism 0 0 11469 GO:0019383 (+)-camphor catabolism 0 0 11470 GO:0019384 caprolactam catabolism 0 0 11471 GO:0019385 methanogenesis, from acetate 0 0 11472 GO:0019386 methanogenesis, from carbon dioxide 0 0 11473 GO:0019387 methanogenesis, from methanol 0 0 11474 GO:0019388 galactose catabolism 0 0 11475 GO:0019389 glucuronoside metabolism 0 0 11476 GO:0019390 glucuronoside biosynthesis 0 0 11477 GO:0019391 glucuronoside catabolism 0 0 11478 GO:0019392 glucarate metabolism 0 0 11479 GO:0019393 glucarate biosynthesis 0 0 11480 GO:0019394 glucarate catabolism 0 0 11481 GO:0019395 fatty acid oxidation 0 0 11482 GO:0019396 gallate catabolism 0 0 11483 GO:0019397 gallate catabolism via 2-pyrone-4,6-dicarboxylate 0 0 11484 GO:0019398 gallate catabolism via 4-carboxy-2-hydroxhexa-2,3-dienedioate 0 0 11485 GO:0019399 cyclohexanol oxidation 0 0 11486 GO:0019400 alditol metabolism 0 0 11487 GO:0019401 alditol biosynthesis 0 0 11488 GO:0019402 galactitol metabolism 0 0 11489 GO:0019403 galactitol biosynthesis 0 0 11490 GO:0019404 galactitol catabolism 0 0 11491 GO:0019405 alditol catabolism 0 0 11492 GO:0019406 hexitol biosynthesis 0 0 11493 GO:0019407 hexitol catabolism 0 0 11494 GO:0019408 dolichol biosynthesis 0 0 11495 GO:0019409 aerobic respiration, using ammonium as electron donor 0 0 11496 GO:0019410 aerobic respiration, using carbon monoxide as electron donor 0 0 11497 GO:0019411 aerobic respiration, using ferrous ions as electron donor 0 0 11498 GO:0019412 aerobic respiration, using hydrogen as electron donor 0 0 11499 GO:0019413 acetate biosynthesis 0 0 11500 GO:0019414 aerobic respiration, using sulfur or sulfate as electron donor 0 0 11501 GO:0019415 acetate biosynthesis from carbon monoxide 0 0 11502 GO:0019416 polythionate oxidation 0 0 11503 GO:0019417 sulfur oxidation 0 0 11504 GO:0019418 sulfide oxidation 0 0 11505 GO:0019419 sulfate reduction 0 0 11506 GO:0019420 dissimilatory sulfate reduction 0 0 11507 GO:0019421 sulfate reduction, APS pathway 0 0 11508 GO:0019422 disproportionation of elemental sulfur 0 0 11509 GO:0019423 sulfur oxidation, ferric ion-dependent 0 0 11510 GO:0019424 sulfide oxidation, using siroheme sulfite reductase 0 0 11511 GO:0019425 sulfur oxidation, using siroheme sulfite reductase 0 0 11512 GO:0019426 bisulfite reduction 0 0 11513 GO:0019427 acetyl-CoA biosynthesis from acetate 0 0 11514 GO:0019428 allantoin biosynthesis 0 0 11515 GO:0019429 fluorene catabolism 0 0 11516 GO:0019430 removal of superoxide radicals 0 0 11517 GO:0019431 acetyl-CoA biosynthesis from ethanol 0 0 11518 GO:0019432 triacylglycerol biosynthesis 0 0 11519 GO:0019433 triacylglycerol catabolism 0 0 11520 GO:0019434 sophorosyloxydocosanoate metabolism 0 0 11521 GO:0019435 sophorosyloxydocosanoate biosynthesis 0 0 11522 GO:0019436 sophorosyloxydocosanoate catabolism 0 0 11523 GO:0019438 aromatic compound biosynthesis 0 0 11524 GO:0019439 aromatic compound catabolism 0 0 11525 GO:0019440 tryptophan catabolism to indole-3-acetate 0 0 11526 GO:0019441 tryptophan catabolism to kynurenine 0 0 11527 GO:0019442 tryptophan catabolism to acetyl-CoA 0 0 11528 GO:0019443 tryptophan catabolism, using tryptophanase (obsolete GO:0019443) 1 0 11529 GO:0019444 tryptophan catabolism to catechol 0 0 11530 GO:0019445 tyrosine catabolism to fumarate 0 0 11531 GO:0019446 tyrosine catabolism to phosphoenolpyruvate 0 0 11532 GO:0019447 D-cysteine catabolism 0 0 11533 GO:0019448 L-cysteine catabolism 0 0 11534 GO:0019449 L-cysteine catabolism to hypotaurine 0 0 11535 GO:0019450 L-cysteine catabolism to pyruvate 0 0 11536 GO:0019451 L-cysteine catabolism to pyruvate, using cysteine dioxygenase 0 0 11537 GO:0019452 L-cysteine catabolism to taurine 0 0 11538 GO:0019453 L-cysteine catabolism via cystine 0 0 11539 GO:0019454 L-cysteine catabolism via cystine, using glutathione-cystine transhydrogenase 0 0 11540 GO:0019455 L-cysteine catabolism via cystine, using cystine reductase 0 0 11541 GO:0019456 L-cysteine catabolism via cystine, using cysteine transaminase 0 0 11542 GO:0019457 methionine catabolism to succinyl-CoA 0 0 11543 GO:0019458 methionine catabolism via 2-oxobutanoate 0 0 11544 GO:0019459 glutamate deamidation 0 0 11545 GO:0019460 glutamate catabolism to fumarate 0 0 11546 GO:0019461 glutamate catabolism to fumarate, using glutamate synthase (NADPH) 0 0 11547 GO:0019462 glutamate catabolism to fumarate, using glutaminase 0 0 11548 GO:0019463 glycine catabolism to creatine 0 0 11549 GO:0019464 glycine decarboxylation via glycine cleavage system 0 0 11550 GO:0019465 aspartate transamidation 0 0 11551 GO:0019466 ornithine catabolism via proline 0 0 11552 GO:0019467 ornithine catabolism, by decarboxylation 0 0 11553 GO:0019468 nopaline catabolism 0 0 11554 GO:0019469 octopine catabolism 0 0 11555 GO:0019470 4-hydroxyproline catabolism 0 0 11556 GO:0019471 4-hydroxyproline metabolism 0 0 11557 GO:0019472 4-hydroxyproline biosynthesis 0 0 11558 GO:0019473 L-lysine catabolism to glutarate, by acetylation 0 0 11559 GO:0019474 L-lysine catabolism to acetyl-CoA 0 0 13850 GO:0031811 metabotropic nucleotide receptor binding 0 0 13851 GO:0031812 P2Y1 nucleotide receptor binding 0 0 13852 GO:0031813 P2Y2 nucleotide receptor binding 0 0 13853 GO:0031814 P2Y4 nucleotide receptor binding 0 0 13854 GO:0031815 P2Y5 nucleotide receptor binding 0 0 13855 GO:0031816 P2Y6 nucleotide receptor binding 0 0 13856 GO:0031817 P2Y8 nucleotide receptor binding 0 0 13857 GO:0031818 P2Y9 nucleotide receptor binding 0 0 13858 GO:0031819 P2Y10 nucleotide receptor binding 0 0 13859 GO:0031820 P2Y11 nucleotide receptor binding 0 0 13860 GO:0031821 metabotropic serotonin receptor binding 0 0 13861 GO:0031822 type 1B serotonin receptor binding 0 0 13862 GO:0031823 type 1D serotonin receptor binding 0 0 13863 GO:0031824 type 1E serotonin receptor binding 0 0 13864 GO:0031825 type 1F serotonin receptor binding 0 0 13865 GO:0031826 type 2A serotonin receptor binding 0 0 13866 GO:0031827 type 2B serotonin receptor binding 0 0 13867 GO:0031828 type 2C serotonin receptor binding 0 0 13868 GO:0031829 type 4 serotonin receptor binding 0 0 13869 GO:0031830 type 5A serotonin receptor binding 0 0 13870 GO:0031831 type 5B serotonin receptor binding 0 0 13871 GO:0031832 type 6 serotonin receptor binding 0 0 13872 GO:0031833 type 7 serotonin receptor binding 0 0 13873 GO:0031834 neurokinin receptor binding 0 0 13874 GO:0031835 substance P receptor binding 0 0 13875 GO:0031836 neuromedin K receptor binding 0 0 13876 GO:0031837 substance K receptor binding 0 0 13877 GO:0031838 haptoglobin-hemoglobin complex 0 0 13878 GO:0031839 type 1 neuromedin U receptor binding 0 0 13879 GO:0031840 type 2 neuromedin U receptor binding 0 0 13880 GO:0031841 neuropeptide Y receptor binding 0 0 13881 GO:0031842 type 1 neuropeptide Y receptor binding 0 0 13882 GO:0031843 type 2 neuropeptide Y receptor binding 0 0 13883 GO:0031844 type 4 neuropeptide Y receptor binding 0 0 13884 GO:0031845 type 5 neuropeptide Y receptor binding 0 0 13885 GO:0031846 neurotensin receptor binding 0 0 13886 GO:0031847 type 1 neurotensin receptor binding 0 0 13887 GO:0031848 protection from non-homologous end joining at telomere 0 0 13888 GO:0031849 olfactory receptor binding 0 0 13889 GO:0031850 delta-type opioid receptor binding 0 0 13890 GO:0031851 kappa-type opioid receptor binding 0 0 13891 GO:0031852 mu-type opioid receptor binding 0 0 13892 GO:0031853 nociceptin receptor binding 0 0 13893 GO:0031854 orexigenic neuropeptide QRFP receptor binding 0 0 13894 GO:0031855 oxytocin receptor binding 0 0 13895 GO:0031856 parathyroid hormone receptor binding 0 0 13896 GO:0031857 type 1 parathyroid hormone receptor binding 0 0 13897 GO:0031858 pituitary adenylate cyclase-activating peptide receptor binding 0 0 13898 GO:0031859 platelet activating factor receptor binding 0 0 13899 GO:0031860 telomeric 3' overhang formation 0 0 13900 GO:0031861 prolactin-releasing peptide receptor binding 0 0 13901 GO:0031862 prostanoid receptor binding 0 0 13902 GO:0031863 prostaglandin D2 receptor binding 0 0 13903 GO:0031864 EP1 subtype prostaglandin E2 receptor binding 0 0 13904 GO:0031865 EP2 subtype prostaglandin E2 receptor binding 0 0 13905 GO:0031866 EP3 subtype prostaglandin E2 receptor binding 0 0 13906 GO:0031867 EP4 subtype prostaglandin E2 receptor binding 0 0 13907 GO:0031868 prostaglandin F2-alpha receptor binding 0 0 13908 GO:0031869 prostacyclin receptor binding 0 0 13909 GO:0031870 thromboxane A2 receptor binding 0 0 13910 GO:0031871 proteinase activated receptor binding 0 0 13911 GO:0031872 type 1 proteinase activated receptor binding 0 0 13912 GO:0031873 type 2 proteinase activated receptor binding 0 0 13913 GO:0031874 type 3 proteinase activated receptor binding 0 0 13914 GO:0031875 type 4 proteinase activated receptor binding 0 0 13915 GO:0031876 secretin receptor binding 0 0 13916 GO:0031877 somatostatin receptor binding 0 0 13917 GO:0031878 type 1 somatostatin receptor binding 0 0 13918 GO:0031879 type 2 somatostatin receptor binding 0 0 13919 GO:0031880 type 3 somatostatin receptor binding 0 0 13920 GO:0031881 type 4 somatostatin receptor binding 0 0 13921 GO:0031882 type 5 somatostatin receptor binding 0 0 13922 GO:0031883 taste receptor binding 0 0 13923 GO:0031884 type 1 member 1 taste receptor binding 0 0 13924 GO:0031885 type 1 member 2 taste receptor binding 0 0 13925 GO:0031886 type 1 member 3 taste receptor binding 0 0 13926 GO:0031887 lipid particle transport along microtubule 0 0 13927 GO:0031889 urotensin receptor binding 0 0 13928 GO:0031890 vasoactive intestinal polypeptide receptor binding 0 0 13929 GO:0031891 type 1 vasoactive intestinal polypeptide receptor binding 0 0 13930 GO:0031892 type 2 vasoactive intestinal polypeptide receptor binding 0 0 13931 GO:0031893 vasopressin receptor binding 0 0 13932 GO:0031894 V1A vasopressin receptor binding 0 0 13933 GO:0031895 V1B vasopressin receptor binding 0 0 13934 GO:0031896 V2 vasopressin receptor binding 0 0 13935 GO:0031897 Tic complex 0 0 13936 GO:0031898 chromoplast envelope 0 0 13937 GO:0031899 chromoplast inner membrane 0 0 13938 GO:0031900 chromoplast outer membrane 0 0 13939 GO:0031901 early endosome membrane 0 0 13940 GO:0031902 late endosome membrane 0 0 13941 GO:0031903 microbody membrane 0 0 13942 GO:0031904 endosome lumen 0 0 13943 GO:0031905 early endosome lumen 0 0 13944 GO:0031906 late endosome lumen 0 0 13945 GO:0031907 microbody lumen 0 0 13946 GO:0031908 glyoxysomal lumen 0 0 13947 GO:0031909 peroxisomal lumen 0 0 13948 GO:0031910 cytostome 0 0 13949 GO:0031911 cytoproct 0 0 13950 GO:0031912 oral apparatus 0 0 13951 GO:0031913 contractile vacuole pore 0 0 13952 GO:0031914 negative regulation of synaptic plasticity 0 0 13953 GO:0031915 positive regulation of synaptic plasticity 0 0 13954 GO:0031916 regulation of synaptic metaplasticity 0 0 13955 GO:0031917 negative regulation of synaptic metaplasticity 0 0 13956 GO:0031918 positive regulation of synaptic metaplasticity 0 0 13957 GO:0031919 vitamin B6 transport 0 0 13958 GO:0031920 pyridoxal transport 0 0 13959 GO:0031921 pyridoxal phosphate transport 0 0 13960 GO:0031922 pyridoxamine transport 0 0 13961 GO:0031923 pyridoxine transport 0 0 13962 GO:0031924 vitamin B6 transporter activity 0 0 13963 GO:0031925 pyridoxal transporter activity 0 0 13964 GO:0031926 pyridoxal phosphate transporter activity 0 0 13965 GO:0031927 pyridoxamine transporter activity 0 0 13966 GO:0031928 pyridoxine transporter activity 0 0 13967 GO:0031929 TOR signaling pathway 0 0 13968 GO:0031930 mitochondrial signaling pathway 0 0 13969 GO:0031931 TORC 1 complex 0 0 13970 GO:0031932 TORC 2 complex 0 0 13971 GO:0031933 telomeric heterochromatin 0 0 13972 GO:0031934 mating-type region heterochromatin 0 0 13973 GO:0031935 regulation of chromatin silencing 0 0 13974 GO:0031936 negative regulation of chromatin silencing 0 0 13975 GO:0031937 positive regulation of chromatin silencing 0 0 13976 GO:0031938 regulation of chromatin silencing at telomere 0 0 13977 GO:0031939 negative regulation of chromatin silencing at telomere 0 0 13978 GO:0031940 positive regulation of chromatin silencing at telomere 0 0 13979 GO:0031941 filamentous actin 0 0 13980 GO:0031942 i-AAA complex 0 0 13981 GO:0031943 regulation of glucocorticoid metabolism 0 0 13982 GO:0031944 negative regulation of glucocorticoid metabolism 0 0 13983 GO:0031945 positive regulation of glucocorticoid metabolism 0 0 13984 GO:0031946 regulation of glucocorticoid biosynthesis 0 0 13985 GO:0031947 negative regulation of glucocorticoid biosynthesis 0 0 13986 GO:0031948 positive regulation of glucocorticoid biosynthesis 0 0 13987 GO:0031949 regulation of glucocorticoid catabolism 0 0 13988 GO:0031950 negative regulation of glucocorticoid catabolism 0 0 13989 GO:0031951 positive regulation of glucocorticoid catabolism 0 0 13990 GO:0031952 regulation of protein amino acid autophosphorylation 0 0 13991 GO:0031953 negative regulation of protein amino acid autophosphorylation 0 0 13992 GO:0031954 positive regulation of protein amino acid autophosphorylation 0 0 13993 GO:0031955 short-chain-fatty-acid-CoA ligase activity 0 0 13994 GO:0031956 medium-chain-fatty-acid-CoA ligase activity 0 0 13995 GO:0031957 very-long-chain-fatty-acid-CoA ligase activity 0 0 13996 GO:0031958 corticosteroid receptor signaling pathway 0 0 13997 GO:0031959 mineralocorticoid receptor signaling pathway 0 0 13998 GO:0031960 response to corticosteroid stimulus 0 0 13999 GO:0031961 cortisol receptor binding 0 0 14000 GO:0031962 mineralocorticoid receptor binding 0 0 14001 GO:0031963 cortisol receptor activity 0 0 14002 GO:0031964 beta-alanyl-histamine hydrolase activity 0 0 14003 GO:0031965 nuclear membrane 0 0 14004 GO:0031966 mitochondrial membrane 0 0 14005 GO:0031967 organelle envelope 0 0 14006 GO:0031968 organelle outer membrane 0 0 14007 GO:0031969 chloroplast membrane 0 0 14008 GO:0031970 organelle envelope lumen 0 0 14009 GO:0031972 chloroplast intermembrane space 0 0 14010 GO:0031973 chromoplast intermembrane space 0 0 14011 GO:0031974 membrane-enclosed lumen 0 0 14012 GO:0031975 envelope 0 0 14013 GO:0031976 plastid thylakoid 0 0 14014 GO:0031977 thylakoid lumen 0 0 14015 GO:0031978 plastid thylakoid lumen 0 0 14016 GO:0031979 thylakoid lumen (sensu Cyanobacteria) 0 0 14017 GO:0031980 mitochondrial lumen 0 0 14018 GO:0031981 nuclear lumen 0 0 14019 GO:0031982 vesicle 0 0 14020 GO:0031983 vesicle lumen 0 0 14021 GO:0031984 organelle subcompartment 0 0 14022 GO:0031985 Golgi cisterna 0 0 14023 GO:0031986 proteinoplast 0 0 14024 GO:0031987 locomotion during locomotory behavior 0 0 14025 GO:0031988 membrane-bound vesicle 0 0 14026 GO:0031989 bombesin receptor signaling pathway 0 0 14027 GO:0031990 mRNA export from nucleus during heat stress 0 0 14028 GO:0031991 regulation of contractile ring contraction during cytokinesis 0 0 14029 GO:0031992 energy transducer activity 0 0 14030 GO:0031993 light transducer activity 0 0 14031 GO:0031994 insulin-like growth factor I binding 0 0 14032 GO:0031995 insulin-like growth factor II binding 0 0 14033 GO:0031996 thioesterase binding 0 0 14034 GO:0031997 N-terminal myristoylation domain binding 0 0 14035 GO:0031998 regulation of fatty acid beta-oxidation 0 0 14036 GO:0031999 negative regulation of fatty acid beta-oxidation 0 0 14037 GO:0032000 positive regulation of fatty acid beta-oxidation 0 0 14038 GO:0032001 1,4-alpha-glucan 6-alpha-glucosyltransferase activity 0 0 14039 GO:0032002 interleukin-28 receptor complex 0 0 14040 GO:0032003 interleukin-28 receptor binding 0 0 14041 GO:0032005 signal transduction during conjugation with cellular fusion 0 0 14042 GO:0032006 regulation of TOR signaling pathway 0 0 14043 GO:0032007 negative regulation of TOR signaling pathway 0 0 14044 GO:0032008 positive regulation of TOR signaling pathway 0 0 14045 GO:0032009 early phagosome 0 0 14046 GO:0032010 phagolysosome 0 0 14047 GO:0032011 ARF protein signal transduction 0 0 14048 GO:0032012 regulation of ARF protein signal transduction 0 0 14049 GO:0032013 negative regulation of ARF protein signal transduction 0 0 14050 GO:0032014 positive regulation of ARF protein signal transduction 0 0 14051 GO:0032015 regulation of Ran protein signal transduction 0 0 14052 GO:0032016 negative regulation of Ran protein signal transduction 0 0 14053 GO:0032017 positive regulation of Ran protein signal transduction 0 0 14054 GO:0032018 2-methylbutanal reductase activity 0 0 14055 GO:0032019 mitochondrial cloud 0 0 14056 GO:0032020 ISG15-protein conjugation 0 0 14057 GO:0032021 NELF complex 0 0 14058 GO:0032022 pellicle formation 0 0 14059 GO:0032023 trypsinogen activation 0 0 14060 GO:0032024 positive regulation of insulin secretion 0 0 14061 GO:0032025 response to cobalt ion 0 0 14062 GO:0032026 response to magnesium ion 0 0 14063 GO:0032027 myosin light chain binding 0 0 14064 GO:0032028 myosin head/neck binding 0 0 14065 GO:0032029 myosin tail binding 0 0 14066 GO:0032030 myosin I light chain binding 0 0 14067 GO:0032031 myosin I head/neck binding 0 0 14068 GO:0032032 myosin I tail binding 0 0 14069 GO:0032033 myosin II light chain binding 0 0 14070 GO:0032034 myosin II head/neck binding 0 0 14071 GO:0032035 myosin II tail binding 0 0 14072 GO:0032036 myosin heavy chain binding 0 0 14073 GO:0032037 myosin I heavy chain binding 0 0 14074 GO:0032038 myosin II heavy chain binding 0 0 14075 GO:0032039 integrator complex 0 0 14076 GO:0032040 small subunit processome 0 0 14077 GO:0032041 NAD-dependent histone deacetylase activity (H3-K14 specific) 0 0 14078 GO:0032042 mitochondrial DNA metabolism 0 0 14079 GO:0032043 mitochondrial DNA catabolism 0 0 14080 GO:0032044 DSIF complex 0 0 14081 GO:0032045 guanyl-nucleotide exchange factor complex 0 0 14082 GO:0032046 micropexophagy-specific membrane apparatus 0 0 14083 GO:0032047 mitosome 0 0 14084 GO:0032048 cardiolipin metabolism 0 0 14085 GO:0032049 cardiolipin biosynthesis 0 0 14086 GO:0032050 clathrin heavy chain binding 0 0 14087 GO:0032051 clathrin light chain binding 0 0 14088 GO:0032052 bile acid binding 0 0 14089 GO:0032053 basal body organization and biogenesis 0 0 14090 GO:0032054 basal body duplication 0 0 14091 GO:0032055 negative regulation of translation in response to stress 0 0 14092 GO:0032056 positive regulation of translation in response to stress 0 0 14093 GO:0032057 negative regulation of translation initiation in response to stress 0 0 14094 GO:0032058 positive regulation of translation initiation in response to stress 0 0 14095 GO:0032059 bleb 0 0 14096 GO:0032060 bleb formation 0 0 14097 GO:0032061 negative regulation of translation in response to osmotic stress 0 0 14098 GO:0032062 positive regulation of translation in response to osmotic stress 0 0 14099 GO:0032063 negative regulation of translation initiation in response to osmotic stress 0 0 14100 GO:0032064 positive regulation of translation initiation in response to osmotic stress 0 0 14101 GO:0032065 cortical protein anchoring 0 0 14102 GO:0032066 nucleolus to nucleoplasm transport 0 0 14103 GO:0032067 Type IV site-specific deoxyribonuclease activity 0 0 14104 GO:0032068 Type IV site-specific deoxyribonuclease complex 0 0 14105 GO:0032069 regulation of nuclease activity 0 0 14106 GO:0032070 regulation of deoxyribonuclease activity 0 0 14107 GO:0032071 regulation of endodeoxyribonuclease activity 0 0 14108 GO:0032072 regulation of restriction endodeoxyribonuclease activity 0 0 14109 GO:0032073 negative regulation of restriction endodeoxyribonuclease activity 0 0 14110 GO:0032074 negative regulation of nuclease activity 0 0 14111 GO:0032075 positive regulation of nuclease activity 0 0 14112 GO:0032076 negative regulation of deoxyribonuclease activity 0 0 14113 GO:0032077 positive regulation of deoxyribonuclease activity 0 0 14114 GO:0032078 negative regulation of endodeoxyribonuclease activity 0 0 14115 GO:0032079 positive regulation of endodeoxyribonuclease activity 0 0 14116 GO:0032080 negative regulation of Type I restriction endodeoxyribonuclease activity 0 0 14117 GO:0032081 negative regulation of Type II restriction endodeoxyribonuclease activity 0 0 14118 GO:0032082 negative regulation of Type III restriction endodeoxyribonuclease activity 0 0 14119 GO:0032083 negative regulation of Type IV restriction endodeoxyribonuclease activity 0 0 14120 GO:0032084 regulation of Type I restriction endodeoxyribonuclease activity 0 0 14121 GO:0032085 regulation of Type II restriction endodeoxyribonuclease activity 0 0 14122 GO:0032086 regulation of Type III restriction endodeoxyribonuclease activity 0 0 14123 GO:0032087 regulation of Type IV restriction endodeoxyribonuclease activity 0 0 14124 GO:0032088 inhibition of NF-kappaB transcription factor 0 0 14125 GO:0032089 NACHT domain binding 0 0 14126 GO:0032090 Pyrin domain binding 0 0 14127 GO:0032091 negative regulation of protein binding 0 0 14128 GO:0032092 positive regulation of protein binding 0 0 14129 GO:0032093 SAM domain binding 0 0 14130 GO:0032094 response to food 0 0 14131 GO:0032095 regulation of response to food 0 0 14132 GO:0032096 negative regulation of response to food 0 0 14133 GO:0032097 positive regulation of response to food 0 0 14134 GO:0032098 regulation of appetite 0 0 14135 GO:0032099 negative regulation of appetite 0 0 14136 GO:0032100 positive regulation of appetite 0 0 14137 GO:0032101 regulation of response to external stimulus 0 0 14138 GO:0032102 negative regulation of response to external stimulus 0 0 14139 GO:0032103 positive regulation of response to external stimulus 0 0 14140 GO:0032104 regulation of response to extracellular stimulus 0 0 14141 GO:0032105 negative regulation of response to extracellular stimulus 0 0 14142 GO:0032106 positive regulation of response to extracellular stimulus 0 0 14143 GO:0032107 regulation of response to nutrient levels 0 0 14144 GO:0032108 negative regulation of response to nutrient levels 0 0 14145 GO:0032109 positive regulation of response to nutrient levels 0 0 14146 GO:0032110 regulation of protein histidine kinase activity 0 0 14147 GO:0032111 activation of protein histidine kinase activity 0 0 14148 GO:0032112 negative regulation of protein histidine kinase activity 0 0 14149 GO:0032113 regulation of carbohydrate phosphatase activity 0 0 14150 GO:0032114 regulation of glucose-6-phosphatase activity 0 0 14151 GO:0032115 sorbose reductase activity 0 0 14152 GO:0032116 cohesin loading complex 0 0 14153 GO:0032117 horsetail-astral microtubule array 0 0 14154 GO:0032118 horsetail-astral microtubule organization and biogenesis 0 0 14155 GO:0032119 sequestering of zinc ion 0 0 14156 GO:0032120 prospore membrane formation 0 0 14157 GO:0032121 attachment of telomeres to spindle pole body 0 0 14158 GO:0032153 cell division plane 0 0 14159 GO:0032154 cleavage furrow 0 0 14160 GO:0032155 cell division plane part 0 0 14161 GO:0035001 dorsal trunk growth 0 0 14162 GO:0035002 tracheal liquid clearance 0 0 14163 GO:0035003 subapical complex 0 0 14164 GO:0035004 phosphoinositide 3-kinase activity 0 0 14165 GO:0035005 phosphatidylinositol-4-phosphate 3-kinase activity 0 0 14166 GO:0035006 melanization defense response 0 0 14167 GO:0035007 regulation of melanization defense response 0 0 14168 GO:0035008 positive regulation of melanization defense response 0 0 14169 GO:0035009 negative regulation of melanization defense response 0 0 14170 GO:0035010 encapsulation of foreign target 0 0 14171 GO:0035011 melanotic encapsulation of foreign target 0 0 14172 GO:0035012 polytene chromosome, telomeric region 0 0 14173 GO:0035013 myosuppressin receptor activity 0 0 14174 GO:0035014 phosphoinositide 3-kinase regulator activity 0 0 14175 GO:0035015 elongation of arista core 0 0 14176 GO:0035016 elongation of arista lateral 0 0 14177 GO:0035017 cuticle pattern formation 0 0 14178 GO:0035018 adult cuticle pattern formation (sensu Insecta) 0 0 14179 GO:0035019 somatic stem cell maintenance 0 0 14180 GO:0035020 regulation of Rac protein signal transduction 0 0 14181 GO:0035021 negative regulation of Rac protein signal transduction 0 0 14182 GO:0035022 positive regulation of Rac protein signal transduction 0 0 14183 GO:0035023 regulation of Rho protein signal transduction 0 0 14184 GO:0035024 negative regulation of Rho protein signal transduction 0 0 14185 GO:0035025 positive regulation of Rho protein signal transduction 0 0 14186 GO:0035026 leading edge cell differentiation 0 0 14187 GO:0035027 leading edge cell fate commitment 0 0 14188 GO:0035028 leading edge cell fate determination 0 0 14189 GO:0035029 dorsal closure, leading edge cell fate commitment 0 0 14190 GO:0035030 phosphoinositide 3-kinase complex, class IA 0 0 14191 GO:0035031 phosphoinositide 3-kinase complex, class IB 0 0 14192 GO:0035032 phosphoinositide 3-kinase complex, class III 0 0 14193 GO:0035033 histone deacetylase regulator activity 0 0 14194 GO:0035034 histone acetyltransferase regulator activity 0 0 14195 GO:0035035 histone acetyltransferase binding 0 0 14196 GO:0035036 sperm-egg recognition 0 0 14197 GO:0035037 sperm entry 0 0 14198 GO:0035038 female pronucleus formation 0 0 14199 GO:0035039 male pronucleus formation 0 0 14200 GO:0035040 sperm nuclear envelope removal 0 0 14201 GO:0035041 sperm chromatin decondensation 0 0 14202 GO:0035042 fertilization, exchange of chromosomal proteins 0 0 14203 GO:0035043 male pronuclear envelope synthesis 0 0 14204 GO:0035044 sperm aster formation 0 0 14205 GO:0035045 sperm plasma membrane disassembly 0 0 14206 GO:0035046 pronuclear migration 0 0 14207 GO:0035047 centrosomal and pronuclear rotation 0 0 14208 GO:0035048 splicing factor protein import into nucleus 0 0 14209 GO:0035049 juvenile hormone acid methyltransferase activity 0 0 14210 GO:0035050 embryonic heart tube development 0 0 14211 GO:0035051 cardiac cell differentiation 0 0 14212 GO:0035052 aortic cell fate commitment (sensu Insecta) 0 0 14213 GO:0035053 heart proper cell fate commitment (sensu Insecta) 0 0 14214 GO:0035054 embryonic heart tube anterior/posterior pattern formation 0 0 14215 GO:0035055 regulation of nuclear mRNA splicing via U2-type spliceosome 0 0 14216 GO:0035056 negative regulation of nuclear mRNA splicing via U2-type spliceosome 0 0 14217 GO:0035057 positive regulation of nuclear mRNA splicing via U2-type spliceosome 0 0 14218 GO:0035058 sensory cilium biogenesis 0 0 14219 GO:0035059 RCAF complex 0 0 14220 GO:0035060 brahma complex 0 0 14221 GO:0035061 interchromatin granule 0 0 14222 GO:0035062 omega speckle 0 0 14223 GO:0035063 nuclear speck organization and biogenesis 0 0 14224 GO:0035064 methylated histone residue binding 0 0 14225 GO:0035065 regulation of histone acetylation 0 0 14226 GO:0035066 positive regulation of histone acetylation 0 0 14227 GO:0035067 negative regulation of histone acetylation 0 0 14228 GO:0035068 micro-ribonucleoprotein complex 0 0 14229 GO:0035069 larval midgut histolysis 0 0 14230 GO:0035070 salivary gland histolysis 0 0 14231 GO:0035071 salivary gland cell autophagic cell death 0 0 14232 GO:0035072 ecdysone-mediated induction of salivary gland cell autophagic cell death 0 0 14233 GO:0035073 pupariation 0 0 14234 GO:0035074 pupation 0 0 14235 GO:0035075 response to ecdysone 0 0 14236 GO:0035076 ecdysone receptor-mediated signaling pathway 0 0 14237 GO:0035077 ecdysone-mediated polytene chromosome puffing 0 0 14238 GO:0035078 induction of programmed cell death by ecdysone 0 0 14239 GO:0035079 polytene chromosome puffing 0 0 14240 GO:0035080 heat shock-mediated polytene chromosome puffing 0 0 14241 GO:0035081 induction of programmed cell death by hormones 0 0 14242 GO:0035082 axoneme biogenesis 0 0 14243 GO:0035083 cilium axoneme biogenesis 0 0 14244 GO:0035084 flagellum axoneme biogenesis 0 0 14245 GO:0035085 cilium axoneme 0 0 14246 GO:0035086 flagellar axoneme 0 0 14247 GO:0035087 RNA interference, siRNA loading onto RISC 0 0 14248 GO:0035088 establishment and/or maintenance of apical/basal cell polarity 0 0 14249 GO:0035089 establishment of apical/basal cell polarity 0 0 14250 GO:0035090 maintenance of apical/basal cell polarity 0 0 14251 GO:0035091 phosphoinositide binding 0 0 14252 GO:0035092 sperm chromatin condensation 0 0 14253 GO:0035093 spermatogenesis, exchange of chromosomal proteins 0 0 14254 GO:0035094 response to nicotine 0 0 14255 GO:0035095 behavioral response to nicotine 0 0 14256 GO:0035096 larval midgut cell programmed cell death 0 0 14257 GO:0035097 histone methyltransferase complex 0 0 14258 GO:0035098 ESC/E(Z) complex 0 0 14259 GO:0035099 hemocyte migration (sensu Arthropoda) 0 0 14260 GO:0035100 ecdysone binding 0 0 14261 GO:0035101 FACT complex 0 0 14262 GO:0035102 PRC1 complex 0 0 14263 GO:0035103 sterol regulatory element binding-protein cleavage 0 0 14264 GO:0035104 positive regulation of sterol regulatory element binding-protein target gene transcription 0 0 14265 GO:0035105 sterol regulatory element binding-protein nuclear translocation 0 0 14266 GO:0035106 operant conditioning 0 0 14267 GO:0035107 appendage morphogenesis 0 0 14268 GO:0035108 limb morphogenesis 0 0 14269 GO:0035109 limb morphogenesis (sensu Endopterygota) 0 0 14270 GO:0035110 leg morphogenesis 0 0 14271 GO:0035111 leg joint morphogenesis 0 0 14272 GO:0035112 genitalia morphogenesis 0 0 14273 GO:0035113 embryonic appendage morphogenesis 0 0 14274 GO:0035114 appendage morphogenesis (sensu Endopterygota) 0 0 14275 GO:0035115 embryonic forelimb morphogenesis 0 0 14276 GO:0035116 embryonic hindlimb morphogenesis 0 0 14277 GO:0035117 embryonic arm morphogenesis 0 0 14278 GO:0035118 embryonic pectoral fin morphogenesis 0 0 14279 GO:0035119 embryonic pelvic fin morphogenesis 0 0 14280 GO:0035120 post-embryonic appendage morphogenesis 0 0 14281 GO:0035121 tail morphogenesis 0 0 14282 GO:0035122 embryonic medial fin morphogenesis 0 0 14283 GO:0035123 embryonic dorsal fin morphogenesis 0 0 14284 GO:0035124 embryonic caudal fin morphogenesis 0 0 14285 GO:0035125 embryonic anal fin morphogenesis 0 0 14286 GO:0035126 post-embryonic genitalia morphogenesis 0 0 14287 GO:0035127 post-embryonic limb morphogenesis 0 0 14288 GO:0035128 post-embryonic forelimb morphogenesis 0 0 14289 GO:0035129 post-embryonic hindlimb morphogenesis 0 0 14290 GO:0035130 post-embryonic pectoral fin morphogenesis 0 0 14291 GO:0035131 post-embryonic pelvic fin morphogenesis 0 0 14292 GO:0035132 post-embryonic medial fin morphogenesis 0 0 14293 GO:0035133 post-embryonic caudal fin morphogenesis 0 0 14294 GO:0035134 post-embryonic dorsal fin morphogenesis 0 0 14295 GO:0035135 post-embryonic anal fin morphogenesis 0 0 14296 GO:0035136 forelimb morphogenesis 0 0 14297 GO:0035137 hindlimb morphogenesis 0 0 14298 GO:0035138 pectoral fin morphogenesis 0 0 14299 GO:0035139 pelvic fin morphogenesis 0 0 14300 GO:0035140 arm morphogenesis 0 0 14301 GO:0035141 medial fin morphogenesis 0 0 14302 GO:0035142 dorsal fin morphogenesis 0 0 14303 GO:0035143 caudal fin morphogenesis 0 0 14304 GO:0035144 anal fin morphogenesis 0 0 14305 GO:0035145 exon-exon junction complex 0 0 14306 GO:0035146 tube fusion 0 0 14307 GO:0035147 tracheal branch fusion 0 0 14308 GO:0035148 lumen formation 0 0 14309 GO:0035149 tracheal lumen formation 0 0 14310 GO:0035150 regulation of tube size 0 0 14311 GO:0035151 regulation of tracheal tube size 0 0 14312 GO:0035152 regulation of tracheal tube architecture 0 0 14313 GO:0035153 tracheal epithelial cell type specification 0 0 14314 GO:0035154 terminal cell fate specification 0 0 14315 GO:0035155 negative regulation of terminal cell fate specification 0 0 14316 GO:0035156 fusion cell fate specification 0 0 14317 GO:0035157 negative regulation of fusion cell fate specification 0 0 14318 GO:0035158 regulation of tracheal tube diameter 0 0 14319 GO:0035159 regulation of tracheal tube length 0 0 14320 GO:0035160 maintenance of tracheal epithelial integrity 0 0 14321 GO:0035161 imaginal disc lineage restriction 0 0 14322 GO:0035162 embryonic hemopoiesis 0 0 14323 GO:0035163 embryonic hemocyte differentiation (sensu Arthropoda) 0 0 14324 GO:0035164 embryonic plasmatocyte differentiation 0 0 14325 GO:0035165 embryonic crystal cell differentiation 0 0 14326 GO:0035166 post-embryonic hemopoiesis 0 0 14327 GO:0035167 lymph gland hemopoiesis (sensu Arthropoda) 0 0 14328 GO:0035168 lymph gland hemocyte differentiation (sensu Arthropoda) 0 0 14329 GO:0035169 lymph gland plasmatocyte differentiation 0 0 14330 GO:0035170 lymph gland crystal cell differentiation 0 0 14331 GO:0035171 lamellocyte differentiation 0 0 14332 GO:0035172 hemocyte proliferation (sensu Arthropoda) 0 0 14333 GO:0035173 histone kinase activity 0 0 14334 GO:0035174 histone serine kinase activity 0 0 14335 GO:0035175 histone serine kinase activity (H3-S10 specific) 0 0 14336 GO:0035176 social behavior 0 0 14337 GO:0035177 larval foraging behavior 0 0 14338 GO:0035178 turning behavior 0 0 14339 GO:0035179 larval turning behavior 0 0 14340 GO:0035180 larval wandering behavior 0 0 14341 GO:0035181 larval burrowing behavior 0 0 14342 GO:0035182 ring canal outer rim 0 0 14343 GO:0035183 ring canal inner rim 0 0 14344 GO:0035184 histone threonine kinase activity 0 0 14345 GO:0035185 preblastoderm mitotic cell cycle 0 0 14346 GO:0035186 syncytial blastoderm mitotic cell cycle 0 0 14347 GO:0035187 hatching behavior 0 0 14348 GO:0035188 hatching 0 0 14349 GO:0035189 Rb-E2F complex 0 0 14350 GO:0035190 syncytial nuclear migration 0 0 14351 GO:0035191 nuclear axial expansion 0 0 14352 GO:0035192 nuclear cortical migration 0 0 14353 GO:0035193 central nervous system remodeling (sensu Insecta) 0 0 14354 GO:0035194 RNA-mediated posttranscriptional gene silencing 0 0 14355 GO:0035195 miRNA-mediated gene silencing 0 0 14356 GO:0035196 miRNA-mediated gene silencing, production of miRNAs 0 0 14357 GO:0035197 siRNA binding 0 0 14358 GO:0035198 miRNA binding 0 0 14359 GO:0035199 salt aversion 0 0 14360 GO:0035200 leg disc anterior/posterior pattern formation 0 0 14361 GO:0035201 leg disc anterior/posterior lineage restriction 0 0 14362 GO:0035202 tracheal sac formation (sensu Insecta) 0 0 14363 GO:0035203 regulation of lamellocyte differentiation 0 0 14364 GO:0035204 negative regulation of lamellocyte differentiation 0 0 14365 GO:0035205 positive regulation of lamellocyte differentiation 0 0 14366 GO:0035206 regulation of hemocyte proliferation (sensu Arthropoda) 0 0 14367 GO:0035207 negative regulation of hemocyte proliferation (sensu Arthropoda) 0 0 14368 GO:0035208 positive regulation of hemocyte proliferation (sensu Arthropoda) 0 0 14369 GO:0035209 pupal development (sensu Insecta) 0 0 14370 GO:0035210 prepupal development (sensu Insecta) 0 0 14371 GO:0035211 spermathecum morphogenesis 0 0 14372 GO:0035212 cell competition (sensu Metazoa) 0 0 14373 GO:0035213 clypeo-labral disc development 0 0 14374 GO:0035214 eye-antennal disc development 0 0 14375 GO:0035215 genital disc development 0 0 14376 GO:0035216 haltere disc development 0 0 14377 GO:0035217 labial disc development 0 0 14378 GO:0035218 leg disc development 0 0 14379 GO:0035219 prothoracic disc development 0 0 14380 GO:0035220 wing disc development 0 0 14381 GO:0035221 genital disc pattern formation 0 0 14382 GO:0035222 wing disc pattern formation 0 0 14383 GO:0035223 leg disc pattern formation 0 0 14384 GO:0035224 genital disc anterior/posterior pattern formation 0 0 14385 GO:0035225 determination of genital disc primordium 0 0 14386 GO:0035226 glutamate-cysteine ligase catalytic subunit binding 0 0 14387 GO:0035227 regulation of glutamate-cysteine ligase activity 0 0 14388 GO:0035228 negative regulation of glutamate-cysteine ligase activity 0 0 14389 GO:0035229 positive regulation of glutamate-cysteine ligase activity 0 0 14390 GO:0035230 cytoneme 0 0 14391 GO:0035231 cytoneme biogenesis 0 0 14392 GO:0035232 germ cell attraction 0 0 14393 GO:0035233 germ cell repulsion 0 0 14394 GO:0035234 germ cell programmed cell death 0 0 14395 GO:0035235 ionotropic glutamate receptor signaling pathway 0 0 14396 GO:0035236 proctolin receptor activity 0 0 14397 GO:0035237 corazonin receptor activity 0 0 14398 GO:0035238 vitamin A biosynthesis 0 0 14399 GO:0035239 tube morphogenesis 0 0 14400 GO:0035240 dopamine binding 0 0 14401 GO:0035241 protein-arginine omega-N monomethyltransferase activity 0 0 14402 GO:0035242 protein-arginine omega-N asymmetric methyltransferase activity 0 0 14403 GO:0035243 protein-arginine omega-N symmetric methyltransferase activity 0 0 14404 GO:0035244 peptidyl-arginine C-methyltransferase activity 0 0 14405 GO:0035245 peptidyl-arginine C-methylation 0 0 14406 GO:0035246 peptidyl-arginine N-methylation 0 0 14407 GO:0035247 peptidyl-arginine omega-N-methylation 0 0 14408 GO:0035248 alpha-1,4-N-acetylgalactosaminyltransferase activity 0 0 14409 GO:0035249 synaptic transmission, glutamatergic 0 0 14410 GO:0035250 UDP-galactosyltransferase activity 0 0 14411 GO:0035251 UDP-glucosyltransferase activity 0 0 14412 GO:0035252 UDP-xylosyltransferase activity 0 0 14413 GO:0035253 ciliary rootlet 0 0 14414 GO:0035254 glutamate receptor binding 0 0 14415 GO:0035255 ionotropic glutamate receptor binding 0 0 14416 GO:0035256 metabotropic glutatmate receptor binding 0 0 14417 GO:0035257 nuclear hormone receptor binding 0 0 14418 GO:0035258 steroid hormone receptor binding 0 0 14419 GO:0035259 glucocorticoid receptor binding 0 0 14420 GO:0035260 internal genitalia morphogenesis 0 0 14421 GO:0035261 external genitalia morphogenesis 0 0 14422 GO:0035262 gonad morphogenesis 0 0 14423 GO:0035263 genital disc sexually dimorphic development 0 0 14424 GO:0035264 body growth 0 0 14425 GO:0035265 organ growth 0 0 14426 GO:0035266 meristem growth 0 0 14427 GO:0035267 TIP60 histone acetyltransferase complex 0 0 14428 GO:0035268 protein amino acid mannosylation 0 0 14429 GO:0035269 protein amino acid O-linked mannosylation 0 0 14430 GO:0035270 endocrine system development 0 0 14431 GO:0035271 ring gland development 0 0 14432 GO:0035272 exocrine system development 0 0 14433 GO:0035273 phthalate binding 0 0 14434 GO:0035274 diphenyl phthalate binding 0 0 14435 GO:0035275 dibutyl phthalate binding 0 0 14436 GO:0035276 ethanol binding 0 0 14437 GO:0035277 spiracle morphogenesis 0 0 14438 GO:0035278 miRNA-mediated gene silencing, negative regulation of translation 0 0 14439 GO:0035279 miRNA-mediated gene silencing, mRNA cleavage 0 0 14440 GO:0035280 miRNA-mediated gene silencing, miRNA loading onto RISC 0 0 14441 GO:0035281 pre-microRNA export from nucleus 0 0 14442 GO:0035282 segmentation 0 0 14443 GO:0035283 central nervous system segmentation 0 0 14444 GO:0035284 brain segmentation 0 0 14445 GO:0035285 appendage segmentation 0 0 14446 GO:0035286 leg segmentation 0 0 14447 GO:0035287 head segmentation 0 0 14448 GO:0035288 anterior head segmentation 0 0 14449 GO:0035289 posterior head segmentation 0 0 14450 GO:0035290 trunk segmentation 0 0 14451 GO:0035291 specification of segmental identity, intercalary segment 0 0 14452 GO:0035292 specification of segmental identity, trunk 0 0 14453 GO:0035293 larval cuticle pattern formation (sensu Insecta) 0 0 14454 GO:0035294 determination of wing disc primordium 0 0 14455 GO:0035295 tube development 0 0 14456 GO:0035296 regulation of tube diameter 0 0 14457 GO:0035297 regulation of Malpighian tubule diameter 0 0 14458 GO:0035298 regulation of Malpighian tubule size 0 0 14459 GO:0035299 inositol pentakisphosphate 2-kinase activity 0 0 14460 GO:0035300 inositol trisphosphate 5/6-kinase activity 0 0 14461 GO:0035301 Hedgehog signaling complex 0 0 14462 GO:0035302 ecdysteroid 25-hydroxylase activity 0 0 14463 GO:0035303 regulation of dephosphorylation 0 0 14464 GO:0035304 regulation of protein amino acid dephosphorylation 0 0 14465 GO:0035305 negative regulation of dephosphorylation 0 0 14466 GO:0035306 positive regulation of dephosphorylation 0 0 14467 GO:0035307 positive regulation of protein amino acid dephosphorylation 0 0 14468 GO:0035308 negative regulation of protein amino acid dephosphorylation 0 0 14469 GO:0035309 wing and notum subfield formation 0 0 14470 GO:0035310 notum cell fate specification 0 0 14471 GO:0035311 wing cell fate specification 0 0 14472 GO:0035312 5'-3' exodeoxyribonuclease activity 0 0 14473 GO:0035313 wound healing, spreading of epidermal cells 0 0 14474 GO:0035314 scab formation 0 0 14475 GO:0035315 hair cell differentiation 0 0 14476 GO:0035316 trichome organization and biogenesis (sensu Insecta) 0 0 14477 GO:0035317 wing hair organization and biogenesis 0 0 14478 GO:0035318 wing hair outgrowth 0 0 14479 GO:0035319 wing hair elongation 0 0 14480 GO:0035320 wing hair site selection 0 0 14481 GO:0035321 maintenance of wing hair orientation 0 0 14482 GO:0040001 establishment of mitotic spindle localization 0 0 14483 GO:0040002 cuticle biosynthesis (sensu Nematoda) 0 0 14484 GO:0040003 cuticle biosynthesis (sensu Insecta) 0 0 14485 GO:0040004 cuticular attachment to epithelium (sensu Nematoda) 0 0 14486 GO:0040005 cuticular attachment to epithelium (sensu Insecta) 0 0 14487 GO:0040006 cuticular attachment to epithelium (sensu Protostomia and Nematoda) 0 0 14488 GO:0040007 growth 0 0 14489 GO:0040008 regulation of growth 0 0 14490 GO:0040009 regulation of growth rate 0 0 14491 GO:0040010 positive regulation of growth rate 0 0 14492 GO:0040011 locomotion 0 0 14493 GO:0040012 regulation of locomotion 0 0 14494 GO:0040013 negative regulation of locomotion 0 0 14495 GO:0040014 regulation of body size 0 0 14496 GO:0040015 negative regulation of body size 0 0 14497 GO:0040016 embryonic cleavage 0 0 14498 GO:0040017 positive regulation of locomotion 0 0 14499 GO:0040018 positive regulation of body size 0 0 14500 GO:0040019 positive regulation of embryonic development 0 0 14501 GO:0040020 regulation of meiosis 0 0 14502 GO:0040021 hermaphrodite germ-line sex determination 0 0 14503 GO:0040022 feminization of hermaphroditic germ-line (sensu Nematoda) 0 0 14504 GO:0040023 establishment of nucleus localization 0 0 14505 GO:0040024 dauer larval development 0 0 14506 GO:0040025 vulval development (sensu Nematoda) 0 0 14507 GO:0040026 positive regulation of vulval development (sensu Nematoda) 0 0 14508 GO:0040027 negative regulation of vulval development (sensu Nematoda) 0 0 14509 GO:0040028 regulation of vulval development (sensu Nematoda) 0 0 14510 GO:0040029 regulation of gene expression, epigenetic 0 0 14511 GO:0040030 regulation of protein activity, epigenetic 0 0 14512 GO:0040031 snRNA modification 0 0 14513 GO:0040032 post-embryonic body morphogenesis 0 0 14514 GO:0040033 negative regulation of mRNA translation, snRNA-mediated 0 0 14515 GO:0040034 regulation of development, heterochronic 0 0 14516 GO:0040035 hermaphrodite genitalia development 0 0 14517 GO:0040036 regulation of fibroblast growth factor receptor signaling pathway 0 0 14518 GO:0040037 negative regulation of fibroblast growth factor receptor signaling pathway 0 0 14519 GO:0040038 polar body extrusion after meiotic divisions 0 0 14520 GO:0040039 inductive cell migration 0 0 14521 GO:0040040 thermosensory behavior 0 0 14522 GO:0042000 translocation of peptides or proteins into host 0 0 14523 GO:0042001 hermaphrodite somatic sex determination 0 0 14524 GO:0042002 hermaphrodite somatic sex determination (sensu Nematoda) 0 0 14525 GO:0042003 masculinization of hermaphrodite soma (sensu Nematoda) 0 0 14526 GO:0042004 feminization of hermaphrodite soma (sensu Nematoda) 0 0 14527 GO:0042005 hermaphrodite germ-line sex determination (sensu Nematoda) 0 0 14528 GO:0042006 masculinization of hermaphroditic germ-line (sensu Nematoda) 0 0 14529 GO:0042007 interleukin-18 binding 0 0 14530 GO:0042008 interleukin-18 receptor activity 0 0 14531 GO:0042009 interleukin-15 binding 0 0 14532 GO:0042010 interleukin-15 receptor activity 0 0 14533 GO:0042011 interleukin-16 binding 0 0 14534 GO:0042012 interleukin-16 receptor activity 0 0 14535 GO:0042013 interleukin-19 binding 0 0 14536 GO:0042014 interleukin-19 receptor activity 0 0 14537 GO:0042015 interleukin-20 binding 0 0 14538 GO:0042016 interleukin-20 receptor activity 0 0 14539 GO:0042017 interleukin-22 binding 0 0 14540 GO:0042018 interleukin-22 receptor activity 0 0 14541 GO:0042019 interleukin-23 binding 0 0 14542 GO:0042020 interleukin-23 receptor activity 0 0 14543 GO:0042021 granulocyte macrophage colony-stimulating factor complex binding 0 0 14544 GO:0042022 interleukin-12 receptor complex 0 0 14545 GO:0042023 DNA endoreduplication 0 0 14546 GO:0042024 DNA endoreduplication initiation 0 0 14547 GO:0042025 host cell nucleus 0 0 14548 GO:0042026 protein refolding 0 0 14549 GO:0042027 cyclophilin-type peptidyl-prolyl cis-trans isomerase activity (obsolete GO:0042027) 1 0 14550 GO:0042028 juglone-sensitive peptidyl-prolyl cis-trans isomerase activity 0 0 14551 GO:0042029 fibrolase activity 0 0 14552 GO:0042030 ATPase inhibitor activity 0 0 14553 GO:0042031 angiotensin-converting enzyme inhibitor activity 0 0 14554 GO:0042033 chemokine biosynthesis 0 0 14555 GO:0042034 peptidyl-lysine esterification 0 0 14556 GO:0042035 regulation of cytokine biosynthesis 0 0 14557 GO:0042036 negative regulation of cytokine biosynthesis 0 0 14558 GO:0042037 peptidyl-histidine methylation, to form pros-methylhistidine 0 0 14559 GO:0042038 peptidyl-histidine methylation, to form tele-methylhistidine 0 0 14560 GO:0042039 vanadium incorporation into metallo-sulfur cluster 0 0 14561 GO:0042040 metal incorporation into metallo-molybdopterin complex 0 0 14562 GO:0042042 tungsten incorporation into tungsten-molybdopterin complex 0 0 14563 GO:0042043 neurexin binding 0 0 14564 GO:0042044 fluid transport 0 0 14565 GO:0042045 epithelial fluid transport 0 0 14566 GO:0042046 W-molybdopterin cofactor metabolism 0 0 14567 GO:0042047 W-molybdopterin cofactor biosynthesis 0 0 14568 GO:0042048 olfactory behavior 0 0 14569 GO:0042049 cell acyl-CoA homeostasis 0 0 14570 GO:0042051 eye photoreceptor development (sensu Endopterygota) 0 0 14571 GO:0042052 rhabdomere development 0 0 14572 GO:0042053 regulation of dopamine metabolism 0 0 14573 GO:0042054 histone methyltransferase activity 0 0 14574 GO:0042055 neuron lineage restriction 0 0 14575 GO:0042056 chemoattractant activity 0 0 14576 GO:0042057 transforming growth factor beta receptor anchoring activity (obsolete GO:0042057) 1 0 14577 GO:0042058 regulation of epidermal growth factor receptor signaling pathway 0 0 14578 GO:0042059 negative regulation of epidermal growth factor receptor signaling pathway 0 0 14579 GO:0042060 wound healing 0 0 14580 GO:0042062 long-term strengthening of neuromuscular junction 0 0 14581 GO:0042063 gliogenesis 0 0 14582 GO:0042064 cell adhesion receptor regulator activity (obsolete GO:0042064) 1 0 14583 GO:0042065 glial growth 0 0 14584 GO:0042066 perineurial glial growth 0 0 14585 GO:0042067 establishment of ommatidial polarity (sensu Endopterygota) 0 0 14586 GO:0042068 regulation of pteridine metabolism 0 0 14587 GO:0042069 regulation of catecholamine metabolism 0 0 14588 GO:0042070 maintenance of oocyte nucleus localization during oocyte axis determination 0 0 14589 GO:0042071 leucokinin receptor activity 0 0 14590 GO:0042072 cell adhesion receptor inhibitor activity (obsolete GO:0042072) 1 0 14591 GO:0042073 intraflagellar transport 0 0 14592 GO:0042074 cell migration during gastrulation 0 0 14593 GO:0042075 nickel incorporation into nickel-iron-sulfur cluster via pentakis-L-cysteinyl L-histidino nickel tetrairon pentasulfide 0 0 14594 GO:0042076 protein amino acid phosphate-linked glycosylation 0 0 14595 GO:0042077 protein amino acid phosphate-linked glycosylation via serine 0 0 14596 GO:0042078 germ-line stem cell division 0 0 14597 GO:0042079 GPI/GSI anchor metabolism (obsolete GO:0042079) 1 0 14598 GO:0042080 GPI/GSI anchor biosynthesis (obsolete GO:0042080) 1 0 14599 GO:0042081 GSI anchor metabolism 0 0 14600 GO:0042082 GSI anchor biosynthesis 0 0 14601 GO:0042083 5,10-methylenetetrahydrofolate-dependent methyltransferase activity 0 0 14602 GO:0042084 5-methyltetrahydrofolate-dependent methyltransferase activity 0 0 14603 GO:0042085 5-methyltetrahydropteroyltri-L-glutamate-dependent methyltransferase activity 0 0 14604 GO:0042086 5-methyl-5,6,7,8-tetrahydromethanopterin-dependent methyltransferase activity 0 0 14605 GO:0042087 cell-mediated immune response 0 0 14606 GO:0042088 T-helper 1 type immune response 0 0 14607 GO:0042089 cytokine biosynthesis 0 0 14608 GO:0042090 interleukin-12 biosynthesis 0 0 14609 GO:0042091 interleukin-10 biosynthesis 0 0 14610 GO:0042092 T-helper 2 type immune response 0 0 14611 GO:0042093 T-helper cell differentiation 0 0 14612 GO:0042094 interleukin-2 biosynthesis 0 0 14613 GO:0042095 interferon-gamma biosynthesis 0 0 14614 GO:0042096 alpha-beta T cell receptor activity (obsolete GO:0042096) 1 0 14615 GO:0042097 interleukin-4 biosynthesis 0 0 14616 GO:0042098 T cell proliferation 0 0 14617 GO:0042099 gamma-delta T cell receptor activity (obsolete GO:0042099) 1 0 14618 GO:0042100 B cell proliferation 0 0 14619 GO:0042101 T cell receptor complex 0 0 14620 GO:0042102 positive regulation of T cell proliferation 0 0 14621 GO:0042103 positive regulation of T cell homeostatic proliferation 0 0 14622 GO:0042104 positive regulation of activated T cell proliferation 0 0 14623 GO:0042105 alpha-beta T cell receptor complex 0 0 14624 GO:0042106 gamma-delta T cell receptor complex 0 0 14625 GO:0042107 cytokine metabolism 0 0 14626 GO:0042108 positive regulation of cytokine biosynthesis 0 0 14627 GO:0042109 tumor necrosis factor-beta biosynthesis 0 0 14628 GO:0042110 T cell activation 0 0 14629 GO:0042113 B cell activation 0 0 14630 GO:0042116 macrophage activation 0 0 14631 GO:0042117 monocyte activation 0 0 14632 GO:0042118 endothelial cell activation 0 0 14633 GO:0042119 neutrophil activation 0 0 14634 GO:0042120 alginic acid metabolism 0 0 14635 GO:0042121 alginic acid biosynthesis 0 0 14636 GO:0042122 alginic acid catabolism 0 0 14637 GO:0042123 glucanosyltransferase activity 0 0 14638 GO:0042124 1,3-beta-glucanosyltransferase activity 0 0 14639 GO:0042125 protein amino acid galactosylation 0 0 14640 GO:0042126 nitrate metabolism 0 0 14641 GO:0042127 regulation of cell proliferation 0 0 14642 GO:0042128 nitrate assimilation 0 0 14643 GO:0042129 regulation of T cell proliferation 0 0 14644 GO:0042130 negative regulation of T cell proliferation 0 0 14645 GO:0042131 thiamin phosphate phosphatase activity 0 0 14646 GO:0042132 fructose-bisphosphatase activity 0 0 14647 GO:0042133 neurotransmitter metabolism 0 0 14648 GO:0042134 rRNA primary transcript binding 0 0 14649 GO:0042135 neurotransmitter catabolism 0 0 14650 GO:0042136 neurotransmitter biosynthesis 0 0 14651 GO:0042137 sequestering of neurotransmitter 0 0 14652 GO:0042138 meiotic DNA double-strand break formation 0 0 14653 GO:0042139 early meiotic recombination nodule assembly 0 0 14654 GO:0042140 late meiotic recombination nodule assembly 0 0 14655 GO:0042141 mating pheromone exporter (obsolete GO:0042141) 1 0 14656 GO:0042142 heavy metal chelation (obsolete GO:0042142) 1 0 14657 GO:0042144 vacuole fusion, non-autophagic 0 0 14658 GO:0042147 retrograde transport, endosome to Golgi 0 0 14659 GO:0042148 strand invasion 0 0 14660 GO:0042149 cellular response to glucose starvation 0 0 14661 GO:0042150 plasmid recombination 0 0 17295 GO:0046026 precorrin-4 C11-methyltransferase activity 0 0 17296 GO:0046027 phospholipid:diacylglycerol acyltransferase activity 0 0 17297 GO:0046028 electron transporter, transferring electrons from cytochrome b6/f complex of photosystem II activity 0 0 17298 GO:0046029 mannitol dehydrogenase activity 0 0 17299 GO:0046030 inositol trisphosphate phosphatase activity 0 0 17300 GO:0046031 ADP metabolism 0 0 17301 GO:0046032 ADP catabolism 0 0 17302 GO:0046033 AMP metabolism 0 0 17303 GO:0046034 ATP metabolism 0 0 17304 GO:0046035 CMP metabolism 0 0 17305 GO:0046036 CTP metabolism 0 0 17306 GO:0046037 GMP metabolism 0 0 17307 GO:0046038 GMP catabolism 0 0 17308 GO:0046039 GTP metabolism 0 0 17309 GO:0046040 IMP metabolism 0 0 17310 GO:0046041 ITP metabolism 0 0 17311 GO:0046042 ITP biosynthesis 0 0 17312 GO:0046043 TDP metabolism 0 0 17313 GO:0046044 TMP metabolism 0 0 17314 GO:0046045 TMP catabolism 0 0 17315 GO:0046046 TTP metabolism 0 0 17316 GO:0046047 TTP catabolism 0 0 17317 GO:0046048 UDP metabolism 0 0 17318 GO:0046049 UMP metabolism 0 0 17319 GO:0046050 UMP catabolism 0 0 17320 GO:0046051 UTP metabolism 0 0 17321 GO:0046052 UTP catabolism 0 0 17322 GO:0046053 dAMP metabolism 0 0 17323 GO:0046054 dGMP metabolism 0 0 17324 GO:0046055 dGMP catabolism 0 0 17325 GO:0046056 dADP metabolism 0 0 17326 GO:0046057 dADP catabolism 0 0 17327 GO:0046058 cAMP metabolism 0 0 17328 GO:0046059 dAMP catabolism 0 0 17329 GO:0046060 dATP metabolism 0 0 17330 GO:0046061 dATP catabolism 0 0 17331 GO:0046062 dCDP metabolism 0 0 17332 GO:0046063 dCMP metabolism 0 0 17333 GO:0046064 dCMP biosynthesis 0 0 17334 GO:0046065 dCTP metabolism 0 0 17335 GO:0046066 dGDP metabolism 0 0 17336 GO:0046067 dGDP catabolism 0 0 17337 GO:0046068 cGMP metabolism 0 0 17338 GO:0046069 cGMP catabolism 0 0 17339 GO:0046070 dGTP metabolism 0 0 17340 GO:0046071 dGTP biosynthesis 0 0 17341 GO:0046072 dTDP metabolism 0 0 17342 GO:0046073 dTMP metabolism 0 0 17343 GO:0046074 dTMP catabolism 0 0 17344 GO:0046075 dTTP metabolism 0 0 17345 GO:0046076 dTTP catabolism 0 0 17346 GO:0046077 dUDP metabolism 0 0 17347 GO:0046078 dUMP metabolism 0 0 17348 GO:0046079 dUMP catabolism 0 0 17349 GO:0046080 dUTP metabolism 0 0 17350 GO:0046081 dUTP catabolism 0 0 17351 GO:0046082 5-methylcytosine biosynthesis 0 0 17352 GO:0046083 adenine metabolism 0 0 17353 GO:0046084 adenine biosynthesis 0 0 17354 GO:0046085 adenosine metabolism 0 0 17355 GO:0046086 adenosine biosynthesis 0 0 17356 GO:0046087 cytidine metabolism 0 0 17357 GO:0046088 cytidine biosynthesis 0 0 17358 GO:0046089 cytosine biosynthesis 0 0 17359 GO:0046090 deoxyadenosine metabolism 0 0 17360 GO:0046091 deoxyadenosine biosynthesis 0 0 17361 GO:0046092 deoxycytidine metabolism 0 0 17362 GO:0046093 deoxycytidine biosynthesis 0 0 17363 GO:0046094 deoxyinosine metabolism 0 0 17364 GO:0046095 deoxyinosine biosynthesis 0 0 17365 GO:0046096 deoxyuridine metabolism 0 0 17366 GO:0046097 deoxyuridine biosynthesis 0 0 17367 GO:0046098 guanine metabolism 0 0 17368 GO:0046099 guanine biosynthesis 0 0 17369 GO:0046100 hypoxanthine metabolism 0 0 17370 GO:0046101 hypoxanthine biosynthesis 0 0 17371 GO:0046102 inosine metabolism 0 0 17372 GO:0046103 inosine biosynthesis 0 0 17373 GO:0046104 thymidine metabolism 0 0 17374 GO:0046105 thymidine biosynthesis 0 0 17375 GO:0046106 thymine biosynthesis 0 0 17376 GO:0046107 uracil biosynthesis 0 0 17377 GO:0046108 uridine metabolism 0 0 17378 GO:0046109 uridine biosynthesis 0 0 17379 GO:0046110 xanthine metabolism 0 0 17380 GO:0046111 xanthine biosynthesis 0 0 17381 GO:0046112 nucleobase biosynthesis 0 0 17382 GO:0046113 nucleobase catabolism 0 0 17383 GO:0046114 guanosine biosynthesis 0 0 17384 GO:0046115 guanosine catabolism 0 0 17385 GO:0046116 queuosine metabolism 0 0 17386 GO:0046117 queuosine catabolism 0 0 17387 GO:0046118 7-methylguanosine biosynthesis 0 0 17388 GO:0046119 7-methylguanosine catabolism 0 0 17389 GO:0046120 deoxyribonucleoside biosynthesis 0 0 17390 GO:0046121 deoxyribonucleoside catabolism 0 0 17391 GO:0046122 purine deoxyribonucleoside metabolism 0 0 17392 GO:0046123 purine deoxyribonucleoside biosynthesis 0 0 17393 GO:0046124 purine deoxyribonucleoside catabolism 0 0 17394 GO:0046125 pyrimidine deoxyribonucleoside metabolism 0 0 17395 GO:0046126 pyrimidine deoxyribonucleoside biosynthesis 0 0 17396 GO:0046127 pyrimidine deoxyribonucleoside catabolism 0 0 17397 GO:0046128 purine ribonucleoside metabolism 0 0 17398 GO:0046129 purine ribonucleoside biosynthesis 0 0 17399 GO:0046130 purine ribonucleoside catabolism 0 0 17400 GO:0046131 pyrimidine ribonucleoside metabolism 0 0 17401 GO:0046132 pyrimidine ribonucleoside biosynthesis 0 0 17402 GO:0046133 pyrimidine ribonucleoside catabolism 0 0 17403 GO:0046134 pyrimidine nucleoside biosynthesis 0 0 17404 GO:0046135 pyrimidine nucleoside catabolism 0 0 17405 GO:0046136 positive regulation of vitamin metabolism 0 0 17406 GO:0046137 negative regulation of vitamin metabolism 0 0 17407 GO:0046138 coenzyme and prosthetic group biosynthesis (obsolete GO:0046138) 1 0 17408 GO:0046139 coenzyme and prosthetic group catabolism (obsolete GO:0046139) 1 0 17409 GO:0046140 corrin biosynthesis 0 0 17410 GO:0046141 corrin catabolism 0 0 17411 GO:0046142 negative regulation of coenzyme and prosthetic group metabolism (obsolete GO:0046142) 1 0 17412 GO:0046143 positive regulation of coenzyme and prosthetic group metabolism (obsolete GO:0046143) 1 0 17413 GO:0046144 D-alanine family amino acid metabolism 0 0 17414 GO:0046145 D-alanine family amino acid biosynthesis 0 0 17415 GO:0046146 tetrahydrobiopterin metabolism 0 0 17416 GO:0046147 tetrahydrobiopterin catabolism 0 0 17417 GO:0046148 pigment biosynthesis 0 0 17418 GO:0046149 pigment catabolism 0 0 17419 GO:0046150 melanin catabolism 0 0 17420 GO:0046151 eye pigment catabolism 0 0 17421 GO:0046152 ommochrome metabolism 0 0 17422 GO:0046153 ommochrome catabolism 0 0 17423 GO:0046154 rhodopsin metabolism 0 0 17424 GO:0046155 rhodopsin catabolism 0 0 17425 GO:0046156 siroheme metabolism 0 0 17426 GO:0046157 siroheme catabolism 0 0 17427 GO:0046158 ocellus pigment metabolism 0 0 17428 GO:0046159 ocellus pigment catabolism 0 0 17429 GO:0046160 heme a metabolism 0 0 17430 GO:0046161 heme a catabolism 0 0 17431 GO:0046162 heme c metabolism 0 0 17432 GO:0046163 heme c catabolism 0 0 17433 GO:0046164 alcohol catabolism 0 0 17434 GO:0046165 alcohol biosynthesis 0 0 17435 GO:0046166 glyceraldehyde-3-phosphate biosynthesis 0 0 17436 GO:0046167 glycerol-3-phosphate biosynthesis 0 0 17437 GO:0046168 glycerol-3-phosphate catabolism 0 0 17438 GO:0046169 methanol biosynthesis 0 0 17439 GO:0046170 methanol catabolism 0 0 17440 GO:0046171 octanol biosynthesis 0 0 17441 GO:0046172 octanol catabolism 0 0 17442 GO:0046173 polyol biosynthesis 0 0 17443 GO:0046174 polyol catabolism 0 0 17444 GO:0046175 aldonic acid biosynthesis 0 0 17445 GO:0046176 aldonic acid catabolism 0 0 17446 GO:0046177 D-gluconate catabolism 0 0 17447 GO:0046178 D-gluconate biosynthesis 0 0 17448 GO:0046179 D-dehydro-D-gluconate biosynthesis 0 0 17449 GO:0046180 ketogluconate biosynthesis 0 0 17450 GO:0046181 ketogluconate catabolism 0 0 17451 GO:0046182 L-idonate biosynthesis 0 0 17452 GO:0046183 L-idonate catabolism 0 0 17453 GO:0046184 aldehyde biosynthesis 0 0 17454 GO:0046185 aldehyde catabolism 0 0 17455 GO:0046186 acetaldehyde biosynthesis 0 0 17456 GO:0046187 acetaldehyde catabolism 0 0 17457 GO:0046188 methane catabolism 0 0 17458 GO:0046189 phenol biosynthesis 0 0 17459 GO:0046190 aerobic phenol biosynthesis 0 0 17460 GO:0046191 aerobic phenol catabolism 0 0 17461 GO:0046192 anaerobic phenol biosynthesis 0 0 17462 GO:0046193 anaerobic phenol catabolism 0 0 17463 GO:0046194 pentachlorophenol biosynthesis (obsolete GO:0046194) 1 0 17464 GO:0046195 4-nitrophenol biosynthesis (obsolete GO:0046195) 1 0 17465 GO:0046196 4-nitrophenol catabolism 0 0 17466 GO:0046197 orcinol biosynthesis 0 0 17467 GO:0046198 cresol biosynthesis (obsolete GO:0046198) 1 0 17468 GO:0046199 cresol catabolism 0 0 17469 GO:0046200 m-cresol biosynthesis (obsolete GO:0046200) 1 0 17470 GO:0046201 cyanate biosynthesis 0 0 17471 GO:0046202 cyanide biosynthesis 0 0 17472 GO:0046203 spermidine catabolism 0 0 17473 GO:0046204 nor-spermidine metabolism 0 0 17474 GO:0046205 nor-spermidine catabolism 0 0 17475 GO:0046206 trypanothione metabolism 0 0 17476 GO:0046207 trypanothione catabolism 0 0 17477 GO:0046208 spermine catabolism 0 0 17478 GO:0046209 nitric oxide metabolism 0 0 17479 GO:0046210 nitric oxide catabolism 0 0 17480 GO:0046211 (+)-camphor biosynthesis 0 0 17481 GO:0046212 methyl ethyl ketone biosynthesis (obsolete GO:0046212) 1 0 17482 GO:0046213 methyl ethyl ketone catabolism 0 0 17483 GO:0046214 enterobactin catabolism 0 0 17484 GO:0046215 siderochrome catabolism 0 0 17485 GO:0046216 indole phytoalexin catabolism 0 0 17486 GO:0046217 indole phytoalexin metabolism 0 0 17487 GO:0046218 indolalkylamine catabolism 0 0 17488 GO:0046219 indolalkylamine biosynthesis 0 0 17489 GO:0046220 pyridine biosynthesis 0 0 17490 GO:0046221 pyridine catabolism 0 0 17491 GO:0046222 aflatoxin metabolism 0 0 17492 GO:0046223 aflatoxin catabolism 0 0 17493 GO:0046224 bacteriocin metabolism 0 0 17494 GO:0046225 bacteriocin catabolism 0 0 17495 GO:0046226 coumarin catabolism 0 0 17496 GO:0046227 2,4,5-trichlorophenoxyacetic acid biosynthesis (obsolete GO:0046227) 1 0 17497 GO:0046228 2,4,5-trichlorophenoxyacetic acid catabolism 0 0 17498 GO:0046229 2-aminobenzenesulfonate biosynthesis (obsolete GO:0046229) 1 0 17499 GO:0046230 2-aminobenzenesulfonate catabolism 0 0 17500 GO:0046231 carbazole biosynthesis (obsolete GO:0046231) 1 0 17501 GO:0046232 carbazole catabolism 0 0 17502 GO:0046233 3-hydroxyphenylacetate biosynthesis (obsolete GO:0046233) 1 0 17503 GO:0046234 fluorene biosynthesis (obsolete GO:0046234) 1 0 17504 GO:0046235 gallate biosynthesis 0 0 17505 GO:0046236 mandelate biosynthesis 0 0 17506 GO:0046237 phenanthrene biosynthesis (obsolete GO:0046237) 1 0 17507 GO:0046238 phthalate biosynthesis (obsolete GO:0046238) 1 0 17508 GO:0046239 phthalate catabolism 0 0 17509 GO:0046240 xylene biosynthesis (obsolete GO:0046240) 1 0 17510 GO:0046241 m-xylene biosynthesis (obsolete GO:0046241) 1 0 17511 GO:0046242 o-xylene biosynthesis (obsolete GO:0046242) 1 0 17512 GO:0046243 p-xylene biosynthesis (obsolete GO:0046243) 1 0 17513 GO:0046244 salicylic acid catabolism 0 0 17514 GO:0046245 styrene biosynthesis (obsolete GO:0046245) 1 0 17515 GO:0046246 terpene biosynthesis 0 0 17516 GO:0046247 terpene catabolism 0 0 17517 GO:0046248 alpha-pinene biosynthesis 0 0 17518 GO:0046249 alpha-pinene catabolism 0 0 17519 GO:0046250 limonene biosynthesis 0 0 17520 GO:0046251 limonene catabolism 0 0 17521 GO:0046252 toluene biosynthesis (obsolete GO:0046252) 1 0 17522 GO:0046253 anaerobic toluene biosynthesis (obsolete GO:0046253) 1 0 17523 GO:0046254 anaerobic toluene catabolism 0 0 17524 GO:0046255 2,4,6-trinitrotoluene biosynthesis (obsolete GO:0046255) 1 0 17525 GO:0046256 2,4,6-trinitrotoluene catabolism 0 0 17526 GO:0046257 anaerobic 2,4,6-trinitrotoluene biosynthesis (obsolete GO:0046257) 1 0 17527 GO:0046258 anaerobic 2,4,6-trinitrotoluene catabolism 0 0 17528 GO:0046259 trinitrotoluene biosynthesis (obsolete GO:0046259) 1 0 17529 GO:0046260 trinitrotoluene catabolism 0 0 17530 GO:0046261 4-nitrotoluene biosynthesis (obsolete GO:0046261) 1 0 17531 GO:0046262 nitrotoluene biosynthesis (obsolete GO:0046262) 1 0 17532 GO:0046263 nitrotoluene catabolism 0 0 17533 GO:0046264 thiocyanate biosynthesis (obsolete GO:0046264) 1 0 17534 GO:0046265 thiocyanate catabolism 0 0 17535 GO:0046266 triethanolamine biosynthesis (obsolete GO:0046266) 1 0 17536 GO:0046267 triethanolamine catabolism 0 0 17537 GO:0046268 toluene-4-sulfonate biosynthesis (obsolete GO:0046268) 1 0 17538 GO:0046269 toluene-4-sulfonate catabolism 0 0 17539 GO:0046270 4-toluenecarboxylate biosynthesis (obsolete GO:0046270) 1 0 17540 GO:0046271 phenylpropanoid catabolism 0 0 17541 GO:0046272 stilbene catabolism 0 0 17542 GO:0046273 lignan catabolism 0 0 17543 GO:0046274 lignin catabolism 0 0 17544 GO:0046275 flavonoid catabolism 0 0 17545 GO:0046276 methylgallate catabolism 0 0 17546 GO:0046277 methylgallate biosynthesis 0 0 17547 GO:0046278 protocatechuate metabolism 0 0 17548 GO:0046279 protocatechuate biosynthesis 0 0 17549 GO:0046280 chalcone catabolism 0 0 17550 GO:0046281 cinnamic acid catabolism 0 0 17551 GO:0046282 cinnamic acid ester catabolism 0 0 17552 GO:0046283 anthocyanin metabolism 0 0 17553 GO:0046284 anthocyanin catabolism 0 0 17554 GO:0046285 flavonoid phytoalexin metabolism 0 0 17555 GO:0046286 flavonoid phytoalexin catabolism 0 0 17556 GO:0046287 isoflavonoid metabolism 0 0 17557 GO:0046288 isoflavonoid catabolism 0 0 17558 GO:0046289 isoflavonoid phytoalexin metabolism 0 0 17559 GO:0046290 isoflavonoid phytoalexin catabolism 0 0 17560 GO:0046291 6-hydroxycineole biosynthesis (obsolete GO:0046291) 1 0 17561 GO:0046292 formaldehyde metabolism 0 0 17562 GO:0046293 formaldehyde biosynthesis 0 0 17563 GO:0046294 formaldehyde catabolism 0 0 17564 GO:0046295 glycolate biosynthesis 0 0 17565 GO:0046296 glycolate catabolism 0 0 17566 GO:0046297 2,4-dichlorobenzoate biosynthesis (obsolete GO:0046297) 1 0 17567 GO:0046298 2,4-dichlorobenzoate catabolism 0 0 17568 GO:0046299 2,4-dichlorophenoxyacetic acid biosynthesis (obsolete GO:0046299) 1 0 17569 GO:0046300 2,4-dichlorophenoxyacetic acid catabolism 0 0 17570 GO:0046301 2-chloro-N-isopropylacetanilide biosynthesis (obsolete GO:0046301) 1 0 17571 GO:0046302 2-chloro-N-isopropylacetanilide catabolism 0 0 17572 GO:0046303 2-nitropropane biosynthesis (obsolete GO:0046303) 1 0 17573 GO:0046304 2-nitropropane catabolism 0 0 17574 GO:0046305 alkanesulfonate biosynthesis 0 0 17575 GO:0046306 alkanesulfonate catabolism 0 0 17576 GO:0046307 Z-phenylacetaldoxime biosynthesis 0 0 17577 GO:0046308 Z-phenylacetaldoxime catabolism 0 0 17578 GO:0046309 1,3-dichloro-2-propanol biosynthesis 0 0 17579 GO:0046310 1,3-dichloro-2-propanol catabolism 0 0 17580 GO:0046311 prenylcysteine biosynthesis 0 0 17581 GO:0046312 phosphoarginine biosynthesis 0 0 17582 GO:0046313 phosphoarginine catabolism 0 0 17583 GO:0046314 phosphocreatine biosynthesis 0 0 17584 GO:0046315 phosphocreatine catabolism 0 0 17585 GO:0046316 gluconokinase activity 0 0 17586 GO:0046317 regulation of glucosylceramide biosynthesis 0 0 17587 GO:0046318 negative regulation of glucosylceramide biosynthesis 0 0 17588 GO:0046319 positive regulation of glucosylceramide biosynthesis 0 0 17589 GO:0046320 regulation of fatty acid oxidation 0 0 17590 GO:0046321 positive regulation of fatty acid oxidation 0 0 17591 GO:0046322 negative regulation of fatty acid oxidation 0 0 17592 GO:0046323 glucose import 0 0 17593 GO:0046324 regulation of glucose import 0 0 17594 GO:0046325 negative regulation of glucose import 0 0 17595 GO:0046326 positive regulation of glucose import 0 0 17596 GO:0046327 glycerol biosynthesis from pyruvate 0 0 17597 GO:0046328 regulation of JNK cascade 0 0 17598 GO:0046329 negative regulation of JNK cascade 0 0 17599 GO:0046330 positive regulation of JNK cascade 0 0 17600 GO:0046331 lateral inhibition 0 0 17601 GO:0046332 SMAD binding 0 0 17602 GO:0046333 octopamine metabolism 0 0 17603 GO:0046334 octopamine catabolism 0 0 17604 GO:0046335 ethanolamine biosynthesis 0 0 17605 GO:0046336 ethanolamine catabolism 0 0 17606 GO:0046337 phosphatidylethanolamine metabolism 0 0 17607 GO:0046338 phosphatidylethanolamine catabolism 0 0 17608 GO:0046339 diacylglycerol metabolism 0 0 17609 GO:0046340 diacylglycerol catabolism 0 0 17610 GO:0046341 CDP-diacylglycerol metabolism 0 0 17611 GO:0046342 CDP-diacylglycerol catabolism 0 0 17612 GO:0046343 streptomycin metabolism 0 0 17613 GO:0046344 ecdysteroid catabolism 0 0 17614 GO:0046345 abscisic acid catabolism 0 0 17615 GO:0046346 mannosamine catabolism 0 0 17616 GO:0046347 mannosamine biosynthesis 0 0 17617 GO:0046348 amino sugar catabolism 0 0 17618 GO:0046349 amino sugar biosynthesis 0 0 17619 GO:0046350 galactosaminoglycan metabolism 0 0 17620 GO:0046351 disaccharide biosynthesis 0 0 17621 GO:0046352 disaccharide catabolism 0 0 17622 GO:0046353 aminoglycoside N3'-acetyltransferase activity 0 0 17623 GO:0046354 mannan biosynthesis 0 0 17624 GO:0046355 mannan catabolism 0 0 17625 GO:0046356 acetyl-CoA catabolism 0 0 17626 GO:0046357 galactarate biosynthesis 0 0 17627 GO:0046358 butyrate biosynthesis 0 0 17628 GO:0046359 butyrate catabolism 0 0 17629 GO:0046360 2-oxobutyrate biosynthesis 0 0 17630 GO:0046361 2-oxobutyrate metabolism 0 0 17631 GO:0046362 ribitol biosynthesis 0 0 17632 GO:0046363 ribitol catabolism 0 0 17633 GO:0046364 monosaccharide biosynthesis 0 0 17634 GO:0046365 monosaccharide catabolism 0 0 17635 GO:0046366 allose biosynthesis 0 0 17636 GO:0046367 allose catabolism 0 0 17637 GO:0046368 GDP-L-fucose metabolism 0 0 17638 GO:0046369 galactose biosynthesis 0 0 17639 GO:0046370 fructose biosynthesis 0 0 17640 GO:0046371 dTDP-mannose metabolism 0 0 17641 GO:0046372 D-arabinose metabolism 0 0 17642 GO:0046373 L-arabinose metabolism 0 0 17643 GO:0046374 teichoic acid metabolism 0 0 17644 GO:0046375 K antigen metabolism 0 0 17645 GO:0046376 GDP-alpha-D-mannosylchitobiosyldiphosphodolichol metabolism 0 0 17646 GO:0046377 colanic acid metabolism 0 0 17647 GO:0046378 enterobacterial common antigen metabolism 0 0 17648 GO:0046379 extracellular polysaccharide metabolism 0 0 17649 GO:0046380 N-acetylneuraminate biosynthesis 0 0 17650 GO:0046381 CMP-N-acetylneuraminate metabolism 0 0 17651 GO:0046382 GDP-D-rhamnose metabolism 0 0 17652 GO:0046383 dTDP-rhamnose metabolism 0 0 17653 GO:0046384 2-deoxyribose 1-phosphate metabolism 0 0 17654 GO:0046385 deoxyribose phosphate biosynthesis 0 0 17655 GO:0046386 deoxyribose phosphate catabolism 0 0 17656 GO:0046387 deoxyribose 1,5-bisphosphate metabolism 0 0 17657 GO:0046388 deoxyribose 1-phosphate metabolism 0 0 17658 GO:0046389 deoxyribose 5-phosphate metabolism 0 0 17659 GO:0046390 ribose phosphate biosynthesis 0 0 17660 GO:0046391 5-phosphoribose 1-diphosphate metabolism 0 0 17661 GO:0046392 galactarate catabolism 0 0 17662 GO:0046393 D-galactarate metabolism 0 0 17663 GO:0046394 carboxylic acid biosynthesis 0 0 17664 GO:0046395 carboxylic acid catabolism 0 0 17665 GO:0046396 D-galacturonate metabolism 0 0 17666 GO:0046397 galacturonate catabolism 0 0 17667 GO:0046398 UDP-glucuronate metabolism 0 0 17668 GO:0046399 glucuronate biosynthesis 0 0 17669 GO:0046400 ketodeoxyoctanoate metabolism 0 0 17670 GO:0046401 lipopolysaccharide core region metabolism 0 0 17671 GO:0046402 O antigen metabolism 0 0 17672 GO:0046403 polynucleotide 3'-phosphatase activity 0 0 17673 GO:0046404 ATP-dependent polydeoxyribonucleotide 5'-hydroxyl-kinase activity 0 0 17674 GO:0046405 glycerol dehydratase activity 0 0 17675 GO:0046406 magnesium protoporphyrin IX methyltransferase activity 0 0 17676 GO:0046407 chlorophyll a oxygenase activity 0 0 17677 GO:0046408 chlorophyll synthetase activity 0 0 17678 GO:0046409 p-coumarate 3-hydroxylase activity 0 0 17679 GO:0046410 2-succinyl-6-hydroxy-2,4-cyclohexadiene-1-carboxylate synthase activity 0 0 17680 GO:0046411 2-keto-3-deoxygluconate transport 0 0 17681 GO:0046412 phenylmercury acetate metabolism 0 0 17682 GO:0046413 organomercury catabolism 0 0 17683 GO:0046414 organomercury biosynthesis 0 0 17684 GO:0046415 urate metabolism 0 0 17685 GO:0046416 D-amino acid metabolism 0 0 17686 GO:0046417 chorismate metabolism 0 0 17687 GO:0046418 nopaline metabolism 0 0 17688 GO:0046419 octopine metabolism 0 0 17689 GO:0046421 methylisocitrate lyase activity 0 0 17690 GO:0046422 violaxanthin de-epoxidase activity 0 0 17691 GO:0046423 allene-oxide cyclase activity 0 0 17692 GO:0046424 ferulate 5-hydroxylase activity 0 0 17693 GO:0046425 regulation of JAK-STAT cascade 0 0 17694 GO:0046426 negative regulation of JAK-STAT cascade 0 0 17695 GO:0046427 positive regulation of JAK-STAT cascade 0 0 17696 GO:0046428 1,4-dihydroxy-2-naphthoate octaprenyltransferase activity 0 0 17697 GO:0046429 4-hydroxy-3-methylbut-2-en-1-yl diphosphate synthase activity 0 0 17698 GO:0046430 non-phosphorylated glucose metabolism 0 0 17699 GO:0046431 (R)-4-hydroxymandelate metabolism 0 0 17700 GO:0046432 2'-(5''-triphosphoribosyl)-3'-dephospho-CoA metabolism 0 0 17701 GO:0046433 2-aminoethylphosphonate metabolism 0 0 17702 GO:0046434 organophosphate catabolism 0 0 17703 GO:0046435 3-(3-hydroxy)phenylpropionate metabolism 0 0 17704 GO:0046436 D-alanine metabolism 0 0 17705 GO:0046437 D-amino acid biosynthesis 0 0 17706 GO:0046438 D-cysteine metabolism 0 0 17707 GO:0046439 L-cysteine metabolism 0 0 17708 GO:0046440 L-lysine metabolism 0 0 17709 GO:0046441 D-lysine metabolism 0 0 17710 GO:0046442 aerobactin metabolism 0 0 17711 GO:0046443 FAD metabolism 0 0 17712 GO:0046444 FMN metabolism 0 0 17713 GO:0046445 benzyl isoquinoline alkaloid metabolism 0 0 17714 GO:0046446 purine alkaloid metabolism 0 0 17715 GO:0046447 terpenoid indole alkaloid metabolism 0 0 17716 GO:0046448 tropane alkaloid metabolism 0 0 17717 GO:0046449 creatinine metabolism 0 0 17718 GO:0046450 dethiobiotin metabolism 0 0 17719 GO:0046451 diaminopimelate metabolism 0 0 17720 GO:0046452 dihydrofolate metabolism 0 0 17721 GO:0046453 dipyrrin metabolism 0 0 17722 GO:0046454 dimethylsilanediol metabolism 0 0 17723 GO:0046455 organosilicon catabolism 0 0 17724 GO:0046456 icosanoid biosynthesis 0 0 17725 GO:0046457 prostanoid biosynthesis 0 0 17726 GO:0046458 hexadecanal metabolism 0 0 17727 GO:0046459 short-chain fatty acid metabolism 0 0 17728 GO:0046460 neutral lipid biosynthesis 0 0 17729 GO:0046461 neutral lipid catabolism 0 0 17730 GO:0046462 monoacylglycerol metabolism 0 0 17731 GO:0046463 acylglycerol biosynthesis 0 0 17732 GO:0046464 acylglycerol catabolism 0 0 17733 GO:0046465 dolichyl diphosphate metabolism 0 0 17734 GO:0046466 membrane lipid catabolism 0 0 17735 GO:0046467 membrane lipid biosynthesis 0 0 17736 GO:0046468 phosphatidyl-N-monomethylethanolamine metabolism 0 0 17737 GO:0046469 platelet activating factor metabolism 0 0 17738 GO:0046470 phosphatidylcholine metabolism 0 0 17739 GO:0046471 phosphatidylglycerol metabolism 0 0 17740 GO:0046473 phosphatidic acid metabolism 0 0 17741 GO:0046474 glycerophospholipid biosynthesis 0 0 17742 GO:0046475 glycerophospholipid catabolism 0 0 17743 GO:0046476 glycosylceramide biosynthesis 0 0 17744 GO:0046477 glycosylceramide catabolism 0 0 17745 GO:0046478 lactosylceramide metabolism 0 0 17746 GO:0046479 glycosphingolipid catabolism 0 0 17747 GO:0046480 galactolipid galactosyltransferase activity 0 0 17748 GO:0046481 UDP-galactose:MGDG galactosyltransferase activity 0 0 17749 GO:0046482 para-aminobenzoic acid metabolism 0 0 17750 GO:0046483 heterocycle metabolism 0 0 17751 GO:0046484 oxazole or thiazole metabolism 0 0 17752 GO:0046485 ether lipid metabolism 0 0 17753 GO:0046486 glycerolipid metabolism 0 0 17754 GO:0046487 glyoxylate metabolism 0 0 17755 GO:0046488 phosphatidylinositol metabolism 0 0 17756 GO:0046489 phosphoinositide biosynthesis 0 0 17757 GO:0046490 isopentenyl diphosphate metabolism 0 0 17758 GO:0046491 L-methylmalonyl-CoA metabolism 0 0 17759 GO:0046492 heme b metabolism 0 0 17760 GO:0046493 lipid A metabolism 0 0 17761 GO:0046494 rhizobactin 1021 metabolism 0 0 17762 GO:0046495 nicotinamide riboside metabolism 0 0 17763 GO:0046496 nicotinamide nucleotide metabolism 0 0 17764 GO:0046497 nicotinate nucleotide metabolism 0 0 17765 GO:0046498 S-adenosylhomocysteine metabolism 0 0 17766 GO:0046499 S-adenosylmethioninamine metabolism 0 0 17767 GO:0046500 S-adenosylmethionine metabolism 0 0 17768 GO:0046501 protoporphyrinogen IX metabolism 0 0 17769 GO:0046502 uroporphyrinogen III metabolism 0 0 17770 GO:0046503 glycerolipid catabolism 0 0 17771 GO:0046504 glycerol ether biosynthesis 0 0 17772 GO:0046505 sulfolipid metabolism 0 0 17773 GO:0046506 sulfolipid biosynthesis 0 0 17774 GO:0046507 UDPsulfoquinovose synthase activity 0 0 17775 GO:0046508 hydrolase activity, acting on carbon-sulfur bonds 0 0 17776 GO:0046509 1,2-diacylglycerol 3-beta-galactosyltransferase activity 0 0 17777 GO:0046510 UDP-sulfoquinovose:DAG sulfoquinovosyltransferase activity 0 0 17778 GO:0046511 sphinganine biosynthesis 0 0 17779 GO:0046512 sphingosine biosynthesis 0 0 17780 GO:0046513 ceramide biosynthesis 0 0 17781 GO:0046514 ceramide catabolism 0 0 17782 GO:0046515 hypusine biosynthesis 0 0 17783 GO:0046516 hypusine metabolism 0 0 17784 GO:0046517 octamethylcyclotetrasiloxane catabolism 0 0 17785 GO:0046518 octamethylcyclotetrasiloxane metabolism 0 0 17786 GO:0046519 sphingoid metabolism 0 0 17787 GO:0046520 sphingoid biosynthesis 0 0 17788 GO:0046521 sphingoid catabolism 0 0 17789 GO:0046522 S-methyl-5-thioribose kinase activity 0 0 17790 GO:0046523 S-methyl-5-thioribose-1-phosphate isomerase activity 0 0 17791 GO:0046524 sucrose-phosphate synthase activity 0 0 17792 GO:0046525 xylosylprotein 4-beta-galactosyltransferase activity 0 0 17793 GO:0046526 D-xylulose reductase activity 0 0 17794 GO:0046527 glucosyltransferase activity 0 0 17795 GO:0046528 imaginal disc fusion 0 0 17796 GO:0046529 imaginal disc fusion, thorax closure 0 0 17797 GO:0046530 photoreceptor cell differentiation 0 0 17798 GO:0046532 regulation of photoreceptor cell differentiation 0 0 17799 GO:0046533 negative regulation of photoreceptor cell differentiation 0 0 17800 GO:0046534 positive regulation of photoreceptor cell differentiation 0 0 17801 GO:0046535 detection of chemical stimulus during sensory perception of umami taste 0 0 17802 GO:0046536 dosage compensation complex 0 0 17803 GO:0046537 2,3-bisphosphoglycerate-independent phosphoglycerate mutase activity 0 0 17804 GO:0046538 2,3-bisphosphoglycerate-dependent phosphoglycerate mutase activity 0 0 17805 GO:0046539 histamine N-methyltransferase activity 0 0 17806 GO:0046540 U4/U6 x U5 tri-snRNP complex 0 0 17807 GO:0046541 saliva secretion 0 0 17808 GO:0046542 alpha-factor export (obsolete GO:0046542) 1 0 17809 GO:0046543 development of secondary female sexual characteristics 0 0 17810 GO:0046544 development of secondary male sexual characteristics 0 0 17811 GO:0046545 development of primary female sexual characteristics 0 0 17812 GO:0046546 development of primary male sexual characteristics 0 0 17813 GO:0046547 trans-aconitate 3-methyltransferase activity 0 0 17814 GO:0046548 retinal rod cell development 0 0 17815 GO:0046549 retinal cone cell development 0 0 17816 GO:0046550 (3-aminopropyl)(L-aspartyl-1-amino)phosphoryl-5'-adenosine biosynthesis from asparagine 0 0 17817 GO:0046551 retinal cone cell fate commitment 0 0 17818 GO:0046552 photoreceptor cell fate commitment 0 0 17819 GO:0046553 D-malate dehydrogenase (decarboxylating) activity 0 0 17820 GO:0046554 malate dehydrogenase (NADP+) activity 0 0 17821 GO:0046555 acetylxylan esterase activity 0 0 17822 GO:0046556 alpha-N-arabinofuranosidase activity 0 0 17823 GO:0046557 glucan endo-1,6-beta-glucosidase activity 0 0 17824 GO:0046558 arabinan endo-1,5-alpha-L-arabinosidase activity 0 0 17825 GO:0046559 alpha-glucuronidase activity 0 0 17826 GO:0046560 scytalidopepsin B activity 0 0 17827 GO:0046561 penicillopepsin activity 0 0 17828 GO:0046562 glucose oxidase activity 0 0 17829 GO:0046563 methanol oxidase activity 0 0 17830 GO:0046564 oxalate decarboxylase activity 0 0 17831 GO:0046565 3-dehydroshikimate dehydratase activity 0 0 17832 GO:0046566 DOPA dioxygenase activity 0 0 17833 GO:0046567 aphidicolan-16 beta-ol synthase activity 0 0 17834 GO:0046568 3-methylbutanal reductase activity 0 0 17835 GO:0046569 glyoxal oxidase activity 0 0 17836 GO:0046570 5-methylthioribulose-1-phosphate 4-dehydratase activity 0 0 17837 GO:0046571 aspartate-2-keto-4-methylthiobutyrate transaminase activity 0 0 17838 GO:0046572 versicolorin B synthase activity 0 0 17839 GO:0046573 lactonohydrolase activity 0 0 17840 GO:0046574 glycuronidase activity 0 0 17841 GO:0046575 rhamnogalacturonan acetylesterase activity 0 0 17842 GO:0046576 rhamnogalacturonase B activity 0 0 17843 GO:0046577 long-chain-alcohol oxidase activity 0 0 17844 GO:0046578 regulation of Ras protein signal transduction 0 0 17845 GO:0046579 positive regulation of Ras protein signal transduction 0 0 17846 GO:0046580 negative regulation of Ras protein signal transduction 0 0 17847 GO:0046581 intercellular canaliculus 0 0 17848 GO:0046582 Rap GTPase activator activity 0 0 17849 GO:0046583 cation efflux permease activity 0 0 17850 GO:0046584 enniatin metabolism 0 0 17851 GO:0046585 enniatin biosynthesis 0 0 17852 GO:0046586 regulation of calcium-dependent cell-cell adhesion 0 0 17853 GO:0046587 positive regulation of calcium-dependent cell-cell adhesion 0 0 17854 GO:0046588 negative regulation of calcium-dependent cell-cell adhesion 0 0 17855 GO:0046589 ribonuclease T1 activity 0 0 17856 GO:0046590 embryonic leg morphogenesis 0 0 17857 GO:0046591 embryonic leg joint morphogenesis 0 0 17858 GO:0046592 polyamine oxidase activity 0 0 17859 GO:0046593 mandelonitrile lyase activity 0 0 17860 GO:0046594 maintenance of pole plasm mRNA localization 0 0 17861 GO:0046595 establishment of pole plasm mRNA localization 0 0 17862 GO:0046596 regulation of virion penetration into host 0 0 17863 GO:0046597 negative regulation of virion penetration into host 0 0 17864 GO:0046598 positive regulation of virion penetration into host 0 0 17865 GO:0046599 regulation of centriole replication 0 0 17866 GO:0046600 negative regulation of centriole replication 0 0 17867 GO:0046601 positive regulation of centriole replication 0 0 17868 GO:0046602 regulation of mitotic centrosome separation 0 0 17869 GO:0046603 negative regulation of mitotic centrosome separation 0 0 17870 GO:0046604 positive regulation of mitotic centrosome separation 0 0 17871 GO:0046605 regulation of centrosome cycle 0 0 17872 GO:0046606 negative regulation of centrosome cycle 0 0 17873 GO:0046607 positive regulation of centrosome cycle 0 0 17874 GO:0046608 carotenoid isomerase activity 0 0 17875 GO:0046609 voltage-gated sulfate antiporter activity 0 0 17876 GO:0046610 lysosomal hydrogen-transporting ATPase V0 domain 0 0 17877 GO:0046611 lysosomal hydrogen-translocating V-type ATPase complex 0 0 17878 GO:0046612 lysosomal hydrogen-transporting ATPase V1 domain 0 0 17879 GO:0046615 re-entry into mitotic cell cycle after pheromone arrest (sensu Saccharomyces) (obsolete GO:0046615) 1 0 17880 GO:0046617 nucleolar size increase (sensu Saccharomyces) (obsolete GO:0046617) 1 0 17881 GO:0046618 drug export 0 0 17882 GO:0046619 optic placode formation (sensu Mammalia) 0 0 17883 GO:0046620 regulation of organ size 0 0 17884 GO:0046621 negative regulation of organ size 0 0 17885 GO:0046622 positive regulation of organ size 0 0 17886 GO:0046623 sphingolipid-translocating ATPase activity 0 0 17887 GO:0046624 sphingolipid transporter activity 0 0 17888 GO:0046625 sphingolipid binding 0 0 17889 GO:0046626 regulation of insulin receptor signaling pathway 0 0 17890 GO:0046627 negative regulation of insulin receptor signaling pathway 0 0 17891 GO:0046628 positive regulation of insulin receptor signaling pathway 0 0 17892 GO:0046629 gamma-delta T cell activation 0 0 17893 GO:0046630 gamma-delta T cell proliferation 0 0 17894 GO:0046631 alpha-beta T cell activation 0 0 17895 GO:0046632 alpha-beta T cell differentiation 0 0 17896 GO:0046633 alpha-beta T cell proliferation 0 0 17897 GO:0046634 regulation of alpha-beta T cell activation 0 0 17898 GO:0046635 positive regulation of alpha-beta T cell activation 0 0 17899 GO:0046636 negative regulation of alpha-beta T cell activation 0 0 17900 GO:0046637 regulation of alpha-beta T cell differentiation 0 0 17901 GO:0046638 positive regulation of alpha-beta T cell differentiation 0 0 17902 GO:0046639 negative regulation of alpha-beta T cell differentiation 0 0 17903 GO:0046640 regulation of alpha-beta T cell proliferation 0 0 17904 GO:0046641 positive regulation of alpha-beta T cell proliferation 0 0 17905 GO:0046642 negative regulation of alpha-beta T cell proliferation 0 0 17906 GO:0046643 regulation of gamma-delta T cell activation 0 0 17907 GO:0046644 negative regulation of gamma-delta T cell activation 0 0 17908 GO:0046645 positive regulation of gamma-delta T cell activation 0 0 17909 GO:0046646 regulation of gamma-delta T cell proliferation 0 0 17910 GO:0046647 negative regulation of gamma-delta T cell proliferation 0 0 17911 GO:0046648 positive regulation of gamma-delta T cell proliferation 0 0 17912 GO:0046649 lymphocyte activation 0 0 17913 GO:0046651 lymphocyte proliferation 0 0 17914 GO:0046653 tetrahydrofolate metabolism 0 0 17915 GO:0046654 tetrahydrofolate biosynthesis 0 0 17916 GO:0046655 folic acid metabolism 0 0 17917 GO:0046656 folic acid biosynthesis 0 0 17918 GO:0046657 folic acid catabolism 0 0 17919 GO:0046658 anchored to plasma membrane 0 0 17920 GO:0046659 digestive hormone activity 0 0 17921 GO:0046660 female sex differentiation 0 0 17922 GO:0046661 male sex differentiation 0 0 17923 GO:0046662 regulation of oviposition 0 0 17924 GO:0046663 dorsal closure, leading edge cell differentiation 0 0 17925 GO:0046664 dorsal closure, amnioserosa morphology change 0 0 17926 GO:0046665 amnioserosa maintenance 0 0 17927 GO:0046666 retinal cell programmed cell death 0 0 17928 GO:0046667 retinal cell programmed cell death (sensu Endopterygota) 0 0 17929 GO:0046668 regulation of retinal programmed cell death 0 0 17930 GO:0046669 regulation of retinal cell programmed cell death (sensu Endopterygota) 0 0 17931 GO:0046670 positive regulation of retinal programmed cell death 0 0 17932 GO:0046671 negative regulation of retinal programmed cell death 0 0 17933 GO:0046672 positive regulation of retinal cell programmed cell death (sensu Endopterygota) 0 0 17934 GO:0046673 negative regulation of retinal cell programmed cell death (sensu Endopterygota) 0 0 17935 GO:0046674 induction of retinal programmed cell death 0 0 17936 GO:0046675 induction of retinal cell programmed cell death (sensu Endopterygota) 0 0 17937 GO:0046676 negative regulation of insulin secretion 0 0 17938 GO:0046677 response to antibiotic 0 0 17939 GO:0046678 response to bacteriocin 0 0 17940 GO:0046679 response to streptomycin 0 0 17941 GO:0046680 response to DDT 0 0 17942 GO:0046681 response to carbamate 0 0 17943 GO:0046682 response to cyclodiene 0 0 17944 GO:0046683 response to organophosphorus 0 0 17945 GO:0046684 response to pyrethroid 0 0 17946 GO:0046685 response to arsenic 0 0 17947 GO:0046686 response to cadmium ion 0 0 17948 GO:0046687 response to chromate 0 0 17949 GO:0046688 response to copper ion 0 0 17950 GO:0046689 response to mercury ion 0 0 17951 GO:0046690 response to tellurium ion 0 0 17952 GO:0046691 intracellular canaliculus 0 0 17953 GO:0046692 sperm competition 0 0 17954 GO:0046693 sperm storage 0 0 17955 GO:0046694 sperm incapacitation 0 0 17956 GO:0046695 SLIK (SAGA-like) complex 0 0 17957 GO:0046696 lipopolysaccharide receptor complex 0 0 17958 GO:0046697 decidualization 0 0 17959 GO:0046698 metamorphosis (sensu Insecta) 0 0 17960 GO:0046699 metamorphosis (sensu Amphibia) 0 0 17961 GO:0046700 heterocycle catabolism 0 0 17962 GO:0046701 insecticide catabolism 0 0 17963 GO:0046702 galactoside 6-L-fucosyltransferase activity 0 0 17964 GO:0046703 natural killer cell lectin-like receptor binding 0 0 17965 GO:0046704 CDP metabolism 0 0 17966 GO:0046705 CDP biosynthesis 0 0 17967 GO:0046706 CDP catabolism 0 0 17968 GO:0046707 IDP metabolism 0 0 17969 GO:0046708 IDP biosynthesis 0 0 17970 GO:0046709 IDP catabolism 0 0 17971 GO:0046710 GDP metabolism 0 0 17972 GO:0046711 GDP biosynthesis 0 0 17973 GO:0046712 GDP catabolism 0 0 17974 GO:0046713 boron transport 0 0 17975 GO:0046714 boron binding 0 0 17976 GO:0046715 boron transporter activity 0 0 17977 GO:0046716 muscle maintenance 0 0 17978 GO:0046717 acid secretion 0 0 17979 GO:0046718 entry of virus into host cell 0 0 17980 GO:0046719 regulation of viral protein levels in host cell 0 0 17981 GO:0046720 citric acid secretion 0 0 17982 GO:0046721 formic acid secretion 0 0 17983 GO:0046722 lactic acid secretion 0 0 17984 GO:0046723 malic acid secretion 0 0 17985 GO:0046724 oxalic acid secretion 0 0 17986 GO:0046725 negative regulation of viral protein levels in host cell 0 0 17987 GO:0046726 positive regulation of viral protein levels in host cell 0 0 17988 GO:0046727 capsomere 0 0 17989 GO:0046728 viral capsid (sensu Retroviridae) 0 0 17990 GO:0046729 viral procapsid 0 0 17991 GO:0046730 induction of host immune response by virus 0 0 17992 GO:0046731 passive induction of host immune response by virus 0 0 17993 GO:0046732 active induction of host immune response by virus 0 0 17994 GO:0046733 passive induction of humoral immune response in host by virus 0 0 17995 GO:0046734 passive induction of cell-mediated immune response in host by virus 0 0 17996 GO:0046735 passive induction of innate immune response in host by virus 0 0 17997 GO:0046736 active induction of humoral immune response in host by virus 0 0 17998 GO:0046737 active induction of cell-mediated immune response in host by virus 0 0 17999 GO:0046738 active induction of innate immune response in host by virus 0 0 18000 GO:0046739 spread of virus within host 0 0 18001 GO:0046740 spread of virus within host, cell to cell 0 0 18002 GO:0046741 spread of virus within host, tissue to tissue 0 0 18003 GO:0046742 viral capsid transport in host cell nucleus 0 0 18004 GO:0046743 viral capsid transport in host cell cytoplasm 0 0 18005 GO:0046744 viral capsid envelopment 0 0 18006 GO:0046745 viral capsid re-envelopment 0 0 18007 GO:0046746 virus budding from nuclear membrane during viral capsid re-envelopment 0 0 18008 GO:0046747 virus budding from Golgi membrane during viral capsid re-envelopment 0 0 18009 GO:0046748 virus budding from ER membrane during viral capsid re-envelopment 0 0 18010 GO:0046749 virus budding from nuclear membrane during viral capsid envelopment 0 0 18011 GO:0046750 virus budding from Golgi membrane during viral capsid envelopment 0 0 18012 GO:0046751 virus budding from ER membrane during viral capsid envelopment 0 0 18013 GO:0046752 viral capsid precursor localization in host cell nucleus 0 0 18014 GO:0046753 non-lytic viral release 0 0 18015 GO:0046754 non-lytic viral exocytosis 0 0 18016 GO:0046755 non-lytic virus budding 0 0 18017 GO:0046756 lytic viral exocytosis 0 0 18018 GO:0046757 lytic virus budding from ER membrane 0 0 18019 GO:0046758 lytic virus budding from Golgi membrane 0 0 18020 GO:0046759 lytic virus budding from plasma membrane 0 0 18021 GO:0046760 non-lytic virus budding from Golgi membrane 0 0 18022 GO:0046761 non-lytic virus budding from plasma membrane 0 0 18023 GO:0046762 non-lytic virus budding from ER membrane 0 0 18024 GO:0046763 virus budding from Golgi membrane 0 0 18025 GO:0046764 virus budding from ER membrane 0 0 18026 GO:0046765 virus budding from nuclear membrane 0 0 18027 GO:0046766 virus budding from plasma membrane 0 0 18028 GO:0046767 virus budding from plasma membrane during viral capsid envelopment 0 0 18029 GO:0046768 virus budding from plasma membrane during viral capsid re-envelopment 0 0 18030 GO:0046769 virus budding from inner nuclear membrane during viral capsid re-envelopment 0 0 18031 GO:0046770 virus budding from outer nuclear membrane during viral capsid re-envelopment 0 0 18032 GO:0046771 virus budding from inner nuclear membrane during viral capsid envelopment 0 0 18033 GO:0046772 virus budding from outer nuclear membrane during viral capsid envelopment 0 0 18034 GO:0046773 suppression by virus of host termination of protein biosynthesis 0 0 18035 GO:0046774 suppression of intracellular interferon activity in host by virus 0 0 18036 GO:0046775 suppression of host cytokine production by virus 0 0 18037 GO:0046776 suppression of MHC class I cell surface presentation in host by virus 0 0 18038 GO:0046777 protein amino acid autophosphorylation 0 0 18039 GO:0046778 modification by virus of host mRNA processing 0 0 18040 GO:0046779 suppression by virus of expression of host genes with introns 0 0 18041 GO:0046780 suppression by virus of host mRNA splicing 0 0 18042 GO:0046781 dispersion by virus of host splicing factors 0 0 18043 GO:0046782 regulation of viral transcription 0 0 18044 GO:0046783 modification by virus of host polysomes 0 0 18045 GO:0046784 intronless viral mRNA export from host nucleus 0 0 18046 GO:0046785 microtubule polymerization 0 0 18047 GO:0046786 viral replication complex formation and maintenance 0 0 18048 GO:0046787 viral DNA repair 0 0 18049 GO:0046788 egress of virus within host cell 0 0 18050 GO:0046789 host cell surface receptor binding 0 0 18051 GO:0046790 virion binding 0 0 18052 GO:0046791 suppression of host complement neutralization by virus 0 0 18053 GO:0046792 suppression by virus of host cell cycle arrest 0 0 18054 GO:0046793 induction by virus of modification of host RNA polymerase II 0 0 18055 GO:0046794 virion transport 0 0 18056 GO:0046795 intracellular virion transport 0 0 18057 GO:0046796 viral genome transport in host cell 0 0 18058 GO:0046797 viral procapsid maturation 0 0 18059 GO:0046798 viral portal complex 0 0 18060 GO:0046799 recruitment of helicase-primase complex to DNA lesions 0 0 18061 GO:0046800 enhancement of virulence 0 0 18062 GO:0046801 intracellular transport of viral capsid in host cell 0 0 18063 GO:0046802 egress of viral procapsid from host cell nucleus 0 0 18064 GO:0046803 reduction of virulence 0 0 18065 GO:0046804 peptide cross-linking via (2S,3S,4Xi,6R)-3-methyl-lanthionine sulfoxide 0 0 18066 GO:0046805 protein-heme linkage via 1'-L-histidine 0 0 18067 GO:0046806 viral scaffold 0 0 18068 GO:0046807 viral scaffold assembly and maintenance 0 0 18069 GO:0046808 assemblon 0 0 18070 GO:0046809 replication compartment 0 0 18071 GO:0046810 host cell extracellular matrix binding 0 0 18072 GO:0046811 histone deacetylase inhibitor activity 0 0 18073 GO:0046812 host cell surface binding 0 0 18074 GO:0046813 virion attachment, binding of host cell surface receptor 0 0 18075 GO:0046814 virion attachment, binding of host cell surface coreceptor 0 0 18076 GO:0046815 genome retention in viral capsid 0 0 18077 GO:0046816 virion transport vesicle 0 0 18078 GO:0046817 chemokine receptor antagonist activity 0 0 18079 GO:0046818 dense nuclear body 0 0 18080 GO:0046819 type V protein secretion system 0 0 18081 GO:0046820 4-amino-4-deoxychorismate synthase activity 0 0 18082 GO:0046821 extrachromosomal DNA 0 0 18083 GO:0046822 regulation of nucleocytoplasmic transport 0 0 18084 GO:0046823 negative regulation of nucleocytoplasmic transport 0 0 18085 GO:0046824 positive regulation of nucleocytoplasmic transport 0 0 18086 GO:0046825 regulation of protein export from nucleus 0 0 18087 GO:0046826 negative regulation of protein export from nucleus 0 0 18088 GO:0046827 positive regulation of protein export from nucleus 0 0 18089 GO:0046828 regulation of RNA import into nucleus 0 0 18090 GO:0046829 negative regulation of RNA import into nucleus 0 0 18091 GO:0046830 positive regulation of RNA import into nucleus 0 0 18092 GO:0046831 regulation of RNA export from nucleus 0 0 18093 GO:0046832 negative regulation of RNA export from nucleus 0 0 18094 GO:0046833 positive regulation of RNA export from nucleus 0 0 18095 GO:0046834 lipid phosphorylation 0 0 18096 GO:0046835 carbohydrate phosphorylation 0 0 18097 GO:0046836 glycolipid transport 0 0 18098 GO:0046838 phosphorylated carbohydrate dephosphorylation 0 0 18099 GO:0046839 phospholipid dephosphorylation 0 0 18100 GO:0046841 trisporic acid metabolism 0 0 18101 GO:0046842 trisporic acid biosynthesis 0 0 18102 GO:0046843 dorsal appendage formation 0 0 18103 GO:0046844 micropyle formation 0 0 18104 GO:0046845 branched duct epithelial cell fate determination (sensu Insecta) 0 0 18105 GO:0046847 filopodium formation 0 0 18106 GO:0046848 hydroxyapatite binding 0 0 18107 GO:0046849 bone remodeling 0 0 18108 GO:0046850 regulation of bone remodeling 0 0 18109 GO:0046851 negative regulation of bone remodeling 0 0 18110 GO:0046852 positive regulation of bone remodeling 0 0 18111 GO:0046853 inositol and derivative phosphorylation 0 0 18112 GO:0046854 phosphoinositide phosphorylation 0 0 18113 GO:0046855 inositol phosphate dephosphorylation 0 0 18114 GO:0046856 phosphoinositide dephosphorylation 0 0 18115 GO:0046857 oxidoreductase activity, acting on other nitrogenous compounds as donors, with NAD or NADP as acceptor 0 0 19219 GO:0047973 guanidinoacetate kinase activity 0 0 19220 GO:0047974 guanosine deaminase activity 0 0 19221 GO:0047975 guanosine phosphorylase activity 0 0 19222 GO:0047976 hamamelose kinase activity 0 0 19223 GO:0047977 hepoxilin-epoxide hydrolase activity 0 0 19224 GO:0047978 hexadecanol dehydrogenase activity 0 0 19225 GO:0047979 hexose oxidase activity 0 0 19226 GO:0047980 hippurate hydrolase activity 0 0 19227 GO:0047981 histidine N-acetyltransferase activity 0 0 19228 GO:0047982 homocysteine desulfhydrase activity 0 0 19229 GO:0047983 homoglutathione synthase activity 0 0 19230 GO:0047985 hydrogen dehydrogenase activity 0 0 19231 GO:0047986 hydrogen-sulfide S-acetyltransferase activity 0 0 19232 GO:0047987 hydroperoxide dehydratase activity 0 0 19233 GO:0047988 hydroxyacid-oxoacid transhydrogenase activity 0 0 19234 GO:0047989 hydroxybutyrate-dimer hydrolase activity 0 0 19235 GO:0047990 hydroxyglutamate decarboxylase activity 0 0 19236 GO:0047991 hydroxylamine oxidase activity 0 0 19237 GO:0047992 hydroxylysine kinase activity 0 0 19238 GO:0047993 hydroxymalonate dehydrogenase activity 0 0 19239 GO:0047994 hydroxymethylglutaryl-CoA hydrolase activity 0 0 19240 GO:0047995 hydroxyphenylpyruvate reductase activity 0 0 19241 GO:0047996 hydroxyphytanate oxidase activity 0 0 19242 GO:0047997 hydroxypyruvate decarboxylase activity 0 0 19243 GO:0047998 hyoscyamine (6S)-dioxygenase activity 0 0 19244 GO:0047999 hyponitrite reductase activity 0 0 19245 GO:0048000 isoflavone 3'-hydroxylase activity 0 0 19246 GO:0048001 erythrose-4-phosphate dehydrogenase activity 0 0 19247 GO:0048002 antigen presentation, peptide antigen 0 0 19248 GO:0048003 antigen presentation, lipid antigen 0 0 19249 GO:0048004 antigen presentation, endogenous peptide antigen 0 0 19250 GO:0048005 antigen presentation, exogenous peptide antigen 0 0 19251 GO:0048006 antigen presentation, endogenous lipid antigen 0 0 19252 GO:0048007 antigen presentation, exogenous lipid antigen 0 0 19253 GO:0048008 platelet-derived growth factor receptor signaling pathway 0 0 19254 GO:0048009 insulin-like growth factor receptor signaling pathway 0 0 19255 GO:0048010 vascular endothelial growth factor receptor signaling pathway 0 0 19256 GO:0048011 nerve growth factor receptor signaling pathway 0 0 19257 GO:0048012 hepatocyte growth factor receptor signaling pathway 0 0 19258 GO:0048013 ephrin receptor signaling pathway 0 0 19259 GO:0048014 Tie receptor signaling pathway 0 0 19260 GO:0048015 phosphoinositide-mediated signaling 0 0 19261 GO:0048016 inositol phosphate-mediated signaling 0 0 19262 GO:0048017 inositol lipid-mediated signaling 0 0 19263 GO:0048018 receptor agonist activity 0 0 19264 GO:0048019 receptor antagonist activity 0 0 19265 GO:0048020 CCR chemokine receptor binding 0 0 19266 GO:0048021 regulation of melanin biosynthesis 0 0 19267 GO:0048022 negative regulation of melanin biosynthesis 0 0 19268 GO:0048023 positive regulation of melanin biosynthesis 0 0 19269 GO:0048024 regulation of nuclear mRNA splicing, via spliceosome 0 0 19270 GO:0048025 negative regulation of nuclear mRNA splicing, via spliceosome 0 0 19271 GO:0048026 positive regulation of nuclear mRNA splicing, via spliceosome 0 0 19272 GO:0048027 mRNA 5'-UTR binding 0 0 19273 GO:0048028 galacturonan binding 0 0 19274 GO:0048029 monosaccharide binding 0 0 19275 GO:0048030 disaccharide binding 0 0 19276 GO:0048031 trisaccharide binding 0 0 19277 GO:0048032 galacturonate binding 0 0 19278 GO:0048033 heme o metabolism 0 0 19279 GO:0048034 heme o biosynthesis 0 0 19280 GO:0048035 heme o catabolism 0 0 19281 GO:0048036 central complex development 0 0 19282 GO:0048037 cofactor binding 0 0 19283 GO:0048038 quinone binding 0 0 19284 GO:0048039 ubiquinone binding 0 0 19285 GO:0048040 UDP-glucuronate decarboxylase activity 0 0 19286 GO:0048041 focal adhesion formation 0 0 19287 GO:0048042 regulation of oviposition, post-mating 0 0 19288 GO:0048045 trans-pentaprenyltranstransferase activity 0 0 19289 GO:0048046 apoplast 0 0 19290 GO:0048047 mating behavior, sex discrimination 0 0 19291 GO:0048048 embryonic eye morphogenesis 0 0 19292 GO:0048049 embryonic eye morphogenesis (sensu Endopterygota) 0 0 19293 GO:0048050 post-embryonic eye morphogenesis 0 0 19294 GO:0048051 post-embryonic eye morphogenesis (sensu Endopterygota) 0 0 19295 GO:0048052 R1/R6 cell differentiation (sensu Endopterygota) 0 0 19296 GO:0048053 R1/R6 development (sensu Endopterygota) 0 0 19297 GO:0048054 R2/R5 cell differentiation (sensu Endopterygota) 0 0 19298 GO:0048055 R2/R5 development (sensu Endopterygota) 0 0 19299 GO:0048056 R3/R4 cell differentiation (sensu Endopterygota) 0 0 19300 GO:0048057 R3/R4 development (sensu Endopterygota) 0 0 19301 GO:0048058 corneal lens development (sensu Endopterygota) 0 0 19302 GO:0048060 negative gravitaxis 0 0 19303 GO:0048061 positive gravitaxis 0 0 19304 GO:0048065 male courtship behavior (sensu Insecta), wing extension 0 0 19305 GO:0048066 pigmentation during development 0 0 19306 GO:0048067 cuticle pigmentation 0 0 19307 GO:0048068 adult cuticle pigmentation (sensu Insecta) 0 0 19308 GO:0048069 eye pigmentation 0 0 19309 GO:0048070 regulation of developmental pigmentation 0 0 19310 GO:0048071 sex-specific pigmentation 0 0 19311 GO:0048072 eye pigmentation (sensu Endopterygota) 0 0 19312 GO:0048073 regulation of eye pigmentation 0 0 19313 GO:0048074 negative regulation of eye pigmentation 0 0 19314 GO:0048075 positive regulation of eye pigmentation 0 0 19315 GO:0048076 regulation of eye pigmentation (sensu Endopterygota) 0 0 19316 GO:0048077 negative regulation of eye pigmentation (sensu Endopterygota) 0 0 19317 GO:0048078 positive regulation of eye pigmentation (sensu Endopterygota) 0 0 19318 GO:0048079 regulation of cuticle pigmentation 0 0 19319 GO:0048080 negative regulation of cuticle pigmentation 0 0 19320 GO:0048081 positive regulation of cuticle pigmentation 0 0 19321 GO:0048082 regulation of adult cuticle pigmentation 0 0 19322 GO:0048083 negative regulation of adult cuticle pigmentation 0 0 19323 GO:0048084 positive regulation of adult cuticle pigmentation 0 0 19324 GO:0048085 adult cuticle pigmentation 0 0 19325 GO:0048086 negative regulation of pigmentation 0 0 19326 GO:0048087 positive regulation of pigmentation 0 0 19327 GO:0048088 regulation of male pigmentation 0 0 19328 GO:0048089 regulation of female pigmentation 0 0 19329 GO:0048090 negative regulation of female pigmentation 0 0 19330 GO:0048091 positive regulation of female pigmentation 0 0 19331 GO:0048092 negative regulation of male pigmentation 0 0 19332 GO:0048093 positive regulation of male pigmentation 0 0 19333 GO:0048094 male pigmentation 0 0 19334 GO:0048095 female pigmentation 0 0 19335 GO:0048096 chromatin-mediated maintenance of transcription 0 0 19336 GO:0048097 long-term maintenance of gene activation 0 0 19337 GO:0048098 antennal joint development 0 0 19338 GO:0048099 anterior/posterior lineage restriction, imaginal disc 0 0 19339 GO:0048100 wing disc anterior/posterior pattern formation 0 0 19340 GO:0048101 calcium- and calmodulin-regulated 3',5'-cyclic-GMP phosphodiesterase activity 0 0 19341 GO:0048102 autophagic cell death 0 0 19342 GO:0048103 somatic stem cell division 0 0 19343 GO:0048104 establishment of body hair or bristle orientation 0 0 19344 GO:0048105 establishment of body hair orientation 0 0 19345 GO:0048106 establishment of body bristle orientation 0 0 19346 GO:0048107 4-amino-3-isothiazolidinone biosynthesis 0 0 19347 GO:0048108 peptide cross-linking via 4-amino-3-isothiazolidinone 0 0 19348 GO:0048109 peptide cross-linking via 2-amino-3-isothiazolidinone-L-serine 0 0 19349 GO:0048110 oocyte construction (sensu Insecta) 0 0 19350 GO:0048111 oocyte axis determination (sensu Insecta) 0 0 19351 GO:0048112 oocyte anterior/posterior axis determination (sensu Insecta) 0 0 19352 GO:0048113 pole plasm assembly (sensu Insecta) 0 0 19353 GO:0048123 oocyte dorsal/ventral axis determination (sensu Insecta) 0 0 19354 GO:0048124 maternal determination of dorsal/ventral axis, oocyte, germ-line encoded (sensu Insecta) 0 0 19355 GO:0048125 maternal determination of dorsal/ventral axis, oocyte, soma encoded (sensu Insecta) 0 0 19356 GO:0048126 establishment of oocyte nucleus localization during oocyte axis determination (sensu Insecta) 0 0 19357 GO:0048127 maintenance of oocyte nucleus localization during oocyte axis determination (sensu Insecta) 0 0 19358 GO:0048128 oocyte nucleus migration during oocyte axis determination (sensu Insecta) 0 0 19359 GO:0048129 oocyte microtubule cytoskeleton polarization (sensu Insecta) 0 0 19360 GO:0048130 oocyte microtubule cytoskeleton organization (sensu Insecta) 0 0 19361 GO:0048132 female germ-line stem cell division 0 0 19362 GO:0048133 male germ-line stem cell division 0 0 19363 GO:0048134 germ-line cyst formation 0 0 19364 GO:0048135 female germ-line cyst formation 0 0 19365 GO:0048136 male germ-line cyst formation 0 0 19366 GO:0048137 spermatocyte division 0 0 19367 GO:0048138 germ-line cyst encapsulation 0 0 19368 GO:0048139 female germ-line cyst encapsulation 0 0 19369 GO:0048140 male germ-line cyst encapsulation 0 0 19370 GO:0048141 female germ-line stem cell division (sensu Insecta) 0 0 19371 GO:0048142 cystoblast division (sensu Insecta) 0 0 19372 GO:0048143 astrocyte activation 0 0 19373 GO:0048144 fibroblast proliferation 0 0 19374 GO:0048145 regulation of fibroblast proliferation 0 0 19375 GO:0048146 positive regulation of fibroblast proliferation 0 0 19376 GO:0048147 negative regulation of fibroblast proliferation 0 0 19377 GO:0048148 behavioral response to cocaine 0 0 19378 GO:0048149 behavioral response to ethanol 0 0 19379 GO:0048150 behavioral response to ether 0 0 19380 GO:0048151 hyperphosphorylation 0 0 19381 GO:0048152 S100 beta biosynthesis 0 0 19382 GO:0048153 S100 alpha biosynthesis 0 0 19383 GO:0048154 S100 beta binding 0 0 19384 GO:0048155 S100 alpha binding 0 0 19385 GO:0048156 tau protein binding 0 0 19386 GO:0048157 oogenesis (sensu Mammalia) 0 0 19387 GO:0048158 oogonium stage oogenesis (sensu Mammalia) 0 0 19388 GO:0048159 primary oocyte stage oogenesis 0 0 19389 GO:0048160 primary follicle stage oogenesis (sensu Mammalia) 0 0 19390 GO:0048161 double layer follicle stage oogenesis (sensu Mammalia) 0 0 19391 GO:0048162 multi-layer follicle stage oogenesis (sensu Mammalia) 0 0 19392 GO:0048163 scattered antral spaces stage oogenesis (sensu Mammalia) 0 0 19393 GO:0048164 distinct antral spaces stage oogenesis (sensu Mammalia) 0 0 19394 GO:0048165 fused antrum stage oogenesis (sensu Mammalia) 0 0 19395 GO:0048166 mature follicle stage oogenesis (sensu Mammalia) 0 0 19396 GO:0048167 regulation of synaptic plasticity 0 0 19397 GO:0048168 regulation of neuronal synaptic plasticity 0 0 19398 GO:0048169 regulation of long-term neuronal synaptic plasticity 0 0 19399 GO:0048170 positive regulation of long-term neuronal synaptic plasticity 0 0 19400 GO:0048171 negative regulation of long-term neuronal synaptic plasticity 0 0 19401 GO:0048172 regulation of short-term neuronal synaptic plasticity 0 0 19402 GO:0048173 positive regulation of short-term neuronal synaptic plasticity 0 0 19403 GO:0048174 negative regulation of short-term neuronal synaptic plasticity 0 0 19404 GO:0048175 hepatocyte growth factor biosynthesis 0 0 19405 GO:0048176 regulation of hepatocyte growth factor biosynthesis 0 0 19406 GO:0048177 positive regulation of hepatocyte growth factor biosynthesis 0 0 19407 GO:0048178 negative regulation of hepatocyte growth factor biosynthesis 0 0 19408 GO:0048179 activin receptor complex 0 0 19409 GO:0048180 activin complex 0 0 19410 GO:0048181 activin A complex (obsolete GO:0048181) 1 0 19411 GO:0048182 activin B complex (obsolete GO:0048182) 1 0 19412 GO:0048183 activin AB complex 0 0 19413 GO:0048184 follistatin binding 0 0 19414 GO:0048185 activin binding 0 0 19415 GO:0048186 inhibin beta-A binding 0 0 19416 GO:0048187 inhibin beta-B binding 0 0 19417 GO:0048188 COMPASS complex 0 0 19418 GO:0048189 Lid2 complex 0 0 19419 GO:0048190 wing disc dorsal/ventral pattern formation 0 0 19420 GO:0048191 peptide stabilization activity (obsolete GO:0048191) 1 0 19421 GO:0048192 peptide antigen stabilization activity (obsolete GO:0048192) 1 0 19422 GO:0048193 Golgi vesicle transport 0 0 19423 GO:0048194 Golgi vesicle budding 0 0 19424 GO:0048195 formation of Golgi membrane priming complex 0 0 19425 GO:0048196 extracellular matrix (sensu Magnoliophyta) 0 0 19426 GO:0048197 Golgi membrane coat protein complex assembly 0 0 19427 GO:0048198 Golgi vesicle bud deformation and release 0 0 19428 GO:0048199 vesicle targeting, to, from or within Golgi 0 0 19429 GO:0048200 Golgi transport vesicle coating 0 0 19430 GO:0048201 vesicle targeting, plasma membrane to endosome 0 0 19431 GO:0048202 clathrin coating of Golgi vesicle 0 0 19432 GO:0048203 vesicle targeting, trans-Golgi to endosome 0 0 19433 GO:0048204 vesicle targeting, inter-Golgi cisterna 0 0 19434 GO:0048205 COPI coating of Golgi vesicle 0 0 19435 GO:0048206 vesicle targeting, cis-Golgi to rough ER 0 0 19436 GO:0048207 vesicle targeting, rough ER to cis-Golgi 0 0 19437 GO:0048208 COPII coating of Golgi vesicle 0 0 19438 GO:0048209 regulation of vesicle targeting, to, from or within Golgi 0 0 19439 GO:0048210 Golgi vesicle fusion to target membrane 0 0 19440 GO:0048211 Golgi vesicle docking 0 0 19441 GO:0048212 Golgi vesicle uncoating 0 0 19442 GO:0048213 Golgi vesicle prefusion complex stabilization 0 0 19443 GO:0048214 regulation of Golgi vesicle fusion to target membrane 0 0 19444 GO:0048215 positive regulation of Golgi vesicle fusion to target membrane 0 0 19445 GO:0048216 negative regulation of Golgi vesicle fusion to target membrane 0 0 19446 GO:0048217 pectic matrix 0 0 19447 GO:0048219 inter-Golgi cisterna vesicle-mediated transport 0 0 19448 GO:0048220 cis-Golgi to rough ER vesicle-mediated transport 0 0 19449 GO:0048221 rough ER to cis-Golgi vesicle-mediated transport 0 0 19450 GO:0048222 glycoprotein network 0 0 19451 GO:0048223 hemicellulose network 0 0 19452 GO:0048224 lignin network 0 0 19453 GO:0048225 suberin network 0 0 19454 GO:0048226 Casparian strip 0 0 19455 GO:0048227 plasma membrane to endosome transport 0 0 19456 GO:0048228 actin cortical patch distribution 0 0 19457 GO:0048229 gametophyte development (sensu Magnoliophyta) 0 0 19458 GO:0048232 male gamete generation 0 0 19459 GO:0048233 female gamete generation (sensu Magnoliophyta) 0 0 19460 GO:0048234 male gamete generation (sensu Magnoliophyta) 0 0 19461 GO:0048235 sperm cell differentiation (sensu Magnoliophyta) 0 0 19462 GO:0048236 spore development (sensu Magnoliophyta) 0 0 19463 GO:0048237 rough endoplasmic reticulum lumen 0 0 19464 GO:0048238 smooth endoplasmic reticulum lumen 0 0 19465 GO:0048239 negative regulation of telomeric recombination at telomere 0 0 19466 GO:0048240 sperm capacitation 0 0 19467 GO:0048241 epinephrine transport 0 0 19468 GO:0048242 epinephrine secretion 0 0 19469 GO:0048243 norepinephrine secretion 0 0 19470 GO:0048244 phytanoyl-CoA dioxygenase activity 0 0 19471 GO:0048245 eosinophil chemotaxis 0 0 19472 GO:0048246 macrophage chemotaxis 0 0 19473 GO:0048247 lymphocyte chemotaxis 0 0 19474 GO:0048248 CXCR3 chemokine receptor binding 0 0 19475 GO:0048249 high affinity phosphate transporter activity 0 0 19476 GO:0048250 mitochondrial iron ion transport 0 0 19477 GO:0048251 elastic fiber assembly 0 0 19478 GO:0048252 lauric acid metabolism 0 0 19479 GO:0048254 snoRNA localization 0 0 19480 GO:0048255 mRNA stabilization 0 0 19481 GO:0048256 flap endonuclease activity 0 0 19482 GO:0048257 3'-flap endonuclease activity 0 0 19483 GO:0048258 3-ketoglucose-reductase activity 0 0 19484 GO:0048259 regulation of receptor mediated endocytosis 0 0 19485 GO:0048260 positive regulation of receptor mediated endocytosis 0 0 19486 GO:0048261 negative regulation of receptor mediated endocytosis 0 0 19487 GO:0048262 determination of dorsoventral asymmetry 0 0 19488 GO:0048263 determination of dorsal identity 0 0 19489 GO:0048264 determination of ventral identity 0 0 19490 GO:0048265 response to pain 0 0 19491 GO:0048266 behavioral response to pain 0 0 19492 GO:0048267 physiological response to pain 0 0 19493 GO:0048268 clathrin cage assembly 0 0 19494 GO:0048269 methionine adenosyltransferase complex 0 0 19495 GO:0048270 methionine adenosyltransferase regulator activity 0 0 19496 GO:0048273 mitogen-activated protein kinase p38 binding 0 0 19497 GO:0048275 N-terminal peptidyl-arginine acetylation 0 0 19498 GO:0048276 gastrulation (sensu Vertebrata) 0 0 19499 GO:0048277 nonexocytotic vesicle docking (obsolete GO:0048277) 1 0 19500 GO:0048278 vesicle docking 0 0 19501 GO:0048279 vesicle fusion with endoplasmic reticulum 0 0 19502 GO:0048280 vesicle fusion with Golgi apparatus 0 0 19503 GO:0048281 inflorescence morphogenesis 0 0 19504 GO:0048282 determinate inflorescence morphogenesis 0 0 19505 GO:0048283 indeterminate inflorescence morphogenesis 0 0 19506 GO:0048284 organelle fusion 0 0 19507 GO:0048285 organelle fission 0 0 19508 GO:0048286 alveolus development 0 0 19509 GO:0048288 nuclear membrane fusion during karyogamy 0 0 19510 GO:0048289 isotype switching to IgE isotypes 0 0 19511 GO:0048290 isotype switching to IgA isotypes 0 0 19512 GO:0048291 isotype switching to IgG isotypes 0 0 19513 GO:0048292 isotype switching to IgD isotypes 0 0 19514 GO:0048293 regulation of isotype switching to IgE isotypes 0 0 19515 GO:0048294 negative regulation of isotype switching to IgE isotypes 0 0 19516 GO:0048295 positive regulation of isotype switching to IgE isotypes 0 0 19517 GO:0048296 regulation of isotype switching to IgA isotypes 0 0 19518 GO:0048297 negative regulation of isotype switching to IgA isotypes 0 0 19519 GO:0048298 positive regulation of isotype switching to IgA isotypes 0 0 19520 GO:0048299 regulation of isotype switching to IgD isotypes 0 0 19521 GO:0048300 negative regulation of isotype switching to IgD isotypes 0 0 19522 GO:0048301 positive regulation of isotype switching to IgD isotypes 0 0 19523 GO:0048302 regulation of isotype switching to IgG isotypes 0 0 19524 GO:0048303 negative regulation of isotype switching to IgG isotypes 0 0 19525 GO:0048304 positive regulation of isotype switching to IgG isotypes 0 0 19526 GO:0048305 immunoglobulin secretion 0 0 19527 GO:0048306 calcium-dependent protein binding 0 0 19528 GO:0048307 ferredoxin-nitrite reductase activity 0 0 19529 GO:0048308 organelle inheritance 0 0 19530 GO:0048309 endoplasmic reticulum inheritance 0 0 19531 GO:0048310 nucleus inheritance 0 0 19532 GO:0048311 mitochondrion distribution 0 0 19533 GO:0048312 intracellular distribution of mitochondria 0 0 19534 GO:0048313 Golgi inheritance 0 0 19535 GO:0048314 embryo sac morphogenesis 0 0 19536 GO:0048315 conidium formation 0 0 19537 GO:0048316 seed development 0 0 19538 GO:0048317 seed morphogenesis 0 0 19539 GO:0048318 axial mesoderm development 0 0 19540 GO:0048319 axial mesoderm morphogenesis 0 0 19541 GO:0048320 axial mesoderm formation 0 0 19542 GO:0048321 axial mesodermal cell differentiation 0 0 19543 GO:0048322 axial mesodermal cell fate commitment 0 0 19544 GO:0048323 axial mesodermal cell fate determination 0 0 19545 GO:0048324 regulation of axial mesodermal cell fate determination 0 0 19546 GO:0048325 negative regulation of axial mesodermal cell fate determination 0 0 19547 GO:0048326 positive regulation of axial mesodermal cell fate determination 0 0 19548 GO:0048327 axial mesodermal cell fate specification 0 0 19549 GO:0048328 regulation of axial mesodermal cell fate specification 0 0 19550 GO:0048329 negative regulation of axial mesodermal cell fate specification 0 0 19551 GO:0048330 positive regulation of axial mesodermal cell fate specification 0 0 19552 GO:0048331 axial mesoderm structural organization 0 0 19553 GO:0048332 mesoderm morphogenesis 0 0 19554 GO:0048333 mesodermal cell differentiation 0 0 19555 GO:0048334 regulation of mesodermal cell fate determination 0 0 19556 GO:0048335 negative regulation of mesodermal cell fate determination 0 0 19557 GO:0048336 positive regulation of mesodermal cell fate determination 0 0 19558 GO:0048337 positive regulation of mesodermal cell fate specification 0 0 19559 GO:0048338 mesoderm structural organization 0 0 19560 GO:0048339 paraxial mesoderm development 0 0 19561 GO:0048340 paraxial mesoderm morphogenesis 0 0 19562 GO:0048341 paraxial mesoderm formation 0 0 19563 GO:0048342 paraxial mesodermal cell differentiation 0 0 19564 GO:0048343 paraxial mesodermal cell fate commitment 0 0 19565 GO:0048344 paraxial mesodermal cell fate determination 0 0 19566 GO:0048345 regulation of paraxial mesodermal cell fate determination 0 0 19567 GO:0048346 positive regulation of paraxial mesodermal cell fate determination 0 0 19568 GO:0048347 negative regulation of paraxial mesodermal cell fate determination 0 0 19569 GO:0048348 paraxial mesodermal cell fate specification 0 0 19570 GO:0048349 regulation of paraxial mesodermal cell fate specification 0 0 19571 GO:0048350 positive regulation of paraxial mesodermal cell fate specification 0 0 19572 GO:0048351 negative regulation of paraxial mesodermal cell fate specification 0 0 19573 GO:0048352 paraxial mesoderm structural organization 0 0 19574 GO:0048353 primary endosperm nucleus 0 0 19575 GO:0048354 mucilage biosynthesis during seed coat development 0 0 19576 GO:0048355 root cap mucilage biosynthesis 0 0 19577 GO:0048356 root epithelial mucilage biosynthesis 0 0 19578 GO:0048357 pedicel mucilage biosynthesis 0 0 19579 GO:0048358 mucilage pectin biosynthesis 0 0 19580 GO:0048359 mucilage metabolism during seed coat development 0 0 19581 GO:0048360 root cap mucilage metabolism 0 0 19582 GO:0048361 root epithelial mucilage metabolism 0 0 19583 GO:0048362 pedicel mucilage metabolism 0 0 19584 GO:0048363 mucilage pectin metabolism 0 0 19585 GO:0048364 root development 0 0 19586 GO:0048365 Rac GTPase binding 0 0 19587 GO:0048366 leaf development 0 0 19588 GO:0048367 shoot development 0 0 19589 GO:0048368 lateral mesoderm development 0 0 19590 GO:0048369 lateral mesoderm morphogenesis 0 0 19591 GO:0048370 lateral mesoderm formation 0 0 19592 GO:0048371 lateral mesodermal cell differentiation 0 0 19593 GO:0048372 lateral mesodermal cell fate commitment 0 0 19594 GO:0048373 lateral mesodermal cell fate determination 0 0 19595 GO:0048374 regulation of lateral mesodermal cell fate determination 0 0 19596 GO:0048375 negative regulation of lateral mesodermal cell fate determination 0 0 19597 GO:0048376 positive regulation of lateral mesodermal cell fate determination 0 0 19598 GO:0048377 lateral mesodermal cell fate specification 0 0 19599 GO:0048378 regulation of lateral mesodermal cell fate specification 0 0 19600 GO:0048379 positive regulation of lateral mesodermal cell fate specification 0 0 19601 GO:0048380 negative regulation of lateral mesodermal cell fate specification 0 0 19602 GO:0048381 lateral mesoderm structural organization 0 0 19603 GO:0048382 mesendoderm development 0 0 19604 GO:0048383 mesectoderm development 0 0 19605 GO:0048384 retinoic acid receptor signaling pathway 0 0 19606 GO:0048385 regulation of retinoic acid receptor signaling pathway 0 0 19607 GO:0048386 positive regulation of retinoic acid receptor signaling pathway 0 0 19608 GO:0048387 negative regulation of retinoic acid receptor signaling pathway 0 0 19609 GO:0048388 endosomal lumen acidification 0 0 19610 GO:0048389 intermediate mesoderm development 0 0 19611 GO:0048390 intermediate mesoderm morphogenesis 0 0 19612 GO:0048391 intermediate mesoderm formation 0 0 19613 GO:0048392 intermediate mesodermal cell differentiation 0 0 19614 GO:0048393 intermediate mesodermal cell fate commitment 0 0 19615 GO:0048394 intermediate mesodermal cell fate determination 0 0 19616 GO:0048395 regulation of intermediate mesodermal cell fate determination 0 0 19617 GO:0048396 negative regulation of intermediate mesodermal cell fate determination 0 0 19618 GO:0048397 positive regulation of intermediate mesodermal cell fate determination 0 0 19619 GO:0048398 intermediate mesodermal cell fate specification 0 0 19620 GO:0048399 regulation of intermediate mesodermal cell fate specification 0 0 19621 GO:0048400 positive regulation of intermediate mesodermal cell fate specification 0 0 19622 GO:0048401 negative regulation of intermediate mesodermal cell fate specification 0 0 19623 GO:0048402 intermediate mesoderm structural organization 0 0 19624 GO:0048403 brain-derived neurotrophic factor binding 0 0 19625 GO:0048404 neurotrophin-3 binding 0 0 19626 GO:0048405 neurotrophin-4/5 binding 0 0 19627 GO:0048406 nerve growth factor binding 0 0 19628 GO:0048407 platelet-derived growth factor binding 0 0 19629 GO:0048408 epidermal growth factor binding 0 0 19630 GO:0048437 floral organ development 0 0 19631 GO:0048438 floral whorl development 0 0 19632 GO:0048439 flower morphogenesis 0 0 19633 GO:0048440 carpel development 0 0 19634 GO:0048441 petal development 0 0 19635 GO:0048442 sepal development 0 0 19636 GO:0048443 stamen development 0 0 19637 GO:0048444 floral organ morphogenesis 0 0 19638 GO:0048445 carpel morphogenesis 0 0 19639 GO:0048446 petal morphogenesis 0 0 19640 GO:0048447 sepal morphogenesis 0 0 19641 GO:0048448 stamen morphogenesis 0 0 19642 GO:0048449 floral organ formation 0 0 19643 GO:0048450 floral organ structural organization 0 0 19644 GO:0048451 petal formation 0 0 19645 GO:0048452 petal structural organization 0 0 19646 GO:0048453 sepal formation 0 0 19647 GO:0048454 sepal structural organization 0 0 19648 GO:0048455 stamen formation 0 0 19649 GO:0048456 stamen structural organization 0 0 19650 GO:0048457 floral whorl morphogenesis 0 0 19651 GO:0048458 floral whorl formation 0 0 19652 GO:0048459 floral whorl structural organization 0 0 19653 GO:0048460 flower formation 0 0 19654 GO:0048461 flower structural organization 0 0 19655 GO:0048462 carpel formation 0 0 19656 GO:0048463 carpel structural organization 0 0 19657 GO:0048464 calyx development 0 0 19658 GO:0048465 corolla development 0 0 19659 GO:0048466 androecium development 0 0 19660 GO:0048467 gynoecium development 0 0 19661 GO:0048468 cell development 0 0 19662 GO:0048469 cell maturation 0 0 19663 GO:0048470 synergid degeneration 0 0 19664 GO:0048471 perinuclear region 0 0 19665 GO:0048472 threonine-phosphate decarboxylase activity 0 0 19666 GO:0048473 D-methionine transport 0 0 19667 GO:0048474 D-methionine transporter activity 0 0 19668 GO:0048475 coated membrane 0 0 19669 GO:0048476 Holliday junction resolvase complex 0 0 19670 GO:0048477 oogenesis 0 0 19671 GO:0048478 replication fork protection 0 0 19672 GO:0048479 style development 0 0 19673 GO:0048480 stigma development 0 0 19674 GO:0048481 ovule development 0 0 19675 GO:0048482 ovule morphogenesis 0 0 19676 GO:0048483 autonomic nervous system development 0 0 19677 GO:0048484 enteric nervous system development 0 0 19678 GO:0048485 sympathetic nervous system development 0 0 19679 GO:0048486 parasympathetic nervous system development 0 0 19680 GO:0048487 beta-tubulin binding 0 0 19681 GO:0048488 synaptic vesicle endocytosis 0 0 19682 GO:0048489 synaptic vesicle transport 0 0 19683 GO:0048490 anterograde synaptic vesicle transport 0 0 19684 GO:0048491 retrograde synaptic vesicle transport 0 0 19685 GO:0048492 ribulose bisphosphate carboxylase complex 0 0 19686 GO:0048493 ribulose bisphosphate carboxylase complex (sensu Cyanobacteria) 0 0 19687 GO:0048494 ribulose bisphosphate carboxylase complex (sensu Proteobacteria, Chloroflexaceae and Chlorobiaceae) 0 0 19688 GO:0048495 Roundabout binding 0 0 19689 GO:0048496 maintenance of organ identity 0 0 19690 GO:0048497 maintenance of floral organ identity 0 0 19691 GO:0048498 establishment of petal orientation 0 0 19692 GO:0048499 synaptic vesicle membrane organization and biogenesis 0 0 19693 GO:0048500 signal recognition particle 0 0 19694 GO:0048501 signal recognition particle (sensu Bacteria and Archaea) 0 0 19695 GO:0048502 thiamin-transporting ATPase activity 0 0 19696 GO:0048503 GPI anchor binding 0 0 19697 GO:0048504 regulation of timing of organ formation 0 0 19698 GO:0048505 regulation of timing of cell differentiation 0 0 19699 GO:0048506 regulation of timing of meristematic phase transition 0 0 19700 GO:0048507 meristem development 0 0 19701 GO:0048508 embryonic meristem development 0 0 19702 GO:0048509 regulation of meristem development 0 0 19703 GO:0048510 regulation of timing of transition from vegetative to reproductive phase 0 0 19704 GO:0048511 rhythmic process 0 0 19705 GO:0048512 circadian behavior 0 0 19706 GO:0048513 organ development 0 0 19707 GO:0048514 blood vessel morphogenesis 0 0 19708 GO:0048515 spermatid differentiation 0 0 19709 GO:0048516 trichome initiation (sensu Magnoliophyta) (obsolete GO:0048516) 1 0 19710 GO:0048517 positive regulation of trichome initiation (sensu Magnoliophyta) (obsolete GO:0048517) 1 0 19711 GO:0048518 positive regulation of biological process 0 0 19712 GO:0048519 negative regulation of biological process 0 0 19713 GO:0048520 positive regulation of behavior 0 0 19714 GO:0048521 negative regulation of behavior 0 0 19715 GO:0048522 positive regulation of cellular process 0 0 19716 GO:0048523 negative regulation of cellular process 0 0 19717 GO:0048524 positive regulation of viral life cycle 0 0 19718 GO:0048525 negative regulation of viral life cycle 0 0 19719 GO:0048526 wing expansion 0 0 19720 GO:0048527 lateral root development 0 0 19721 GO:0048528 post-embryonic root development 0 0 19722 GO:0048529 magnesium-protoporphyrin IX monomethyl ester (oxidative) cyclase activity 0 0 19723 GO:0048530 fruit morphogenesis 0 0 19724 GO:0048531 beta-1,3-galactosyltransferase activity 0 0 19725 GO:0048532 structural organization 0 0 19726 GO:0048533 sporocyte differentiation 0 0 19727 GO:0048534 hemopoietic or lymphoid organ development 0 0 19728 GO:0048535 lymph node development 0 0 19729 GO:0048536 spleen development 0 0 19730 GO:0048537 mucosal-associated lymphoid tissue development 0 0 19731 GO:0048538 thymus development 0 0 19732 GO:0048539 bone marrow development 0 0 19733 GO:0048540 bursa development 0 0 19734 GO:0048541 Peyer's patch development 0 0 19735 GO:0048542 lymph gland development (sensu Arthropoda) 0 0 19736 GO:0048543 phytochrome chromophore biosynthesis 0 0 19737 GO:0048544 recognition or rejection of self pollen 0 0 19738 GO:0048545 response to steroid hormone stimulus 0 0 19739 GO:0048546 digestive tract morphogenesis 0 0 19740 GO:0048547 gut morphogenesis 0 0 19741 GO:0048548 regulation of pinocytosis 0 0 19742 GO:0048549 positive regulation of pinocytosis 0 0 19743 GO:0048550 negative regulation of pinocytosis 0 0 19744 GO:0048551 metalloenzyme inhibitor activity 0 0 19745 GO:0048552 regulation of metalloenzyme activity 0 0 19746 GO:0048553 negative regulation of metalloenzyme activity 0 0 19747 GO:0048554 positive regulation of metalloenzyme activity 0 0 19748 GO:0048555 generative cell nucleus 0 0 19749 GO:0048556 microsporocyte nucleus 0 0 19750 GO:0048557 embryonic digestive tract morphogenesis 0 0 19751 GO:0048558 embryonic gut morphogenesis 0 0 19752 GO:0048559 establishment of floral organ orientation 0 0 19753 GO:0048560 establishment of anatomical structure orientation 0 0 19754 GO:0048561 establishment of organ orientation 0 0 19755 GO:0048562 embryonic organ morphogenesis 0 0 19756 GO:0048563 post-embryonic organ morphogenesis 0 0 19757 GO:0048564 photosystem I assembly 0 0 19758 GO:0048565 gut development 0 0 19759 GO:0048566 embryonic gut development 0 0 19760 GO:0048567 ectodermal gut morphogenesis 0 0 19761 GO:0048568 embryonic organ development 0 0 19762 GO:0048569 post-embryonic organ development 0 0 19763 GO:0048570 notochord morphogenesis 0 0 19764 GO:0048571 long-day photoperiodism 0 0 19765 GO:0048572 short-day photoperiodism 0 0 19766 GO:0048573 photoperiodism, flowering 0 0 19767 GO:0048574 long-day photoperiodism, flowering 0 0 19768 GO:0048575 short-day photoperiodism, flowering 0 0 19769 GO:0048576 positive regulation of short-day photoperiodism, flowering 0 0 19770 GO:0048577 negative regulation of short-day photoperiodism, flowering 0 0 19771 GO:0048578 positive regulation of long-day photoperiodism, flowering 0 0 19772 GO:0048579 negative regulation of long-day photoperiodism, flowering 0 0 19773 GO:0048580 regulation of post-embryonic development 0 0 19774 GO:0048581 negative regulation of post-embryonic development 0 0 19775 GO:0048582 positive regulation of post-embryonic development 0 0 19776 GO:0048583 regulation of response to stimulus 0 0 19777 GO:0048584 positive regulation of response to stimulus 0 0 19778 GO:0048585 negative regulation of response to stimulus 0 0 19779 GO:0048586 regulation of long-day photoperiodism, flowering 0 0 19780 GO:0048587 regulation of short-day photoperiodism, flowering 0 0 19781 GO:0048588 developmental growth of a unicellular organism 0 0 19782 GO:0048589 developmental growth 0 0 19783 GO:0048590 non-developmental growth 0 0 19784 GO:0048591 non-developmental growth of a unicellular organism 0 0 19785 GO:0048592 eye morphogenesis 0 0 19786 GO:0048593 eye morphogenesis (sensu Vertebrata) 0 0 19787 GO:0048594 eye morphogenesis (sensu Actinopterygii) 0 0 19788 GO:0048595 eye morphogenesis (sensu Mammalia) 0 0 19789 GO:0048596 embryonic eye morphogenesis (sensu Actinopterygii) 0 0 19790 GO:0048597 post-embryonic eye morphogenesis (sensu Actinopterygii) 0 0 19791 GO:0048598 embryonic morphogenesis 0 0 19792 GO:0048599 oocyte development 0 0 19793 GO:0048600 oocyte fate commitment 0 0 19794 GO:0048601 oocyte morphogenesis 0 0 19795 GO:0048602 fibroblast growth factor 1 binding 0 0 19796 GO:0048603 fibroblast growth factor 2 binding 0 0 19797 GO:0048604 fibroblast growth factor 3 binding 0 0 19798 GO:0048605 fibroblast growth factor 4 binding 0 0 19799 GO:0048606 fibroblast growth factor 5 binding 0 0 19800 GO:0048607 fibroblast growth factor 6 binding 0 0 19801 GO:0048608 reproductive structure development 0 0 19802 GO:0048609 reproductive organismal physiological process 0 0 19803 GO:0048610 reproductive cellular physiological process 0 0 19804 GO:0048611 embryonic ectodermal gut development 0 0 19805 GO:0048612 post-embryonic ectodermal gut development 0 0 19806 GO:0048613 embryonic ectodermal gut morphogenesis 0 0 19807 GO:0048614 post-embryonic ectodermal gut morphogenesis 0 0 19808 GO:0048615 embryonic anterior midgut (ectodermal) morphogenesis 0 0 19809 GO:0048616 post-embryonic anterior midgut (ectodermal) morphogenesis 0 0 19810 GO:0048617 embryonic foregut morphogenesis 0 0 19811 GO:0048618 post-embryonic foregut morphogenesis 0 0 19812 GO:0048619 embryonic hindgut morphogenesis 0 0 19813 GO:0048620 post-embryonic hindgut morphogenesis 0 0 19814 GO:0048621 post-embryonic gut morphogenesis 0 0 19815 GO:0048622 reproductive sporulation 0 0 19816 GO:0048623 seed germination on parent plant 0 0 19817 GO:0048624 plantlet formation on parent plant 0 0 19818 GO:0048625 myoblast cell fate commitment 0 0 19819 GO:0048626 myoblast cell fate specification 0 0 19820 GO:0048627 myoblast development 0 0 19821 GO:0048628 myoblast maturation 0 0 19822 GO:0048629 trichome patterning (sensu Magnoliophyta) 0 0 19823 GO:0048630 skeletal muscle growth 0 0 19824 GO:0048631 regulation of skeletal muscle growth 0 0 19825 GO:0048632 negative regulation of skeletal muscle growth 0 0 19826 GO:0048633 positive regulation of skeletal muscle growth 0 0 19827 GO:0048634 regulation of muscle development 0 0 19828 GO:0048635 negative regulation of muscle development 0 0 19829 GO:0048636 positive regulation of muscle development 0 0 19830 GO:0048637 skeletal muscle development 0 0 19831 GO:0048638 regulation of developmental growth 0 0 19832 GO:0048639 positive regulation of developmental growth 0 0 19833 GO:0048640 negative regulation of developmental growth 0 0 19834 GO:0048641 regulation of skeletal muscle development 0 0 19835 GO:0048642 negative regulation of skeletal muscle development 0 0 19836 GO:0048643 positive regulation of skeletal muscle development 0 0 19837 GO:0048644 muscle morphogenesis 0 0 19838 GO:0048645 organ formation 0 0 19839 GO:0048646 anatomical structure formation 0 0 19840 GO:0048647 polyphenic determination 0 0 19841 GO:0048648 caste determination 0 0 19842 GO:0048649 caste determination, influence by genetic factors 0 0 19843 GO:0048650 caste determination, influence by environmental factors 0 0 19844 GO:0048651 polyphenic determination, influence by environmental factors 0 0 19845 GO:0048652 polyphenic determination, influence by genetic factors 0 0 19846 GO:0048653 anther development 0 0 19847 GO:0048654 anther morphogenesis 0 0 19848 GO:0048655 tapetal layer morphogenesis 0 0 19849 GO:0048656 tapetal layer formation 0 0 19850 GO:0048657 tapetal cell differentiation 0 0 19851 GO:0048658 tapetal layer development 0 0 19852 GO:0048659 smooth muscle cell proliferation 0 0 19853 GO:0048660 regulation of smooth muscle cell proliferation 0 0 19854 GO:0048661 positive regulation of smooth muscle cell proliferation 0 0 19855 GO:0048662 negative regulation of smooth muscle cell proliferation 0 0 19856 GO:0048663 neuron fate commitment 0 0 19857 GO:0048664 neuron fate determination 0 0 19858 GO:0048665 neuron fate specification 0 0 19859 GO:0048666 neuron development 0 0 19860 GO:0048667 neuron morphogenesis during differentiation 0 0 19861 GO:0048668 collateral sprouting 0 0 19862 GO:0048669 collateral sprouting in the absence of injury 0 0 19863 GO:0048670 regulation of collateral sprouting 0 0 19864 GO:0048671 negative regulation of collateral sprouting 0 0 19865 GO:0048672 positive regulation of collateral sprouting 0 0 19866 GO:0048673 collateral sprouting of intact axon in response to injury 0 0 19867 GO:0048674 collateral sprouting of injured axon 0 0 19868 GO:0048675 axon extension 0 0 19869 GO:0048676 axon extension during development 0 0 19870 GO:0048677 axon extension during regeneration 0 0 19871 GO:0048678 response to axon injury 0 0 19872 GO:0048679 regulation of axon regeneration 0 0 19873 GO:0048680 positive regulation of axon regeneration 0 0 19874 GO:0048681 negative regulation of axon regeneration 0 0 19875 GO:0048682 sprouting of injured axon 0 0 19876 GO:0048683 regulation of collateral sprouting of intact axon in response to injury 0 0 19877 GO:0048684 positive regulation of collateral sprouting of intact axon in response to injury 0 0 19878 GO:0048685 negative regulation of collateral sprouting of intact axon in response to injury 0 0 19879 GO:0048686 regulation of sprouting of injured axon 0 0 19880 GO:0048687 positive regulation of sprouting of injured axon 0 0 19881 GO:0048688 negative regulation of sprouting of injured axon 0 0 19882 GO:0048689 formation of growth cone in injured axon 0 0 19883 GO:0048690 regulation of axon extension during regeneration 0 0 19884 GO:0048691 positive regulation of axon extension during regeneration 0 0 19885 GO:0048692 negative regulation of axon extension during regeneration 0 0 19886 GO:0048693 regulation of collateral sprouting of injured axon 0 0 19887 GO:0048694 positive regulation of collateral sprouting of injured axon 0 0 19888 GO:0048695 negative regulation of collateral sprouting of injured axon 0 0 19889 GO:0048696 regulation of collateral sprouting in the absence of injury 0 0 19890 GO:0048697 positive regulation of collateral sprouting in the absence of injury 0 0 19891 GO:0048698 negative regulation of collateral sprouting in the absence of injury 0 0 19892 GO:0048699 neurogenesis 0 0 19893 GO:0048700 acquisition of desiccation tolerance 0 0 19894 GO:0048701 embryonic cranial skeleton morphogenesis 0 0 19895 GO:0048702 embryonic neurocranium morphogenesis 0 0 19896 GO:0048703 embryonic viscerocranium morphogenesis 0 0 19897 GO:0048704 embryonic skeletal morphogenesis 0 0 19898 GO:0048705 skeletal morphogenesis 0 0 19899 GO:0048706 embryonic skeletal development 0 0 19900 GO:0048707 larval or pupal morphogenesis (sensu Insecta) 0 0 19901 GO:0048708 astrocyte differentiation 0 0 19902 GO:0048709 oligodendrocyte differentiation 0 0 19903 GO:0048710 regulation of astrocyte differentiation 0 0 19904 GO:0048711 positive regulation of astrocyte differentiation 0 0 19905 GO:0048712 negative regulation of astrocyte differentiation 0 0 19906 GO:0048713 regulation of oligodendrocyte differentiation 0 0 19907 GO:0048714 positive regulation of oligodendrocyte differentiation 0 0 19908 GO:0048715 negative regulation of oligodendrocyte differentiation 0 0 19909 GO:0048716 labrum morphogenesis 0 0 19910 GO:0048717 anterior cibarial plate morphogenesis 0 0 19911 GO:0048718 fish trap bristle morphogenesis 0 0 19912 GO:0048719 epistomal sclerite morphogenesis 0 0 19913 GO:0048720 posterior cibarial plate morphogenesis 0 0 19914 GO:0048721 clypeus morphogenesis 0 0 19915 GO:0048722 anterior cibarial plate development 0 0 19916 GO:0048723 clypeus development 0 0 19917 GO:0048724 epistomal sclerite development 0 0 19918 GO:0048725 fish trap bristle development 0 0 19919 GO:0048726 labrum development 0 0 19920 GO:0048727 posterior cibarial plate development 0 0 19921 GO:0048728 proboscis development 0 0 19922 GO:0048729 tissue morphogenesis 0 0 19923 GO:0048730 epidermis morphogenesis 0 0 19924 GO:0048731 system development 0 0 19925 GO:0048732 gland development 0 0 19926 GO:0048733 sebaceous gland development 0 0 19927 GO:0048734 proboscis morphogenesis 0 0 19928 GO:0048735 haltere morphogenesis 0 0 19929 GO:0048736 appendage development 0 0 19930 GO:0048737 appendage development (sensu Endopterygota) 0 0 19931 GO:0048738 cardiac muscle development 0 0 19932 GO:0048739 cardiac muscle fiber development 0 0 19933 GO:0048740 striated muscle fiber development 0 0 19934 GO:0048741 skeletal muscle fiber development 0 0 19935 GO:0048742 regulation of skeletal muscle fiber development 0 0 19936 GO:0048743 positive regulation of skeletal muscle fiber development 0 0 19937 GO:0048744 negative regulation of skeletal muscle fiber development 0 0 19938 GO:0048745 smooth muscle development 0 0 19939 GO:0048746 smooth muscle fiber development 0 0 19940 GO:0048747 muscle fiber development 0 0 19941 GO:0048748 eye morphogenesis (sensu Endopterygota) 0 0 19942 GO:0048749 compound eye development (sensu Endopterygota) 0 0 19943 GO:0048750 corneal lens morphogenesis (sensu Endopterygota) 0 0 19944 GO:0048752 semicircular canal morphogenesis 0 0 19945 GO:0048753 pigment granule organization and biogenesis 0 0 19946 GO:0048754 branching morphogenesis of a tube 0 0 19947 GO:0048755 branching morphogenesis of a nerve 0 0 19948 GO:0048756 sieve cell differentiation 0 0 19949 GO:0048757 pigment granule maturation 0 0 19950 GO:0048758 companion cell differentiation 0 0 19951 GO:0048759 vessel member cell differentiation 0 0 19952 GO:0048760 parenchymal cell differentiation 0 0 19953 GO:0048761 collenchyma cell differentiation 0 0 19954 GO:0048762 mesenchymal cell differentiation 0 0 19955 GO:0048763 calcium-induced calcium release activity 0 0 19956 GO:0048764 trichoblast maturation 0 0 19957 GO:0048765 root hair cell differentiation 0 0 19958 GO:0048766 root hair initiation 0 0 19959 GO:0048767 root hair elongation 0 0 19960 GO:0048768 root hair cell tip growth 0 0 19961 GO:0048769 sarcomerogenesis 0 0 19962 GO:0048770 pigment granule 0 0 19963 GO:0048771 tissue remodeling 0 0 19964 GO:0048772 leucophore differentiation 0 0 19965 GO:0048773 erythrophore differentiation 0 0 19966 GO:0048774 cyanophore differentiation 0 0 19967 GO:0048775 regulation of leucophore differentiation 0 0 19968 GO:0048776 negative regulation of leucophore differentiation 0 0 19969 GO:0048777 positive regulation of leucophore differentiation 0 0 19970 GO:0048778 regulation of erythrophore differentiation 0 0 19971 GO:0048779 negative regulation of erythrophore differentiation 0 0 19972 GO:0048780 positive regulation of erythrophore differentiation 0 0 19973 GO:0048781 regulation of cyanophore differentiation 0 0 19974 GO:0048782 negative regulation of cyanophore differentiation 0 0 19975 GO:0048783 positive regulation of cyanophore differentiation 0 0 19976 GO:0048784 pigment biosynthesis during pigment granule maturation 0 0 19977 GO:0048785 hatching gland development 0 0 19978 GO:0048786 presynaptic active zone 0 0 19979 GO:0048787 active zone presynaptic plasma membrane 0 0 19980 GO:0048788 presynaptic cytoskeletal matrix assembled at active zones 0 0 19981 GO:0048789 cytoskeletal matrix organization at active zone 0 0 19982 GO:0048790 maintenance of presynaptic active zone structure 0 0 19983 GO:0048791 calcium ion dependent exocytosis of neurotransmitter 0 0 19984 GO:0048792 calcium ion independent exocytosis of neurotransmitter 0 0 19985 GO:0048793 pronephros development 0 0 19986 GO:0048794 swim bladder development 0 0 19987 GO:0048795 swim bladder morphogenesis 0 0 19988 GO:0048796 swim bladder maturation 0 0 19989 GO:0048797 swim bladder formation 0 0 19990 GO:0048798 swim bladder inflation 0 0 19991 GO:0048799 organ maturation 0 0 19992 GO:0048800 antennal morphogenesis 0 0 19993 GO:0048801 antennal joint morphogenesis 0 0 19994 GO:0048802 notum morphogenesis 0 0 19995 GO:0048803 male genitalia morphogenesis (sensu Endopterygota) 0 0 19996 GO:0048804 female genitalia morphogenesis (sensu Endopterygota) 0 0 19997 GO:0048805 genitalia morphogenesis (sensu Endopterygota) 0 0 19998 GO:0048806 genitalia development 0 0 19999 GO:0048807 female genitalia morphogenesis 0 0 20000 GO:0048808 male genitalia morphogenesis 0 0 20001 GO:0048809 analia morphogenesis (sensu Endopterygota) 0 0 20002 GO:0048810 female analia morphogenesis (sensu Endopterygota) 0 0 20003 GO:0048811 male analia morphogenesis (sensu Endopterygota) 0 0 20004 GO:0048812 neurite morphogenesis 0 0 20005 GO:0048813 dendrite morphogenesis 0 0 20006 GO:0048814 regulation of dendrite morphogenesis 0 0 20007 GO:0048815 hermaphrodite genitalia morphogenesis 0 0 20008 GO:0048816 ocellus morphogenesis 0 0 20009 GO:0048817 negative regulation of hair follicle maturation 0 0 20010 GO:0048818 positive regulation of hair follicle maturation 0 0 20011 GO:0048819 regulation of hair follicle maturation 0 0 20012 GO:0048820 hair follicle maturation 0 0 20013 GO:0048821 erythrocyte development 0 0 20014 GO:0048822 enucleate erythrocyte development 0 0 20015 GO:0048823 nucleate erythrocyte development 0 0 20016 GO:0048824 pigment cell precursor differentiation 0 0 20017 GO:0048825 cotyledon development 0 0 20018 GO:0048826 cotyledon morphogenesis 0 0 20019 GO:0048827 phyllome development 0 0 20020 GO:0048828 embryonic morphogenesis (sensu Magnoliophyta) 0 0 20021 GO:0048829 root cap development 0 0 20022 GO:0048830 adventitious root development 0 0 20023 GO:0048831 regulation of shoot development 0 0 20024 GO:0048832 regulation of organ number 0 0 20025 GO:0048833 regulation of floral organ number 0 0 20026 GO:0048834 regulation of petal number 0 0 20027 GO:0048835 negative regulation of petal number 0 0 20028 GO:0048836 positive regulation of petal number 0 0 20029 GO:0048837 sorus development 0 0 20030 GO:0048838 release of seed from dormancy 0 0 20031 GO:0048839 inner ear development 0 0 20032 GO:0048840 otolith development 0 0 20033 GO:0048841 regulation of axon extension involved in axon guidance 0 0 20034 GO:0048842 positive regulation of axon extension involved in axon guidance 0 0 20035 GO:0048843 negative regulation of axon extension involved in axon guidance 0 0 20036 GO:0050000 chromosome localization 0 0 20037 GO:0050001 D-glutaminase activity 0 0 20038 GO:0050002 D-proline reductase (dithiol) activity 0 0 20039 GO:0050003 deoxycytidylate C-methyltransferase activity 0 0 20040 GO:0050004 isoflavone 7-O-glucosyltransferase activity 0 0 20041 GO:0050005 isohexenylglutaconyl-CoA hydratase activity 0 0 21706 GO:0051675 isopullulanase activity 0 0 21707 GO:0051676 pullulan metabolism 0 0 21708 GO:0051677 pullulan biosynthesis 0 0 21709 GO:0051678 pullulan catabolism 0 0 21710 GO:0051679 6-alpha-maltosylglucose metabolism 0 0 21711 GO:0051680 6-alpha-maltosylglucose biosynthesis 0 0 21712 GO:0051681 6-alpha-maltosylglucose catabolism 0 0 21713 GO:0051682 galactomannan catabolism 0 0 21714 GO:0051683 establishment of Golgi localization 0 0 21715 GO:0051684 maintenance of Golgi localization 0 0 21716 GO:0051685 maintenance of ER localization 0 0 21717 GO:0051686 establishment of ER localization 0 0 21718 GO:0051687 maintenance of spindle localization 0 0 21719 GO:0051688 maintenance of plastid localization 0 0 21720 GO:0051689 organismal oligosaccharide catabolism 0 0 21721 GO:0051690 organismal oligosaccharide metabolism 0 0 21722 GO:0051691 cellular oligosaccharide metabolism 0 0 21723 GO:0051692 cellular oligosaccharide catabolism 0 0 21724 GO:0051693 actin filament capping 0 0 21725 GO:0051694 pointed-end actin filament capping 0 0 21726 GO:0051695 actin filament uncapping 0 0 21727 GO:0051696 pointed-end actin filament uncapping 0 0 21728 GO:0051697 protein delipidation 0 0 21729 GO:0051698 saccharopine oxidase activity 0 0 21730 GO:0051699 proline oxidase activity 0 0 21731 GO:0051700 fructosyl-amino acid oxidase activity 0 0 21732 GO:0051701 interaction with host 0 0 21733 GO:0051702 interaction with symbiont 0 0 21734 GO:0051703 intraspecies interaction between organisms 0 0 21735 GO:0051704 interaction between organisms 0 0 21736 GO:0051705 behavioral interaction between organisms 0 0 21737 GO:0051706 physiological interaction between organisms 0 0 21738 GO:0051707 response to other organism 0 0 21739 GO:0051708 intracellular protein transport in other organism during symbiotic interaction 0 0 21740 GO:0051709 regulation of killing of cells of another organism 0 0 21741 GO:0051710 regulation of cytolysis of cells of another organism 0 0 21742 GO:0051711 negative regulation of killing of cells of another organism 0 0 21743 GO:0051712 positive regulation of killing of cells of another organism 0 0 21744 GO:0051713 negative regulation of cytolysis of cells of another organism 0 0 21745 GO:0051714 positive regulation of cytolysis of cells of another organism 0 0 21746 GO:0051715 cytolysis of cells of another organism 0 0 21747 GO:0051716 cellular response to stimulus 0 0 21748 GO:0051717 inositol-1,3,4,5-tetrakisphosphate 3-phosphatase activity 0 0 21749 GO:0051718 DNA (cytosine-5-)-methyltransferase activity, acting on CpG substrates 0 0 21750 GO:0051719 DNA (cytosine-5-)-methyltransferase activity, acting on CpN substrates 0 0 21751 GO:0051720 DNA (cytosine-5-)-methyltransferase activity, acting on CpNpG substrates 0 0 21752 GO:0051721 protein phosphatase 2A binding 0 0 21753 GO:0051722 protein C-terminal methylesterase activity 0 0 21754 GO:0051723 protein methylesterase activity 0 0 21755 GO:0051724 NAD transporter activity 0 0 21756 GO:0051725 protein amino acid de-ADP-ribosylation 0 0 21757 GO:0051726 regulation of cell cycle 0 0 21758 GO:0051727 cell cycle switching, meiotic to mitotic cell cycle 0 0 21759 GO:0051728 cell cycle switching, mitotic to meiotic cell cycle 0 0 21760 GO:0051729 germline cell cycle switching, mitotic to meiotic cell cycle 0 0 21761 GO:0051730 GTP-dependent polyribonucleotide 5'-hydroxyl-kinase activity 0 0 21762 GO:0051731 polynucleotide kinase activity 0 0 21763 GO:0051732 polyribonucleotide kinase activity 0 0 21764 GO:0051733 polydeoxyribonucleotide kinase activity 0 0 21765 GO:0051734 ATP-dependent polynucleotide kinase activity 0 0 21766 GO:0051735 GTP-dependent polynucleotide kinase activity 0 0 21767 GO:0051736 ATP-dependent polyribonucleotide 5'-hydroxyl-kinase activity 0 0 21768 GO:0051737 GTP-dependent polydeoxyribonucleotide 5'-hydroxyl-kinase activity 0 0 21769 GO:0051738 xanthophyll binding 0 0 21770 GO:0051739 ammonia transporter activity 0 0 21771 GO:0051740 ethylene binding 0 0 21772 GO:0051741 2-methyl-6-phytyl-1,4-benzoquinone methyltransferase activity 0 0 21773 GO:0051742 2-methyl-6-solanyl-1,4-benzoquinone methyltransferase activity 0 0 21774 GO:0051743 red chlorophyll catabolite reductase activity 0 0 21775 GO:0051744 3,8-divinyl protochlorophyllide a 8-vinyl reductase activity 0 0 21776 GO:0051745 4-hydroxy-3-methylbut-2-en-1-yl diphosphate reductase activity 0 0 21777 GO:0051746 thalianol synthase activity 0 0 21778 GO:0051747 DNA demethylase activity 0 0 21779 GO:0051748 UDP-sugar pyrophosphorylase activity 0 0 21780 GO:0051749 indole acetic acid carboxyl methyltransferase activity 0 0 21781 GO:0051750 delta3,5-delta2,4-dienoyl-CoA isomerase activity 0 0 21782 GO:0051751 alpha-1,4-mannosyltransferase activity 0 0 21783 GO:0051752 phosphoglucan, water dikinase activity 0 0 21784 GO:0051753 mannan synthase activity 0 0 21785 GO:0051754 meiotic sister chromatid cohesion, centromeric 0 0 21786 GO:0051755 meiotic sister chromatid arm separation 0 0 21787 GO:0051756 meiotic sister chromatid centromere separation 0 0 21788 GO:0051757 meiotic sister chromatid separation 0 0 21789 GO:0051758 homologous chromosome movement towards spindle pole during meiosis I 0 0 21790 GO:0051759 sister chromosome movement towards spindle pole during meiosis II 0 0 21791 GO:0051760 meiotic sister chromatid cohesion, arms 0 0 21792 GO:0051761 sesquiterpene metabolism 0 0 21793 GO:0051762 sesquiterpene biosynthesis 0 0 21794 GO:0051763 sesquiterpene catabolism 0 0 21795 GO:0051764 actin crosslink formation 0 0 21796 GO:0051765 inositol tetrakisphosphate kinase activity 0 0 21797 GO:0051766 inositol trisphosphate kinase activity 0 0 21798 GO:0051767 nitric-oxide synthase biosynthesis 0 0 21799 GO:0051768 nitric-oxide synthase 2 biosynthesis 0 0 21800 GO:0051769 regulation of nitric-oxide synthase biosynthesis 0 0 21801 GO:0051770 positive regulation of nitric-oxide synthase biosynthesis 0 0 21802 GO:0051771 negative regulation of nitric-oxide synthase biosynthesis 0 0 21803 GO:0051772 regulation of nitric-oxide synthase 2 biosynthesis 0 0 21804 GO:0051773 positive regulation of nitric-oxide synthase 2 biosynthesis 0 0 21805 GO:0051774 negative regulation of nitric-oxide synthase 2 biosynthesis 0 0 21806 GO:0051775 response to redox state 0 0 21807 GO:0051776 detection of redox state 0 0 21808 GO:0051777 ent-kaurenoate oxidase activity 0 0 21809 GO:0051778 ent-7-alpha-hydroxykaurenoate oxidase activity 0 0 21810 GO:0051779 gibberellin 12-aldehyde oxidase activity 0 0 21811 GO:0051780 behavioral response to nutrient 0 0 21812 GO:0051781 positive regulation of cell division 0 0 21813 GO:0051782 negative regulation of cell division 0 0 21814 GO:0051783 regulation of nuclear division 0 0 21815 GO:0051784 negative regulation of nuclear division 0 0 21816 GO:0051785 positive regulation of nuclear division 0 0 21817 GO:0051786 all-trans-retinol 13,14-reductase activity 0 0 21818 GO:0051787 misfolded protein binding 0 0 21819 GO:0051788 response to misfolded protein 0 0 21820 GO:0051789 response to protein stimulus 0 0 21821 GO:0051790 short-chain fatty acid biosynthesis 0 0 21822 GO:0051791 medium-chain fatty acid metabolism 0 0 21823 GO:0051792 medium-chain fatty acid biosynthesis 0 0 21824 GO:0051793 medium-chain fatty acid catabolism 0 0 21825 GO:0051794 regulation of catagen 0 0 21826 GO:0051795 positive regulation of catagen 0 0 21827 GO:0051796 negative regulation of catagen 0 0 21828 GO:0051797 regulation of hair follicle development 0 0 21829 GO:0051798 positive regulation of hair follicle development 0 0 21830 GO:0051799 negative regulation of hair follicle development 0 0 21831 GO:0051800 phosphatidylinositol-3,4-bisphosphate 3-phosphatase activity 0 0 21832 GO:0051801 cytolysis of cells of other organism during symbiotic interaction 0 0 21833 GO:0051802 regulation of cytolysis of cells of other organism during symbiotic interaction 0 0 21834 GO:0051803 negative regulation of cytolysis of cells of other organism during symbiotic interaction 0 0 21835 GO:0051804 positive regulation of cytolysis of cells of other organism during symbiotic interaction 0 0 21836 GO:0051805 evasion of immune response of other organism during symbiotic interaction 0 0 21837 GO:0051806 entry into cell of other organism during symbiotic interaction 0 0 21838 GO:0051807 evasion of defense response of other organism during symbiotic interaction 0 0 21839 GO:0051808 translocation of peptides or proteins into other organism during symbiotic interaction 0 0 21840 GO:0051809 passive evasion of immune response of other organism during symbiotic interaction 0 0 21841 GO:0051810 active evasion of immune response of other organism during symbiotic interaction 0 0 21842 GO:0051811 active evasion of immune response of other organism via regulation of complement system during symbiotic interaction 0 0 21843 GO:0051812 active evasion of immune response of other organism via modification of cytokine network of other organism during symbiotic interaction 0 0 21844 GO:0051813 active evasion of immune response of other organism via regulation of antigen-processing or presentation pathway during symbiotic interaction 0 0 21845 GO:0051814 movement within other organism during symbiotic interaction 0 0 21846 GO:0051815 migration within other organism during symbiotic interaction 0 0 21847 GO:0051816 acquisition of nutrients from other organism during symbiotic interaction 0 0 21848 GO:0051817 modification of morphology or physiology of other organism during symbiotic interaction 0 0 21849 GO:0051818 disruption of cells of other organism during symbiotic interaction 0 0 21850 GO:0051819 induction of tumor, nodule, or growth in other organism during symbiotic interaction 0 0 21851 GO:0051820 induction of tumor, nodule, or growth containing transformed cells in other organism during symbiotic interaction 0 0 21852 GO:0051821 dissemination or transmission of organism from other organism during symbiotic interaction 0 0 21853 GO:0051822 dissemination or transmission of organism from other organism by vector during symbiotic interaction 0 0 21854 GO:0051823 regulation of synapse structural plasticity 0 0 21855 GO:0051824 recognition of other organism during symbiotic interaction 0 0 21856 GO:0051825 adhesion to other organism during symbiotic interaction 0 0 21857 GO:0051826 negative regulation of synapse structural plasticity 0 0 21858 GO:0051827 growth on or near surface of other organism during symbiotic interaction 0 0 21859 GO:0051828 entry into other organism during symbiotic interaction 0 0 21860 GO:0051829 entry into other organism through natural portals during symbiotic interaction 0 0 21861 GO:0051830 entry into other organism through barriers of other organism during symbiotic interaction 0 0 21862 GO:0051831 growth within other organism during symbiotic interaction 0 0 21863 GO:0051832 avoidance of defenses of other organism during symbiotic interaction 0 0 21864 GO:0051833 suppression of defenses of other organism during symbiotic interaction 0 0 21865 GO:0051834 evasion of defenses of other organism during symbiotic interaction 0 0 21866 GO:0051835 positive regulation of synapse structural plasticity 0 0 21867 GO:0051836 translocation of molecules into other organism during symbiotic interaction 0 0 21868 GO:0051837 translocation of DNA into other organism during symbiotic interaction 0 0 21869 GO:0051838 cytolysis of symbiont cells 0 0 21870 GO:0051839 regulation of cytolysis of symbiont cells 0 0 21871 GO:0051840 negative regulation of cytolysis of symbiont cells 0 0 21872 GO:0051841 positive regulation of cytolysis of symbiont cells 0 0 21873 GO:0051842 evasion of symbiont immune response 0 0 21874 GO:0051843 evasion of symbiont defense response 0 0 21875 GO:0051844 translocation of peptides or proteins into symbiont 0 0 21876 GO:0051845 passive evasion of symbiont immune response 0 0 21877 GO:0051846 active evasion of symbiont immune response 0 0 21878 GO:0051847 active evasion of symbiont immune response via regulation of complement system 0 0 21879 GO:0051848 active evasion of symbiont immune response via regulation of cytokine network 0 0 21880 GO:0051849 active evasion of symbiont immune response via regulation of antigen-processing or presentation pathway 0 0 21881 GO:0051850 acquisition of nutrients from symbiont 0 0 21882 GO:0051851 modification of symbiont morphology or physiology 0 0 21883 GO:0051852 disruption of symbiont cells 0 0 21884 GO:0051853 induction in symbiont of tumor, nodule, or growth 0 0 21885 GO:0051854 induction in symbiont of tumor, nodule, or growth containing transformed cells 0 0 21886 GO:0051855 recognition of symbiont 0 0 21887 GO:0051856 adhesion to symbiont 0 0 21888 GO:0051857 growth on or near symbiont surface 0 0 21889 GO:0051858 avoidance of symbiont defenses 0 0 21890 GO:0051859 suppression of symbiont defenses 0 0 21891 GO:0051860 evasion of symbiont defenses 0 0 21892 GO:0051861 glycolipid binding 0 0 21893 GO:0051862 translocation of molecules into symbiont 0 0 21894 GO:0051863 translocation of DNA into symbiont 0 0 21895 GO:0051864 histone demethylase activity (H3-K36 specific) 0 0 21896 GO:0051865 protein autoubiquitination 0 0 21897 GO:0051866 general adaptation syndrome 0 0 21898 GO:0051867 general adaptation syndrome, behavioral process 0 0 21899 GO:0051868 general adaptation syndrome, physiological process 0 0 21900 GO:0051869 physiological response to stimulus 0 0 21901 GO:0051870 methotrexate binding 0 0 21902 GO:0051871 dihydrofolic acid binding 0 0 21903 GO:0051872 sphingosine catabolism 0 0 21904 GO:0051873 killing of symbiont cells 0 0 21905 GO:0051874 sphinganine-1-phosphate catabolism 0 0 21906 GO:0051875 pigment granule localization 0 0 21907 GO:0051876 pigment granule dispersal 0 0 21908 GO:0051877 pigment granule aggregation in cell center 0 0 21909 GO:0051878 lateral element assembly 0 0 21910 GO:0051879 Hsp90 protein binding 0 0 21911 GO:0051880 G-quadruplex DNA binding 0 0 21912 GO:0051881 regulation of mitochondrial membrane potential 0 0 21913 GO:0051882 mitochondrial depolarization 0 0 21914 GO:0051883 killing of cells of other organism during symbiotic interaction 0 0 21915 GO:0051884 regulation of anagen 0 0 21916 GO:0051885 positive regulation of anagen 0 0 21917 GO:0051886 negative regulation of anagen 0 0 21918 GO:0051887 regulation of exogen 0 0 21919 GO:0051888 positive regulation of exogen 0 0 21920 GO:0051889 negative regulation of exogen 0 0 21921 GO:0051890 regulation of cardioblast differentiation 0 0 21922 GO:0051891 positive regulation of cardioblast differentiation 0 0 21923 GO:0051892 negative regulation of cardioblast differentiation 0 0 21924 GO:0051893 regulation of focal adhesion formation 0 0 21925 GO:0051894 positive regulation of focal adhesion formation 0 0 21926 GO:0051895 negative regulation of focal adhesion formation 0 0 21927 GO:0051896 regulation of protein kinase B signaling cascade 0 0 21928 GO:0051897 positive regulation of protein kinase B signaling cascade 0 0 21929 GO:0051898 negative regulation of protein kinase B signaling cascade 0 0 21930 GO:0051899 membrane depolarization 0 0 21931 GO:0051900 regulation of mitochondrial depolarization 0 0 21932 GO:0051901 positive regulation of mitochondrial depolarization 0 0 21933 GO:0051902 negative regulation of mitochondrial depolarization 0 0 21934 GO:0051903 S-(hydroxymethyl)glutathione dehydrogenase activity 0 0 21935 GO:0051904 pigment granule transport 0 0 21936 GO:0051905 establishment of pigment granule localization 0 0 21937 GO:0051906 maintenance of pigment granule localization 0 0 21938 GO:0051907 S-(hydroxymethyl)glutathione synthase activity 0 0 21939 GO:0051908 double-stranded DNA specific 5'-3' exodeoxyribonuclease activity 0 0 21940 GO:0051909 acetylenecarboxylate hydratase activity, producing 3-hydroxypropenoate 0 0 21941 GO:0051910 heparitin sulfotransferase activity 0 0 21942 GO:0051911 Methanosarcina-phenazine hydrogenase activity 0 0 21943 GO:0051912 CoB--CoM heterodisulfide reductase activity 0 0 21944 GO:0051913 regulation of synaptic plasticity by chemical substance 0 0 21945 GO:0051914 positive regulation of synaptic plasticity by chemical substance 0 0 21946 GO:0051915 induction of synaptic plasticity by chemical substance 0 0 21947 GO:0051916 granulocyte colony-stimulating factor binding 0 0 21948 GO:0051917 regulation of fibrinolysis 0 0 21949 GO:0051918 negative regulation of fibrinolysis 0 0 21950 GO:0051919 positive regulation of fibrinolysis 0 0 21951 GO:0051920 peroxiredoxin activity 0 0 21952 GO:0051921 adenosylcobyric acid synthase (glutamine-hydrolyzing) activity 0 0 21953 GO:0051922 cholesterol sulfotransferase activity 0 0 21954 GO:0051923 sulfation 0 0 21955 GO:0051924 regulation of calcium ion transport 0 0 21956 GO:0051925 regulation of calcium ion transport via voltage-gated calcium channel 0 0 21957 GO:0051926 negative regulation of calcium ion transport 0 0 21958 GO:0051927 negative regulation of calcium ion transport via voltage gated calcium channel 0 0 21959 GO:0051928 positive regulation of calcium ion transport 0 0 21960 GO:0051929 positive regulation of calcium ion transport via voltage gated calcium channel 0 0 21961 GO:0051930 regulation of sensory perception of pain 0 0 21962 GO:0051931 regulation of sensory perception 0 0 21963 GO:0051932 synaptic transmission, GABAergic 0 0 21964 GO:0051933 amino acid uptake during transmission of nerve impulse 0 0 21965 GO:0051934 catecholamine uptake during transmission of nerve impulse 0 0 21966 GO:0051935 glutamate uptake during transmission of nerve impulse 0 0 21967 GO:0051936 gamma-aminobutyric acid uptake during transmission of nerve impulse 0 0 21968 GO:0051937 catecholamine transport 0 0 21969 GO:0051938 L-glutamate import 0 0 21970 GO:0051939 gamma-aminobutyric acid import 0 0 21971 GO:0051940 regulation of catecholamine uptake during transmission of nerve impulse 0 0 21972 GO:0051941 regulation of amino acid uptake during transmission of nerve impulse 0 0 21973 GO:0051942 negative regulation of amino acid uptake during transmission of nerve impulse 0 0 21974 GO:0051943 positive regulation of amino acid uptake during transmission of nerve impulse 0 0 21975 GO:0051944 positive regulation of catecholamine uptake during transmission of nerve impulse 0 0 21976 GO:0051945 negative regulation of catecholamine uptake during transmission of nerve impulse 0 0 21977 GO:0051946 regulation of glutamate uptake during transmission of nerve impulse 0 0 21978 GO:0051947 regulation of gamma-aminobutyric acid uptake during transmission of nerve impulse 0 0 21979 GO:0051948 negative regulation of glutamate uptake during transmission of nerve impulse 0 0 21980 GO:0051949 negative regulation of gamma-aminobutyric acid uptake during transmission of nerve impulse 0 0 21981 GO:0051950 positive regulation of gamma-aminobutyric acid uptake during transmission of nerve impulse 0 0 21982 GO:0051951 positive regulation of glutamate uptake during transmission of nerve impulse 0 0 21983 GO:0051952 regulation of amine transport 0 0 21984 GO:0051953 negative regulation of amine transport 0 0 21985 GO:0051954 positive regulation of amine transport 0 0 21986 GO:0051955 regulation of amino acid transport 0 0 21987 GO:0051956 negative regulation of amino acid transport 0 0 21988 GO:0051957 positive regulation of amino acid transport 0 0 21989 GO:0051958 methotrexate transport 0 0 21990 GO:0051959 dynein light intermediate chain binding 0 0 21991 GO:0051960 regulation of nervous system development 0 0 21992 GO:0051961 negative regulation of nervous system development 0 0 21993 GO:0051962 positive regulation of nervous system development 0 0 21994 GO:0051963 regulation of synaptogenesis 0 0 21995 GO:0051964 negative regulation of synaptogenesis 0 0 21996 GO:0051965 positive regulation of synaptogenesis 0 0 21997 GO:0051966 regulation of synaptic transmission, glutamatergic 0 0 21998 GO:0051967 negative regulation of synaptic transmission, glutamatergic 0 0 21999 GO:0051968 positive regulation of synaptic transmission, glutamatergic 0 0 22000 GO:0051969 regulation of transmission of nerve impulse 0 0 22001 GO:0051970 negative regulation of transmission of nerve impulse 0 0 22002 GO:0051971 positive regulation of transmission of nerve impulse 0 0 22003 GO:0051972 regulation of telomerase activity 0 0 22004 GO:0051973 positive regulation of telomerase activity 0 0 22005 GO:0051974 negative regulation of telomerase activity 0 0 22006 GO:0051975 lysine biosynthesis via alpha-aminoadipate and saccharopine 0 0 22007 GO:0051976 lysine biosynthesis via alpha-aminoadipate and N2-acetyl-alpha-aminoadipate 0 0 22008 GO:0051977 lysophospholipid transport 0 0 22009 GO:0051978 lysophospholipid transporter activity 0 0 22010 GO:0051979 alginic acid acetylation 0 0 22011 GO:0051980 iron-nicotianamine transporter activity 0 0 22012 GO:0051981 copper chelate transporter activity 0 0 22013 GO:0051982 copper-nicotianamine transporter activity 0 0 22014 GO:0051983 regulation of chromosome segregation 0 0 22015 GO:0051984 positive regulation of chromosome segregation 0 0 22016 GO:0051985 negative regulation of chromosome segregation 0 0 22017 GO:0051986 negative regulation of attachment of spindle microtubules to kinetochore 0 0 22018 GO:0051987 positive regulation of attachment of spindle microtubules to kinetochore 0 0 22019 GO:0051988 regulation of attachment of spindle microtubules to kinetochore 0 0 22020 GO:0051989 coproporphyrinogen dehydrogenase activity 0 0 22021 GO:0051990 (R)-2-hydroxyglutarate dehydrogenase activity 0 0 36 internal:exact exact 0 0 1744 GO:0001575 globoside metabolism 0 0 1745 GO:0001576 globoside biosynthesis 0 0 1746 GO:0001577 galectin (obsolete GO:0001577) 1 0 1747 GO:0001578 microtubule bundle formation 0 0 1748 GO:0001579 medium-chain fatty acid transport 0 0 1749 GO:0001580 detection of chemical stimulus during sensory perception of bitter taste 0 0 1750 GO:0001581 detection of chemical stimulus during sensory perception of sour taste 0 0 1751 GO:0001582 detection of chemical stimulus during sensory perception of sweet taste 0 0 1752 GO:0001583 detection of chemical stimulus during sensory perception of salty taste 0 0 1753 GO:0001584 rhodopsin-like receptor activity 0 0 1754 GO:0001586 5-HT1 receptor activity 0 0 1755 GO:0001587 5-HT2 receptor activity 0 0 1756 GO:0001588 dopamine D1 receptor-like receptor activity 0 0 1757 GO:0001589 dopamine D5 receptor activity 0 0 1758 GO:0001590 dopamine D1 receptor activity 0 0 1759 GO:0001591 dopamine D2 receptor-like receptor activity 0 0 1760 GO:0001592 dopamine D3 receptor activity 0 0 1761 GO:0001593 dopamine D4 receptor activity 0 0 1762 GO:0001594 trace-amine receptor activity 0 0 1763 GO:0001595 angiotensin receptor activity 0 0 1764 GO:0001596 angiotensin type I receptor activity 0 0 1765 GO:0001597 apelin-like receptor (obsolete GO:0001597) 1 0 1766 GO:0001598 chemokine receptor-like receptor activity 0 0 1767 GO:0001599 endothelin-A receptor activity 0 0 1768 GO:0001600 endothelin-B receptor activity 0 0 1769 GO:0001601 peptide YY receptor activity 0 0 1770 GO:0001602 pancreatic polypeptide receptor activity 0 0 1771 GO:0001603 vasopressin-like receptor activity 0 0 1772 GO:0001604 urotensin II receptor activity 0 0 1773 GO:0001605 adrenomedullin receptor activity 0 0 1774 GO:0001606 GPR37/endothelin B-like receptor activity 0 0 1775 GO:0001607 neuromedin U receptor activity 0 0 1776 GO:0001608 nucleotide receptor activity, G-protein coupled 0 0 1777 GO:0001609 adenosine receptor activity, G-protein coupled 0 0 1778 GO:0001610 A1 adenosine receptor activity, G-protein coupled 0 0 1779 GO:0001611 A2A adenosine receptor activity, G-protein coupled 0 0 1780 GO:0001612 A2B adenosine receptor activity, G-protein coupled 0 0 1781 GO:0001613 A3 adenosine receptor activity, G-protein coupled 0 0 1782 GO:0001614 purinergic nucleotide receptor activity 0 0 1783 GO:0001615 thyrotropin releasing hormone and secretagogue-like receptors activity 0 0 1784 GO:0001616 growth hormone secretagogue receptor activity 0 0 1785 GO:0001617 growth hormone secretagogue-like receptor activity 0 0 1786 GO:0001618 viral receptor activity 0 0 1787 GO:0001619 lysosphingolipid and lysophosphatidic acid receptor activity 0 0 1788 GO:0001620 class A orphan receptor activity 0 0 1789 GO:0001621 platelet ADP receptor activity 0 0 1790 GO:0001622 super conserved receptor expressed in brain receptor activity 0 0 1791 GO:0001623 Mas proto-oncogene receptor activity 0 0 1792 GO:0001624 RDC1 receptor activity 0 0 1793 GO:0001625 Epstein-Barr Virus-induced receptor activity 0 0 1794 GO:0001626 nociceptin/orphanin-FQ receptor activity 0 0 1795 GO:0001627 leucine-rich G-protein receptor-like receptor activity 0 0 1796 GO:0001628 gastropyloric receptor activity 0 0 1797 GO:0001629 G-protein receptor 45-like receptor activity 0 0 1798 GO:0001630 GP40-like receptor activity 0 0 1799 GO:0001631 cysteinyl leukotriene receptor activity 0 0 1800 GO:0001632 leukotriene B4 receptor activity 0 0 1801 GO:0001633 secretin-like receptor activity 0 0 1802 GO:0001634 pituitary adenylate cyclase activating protein receptor activity 0 0 1803 GO:0001635 calcitonin gene-related polypeptide receptor activity 0 0 1804 GO:0001636 corticotrophin-releasing factor gastric inhibitory peptide-like receptor activity 0 0 1805 GO:0001637 G-protein chemoattractant receptor activity 0 0 1806 GO:0001638 class B orphan receptor activity 0 0 1807 GO:0001639 PLC activating metabotropic glutamate receptor activity 0 0 1808 GO:0001640 adenylate cyclase inhibiting metabotropic glutamate receptor activity 0 0 1809 GO:0001641 group II metabotropic glutamate receptor activity 0 0 1810 GO:0001642 group III metabotropic glutamate receptor activity 0 0 1811 GO:0001645 class C orphan receptor activity 0 0 1812 GO:0001646 cAMP receptor activity 0 0 1813 GO:0001647 G-protein coupled cytokinin receptor activity 0 0 1814 GO:0001648 proteinase activated receptor activity 0 0 1815 GO:0001649 osteoblast differentiation 0 0 1816 GO:0001650 fibrillar center 0 0 1817 GO:0001651 dense fibrillar component 0 0 1818 GO:0001652 granular component 0 0 1819 GO:0001653 peptide receptor activity 0 0 1820 GO:0001654 eye development 0 0 1821 GO:0001655 urogenital system development 0 0 1822 GO:0001656 metanephros development 0 0 1823 GO:0001657 ureteric bud development 0 0 1824 GO:0001658 ureteric bud branching 0 0 1825 GO:0001659 thermoregulation 0 0 1826 GO:0001660 fever 0 0 1827 GO:0001661 conditioned taste aversion 0 0 1828 GO:0001662 behavioral fear response 0 0 1829 GO:0001663 physiological fear response 0 0 1830 GO:0001664 G-protein-coupled receptor binding 0 0 1831 GO:0001665 alpha-N-acetylgalactosaminide alpha-2,6-sialyltransferase activity 0 0 1832 GO:0001666 response to hypoxia 0 0 1833 GO:0001667 ameboidal cell migration 0 0 1834 GO:0001668 phosphatidylinositol-4,5-bisphosphate 5-phosphatase activity 0 0 1835 GO:0001669 acrosome 0 0 1836 GO:0001670 dopamine D2 receptor activity 0 0 1837 GO:0001671 ATPase stimulator activity 0 0 1838 GO:0001672 regulation of chromatin assembly or disassembly 0 0 1839 GO:0001673 male germ cell nucleus 0 0 1840 GO:0001674 female germ cell nucleus 0 0 1841 GO:0001675 acrosome formation 0 0 1842 GO:0001676 long-chain fatty acid metabolism 0 0 1843 GO:0001677 formation of translation initiation ternary complex 0 0 1844 GO:0001678 cell glucose homeostasis 0 0 1845 GO:0001680 tRNA 3'-terminal CCA addition 0 0 1846 GO:0001681 sialate O-acetylesterase activity 0 0 1847 GO:0001682 tRNA 5'-leader removal 0 0 1848 GO:0001683 axonemal dynein heavy chain (obsolete GO:0001683) 1 0 1849 GO:0001684 axonemal dynein intermediate chain (obsolete GO:0001684) 1 0 1850 GO:0001685 axonemal dynein intermediate light chain (obsolete GO:0001685) 1 0 1851 GO:0001686 axonemal dynein light chain (obsolete GO:0001686) 1 0 1852 GO:0001687 cytoplasmic dynein heavy chain (obsolete GO:0001687) 1 0 1853 GO:0001688 cytoplasmic dynein intermediate chain (obsolete GO:0001688) 1 0 1854 GO:0001689 cytoplasmic dynein intermediate light chain (obsolete GO:0001689) 1 0 1855 GO:0001690 cytoplasmic dynein light chain (obsolete GO:0001690) 1 0 1856 GO:0001691 pseudophosphatase activity 0 0 1857 GO:0001692 histamine metabolism 0 0 1858 GO:0001694 histamine biosynthesis 0 0 1859 GO:0001695 histamine catabolism 0 0 1860 GO:0001696 gastric acid secretion 0 0 1861 GO:0001697 histamine-induced gastric acid secretion 0 0 1862 GO:0001698 gastrin-induced gastric acid secretion 0 0 1863 GO:0001699 acetylcholine-induced gastric acid secretion 0 0 1864 GO:0001700 embryonic development (sensu Insecta) 0 0 1865 GO:0001701 embryonic development (sensu Mammalia) 0 0 1866 GO:0001702 gastrulation (sensu Deuterostomia) 0 0 1867 GO:0001703 gastrulation (sensu Protostomia) 0 0 1868 GO:0001704 formation of primary germ layer 0 0 1869 GO:0001705 ectoderm formation 0 0 1870 GO:0001706 endoderm formation 0 0 1871 GO:0001707 mesoderm formation 0 0 1872 GO:0001708 cell fate specification 0 0 1873 GO:0001709 cell fate determination 0 0 1874 GO:0001710 mesodermal cell fate commitment 0 0 1875 GO:0001711 endodermal cell fate commitment 0 0 1876 GO:0001712 ectodermal cell fate commitment 0 0 1877 GO:0001713 ectodermal cell fate determination 0 0 1878 GO:0001714 endodermal cell fate specification 0 0 1879 GO:0001715 ectodermal cell fate specification 0 0 1880 GO:0001716 L-amino-acid oxidase activity 0 0 1881 GO:0001717 conversion of seryl-tRNAsec to selenocys-tRNAsec 0 0 1882 GO:0001718 conversion of met-tRNAf to fmet-tRNA 0 0 1883 GO:0001720 conversion of lysyl-tRNA to pyrrolysyl-tRNA 0 0 1884 GO:0001721 intermediate filament associated protein (obsolete GO:0001721) 1 0 1885 GO:0001722 type I intermediate filament associated protein (obsolete GO:0001722) 1 0 1886 GO:0001723 type II intermediate filament associated protein (obsolete GO:0001723) 1 0 1887 GO:0001724 type III intermediate filament associated protein (obsolete GO:0001724) 1 0 1888 GO:0001725 stress fiber 0 0 1889 GO:0001726 ruffle 0 0 1890 GO:0001727 lipid kinase activity 0 0 1891 GO:0001729 ceramide kinase activity 0 0 1892 GO:0001730 2'-5'-oligoadenylate synthetase activity 0 0 1893 GO:0001731 formation of translation preinitiation complex 0 0 1894 GO:0001732 formation of translation initiation complex 0 0 1895 GO:0001733 galactosylceramide sulfotransferase activity 0 0 1896 GO:0001734 mRNA (N6-adenosine)-methyltransferase activity 0 0 1897 GO:0001735 prenylcysteine oxidase activity 0 0 1898 GO:0001736 establishment of planar polarity 0 0 1899 GO:0001737 establishment of wing hair orientation 0 0 1900 GO:0001738 morphogenesis of a polarized epithelium 0 0 1901 GO:0001739 sex chromatin 0 0 1902 GO:0001740 Barr body 0 0 1903 GO:0001741 XY body 0 0 1904 GO:0001742 oenocyte differentiation 0 0 1905 GO:0001743 optic placode formation 0 0 1906 GO:0001744 optic placode formation (sensu Endopterygota) 0 0 1907 GO:0001745 compound eye morphogenesis (sensu Endopterygota) 0 0 1908 GO:0001746 Bolwig's organ morphogenesis 0 0 1909 GO:0001747 eye development (sensu Mammalia) 0 0 1910 GO:0001748 optic placode development (sensu Endopterygota) 0 0 1911 GO:0001749 non-eye photoreceptor development (sensu Endopterygota) 0 0 1912 GO:0001750 photoreceptor outer segment 0 0 1913 GO:0001751 eye photoreceptor cell differentiation (sensu Endopterygota) 0 0 1914 GO:0001752 eye photoreceptor fate commitment (sensu Endopterygota) 0 0 1915 GO:0001753 adult eye photoreceptor development (sensu Drosophila) (obsolete GO:0001753) 1 0 1916 GO:0001754 eye photoreceptor cell differentiation 0 0 1917 GO:0001755 neural crest cell migration 0 0 1918 GO:0001756 somitogenesis 0 0 1919 GO:0001757 somite specification 0 0 1920 GO:0001758 retinal dehydrogenase activity 0 0 1921 GO:0001759 induction of an organ 0 0 1922 GO:0001760 aminocarboxymuconate-semialdehyde decarboxylase activity 0 0 1923 GO:0001761 beta-alanine transporter activity 0 0 1924 GO:0001762 beta-alanine transport 0 0 1925 GO:0001763 morphogenesis of a branching structure 0 0 1926 GO:0001764 neuron migration 0 0 1927 GO:0001765 lipid raft formation 0 0 1928 GO:0001766 lipid raft polarization 0 0 1929 GO:0001767 establishment of lymphocyte polarity 0 0 1930 GO:0001768 establishment of T cell polarity 0 0 1931 GO:0001769 establishment of B cell polarity 0 0 1932 GO:0001770 establishment of natural killer cell polarity 0 0 1933 GO:0001771 formation of immunological synapse 0 0 1934 GO:0001772 immunological synapse 0 0 1935 GO:0001773 dendritic cell activation 0 0 1936 GO:0001774 microglial cell activation 0 0 1937 GO:0001775 cell activation 0 0 1938 GO:0001776 immune cell homeostasis 0 0 1939 GO:0001777 T cell homeostatic proliferation 0 0 1940 GO:0001778 plasma membrane repair 0 0 1941 GO:0001779 natural killer cell differentiation 0 0 1942 GO:0001780 neutrophil homeostasis 0 0 1943 GO:0001781 neutrophil apoptosis 0 0 1944 GO:0001782 B cell homeostasis 0 0 1945 GO:0001783 B cell apoptosis 0 0 1946 GO:0001784 phosphotyrosine binding 0 0 1947 GO:0001785 prostaglandin J receptor activity 0 0 1948 GO:0001786 phosphatidylserine binding 0 0 1949 GO:0001787 natural killer cell proliferation 0 0 1950 GO:0001788 antibody-dependent cellular cytotoxicity 0 0 1951 GO:0001789 G-protein signaling, coupled to S1P second messenger (sphingosine kinase activating) 0 0 1952 GO:0001790 polymeric immunoglobulin binding 0 0 1953 GO:0001791 IgM binding 0 0 1954 GO:0001792 polymeric immunoglobulin receptor activity 0 0 1955 GO:0001793 IgM receptor activity 0 0 1956 GO:0001794 type IIa hypersensitivity 0 0 1957 GO:0001795 type IIb hypersensitivity 0 0 1958 GO:0001796 regulation of type IIa hypersensitivity 0 0 1959 GO:0001797 negative regulation of type IIa hypersensitivity 0 0 1960 GO:0001798 positive regulation of type IIa hypersensitivity 0 0 1961 GO:0001799 regulation of type IIb hypersensitivity 0 0 1962 GO:0001800 negative regulation of type IIb hypersensitivity 0 0 1963 GO:0001801 positive regulation of type IIb hypersensitivity 0 0 1964 GO:0001802 type III hypersensitivity 0 0 1965 GO:0001803 regulation of type III hypersensitivity 0 0 1966 GO:0001804 negative regulation of type III hypersensitivity 0 0 1967 GO:0001805 positive regulation of type III hypersensitivity 0 0 1968 GO:0001806 type IV hypersensitivity 0 0 1969 GO:0001807 regulation of type IV hypersensitivity 0 0 1970 GO:0001808 negative regulation of type IV hypersensitivity 0 0 1971 GO:0001809 positive regulation of type IV hypersensitivity 0 0 1972 GO:0001810 regulation of type I hypersensitivity 0 0 1973 GO:0001811 negative regulation of type I hypersensitivity 0 0 1974 GO:0001812 positive regulation of type I hypersensitivity 0 0 1975 GO:0001813 regulation of antibody-dependent cellular cytotoxicity 0 0 1976 GO:0001814 negative regulation of antibody-dependent cellular cytotoxicity 0 0 1977 GO:0001815 positive regulation of antibody-dependent cellular cytotoxicity 0 0 1978 GO:0001816 cytokine production 0 0 1979 GO:0001817 regulation of cytokine production 0 0 1980 GO:0001818 negative regulation of cytokine production 0 0 1981 GO:0001819 positive regulation of cytokine production 0 0 1982 GO:0001820 serotonin secretion 0 0 1983 GO:0001821 histamine secretion 0 0 1984 GO:0001822 kidney development 0 0 1985 GO:0001823 mesonephros development 0 0 1986 GO:0001824 blastocyst development 0 0 1987 GO:0001825 blastocyst formation 0 0 1988 GO:0001826 inner cell mass cell differentiation 0 0 1989 GO:0001827 inner cell mass cell fate commitment 0 0 1990 GO:0001828 inner cell mass cellular morphogenesis 0 0 1991 GO:0001829 trophectodermal cell differentiation 0 0 1992 GO:0001830 trophectodermal cell fate commitment 0 0 1993 GO:0001831 trophectodermal cellular morphogenesis 0 0 1994 GO:0001832 blastocyst growth 0 0 1995 GO:0001833 inner cell mass cell proliferation 0 0 1996 GO:0001834 trophectodermal cell proliferation 0 0 1997 GO:0001835 blastocyst hatching 0 0 1998 GO:0001836 release of cytochrome c from mitochondria 0 0 1999 GO:0001837 epithelial to mesenchymal transition 0 0 2000 GO:0001838 embryonic epithelial tube formation 0 0 2001 GO:0001839 neural plate morphogenesis 0 0 2002 GO:0001840 neural plate formation 0 0 2003 GO:0001841 neural tube formation 0 0 2004 GO:0001842 neural fold formation 0 0 2005 GO:0001843 neural tube closure 0 0 2006 GO:0001844 protein insertion into mitochondrial membrane during induction of apoptosis 0 0 2007 GO:0001845 phagolysosome formation 0 0 2008 GO:0001846 opsonin binding 0 0 2009 GO:0001847 opsonin receptor activity 0 0 2010 GO:0001848 complement binding 0 0 2011 GO:0001849 complement component C1q binding 0 0 2012 GO:0001850 complement component C3a binding 0 0 2013 GO:0001851 complement component C3b binding 0 0 2014 GO:0001852 complement component iC3b binding 0 0 2015 GO:0001853 complement component C3dg binding 0 0 2016 GO:0001854 complement component C3d binding 0 0 2017 GO:0001855 complement component C4b binding 0 0 2018 GO:0001856 complement component C5a binding 0 0 2019 GO:0001857 complement component C1q receptor activity 0 0 2020 GO:0001858 complement component iC3b receptor activity 0 0 2021 GO:0001859 complement component C3dg receptor activity 0 0 2022 GO:0001860 complement component C3d receptor activity 0 0 2023 GO:0001861 complement component C4b receptor activity 0 0 2024 GO:0001862 collectin binding 0 0 2025 GO:0001863 collectin receptor activity 0 0 2026 GO:0001864 pentraxin binding 0 0 2027 GO:0001865 NK T cell differentiation 0 0 2028 GO:0001866 NK T cell proliferation 0 0 2029 GO:0001867 complement activation, lectin pathway 0 0 2030 GO:0001868 regulation of complement activation, lectin pathway 0 0 2031 GO:0001869 negative regulation of complement activation, lectin pathway 0 0 2032 GO:0001870 positive regulation of complement activation, lectin pathway 0 0 2033 GO:0001871 pattern binding 0 0 2034 GO:0001872 zymosan binding 0 0 2035 GO:0001873 polysaccharide receptor activity 0 0 2036 GO:0001874 zymosan receptor activity 0 0 2037 GO:0001875 lipopolysaccharide receptor activity 0 0 2038 GO:0001876 lipoarabinomannan binding 0 0 2039 GO:0001877 lipoarabinomannan receptor activity 0 0 2040 GO:0001878 response to yeast 0 0 2041 GO:0001879 detection of yeast 0 0 2042 GO:0001880 Mullerian duct regression 0 0 2043 GO:0001881 receptor recycling 0 0 2044 GO:0001882 nucleoside binding 0 0 2045 GO:0001883 purine nucleoside binding 0 0 2046 GO:0001884 pyrimidine nucleoside binding 0 0 2047 GO:0001885 endothelial cell development 0 0 2048 GO:0001886 endothelial cell morphogenesis 0 0 2049 GO:0001887 selenium metabolism 0 0 2050 GO:0001888 glucuronyl-galactosyl-proteoglycan 4-alpha-N-acetylglucosaminyltransferase activity 0 0 2051 GO:0001889 liver development 0 0 2052 GO:0001890 placenta development 0 0 2053 GO:0001891 phagocytic cup 0 0 2054 GO:0001892 embryonic placenta development 0 0 2055 GO:0001893 maternal placenta development 0 0 2056 GO:0001894 tissue homeostasis 0 0 2057 GO:0001895 retinal homeostasis 0 0 2058 GO:0001896 autolysis 0 0 2059 GO:0001897 cytolysis of host cells 0 0 2060 GO:0001898 regulation of cytolysis of host cells 0 0 2061 GO:0001899 negative regulation of cytolysis of host cells 0 0 2062 GO:0001900 positive regulation of cytolysis of host cells 0 0 2063 GO:0001905 activation of membrane attack complex 0 0 2064 GO:0001906 cell killing 0 0 2065 GO:0001907 killing of host cells 0 0 2066 GO:0001909 immune cell mediated cytotoxicity 0 0 2067 GO:0001910 regulation of immune cell mediated cytotoxicity 0 0 2068 GO:0001911 negative regulation of immune cell mediated cytotoxicity 0 0 2069 GO:0001912 positive regulation of immune cell mediated cytotoxicity 0 0 2070 GO:0001913 T cell mediated cytotoxicity 0 0 2071 GO:0001914 regulation of T cell mediated cytotoxicity 0 0 2072 GO:0001915 negative regulation of T cell mediated cytotoxicity 0 0 2073 GO:0001916 positive regulation of T cell mediated cytotoxicity 0 0 2074 GO:0001917 photoreceptor inner segment 0 0 2075 GO:0001918 farnesylated protein binding 0 0 2076 GO:0001919 regulation of receptor recycling 0 0 2077 GO:0001920 negative regulation of receptor recycling 0 0 2078 GO:0001921 positive regulation of receptor recycling 0 0 2079 GO:0001922 B-1 B cell homeostasis 0 0 2080 GO:0001923 B-1 B cell differentiation 0 0 2081 GO:0001924 regulation of B-1 B cell differentiation 0 0 2082 GO:0001925 negative regulation of B-1 B cell differentiation 0 0 2083 GO:0001926 positive regulation of B-1 B cell differentiation 0 0 2084 GO:0001927 exocyst assembly 0 0 2085 GO:0001928 regulation of exocyst assembly 0 0 2086 GO:0001929 negative regulation of exocyst assembly 0 0 2087 GO:0001930 positive regulation of exocyst assembly 0 0 2088 GO:0001931 uropod 0 0 2089 GO:0001932 regulation of protein amino acid phosphorylation 0 0 2090 GO:0001933 negative regulation of protein amino acid phosphorylation 0 0 2091 GO:0001934 positive regulation of protein amino acid phosphorylation 0 0 2092 GO:0001935 endothelial cell proliferation 0 0 2093 GO:0001936 regulation of endothelial cell proliferation 0 0 2094 GO:0001937 negative regulation of endothelial cell proliferation 0 0 2095 GO:0001938 positive regulation of endothelial cell proliferation 0 0 2096 GO:0001939 female pronucleus 0 0 2097 GO:0001940 male pronucleus 0 0 2098 GO:0001941 postsynaptic membrane organization 0 0 2099 GO:0001942 hair follicle development 0 0 2100 GO:0001944 vasculature development 0 0 2101 GO:0001945 lymph vessel development 0 0 2102 GO:0001946 lymphangiogenesis 0 0 2103 GO:0001947 heart looping 0 0 2104 GO:0001948 glycoprotein binding 0 0 2105 GO:0001949 sebaceous gland cell differentiation 0 0 2106 GO:0001950 PME fraction 0 0 2107 GO:0001951 D-glucose absorption 0 0 2108 GO:0001952 regulation of cell-matrix adhesion 0 0 2109 GO:0001953 negative regulation of cell-matrix adhesion 0 0 2110 GO:0001954 positive regulation of cell-matrix adhesion 0 0 2111 GO:0001955 blood vessel maturation 0 0 2112 GO:0001956 positive regulation of neurotransmitter secretion 0 0 2113 GO:0001957 intramembranous ossification 0 0 2114 GO:0001958 endochondral ossification 0 0 2115 GO:0001959 regulation of cytokine and chemokine mediated signaling pathway 0 0 2116 GO:0001960 negative regulation of cytokine and chemokine mediated signaling pathway 0 0 2117 GO:0001961 positive regulation of cytokine and chemokine mediated signaling pathway 0 0 2118 GO:0001962 alpha-1,3-galactosyltransferase activity 0 0 2119 GO:0001963 synaptic transmission, dopaminergic 0 0 2120 GO:0001964 startle response 0 0 2121 GO:0001965 G-protein alpha-subunit binding 0 0 2122 GO:0001966 thigmotaxis 0 0 2123 GO:0001967 suckling behavior 0 0 2124 GO:0001968 fibronectin binding 0 0 2125 GO:0001969 regulation of activation of membrane attack complex 0 0 2126 GO:0001970 positive regulation of activation of membrane attack complex 0 0 2127 GO:0001971 negative regulation of activation of membrane attack complex 0 0 2128 GO:0001972 retinoic acid binding 0 0 2129 GO:0001973 adenosine receptor signaling pathway 0 0 2130 GO:0001974 blood vessel remodeling 0 0 2131 GO:0001975 response to amphetamine 0 0 2132 GO:0001976 fast regulation of arterial pressure 0 0 2133 GO:0001977 renal blood volume regulation of blood pressure 0 0 2134 GO:0001978 baroreceptor feedback regulation of blood pressure 0 0 2135 GO:0001979 chemoreceptor regulation of blood pressure 0 0 2136 GO:0001980 ischemic regulation of blood pressure 0 0 2137 GO:0001981 baroreceptor detection of arterial stretch 0 0 2138 GO:0001982 baroreceptor response to lowering of blood pressure 0 0 2139 GO:0001983 baroreceptor response to increased blood pressure 0 0 2140 GO:0001984 vasodilation of artery during baroreceptor response to increased blood pressure 0 0 2141 GO:0001985 negative regulation of heart contraction rate in baroreceptor response to increased blood pressure 0 0 2142 GO:0001986 decreased strength of heart contraction during baroreceptor response to increased blood pressure 0 0 2143 GO:0001987 vasoconstriction of artery during baroreceptor response to lowering of blood pressure 0 0 2144 GO:0001988 positive regulation of heart contraction rate in baroreceptor response to decreased blood pressure 0 0 2145 GO:0001989 increased strength of heart contraction during baroreceptor response to decreased blood pressure 0 0 2146 GO:0001990 regulation of blood pressure by hormones 0 0 2147 GO:0001991 regulation of blood pressure by circulatory renin-angiotensin 0 0 2148 GO:0001992 regulation of blood pressure by vasopressin 0 0 2149 GO:0001993 norepinephrine-epinephrine regulation of blood pressure 0 0 2150 GO:0001994 norepinephrine-epinephrine vasoconstriction during regulation of blood pressure 0 0 2151 GO:0001995 norepinephrine-epinephrine catabolism in blood stream 0 0 2152 GO:0001996 positive regulation of heart contraction rate by epinephrine-norepinephrine 0 0 2153 GO:0001997 increased strength of heart contraction by epinephrine-norepinephrine 0 0 2154 GO:0001998 angiotensin mediated vasoconstriction during regulation of blood pressure 0 0 2155 GO:0001999 renal response to blood flow during renin-angiotensin regulation of blood pressure 0 0 2156 GO:0002000 detection of renal blood flow 0 0 2157 GO:0002001 renin secretion into blood stream 0 0 2158 GO:0002002 regulation of angiotensin levels in blood 0 0 2159 GO:0002003 angiotensin maturation 0 0 2160 GO:0002004 secretion of vasopressin during fast regulation of blood pressure 0 0 2161 GO:0002005 angiotensin catabolism in blood 0 0 2162 GO:0002006 vasopressin mediated vasoconstriction during blood pressure control 0 0 2163 GO:0002007 detection of hypoxic conditions in blood by chemoreceptors 0 0 2164 GO:0002008 excitation of vasomotor center by chemoreceptor signaling 0 0 2165 GO:0002009 morphogenesis of an epithelium 0 0 2166 GO:0002010 excitation of vasomotor center by baroreceptor signaling 0 0 2167 GO:0002011 morphogenesis of an epithelial sheet 0 0 2168 GO:0002012 vasoconstriction of artery during chemoreceptor response to lowering of blood pressure 0 0 2169 GO:0002013 detection of carbon dioxide by vasomotor center 0 0 2170 GO:0002014 vasoconstriction of artery during ischemic response to lowering of blood pressure 0 0 2171 GO:0002015 atrial regulation of blood pressure 0 0 2172 GO:0002016 renin-angiotensin regulation of body fluid levels 0 0 2173 GO:0002017 aldosterone mediated regulation of body fluids 0 0 2174 GO:0002018 renin-angiotensin regulation of aldosterone production 0 0 2175 GO:0002019 angiotensin mediated regulation of renal output 0 0 2176 GO:0002020 protease binding 0 0 2177 GO:0002021 response to dietary excess 0 0 2178 GO:0002022 detection of dietary excess 0 0 2179 GO:0002023 reduction of food intake in response to dietary excess 0 0 2180 GO:0002024 diet induced thermogenesis 0 0 2181 GO:0002025 norepinephrine-epinephrine vasodilation during regulation of blood pressure 0 0 2182 GO:0002026 cardiac inotropy 0 0 2183 GO:0002027 cardiac chronotropy 0 0 2184 GO:0002028 regulation of sodium ion transport 0 0 2185 GO:0002029 desensitization of G-protein coupled receptor protein signaling pathway 0 0 2186 GO:0002030 inhibitory G-protein coupled receptor phosphorylation 0 0 2187 GO:0002031 G-protein coupled receptor internalization 0 0 2188 GO:0002032 arrestin mediated desensitization of G-protein coupled receptor protein signaling pathway 0 0 2189 GO:0002033 angiotensin mediated vasodilation during regulation of blood pressure 0 0 2190 GO:0002034 renin-angiotensin regulation of blood vessel size 0 0 2191 GO:0002035 brain renin-angiotensin system 0 0 2192 GO:0002036 regulation of L-glutamate transport 0 0 2193 GO:0002037 negative regulation of L-glutamate transport 0 0 2194 GO:0002038 positive regulation of L-glutamate transport 0 0 2195 GO:0002039 p53 binding 0 0 2196 GO:0002040 sprouting angiogenesis 0 0 2197 GO:0002041 intussusceptive angiogenesis 0 0 2198 GO:0002042 cell migration during sprouting angiogenesis 0 0 2199 GO:0002043 blood vessel endothelial cell proliferation during sprouting angiogenesis 0 0 2200 GO:0002044 blood vessel endothelial cell migration during intussusceptive angiogenesis 0 0 2201 GO:0002045 regulation of cell adhesion during intussusceptive angiogenesis 0 0 2202 GO:0002046 opsin binding 0 0 2203 GO:0002047 phenazine biosynthesis 0 0 2204 GO:0002048 pyoverdine metabolism 0 0 2205 GO:0002049 pyoverdine biosynthesis 0 0 2206 GO:0002050 pyoverdine catabolism 0 0 2207 GO:0002051 osteoblast fate commitment 0 0 2208 GO:0002052 positive regulation of neuroblast proliferation 0 0 2209 GO:0002053 positive regulation of mesenchymal cell proliferation 0 0 2210 GO:0002054 nucleobase binding 0 0 2211 GO:0002055 adenine binding 0 0 2212 GO:0002056 cytosine binding 0 0 2213 GO:0002057 guanine binding 0 0 2214 GO:0002058 uracil binding 0 0 2215 GO:0002059 thymine binding 0 0 2216 GO:0002060 purine binding 0 0 2217 GO:0002061 pyrimidine binding 0 0 2218 GO:0002062 chondrocyte differentiation 0 0 2219 GO:0002063 chondrocyte development 0 0 2220 GO:0002064 epithelial cell development 0 0 2221 GO:0002065 columnar/cuboidal epithelial cell differentiation 0 0 2222 GO:0002066 columnar/cuboidal epithelial cell development 0 0 2223 GO:0002067 glandular epithelial cell differentiation 0 0 2224 GO:0002068 glandular epithelial cell development 0 0 2225 GO:0002069 columnar/cuboidal epithelial cell maturation 0 0 2226 GO:0002070 epithelial cell maturation 0 0 2227 GO:0002071 glandular epithelial cell maturation 0 0 2228 GO:0002072 optic cup morphogenesis (sensu Mammalia) 0 0 2229 GO:0002073 retina development (sensu Mammalia) 0 0 2230 GO:0002074 extraocular skeletal muscle development (sensu Mammalia) 0 0 2231 GO:0002075 somitomeric trunk muscle development (sensu Mammalia) 0 0 2232 GO:0002117 larval development (sensu Amphibia) 0 0 2233 GO:0002119 larval development (sensu Nematoda) 0 0 2234 GO:0002164 larval development 0 0 2235 GO:0002165 larval or pupal development (sensu Insecta) 0 0 2236 GO:0002168 larval development (sensu Insecta) 0 0 2237 GO:0003673 Gene_Ontology (obsolete GO:0003673) 1 0 2238 GO:0003674 molecular_function 0 0 2239 GO:0003675 protein (obsolete GO:0003675) 1 0 2240 GO:0003676 nucleic acid binding 0 0 2241 GO:0003677 DNA binding 0 0 2242 GO:0003678 DNA helicase activity 0 0 2243 GO:0003680 AT DNA binding 0 0 2244 GO:0003681 bent DNA binding 0 0 2245 GO:0003682 chromatin binding 0 0 2246 GO:0003683 lamin/chromatin binding (obsolete GO:0003683) 1 0 2247 GO:0003684 damaged DNA binding 0 0 2248 GO:0003685 DNA repair protein (obsolete GO:0003685) 1 0 2249 GO:0003686 DNA repair enzyme (obsolete GO:0003686) 1 0 2250 GO:0003687 DNA replication factor (obsolete GO:0003687) 1 0 2251 GO:0003688 DNA replication origin binding 0 0 2252 GO:0003689 DNA clamp loader activity 0 0 2253 GO:0003690 double-stranded DNA binding 0 0 2254 GO:0003691 double-stranded telomeric DNA binding 0 0 2255 GO:0003692 left-handed Z-DNA binding 0 0 2256 GO:0003693 P-element binding 0 0 2257 GO:0003694 plasmid binding (obsolete GO:0003694) 1 0 2258 GO:0003695 random coil DNA binding 0 0 2259 GO:0003696 satellite DNA binding 0 0 2260 GO:0003697 single-stranded DNA binding 0 0 2261 GO:0003700 transcription factor activity 0 0 2262 GO:0003701 RNA polymerase I transcription factor activity 0 0 2263 GO:0003702 RNA polymerase II transcription factor activity 0 0 2264 GO:0003704 specific RNA polymerase II transcription factor activity 0 0 2265 GO:0003705 RNA polymerase II transcription factor activity, enhancer binding 0 0 2266 GO:0003706 ligand-regulated transcription factor activity 0 0 2267 GO:0003707 steroid hormone receptor activity 0 0 2268 GO:0003708 retinoic acid receptor activity 0 0 2269 GO:0003709 RNA polymerase III transcription factor activity 0 0 2270 GO:0003711 transcriptional elongation regulator activity 0 0 2271 GO:0003712 transcription cofactor activity 0 0 2272 GO:0003713 transcription coactivator activity 0 0 2273 GO:0003714 transcription corepressor activity 0 0 2274 GO:0003715 transcription termination factor activity 0 0 2275 GO:0003716 RNA polymerase I transcription termination factor activity 0 0 2276 GO:0003717 RNA polymerase II transcription termination factor activity 0 0 2277 GO:0003718 RNA polymerase III transcription termination factor activity 0 0 2278 GO:0003719 transcription factor binding, cytoplasmic sequestering (obsolete GO:0003719) 1 0 2279 GO:0003720 telomerase activity 0 0 2280 GO:0003721 telomeric template RNA reverse transcriptase activity 0 0 2281 GO:0003723 RNA binding 0 0 2282 GO:0003724 RNA helicase activity 0 0 2283 GO:0003725 double-stranded RNA binding 0 0 2284 GO:0003726 double-stranded RNA adenosine deaminase activity 0 0 2285 GO:0003727 single-stranded RNA binding 0 0 2286 GO:0003729 mRNA binding 0 0 2287 GO:0003730 mRNA 3'-UTR binding 0 0 2288 GO:0003731 mRNA cap binding (obsolete GO:0003731) 1 0 2289 GO:0003732 snRNA cap binding (obsolete GO:0003732) 1 0 2290 GO:0003733 ribonucleoprotein (obsolete GO:0003733) 1 0 2291 GO:0003734 small nuclear ribonucleoprotein (obsolete GO:0003734) 1 0 2292 GO:0003735 structural constituent of ribosome 0 0 2293 GO:0003743 translation initiation factor activity 0 0 2294 GO:0003746 translation elongation factor activity 0 0 2295 GO:0003747 translation release factor activity 0 0 2296 GO:0003750 cell cycle regulator (obsolete GO:0003750) 1 0 2297 GO:0003754 chaperone activity (obsolete GO:0003754) 1 0 2298 GO:0003755 peptidyl-prolyl cis-trans isomerase activity 0 0 2299 GO:0003756 protein disulfide isomerase activity 0 0 2300 GO:0003759 glycoprotein-specific chaperone activity (obsolete GO:0003759) 1 0 2301 GO:0003762 histone-specific chaperone activity (obsolete GO:0003762) 1 0 2302 GO:0003763 chaperonin ATPase activity (obsolete GO:0003763) 1 0 2303 GO:0003767 co-chaperone activity (obsolete GO:0003767) 1 0 2304 GO:0003772 co-chaperonin activity (obsolete GO:0003772) 1 0 2305 GO:0003773 heat shock protein activity (obsolete GO:0003773) 1 0 2306 GO:0003774 motor activity 0 0 2307 GO:0003775 axonemal motor activity (obsolete GO:0003775) 1 0 2308 GO:0003776 muscle motor activity (obsolete GO:0003776) 1 0 2309 GO:0003777 microtubule motor activity 0 0 2310 GO:0003778 dynactin motor (obsolete GO:0003778) 1 0 2311 GO:0003779 actin binding 0 0 2312 GO:0003780 actin cross-linking activity (obsolete GO:0003780) 1 0 2313 GO:0003781 actin bundling activity (obsolete GO:0003781) 1 0 2314 GO:0003782 F-actin capping activity (obsolete GO:0003782) 1 0 2315 GO:0003783 barbed-end actin capping activity (obsolete GO:0003783) 1 0 2316 GO:0003784 barbed-end actin capping/severing activity (obsolete GO:0003784) 1 0 2317 GO:0003785 actin monomer binding 0 0 2318 GO:0003786 actin lateral binding 0 0 2319 GO:0003787 actin depolymerizing activity (obsolete GO:0003787) 1 0 2320 GO:0003788 actin monomer sequestering activity (obsolete GO:0003788) 1 0 2321 GO:0003789 actin filament severing activity (obsolete GO:0003789) 1 0 2322 GO:0003790 actin modulating activity (obsolete GO:0003790) 1 0 2323 GO:0003791 membrane associated actin binding (obsolete GO:0003791) 1 0 2324 GO:0003792 regulation of actin thin filament length activity (obsolete GO:0003792) 1 0 2325 GO:0003793 defense/immunity protein activity (obsolete GO:0003793) 1 0 2326 GO:0003794 acute-phase response protein activity (obsolete GO:0003794) 1 0 2327 GO:0003795 antimicrobial peptide activity (obsolete GO:0003795) 1 0 2328 GO:0003796 lysozyme activity 0 0 2329 GO:0003797 antibacterial peptide activity (obsolete GO:0003797) 1 0 2330 GO:0003798 male-specific antibacterial peptide activity (obsolete GO:0003798) 1 0 2331 GO:0003799 antifungal peptide activity (obsolete GO:0003799) 1 0 2332 GO:0003800 antiviral response protein activity (obsolete GO:0003800) 1 0 2333 GO:0003801 blood coagulation factor activity (obsolete GO:0003801) 1 0 2334 GO:0003802 coagulation factor VIIa activity 0 0 2335 GO:0003803 coagulation factor IXa activity 0 0 2336 GO:0003804 coagulation factor Xa activity 0 0 2337 GO:0003805 coagulation factor XIa activity 0 0 2338 GO:0003806 coagulation factor XIIa activity 0 0 2339 GO:0003807 plasma kallikrein activity 0 0 2340 GO:0003808 protein C (activated) activity 0 0 2341 GO:0003809 thrombin activity 0 0 2342 GO:0003810 protein-glutamine gamma-glutamyltransferase activity 0 0 2343 GO:0003811 complement activity (obsolete GO:0003811) 1 0 2344 GO:0003812 alternative-complement-pathway C3/C5 convertase activity 0 0 2345 GO:0003813 classical-complement-pathway C3/C5 convertase activity 0 0 2346 GO:0003815 complement component C1r activity 0 0 2347 GO:0003816 complement component C1s activity 0 0 2348 GO:0003817 complement factor D activity 0 0 2349 GO:0003818 complement factor I activity 0 0 2350 GO:0003819 major histocompatibility complex antigen (obsolete GO:0003819) 1 0 2351 GO:0003820 class I major histocompatibility complex antigen (obsolete GO:0003820) 1 0 2352 GO:0003821 class II major histocompatibility complex antigen (obsolete GO:0003821) 1 0 2353 GO:0003822 MHC-interacting protein (obsolete GO:0003822) 1 0 2354 GO:0003823 antigen binding 0 0 2355 GO:0003824 catalytic activity 0 0 2356 GO:0003825 alpha,alpha-trehalose-phosphate synthase (UDP-forming) activity 0 0 2357 GO:0003826 alpha-ketoacid dehydrogenase activity 0 0 2358 GO:0003827 alpha-1,3-mannosylglycoprotein 2-beta-N-acetylglucosaminyltransferase activity 0 0 2359 GO:0003828 alpha-N-acetylneuraminate alpha-2,8-sialyltransferase activity 0 0 2360 GO:0003829 beta-1,3-galactosyl-O-glycosyl-glycoprotein beta-1,6-N-acetylglucosaminyltransferase activity 0 0 2361 GO:0003830 beta-1,4-mannosylglycoprotein 4-beta-N-acetylglucosaminyltransferase activity 0 0 2362 GO:0003831 beta-N-acetylglucosaminylglycopeptide beta-1,4-galactosyltransferase activity 0 0 2363 GO:0003832 beta-alanyl-dopamine hydrolase activity 0 0 2364 GO:0003833 beta-alanyl-dopamine synthase activity 0 0 2365 GO:0003834 beta-carotene 15,15'-monooxygenase activity 0 0 2366 GO:0003835 beta-galactoside alpha-2,6-sialyltransferase activity 0 0 2367 GO:0003836 beta-galactoside alpha-2,3-sialyltransferase activity 0 0 2368 GO:0003837 beta-ureidopropionase activity 0 0 2369 GO:0003838 sterol 24-C-methyltransferase activity 0 0 2370 GO:0003839 gamma-glutamylcyclotransferase activity 0 0 2371 GO:0003840 gamma-glutamyltransferase activity 0 0 2372 GO:0003841 1-acylglycerol-3-phosphate O-acyltransferase activity 0 0 2373 GO:0003842 1-pyrroline-5-carboxylate dehydrogenase activity 0 0 2374 GO:0003843 1,3-beta-glucan synthase activity 0 0 2375 GO:0003844 1,4-alpha-glucan branching enzyme activity 0 0 2376 GO:0003845 11-beta-hydroxysteroid dehydrogenase activity 0 0 2377 GO:0003846 2-acylglycerol O-acyltransferase activity 0 0 2378 GO:0003847 1-alkyl-2-acetylglycerophosphocholine esterase activity 0 0 2379 GO:0003848 2-amino-4-hydroxy-6-hydroxymethyldihydropteridine diphosphokinase activity 0 0 2380 GO:0003849 3-deoxy-7-phosphoheptulonate synthase activity 0 0 2381 GO:0003850 2-deoxyglucose-6-phosphatase activity 0 0 2382 GO:0003851 2-hydroxyacylsphingosine 1-beta-galactosyltransferase activity 0 0 2383 GO:0003852 2-isopropylmalate synthase activity 0 0 2384 GO:0003853 2-methylacyl-CoA dehydrogenase activity 0 0 2385 GO:0003854 3-beta-hydroxy-delta5-steroid dehydrogenase activity 0 0 2386 GO:0003855 3-dehydroquinate dehydratase activity 0 0 2387 GO:0003856 3-dehydroquinate synthase activity 0 0 2388 GO:0003857 3-hydroxyacyl-CoA dehydrogenase activity 0 0 2389 GO:0003858 3-hydroxybutyrate dehydrogenase activity 0 0 2390 GO:0003859 3-hydroxybutyryl-CoA dehydratase activity 0 0 2391 GO:0003860 3-hydroxyisobutyryl-CoA hydrolase activity 0 0 3110 GO:0004661 protein geranylgeranyltransferase activity 0 0 3111 GO:0004662 CAAX-protein geranylgeranyltransferase activity 0 0 3112 GO:0004663 Rab-protein geranylgeranyltransferase activity 0 0 3113 GO:0004664 prephenate dehydratase activity 0 0 3114 GO:0004665 prephenate dehydrogenase (NADP+) activity 0 0 3115 GO:0004666 prostaglandin-endoperoxide synthase activity 0 0 3116 GO:0004667 prostaglandin-D synthase activity 0 0 3117 GO:0004668 protein-arginine deiminase activity 0 0 3118 GO:0004671 protein-S-isoprenylcysteine O-methyltransferase activity 0 0 3119 GO:0004672 protein kinase activity 0 0 3120 GO:0004673 protein histidine kinase activity 0 0 3121 GO:0004674 protein serine/threonine kinase activity 0 0 3122 GO:0004675 transmembrane receptor protein serine/threonine kinase activity 0 0 3123 GO:0004676 3-phosphoinositide-dependent protein kinase activity 0 0 3124 GO:0004677 DNA-dependent protein kinase activity 0 0 3125 GO:0004679 AMP-activated protein kinase activity 0 0 3126 GO:0004680 casein kinase activity 0 0 3127 GO:0004681 casein kinase I activity 0 0 3128 GO:0004682 protein kinase CK2 activity 0 0 3129 GO:0004683 calmodulin regulated protein kinase activity 0 0 3130 GO:0004684 calmodulin-dependent protein kinase I activity 0 0 3131 GO:0004685 calcium- and calmodulin-dependent protein kinase activity 0 0 3132 GO:0004686 eukaryotic elongation factor-2 kinase activity 0 0 3133 GO:0004687 myosin light chain kinase activity 0 0 3134 GO:0004688 multifunctional calcium- and calmodulin-regulated protein kinase activity 0 0 3135 GO:0004689 phosphorylase kinase activity 0 0 3136 GO:0004690 cyclic nucleotide-dependent protein kinase activity 0 0 3137 GO:0004691 cAMP-dependent protein kinase activity 0 0 3138 GO:0004692 cGMP-dependent protein kinase activity 0 0 3139 GO:0004693 cyclin-dependent protein kinase activity 0 0 3140 GO:0004694 eukaryotic translation initiation factor 2alpha kinase activity 0 0 3141 GO:0004695 galactosyltransferase-associated kinase activity 0 0 3142 GO:0004696 glycogen synthase kinase 3 activity 0 0 3143 GO:0004697 protein kinase C activity 0 0 3144 GO:0004698 calcium-dependent protein kinase C activity 0 0 3145 GO:0004699 calcium-independent protein kinase C activity 0 0 3146 GO:0004700 atypical protein kinase C activity 0 0 3147 GO:0004701 diacylglycerol-activated phospholipid-dependent protein kinase C activity 0 0 3148 GO:0004702 receptor signaling protein serine/threonine kinase activity 0 0 3149 GO:0004703 G-protein coupled receptor kinase activity 0 0 3150 GO:0004704 NF-kappaB-inducing kinase activity 0 0 3151 GO:0004705 JUN kinase activity 0 0 3152 GO:0004706 JUN kinase kinase kinase activity 0 0 3153 GO:0004707 MAP kinase activity 0 0 3154 GO:0004708 MAP kinase kinase activity 0 0 3155 GO:0004709 MAP kinase kinase kinase activity 0 0 3156 GO:0004710 MAP/ERK kinase kinase activity 0 0 3157 GO:0004711 ribosomal protein S6 kinase activity 0 0 3158 GO:0004712 protein threonine/tyrosine kinase activity 0 0 3159 GO:0004713 protein-tyrosine kinase activity 0 0 3160 GO:0004714 transmembrane receptor protein tyrosine kinase activity 0 0 3161 GO:0004715 non-membrane spanning protein tyrosine kinase activity 0 0 3162 GO:0004716 receptor signaling protein tyrosine kinase activity 0 0 3163 GO:0004717 focal adhesion kinase activity (obsolete GO:0004717) 1 0 3164 GO:0004718 Janus kinase activity 0 0 3165 GO:0004719 protein-L-isoaspartate (D-aspartate) O-methyltransferase activity 0 0 3166 GO:0004720 protein-lysine 6-oxidase activity 0 0 3167 GO:0004721 phosphoprotein phosphatase activity 0 0 3168 GO:0004722 protein serine/threonine phosphatase activity 0 0 3169 GO:0004723 calcium-dependent protein serine/threonine phosphatase activity 0 0 3170 GO:0004724 magnesium-dependent protein serine/threonine phosphatase activity 0 0 3171 GO:0004725 protein tyrosine phosphatase activity 0 0 3172 GO:0004726 non-membrane spanning protein tyrosine phosphatase activity 0 0 3173 GO:0004727 prenylated protein tyrosine phosphatase activity 0 0 3174 GO:0004728 receptor signaling protein tyrosine phosphatase activity 0 0 3175 GO:0004729 protoporphyrinogen oxidase activity 0 0 3176 GO:0004730 pseudouridylate synthase activity 0 0 3177 GO:0004731 purine-nucleoside phosphorylase activity 0 0 3178 GO:0004732 pyridoxal oxidase activity 0 0 3179 GO:0004733 pyridoxamine-phosphate oxidase activity 0 0 3180 GO:0004734 pyrimidodiazepine synthase activity 0 0 3181 GO:0004735 pyrroline-5-carboxylate reductase activity 0 0 3182 GO:0004736 pyruvate carboxylase activity 0 0 3183 GO:0004737 pyruvate decarboxylase activity 0 0 3184 GO:0004738 pyruvate dehydrogenase activity 0 0 3185 GO:0004739 pyruvate dehydrogenase (acetyl-transferring) activity 0 0 3186 GO:0004740 [pyruvate dehydrogenase (lipoamide)] kinase activity 0 0 3187 GO:0004741 [pyruvate dehydrogenase (lipoamide)] phosphatase activity 0 0 3188 GO:0004742 dihydrolipoyllysine-residue acetyltransferase activity 0 0 3189 GO:0004743 pyruvate kinase activity 0 0 3190 GO:0004744 retinal isomerase activity 0 0 3191 GO:0004745 retinol dehydrogenase activity 0 0 3192 GO:0004746 riboflavin synthase activity 0 0 3193 GO:0004747 ribokinase activity 0 0 3194 GO:0004748 ribonucleoside-diphosphate reductase activity 0 0 3195 GO:0004749 ribose phosphate diphosphokinase activity 0 0 3196 GO:0004750 ribulose-phosphate 3-epimerase activity 0 0 3197 GO:0004751 ribose-5-phosphate isomerase activity 0 0 3198 GO:0004753 saccharopine dehydrogenase activity 0 0 3199 GO:0004754 saccharopine dehydrogenase (NAD+, L-lysine-forming) activity 0 0 3200 GO:0004755 saccharopine dehydrogenase (NADP+, L-glutamate-forming) activity 0 0 3201 GO:0004756 selenide, water dikinase activity 0 0 3202 GO:0004757 sepiapterin reductase activity 0 0 3203 GO:0004758 serine C-palmitoyltransferase activity 0 0 3204 GO:0004759 serine esterase activity 0 0 3205 GO:0004760 serine-pyruvate transaminase activity 0 0 3206 GO:0004764 shikimate 5-dehydrogenase activity 0 0 3207 GO:0004765 shikimate kinase activity 0 0 3208 GO:0004766 spermidine synthase activity 0 0 3209 GO:0004767 sphingomyelin phosphodiesterase activity 0 0 3210 GO:0004768 stearoyl-CoA 9-desaturase activity 0 0 3211 GO:0004769 steroid delta-isomerase activity 0 0 3212 GO:0004770 sterol carrier protein X-related thiolase activity 0 0 3213 GO:0004771 sterol esterase activity 0 0 3214 GO:0004772 sterol O-acyltransferase activity 0 0 3215 GO:0004773 steryl-sulfatase activity 0 0 3216 GO:0004774 succinate-CoA ligase activity 0 0 3217 GO:0004775 succinate-CoA ligase (ADP-forming) activity 0 0 3218 GO:0004776 succinate-CoA ligase (GDP-forming) activity 0 0 3219 GO:0004777 succinate-semialdehyde dehydrogenase activity 0 0 3220 GO:0004778 succinyl-CoA hydrolase activity 0 0 3221 GO:0004779 sulfate adenylyltransferase activity 0 0 3222 GO:0004780 sulfate adenylyltransferase (ADP) activity 0 0 3223 GO:0004781 sulfate adenylyltransferase (ATP) activity 0 0 3224 GO:0004782 sulfinoalanine decarboxylase activity 0 0 3225 GO:0004783 sulfite reductase (NADPH) activity 0 0 3226 GO:0004784 superoxide dismutase activity 0 0 3227 GO:0004785 copper, zinc superoxide dismutase activity 0 0 3228 GO:0004786 Mn, Fe superoxide dismutase (obsolete GO:0004786) 1 0 3229 GO:0004787 thiamin-pyrophosphatase activity 0 0 3230 GO:0004788 thiamin diphosphokinase activity 0 0 3231 GO:0004789 thiamin-phosphate diphosphorylase activity 0 0 3232 GO:0004790 thioether S-methyltransferase activity 0 0 3233 GO:0004791 thioredoxin-disulfide reductase activity 0 0 3234 GO:0004792 thiosulfate sulfurtransferase activity 0 0 3235 GO:0004793 threonine aldolase activity 0 0 3236 GO:0004794 threonine ammonia-lyase activity 0 0 3237 GO:0004795 threonine synthase activity 0 0 3238 GO:0004796 thromboxane-A synthase activity 0 0 3239 GO:0004797 thymidine kinase activity 0 0 3240 GO:0004798 thymidylate kinase activity 0 0 3241 GO:0004799 thymidylate synthase activity 0 0 3242 GO:0004800 thyroxine 5'-deiodinase activity 0 0 3243 GO:0004801 transaldolase activity 0 0 3244 GO:0004802 transketolase activity 0 0 3245 GO:0004803 transposase activity 0 0 3246 GO:0004804 P-element encoded transposase activity 0 0 3247 GO:0004805 trehalose-phosphatase activity 0 0 3248 GO:0004806 triacylglycerol lipase activity 0 0 3249 GO:0004807 triose-phosphate isomerase activity 0 0 3250 GO:0004808 tRNA (5-methylaminomethyl-2-thiouridylate)-methyltransferase activity 0 0 3251 GO:0004809 tRNA (guanine-N2-)-methyltransferase activity 0 0 3252 GO:0004810 tRNA adenylyltransferase activity 0 0 3253 GO:0004811 tRNA isopentenyltransferase activity 0 0 3254 GO:0004812 aminoacyl-tRNA ligase activity 0 0 3255 GO:0004813 alanine-tRNA ligase activity 0 0 3256 GO:0004814 arginine-tRNA ligase activity 0 0 3257 GO:0004815 aspartate-tRNA ligase activity 0 0 3258 GO:0004816 asparagine-tRNA ligase activity 0 0 3259 GO:0004817 cysteine-tRNA ligase activity 0 0 3260 GO:0004818 glutamate-tRNA ligase activity 0 0 3261 GO:0004819 glutamine-tRNA ligase activity 0 0 3262 GO:0004820 glycine-tRNA ligase activity 0 0 3263 GO:0004821 histidine-tRNA ligase activity 0 0 3264 GO:0004822 isoleucine-tRNA ligase activity 0 0 3265 GO:0004823 leucine-tRNA ligase activity 0 0 3266 GO:0004824 lysine-tRNA ligase activity 0 0 3267 GO:0004825 methionine-tRNA ligase activity 0 0 3268 GO:0004826 phenylalanine-tRNA ligase activity 0 0 3269 GO:0004827 proline-tRNA ligase activity 0 0 3270 GO:0004828 serine-tRNA ligase activity 0 0 3271 GO:0004829 threonine-tRNA ligase activity 0 0 3272 GO:0004830 tryptophan-tRNA ligase activity 0 0 3273 GO:0004831 tyrosine-tRNA ligase activity 0 0 3274 GO:0004832 valine-tRNA ligase activity 0 0 3275 GO:0004833 tryptophan 2,3-dioxygenase activity 0 0 3276 GO:0004834 tryptophan synthase activity 0 0 3277 GO:0004835 tubulin-tyrosine ligase activity 0 0 3278 GO:0004836 tyramine-beta hydroxylase activity 0 0 3279 GO:0004837 tyrosine decarboxylase activity 0 0 3280 GO:0004838 tyrosine transaminase activity 0 0 3281 GO:0004839 ubiquitin activating enzyme activity 0 0 3282 GO:0004840 ubiquitin conjugating enzyme activity 0 0 3283 GO:0004842 ubiquitin-protein ligase activity 0 0 3284 GO:0004843 ubiquitin-specific protease activity 0 0 3285 GO:0004844 uracil DNA N-glycosylase activity 0 0 3286 GO:0004845 uracil phosphoribosyltransferase activity 0 0 3287 GO:0004846 urate oxidase activity 0 0 3288 GO:0004847 urea carboxylase activity 0 0 3289 GO:0004848 ureidoglycolate hydrolase activity 0 0 3290 GO:0004849 uridine kinase activity 0 0 3291 GO:0004850 uridine phosphorylase activity 0 0 3292 GO:0004851 uroporphyrin-III C-methyltransferase activity 0 0 3293 GO:0004852 uroporphyrinogen-III synthase activity 0 0 3294 GO:0004853 uroporphyrinogen decarboxylase activity 0 0 3295 GO:0004854 xanthine dehydrogenase activity 0 0 3296 GO:0004855 xanthine oxidase activity 0 0 3297 GO:0004856 xylulokinase activity 0 0 3298 GO:0004857 enzyme inhibitor activity 0 0 3299 GO:0004858 dUTP pyrophosphatase inhibitor activity 0 0 3300 GO:0004859 phospholipase inhibitor activity 0 0 3301 GO:0004860 protein kinase inhibitor activity 0 0 3302 GO:0004861 cyclin-dependent protein kinase inhibitor activity 0 0 3303 GO:0004862 cAMP-dependent protein kinase inhibitor activity 0 0 3304 GO:0004863 diacylglycerol-activated phospholipid-dependent protein kinase C inhibitor activity 0 0 3305 GO:0004864 protein phosphatase inhibitor activity 0 0 3306 GO:0004865 type 1 serine/threonine specific protein phosphatase inhibitor activity 0 0 3307 GO:0004866 endopeptidase inhibitor activity 0 0 3308 GO:0004867 serine-type endopeptidase inhibitor activity 0 0 3309 GO:0004868 serpin (obsolete GO:0004868) 1 0 3310 GO:0004869 cysteine protease inhibitor activity 0 0 3311 GO:0004871 signal transducer activity 0 0 3312 GO:0004872 receptor activity 0 0 3313 GO:0004873 asialoglycoprotein receptor activity 0 0 3314 GO:0004874 aryl hydrocarbon receptor activity 0 0 3315 GO:0004875 complement receptor activity 0 0 3316 GO:0004876 complement component C3a receptor activity 0 0 3317 GO:0004877 complement component C3b receptor activity 0 0 3318 GO:0004878 complement component C5a receptor activity 0 0 3319 GO:0004879 ligand-dependent nuclear receptor activity 0 0 3320 GO:0004880 juvenile hormone receptor activity 0 0 3321 GO:0004882 androgen receptor activity 0 0 3322 GO:0004883 glucocorticoid receptor activity 0 0 3323 GO:0004884 ecdysteroid hormone receptor activity 0 0 3324 GO:0004886 retinoid-X receptor activity 0 0 3325 GO:0004887 thyroid hormone receptor activity 0 0 3326 GO:0004888 transmembrane receptor activity 0 0 3327 GO:0004889 nicotinic acetylcholine-activated cation-selective channel activity 0 0 3328 GO:0004890 GABA-A receptor activity 0 0 3329 GO:0004891 glycine-inhibited chloride channel activity 0 0 3330 GO:0004892 B cell receptor activity (obsolete GO:0004892) 1 0 3331 GO:0004894 T cell receptor activity (obsolete GO:0004894) 1 0 3332 GO:0004895 cell adhesion receptor activity (obsolete GO:0004895) 1 0 3333 GO:0004896 hematopoietin/interferon-class (D200-domain) cytokine receptor activity 0 0 3334 GO:0004897 ciliary neurotrophic factor receptor activity 0 0 3335 GO:0004898 gp130 (obsolete GO:0004898) 1 0 3336 GO:0004899 leukemia inhibitory factor receptor beta-protein activity 0 0 3337 GO:0004900 erythropoietin receptor activity 0 0 3338 GO:0004901 granulocyte macrophage colony-stimulating factor receptor activity 0 0 3339 GO:0004902 granulocyte colony-stimulating factor receptor activity 0 0 3340 GO:0004903 growth hormone receptor activity 0 0 3341 GO:0004904 interferon receptor activity 0 0 3342 GO:0004905 interferon-alpha/beta receptor activity 0 0 3343 GO:0004906 interferon-gamma receptor activity 0 0 3344 GO:0004907 interleukin receptor activity 0 0 3345 GO:0004908 interleukin-1 receptor activity 0 0 3346 GO:0004909 interleukin-1, Type I, activating receptor activity 0 0 3347 GO:0004910 interleukin-1, Type II, blocking receptor activity 0 0 3348 GO:0004911 interleukin-2 receptor activity 0 0 3349 GO:0004912 interleukin-3 receptor activity 0 0 3350 GO:0004913 interleukin-4 receptor activity 0 0 3351 GO:0004914 interleukin-5 receptor activity 0 0 3352 GO:0004915 interleukin-6 receptor activity 0 0 3353 GO:0004917 interleukin-7 receptor activity 0 0 3354 GO:0004918 interleukin-8 receptor activity 0 0 3355 GO:0004919 interleukin-9 receptor activity 0 0 3356 GO:0004920 interleukin-10 receptor activity 0 0 3357 GO:0004921 interleukin-11 receptor activity 0 0 3358 GO:0004923 leukemia inhibitory factor receptor activity 0 0 3359 GO:0004924 oncostatin-M receptor activity 0 0 3360 GO:0004925 prolactin receptor activity 0 0 3361 GO:0004926 non-G-protein coupled 7TM receptor activity 0 0 3362 GO:0004927 sevenless receptor activity (obsolete GO:0004927) 1 0 3363 GO:0004928 frizzled receptor activity (obsolete GO:0004928) 1 0 3364 GO:0004929 frizzled-2 receptor activity (obsolete GO:0004929) 1 0 3365 GO:0004930 G-protein coupled receptor activity 0 0 3366 GO:0004931 ATP-gated cation channel activity 0 0 3367 GO:0004932 mating-type factor pheromone receptor activity 0 0 3368 GO:0004933 mating-type a-factor pheromone receptor activity 0 0 3369 GO:0004934 mating-type alpha-factor pheromone receptor activity 0 0 3370 GO:0004935 adrenoceptor activity 0 0 3371 GO:0004936 alpha-adrenergic receptor activity 0 0 3372 GO:0004937 alpha1-adrenergic receptor activity 0 0 3373 GO:0004938 alpha2-adrenergic receptor activity 0 0 3374 GO:0004939 beta-adrenergic receptor activity 0 0 3375 GO:0004940 beta1-adrenergic receptor activity 0 0 3376 GO:0004941 beta2-adrenergic receptor activity 0 0 3377 GO:0004942 anaphylatoxin receptor activity 0 0 3378 GO:0004943 C3a anaphylatoxin receptor activity 0 0 3379 GO:0004944 C5a anaphylatoxin receptor activity 0 0 3380 GO:0004945 angiotensin type II receptor activity 0 0 3381 GO:0004946 bombesin receptor activity 0 0 3382 GO:0004947 bradykinin receptor activity 0 0 3383 GO:0004948 calcitonin receptor activity 0 0 3384 GO:0004949 cannabinoid receptor activity 0 0 3385 GO:0004950 chemokine receptor activity 0 0 3386 GO:0004951 cholecystokinin receptor activity 0 0 3387 GO:0004952 dopamine receptor activity 0 0 3388 GO:0004953 icosanoid receptor activity 0 0 3389 GO:0004954 prostanoid receptor activity 0 0 3390 GO:0004955 prostaglandin receptor activity 0 0 3391 GO:0004956 prostaglandin D receptor activity 0 0 3392 GO:0004957 prostaglandin E receptor activity 0 0 3393 GO:0004958 prostaglandin F receptor activity 0 0 3394 GO:0004960 thromboxane receptor activity 0 0 3395 GO:0004961 thromboxane A2 receptor activity 0 0 3396 GO:0004962 endothelin receptor activity 0 0 3397 GO:0004963 follicle stimulating hormone receptor activity 0 0 3398 GO:0004964 lutropin-choriogonadotropic hormone receptor activity 0 0 3399 GO:0004965 GABA-B receptor activity 0 0 3400 GO:0004966 galanin receptor activity 0 0 3401 GO:0004967 glucagon receptor activity 0 0 3402 GO:0004968 gonadotropin-releasing hormone receptor activity 0 0 3403 GO:0004969 histamine receptor activity 0 0 3404 GO:0004970 ionotropic glutamate receptor activity 0 0 3405 GO:0004971 alpha-amino-3-hydroxy-5-methyl-4-isoxazole propionate selective glutamate receptor activity 0 0 3406 GO:0004972 N-methyl-D-aspartate selective glutamate receptor activity 0 0 3407 GO:0004973 N-methyl-D-aspartate receptor-associated protein activity (obsolete GO:0004973) 1 0 3408 GO:0004974 leukotriene receptor activity 0 0 3409 GO:0004977 melanocortin receptor activity 0 0 3410 GO:0004978 adrenocorticotropin receptor activity 0 0 3411 GO:0004979 beta-endorphin receptor activity 0 0 3412 GO:0004980 melanocyte stimulating hormone receptor activity 0 0 3413 GO:0004981 muscarinic acetylcholine receptor activity 0 0 3414 GO:0004982 N-formyl peptide receptor activity 0 0 3415 GO:0004983 neuropeptide Y receptor activity 0 0 3416 GO:0004984 olfactory receptor activity 0 0 3417 GO:0004985 opioid receptor activity 0 0 3418 GO:0004986 delta-opioid receptor activity 0 0 3419 GO:0004987 kappa-opioid receptor activity 0 0 3420 GO:0004988 mu-opioid receptor activity 0 0 3421 GO:0004989 octopamine receptor activity 0 0 3422 GO:0004990 oxytocin receptor activity 0 0 3423 GO:0004991 parathyroid hormone receptor activity 0 0 3424 GO:0004992 platelet activating factor receptor activity 0 0 3425 GO:0004993 serotonin receptor activity 0 0 3426 GO:0004994 somatostatin receptor activity 0 0 3427 GO:0004995 tachykinin receptor activity 0 0 3428 GO:0004996 thyroid-stimulating hormone receptor activity 0 0 3429 GO:0004997 thyrotropin-releasing hormone receptor activity 0 0 3430 GO:0004998 transferrin receptor activity 0 0 3431 GO:0004999 vasoactive intestinal polypeptide receptor activity 0 0 3432 GO:0005000 vasopressin receptor activity 0 0 3433 GO:0005001 transmembrane receptor protein tyrosine phosphatase activity 0 0 3434 GO:0005003 ephrin receptor activity 0 0 3435 GO:0005004 GPI-linked ephrin receptor activity 0 0 3436 GO:0005005 transmembrane-ephrin receptor activity 0 0 3437 GO:0005006 epidermal growth factor receptor activity 0 0 3438 GO:0005007 fibroblast growth factor receptor activity 0 0 3439 GO:0005008 hepatocyte growth factor receptor activity 0 0 3440 GO:0005009 insulin receptor activity 0 0 3441 GO:0005010 insulin-like growth factor receptor activity 0 0 3442 GO:0005011 macrophage colony stimulating factor receptor activity 0 0 3443 GO:0005012 Neu/ErbB-2 receptor activity (obsolete GO:0005012) 1 0 3444 GO:0005013 neurotrophin TRK receptor activity (obsolete GO:0005013) 1 0 3445 GO:0005014 neurotrophin TRKA receptor activity (obsolete GO:0005014) 1 0 3446 GO:0005015 neurotrophin TRKB receptor activity (obsolete GO:0005015) 1 0 3447 GO:0005016 neurotrophin TRKC receptor activity (obsolete GO:0005016) 1 0 3448 GO:0005017 platelet-derived growth factor receptor activity 0 0 3449 GO:0005018 platelet-derived growth factor alpha-receptor activity 0 0 3450 GO:0005019 platelet-derived growth factor beta-receptor activity 0 0 3451 GO:0005020 stem cell factor receptor activity 0 0 3452 GO:0005021 vascular endothelial growth factor receptor activity 0 0 3453 GO:0005024 transforming growth factor beta receptor activity 0 0 3454 GO:0005025 transforming growth factor beta receptor activity, type I 0 0 3455 GO:0005026 transforming growth factor beta receptor activity, type II 0 0 3456 GO:0005027 NGF/TNF (6 C-domain) receptor activity (obsolete GO:0005027) 1 0 3457 GO:0005028 CD40 receptor activity (obsolete GO:0005028) 1 0 3458 GO:0005029 CD27 receptor activity (obsolete GO:0005029) 1 0 3459 GO:0005030 neurotrophin receptor activity 0 0 3460 GO:0005031 tumor necrosis factor receptor activity 0 0 3461 GO:0005034 osmosensor activity 0 0 3462 GO:0005035 death receptor activity 0 0 3463 GO:0005037 death receptor adaptor protein activity (obsolete GO:0005037) 1 0 3464 GO:0005038 death receptor interacting protein activity (obsolete GO:0005038) 1 0 3465 GO:0005039 death receptor-associated factor activity (obsolete GO:0005039) 1 0 3466 GO:0005040 decoy death receptor activity 0 0 3467 GO:0005041 low-density lipoprotein receptor activity 0 0 3468 GO:0005042 netrin receptor activity 0 0 3469 GO:0005043 repulsive netrin receptor activity 0 0 3470 GO:0005044 scavenger receptor activity 0 0 3471 GO:0005045 endoplasmic reticulum receptor activity (obsolete GO:0005045) 1 0 3472 GO:0005046 KDEL sequence binding 0 0 3473 GO:0005047 signal recognition particle binding 0 0 3474 GO:0005048 signal sequence binding 0 0 3475 GO:0005049 nuclear export signal receptor activity 0 0 3476 GO:0005050 peroxisome receptor (obsolete GO:0005050) 1 0 3477 GO:0005052 peroxisome targeting signal-1 binding 0 0 3478 GO:0005053 peroxisome targeting signal-2 binding 0 0 3479 GO:0005054 peroxisome integral membrane receptor (obsolete GO:0005054) 1 0 3480 GO:0005055 laminin receptor activity 0 0 3481 GO:0005056 tiggrin receptor activity 0 0 3482 GO:0005057 receptor signaling protein activity 0 0 3483 GO:0005061 aryl hydrocarbon receptor nuclear translocator activity 0 0 3484 GO:0005062 hematopoietin/interferon-class (D200-domain) cytokine receptor signal transducer activity 0 0 3485 GO:0005065 heterotrimeric G-protein (obsolete GO:0005065) 1 0 3486 GO:0005066 transmembrane receptor protein tyrosine kinase signaling protein activity 0 0 3487 GO:0005068 transmembrane receptor protein tyrosine kinase adaptor protein activity 0 0 3488 GO:0005069 transmembrane receptor protein tyrosine kinase docking protein activity 0 0 3489 GO:0005070 SH3/SH2 adaptor activity 0 0 3490 GO:0005071 transmembrane receptor protein serine/threonine kinase signaling protein activity 0 0 3491 GO:0005072 transforming growth factor beta receptor, cytoplasmic mediator activity 0 0 3492 GO:0005073 common-partner SMAD protein (obsolete GO:0005073) 1 0 3493 GO:0005074 inhibitory SMAD protein (obsolete GO:0005074) 1 0 3494 GO:0005075 pathway-specific SMAD protein (obsolete GO:0005075) 1 0 3495 GO:0005076 receptor signaling protein serine/threonine kinase signaling protein activity 0 0 3496 GO:0005077 MAP-kinase anchoring activity (obsolete GO:0005077) 1 0 3497 GO:0005078 MAP-kinase scaffold activity 0 0 3498 GO:0005079 protein kinase A anchoring activity (obsolete GO:0005079) 1 0 3499 GO:0005080 protein kinase C binding 0 0 3500 GO:0005081 receptor signaling protein serine/threonine phosphatase signaling protein activity 0 0 3501 GO:0005082 receptor signaling protein tyrosine phosphatase signaling protein activity 0 0 3502 GO:0005083 small GTPase regulator activity 0 0 3503 GO:0005084 Rab escort protein activity 0 0 3504 GO:0005085 guanyl-nucleotide exchange factor activity 0 0 3505 GO:0005086 ARF guanyl-nucleotide exchange factor activity 0 0 3506 GO:0005087 Ran guanyl-nucleotide exchange factor activity 0 0 3507 GO:0005088 Ras guanyl-nucleotide exchange factor activity 0 0 3508 GO:0005089 Rho guanyl-nucleotide exchange factor activity 0 0 3509 GO:0005090 Sar guanyl-nucleotide exchange factor activity 0 0 3510 GO:0005091 guanyl-nucleotide exchange factor adaptor activity 0 0 3511 GO:0005092 GDP-dissociation inhibitor activity 0 0 3512 GO:0005093 Rab GDP-dissociation inhibitor activity 0 0 3513 GO:0005094 Rho GDP-dissociation inhibitor activity 0 0 3514 GO:0005095 GTPase inhibitor activity 0 0 3515 GO:0005096 GTPase activator activity 0 0 3516 GO:0005097 Rab GTPase activator activity 0 0 3517 GO:0005098 Ran GTPase activator activity 0 0 3518 GO:0005099 Ras GTPase activator activity 0 0 3519 GO:0005100 Rho GTPase activator activity 0 0 3520 GO:0005101 Sar GTPase activator activity 0 0 3521 GO:0005102 receptor binding 0 0 3522 GO:0005103 baboon binding 0 0 3523 GO:0005104 fibroblast growth factor receptor binding 0 0 3524 GO:0005105 type 1 fibroblast growth factor receptor binding 0 0 3525 GO:0005106 ephrin (obsolete GO:0005106) 1 0 3526 GO:0005107 GPI-linked ephrin (obsolete GO:0005107) 1 0 3527 GO:0005108 transmembrane ephrin (obsolete GO:0005108) 1 0 3528 GO:0005109 frizzled binding 0 0 3529 GO:0005110 frizzled-2 binding 0 0 3530 GO:0005111 type 2 fibroblast growth factor receptor binding 0 0 3531 GO:0005112 Notch binding 0 0 3532 GO:0005113 patched binding 0 0 3533 GO:0005114 punt binding 0 0 3534 GO:0005115 receptor tyrosine kinase-like orphan receptor binding 0 0 3535 GO:0005116 saxophone binding 0 0 3536 GO:0005117 wishful thinking binding 0 0 3537 GO:0005118 sevenless binding 0 0 3538 GO:0005119 smoothened binding 0 0 3539 GO:0005120 thickveins binding 0 0 3540 GO:0005121 Toll binding 0 0 3541 GO:0005122 torso binding 0 0 3542 GO:0005123 death receptor binding 0 0 3543 GO:0005124 scavenger receptor binding 0 0 3544 GO:0005125 cytokine activity 0 0 3545 GO:0005126 hematopoietin/interferon-class (D200-domain) cytokine receptor binding 0 0 3546 GO:0005127 ciliary neurotrophic factor receptor binding 0 0 3547 GO:0005128 erythropoietin receptor binding 0 0 3548 GO:0005129 granulocyte macrophage colony-stimulating factor receptor binding 0 0 3549 GO:0005130 granulocyte colony-stimulating factor receptor binding 0 0 3550 GO:0005131 growth hormone receptor binding 0 0 3551 GO:0005132 interferon-alpha/beta receptor binding 0 0 3552 GO:0005133 interferon-gamma receptor binding 0 0 3553 GO:0005134 interleukin-2 receptor binding 0 0 3554 GO:0005135 interleukin-3 receptor binding 0 0 3555 GO:0005136 interleukin-4 receptor binding 0 0 3556 GO:0005137 interleukin-5 receptor binding 0 0 3557 GO:0005138 interleukin-6 receptor binding 0 0 5768 GO:0007569 cell aging 0 0 5769 GO:0007570 age dependent accumulation of genetic damage (obsolete GO:0007570) 1 0 5770 GO:0007571 age-dependent general metabolic decline 0 0 5771 GO:0007572 age dependent decreased translational activity (obsolete GO:0007572) 1 0 5772 GO:0007573 age dependent increased protein content (obsolete GO:0007573) 1 0 5773 GO:0007574 cell aging (sensu Saccharomyces) (obsolete GO:0007574) 1 0 5774 GO:0007575 nucleolar size increase (obsolete GO:0007575) 1 0 5775 GO:0007576 nucleolar fragmentation 0 0 5776 GO:0007577 autophagic death (sensu Saccharomyces) (obsolete GO:0007577) 1 0 5777 GO:0007578 aging dependent sterility (sensu Saccharomyces) (obsolete GO:0007578) 1 0 5778 GO:0007579 senescence factor accumulation (obsolete GO:0007579) 1 0 5779 GO:0007580 extrachromosomal circular DNA accumulation during cell aging 0 0 5780 GO:0007581 age-dependent yeast cell size increase (obsolete GO:0007581) 1 0 5781 GO:0007582 physiological process 0 0 5782 GO:0007583 killer activity (obsolete GO:0007583) 1 0 5783 GO:0007584 response to nutrient 0 0 5784 GO:0007585 respiratory gaseous exchange 0 0 5785 GO:0007586 digestion 0 0 5786 GO:0007587 sugar utilization 0 0 5787 GO:0007588 excretion 0 0 5788 GO:0007589 fluid secretion 0 0 5789 GO:0007590 fat body metabolism (sensu Insecta) (obsolete GO:0007590) 1 0 5790 GO:0007591 molting cycle (sensu Insecta) 0 0 5791 GO:0007592 cuticle biosynthesis (sensu Protostomia and Nematoda) 0 0 5792 GO:0007593 cuticle tanning 0 0 5793 GO:0007594 puparial adhesion 0 0 5794 GO:0007595 lactation 0 0 5795 GO:0007596 blood coagulation 0 0 5796 GO:0007597 blood coagulation, intrinsic pathway 0 0 5797 GO:0007598 blood coagulation, extrinsic pathway 0 0 5798 GO:0007599 hemostasis 0 0 5799 GO:0007600 sensory perception 0 0 5800 GO:0007601 visual perception 0 0 5801 GO:0007602 phototransduction 0 0 5802 GO:0007603 phototransduction, visible light 0 0 5803 GO:0007604 phototransduction, UV 0 0 5804 GO:0007605 sensory perception of sound 0 0 5805 GO:0007606 sensory perception of chemical stimulus 0 0 5806 GO:0007607 taste perception (obsolete GO:0007607) 1 0 5807 GO:0007608 sensory perception of smell 0 0 5808 GO:0007610 behavior 0 0 5809 GO:0007611 learning and/or memory 0 0 5810 GO:0007612 learning 0 0 5811 GO:0007613 memory 0 0 5812 GO:0007614 short-term memory 0 0 5813 GO:0007615 anesthesia-resistant memory 0 0 5814 GO:0007616 long-term memory 0 0 5815 GO:0007617 mating behavior 0 0 5816 GO:0007618 mating 0 0 5817 GO:0007619 courtship behavior 0 0 5818 GO:0007620 copulation 0 0 5819 GO:0007621 negative regulation of female receptivity 0 0 5820 GO:0007622 rhythmic behavior 0 0 5821 GO:0007623 circadian rhythm 0 0 5822 GO:0007624 ultradian rhythm 0 0 5823 GO:0007625 grooming behavior 0 0 5824 GO:0007626 locomotory behavior 0 0 5825 GO:0007627 larval behavior (sensu Insecta) (obsolete GO:0007627) 1 0 5826 GO:0007628 adult walking behavior 0 0 5827 GO:0007629 flight behavior 0 0 5828 GO:0007630 jump response 0 0 5829 GO:0007631 feeding behavior 0 0 5830 GO:0007632 visual behavior 0 0 5831 GO:0007633 pattern orientation 0 0 5832 GO:0007634 optokinetic behavior 0 0 5833 GO:0007635 chemosensory behavior 0 0 5834 GO:0007636 chemosensory jump behavior 0 0 5835 GO:0007637 proboscis extension reflex 0 0 5836 GO:0007638 mechanosensory behavior 0 0 5837 GO:0008001 fibrinogen (obsolete GO:0008001) 1 0 5838 GO:0008002 lamina lucida 0 0 5839 GO:0008003 lamina densa 0 0 5840 GO:0008004 lamina reticularis 0 0 5841 GO:0008008 membrane attack complex protein beta2 chain (obsolete GO:0008008) 1 0 5842 GO:0008009 chemokine activity 0 0 5843 GO:0008010 structural constituent of larval cuticle (sensu Insecta) 0 0 5844 GO:0008011 structural constituent of pupal cuticle (sensu Insecta) 0 0 5845 GO:0008012 structural constituent of adult cuticle (sensu Insecta) 0 0 5846 GO:0008013 beta-catenin binding 0 0 5847 GO:0008014 calcium-dependent cell adhesion molecule activity (obsolete GO:0008014) 1 0 5848 GO:0008015 circulation 0 0 5849 GO:0008016 regulation of heart contraction 0 0 5850 GO:0008017 microtubule binding 0 0 5851 GO:0008018 structural protein of chorion (sensu Drosophila) (obsolete GO:0008018) 1 0 5852 GO:0008019 macrophage receptor activity (obsolete GO:0008019) 1 0 5853 GO:0008020 G-protein coupled photoreceptor activity 0 0 5854 GO:0008021 synaptic vesicle 0 0 5855 GO:0008022 protein C-terminus binding 0 0 5856 GO:0008023 transcription elongation factor complex 0 0 5857 GO:0008024 transcription elongation factor complex b 0 0 5858 GO:0008025 diazepam binding inhibitor activity (obsolete GO:0008025) 1 0 5859 GO:0008026 ATP-dependent helicase activity 0 0 5860 GO:0008028 monocarboxylic acid transporter activity 0 0 5861 GO:0008029 pentraxin receptor activity 0 0 5862 GO:0008030 neuronal pentraxin receptor activity 0 0 5863 GO:0008031 eclosion hormone activity 0 0 5864 GO:0008033 tRNA processing 0 0 5865 GO:0008034 lipoprotein binding 0 0 5866 GO:0008035 high-density lipoprotein binding 0 0 5867 GO:0008036 diuretic hormone receptor activity 0 0 5868 GO:0008037 cell recognition 0 0 5869 GO:0008038 neuron recognition 0 0 5870 GO:0008039 synaptic target recognition 0 0 5871 GO:0008041 storage protein of fat body (sensu Insecta) (obsolete GO:0008041) 1 0 5872 GO:0008042 iron-sulfur electron transfer carrier (obsolete GO:0008042) 1 0 5873 GO:0008043 ferritin complex 0 0 5874 GO:0008044 adult behavior (sensu Insecta) (obsolete GO:0008044) 1 0 5875 GO:0008045 motor axon guidance 0 0 5876 GO:0008046 axon guidance receptor activity 0 0 5877 GO:0008047 enzyme activator activity 0 0 5878 GO:0008048 calcium sensitive guanylate cyclase activator activity 0 0 5879 GO:0008049 male courtship behavior 0 0 5880 GO:0008050 female courtship behavior 0 0 5881 GO:0008051 farnesyl-diphosphate farnesyl transferase complex (obsolete GO:0008051) 1 0 5882 GO:0008052 sensory organ determination 0 0 5883 GO:0008053 mitochondrial fusion 0 0 5884 GO:0008054 cyclin catabolism 0 0 5885 GO:0008055 ocellus pigment biosynthesis 0 0 5886 GO:0008056 ocellus development 0 0 5887 GO:0008057 eye pigment granule organization and biogenesis 0 0 5888 GO:0008058 ocellus pigment granule organization and biogenesis 0 0 5889 GO:0008060 ARF GTPase activator activity 0 0 5890 GO:0008061 chitin binding 0 0 5891 GO:0008062 eclosion rhythm 0 0 5892 GO:0008063 Toll signaling pathway 0 0 5893 GO:0008064 regulation of actin polymerization and/or depolymerization 0 0 5894 GO:0008065 establishment of blood-nerve barrier 0 0 5895 GO:0008066 glutamate receptor activity 0 0 5896 GO:0008067 metabotropic glutamate, GABA-B-like receptor activity 0 0 5897 GO:0008068 glutamate-gated chloride channel activity 0 0 5898 GO:0008069 dorsal/ventral axis determination, follicular epithelium (sensu Insecta) 0 0 5899 GO:0008070 maternal determination of dorsal/ventral axis, follicular epithelium, germ-line encoded 0 0 5900 GO:0008071 maternal determination of dorsal/ventral axis, follicular epithelium, soma encoded (sensu Insecta) 0 0 5901 GO:0008073 ornithine decarboxylase inhibitor activity 0 0 5902 GO:0008074 guanylate cyclase complex, soluble 0 0 5903 GO:0008075 receptor guanylate cyclase activity (obsolete GO:0008075) 1 0 5904 GO:0008076 voltage-gated potassium channel complex 0 0 5905 GO:0008077 Hsp70/Hsp90 organizing protein activity (obsolete GO:0008077) 1 0 5906 GO:0008078 mesodermal cell migration 0 0 5907 GO:0008079 translation termination factor activity 0 0 5908 GO:0008080 N-acetyltransferase activity 0 0 5909 GO:0008081 phosphoric diester hydrolase activity 0 0 5910 GO:0008083 growth factor activity 0 0 5911 GO:0008084 imaginal disc growth factor activity 0 0 5912 GO:0008085 phototransduction, visible light, light adaptation (obsolete GO:0008085) 1 0 5913 GO:0008086 light-activated voltage-gated calcium channel activity 0 0 5914 GO:0008087 light-activated voltage-gated calcium channel complex 0 0 5915 GO:0008088 axon cargo transport 0 0 5916 GO:0008089 anterograde axon cargo transport 0 0 5917 GO:0008090 retrograde axon cargo transport 0 0 5918 GO:0008091 spectrin 0 0 5919 GO:0008092 cytoskeletal protein binding 0 0 5920 GO:0008093 cytoskeletal adaptor activity 0 0 5921 GO:0008094 DNA-dependent ATPase activity 0 0 5922 GO:0008095 inositol-1,4,5-triphosphate receptor activity 0 0 5923 GO:0008096 juvenile hormone epoxide hydrolase activity 0 0 5924 GO:0008097 5S rRNA binding 0 0 5925 GO:0008098 5S rRNA primary transcript binding 0 0 5926 GO:0008099 synaptic vesicle endocytosis (obsolete GO:0008099) 1 0 5927 GO:0008100 lipophorin (obsolete GO:0008100) 1 0 5928 GO:0008101 decapentaplegic receptor signaling pathway 0 0 5929 GO:0008103 oocyte microtubule cytoskeleton polarization 0 0 5930 GO:0008104 protein localization 0 0 5931 GO:0008105 asymmetric protein localization 0 0 5932 GO:0008106 alcohol dehydrogenase (NADP+) activity 0 0 5933 GO:0008107 galactoside 2-alpha-L-fucosyltransferase activity 0 0 5934 GO:0008108 UDP-glucose:hexose-1-phosphate uridylyltransferase activity 0 0 5935 GO:0008109 N-acetyllactosaminide beta-1,6-N-acetylglucosaminyltransferase activity 0 0 5936 GO:0008110 histidine transaminase activity 0 0 5937 GO:0008111 alpha-methylacyl-CoA racemase activity 0 0 5938 GO:0008112 nicotinamide N-methyltransferase activity 0 0 5939 GO:0008113 protein-methionine-S-oxide reductase activity 0 0 5940 GO:0008114 phosphogluconate 2-dehydrogenase activity 0 0 5941 GO:0008115 sarcosine oxidase activity 0 0 5942 GO:0008116 prostaglandin-I synthase activity 0 0 5943 GO:0008117 sphinganine-1-phosphate aldolase activity 0 0 5944 GO:0008118 N-acetyllactosaminide alpha-2,3-sialyltransferase activity 0 0 5945 GO:0008119 thiopurine S-methyltransferase activity 0 0 5946 GO:0008120 ceramide glucosyltransferase activity 0 0 5947 GO:0008121 ubiquinol-cytochrome-c reductase activity 0 0 5948 GO:0008123 cholesterol 7-alpha-monooxygenase activity 0 0 5949 GO:0008124 4-alpha-hydroxytetrahydrobiopterin dehydratase activity 0 0 5950 GO:0008125 pancreatic elastase I activity 0 0 5951 GO:0008126 acetylesterase activity 0 0 5952 GO:0008127 quercetin 2,3-dioxygenase activity 0 0 5953 GO:0008129 actinidain activity 0 0 5954 GO:0008130 neutrophil collagenase activity 0 0 5955 GO:0008131 amine oxidase activity 0 0 5956 GO:0008132 pancreatic elastase activity 0 0 5957 GO:0008133 collagenase activity 0 0 5958 GO:0008134 transcription factor binding 0 0 5959 GO:0008135 translation factor activity, nucleic acid binding 0 0 5960 GO:0008137 NADH dehydrogenase (ubiquinone) activity 0 0 5961 GO:0008138 protein tyrosine/serine/threonine phosphatase activity 0 0 5962 GO:0008139 nuclear localization sequence binding 0 0 5963 GO:0008140 cAMP response element binding protein binding 0 0 5964 GO:0008141 puparial glue (sensu Diptera) (obsolete GO:0008141) 1 0 5965 GO:0008142 oxysterol binding 0 0 5966 GO:0008143 poly(A) binding 0 0 5967 GO:0008144 drug binding 0 0 5968 GO:0008145 phenylalkylamine binding 0 0 5969 GO:0008146 sulfotransferase activity 0 0 5970 GO:0008147 structural constituent of bone 0 0 5971 GO:0008148 negative transcription elongation factor activity 0 0 5972 GO:0008149 para-aminobenzoic acid (PABA) synthase (obsolete GO:0008149) 1 0 5973 GO:0008150 biological_process 0 0 5974 GO:0008152 metabolism 0 0 5975 GO:0008153 para-aminobenzoic acid biosynthesis 0 0 5976 GO:0008154 actin polymerization and/or depolymerization 0 0 5977 GO:0008155 larval behavior (sensu Drosophila) (obsolete GO:0008155) 1 0 5978 GO:0008156 negative regulation of DNA replication 0 0 5979 GO:0008157 protein phosphatase 1 binding 0 0 5980 GO:0008158 hedgehog receptor activity 0 0 5981 GO:0008159 positive transcription elongation factor activity 0 0 5982 GO:0008160 protein tyrosine phosphatase activator activity 0 0 5983 GO:0008161 carbamate resistance (obsolete GO:0008161) 1 0 5984 GO:0008162 cyclodiene resistance (obsolete GO:0008162) 1 0 5985 GO:0008163 DDT resistance (obsolete GO:0008163) 1 0 5986 GO:0008164 organophosphorus resistance (obsolete GO:0008164) 1 0 5987 GO:0008165 pyrethroid resistance (obsolete GO:0008165) 1 0 5988 GO:0008166 viral replication (obsolete GO:0008166) 1 0 5989 GO:0008167 sigma virus replication (obsolete GO:0008167) 1 0 5990 GO:0008168 methyltransferase activity 0 0 5991 GO:0008169 C-methyltransferase activity 0 0 5992 GO:0008170 N-methyltransferase activity 0 0 5993 GO:0008171 O-methyltransferase activity 0 0 5994 GO:0008172 S-methyltransferase activity 0 0 5995 GO:0008173 RNA methyltransferase activity 0 0 5996 GO:0008174 mRNA methyltransferase activity 0 0 5997 GO:0008175 tRNA methyltransferase activity 0 0 5998 GO:0008176 tRNA (guanine-N7-)-methyltransferase activity 0 0 5999 GO:0008177 succinate dehydrogenase (ubiquinone) activity 0 0 6000 GO:0008179 adenylate cyclase binding 0 0 6001 GO:0008180 signalosome complex 0 0 6002 GO:0008181 tumor suppressor (obsolete GO:0008181) 1 0 6003 GO:0008184 glycogen phosphorylase activity 0 0 6004 GO:0008186 RNA-dependent ATPase activity 0 0 6005 GO:0008187 poly-pyrimidine tract binding 0 0 6006 GO:0008188 neuropeptide receptor activity 0 0 6007 GO:0008189 apoptosis inhibitor activity (obsolete GO:0008189) 1 0 6008 GO:0008190 eukaryotic initiation factor 4E binding 0 0 6009 GO:0008191 metalloendopeptidase inhibitor activity 0 0 6010 GO:0008192 RNA guanylyltransferase activity 0 0 6011 GO:0008193 tRNA guanylyltransferase activity 0 0 6012 GO:0008194 UDP-glycosyltransferase activity 0 0 6013 GO:0008195 phosphatidate phosphatase activity 0 0 6014 GO:0008196 vitellogenin receptor activity 0 0 6015 GO:0008197 yolk protein (obsolete GO:0008197) 1 0 6016 GO:0008198 ferrous iron binding 0 0 6017 GO:0008199 ferric iron binding 0 0 6018 GO:0008200 ion channel inhibitor activity 0 0 6019 GO:0008201 heparin binding 0 0 6020 GO:0008202 steroid metabolism 0 0 6021 GO:0008203 cholesterol metabolism 0 0 6022 GO:0008204 ergosterol metabolism 0 0 6023 GO:0008205 ecdysone metabolism 0 0 6024 GO:0008206 bile acid metabolism 0 0 6025 GO:0008207 C21-steroid hormone metabolism 0 0 6026 GO:0008208 C21-steroid hormone catabolism 0 0 6027 GO:0008209 androgen metabolism 0 0 6028 GO:0008210 estrogen metabolism 0 0 6029 GO:0008211 glucocorticoid metabolism 0 0 6030 GO:0008212 mineralocorticoid metabolism 0 0 6031 GO:0008213 protein amino acid alkylation 0 0 6032 GO:0008214 protein amino acid dealkylation 0 0 6033 GO:0008215 spermine metabolism 0 0 6034 GO:0008216 spermidine metabolism 0 0 6035 GO:0008217 blood pressure regulation 0 0 6036 GO:0008218 bioluminescence 0 0 6037 GO:0008219 cell death 0 0 6038 GO:0008220 necrosis (obsolete GO:0008220) 1 0 6039 GO:0008222 tumor antigen (obsolete GO:0008222) 1 0 6040 GO:0008224 Gram-positive antibacterial peptide activity (obsolete GO:0008224) 1 0 6041 GO:0008225 Gram-negative antibacterial peptide activity (obsolete GO:0008225) 1 0 6042 GO:0008226 tyramine receptor activity 0 0 6043 GO:0008227 amine receptor activity 0 0 6044 GO:0008228 opsonization 0 0 6045 GO:0008229 opsonin activity (obsolete GO:0008229) 1 0 6046 GO:0008230 ecdysone receptor holocomplex 0 0 6047 GO:0008231 repressor ecdysone receptor holocomplex 0 0 6048 GO:0008232 activator ecdysone receptor holocomplex 0 0 6049 GO:0008233 peptidase activity 0 0 6050 GO:0008234 cysteine-type peptidase activity 0 0 6051 GO:0008235 metalloexopeptidase activity 0 0 6052 GO:0008236 serine-type peptidase activity 0 0 6053 GO:0008237 metallopeptidase activity 0 0 6054 GO:0008238 exopeptidase activity 0 0 6055 GO:0008239 dipeptidyl-peptidase activity 0 0 6056 GO:0008240 tripeptidyl-peptidase activity 0 0 6057 GO:0008241 peptidyl-dipeptidase activity 0 0 6058 GO:0008242 omega peptidase activity 0 0 6059 GO:0008243 plasminogen activator activity 0 0 6060 GO:0008245 lysosomal membrane hydrogen-transporting ATPase (obsolete GO:0008245) 1 0 6061 GO:0008246 electron transfer flavoprotein (obsolete GO:0008246) 1 0 6062 GO:0008247 2-acetyl-1-alkylglycerophosphocholine esterase complex 0 0 6063 GO:0008248 pre-mRNA splicing factor activity (obsolete GO:0008248) 1 0 6064 GO:0008250 oligosaccharyl transferase complex 0 0 6065 GO:0008251 tRNA specific adenosine deaminase activity 0 0 6066 GO:0008252 nucleotidase activity 0 0 6067 GO:0008253 5'-nucleotidase activity 0 0 6068 GO:0008254 3'-nucleotidase activity 0 0 6069 GO:0008255 ecdysis-triggering hormone activity 0 0 6070 GO:0008256 protein histidine pros-kinase activity 0 0 6071 GO:0008257 protein histidine tele-kinase activity 0 0 6072 GO:0008258 head involution 0 0 6073 GO:0008259 transforming growth factor beta ligand binding to type I receptor (obsolete GO:0008259) 1 0 6074 GO:0008260 3-oxoacid CoA-transferase activity 0 0 6075 GO:0008261 allatostatin receptor activity 0 0 6076 GO:0008262 importin-alpha export receptor activity 0 0 6077 GO:0008263 pyrimidine-specific mismatch base pair DNA N-glycosylase activity 0 0 6078 GO:0008265 Mo-molybdopterin cofactor sulfurase activity 0 0 6079 GO:0008266 poly(U) binding 0 0 6080 GO:0008267 poly-glutamine tract binding 0 0 6081 GO:0008268 receptor signaling protein tyrosine kinase signaling protein activity 0 0 6082 GO:0008269 JAK pathway signal transduction adaptor activity 0 0 6083 GO:0008270 zinc ion binding 0 0 6084 GO:0008271 sulfate porter activity 0 0 6085 GO:0008272 sulfate transport 0 0 6086 GO:0008273 calcium, potassium:sodium antiporter activity 0 0 6087 GO:0008274 gamma-tubulin ring complex 0 0 6088 GO:0008275 gamma-tubulin small complex 0 0 6089 GO:0008276 protein methyltransferase activity 0 0 6090 GO:0008277 regulation of G-protein coupled receptor protein signaling pathway 0 0 6091 GO:0008278 cohesin complex 0 0 6092 GO:0008280 cohesin core heterodimer 0 0 6093 GO:0008281 sulfonylurea receptor activity 0 0 6094 GO:0008282 ATP-sensitive potassium channel complex 0 0 6095 GO:0008283 cell proliferation 0 0 6096 GO:0008284 positive regulation of cell proliferation 0 0 6097 GO:0008285 negative regulation of cell proliferation 0 0 6098 GO:0008286 insulin receptor signaling pathway 0 0 6099 GO:0008287 protein serine/threonine phosphatase complex 0 0 6100 GO:0008288 boss receptor activity 0 0 6101 GO:0008289 lipid binding 0 0 6102 GO:0008290 F-actin capping protein complex 0 0 6103 GO:0008291 acetylcholine metabolism 0 0 6104 GO:0008292 acetylcholine biosynthesis 0 0 6105 GO:0008293 torso signaling pathway 0 0 6106 GO:0008294 calcium- and calmodulin-responsive adenylate cyclase activity 0 0 6107 GO:0008295 spermidine biosynthesis 0 0 6108 GO:0008296 3'-5'-exodeoxyribonuclease activity 0 0 6109 GO:0008297 single-stranded DNA specific exodeoxyribonuclease activity 0 0 6110 GO:0008298 intracellular mRNA localization 0 0 6111 GO:0008299 isoprenoid biosynthesis 0 0 6112 GO:0008300 isoprenoid catabolism 0 0 6113 GO:0008301 DNA bending activity 0 0 6114 GO:0008302 ring canal formation, actin assembly 0 0 6115 GO:0008303 caspase complex 0 0 6116 GO:0008304 eukaryotic translation initiation factor 4 complex (obsolete GO:0008304) 1 0 6117 GO:0008305 integrin complex 0 0 6118 GO:0008306 associative learning 0 0 6119 GO:0008307 structural constituent of muscle 0 0 6120 GO:0008308 voltage-gated ion-selective channel activity 0 0 6121 GO:0008309 double-stranded DNA specific exodeoxyribonuclease activity 0 0 6122 GO:0008310 single-stranded DNA specific 3'-5' exodeoxyribonuclease activity 0 0 6123 GO:0008311 double-stranded DNA specific 3'-5' exodeoxyribonuclease activity 0 0 6124 GO:0008312 7S RNA binding 0 0 6125 GO:0008313 gurken receptor activity 0 0 6126 GO:0008314 gurken receptor signaling pathway 0 0 6127 GO:0008315 meiotic G2/MI transition 0 0 6128 GO:0008316 structural constituent of vitelline membrane (sensu Insecta) 0 0 6129 GO:0008317 gurken receptor binding 0 0 6130 GO:0008318 protein prenyltransferase activity 0 0 6131 GO:0008319 prenyl protein specific endopeptidase activity 0 0 6132 GO:0008320 protein carrier activity 0 0 6133 GO:0008321 Ral guanyl-nucleotide exchange factor activity 0 0 6134 GO:0008322 Pro-X carboxypeptidase activity 0 0 6135 GO:0008324 cation transporter activity 0 0 6136 GO:0008326 site-specific DNA-methyltransferase (cytosine-specific) activity 0 0 6137 GO:0008327 methyl-CpG binding 0 0 6138 GO:0008328 ionotropic glutamate receptor complex 0 0 6139 GO:0008329 pattern recognition receptor activity 0 0 6140 GO:0008330 protein tyrosine/threonine phosphatase activity 0 0 6141 GO:0008331 high voltage-gated calcium channel activity 0 0 6142 GO:0008332 low voltage-gated calcium channel activity 0 0 6143 GO:0008333 endosome to lysosome transport 0 0 6144 GO:0008334 histone mRNA metabolism 0 0 6145 GO:0008335 ovarian ring canal stabilization 0 0 6146 GO:0008336 gamma-butyrobetaine dioxygenase activity 0 0 6147 GO:0008337 selectin (obsolete GO:0008337) 1 0 6148 GO:0008338 MAP kinase 1 activity 0 0 6149 GO:0008339 MP kinase activity 0 0 6150 GO:0008340 determination of adult life span 0 0 6151 GO:0008341 response to cocaine (sensu Insecta) (obsolete GO:0008341) 1 0 6152 GO:0008342 larval feeding behavior (sensu Insecta) (obsolete GO:0008342) 1 0 6153 GO:0008343 adult feeding behavior 0 0 6154 GO:0008344 adult locomotory behavior 0 0 6155 GO:0008345 larval locomotory behavior 0 0 6156 GO:0008346 larval walking behavior 0 0 6157 GO:0008347 glial cell migration 0 0 6158 GO:0008348 attenuation of antimicrobial humoral response 0 0 6159 GO:0008349 MAP kinase kinase kinase kinase activity 0 0 6160 GO:0008350 kinetochore motor activity (obsolete GO:0008350) 1 0 6161 GO:0008351 microtubule severing activity (obsolete GO:0008351) 1 0 6162 GO:0008352 katanin 0 0 6163 GO:0008353 RNA polymerase subunit kinase activity 0 0 6164 GO:0008354 germ cell migration 0 0 6165 GO:0008355 olfactory learning 0 0 6166 GO:0008356 asymmetric cell division 0 0 6167 GO:0008358 maternal determination of anterior/posterior axis, embryo 0 0 6168 GO:0008359 regulation of bicoid mRNA localization 0 0 6169 GO:0008360 regulation of cell shape 0 0 6170 GO:0008361 regulation of cell size 0 0 6171 GO:0008362 embryonic cuticle biosynthesis (sensu Insecta) 0 0 6172 GO:0008363 larval cuticle biosynthesis (sensu Insecta) 0 0 6173 GO:0008364 pupal cuticle biosynthesis (sensu Insecta) 0 0 6174 GO:0008365 adult cuticle biosynthesis (sensu Insecta) 0 0 6175 GO:0008366 nerve ensheathment 0 0 6176 GO:0008367 bacterial binding 0 0 6177 GO:0008368 Gram-negative bacterial binding 0 0 6178 GO:0008369 obsolete molecular function (obsolete GO:0008369) 1 0 6179 GO:0008370 obsolete cellular component (obsolete GO:0008370) 1 0 6180 GO:0008371 obsolete biological process (obsolete GO:0008371) 1 0 6181 GO:0008372 cellular component unknown 0 0 6182 GO:0008373 sialyltransferase activity 0 0 6183 GO:0008374 O-acyltransferase activity 0 0 6184 GO:0008375 acetylglucosaminyltransferase activity 0 0 6185 GO:0008376 acetylgalactosaminyltransferase activity 0 0 6186 GO:0008377 light-induced release of internally sequestered calcium ion 0 0 6187 GO:0008378 galactosyltransferase activity 0 0 6188 GO:0008379 thioredoxin peroxidase activity 0 0 6189 GO:0008380 RNA splicing 0 0 6190 GO:0008381 mechanically-gated ion channel activity 0 0 6191 GO:0008382 iron superoxide dismutase activity 0 0 6192 GO:0008383 manganese superoxide dismutase activity 0 0 6193 GO:0008384 IkappaB kinase activity 0 0 6194 GO:0008385 IkappaB kinase complex 0 0 6195 GO:0008386 cholesterol monooxygenase (side-chain-cleaving) activity 0 0 6196 GO:0008387 steroid 7-alpha-hydroxylase activity 0 0 6197 GO:0008388 testosterone 15-alpha-hydroxylase activity 0 0 6198 GO:0008389 coumarin 7-hydroxylase activity 0 0 6199 GO:0008390 testosterone 16-alpha-hydroxylase activity 0 0 6200 GO:0008391 arachidonic acid monooxygenase activity 0 0 6201 GO:0008392 arachidonic acid epoxygenase activity 0 0 6202 GO:0008393 fatty acid (omega-1)-hydroxylase activity 0 0 6203 GO:0008394 olfactory-specific steroid hydroxylase activity 0 0 6204 GO:0008395 steroid hydroxylase activity 0 0 6205 GO:0008396 oxysterol 7-alpha-hydroxylase activity 0 0 6206 GO:0008397 sterol 12-alpha-hydroxylase activity 0 0 6207 GO:0008398 sterol 14-demethylase activity 0 0 6208 GO:0008399 naphthalene hydroxylase activity 0 0 6209 GO:0008401 retinoic acid 4-hydroxylase activity 0 0 6210 GO:0008402 aromatase activity 0 0 6211 GO:0008403 25-hydroxycholecalciferol-24-hydroxylase activity 0 0 6212 GO:0008404 arachidonic acid 14,15-epoxygenase activity 0 0 6213 GO:0008405 arachidonic acid 11,12-epoxygenase activity 0 0 6214 GO:0008406 gonad development 0 0 6215 GO:0008407 bristle morphogenesis 0 0 6216 GO:0008408 3'-5' exonuclease activity 0 0 6217 GO:0008409 5'-3' exonuclease activity 0 0 6218 GO:0008410 CoA-transferase activity 0 0 6219 GO:0008411 4-hydroxybutyrate CoA-transferase activity 0 0 6220 GO:0008412 4-hydroxybenzoate octaprenyltransferase activity 0 0 6221 GO:0008413 8-oxo-7,8-dihydroguanine triphosphatase activity 0 0 6222 GO:0008414 CDP-alcohol phosphotransferase activity 0 0 6223 GO:0008415 acyltransferase activity 0 0 6224 GO:0008416 delta5-delta2,4-dienoyl-CoA isomerase activity 0 0 6225 GO:0008417 fucosyltransferase activity 0 0 6226 GO:0008418 protein N-terminal asparagine amidohydrolase activity 0 0 6227 GO:0008419 RNA lariat debranching enzyme activity 0 0 6228 GO:0008420 CTD phosphatase activity 0 0 6229 GO:0008421 long-chain-fatty-acyl-glutamate deacylase activity 0 0 6230 GO:0008422 beta-glucosidase activity 0 0 6231 GO:0008423 bleomycin hydrolase activity 0 0 6232 GO:0008424 glycoprotein 6-alpha-L-fucosyltransferase activity 0 0 6233 GO:0008425 2-polyprenyl-6-methoxy-1,4-benzoquinone methyltransferase activity 0 0 6234 GO:0008426 protein kinase C inhibitor activity 0 0 6235 GO:0008427 calcium-dependent protein kinase inhibitor activity 0 0 6236 GO:0008428 ribonuclease inhibitor activity 0 0 6237 GO:0008429 phosphatidylethanolamine binding 0 0 6238 GO:0008430 selenium binding 0 0 6239 GO:0008431 vitamin E binding 0 0 6240 GO:0008432 JUN kinase binding 0 0 6241 GO:0008434 vitamin D3 receptor activity 0 0 6242 GO:0008435 anticoagulant activity (obsolete GO:0008435) 1 0 6243 GO:0008436 heterogeneous nuclear ribonucleoprotein (obsolete GO:0008436) 1 0 6244 GO:0008437 thyrotropin-releasing hormone activity 0 0 6245 GO:0008438 1-phosphatidylinositol-5-phosphate kinase (obsolete GO:0008438) 1 0 6246 GO:0008439 monophenol monooxygenase activator activity 0 0 6247 GO:0008440 inositol trisphosphate 3-kinase activity 0 0 6248 GO:0008441 3'(2'),5'-bisphosphate nucleotidase activity 0 0 6249 GO:0008442 3-hydroxyisobutyrate dehydrogenase activity 0 0 6250 GO:0008443 phosphofructokinase activity 0 0 6251 GO:0008444 CDP-diacylglycerol-glycerol-3-phosphate 3-phosphatidyltransferase activity 0 0 6252 GO:0008445 D-aspartate oxidase activity 0 0 6253 GO:0008446 GDP-mannose 4,6-dehydratase activity 0 0 6254 GO:0008447 L-ascorbate oxidase activity 0 0 6255 GO:0008448 N-acetylglucosamine-6-phosphate deacetylase activity 0 0 6256 GO:0008449 N-acetylglucosamine-6-sulfatase activity 0 0 6257 GO:0008450 O-sialoglycoprotein endopeptidase activity 0 0 6258 GO:0008451 X-Pro aminopeptidase activity 0 0 6259 GO:0008452 RNA ligase activity 0 0 6260 GO:0008453 alanine-glyoxylate transaminase activity 0 0 6261 GO:0008454 alpha-1,3-mannosylglycoprotein 4-beta-N-acetylglucosaminyltransferase activity 0 0 6262 GO:0008455 alpha-1,6-mannosylglycoprotein 2-beta-N-acetylglucosaminyltransferase activity 0 0 6263 GO:0008456 alpha-N-acetylgalactosaminidase activity 0 0 6264 GO:0008457 beta-galactosyl-N-acetylglucosaminylgalactosylglucosyl-ceramide beta-1,3-acetylglucosaminyltransferase activity 0 0 6265 GO:0008458 carnitine O-octanoyltransferase activity 0 0 6266 GO:0008459 chondroitin 6-sulfotransferase activity 0 0 6267 GO:0008460 dTDP-glucose 4,6-dehydratase activity 0 0 6268 GO:0008462 endopeptidase Clp activity 0 0 6269 GO:0008463 formylmethionine deformylase activity 0 0 6270 GO:0008464 gamma-glutamyl hydrolase activity 0 0 6271 GO:0008465 glycerate dehydrogenase activity 0 0 6272 GO:0008466 glycogenin glucosyltransferase activity 0 0 6273 GO:0008467 heparin-glucosamine 3-O-sulfotransferase activity 0 0 6274 GO:0008469 histone-arginine N-methyltransferase activity 0 0 6275 GO:0008470 isovaleryl-CoA dehydrogenase activity 0 0 6276 GO:0008471 laccase activity 0 0 6277 GO:0008472 metallocarboxypeptidase D activity 0 0 6278 GO:0008473 ornithine cyclodeaminase activity 0 0 6279 GO:0008474 palmitoyl-(protein) hydrolase activity 0 0 6280 GO:0008475 procollagen-lysine 5-dioxygenase activity 0 0 6281 GO:0008476 protein-tyrosine sulfotransferase activity 0 0 6282 GO:0008477 purine nucleosidase activity 0 0 6283 GO:0008478 pyridoxal kinase activity 0 0 6284 GO:0008479 queuine tRNA-ribosyltransferase activity 0 0 6285 GO:0008480 sarcosine dehydrogenase activity 0 0 6286 GO:0008481 sphinganine kinase activity 0 0 6287 GO:0008482 sulfite oxidase activity 0 0 6288 GO:0008483 transaminase activity 0 0 6289 GO:0008484 sulfuric ester hydrolase activity 0 0 6290 GO:0008486 diphosphoinositol-polyphosphate diphosphatase activity 0 0 6291 GO:0008487 prenyl-dependent CAAX protease activity 0 0 6292 GO:0008488 gamma-glutamyl carboxylase activity 0 0 6293 GO:0008489 UDP-galactose:glucosylceramide beta-1,4-galactosyltransferase activity 0 0 6294 GO:0008490 arsenite porter activity 0 0 6295 GO:0008492 cAMP generating peptide activity (obsolete GO:0008492) 1 0 6296 GO:0008493 tetracycline transporter activity 0 0 6297 GO:0008494 translation activator activity 0 0 6298 GO:0008495 protoheme IX farnesyltransferase activity 0 0 6299 GO:0008496 mannan endo-1,6-alpha-mannosidase activity 0 0 6300 GO:0008498 phospholipid scrambling (obsolete GO:0008498) 1 0 6301 GO:0008499 UDP-galactose:beta-N-acetylglucosamine beta-1,3-galactosyltransferase activity 0 0 6302 GO:0008500 glycine-, glutamate-, thienylcyclohexylpiperidine binding (obsolete GO:0008500) 1 0 6303 GO:0008502 melatonin receptor activity 0 0 6304 GO:0008503 benzodiazepine receptor activity 0 0 6305 GO:0008504 monoamine transporter activity 0 0 6306 GO:0008506 sucrose:hydrogen symporter activity 0 0 6307 GO:0008507 sodium:iodide symporter activity 0 0 6308 GO:0008508 bile acid:sodium symporter activity 0 0 6309 GO:0008509 anion transporter activity 0 0 6310 GO:0008510 sodium:bicarbonate symporter activity 0 0 6311 GO:0008511 sodium:potassium:chloride symporter activity 0 0 6312 GO:0008512 sulfate:hydrogen symporter activity 0 0 6313 GO:0008513 organic cation porter activity 0 0 6314 GO:0008514 organic anion transporter activity 0 0 6315 GO:0008515 sucrose transporter activity 0 0 6316 GO:0008516 hexose uniporter activity 0 0 6317 GO:0008517 folic acid transporter activity 0 0 6318 GO:0008518 reduced folate carrier activity 0 0 6319 GO:0008519 ammonium transporter activity 0 0 6320 GO:0008520 L-ascorbate:sodium symporter activity 0 0 6321 GO:0008521 acetyl-CoA transporter activity 0 0 6322 GO:0008523 sodium-dependent multivitamin transporter activity 0 0 6323 GO:0008524 glucose 6-phosphate:phosphate antiporter activity 0 0 6324 GO:0008525 phosphatidylcholine transporter activity 0 0 6325 GO:0008526 phosphatidylinositol transporter activity 0 0 6326 GO:0008527 taste receptor activity 0 0 6327 GO:0008528 peptide receptor activity, G-protein coupled 0 0 8235 GO:0015141 succinate transporter activity 0 0 8236 GO:0015142 tricarboxylic acid transporter activity 0 0 8237 GO:0015143 urate transporter activity 0 0 8238 GO:0015144 carbohydrate transporter activity 0 0 8239 GO:0015145 monosaccharide transporter activity 0 0 8240 GO:0015146 pentose transporter activity 0 0 8241 GO:0015147 L-arabinose transporter activity 0 0 8242 GO:0015148 D-xylose transporter activity 0 0 8243 GO:0015149 hexose transporter activity 0 0 8244 GO:0015150 fucose transporter activity 0 0 8245 GO:0015151 alpha-glucoside transporter activity 0 0 8246 GO:0015152 glucose-6-phosphate transporter activity 0 0 8247 GO:0015153 rhamnose transporter activity 0 0 8248 GO:0015154 disaccharide transporter activity 0 0 8249 GO:0015155 lactose transporter activity 0 0 8250 GO:0015156 melibiose transporter activity 0 0 8251 GO:0015157 oligosaccharide transporter activity 0 0 8252 GO:0015158 raffinose transporter activity 0 0 8253 GO:0015159 polysaccharide transporter activity 0 0 8254 GO:0015160 beta-glucan transporter activity 0 0 8255 GO:0015161 capsular-polysaccharide transporter activity 0 0 8256 GO:0015162 teichoic acid transporter activity 0 0 8257 GO:0015163 hexuronide transporter activity 0 0 8258 GO:0015164 glucuronoside transporter activity 0 0 8259 GO:0015165 pyrimidine nucleotide sugar transporter activity 0 0 8260 GO:0015166 polyol transporter activity 0 0 8261 GO:0015167 arabitol transporter activity 0 0 8262 GO:0015168 glycerol transporter activity 0 0 8263 GO:0015169 glycerol-3-phosphate transporter activity 0 0 8264 GO:0015170 propanediol transporter activity 0 0 8265 GO:0015171 amino acid transporter activity 0 0 8266 GO:0015172 acidic amino acid transporter activity 0 0 8267 GO:0015173 aromatic amino acid transporter activity 0 0 8268 GO:0015174 basic amino acid transporter activity 0 0 8269 GO:0015175 neutral amino acid transporter activity 0 0 8270 GO:0015176 holin (obsolete GO:0015176) 1 0 8271 GO:0015177 S-adenosylmethionine permease activity 0 0 8272 GO:0015178 S-methylmethionine permease activity 0 0 8273 GO:0015179 L-amino acid transporter activity 0 0 8274 GO:0015180 L-alanine transporter activity 0 0 8275 GO:0015181 L-arginine transporter activity 0 0 8276 GO:0015182 L-asparagine transporter activity 0 0 8277 GO:0015183 L-aspartate transporter activity 0 0 8278 GO:0015184 L-cystine transporter activity 0 0 8279 GO:0015185 L-gamma-aminobutyric acid transporter activity 0 0 8280 GO:0015186 L-glutamine transporter activity 0 0 8281 GO:0015187 glycine transporter activity 0 0 8282 GO:0015188 L-isoleucine transporter activity 0 0 8283 GO:0015189 L-lysine transporter activity 0 0 8284 GO:0015190 L-leucine transporter activity 0 0 8285 GO:0015191 L-methionine transporter activity 0 0 8286 GO:0015192 L-phenylalanine transporter activity 0 0 8287 GO:0015193 L-proline transporter activity 0 0 8288 GO:0015194 L-serine transporter activity 0 0 8289 GO:0015195 L-threonine transporter activity 0 0 8290 GO:0015196 L-tryptophan transporter activity 0 0 8291 GO:0015197 peptide transporter activity 0 0 8292 GO:0015198 oligopeptide transporter activity 0 0 8293 GO:0015199 betaine transporter activity 0 0 8294 GO:0015200 methylammonium transporter activity 0 0 8295 GO:0015203 polyamine transporter activity 0 0 8296 GO:0015204 urea transporter activity 0 0 8297 GO:0015205 nucleobase transporter activity 0 0 8298 GO:0015206 allantoin transporter activity 0 0 8299 GO:0015207 adenine transporter activity 0 0 8300 GO:0015208 guanine transporter activity 0 0 8301 GO:0015209 cytosine transporter activity 0 0 8302 GO:0015210 uracil transporter activity 0 0 8303 GO:0015211 purine nucleoside transporter activity 0 0 8304 GO:0015212 cytidine transporter activity 0 0 8305 GO:0015213 uridine transporter activity 0 0 8306 GO:0015214 pyrimidine nucleoside transporter activity 0 0 8307 GO:0015215 nucleotide transporter activity 0 0 8308 GO:0015216 purine nucleotide transporter activity 0 0 8309 GO:0015217 ADP transporter activity 0 0 8310 GO:0015218 pyrimidine nucleotide transporter activity 0 0 8311 GO:0015219 DNA-protein complex transporter activity 0 0 8312 GO:0015220 choline transporter activity 0 0 8313 GO:0015221 lipopolysaccharide transporter activity 0 0 8314 GO:0015222 serotonin transporter activity 0 0 8315 GO:0015223 vitamin or cofactor transporter activity (obsolete GO:0015223) 1 0 8316 GO:0015224 biopterin transporter activity 0 0 8317 GO:0015225 biotin transporter activity 0 0 8318 GO:0015226 carnitine transporter activity 0 0 8319 GO:0015227 acyl carnitine transporter activity 0 0 8320 GO:0015228 coenzyme A transporter activity 0 0 8321 GO:0015229 L-ascorbic acid transporter activity 0 0 8322 GO:0015230 FAD transporter activity 0 0 8323 GO:0015231 5-formyltetrahydrofolate transporter activity 0 0 8324 GO:0015232 heme transporter activity 0 0 8325 GO:0015233 pantothenate transporter activity 0 0 8326 GO:0015234 thiamin transporter activity 0 0 8327 GO:0015235 cobalamin transporter activity 0 0 8328 GO:0015238 drug transporter activity 0 0 8329 GO:0015239 multidrug transporter activity 0 0 8330 GO:0015240 amiloride transporter activity 0 0 8331 GO:0015241 aminotriazole transporter activity 0 0 8332 GO:0015242 benomyl transporter activity 0 0 8333 GO:0015243 cycloheximide transporter activity 0 0 8334 GO:0015244 fluconazole transporter activity 0 0 8335 GO:0015245 fatty acid transporter activity 0 0 8336 GO:0015246 fatty acyl transporter activity 0 0 8337 GO:0015247 aminophospholipid transporter activity 0 0 8338 GO:0015248 sterol transporter activity 0 0 8339 GO:0015249 nonselective channel activity 0 0 8340 GO:0015250 water channel activity 0 0 8341 GO:0015251 ammonium channel activity 0 0 8342 GO:0015252 hydrogen ion channel activity 0 0 8343 GO:0015253 sugar/polyol channel activity (obsolete GO:0015253) 1 0 8344 GO:0015254 glycerol channel activity 0 0 8345 GO:0015255 propanediol channel activity 0 0 8346 GO:0015256 monocarboxylate channel activity 0 0 8347 GO:0015257 organic anion channel activity 0 0 8348 GO:0015258 gluconate channel activity 0 0 8349 GO:0015259 glutamate channel activity 0 0 8350 GO:0015260 isethionate channel activity 0 0 8351 GO:0015261 lactate channel activity 0 0 8352 GO:0015262 taurine channel activity 0 0 8353 GO:0015263 amine/amide/polyamine channel activity (obsolete GO:0015263) 1 0 8354 GO:0015264 methylammonium channel activity 0 0 8355 GO:0015265 urea channel activity 0 0 8356 GO:0015266 protein channel activity 0 0 8357 GO:0015267 channel or pore class transporter activity 0 0 8358 GO:0015268 alpha-type channel activity 0 0 8359 GO:0015269 calcium-activated potassium channel activity 0 0 8360 GO:0015270 dihydropyridine-sensitive calcium channel activity 0 0 8361 GO:0015271 outward rectifier potassium channel activity 0 0 8362 GO:0015272 ATP-activated inward rectifier potassium channel activity 0 0 8363 GO:0015273 G-protein enhanced inward rectifier potassium channel activity 0 0 8364 GO:0015274 organellar voltage-gated chloride channel activity 0 0 8365 GO:0015275 stretch-activated, cation-selective, calcium channel activity 0 0 8366 GO:0015276 ligand-gated ion channel activity 0 0 8367 GO:0015277 kainate selective glutamate receptor activity 0 0 8368 GO:0015278 calcium-release channel activity 0 0 8369 GO:0015279 store-operated calcium channel activity 0 0 8370 GO:0015280 amiloride-sensitive sodium channel activity 0 0 8371 GO:0015281 nonselective cation channel activity 0 0 8372 GO:0015282 NADPH oxidase-associated cytochrome b558 hydrogen channel activity 0 0 8373 GO:0015283 apoptogenic cytochrome c release channel activity 0 0 8374 GO:0015284 fructose uniporter activity 0 0 8375 GO:0015285 connexon channel activity 0 0 8376 GO:0015286 innexin channel activity 0 0 8377 GO:0015288 porin activity 0 0 8378 GO:0015289 pore-forming toxin activity (obsolete GO:0015289) 1 0 8379 GO:0015290 electrochemical potential-driven transporter activity 0 0 8380 GO:0015291 porter activity 0 0 8381 GO:0015292 uniporter activity 0 0 8382 GO:0015293 symporter activity 0 0 8383 GO:0015294 solute:cation symporter activity 0 0 8384 GO:0015295 solute:hydrogen symporter activity 0 0 8385 GO:0015296 anion:cation symporter activity 0 0 8386 GO:0015297 antiporter activity 0 0 8387 GO:0015298 solute:cation antiporter activity 0 0 8388 GO:0015299 solute:hydrogen antiporter activity 0 0 8389 GO:0015300 solute:solute antiporter activity 0 0 8390 GO:0015301 anion:anion antiporter activity 0 0 8391 GO:0015303 galactose, glucose uniporter activity (obsolete GO:0015303) 1 0 8392 GO:0015304 glucose uniporter activity 0 0 8393 GO:0015305 lactose, galactose:hydrogen symporter activity (obsolete GO:0015305) 1 0 8394 GO:0015306 sialate:cation symporter activity 0 0 8395 GO:0015307 drug:hydrogen antiporter activity 0 0 8396 GO:0015308 amiloride:hydrogen antiporter activity 0 0 8397 GO:0015309 cycloheximide:hydrogen antiporter activity 0 0 8398 GO:0015310 benomyl:hydrogen antiporter activity 0 0 8399 GO:0015311 monoamine:hydrogen antiporter activity 0 0 8400 GO:0015312 polyamine:hydrogen antiporter activity 0 0 8401 GO:0015313 fluconazole:hydrogen antiporter activity 0 0 8402 GO:0015314 aminotriazole:hydrogen antiporter activity 0 0 8403 GO:0015315 organophosphate:inorganic phosphate antiporter activity 0 0 8404 GO:0015316 nitrite/nitrate porter activity (obsolete GO:0015316) 1 0 8405 GO:0015317 phosphate:hydrogen symporter activity 0 0 8406 GO:0015318 inorganic uptake permease activity 0 0 8407 GO:0015319 sodium:inorganic phosphate symporter activity 0 0 8408 GO:0015320 phosphate carrier activity 0 0 8409 GO:0015321 sodium-dependent phosphate transporter activity 0 0 8410 GO:0015322 oligopeptide porter activity 0 0 8411 GO:0015323 type V protein secretor activity 0 0 8412 GO:0015324 peptide-acetyl-CoA transporter activity 0 0 8413 GO:0015325 acetyl-CoA:CoA antiporter activity 0 0 8414 GO:0015326 cationic amino acid transporter activity 0 0 8415 GO:0015327 cystine:glutamate antiporter activity 0 0 8416 GO:0015328 cystine porter activity 0 0 8417 GO:0015330 high affinity glutamine permease activity 0 0 8418 GO:0015331 asparagine/glutamine permease activity (obsolete GO:0015331) 1 0 8419 GO:0015332 leucine/valine/isoleucine permease activity (obsolete GO:0015332) 1 0 8420 GO:0015333 peptide:hydrogen symporter activity 0 0 8421 GO:0015334 high affinity oligopeptide transporter activity 0 0 8422 GO:0015335 heavy metal ion:hydrogen symporter activity (obsolete GO:0015335) 1 0 8423 GO:0015336 high affinity metal ion uptake transporter activity (obsolete GO:0015336) 1 0 8424 GO:0015337 low affinity metal ion uptake transporter activity (obsolete GO:0015337) 1 0 8425 GO:0015338 cation diffusion facilitator activity 0 0 8426 GO:0015339 cobalt, zinc uptake permease activity (obsolete GO:0015339) 1 0 8427 GO:0015340 zinc, cadmium uptake permease activity (obsolete GO:0015340) 1 0 8428 GO:0015341 zinc efflux permease activity 0 0 8429 GO:0015342 zinc, iron permease activity (obsolete GO:0015342) 1 0 8430 GO:0015343 siderophore-iron transporter activity 0 0 8431 GO:0015344 siderophore-iron (ferrioxamine) uptake transporter activity 0 0 8432 GO:0015345 ferric enterobactin:hydrogen symporter activity 0 0 8433 GO:0015346 ferric triacetylfusarinine C:hydrogen symporter activity 0 0 8434 GO:0015347 sodium-independent organic anion transporter activity 0 0 8435 GO:0015348 prostaglandin/thromboxane transporter activity (obsolete GO:0015348) 1 0 8436 GO:0015349 thyroid hormone transporter activity 0 0 8437 GO:0015350 methotrexate transporter activity 0 0 8438 GO:0015351 bilirubin porter activity 0 0 8439 GO:0015352 sterol porter activity 0 0 8440 GO:0015353 multidrug endosomal transporter activity 0 0 8441 GO:0015354 polyspecific organic cation transporter activity 0 0 8442 GO:0015355 monocarboxylate porter activity 0 0 8443 GO:0015356 monocarboxylate (lactate, pyruvate, mevalonate) uptake/efflux porter activity (obsolete GO:0015356) 1 0 8444 GO:0015358 amino acid/choline transporter activity (obsolete GO:0015358) 1 0 8445 GO:0015359 amino acid permease activity 0 0 8446 GO:0015360 acetate:hydrogen symporter activity 0 0 8447 GO:0015361 low affinity sodium:dicarboxylate symporter activity 0 0 8448 GO:0015362 high affinity sodium:dicarboxylate symporter activity 0 0 8449 GO:0015363 dicarboxylate (succinate/fumarate/malate) antiporter activity (obsolete GO:0015363) 1 0 8450 GO:0015364 dicarboxylate:inorganic phosphate antiporter activity 0 0 8451 GO:0015365 dicarboxylic acid permease activity 0 0 8452 GO:0015366 malate:hydrogen symporter activity 0 0 8453 GO:0015367 oxoglutarate:malate antiporter activity 0 0 8454 GO:0015368 calcium:cation antiporter activity 0 0 8455 GO:0015369 calcium:hydrogen antiporter activity 0 0 8456 GO:0015370 solute:sodium symporter activity 0 0 8457 GO:0015371 galactose:sodium symporter activity 0 0 8458 GO:0015372 glutamate/aspartate:sodium symporter activity (obsolete GO:0015372) 1 0 8459 GO:0015373 monovalent anion:sodium symporter activity 0 0 8460 GO:0015374 neutral, cationic amino acid:sodium:chloride symporter activity 0 0 8461 GO:0015375 glycine:sodium symporter activity 0 0 8462 GO:0015376 betaine/GABA:sodium symporter activity (obsolete GO:0015376) 1 0 8463 GO:0015377 cation:chloride symporter activity 0 0 8464 GO:0015378 sodium:chloride symporter activity 0 0 8465 GO:0015379 potassium:chloride symporter activity 0 0 8466 GO:0015380 anion exchanger activity 0 0 8467 GO:0015381 high affinity sulfate permease activity 0 0 8468 GO:0015382 sodium:sulfate symporter activity 0 0 8469 GO:0015383 sulfate:bicarbonate antiporter activity 0 0 8470 GO:0015385 sodium:hydrogen antiporter activity 0 0 8471 GO:0015386 potassium:hydrogen antiporter activity 0 0 8472 GO:0015387 potassium:hydrogen symporter activity 0 0 8473 GO:0015388 potassium uptake permease activity 0 0 8474 GO:0015389 pyrimidine- and adenine-specific:sodium symporter activity 0 0 8475 GO:0015390 purine-specific nucleoside:sodium symporter activity 0 0 8476 GO:0015391 nucleobase:cation symporter activity 0 0 8477 GO:0015392 cytosine-purine permease activity 0 0 8478 GO:0015393 uracil/uridine permease activity (obsolete GO:0015393) 1 0 8479 GO:0015394 nucleoside (uridine) permease activity 0 0 8480 GO:0015395 nucleoside transporter activity, down a concentration gradient 0 0 8481 GO:0015396 equilibrative nucleoside transporter, nitrobenzyl-thioinosine-sensitive activity 0 0 8482 GO:0015397 equilibrative nucleoside transporter, nitrobenzyl-thioinosine-insensitive activity 0 0 8483 GO:0015398 high affinity ammonium transporter activity 0 0 8484 GO:0015399 primary active transporter activity 0 0 8485 GO:0015400 low affinity ammonium transporter activity 0 0 8486 GO:0015401 urea:sodium symporter activity 0 0 8487 GO:0015402 thiamin permease activity 0 0 8488 GO:0015403 thiamin uptake transporter activity 0 0 8489 GO:0015404 ion-gradient-driven energizer activity 0 0 8490 GO:0015405 P-P-bond-hydrolysis-driven transporter activity 0 0 8491 GO:0015406 ABC-type uptake permease activity (obsolete GO:0015406) 1 0 8492 GO:0015407 monosaccharide-transporting ATPase activity 0 0 8493 GO:0015408 ferric-transporting ATPase activity 0 0 8494 GO:0015410 manganese-transporting ATPase activity 0 0 8495 GO:0015411 taurine-transporting ATPase activity 0 0 8496 GO:0015412 molybdate-transporting ATPase activity 0 0 8497 GO:0015413 nickel-transporting ATPase activity 0 0 8498 GO:0015414 nitrate-transporting ATPase activity 0 0 8499 GO:0015415 phosphate-transporting ATPase activity 0 0 8500 GO:0015416 phosphonate-transporting ATPase activity 0 0 8501 GO:0015417 polyamine-transporting ATPase activity 0 0 8502 GO:0015418 quaternary-ammonium-compound-transporting ATPase activity 0 0 8503 GO:0015419 sulfate-transporting ATPase activity 0 0 8504 GO:0015420 cobalamin-transporting ATPase activity 0 0 8505 GO:0015421 oligopeptide-transporting ATPase activity 0 0 8506 GO:0015422 oligosaccharide-transporting ATPase activity 0 0 8507 GO:0015423 maltose-transporting ATPase activity 0 0 8508 GO:0015424 amino acid-transporting ATPase activity 0 0 8509 GO:0015425 nonpolar-amino acid-transporting ATPase activity 0 0 8510 GO:0015426 polar-amino acid-transporting ATPase activity 0 0 8511 GO:0015427 ABC-type efflux porter activity (obsolete GO:0015427) 1 0 8512 GO:0015428 type I protein secretor activity 0 0 8513 GO:0015429 peroxisomal fatty acyl transporter (obsolete GO:0015429) 1 0 8514 GO:0015430 glycerol-3-phosphate-transporting ATPase activity 0 0 8515 GO:0015431 glutathione S-conjugate-exporting ATPase activity 0 0 8516 GO:0015432 bile acid-exporting ATPase activity 0 0 8517 GO:0015433 peptide antigen-transporting ATPase activity 0 0 8518 GO:0015434 cadmium-transporting ATPase activity 0 0 8519 GO:0015435 ABC-type efflux permease activity (obsolete GO:0015435) 1 0 8520 GO:0015436 capsular-polysaccharide-transporting ATPase activity 0 0 8521 GO:0015437 lipopolysaccharide-transporting ATPase activity 0 0 8522 GO:0015438 teichoic-acid-transporting ATPase activity 0 0 8523 GO:0015439 heme-transporting ATPase activity 0 0 8524 GO:0015440 peptide-transporting ATPase activity 0 0 8525 GO:0015441 beta-glucan-transporting ATPase activity 0 0 8526 GO:0015442 hydrogen-/sodium-translocating ATPase activity (obsolete GO:0015442) 1 0 8527 GO:0015443 sodium-transporting two-sector ATPase activity (obsolete GO:0015443) 1 0 8528 GO:0015444 magnesium-importing ATPase activity 0 0 8529 GO:0015445 silver-exporting ATPase activity 0 0 8530 GO:0015446 arsenite-transporting ATPase activity 0 0 8531 GO:0015447 type II protein secretor activity 0 0 8532 GO:0015448 type III protein (virulence-related) secretor activity 0 0 8533 GO:0015449 type IV protein (DNA-protein) secretor activity 0 0 8534 GO:0015450 protein translocase activity 0 0 8535 GO:0015451 decarboxylation-driven active transporter activity 0 0 8536 GO:0015452 methyl transfer-driven active transporter activity 0 0 8537 GO:0015453 oxidoreduction-driven active transporter activity 0 0 8538 GO:0015454 light-driven active transporter activity 0 0 8539 GO:0015455 group translocator activity 0 0 8540 GO:0015457 auxiliary transport protein activity 0 0 8541 GO:0015458 low voltage-gated potassium channel auxiliary protein activity 0 0 8542 GO:0015459 potassium channel regulator activity 0 0 8543 GO:0015460 transport accessory protein activity 0 0 8544 GO:0015461 endosomal oligosaccharide transporter (obsolete GO:0015461) 1 0 8545 GO:0015462 protein-transporting ATPase activity 0 0 8546 GO:0015464 acetylcholine receptor activity 0 0 8547 GO:0015465 lysin activity (obsolete GO:0015465) 1 0 8548 GO:0015466 autolysin activity (obsolete GO:0015466) 1 0 8549 GO:0015467 G-protein activated inward rectifier potassium channel activity 0 0 8550 GO:0015468 colicin (obsolete GO:0015468) 1 0 8551 GO:0015469 channel-forming toxin activity (obsolete GO:0015469) 1 0 8552 GO:0015470 bacteriocin activity (obsolete GO:0015470) 1 0 8553 GO:0015471 nucleoside-specific channel forming porin activity 0 0 8554 GO:0015472 fimbrium-specific chaperone activity (obsolete GO:0015472) 1 0 8555 GO:0015473 fimbrial usher porin activity 0 0 8556 GO:0015474 autotransporter activity 0 0 8557 GO:0015475 adhesin autotransporter activity 0 0 8558 GO:0015476 hemaglutinin autotransporter activity 0 0 8559 GO:0015477 receptor porin activity 0 0 8560 GO:0015478 oligosaccharide transporting porin activity 0 0 8561 GO:0015479 outer membrane exporter porin (obsolete GO:0015479) 1 0 8562 GO:0015480 secretin (sensu Bacteria) (obsolete GO:0015480) 1 0 8563 GO:0015481 maltose transporting porin activity 0 0 8564 GO:0015482 voltage-gated anion channel porin activity 0 0 8565 GO:0015483 long-chain fatty acid transporting porin activity 0 0 8566 GO:0015484 hemolysin activity (obsolete GO:0015484) 1 0 8567 GO:0015485 cholesterol binding 0 0 8568 GO:0015486 glycoside-pentoside-hexuronide:cation symporter activity 0 0 8569 GO:0015487 melibiose permease activity 0 0 8570 GO:0015488 glucuronide permease activity 0 0 8571 GO:0015489 putrescine transporter activity 0 0 8572 GO:0015490 cadaverine transporter activity 0 0 8573 GO:0015491 cation:cation antiporter activity 0 0 8574 GO:0015492 phenylalanine:hydrogen symporter activity 0 0 8575 GO:0015493 lysine:hydrogen symporter activity 0 0 8576 GO:0015494 aromatic amino acid:hydrogen symporter activity 0 0 8577 GO:0015495 gamma-aminobutyric acid:hydrogen symporter activity 0 0 8578 GO:0015496 putrescine:ornithine antiporter activity 0 0 8579 GO:0015497 cadaverine:lysine antiporter activity 0 0 8580 GO:0015498 pantothenate:sodium symporter activity 0 0 8581 GO:0015499 formate transporter activity 0 0 8582 GO:0015500 threonine/serine:sodium symporter activity (obsolete GO:0015500) 1 0 8583 GO:0015501 glutamate:sodium symporter activity 0 0 8584 GO:0015503 glutathione-regulated potassium exporter activity 0 0 8585 GO:0015504 cytosine permease activity 0 0 8586 GO:0015505 uracil permease activity 0 0 8587 GO:0015506 nucleoside:hydrogen symporter activity 0 0 8588 GO:0015507 hydroxy/aromatic amino acid permease activity (obsolete GO:0015507) 1 0 8589 GO:0015508 L-tyrosine permease activity 0 0 8590 GO:0015510 low-affinity tryptophan permease activity 0 0 8591 GO:0015511 L-serine permease activity 0 0 8592 GO:0015512 L-threonine permease activity 0 0 8593 GO:0015513 nitrite uptake permease activity 0 0 8594 GO:0015514 nitrite extrusion permease activity 0 0 8595 GO:0015515 citrate:succinate antiporter activity 0 0 8596 GO:0015516 tartrate:succinate antiporter activity 0 0 8597 GO:0015517 galactose:hydrogen symporter activity 0 0 8598 GO:0015518 arabinose:hydrogen symporter activity 0 0 8599 GO:0015519 D-xylose:hydrogen symporter activity 0 0 8600 GO:0015520 tetracycline:hydrogen antiporter activity 0 0 8601 GO:0015521 bicyclomycin/sulfathiazole:hydrogen antiporter activity (obsolete GO:0015521) 1 0 8602 GO:0015522 hydrophobic uncoupler:hydrogen antiporter activity 0 0 8603 GO:0015523 arabinose efflux permease activity 0 0 8604 GO:0015524 L-arabinose/beta-D-thiogalactopyranoside:hydrogen antiporter activity (obsolete GO:0015524) 1 0 8605 GO:0015525 carbonyl cyanide m-chlorophenylhydrazone/nalidixic acid/organomercurials:hydrogen antiporter activity (obsolete GO:0015525) 1 0 8606 GO:0015526 hexose-phosphate:inorganic phosphate antiporter activity 0 0 8607 GO:0015527 glycerol-phosphate:inorganic phosphate antiporter activity 0 0 8608 GO:0015528 lactose:hydrogen symporter activity 0 0 8609 GO:0015529 raffinose:hydrogen symporter activity 0 0 8610 GO:0015530 shikimate transporter activity 0 0 8611 GO:0015531 citrate:hydrogen symporter activity 0 0 8612 GO:0015532 alpha-ketoglutarate:hydrogen symporter activity 0 0 8613 GO:0015533 shikimate:hydrogen symporter activity 0 0 8614 GO:0015534 proline/glycine/betaine:hydrogen/sodium symporter activity (obsolete GO:0015534) 1 0 8615 GO:0015535 fucose:hydrogen symporter activity 0 0 8616 GO:0015536 nucleoside permease activity 0 0 8617 GO:0015537 xanthosine permease activity 0 0 8618 GO:0015538 sialic acid permease activity 0 0 8619 GO:0015539 hexuronate porter activity 0 0 8620 GO:0015540 3-hydroxyphenyl propionate porter activity 0 0 8621 GO:0015541 cyanate porter activity 0 0 8622 GO:0015542 sugar efflux transporter activity 0 0 8623 GO:0015543 lactose/glucose efflux transporter activity (obsolete GO:0015543) 1 0 8624 GO:0015544 phenyl propionate permease activity 0 0 8625 GO:0015545 bicyclomycin transporter activity 0 0 8626 GO:0015546 sulfathiazole transporter activity 0 0 8627 GO:0015547 nalidixic acid transporter activity 0 0 8628 GO:0015548 organomercurial transporter activity 0 0 8629 GO:0015549 carbonyl cyanide m-chlorophenylhydrazone transporter activity 0 0 8630 GO:0015550 galacturonate transporter activity 0 0 8631 GO:0015551 3-hydroxyphenyl propanoate transporter activity 0 0 8632 GO:0015552 propionate transporter activity 0 0 8633 GO:0015553 xanthosine transporter activity 0 0 8634 GO:0015554 tartrate transporter activity 0 0 8635 GO:0015555 acriflavin resistant pump activity 0 0 8636 GO:0015556 C4-dicarboxylate transporter activity 0 0 8637 GO:0015557 arginine targeting transporter activity 0 0 8638 GO:0015558 p-aminobenzoyl-glutamate uptake permease activity 0 0 8639 GO:0015559 multidrug efflux pump activity 0 0 8640 GO:0015560 L-idonate/D-gluconate:hydrogen symporter activity (obsolete GO:0015560) 1 0 8641 GO:0015561 rhamnose:hydrogen symporter activity 0 0 8642 GO:0015562 efflux permease activity 0 0 8643 GO:0015563 uptake permease activity 0 0 8644 GO:0015564 multidrug, alkane resistant pump activity 0 0 8645 GO:0015565 threonine efflux permease activity 0 0 8646 GO:0015566 acriflavin transporter activity 0 0 8647 GO:0015567 alkane transporter activity 0 0 8648 GO:0015568 L-idonate transporter activity 0 0 8649 GO:0015569 p-aminobenzoyl-glutamate transporter activity 0 0 8650 GO:0015570 energizer of outer membrane receptor-mediated transport activity 0 0 8651 GO:0015571 N-acetylgalactosamine transporter activity 0 0 8652 GO:0015572 N-acetylglucosamine transporter activity 0 0 8653 GO:0015573 beta-glucoside transporter activity 0 0 8654 GO:0015574 trehalose transporter activity 0 0 8655 GO:0015575 mannitol transporter activity 0 0 8656 GO:0015576 sorbitol transporter activity 0 0 8657 GO:0015577 galactitol transporter activity 0 0 8658 GO:0015578 mannose transporter activity 0 0 8659 GO:0015579 glucose permease activity 0 0 8660 GO:0015580 N-acetylglucosamine permease activity 0 0 8661 GO:0015581 maltose porter activity 0 0 8662 GO:0015582 beta-glucoside permease activity 0 0 8663 GO:0015583 beta-glucoside [arbutin-salicin-cellobiose] permease activity 0 0 8664 GO:0015584 trehalose permease activity 0 0 8665 GO:0015585 fructose permease activity 0 0 8666 GO:0015586 mannitol permease activity 0 0 8667 GO:0015587 sorbitol permease activity 0 0 8668 GO:0015588 galactitol permease activity 0 0 8669 GO:0015589 mannose permease activity 0 0 8670 GO:0015590 N-acetylgalactosamine permease activity 0 0 8671 GO:0015591 D-ribose transporter activity 0 0 8672 GO:0015592 methylgalactoside transporter activity 0 0 8673 GO:0015593 allose transporter activity 0 0 8674 GO:0015594 putrescine-importing ATPase activity 0 0 8675 GO:0015595 spermidine-importing ATPase activity 0 0 8676 GO:0015596 glycine betaine/proline porter activity (obsolete GO:0015596) 1 0 8677 GO:0015597 histidine/arginine/lysine/ornithine porter activity (obsolete GO:0015597) 1 0 8678 GO:0015598 arginine-importing ATPase activity 0 0 8679 GO:0015599 glutamine-importing ATPase activity 0 0 8680 GO:0015600 glutamate/aspartate porter activity (obsolete GO:0015600) 1 0 8681 GO:0015601 cystine/diaminopimelate porter activity (obsolete GO:0015601) 1 0 8682 GO:0015602 leucine/isoleucine/valine porter activity (obsolete GO:0015602) 1 0 8683 GO:0015603 iron chelate transporter activity 0 0 8684 GO:0015604 phosphonate transporter activity 0 0 8685 GO:0015605 organophosphate ester transporter activity 0 0 8686 GO:0015606 spermidine transporter activity 0 0 8687 GO:0015607 fatty acyl CoA transporter activity 0 0 8688 GO:0015608 carbohydrate-importing ATPase activity 0 0 8689 GO:0015609 maltooligosaccharide-importing ATPase activity 0 0 8690 GO:0015610 glycerol phosphate-importing ATPase activity 0 0 8691 GO:0015611 D-ribose-importing ATPase activity 0 0 8692 GO:0015612 L-arabinose-importing ATPase activity 0 0 8693 GO:0015613 galactose/glucose (methylgalactoside) porter activity (obsolete GO:0015613) 1 0 8694 GO:0015614 D-xylose-importing ATPase activity 0 0 8695 GO:0015615 D-allose-importing ATPase activity 0 0 8696 GO:0015616 DNA translocase activity 0 0 8697 GO:0015617 pilin/fimbrilin exporter activity (obsolete GO:0015617) 1 0 8698 GO:0015619 thiamin pyrophosphate-transporting ATPase activity 0 0 8699 GO:0015620 ferric-enterobactin transporter activity 0 0 8700 GO:0015621 ferric triacetylfusarinine C transporter activity 0 0 8701 GO:0015622 ferric-hydroxamate transporter activity 0 0 8702 GO:0015623 iron-chelate-transporting ATPase activity 0 0 8703 GO:0015624 ferric-enterobactin-transporting ATPase activity 0 0 8704 GO:0015625 ferric-hydroxamate-transporting ATPase activity 0 0 8705 GO:0015626 L-diaminopimelate transporter activity 0 0 8706 GO:0015627 type II protein secretion system complex 0 0 8707 GO:0015628 type II protein secretion system 0 0 8708 GO:0015629 actin cytoskeleton 0 0 8709 GO:0015630 microtubule cytoskeleton 0 0 8710 GO:0015631 tubulin binding 0 0 8711 GO:0015632 cobalt porter activity 0 0 8712 GO:0015633 zinc porter activity 0 0 8713 GO:0015634 lipopolysaccharide exporter activity 0 0 8714 GO:0015635 short-chain fatty acid transporter activity 0 0 8715 GO:0015636 short-chain fatty acid uptake transporter activity 0 0 8716 GO:0015637 peptide uptake permease activity 0 0 8717 GO:0015638 microcin uptake permease activity 0 0 8718 GO:0015639 ferrous iron uptake transporter activity 0 0 8719 GO:0015640 peptidoglycan peptide transporter activity 0 0 8720 GO:0015641 lipoprotein toxin (obsolete GO:0015641) 1 0 8721 GO:0015642 bacteriolytic toxin activity (obsolete GO:0015642) 1 0 8722 GO:0015643 toxin binding 0 0 8723 GO:0015644 lipoprotein antitoxin (obsolete GO:0015644) 1 0 8724 GO:0015645 fatty-acid ligase activity 0 0 8725 GO:0015646 permease activity 0 0 8726 GO:0015647 peptidoglycan transporter activity 0 0 8727 GO:0015648 lipid-linked peptidoglycan transporter activity 0 0 8728 GO:0015649 2-keto-3-deoxygluconate:hydrogen symporter activity 0 0 8729 GO:0015650 lactate:hydrogen symporter activity 0 0 8730 GO:0015651 quaternary ammonium group transporter activity 0 0 8731 GO:0015652 quaternary ammonium group:hydrogen symporter activity 0 0 8732 GO:0015653 glycine betaine:hydrogen symporter activity 0 0 8733 GO:0015654 tellurite-resistance uptake permease activity 0 0 8734 GO:0015655 alanine:sodium symporter activity 0 0 8735 GO:0015657 branched-chain amino acid:sodium symporter activity 0 0 8736 GO:0015658 branched-chain aliphatic amino acid transporter activity 0 0 8737 GO:0015659 formate uptake permease activity 0 0 8738 GO:0015660 formate efflux permease activity 0 0 8739 GO:0015661 L-lysine exporter activity 0 0 8740 GO:0015662 ATPase activity, coupled to transmembrane movement of ions, phosphorylative mechanism 0 0 8741 GO:0015663 nicotinamide mononucleotide transporter activity 0 0 8742 GO:0015664 nicotinamide mononucleotide permease activity 0 0 8743 GO:0015665 alcohol transporter activity 0 0 8744 GO:0015666 restriction endodeoxyribonuclease activity 0 0 8745 GO:0015667 site-specific DNA-methyltransferase (cytosine-N4-specific) activity 0 0 8746 GO:0015668 Type III site-specific deoxyribonuclease activity 0 0 8747 GO:0015669 gas transport 0 0 8748 GO:0015670 carbon dioxide transport 0 0 8749 GO:0015671 oxygen transport 0 0 8750 GO:0015672 monovalent inorganic cation transport 0 0 8751 GO:0015673 silver ion transport 0 0 8752 GO:0015674 di-, tri-valent inorganic cation transport 0 0 8753 GO:0015675 nickel ion transport 0 0 8754 GO:0015676 vanadium ion transport 0 0 8755 GO:0015677 copper ion import 0 0 8756 GO:0015678 high affinity copper ion transport 0 0 8757 GO:0015679 plasma membrane copper ion transport 0 0 8758 GO:0015680 intracellular copper ion transport 0 0 8759 GO:0015682 ferric iron transport 0 0 8760 GO:0015683 high affinity ferric iron transport 0 0 8761 GO:0015684 ferrous iron transport 0 0 8762 GO:0015685 ferric-enterobactin transport 0 0 8763 GO:0015686 ferric triacetylfusarinine C transport 0 0 8764 GO:0015687 ferric-hydroxamate transport 0 0 8765 GO:0015688 iron chelate transport 0 0 8766 GO:0015689 molybdate ion transport 0 0 8767 GO:0015690 aluminum ion transport 0 0 8768 GO:0015691 cadmium ion transport 0 0 8769 GO:0015692 lead ion transport 0 0 8770 GO:0015693 magnesium ion transport 0 0 8771 GO:0015694 mercury ion transport 0 0 8772 GO:0015695 organic cation transport 0 0 8773 GO:0015696 ammonium transport 0 0 8774 GO:0015697 quaternary ammonium group transport 0 0 8775 GO:0015698 inorganic anion transport 0 0 8776 GO:0015699 antimonite transport 0 0 8777 GO:0015700 arsenite transport 0 0 8778 GO:0015701 bicarbonate transport 0 0 8779 GO:0015702 chlorate transport 0 0 8780 GO:0015703 chromate transport 0 0 8781 GO:0015704 cyanate transport 0 0 8782 GO:0015705 iodide transport 0 0 8783 GO:0015706 nitrate transport 0 0 8784 GO:0015707 nitrite transport 0 0 8785 GO:0015708 silicate transport 0 0 8786 GO:0015709 thiosulfate transport 0 0 8787 GO:0015710 tellurite transport 0 0 8788 GO:0015711 organic anion transport 0 0 8789 GO:0015712 hexose phosphate transport 0 0 8790 GO:0015713 phosphoglycerate transport 0 0 8791 GO:0015714 phosphoenolpyruvate transport 0 0 8792 GO:0015715 nucleotide-sulfate transport 0 0 8793 GO:0015716 phosphonate transport 0 0 8794 GO:0015717 triose phosphate transport 0 0 8795 GO:0015718 monocarboxylic acid transport 0 0 8796 GO:0015719 allantoate transport 0 0 8797 GO:0015720 allantoin transport 0 0 8798 GO:0015721 bile acid transport 0 0 8799 GO:0015722 canalicular bile acid transport 0 0 8800 GO:0015723 bilirubin transport 0 0 8801 GO:0015724 formate transport 0 0 8802 GO:0015725 gluconate transport 0 0 8803 GO:0015726 L-idonate transport 0 0 8804 GO:0015727 lactate transport 0 0 8805 GO:0015728 mevalonate transport 0 0 8806 GO:0015729 oxaloacetate transport 0 0 8807 GO:0015730 propionate transport 0 0 8808 GO:0015731 3-hydroxyphenyl propanoate transport 0 0 8809 GO:0015732 prostaglandin transport 0 0 8810 GO:0015733 shikimate transport 0 0 8811 GO:0015734 taurine transport 0 0 8812 GO:0015735 uronic acid transport 0 0 8813 GO:0015736 hexuronate transport 0 0 8814 GO:0015737 galacturonate transport 0 0 8815 GO:0015738 glucuronate transport 0 0 8816 GO:0015739 sialic acid transport 0 0 8817 GO:0015740 C4-dicarboxylate transport 0 0 8818 GO:0015741 fumarate transport 0 0 8819 GO:0015742 alpha-ketoglutarate transport 0 0 8820 GO:0015743 malate transport 0 0 8821 GO:0015744 succinate transport 0 0 8822 GO:0015745 tartrate transport 0 0 8823 GO:0015746 citrate transport 0 0 8824 GO:0015747 urate transport 0 0 8825 GO:0015748 organophosphate ester transport 0 0 8826 GO:0015749 monosaccharide transport 0 0 8827 GO:0015750 pentose transport 0 0 8828 GO:0015751 arabinose transport 0 0 8829 GO:0015752 D-ribose transport 0 0 8830 GO:0015753 D-xylose transport 0 0 8831 GO:0015754 allose transport 0 0 8832 GO:0015755 fructose transport 0 0 8833 GO:0015756 fucose transport 0 0 8834 GO:0015757 galactose transport 0 0 8835 GO:0015758 glucose transport 0 0 8836 GO:0015759 beta-glucoside transport 0 0 8837 GO:0015760 glucose-6-phosphate transport 0 0 8838 GO:0015761 mannose transport 0 0 8839 GO:0015762 rhamnose transport 0 0 8840 GO:0015763 N-acetylgalactosamine transport 0 0 8841 GO:0015764 N-acetylglucosamine transport 0 0 8842 GO:0015765 methylgalactoside transport 0 0 8843 GO:0015766 disaccharide transport 0 0 8844 GO:0015767 lactose transport 0 0 8845 GO:0015768 maltose transport 0 0 8846 GO:0015769 melibiose transport 0 0 8847 GO:0015770 sucrose transport 0 0 8848 GO:0015771 trehalose transport 0 0 8849 GO:0015772 oligosaccharide transport 0 0 8850 GO:0015773 raffinose transport 0 0 8851 GO:0015774 polysaccharide transport 0 0 8852 GO:0015775 beta-glucan transport 0 0 8853 GO:0015776 capsular polysaccharide transport 0 0 8854 GO:0015777 teichoic acid transport 0 0 8855 GO:0015778 hexuronide transport 0 0 8856 GO:0015779 glucuronoside transport 0 0 8857 GO:0015780 nucleotide-sugar transport 0 0 8858 GO:0015781 pyrimidine nucleotide-sugar transport 0 0 8859 GO:0015782 CMP-sialic acid transport 0 0 8860 GO:0015783 GDP-fucose transport 0 0 8861 GO:0015784 GDP-mannose transport 0 0 8862 GO:0015785 UDP-galactose transport 0 0 8863 GO:0015786 UDP-glucose transport 0 0 8864 GO:0015787 UDP-glucuronic acid transport 0 0 8865 GO:0015788 UDP-N-acetylglucosamine transport 0 0 8866 GO:0015789 UDP-N-acetylgalactosamine transport 0 0 8867 GO:0015790 UDP-xylose transport 0 0 8868 GO:0015791 polyol transport 0 0 8869 GO:0015792 arabinitol transport 0 0 8870 GO:0015793 glycerol transport 0 0 8871 GO:0015794 glycerol-3-phosphate transport 0 0 8872 GO:0015795 sorbitol transport 0 0 8873 GO:0015796 galactitol transport 0 0 8874 GO:0015797 mannitol transport 0 0 8875 GO:0015798 myo-inositol transport 0 0 8876 GO:0015799 propanediol transport 0 0 8877 GO:0015800 acidic amino acid transport 0 0 8878 GO:0015801 aromatic amino acid transport 0 0 8879 GO:0015802 basic amino acid transport 0 0 8880 GO:0015803 branched-chain aliphatic amino acid transport 0 0 8881 GO:0015804 neutral amino acid transport 0 0 8882 GO:0015805 S-adenosylmethionine transport 0 0 8883 GO:0015806 S-methylmethionine transport 0 0 8884 GO:0015807 L-amino acid transport 0 0 8885 GO:0015808 L-alanine transport 0 0 8886 GO:0015809 L-arginine transport 0 0 8887 GO:0015810 L-aspartate transport 0 0 8888 GO:0015811 L-cystine transport 0 0 8889 GO:0015812 gamma-aminobutyric acid transport 0 0 8890 GO:0015813 L-glutamate transport 0 0 8891 GO:0015814 p-aminobenzoyl-glutamate transport 0 0 8892 GO:0015816 glycine transport 0 0 8893 GO:0015817 L-histidine transport 0 0 8894 GO:0015818 L-isoleucine transport 0 0 8895 GO:0015819 L-lysine transport 0 0 8896 GO:0015820 L-leucine transport 0 0 8897 GO:0015821 L-methionine transport 0 0 8898 GO:0015822 L-ornithine transport 0 0 8899 GO:0015823 L-phenylalanine transport 0 0 8900 GO:0015824 L-proline transport 0 0 8901 GO:0015825 L-serine transport 0 0 10639 GO:0018526 2-aminobenzoyl-CoA reductase activity 0 0 10640 GO:0018527 cyclohexylamine oxidase activity 0 0 10641 GO:0018528 iminodiacetate dehydrogenase activity 0 0 10642 GO:0018529 nitrilotriacetate monooxygenase activity 0 0 10643 GO:0018530 (R)-6-hydroxynicotine oxidase activity 0 0 10644 GO:0018531 (S)-6-hydroxynicotine oxidase activity 0 0 10645 GO:0018532 F433-independent 5,10-methenyl-5,6,7,8-tetrahydromethanopterin dehydrogenase activity 0 0 10646 GO:0018533 peptidyl-cysteine acetylation 0 0 10647 GO:0018534 nitrilotriacetate dehydrogenase activity 0 0 10648 GO:0018535 nicotine dehydrogenase activity 0 0 10649 GO:0018537 coenzyme F420-dependent N5,N10-methenyltetrahydromethanopterin reductase activity 0 0 10650 GO:0018538 epoxide carboxylase activity 0 0 10651 GO:0018540 hydroxybenzoquinone reductase activity 0 0 10652 GO:0018541 p-benzoquinone reductase (NADPH) activity 0 0 10653 GO:0018542 2,3-dihydroxy DDT 1,2-dioxygenase activity 0 0 10654 GO:0018543 4-amino-2-nitroso-6-nitrotoluene reductase activity 0 0 10655 GO:0018544 4-carboxy-4'-sulfoazobenzene reductase activity 0 0 10656 GO:0018545 NAD(P)H nitroreductase activity 0 0 10657 GO:0018546 nitrobenzene nitroreductase activity 0 0 10658 GO:0018547 nitroglycerin reductase activity 0 0 10659 GO:0018548 pentaerythritol tetranitrate reductase activity 0 0 10660 GO:0018549 methanethiol oxidase activity 0 0 10661 GO:0018550 tetrachloro-p-hyrodoquinone reductive dehalogenase activity 0 0 10662 GO:0018551 hydrogensulfite reductase activity 0 0 10663 GO:0018552 methyl-coenzyme-M reductase activity 0 0 10664 GO:0018553 3-(2,3-dihydroxyphenyl)propionate 1,2-dioxygenase activity 0 0 10665 GO:0018554 1,2-dihydroxynaphthalene dioxygenase activity 0 0 10666 GO:0018555 phenanthrene dioxygenase activity 0 0 10667 GO:0018556 2,2',3-trihydroxybiphenyl dioxygenase activity 0 0 10668 GO:0018557 1,2-dihydroxyfluorene 1,1-alpha-dioxygenase activity 0 0 10669 GO:0018558 5,6-dihydroxy-3-methyl-2-oxo-1,2-dihydroquinoline dioxygenase activity 0 0 10670 GO:0018559 1,1-dichloro-2-(dihydroxy-4-chlorophenyl)-(4-chlorophenyl)ethene 1,2-dioxygenase activity 0 0 10671 GO:0018560 protocatechuate 3,4-dioxygenase type II activity 0 0 10672 GO:0018561 2'-aminobiphenyl-2,3-diol 1,2-dioxygenase activity 0 0 10673 GO:0018562 3,4-dihydroxyfluorene 4,4-alpha-dioxygenase activity 0 0 10674 GO:0018563 2,3-dihydroxy-ethylbenzene 1,2-dioxygenase activity 0 0 10675 GO:0018564 carbazole 1,9a-dioxygenase activity 0 0 10676 GO:0018565 dihydroxydibenzothiophene dioxygenase activity 0 0 10677 GO:0018566 1,2-dihydroxynaphthalene-6-sulfonate 1,8a-dioxygenase activity 0 0 10678 GO:0018567 styrene dioxygenase activity 0 0 10679 GO:0018568 3,4-dihydroxyphenanthrene dioxygenase activity 0 0 10680 GO:0018569 hydroquinone 1,2-dioxygenase activity 0 0 10681 GO:0018570 p-cumate 2,3-dioxygenase activity 0 0 10682 GO:0018571 2,3-dihydroxy-p-cumate dioxygenase activity 0 0 10683 GO:0018572 3,5-dichlorocatechol 1,2-dioxygenase activity 0 0 10684 GO:0018573 2-aminophenol 1,6-dioxygenase activity 0 0 10685 GO:0018574 2,6-dichloro-p-hydroquinone 1,2-dioxygenase activity 0 0 10686 GO:0018575 chlorocatechol 1,2-dioxygenase activity 0 0 10687 GO:0018576 catechol 1,2-dioxygenase activity 0 0 10688 GO:0018577 catechol 2,3-dioxygenase activity 0 0 10689 GO:0018578 protocatechuate 3,4-dioxygenase activity 0 0 10690 GO:0018579 protocatechuate 4,5-dioxygenase activity 0 0 10691 GO:0018580 2-nitropropane dioxygenase activity 0 0 10692 GO:0018581 hydroxyquinol 1,2-dioxygenase activity 0 0 10693 GO:0018582 1-hydroxy-2-naphthoate 1,2-dioxygenase activity 0 0 10694 GO:0018583 biphenyl-2,3-diol 1,2-dioxygenase activity 0 0 10695 GO:0018584 2,4,5-trichlorophenoxyacetic acid oxygenase activity 0 0 10696 GO:0018585 fluorene oxygenase activity 0 0 10697 GO:0018586 mono-butyltin dioxygenase activity 0 0 10698 GO:0018587 limonene 8-monooxygenase activity 0 0 10699 GO:0018588 tri-n-butyltin dioxygenase activity 0 0 10700 GO:0018589 di-n-butyltin dioxygenase activity 0 0 10701 GO:0018590 methylsilanetriol hydroxylase activity 0 0 10702 GO:0018591 methyl tertiary butyl ether 3-monooxygenase activity 0 0 10703 GO:0018592 4-nitrocatechol 4-monooxygenase activity 0 0 10704 GO:0018593 4-chlorophenoxyacetate monooxygenase activity 0 0 10705 GO:0018594 tert-butyl alcohol 2-monooxygenase activity 0 0 10706 GO:0018595 alpha-pinene monooxygenase activity 0 0 10707 GO:0018596 dimethylsilanediol hydroxylase activity 0 0 10708 GO:0018597 ammonia monooxygenase activity 0 0 10709 GO:0018598 hydroxymethylsilanetriol oxidase activity 0 0 10710 GO:0018599 2-hydroxyisobutyrate 3-monooxygenase activity 0 0 10711 GO:0018600 alpha-pinene dehydrogenase activity 0 0 10712 GO:0018601 4-nitrophenol 2-monooxygenase activity 0 0 10713 GO:0018602 2,4-dichlorophenoxyacetate alpha-ketoglutarate dioxygenase activity 0 0 10714 GO:0018603 nitrobenzene 1,2-dioxygenase activity 0 0 10715 GO:0018604 4-aminobenzoate 3,4-dioxygenase (deaminating) activity 0 0 10716 GO:0018605 2-aminobenzenesulfonate dioxygenase activity 0 0 10717 GO:0018606 benzenesulfonate dioxygenase activity 0 0 10718 GO:0018607 1-indanone monooxygenase activity 0 0 10719 GO:0018608 1-indanone dioxygenase activity 0 0 10720 GO:0018609 chlorobenzene dioxygenase activity 0 0 10721 GO:0018610 dibenzofuran 4,4a-dioxygenase activity 0 0 10722 GO:0018611 toluate dioxygenase activity 0 0 10723 GO:0018612 dibenzothiophene dioxygenase activity 0 0 10724 GO:0018613 9-fluorenone dioxygenase activity 0 0 10725 GO:0018614 ethylbenzene dioxygenase activity 0 0 10726 GO:0018615 2-indanone monooxygenase activity 0 0 10727 GO:0018616 trihydroxytoluene dioxygenase activity 0 0 10728 GO:0018617 4-aminobenzenesulfonate 3,4-dioxygenase (deaminating) activity 0 0 10729 GO:0018618 anthranilate 1,2-dioxygenase (deaminating, decarboxylating) activity 0 0 10730 GO:0018619 benzene 1,2-dioxygenase activity 0 0 10731 GO:0018620 phthalate 4,5-dioxygenase activity 0 0 10732 GO:0018621 4-sulfobenzoate 3,4-dioxygenase activity 0 0 10733 GO:0018622 4-chlorophenylacetate 3,4-dioxygenase activity 0 0 10734 GO:0018623 benzoate 1,2-dioxygenase activity 0 0 10735 GO:0018624 toluene dioxygenase activity 0 0 10736 GO:0018625 naphthalene 1,2-dioxygenase activity 0 0 10737 GO:0018626 2-chlorobenzoate 1,2-dioxygenase activity 0 0 10738 GO:0018627 2-aminobenzenesulfonate 2,3-dioxygenase activity 0 0 10739 GO:0018628 terephthalate 1,2-dioxygenase activity 0 0 10740 GO:0018629 2-hydroxyquinoline 5,6-dioxygenase activity 0 0 10741 GO:0018630 3,5-xylenol methylhydroxylase activity 0 0 10742 GO:0018631 phenylacetate hydroxylase activity 0 0 10743 GO:0018632 4-nitrophenol 4-monooxygenase activity 0 0 10744 GO:0018633 dimethyl sulfide monooxygenase activity 0 0 10745 GO:0018634 alpha-pinene monooxygenase [NADH] activity 0 0 10746 GO:0018635 limonene 1,2-monooxygenase activity 0 0 10747 GO:0018636 phenanthrene 9,10-monooxygenase activity 0 0 10748 GO:0018637 1-hydroxy-2-naphthoate hydroxylase activity 0 0 10749 GO:0018638 toluene 4-monooxygenase activity 0 0 10750 GO:0018639 xylene monooxygenase activity 0 0 10751 GO:0018640 dibenzothiophene monooxygenase activity 0 0 10752 GO:0018641 6-hydroxy-3-methyl-2-oxo-1,2-dihydroquinoline 6-monooxygenase activity 0 0 10753 GO:0018642 chlorophenol 4-monooxygenase activity 0 0 10754 GO:0018643 carbon disulfide oxygenase activity 0 0 10755 GO:0018644 toluene 2-monooxygenase activity 0 0 10756 GO:0018645 alkene monooxygenase activity 0 0 10757 GO:0018646 1-hydroxy-2-oxolimonene 1,2-monooxygenase activity 0 0 10758 GO:0018647 phenanthrene 1,2-monooxygenase activity 0 0 10759 GO:0018648 methanesulfonic acid monooxygenase activity 0 0 10760 GO:0018649 tetrahydrofuran hydroxylase activity 0 0 10761 GO:0018650 styrene monooxygenase activity 0 0 10762 GO:0018651 toluene-4-sulfonate monooxygenase activity 0 0 10763 GO:0018652 toluene-sulfonate methyl-monooxygenase activity 0 0 10764 GO:0018653 3-methyl-2-oxo-1,2-dihydroquinoline 6-monooxygenase activity 0 0 10765 GO:0018654 2-hydroxy-phenylacetate hydroxylase activity 0 0 10766 GO:0018655 2-oxo-delta3-4,5,5-trimethylcyclopentenylacetyl-CoA 1,2-monooxygenase activity 0 0 10767 GO:0018656 phenanthrene 3,4-monooxygenase activity 0 0 10768 GO:0018657 toluene 3-monooxygenase activity 0 0 10769 GO:0018658 salicylate 1-monooxygenase activity 0 0 10770 GO:0018659 4-hydroxybenzoate 3-monooxygenase activity 0 0 10771 GO:0018660 4-hydroxyphenylacetate 3-monooxygenase activity 0 0 10772 GO:0018661 orcinol 2-monooxygenase activity 0 0 10773 GO:0018662 phenol 2-monooxygenase activity 0 0 10774 GO:0018663 2,6-dihydroxypyridine 3-monooxygenase activity 0 0 10775 GO:0018664 benzoate 4-monooxygenase activity 0 0 10776 GO:0018665 4-hydroxyphenylacetate 1-monooxygenase activity 0 0 10777 GO:0018666 2,4-dichlorophenol 6-monooxygenase activity 0 0 10778 GO:0018667 cyclohexanone monooxygenase activity 0 0 10779 GO:0018668 3-hydroxybenzoate 4-monooxygenase activity 0 0 10780 GO:0018669 3-hydroxybenzoate 6-monooxygenase activity 0 0 10781 GO:0018670 4-aminobenzoate 1-monooxygenase activity 0 0 10782 GO:0018671 4-hydroxybenzoate 3-monooxygenase [NAD(P)H] activity 0 0 10783 GO:0018672 anthranilate 3-monooxygenase (deaminating) activity 0 0 10784 GO:0018673 anthraniloyl-CoA monooxygenase activity 0 0 10785 GO:0018674 (S)-limonene 3-monooxygenase activity 0 0 10786 GO:0018675 (S)-limonene 6-monooxygenase activity 0 0 10787 GO:0018676 (S)-limonene 7-monooxygenase activity 0 0 10788 GO:0018677 pentachlorophenol monooxygenase activity 0 0 10789 GO:0018678 4-hydroxybenzoate 1-hydroxylase activity 0 0 10790 GO:0018679 dibenzothiophene-5,5-dioxide monooxygenase activity 0 0 10791 GO:0018680 deethylatrazine monooxygenase activity 0 0 10792 GO:0018681 deisopropylatrazine monooxygenase activity 0 0 10793 GO:0018682 atrazine monooxygenase activity 0 0 10794 GO:0018683 camphor 5-monooxygenase activity 0 0 10795 GO:0018684 camphor 1,2-monooxygenase activity 0 0 10796 GO:0018685 alkane 1-monooxygenase activity 0 0 10797 GO:0018686 6-hydroxy pseudo-oxynicotine monooxygenase activity 0 0 10798 GO:0018687 biphenyl 2,3-dioxygenase activity 0 0 10799 GO:0018688 DDT 2,3-dioxygenase activity 0 0 10800 GO:0018689 naphthalene disulfonate 1,2-dioxygenase activity 0 0 10801 GO:0018690 4-methoxybenzoate monooxygenase (O-demethylating) activity 0 0 10802 GO:0018691 arsenite oxidase activity 0 0 10803 GO:0018693 ethylbenzene dehydrogenase activity 0 0 10804 GO:0018694 p-cymene methyl hydroxylase activity 0 0 10805 GO:0018695 4-cresol dehydrogenase (hydroxylating) activity 0 0 10806 GO:0018697 carbonyl sulfide nitrogenase activity 0 0 10807 GO:0018698 vinyl chloride reductive dehalogenase activity 0 0 10808 GO:0018699 trichloroethane reductive dehalogenase activity 0 0 10809 GO:0018700 2-chloro-N-isopropylacetanilide reductive dehalogenase activity 0 0 10810 GO:0018701 2,5-dichlorohydroquinone reductive dehalogenase activity 0 0 10811 GO:0018702 1,1-dichloro-2,2-bis(4-chlorophenyl)ethene dehalogenase activity 0 0 10812 GO:0018703 2,4-dichlorophenoxyacetate dehalogenase activity 0 0 10813 GO:0018704 5-chloro-2-hydroxymuconic semialdehyde dehalogenase activity 0 0 10814 GO:0018705 1,2-dichloroethene reductive dehalogenase activity 0 0 10815 GO:0018706 pyrogallol hydroxytransferase activity 0 0 10816 GO:0018707 1-phenanthrol methyltransferase activity 0 0 10817 GO:0018708 thiol S-methyltransferase activity 0 0 10818 GO:0018710 acetone carboxylase activity 0 0 10819 GO:0018711 benzoyl acetate-CoA thiolase activity 0 0 10820 GO:0018712 3-hydroxybutyryl-CoA thiolase activity 0 0 10821 GO:0018713 3-ketopimelyl-CoA thiolase activity 0 0 10822 GO:0018715 9-phenanthrol UDP-glucuronosyltransferase activity 0 0 10823 GO:0018716 1-phenanthrol glycosyltransferase activity 0 0 10824 GO:0018717 9-phenanthrol glycosyltransferase activity 0 0 10825 GO:0018718 1,2-dihydroxy-phenanthrene glycosyltransferase activity 0 0 10826 GO:0018719 6-aminohexanoate transaminase activity 0 0 10827 GO:0018720 phenol kinase activity 0 0 10828 GO:0018721 trans-9R,10R-dihydrodiolphenanthrene sulfotransferase activity 0 0 10829 GO:0018722 1-phenanthrol sulfotransferase activity 0 0 10830 GO:0018723 3-phenanthrol sulfotransferase activity 0 0 10831 GO:0018724 4-phenanthrol sulfotransferase activity 0 0 10832 GO:0018725 trans-3,4-dihydrodiolphenanthrene sulfotransferase activity 0 0 10833 GO:0018726 9-phenanthrol sulfotransferase activity 0 0 10834 GO:0018727 2-phenanthrol sulfotransferase activity 0 0 10835 GO:0018728 succinyl-CoA:benzylsuccinate CoA-transferase activity 0 0 10836 GO:0018729 propionate CoA-transferase activity 0 0 10837 GO:0018730 glutaconate CoA-transferase activity 0 0 10838 GO:0018731 1-oxa-2-oxocycloheptane lactonase activity 0 0 10839 GO:0018732 sulfolactone hydrolase activity 0 0 10840 GO:0018733 3,4-dihydrocoumarin hydrolase activity 0 0 10841 GO:0018734 butyrolactone hydrolase activity 0 0 10842 GO:0018736 6-oxo-2-hydroxycyclohexane-1-carboxyl-CoA hydrolase activity 0 0 10843 GO:0018737 2-ketocyclohexane-1-carboxyl-CoA hydrolase activity 0 0 10844 GO:0018738 S-formylglutathione hydrolase activity 0 0 10845 GO:0018739 4-hydroxybenzoyl-CoA thioesterase activity 0 0 10846 GO:0018740 2-(2-hydroxyphenyl)benzenesulfinate hydrolase activity 0 0 10847 GO:0018741 alkyl sulfatase activity 0 0 10848 GO:0018742 epoxide hydrolase B activity 0 0 10849 GO:0018743 phenanthrene-9,10-epoxide hydrolase (9R,10R-forming) activity 0 0 10850 GO:0018744 limonene-1,2-epoxide hydrolase activity 0 0 10851 GO:0018745 epoxide hydrolase A activity 0 0 10852 GO:0018746 phenanthrene-3,4-epoxide hydrolase activity 0 0 10853 GO:0018747 phenanthrene-1,2-epoxide hydrolase activity 0 0 10854 GO:0018748 iprodione amidohydrolase activity 0 0 10855 GO:0018749 (3,5-dichlorophenylurea)acetate amidohydrolase activity 0 0 10856 GO:0018750 biuret amidohydrolase activity 0 0 10857 GO:0018751 3,5-dichlorophenylcarboximide hydrolase activity 0 0 10858 GO:0018752 epsilon-caprolactam lactamase activity 0 0 10859 GO:0018753 cyanuric acid amidohydrolase activity 0 0 10860 GO:0018754 ammelide aminohydrolase activity 0 0 10861 GO:0018755 2-chloro-4-hydroxy-6-amino-1,3,5-triazine aminohydrolase activity 0 0 10862 GO:0018756 ammeline aminohydrolase activity 0 0 10863 GO:0018757 deisopropylhydroxyatrazine aminohydrolase activity 0 0 10864 GO:0018758 2,4-dihydroxy-6-(N'-ethyl)amino-1,3,5-triazine aminohydrolase activity 0 0 10865 GO:0018759 methenyltetrahydromethanopterin cyclohydrolase activity 0 0 10866 GO:0018760 thiocyanate hydrolase activity 0 0 10867 GO:0018761 bromoxynil nitrilase activity 0 0 10868 GO:0018762 aliphatic nitrilase activity 0 0 10869 GO:0018763 hydroxydechloroatrazine ethylaminohydrolase activity 0 0 10870 GO:0018764 N-isopropylammelide isopropylaminohydrolase activity 0 0 10871 GO:0018765 2-hydroxy-6-oxohepta-2,4-dienoate hydrolase activity 0 0 10872 GO:0018766 dihydrophloroglucinol hydrolase activity 0 0 10873 GO:0018767 2-hydroxy-6-oxo-7-methylocta-2,4-dienoate hydrolase activity 0 0 10874 GO:0018768 2-hydroxy-6-oxo-6-(2'-aminophenyl)hexa-2,4-dienoate hydrolase activity 0 0 10875 GO:0018769 2-hydroxy-6-oxoocta-2,4-dienoate hydrolase activity 0 0 10876 GO:0018770 6-oxo-2-hydroxy-7-(4-chlorophenyl)-3,8,8-trichloroocta-2E,4E,7-trienoate hydrolase activity 0 0 10877 GO:0018771 2-hydroxy-6-ketonona-2,4-dienedoic acid hydrolase activity 0 0 10878 GO:0018772 trioxoheptanoate hydrolase activity 0 0 10879 GO:0018773 acetylpyruvate hydrolase activity 0 0 10880 GO:0018774 2,6-dioxo-6-phenylhexa-3-enoate hydrolase activity 0 0 10881 GO:0018775 2-hydroxymuconate-semialdehyde hydrolase activity 0 0 10882 GO:0018776 trans-chloroacrylic acid dehalogenase activity 0 0 10883 GO:0018777 1,3,4,6-tetrachloro-1,4-cyclohexadiene halidohydrolase activity 0 0 10884 GO:0018778 DL-2 haloacid dehalogenase activity 0 0 10885 GO:0018779 2-chloro-4,6-dihydroxy-1,3,5-triazine hydrolase activity 0 0 10886 GO:0018780 dichloroacetate halidohydrolase activity 0 0 10887 GO:0018781 S-triazine hydrolase activity 0 0 10888 GO:0018782 cis-chloroacrylic acid dehalogenase activity 0 0 10889 GO:0018783 deisopropyldeethylatrazine hydrolase activity 0 0 10890 GO:0018784 (S)-2-haloacid dehalogenase activity 0 0 10891 GO:0018785 haloacetate dehalogenase activity 0 0 10892 GO:0018786 haloalkane dehalogenase activity 0 0 10893 GO:0018787 4-chlorobenzoyl-CoA dehalogenase activity 0 0 10894 GO:0018788 atrazine chlorohydrolase activity 0 0 10895 GO:0018789 cyclamate sulfohydrolase activity 0 0 10896 GO:0018790 2,3-dihydroxybenzoate decarboxylase activity 0 0 10897 GO:0018791 2-hydroxy-3-carboxy-6-oxo-7-methylocta-2,4-dienoate decarboxylase activity 0 0 10898 GO:0018792 bis(4-chlorophenyl)acetate decarboxylase activity 0 0 10899 GO:0018793 3,5-dibromo-4-hydroxybenzoate decarboxylase activity 0 0 10900 GO:0018794 2-hydroxyisobutyrate decarboxylase activity 0 0 10901 GO:0018795 2-hydroxy-2-methyl-1,3-dicarbonate decarboxylase activity 0 0 10902 GO:0018796 4,5-dihydroxyphthalate decarboxylase activity 0 0 10903 GO:0018798 gallate decarboxylase activity 0 0 10904 GO:0018799 4-hydroxybenzoate decarboxylase activity 0 0 10905 GO:0018800 5-oxopent-3-ene-1,2,5-tricarboxylate decarboxylase activity 0 0 10906 GO:0018801 glutaconyl-CoA decarboxylase activity 0 0 10907 GO:0018802 2,4-dihydroxyhept-2-ene-1,7-dioate aldolase activity 0 0 10908 GO:0018803 4-(2-carboxyphenyl)-2-oxobut-3-enoate aldolase activity 0 0 10909 GO:0018805 benzylsuccinate synthase activity 0 0 10910 GO:0018807 6-hydroxycyclohex-1-ene-1-carboxyl-CoA hydratase activity 0 0 10911 GO:0018808 cis-4-(1'-hydroxynaphth-2'-yl)-2-oxobut-3-enoate hydratase-aldolase activity 0 0 10912 GO:0018809 E-phenylitaconyl-CoA hydratase activity 0 0 10913 GO:0018810 trans-4-[2-(3-hydroxy)-thionaphthenyl]-2-oxo-3-butenoate hydratase activity 0 0 10914 GO:0018811 cyclohex-1-ene-1-carboxyl-CoA hydratase activity 0 0 10915 GO:0018812 3-hydroxyacyl-CoA dehydratase activity 0 0 10916 GO:0018813 trans-o-hydroxybenzylidenepyruvate hydratase-aldolase activity 0 0 10917 GO:0018814 phenylacetaldoxime dehydratase activity 0 0 10918 GO:0018815 3-methyl-5-hydroxy-6-(3-carboxy-3-oxopropenyl)-1H-2-pyridon hydratase-aldolase activity 0 0 10919 GO:0018816 2-hydroxyisobutyrate dehydratase activity 0 0 10920 GO:0018817 2-oxo-hept-3-ene-1,7-dioate hydratase activity 0 0 10921 GO:0018818 acetylene hydratase activity 0 0 10922 GO:0018819 lactoyl-CoA dehydratase activity 0 0 10923 GO:0018820 cyanamide hydratase activity 0 0 10924 GO:0018822 nitrile hydratase activity 0 0 10925 GO:0018823 cyclohexa-1,5-dienecarbonyl-CoA hydratase activity 0 0 10926 GO:0018824 hydroxylaminobenzene mutase activity 0 0 10927 GO:0018825 triethanolamine lyase activity 0 0 10928 GO:0018826 methionine gamma-lyase activity 0 0 10929 GO:0018827 1-chloro-2,2-bis(4-chlorophenyl)ethane dehydrochlorinase activity 0 0 10930 GO:0018828 halohydrin hydrogen-halide-lyase A activity 0 0 10931 GO:0018829 1,1-dichloro-2,2-bis(4-chlorophenyl)ethane dehydrochlorinase activity 0 0 10932 GO:0018830 gamma-hexachlorocyclohexane dehydrochlorinase activity 0 0 10933 GO:0018831 5-chloro-1,2,4-trihydroxybenzene dechlorinase activity 0 0 10934 GO:0018832 halohydrin hydrogen-halide-lyase B activity 0 0 10935 GO:0018833 DDT-dehydrochlorinase activity 0 0 10936 GO:0018834 dichloromethane dehalogenase activity 0 0 10937 GO:0018835 carbon phosphorus lyase activity 0 0 10938 GO:0018836 alkylmercury lyase activity 0 0 10939 GO:0018837 2-hydroxy-2H-benzo[h]chromene-2-carboxylate isomerase activity 0 0 10940 GO:0018838 mandelate racemase activity 0 0 10941 GO:0018839 cis-4-[2-(3-hydroxy)-thionaphthenyl]-2-oxo-3-butenoate isomerase activity 0 0 10942 GO:0018840 chlorodienelactone isomerase activity 0 0 10943 GO:0018842 3-carboxymuconate cycloisomerase type II activity 0 0 10944 GO:0018844 2-hydroxytetrahydrofuran isomerase activity 0 0 10945 GO:0018845 2-hydroxychromene-2-carboxylate isomerase activity 0 0 10946 GO:0018846 styrene-oxide isomerase activity 0 0 10947 GO:0018847 alpha-pinene lyase activity 0 0 10948 GO:0018848 pinocarveol isomerase activity 0 0 10949 GO:0018849 muconate cycloisomerase activity 0 0 10950 GO:0018850 chloromuconate cycloisomerase activity 0 0 10951 GO:0018851 alpha-pinene-oxide decyclase activity 0 0 10952 GO:0018852 dichloromuconate cycloisomerase activity 0 0 10953 GO:0018853 perillyl-CoA synthetase activity 0 0 10954 GO:0018854 3-isopropenyl-6-oxoheptanoyl-CoA synthetase activity 0 0 10955 GO:0018855 2-oxo-delta3-4,5,5-trimethylcyclopentenylacetyl-CoA synthetase activity 0 0 10956 GO:0018856 benzoyl acetate-CoA ligase activity 0 0 10957 GO:0018857 2,4-dichlorobenzoate-CoA ligase activity 0 0 10958 GO:0018858 benzoate-CoA ligase activity 0 0 10959 GO:0018859 4-hydroxybenzoate-CoA ligase activity 0 0 10960 GO:0018860 anthranilate--CoA ligase activity 0 0 10961 GO:0018861 4-chlorobenzoate-CoA ligase activity 0 0 10962 GO:0018862 phenylphosphate carboxylase activity 0 0 10963 GO:0018863 phenanthrene-9,10-epoxide hydrolase (9S,10S-forming) activity 0 0 10964 GO:0018864 acetylene metabolism 0 0 10965 GO:0018865 acrylonitrile metabolism 0 0 10966 GO:0018866 adamantanone metabolism 0 0 10967 GO:0018867 alpha-pinene metabolism 0 0 10968 GO:0018868 2-aminobenzenesulfonate metabolism 0 0 10969 GO:0018869 2-aminobenzoate metabolism 0 0 10970 GO:0018870 anaerobic 2-aminobenzoate metabolism 0 0 10971 GO:0018871 1-aminocyclopropane-1-carboxylate metabolism 0 0 10972 GO:0018872 arsonoacetate metabolism 0 0 10973 GO:0018873 atrazine metabolism 0 0 10974 GO:0018874 benzoate metabolism 0 0 10975 GO:0018875 anaerobic benzoate metabolism 0 0 10976 GO:0018876 benzonitrile metabolism 0 0 10977 GO:0018877 beta-1,2,3,4,5,6-hexachlorocyclohexane metabolism 0 0 10978 GO:0018878 aerobic beta-1,2,3,4,5,6-hexachlorocyclohexane metabolism 0 0 10979 GO:0018879 biphenyl metabolism 0 0 10980 GO:0018880 4-chlorobiphenyl metabolism 0 0 10981 GO:0018881 bromoxynil metabolism 0 0 10982 GO:0018882 (+)-camphor metabolism 0 0 10983 GO:0018883 caprolactam metabolism 0 0 10984 GO:0018884 carbazole metabolism 0 0 10985 GO:0018885 carbon tetrachloride metabolism 0 0 10986 GO:0018886 anaerobic carbon tetrachloride metabolism 0 0 10987 GO:0018887 4-carboxy-4'-sulfoazobenzene metabolism 0 0 10988 GO:0018888 3-chloroacrylic acid metabolism 0 0 10989 GO:0018889 2-chloro-N-isopropylacetanilide metabolism 0 0 10990 GO:0018890 cyanamide metabolism 0 0 10991 GO:0018891 cyclohexanol metabolism 0 0 10992 GO:0018892 cyclohexylsulfamate metabolism 0 0 10993 GO:0018893 dibenzofuran metabolism 0 0 10994 GO:0018894 dibenzo-p-dioxin metabolism 0 0 10995 GO:0018895 dibenzothiophene metabolism 0 0 10996 GO:0018896 dibenzothiophene catabolism 0 0 10997 GO:0018897 dibenzothiophene desulfurization 0 0 10998 GO:0018898 2,4-dichlorobenzoate metabolism 0 0 10999 GO:0018899 1,2-dichloroethane metabolism 0 0 11000 GO:0018900 dichloromethane metabolism 0 0 11001 GO:0018901 2,4-dichlorophenoxyacetic acid metabolism 0 0 11002 GO:0018902 1,3-dichloro-2-propanol metabolism 0 0 11003 GO:0018903 1,3-dichloropropene metabolism 0 0 11004 GO:0018904 organic ether metabolism 0 0 11005 GO:0018905 dimethyl ether metabolism 0 0 11006 GO:0018906 methyl tert-butyl ether metabolism 0 0 11007 GO:0018907 dimethyl sulfoxide metabolism 0 0 11008 GO:0018908 organosulfide cycle 0 0 11009 GO:0018909 dodecyl sulfate metabolism 0 0 11010 GO:0018910 benzene metabolism 0 0 11011 GO:0018911 1,2,4-trichlorobenzene metabolism 0 0 11012 GO:0018912 1,4-dichlorobenzene metabolism 0 0 11013 GO:0018913 anaerobic ethylbenzene metabolism 0 0 11014 GO:0018914 chlorobenzene metabolism 0 0 12987 GO:0030947 regulation of vascular endothelial growth factor receptor signaling pathway 0 0 12988 GO:0030948 negative regulation of vascular endothelial growth factor receptor signaling pathway 0 0 12989 GO:0030949 positive regulation of vascular endothelial growth factor receptor signaling pathway 0 0 12990 GO:0030950 establishment and/or maintenance of actin cytoskeleton polarity 0 0 12991 GO:0030951 establishment and/or maintenance of microtubule cytoskeleton polarity 0 0 12992 GO:0030952 establishment and/or maintenance of cytoskeleton polarity 0 0 12993 GO:0030953 astral microtubule organization and biogenesis 0 0 12994 GO:0030954 astral microtubule nucleation 0 0 12995 GO:0030955 potassium ion binding 0 0 12996 GO:0030956 glutamyl-tRNA(Gln) amidotransferase complex 0 0 12997 GO:0030957 Tat protein binding 0 0 12998 GO:0030958 RITS complex 0 0 12999 GO:0030959 peptide cross-linking via 3'-(3'-L-tyrosinyl)-L-tyrosine 0 0 13000 GO:0030960 peptide cross-linking via 3'-(O4'-L-tyrosinyl)-L-tyrosine 0 0 13001 GO:0030961 peptidyl-arginine hydroxylation 0 0 13002 GO:0030962 peptidyl-arginine dihydroxylation to peptidyl-3,4-dihydroxy-L-arginine 0 0 13003 GO:0030963 peptidyl-lysine dihydroxylation to 4,5-dihydroxy-L-lysine 0 0 13004 GO:0030964 NADH dehydrogenase complex (quinone) 0 0 13005 GO:0030965 plasma membrane electron transport, NADH to quinone 0 0 13006 GO:0030966 NADH dehydrogenase complex (quinone) (sensu Bacteria) 0 0 13007 GO:0030967 ER-nuclear sterol response pathway 0 0 13008 GO:0030968 unfolded protein response 0 0 13009 GO:0030969 UFP-specific transcription factor mRNA processing during unfolded protein response 0 0 13010 GO:0030970 retrograde protein transport, ER to cytosol 0 0 13011 GO:0030971 receptor tyrosine kinase binding 0 0 13012 GO:0030972 cleavage of cytosolic proteins during apoptosis 0 0 13013 GO:0030973 molybdate ion binding 0 0 13014 GO:0030974 thiamin pyrophosphate transport 0 0 13015 GO:0030975 thiamin binding 0 0 13016 GO:0030976 thiamin pyrophosphate binding 0 0 13017 GO:0030977 taurine binding 0 0 13018 GO:0030978 alpha-glucan metabolism 0 0 13019 GO:0030979 alpha-glucan biosynthesis 0 0 13020 GO:0030980 alpha-glucan catabolism 0 0 13021 GO:0030981 cortical microtubule cytoskeleton 0 0 13022 GO:0030982 adventurous gliding motility 0 0 13023 GO:0030983 mismatched DNA binding 0 0 13024 GO:0030984 kininogen binding 0 0 13025 GO:0030985 high molecular weight kininogen binding 0 0 13026 GO:0030986 low molecular weight kininogen binding 0 0 13027 GO:0030987 high molecular weight kininogen receptor binding 0 0 13028 GO:0030988 high molecular weight kininogen receptor complex 0 0 13029 GO:0030989 horsetail nuclear movement 0 0 13030 GO:0030990 intraflagellar transport particle 0 0 13031 GO:0030991 intraflagellar transport particle A 0 0 13032 GO:0030992 intraflagellar transport particle B 0 0 13033 GO:0030993 axonemal heterotrimeric kinesin-II complex 0 0 13034 GO:0030994 primary cell septum catabolism 0 0 13035 GO:0030995 cell septum edging catabolism 0 0 13036 GO:0030996 cell cycle arrest in response to nitrogen starvation 0 0 13037 GO:0030997 regulation of centriole-centriole cohesion 0 0 13038 GO:0030998 linear element 0 0 13039 GO:0030999 linear element formation 0 0 13040 GO:0031000 response to caffeine 0 0 13041 GO:0031001 response to brefeldin A 0 0 13042 GO:0031002 actin rod 0 0 13043 GO:0031003 actin tubule 0 0 13044 GO:0031004 potassium ion-transporting ATPase complex 0 0 13045 GO:0031005 filamin binding 0 0 13046 GO:0031006 filamin-A binding 0 0 13047 GO:0031007 filamin-B binding 0 0 13048 GO:0031008 filamin-C binding 0 0 13049 GO:0031009 plastid ADPG pyrophosphorylase complex 0 0 13050 GO:0031010 ISWI complex 0 0 13051 GO:0031011 INO80 complex 0 0 13052 GO:0031012 extracellular matrix 0 0 13053 GO:0031013 troponin I binding 0 0 13054 GO:0031014 troponin T binding 0 0 13055 GO:0031015 karyopherin docking complex 0 0 13056 GO:0031016 pancreas development 0 0 13057 GO:0031017 exocrine pancreas development 0 0 13058 GO:0031018 endocrine pancreas development 0 0 13059 GO:0031019 mitochondrial mRNA editing complex 0 0 13060 GO:0031020 plastid mRNA editing complex 0 0 13061 GO:0031021 interphase microtubule organizing center 0 0 13062 GO:0031022 nuclear migration along microfilament 0 0 13063 GO:0031023 microtubule organizing center organization and biogenesis 0 0 13064 GO:0031024 interphase microtubule organizing center formation 0 0 13065 GO:0031025 equatorial microtubule organizing center disassembly 0 0 13066 GO:0031026 glutamate synthase complex 0 0 13067 GO:0031027 glutamate synthase complex (NADH) 0 0 13068 GO:0031028 septation initiation signaling 0 0 13069 GO:0031029 regulation of septation initiation signaling 0 0 13070 GO:0031030 negative regulation of septation initiation signaling 0 0 13071 GO:0031031 positive regulation of septation initiation signaling 0 0 13072 GO:0031032 actomyosin structure organization and biogenesis 0 0 13073 GO:0031033 myosin filament assembly or disassembly 0 0 13074 GO:0031034 myosin filament assembly 0 0 13075 GO:0031035 myosin filament disassembly 0 0 13076 GO:0031036 myosin II filament assembly 0 0 13077 GO:0031037 myosin II filament disassembly 0 0 13078 GO:0031038 myosin II filament assembly or disassembly 0 0 13079 GO:0031039 macronucleus 0 0 13080 GO:0031040 micronucleus 0 0 13081 GO:0031041 O-glycan processing, core 5 0 0 13082 GO:0031042 O-glycan processing, core 6 0 0 13083 GO:0031043 O-glycan processing, core 7 0 0 13084 GO:0031044 O-glycan processing, core 8 0 0 13085 GO:0031045 dense core granule 0 0 13086 GO:0031046 spindle pole body duplication in cytoplasm 0 0 13087 GO:0031047 RNA-mediated gene silencing 0 0 13088 GO:0031048 small RNA-mediated chromatin silencing 0 0 13089 GO:0031049 programmed DNA elimination 0 0 13090 GO:0031050 dsRNA fragmentation 0 0 13091 GO:0031051 scnRNA production 0 0 13092 GO:0031052 chromosome breakage 0 0 13093 GO:0031053 primary microRNA processing 0 0 13094 GO:0031054 pre-microRNA processing 0 0 13095 GO:0031055 chromatin remodeling at centromere 0 0 13096 GO:0031056 regulation of histone modification 0 0 13097 GO:0031057 negative regulation of histone modification 0 0 13098 GO:0031058 positive regulation of histone modification 0 0 13099 GO:0031059 histone deacetylation at centromere 0 0 13100 GO:0031060 regulation of histone methylation 0 0 13101 GO:0031061 negative regulation of histone methylation 0 0 13102 GO:0031062 positive regulation of histone methylation 0 0 13103 GO:0031063 regulation of histone deacetylation 0 0 13104 GO:0031064 negative regulation of histone deacetylation 0 0 13105 GO:0031065 positive regulation of histone deacetylation 0 0 13106 GO:0031066 regulation of histone deacetylation at centromere 0 0 13107 GO:0031067 negative regulation of histone deacetylation at centromere 0 0 13108 GO:0031068 positive regulation of histone deacetylation at centromere 0 0 13109 GO:0031069 hair follicle morphogenesis 0 0 13110 GO:0031070 intronic snoRNA processing 0 0 13111 GO:0031071 cysteine desulfurase activity 0 0 13112 GO:0031072 heat shock protein binding 0 0 13113 GO:0031073 cholesterol 26-hydroxylase activity 0 0 13114 GO:0031074 nucleocytoplasmic shuttling complex 0 0 13115 GO:0031075 eye development (sensu Actinopterygii) 0 0 13116 GO:0031076 embryonic eye development (sensu Actinopterygii) 0 0 13117 GO:0031077 post-embryonic eye development (sensu Actinopterygii) 0 0 13118 GO:0031078 histone deacetylase activity (H3-K14 specific) 0 0 13119 GO:0031079 picornain 3C activity 0 0 13120 GO:0031080 Nup107-160 complex 0 0 13121 GO:0031081 nuclear pore distribution 0 0 13122 GO:0031082 BLOC complex 0 0 13123 GO:0031083 BLOC-1 complex 0 0 13124 GO:0031084 BLOC-2 complex 0 0 13125 GO:0031085 BLOC-3 complex 0 0 13126 GO:0031086 mRNA catabolism, deadenylylation-independent decay 0 0 13127 GO:0031087 deadenylylation-independent decapping 0 0 13128 GO:0031088 platelet dense granule membrane 0 0 13129 GO:0031089 platelet dense granule lumen 0 0 13130 GO:0031090 organelle membrane 0 0 13131 GO:0031091 platelet alpha granule 0 0 13132 GO:0031092 platelet alpha granule membrane 0 0 13133 GO:0031093 platelet alpha granule lumen 0 0 13134 GO:0031094 platelet dense tubular network 0 0 13135 GO:0031095 platelet dense tubular network membrane 0 0 13136 GO:0031096 platelet dense tubular network lumen 0 0 13137 GO:0031097 medial ring 0 0 13138 GO:0031098 stress-activated protein kinase signaling pathway 0 0 13139 GO:0031099 regeneration 0 0 13140 GO:0031100 organ regeneration 0 0 13141 GO:0031101 fin regeneration 0 0 13142 GO:0031102 neurite regeneration 0 0 13143 GO:0031103 axon regeneration 0 0 13144 GO:0031104 dendrite regeneration 0 0 13145 GO:0031105 septin complex 0 0 13146 GO:0031106 septin ring organization 0 0 13147 GO:0031107 septin ring disassembly 0 0 13148 GO:0031108 holo-[acyl-carrier protein] biosynthesis 0 0 13149 GO:0031109 microtubule polymerization or depolymerization 0 0 13150 GO:0031110 regulation of microtubule polymerization or depolymerization 0 0 13151 GO:0031111 negative regulation of microtubule polymerization or depolymerization 0 0 13152 GO:0031112 positive regulation of microtubule polymerization or depolymerization 0 0 13153 GO:0031113 regulation of microtubule polymerization 0 0 13154 GO:0031114 regulation of microtubule depolymerization 0 0 13155 GO:0031115 negative regulation of microtubule polymerization 0 0 13156 GO:0031116 positive regulation of microtubule polymerization 0 0 13157 GO:0031117 positive regulation of microtubule depolymerization 0 0 13158 GO:0031118 rRNA pseudouridine synthesis 0 0 13159 GO:0031119 tRNA pseudouridine synthesis 0 0 13160 GO:0031120 snRNA pseudouridine synthesis 0 0 13161 GO:0031121 equatorial microtubule organization and biogenesis 0 0 13162 GO:0031122 cytoplasmic microtubule organization and biogenesis 0 0 13163 GO:0031123 RNA 3'-end processing 0 0 13164 GO:0031124 mRNA 3'-end processing 0 0 13165 GO:0031125 rRNA 3'-end processing 0 0 13166 GO:0031126 snoRNA 3'-end processing 0 0 13167 GO:0031127 alpha(1,2)-fucosyltransferase activity 0 0 13168 GO:0031128 induction 0 0 13169 GO:0031129 inductive cell-cell signaling 0 0 13170 GO:0031130 creation of an inductive signal 0 0 13171 GO:0031131 reception of an inductive signal 0 0 13172 GO:0031132 serine 3-dehydrogenase 0 0 13173 GO:0031133 regulation of axon diameter 0 0 13174 GO:0031134 sister chromatid biorientation 0 0 13175 GO:0031135 negative regulation of conjugation 0 0 13176 GO:0031136 positive regulation of conjugation 0 0 13177 GO:0031137 regulation of conjugation with cellular fusion 0 0 13178 GO:0031138 negative regulation of conjugation with cellular fusion 0 0 13179 GO:0031139 positive regulation of conjugation with cellular fusion 0 0 13180 GO:0031140 induction of conjugation upon nutrient starvation 0 0 13181 GO:0031141 induction of conjugation upon carbon starvation 0 0 13182 GO:0031142 induction of conjugation upon nitrogen starvation 0 0 13183 GO:0031143 pseudopodium 0 0 13184 GO:0031144 proteasome localization 0 0 13185 GO:0031145 anaphase-promoting complex-dependent proteasomal ubiquitin-dependent protein catabolism 0 0 13186 GO:0031146 SCF-dependent proteasomal ubiquitin-dependent protein catabolism 0 0 13187 GO:0031147 1-(3,5-dichloro-2,6-dihydroxy-4-methoxyphenyl)hexan-1-one metabolism 0 0 13188 GO:0031148 1-(3,5-dichloro-2,6-dihydroxy-4-methoxyphenyl)hexan-1-one biosynthesis 0 0 13189 GO:0031149 stalk cell differentiation 0 0 13190 GO:0031150 stalk development (sensu Dictyosteliida) 0 0 13191 GO:0031151 histone lysine N-methyltransferase activity (H3-K79 specific) 0 0 13192 GO:0031152 aggregation during fruiting body development 0 0 13193 GO:0031153 slug development during fruiting body development 0 0 13194 GO:0031154 culmination during fruiting body development 0 0 13195 GO:0031155 regulation of fruiting body formation 0 0 13196 GO:0031156 regulation of fruiting body formation (sensu Dictyosteliida) 0 0 13197 GO:0031157 regulation of aggregate size 0 0 13198 GO:0031158 negative regulation of aggregate size 0 0 13199 GO:0031159 positive regulation of aggregate size 0 0 13200 GO:0031160 spore wall 0 0 13201 GO:0031161 phosphatidylinositol catabolism 0 0 13202 GO:0031162 sulfur incorporation into metallo-sulfur cluster 0 0 13203 GO:0031163 metallo-sulfur cluster assembly 0 0 13204 GO:0031164 contractile vacuolar membrane 0 0 13205 GO:0031165 integral to contractile vacuolar membrane 0 0 13206 GO:0031166 integral to vacuolar membrane 0 0 13207 GO:0031167 rRNA methylation 0 0 13208 GO:0031168 ferrichrome metabolism 0 0 13209 GO:0031169 ferrichrome biosynthesis 0 0 13210 GO:0031170 ferricrocin metabolism 0 0 13211 GO:0031171 ferricrocin biosynthesis 0 0 13212 GO:0031172 ornithine N5-monooxygenase activity 0 0 13213 GO:0031173 otolith mineralization (sensu Tetrapoda) 0 0 13214 GO:0031174 otolith mineralization (sensu Actinopterygii) 0 0 13215 GO:0031175 neurite development 0 0 13216 GO:0031176 endo-1,4-beta-xylanase activity 0 0 13217 GO:0031177 phosphopantetheine binding 0 0 13218 GO:0031178 siderophore biosynthesis, peptide formation 0 0 13219 GO:0031179 peptide modification 0 0 13220 GO:0031180 siderophore biosynthesis, peptide modification 0 0 13221 GO:0031181 achromobactin biosynthesis, peptide formation 0 0 13222 GO:0031182 achromobactin biosynthesis, peptide modification 0 0 13223 GO:0031183 chrysobactin biosynthesis, peptide formation 0 0 13224 GO:0031184 chrysobactin biosynthesis, peptide modification 0 0 13225 GO:0031185 ferricrocin biosynthesis, peptide formation 0 0 13226 GO:0031186 ferricrocin biosynthesis, peptide modification 0 0 13227 GO:0031187 pyochelin biosynthesis, peptide formation 0 0 13228 GO:0031188 pyochelin biosynthesis, peptide modification 0 0 13229 GO:0031189 siderophore biosynthesis from catechol, peptide formation 0 0 13230 GO:0031190 siderophore biosynthesis from catechol, peptide modification 0 0 13231 GO:0031191 enterobactin biosynthesis, peptide formation 0 0 13232 GO:0031192 enterobactin biosynthesis, peptide modification 0 0 13233 GO:0031193 rhizobactin 1021 biosynthesis, peptide formation 0 0 13234 GO:0031194 rhizobactin 1021 biosynthesis, peptide modification 0 0 13235 GO:0031195 vibriobactin biosynthesis, peptide formation 0 0 13236 GO:0031196 vibriobactin biosynthesis, peptide modification 0 0 13237 GO:0031197 siderophore biosynthesis from hydroxamic acid, peptide formation 0 0 13238 GO:0031198 siderophore biosynthesis from hydroxamic acid, peptide modification 0 0 13239 GO:0031199 ferrichrome biosynthesis, peptide formation 0 0 13240 GO:0031200 ferrichrome biosynthesis, peptide modification 0 0 13241 GO:0031201 SNARE complex 0 0 13242 GO:0031202 RNA splicing factor activity, transesterification mechanism 0 0 13243 GO:0031203 posttranslational protein targeting to membrane, docking 0 0 13244 GO:0031204 posttranslational protein targeting to membrane, translocation 0 0 13245 GO:0031205 Sec complex (sensu Eukaryota) 0 0 13246 GO:0031206 Sec complex-associated translocon complex 0 0 13247 GO:0031207 Sec62/Sec63 complex 0 0 13248 GO:0031208 POZ domain binding 0 0 13249 GO:0031209 SCAR complex 0 0 13250 GO:0031210 phosphatidylcholine binding 0 0 13251 GO:0031211 palmitoyltransferase complex 0 0 13252 GO:0031213 RSF complex 0 0 13253 GO:0031214 biomineral formation 0 0 13254 GO:0031215 shell calcification 0 0 13255 GO:0031216 neopullulanase activity 0 0 13256 GO:0031217 glucan 1,4-beta-glucosidase activity 0 0 13257 GO:0031218 arabinogalactan endo-1,4-beta-galactosidase activity 0 0 13258 GO:0031219 levanase activity 0 0 13259 GO:0031220 maltodextrin phosphorylase activity 0 0 13260 GO:0031221 arabinan metabolism 0 0 13261 GO:0031222 arabinan catabolism 0 0 13262 GO:0031223 auditory behavior 0 0 13263 GO:0031224 intrinsic to membrane 0 0 13264 GO:0031225 anchored to membrane 0 0 13265 GO:0031226 intrinsic to plasma membrane 0 0 13266 GO:0031227 intrinsic to endoplasmic reticulum membrane 0 0 13267 GO:0031228 intrinsic to Golgi membrane 0 0 13268 GO:0031229 intrinsic to nuclear inner membrane 0 0 13269 GO:0031230 intrinsic to outer membrane (sensu Proteobacteria) 0 0 13270 GO:0031231 intrinsic to peroxisomal membrane 0 0 13271 GO:0031232 extrinsic to external side of plasma membrane 0 0 13272 GO:0031233 intrinsic to external side of plasma membrane 0 0 13273 GO:0031234 extrinsic to internal side of plasma membrane 0 0 13274 GO:0031235 intrinsic to internal side of plasma membrane 0 0 13275 GO:0031236 extrinsic to external side of plasma membrane, in periplasmic space 0 0 13276 GO:0031237 intrinsic to external side of plasma membrane, in periplasmic space 0 0 13277 GO:0031238 extrinsic to external side of plasma membrane, in periplasmic space (sensu Proteobacteria) 0 0 13278 GO:0031239 intrinsic to external side of plasma membrane, in periplasmic space (sensu Proteobacteria) 0 0 13279 GO:0031240 external side of outer membrane 0 0 13280 GO:0031241 internal side of outer membrane 0 0 13281 GO:0031242 extrinsic to external side of outer membrane 0 0 13282 GO:0031243 intrinsic to external side of outer membrane 0 0 13283 GO:0031244 extrinsic to outer membrane (sensu Proteobacteria) 0 0 13284 GO:0031245 extrinsic to internal side of outer membrane 0 0 13285 GO:0031246 intrinsic to internal side of outer membrane 0 0 13286 GO:0031247 actin rod formation 0 0 13287 GO:0031248 protein acetyltransferase complex 0 0 13288 GO:0031249 denatured protein binding 0 0 13289 GO:0031250 anaerobic ribonucleoside-triphosphate reductase complex 0 0 13290 GO:0031251 PAN complex 0 0 13291 GO:0031252 leading edge 0 0 13292 GO:0031253 cell projection membrane 0 0 13293 GO:0031254 trailing edge 0 0 13294 GO:0031255 lateral part of motile cell 0 0 13295 GO:0031256 leading edge membrane 0 0 13296 GO:0031257 trailing edge membrane 0 0 13297 GO:0031258 lamellipodium membrane 0 0 13298 GO:0031259 uropod membrane 0 0 13299 GO:0031260 pseudopodium membrane 0 0 13300 GO:0031261 DNA replication preinitiation complex 0 0 13301 GO:0031262 Ndc80 complex 0 0 13302 GO:0031263 amine-transporting ATPase activity 0 0 13303 GO:0031264 death-inducing signaling complex 0 0 13304 GO:0031265 CD95 death-inducing signaling complex 0 0 13305 GO:0031266 TRAIL death-inducing signaling complex 0 0 13306 GO:0031267 small GTPase binding 0 0 13307 GO:0031268 pseudopodium organization and biogenesis 0 0 13308 GO:0031269 pseudopodium formation 0 0 13309 GO:0031270 pseudopodium retraction 0 0 13310 GO:0031271 lateral pseudopodium formation 0 0 13311 GO:0031272 regulation of pseudopodium formation 0 0 13312 GO:0031273 negative regulation of pseudopodium formation 0 0 13313 GO:0031274 positive regulation of pseudopodium formation 0 0 13314 GO:0031275 regulation of lateral pseudopodium formation 0 0 13315 GO:0031276 negative regulation of lateral pseudopodium formation 0 0 13316 GO:0031277 positive regulation of lateral pseudopodium formation 0 0 13317 GO:0031278 alpha-1,2-galactosyltransferase activity 0 0 13318 GO:0031279 regulation of cyclase activity 0 0 13319 GO:0031280 negative regulation of cyclase activity 0 0 13320 GO:0031281 positive regulation of cyclase activity 0 0 13321 GO:0031282 regulation of guanylate cyclase activity 0 0 13322 GO:0031283 negative regulation of guanylate cyclase activity 0 0 13323 GO:0031284 positive regulation of guanylate cyclase activity 0 0 13324 GO:0031285 regulation of stalk cell differentiation 0 0 13325 GO:0031286 negative regulation of stalk cell differentiation 0 0 13326 GO:0031287 positive regulation of stalk cell differentiation 0 0 13327 GO:0031288 fruiting body morphogenesis (sensu Dictyosteliida) 0 0 13328 GO:0031289 actin phosphorylation 0 0 13329 GO:0031290 retinal ganglion cell axon guidance 0 0 13330 GO:0031291 Ran protein signal transduction 0 0 13331 GO:0031292 gene conversion at mating-type locus, DNA double-strand break processing 0 0 13332 GO:0031293 membrane protein intracellular domain proteolysis 0 0 13333 GO:0031294 lymphocyte costimulation 0 0 13334 GO:0031295 T cell costimulation 0 0 13335 GO:0031296 B cell costimulation 0 0 13336 GO:0031297 collapsed replication fork processing 0 0 13337 GO:0031298 replication fork protection complex 0 0 13338 GO:0031299 taurine-pyruvate aminotransferase activity 0 0 13339 GO:0031300 intrinsic to organelle membrane 0 0 13340 GO:0031301 integral to organelle membrane 0 0 13341 GO:0031302 intrinsic to endosome membrane 0 0 13342 GO:0031303 integral to endosome membrane 0 0 13343 GO:0031304 intrinsic to mitochondrial inner membrane 0 0 13344 GO:0031305 integral to mitochondrial inner membrane 0 0 13345 GO:0031306 intrinsic to mitochondrial outer membrane 0 0 13346 GO:0031307 integral to mitochondrial outer membrane 0 0 13347 GO:0031308 intrinsic to nuclear outer membrane 0 0 13348 GO:0031309 integral to nuclear outer membrane 0 0 13349 GO:0031310 intrinsic to vacuolar membrane 0 0 13350 GO:0031311 intrinsic to contractile vacuolar membrane 0 0 13351 GO:0031312 extrinsic to organelle membrane 0 0 13352 GO:0031313 extrinsic to endosome membrane 0 0 13353 GO:0031314 extrinsic to mitochondrial inner membrane 0 0 13354 GO:0031315 extrinsic to mitochondrial outer membrane 0 0 13355 GO:0031316 extrinsic to nuclear outer membrane 0 0 13356 GO:0031317 tripartite ATP-independent periplasmic transporter complex 0 0 13357 GO:0031318 detection of folic acid 0 0 13358 GO:0031319 detection of cAMP 0 0 13359 GO:0031320 hexitol dehydrogenase activity 0 0 13360 GO:0031321 prospore formation 0 0 13361 GO:0031322 prospore-specific spindle pole body modification 0 0 13362 GO:0031323 regulation of cellular metabolism 0 0 13363 GO:0031324 negative regulation of cellular metabolism 0 0 13364 GO:0031325 positive regulation of cellular metabolism 0 0 13365 GO:0031326 regulation of cellular biosynthesis 0 0 13366 GO:0031327 negative regulation of cellular biosynthesis 0 0 13367 GO:0031328 positive regulation of cellular biosynthesis 0 0 13368 GO:0031329 regulation of cellular catabolism 0 0 13369 GO:0031330 negative regulation of cellular catabolism 0 0 13370 GO:0031331 positive regulation of cellular catabolism 0 0 13371 GO:0031332 RNAi effector complex 0 0 13372 GO:0031333 negative regulation of protein complex assembly 0 0 13373 GO:0031334 positive regulation of protein complex assembly 0 0 13374 GO:0031335 regulation of sulfur amino acid metabolism 0 0 13375 GO:0031336 negative regulation of sulfur amino acid metabolism 0 0 13376 GO:0031337 positive regulation of sulfur amino acid metabolism 0 0 13377 GO:0031338 regulation of vesicle fusion 0 0 13378 GO:0031339 negative regulation of vesicle fusion 0 0 13379 GO:0031340 positive regulation of vesicle fusion 0 0 13380 GO:0031341 regulation of cell killing 0 0 13381 GO:0031342 negative regulation of cell killing 0 0 13382 GO:0031343 positive regulation of cell killing 0 0 13383 GO:0031344 regulation of cell projection organization and biogenesis 0 0 13384 GO:0031345 negative regulation of cell projection organization and biogenesis 0 0 13385 GO:0031346 positive regulation of cell projection organization and biogenesis 0 0 13386 GO:0031347 regulation of defense response 0 0 13387 GO:0031348 negative regulation of defense response 0 0 13388 GO:0031349 positive regulation of defense response 0 0 13389 GO:0031350 intrinsic to plastid membrane 0 0 13390 GO:0031351 integral to plastid membrane 0 0 13391 GO:0031352 intrinsic to plastid inner membrane 0 0 13392 GO:0031353 integral to plastid inner membrane 0 0 13393 GO:0031354 intrinsic to plastid outer membrane 0 0 13394 GO:0031355 integral to plastid outer membrane 0 0 13395 GO:0031356 intrinsic to chloroplast inner membrane 0 0 13396 GO:0031357 integral to chloroplast inner membrane 0 0 13397 GO:0031358 intrinsic to chloroplast outer membrane 0 0 13398 GO:0031359 integral to chloroplast outer membrane 0 0 13399 GO:0031360 intrinsic to thylakoid membrane 0 0 13400 GO:0031361 integral to thylakoid membrane 0 0 13401 GO:0031362 anchored to external side of plasma membrane 0 0 13402 GO:0031363 N-terminal protein amino acid deamination 0 0 13403 GO:0031364 N-terminal protein amino acid deamination, from side chain 0 0 13404 GO:0031365 N-terminal protein amino acid modification 0 0 13405 GO:0031366 N-terminal peptidyl-arginine deamination 0 0 13406 GO:0031367 N-terminal peptidyl-glutamine deamination 0 0 13407 GO:0031368 Pro-X metallocarboxypeptidase activity 0 0 13408 GO:0031369 translation initiation factor binding 0 0 13409 GO:0031370 eukaryotic initiation factor 4G binding 0 0 13410 GO:0031371 ubiquitin conjugating enzyme complex 0 0 13411 GO:0031372 UBC13-MMS2 complex 0 0 13412 GO:0031373 cytosolic fatty acid synthase complex 0 0 13413 GO:0031374 cytosolic type I fatty acid synthase complex 0 0 13414 GO:0031375 type II fatty acid synthase complex 0 0 13415 GO:0031376 cytosolic type II fatty acid synthase complex 0 0 13416 GO:0031377 mitochondrial type II fatty acid synthase complex 0 0 13417 GO:0031378 plastid type II fatty acid synthase complex 0 0 13418 GO:0031379 RNA-directed RNA polymerase complex 0 0 13419 GO:0031380 nuclear RNA-directed RNA polymerase complex 0 0 13420 GO:0031381 viral RNA-directed RNA polymerase complex 0 0 13421 GO:0031382 mating projection biogenesis 0 0 13422 GO:0031383 regulation of mating projection biogenesis 0 0 13423 GO:0031384 regulation of initiation of mating projection growth 0 0 13424 GO:0031385 regulation of termination of mating projection growth 0 0 13425 GO:0031386 protein tag 0 0 13426 GO:0031387 MPF complex 0 0 13427 GO:0031388 organic acid phosphorylation 0 0 13428 GO:0031389 Rad17 RFC-like complex 0 0 13429 GO:0031390 Ctf18 RFC-like complex 0 0 13430 GO:0031391 Elg1 RFC-like complex 0 0 13431 GO:0031392 regulation of prostaglandin biosynthesis 0 0 13432 GO:0031393 negative regulation of prostaglandin biosynthesis 0 0 13433 GO:0031394 positive regulation of prostaglandin biosynthesis 0 0 13434 GO:0031395 bursicon neuropeptide hormone complex 0 0 13435 GO:0031396 regulation of protein ubiquitination 0 0 13436 GO:0031397 negative regulation of protein ubiquitination 0 0 13437 GO:0031398 positive regulation of protein ubiquitination 0 0 13438 GO:0031399 regulation of protein modification 0 0 13439 GO:0031400 negative regulation of protein modification 0 0 13440 GO:0031401 positive regulation of protein modification 0 0 13441 GO:0031402 sodium ion binding 0 0 13442 GO:0031403 lithium ion binding 0 0 13443 GO:0031404 chloride ion binding 0 0 13444 GO:0031405 lipoic acid binding 0 0 13445 GO:0031406 carboxylic acid binding 0 0 13446 GO:0031407 oxylipin metabolism 0 0 13447 GO:0031408 oxylipin biosynthesis 0 0 13448 GO:0031409 pigment binding 0 0 13449 GO:0031410 cytoplasmic vesicle 0 0 13450 GO:0031411 gas vesicle 0 0 13451 GO:0031412 gas vesicle organization and biogenesis 0 0 13452 GO:0031413 buoyancy regulation 0 0 13453 GO:0031414 N-terminal protein acetyltransferase complex 0 0 13454 GO:0031415 NatA complex 0 0 13455 GO:0031416 NatB complex 0 0 13456 GO:0031417 NatC complex 0 0 13457 GO:0031418 L-ascorbic acid binding 0 0 13458 GO:0031419 cobalamin binding 0 0 13459 GO:0031420 alkali metal ion binding 0 0 13460 GO:0031421 invertasome 0 0 13461 GO:0031422 RecQ helicase-Topo III complex 0 0 13462 GO:0031423 hexon binding 0 0 13463 GO:0031424 keratinization 0 0 13464 GO:0031425 chloroplast RNA processing 0 0 13465 GO:0031426 polycistronic mRNA processing 0 0 13466 GO:0031427 response to methotrexate 0 0 13467 GO:0031428 box C/D snoRNP complex 0 0 13468 GO:0031429 box H/ACA snoRNP complex 0 0 13469 GO:0031430 M line 0 0 13470 GO:0031431 Dbf4-dependent protein kinase complex 0 0 13471 GO:0031432 titin binding 0 0 13472 GO:0031433 telethonin binding 0 0 13473 GO:0031434 mitogen-activated protein kinase kinase binding 0 0 13474 GO:0031435 mitogen-activated protein kinase kinase kinase binding 0 0 13475 GO:0031436 BRCA1-BARD1 complex 0 0 13476 GO:0031437 regulation of mRNA cleavage 0 0 13477 GO:0031438 negative regulation of mRNA cleavage 0 0 13478 GO:0031439 positive regulation of mRNA cleavage 0 0 13479 GO:0031440 regulation of mRNA 3'-end processing 0 0 13480 GO:0031441 negative regulation of mRNA 3'-end processing 0 0 13481 GO:0031442 positive regulation of mRNA 3'-end processing 0 0 13482 GO:0031443 striated fast muscle contraction 0 0 13483 GO:0031444 striated slow muscle contraction 0 0 13484 GO:0031445 striated mixed muscle contraction 0 0 13485 GO:0031446 regulation of striated fast muscle contraction 0 0 13486 GO:0031447 negative regulation of striated fast muscle contraction 0 0 13487 GO:0031448 positive regulation of striated fast muscle contraction 0 0 13488 GO:0031449 regulation of striated slow muscle contraction 0 0 13489 GO:0031450 negative regulation of striated slow muscle contraction 0 0 13490 GO:0031451 positive regulation of striated slow muscle contraction 0 0 13491 GO:0031452 regulation of striated mixed muscle contraction 0 0 13492 GO:0031453 negative regulation of striated mixed muscle contraction 0 0 13493 GO:0031454 positive regulation of striated mixed muscle contraction 0 0 13494 GO:0031455 glycine betaine metabolism 0 0 13495 GO:0031456 glycine betaine biosynthesis 0 0 13496 GO:0031457 glycine betaine catabolism 0 0 13497 GO:0031458 betaine-transporting ATPase activity 0 0 13498 GO:0031459 glycine betaine-transporting ATPase activity 0 0 13499 GO:0031460 glycine betaine transport 0 0 13500 GO:0031461 cullin-RING ubiquitin ligase complex 0 0 13501 GO:0031462 Cul2-RING ubiquitin ligase complex 0 0 13502 GO:0031463 Cul3-RING ubiquitin ligase complex 0 0 13503 GO:0031464 Cul4A-RING ubiquitin ligase complex 0 0 13504 GO:0031465 Cul4B-RING ubiquitin ligase complex 0 0 13505 GO:0031466 Cul5-RING ubiquitin ligase complex 0 0 13506 GO:0031467 Cul7-RING ubiquitin ligase complex 0 0 13507 GO:0031468 nuclear envelope reassembly 0 0 13508 GO:0031469 polyhedral organelle 0 0 13509 GO:0031470 carboxysome 0 0 13510 GO:0031471 ethanolamine degradation polyhedral organelle 0 0 13511 GO:0031472 propanediol degradation polyhedral organelle 0 0 13512 GO:0031473 myosin III binding 0 0 13513 GO:0031474 myosin IV 0 0 13514 GO:0031475 myosin V 0 0 13515 GO:0031476 myosin VI 0 0 13516 GO:0031477 myosin VII 0 0 13517 GO:0031478 myosin VIII 0 0 13518 GO:0031479 myosin IX 0 0 13519 GO:0031480 myosin X 0 0 13520 GO:0031481 myosin XI 0 0 13521 GO:0031482 myosin XII 0 0 13522 GO:0031483 myosin XIII 0 0 13523 GO:0031484 myosin XIV 0 0 13524 GO:0031485 myosin XV 0 0 13525 GO:0031486 myosin XVI 0 0 13526 GO:0031487 myosin XVII 0 0 13527 GO:0031488 myosin XVIII 0 0 13528 GO:0031489 myosin V binding 0 0 13529 GO:0031490 chromatin DNA binding 0 0 13530 GO:0031491 nucleosome binding 0 0 13531 GO:0031492 nucleosomal DNA binding 0 0 13532 GO:0031493 nucleosomal histone binding 0 0 13533 GO:0031494 regulation of mating type switching 0 0 13534 GO:0031495 negative regulation of mating type switching 0 0 13535 GO:0031496 positive regulation of mating type switching 0 0 13536 GO:0031497 chromatin assembly 0 0 13537 GO:0031498 chromatin disassembly 0 0 13538 GO:0031499 TRAMP complex 0 0 13539 GO:0031500 Tea1 cell-end complex 0 0 13540 GO:0031501 mannosyltransferase complex 0 0 13541 GO:0031502 dolichyl-phosphate-mannose-protein mannosyltransferase complex 0 0 13542 GO:0031503 protein complex localization 0 0 13543 GO:0031504 cell wall organization and biogenesis (sensu Bacteria) 0 0 13544 GO:0031505 cell wall organization and biogenesis (sensu Fungi) 0 0 13545 GO:0031506 cell wall glycoprotein biosynthesis 0 0 13546 GO:0031507 heterochromatin formation 0 0 13547 GO:0031508 centric heterochromatin formation 0 0 13548 GO:0031509 telomeric heterochromatin formation 0 0 13549 GO:0031510 SUMO activating enzyme complex 0 0 13550 GO:0031511 Mis6-Sim4 complex 0 0 13551 GO:0031512 motile primary cilium 0 0 13552 GO:0031513 nonmotile primary cilium 0 0 13553 GO:0031514 motile secondary cilium 0 0 13554 GO:0031515 tRNA (m1A) methyltransferase complex 0 0 13555 GO:0031516 far-red light photoreceptor activity 0 0 13556 GO:0031517 red light photoreceptor activity 0 0 13557 GO:0031518 CBF3 complex 0 0 13558 GO:0031519 PcG protein complex 0 0 13559 GO:0031520 plasma membrane of cell tip 0 0 13560 GO:0031521 spitzenkorper 0 0 13561 GO:0031522 Sec complex (sensu Bacteria) 0 0 13562 GO:0031523 Myb complex 0 0 13563 GO:0031524 menthol metabolism 0 0 13564 GO:0031525 menthol biosynthesis 0 0 13565 GO:0031526 brush border membrane 0 0 13566 GO:0031527 filopodium membrane 0 0 13567 GO:0031528 microvillus membrane 0 0 13568 GO:0031529 ruffle organization and biogenesis 0 0 13569 GO:0031530 gonadotropin-releasing hormone receptor binding 0 0 13570 GO:0031531 thyrotropin-releasing hormone receptor binding 0 0 13571 GO:0031532 actin cytoskeleton reorganization 0 0 13572 GO:0031533 mRNA capping enzyme complex 0 0 13573 GO:0031534 minus-end directed microtubule sliding 0 0 13574 GO:0031535 plus-end directed microtubule sliding 0 0 13575 GO:0031536 positive regulation of exit from mitosis 0 0 13576 GO:0031537 regulation of anthocyanin metabolism 0 0 13577 GO:0031538 negative regulation of anthocyanin metabolism 0 0 13578 GO:0031539 positive regulation of anthocyanin metabolism 0 0 13579 GO:0031540 regulation of anthocyanin biosynthesis 0 0 13580 GO:0031541 negative regulation of anthocyanin biosynthesis 0 0 13581 GO:0031542 positive regulation of anthocyanin biosynthesis 0 0 13582 GO:0031543 peptidyl-proline dioxygenase activity 0 0 13583 GO:0031544 peptidyl-proline 3-dioxygenase activity 0 0 13584 GO:0031545 peptidyl-proline 4-dioxygenase activity 0 0 13585 GO:0031546 brain-derived neurotrophic factor receptor binding 0 0 13586 GO:0031547 brain-derived neurotrophic factor receptor signaling pathway 0 0 13587 GO:0031548 regulation of brain-derived neurotrophic factor receptor signaling pathway 0 0 13588 GO:0031549 negative regulation of brain-derived neurotrophic factor receptor signaling pathway 0 0 13589 GO:0031550 positive regulation of brain-derived neurotrophic factor receptor signaling pathway 0 0 13590 GO:0031551 regulation of brain-derived neurotrophic factor receptor activity 0 0 13591 GO:0031552 negative regulation of brain-derived neurotrophic factor receptor activity 0 0 13592 GO:0031553 positive regulation of brain-derived neurotrophic factor receptor activity 0 0 13593 GO:0031554 regulation of transcription termination 0 0 13594 GO:0031555 transcriptional attenuation 0 0 13595 GO:0031556 ribosome-mediated transcriptional attenuation 0 0 13596 GO:0031557 induction of programmed cell death in response to chemical stimulus 0 0 13597 GO:0031558 induction of apoptosis in response to chemical stimulus 0 0 13598 GO:0031559 oxidosqualene cyclase activity 0 0 13599 GO:0031560 bud neck polarisome 0 0 13600 GO:0031561 bud tip polarisome 0 0 13601 GO:0031562 hyphal tip polarisome 0 0 13602 GO:0031563 mating projection tip polarisome 0 0 13603 GO:0031564 transcription antitermination 0 0 13604 GO:0031565 cytokinesis checkpoint 0 0 13605 GO:0031566 cytokinesis, contractile ring maintenance 0 0 13606 GO:0031567 cell size control checkpoint 0 0 13607 GO:0031568 G1/S transition size control checkpoint 0 0 13608 GO:0031569 G2/M transition size control checkpoint 0 0 13609 GO:0031570 DNA integrity checkpoint 0 0 13610 GO:0031571 G1 DNA damage checkpoint 0 0 13611 GO:0031572 G2/M transition DNA damage checkpoint 0 0 13612 GO:0031573 intra-S DNA damage checkpoint 0 0 13613 GO:0031574 S-M checkpoint 0 0 13614 GO:0031575 G1/S transition checkpoint 0 0 13615 GO:0031576 G2/M transition checkpoint 0 0 13616 GO:0031577 spindle checkpoint 0 0 13617 GO:0031578 spindle orientation checkpoint 0 0 13618 GO:0031579 lipid raft organization and biogenesis 0 0 13619 GO:0031580 lipid raft distribution 0 0 13620 GO:0031581 hemidesmosome assembly 0 0 13621 GO:0031582 replication fork blocking at rDNA repeats 0 0 13622 GO:0031583 G-protein signaling, phospholipase D activating pathway 0 0 13623 GO:0031584 phospholipase D activation 0 0 13624 GO:0031585 regulation of IP3 receptor activity 0 0 13625 GO:0031586 negative regulation of IP3 receptor activity 0 0 13626 GO:0031587 positive regulation of IP3 receptor activity 0 0 13627 GO:0031588 AMP-activated protein kinase complex 0 0 13628 GO:0031589 cell-substrate adhesion 0 0 13629 GO:0031590 wybutosine metabolism 0 0 13630 GO:0031591 wybutosine biosynthesis 0 0 13631 GO:0031592 centrosomal corona 0 0 13632 GO:0031593 polyubiquitin binding 0 0 13633 GO:0031594 neuromuscular junction 0 0 13634 GO:0031595 nuclear proteasome complex 0 0 13635 GO:0031596 ER proteasome complex 0 0 13636 GO:0031597 cytosolic proteasome complex (sensu Eukaryota) 0 0 13637 GO:0031598 nuclear proteasome regulatory particle 0 0 13638 GO:0031599 ER proteasome regulatory particle 0 0 13639 GO:0031600 cytosolic proteasome regulatory particle (sensu Eukaryota) 0 0 13640 GO:0031601 nuclear proteasome core complex 0 0 13641 GO:0031602 ER proteasome core complex 0 0 13642 GO:0031603 cytosolic proteasome core complex (sensu Eukaryota) 0 0 13643 GO:0031604 nuclear proteasome core complex, alpha-subunit complex 0 0 13644 GO:0031605 ER proteasome core complex, alpha-subunit complex 0 0 13645 GO:0031606 cytosolic proteasome core complex, alpha-subunit complex (sensu Eukaryota) 0 0 13646 GO:0031607 nuclear proteasome core complex, beta-subunit complex 0 0 13647 GO:0031608 ER proteasome core complex, beta-subunit complex 0 0 13648 GO:0031609 cytosolic proteasome core complex, beta-subunit complex (sensu Eukaryota) 0 0 13649 GO:0031610 nuclear proteasome regulatory particle, base subcomplex 0 0 13650 GO:0031611 ER proteasome regulatory particle, base subcomplex 0 0 13651 GO:0031612 cytosolic proteasome regulatory particle, base subcomplex (sensu Eukaryota) 0 0 13652 GO:0031613 nuclear proteasome regulatory particle, lid subcomplex 0 0 13653 GO:0031614 ER proteasome regulatory particle, lid subcomplex 0 0 13654 GO:0031615 cytosolic proteasome regulatory particle, lid subcomplex (sensu Eukaryota) 0 0 13655 GO:0031616 spindle pole centrosome 0 0 13656 GO:0031617 NMS complex 0 0 13657 GO:0031618 nuclear centric heterochromatin 0 0 13658 GO:0031619 homologous chromosome orientation during meiosis 0 0 13659 GO:0031620 regulation of fever 0 0 13660 GO:0031621 negative regulation of fever 0 0 13661 GO:0031622 positive regulation of fever 0 0 13662 GO:0031623 receptor internalization 0 0 13663 GO:0031624 ubiquitin conjugating enzyme binding 0 0 13664 GO:0031625 ubiquitin protein ligase binding 0 0 13665 GO:0031626 beta-endorphin binding 0 0 13666 GO:0031627 telomeric loop formation 0 0 13667 GO:0031628 opioid receptor binding 0 0 13668 GO:0031629 synaptic vesicle fusion to presynaptic membrane 0 0 13669 GO:0031630 regulation of synaptic vesicle fusion to presynaptic membrane 0 0 13670 GO:0031631 negative regulation of synaptic vesicle fusion to presynaptic membrane 0 0 13671 GO:0031632 positive regulation of synaptic vesicle fusion to presynaptic membrane 0 0 13672 GO:0031633 xanthophore 0 0 13673 GO:0031634 replication fork barrier binding 0 0 13674 GO:0031635 opioid receptor, adenylate cyclase inhibiting pathway 0 0 13675 GO:0031636 adrenocorticotropin-releasing hormone receptor activity 0 0 13676 GO:0031637 regulation of neuronal synaptic plasticity in response to neurotrophin 0 0 13677 GO:0031638 zymogen activation 0 0 13678 GO:0031639 plasminogen activation 0 0 13679 GO:0031640 killing of cells of another organism 0 0 13680 GO:0031641 regulation of myelination 0 0 13681 GO:0031642 negative regulation of myelination 0 0 13682 GO:0031643 positive regulation of myelination 0 0 13683 GO:0031644 regulation of neurophysiological process 0 0 13684 GO:0031645 negative regulation of neurophysiological process 0 0 13685 GO:0031646 positive regulation of neurophysiological process 0 0 13686 GO:0031647 regulation of protein stability 0 0 13687 GO:0031648 protein destabilization 0 0 13688 GO:0031649 heat generation 0 0 13689 GO:0031650 regulation of heat generation 0 0 13690 GO:0031651 negative regulation of heat generation 0 0 13691 GO:0031652 positive regulation of heat generation 0 0 13692 GO:0031653 heat dissipation 0 0 13693 GO:0031654 regulation of heat dissipation 0 0 13694 GO:0031655 negative regulation of heat dissipation 0 0 13695 GO:0031656 positive regulation of heat dissipation 0 0 13696 GO:0031657 G1/S-specific regulation of cyclin dependent protein kinase activity 0 0 13697 GO:0031658 G1/S-specific negative regulation of cyclin dependent protein kinase activity 0 0 13698 GO:0031659 G1/S-specific positive regulation of cyclin dependent protein kinase activity 0 0 13699 GO:0031660 G2/M-specific regulation of cyclin dependent protein kinase activity 0 0 13700 GO:0031661 G2/M-specific negative regulation of cyclin dependent protein kinase activity 0 0 13701 GO:0031662 G2/M-specific positive regulation of cyclin dependent protein kinase activity 0 0 13702 GO:0031663 lipopolysaccharide-mediated signaling pathway 0 0 13703 GO:0031664 regulation of lipopolysaccharide-mediated signaling pathway 0 0 13704 GO:0031665 negative regulation of lipopolysaccharide-mediated signaling pathway 0 0 13705 GO:0031666 positive regulation of lipopolysaccharide-mediated signaling pathway 0 0 13706 GO:0031667 response to nutrient levels 0 0 13707 GO:0031668 cellular response to extracellular stimulus 0 0 13708 GO:0031669 cellular response to nutrient levels 0 0 13709 GO:0031670 cellular response to nutrient 0 0 13710 GO:0031671 primary cell septum biosynthesis 0 0 13711 GO:0031672 A band 0 0 13712 GO:0031673 H zone 0 0 13713 GO:0031674 I band 0 0 13714 GO:0031675 NADH dehydrogenase complex (plastoquinone) 0 0 13715 GO:0031676 thylakoid membrane (sensu Cyanobacteria) 0 0 13716 GO:0031677 plastid NADH dehydrogenase complex (plastoquinone) 0 0 13717 GO:0031678 NADH dehydrogenase complex (plastoquinone) (sensu Cyanobacteria) 0 0 13718 GO:0031679 NADH dehydrogenase (plastoquinone) activity 0 0 13719 GO:0031680 G-protein beta/gamma-subunit complex 0 0 13720 GO:0031681 G-protein beta-subunit binding 0 0 13721 GO:0031682 G-protein gamma-subunit binding 0 0 13722 GO:0031683 G-protein beta/gamma-subunit binding 0 0 13723 GO:0031684 heterotrimeric G-protein complex cycle 0 0 13724 GO:0031685 adenosine receptor binding 0 0 13725 GO:0031686 A1 adenosine receptor binding 0 0 13726 GO:0031687 A2A adenosine receptor binding 0 0 13727 GO:0031688 A2B adenosine receptor binding 0 0 13728 GO:0031689 A3 adenosine receptor binding 0 0 13729 GO:0031690 adrenergic receptor binding 0 0 13730 GO:0031691 alpha-1A adrenergic receptor binding 0 0 13731 GO:0031692 alpha-1B adrenergic receptor binding 0 0 13732 GO:0031693 alpha-1D adrenergic receptor binding 0 0 13733 GO:0031694 alpha-2A adrenergic receptor binding 0 0 13734 GO:0031695 alpha-2B adrenergic receptor binding 0 0 13735 GO:0031696 alpha-2C adrenergic receptor binding 0 0 13736 GO:0031697 beta-1 adrenergic receptor binding 0 0 13737 GO:0031698 beta-2 adrenergic receptor binding 0 0 13738 GO:0031699 beta-3 adrenergic receptor binding 0 0 13739 GO:0031700 adrenomedullin receptor binding 0 0 13740 GO:0031701 angiotensin receptor binding 0 0 13741 GO:0031702 type 1 angiotensin receptor binding 0 0 13742 GO:0031703 type 2 angiotensin receptor binding 0 0 13743 GO:0031704 apelin receptor binding 0 0 13744 GO:0031705 bombesin receptor binding 0 0 13745 GO:0031706 subtype 3 bombesin receptor binding 0 0 13746 GO:0031707 endothelin A receptor binding 0 0 13747 GO:0031708 endothelin B receptor binding 0 0 13748 GO:0031709 gastrin-releasing peptide receptor binding 0 0 13749 GO:0031710 neuromedin B receptor binding 0 0 13750 GO:0031711 bradykinin receptor binding 0 0 13751 GO:0031712 B1 bradykinin receptor binding 0 0 13752 GO:0031713 B2 bradykinin receptor binding 0 0 13753 GO:0031714 C5a anaphylatoxin chemotactic receptor binding 0 0 13754 GO:0031715 C5L2 anaphylatoxin chemotactic receptor binding 0 0 13755 GO:0031716 calcitonin receptor binding 0 0 13756 GO:0031717 cannabinoid receptor binding 0 0 13757 GO:0031718 type 1 cannabinoid receptor binding 0 0 13758 GO:0031719 type 2 cannabinoid receptor binding 0 0 13759 GO:0031720 haptoglobin binding 0 0 13760 GO:0031721 hemoglobin alpha binding 0 0 13761 GO:0031722 hemoglobin beta binding 0 0 13762 GO:0031723 CXCR4 chemokine receptor binding 0 0 13763 GO:0031724 CXCR5 chemokine receptor binding 0 0 13764 GO:0031725 CXCR6 chemokine receptor binding 0 0 13765 GO:0031726 CCR1 chemokine receptor binding 0 0 13766 GO:0031727 CCR2 chemokine receptor binding 0 0 13767 GO:0031728 CCR3 chemokine receptor binding 0 0 13768 GO:0031729 CCR4 chemokine receptor binding 0 0 13769 GO:0031730 CCR5 chemokine receptor binding 0 0 13770 GO:0031731 CCR6 chemokine receptor binding 0 0 13771 GO:0031732 CCR7 chemokine receptor binding 0 0 13772 GO:0031733 CCR8 chemokine receptor binding 0 0 13773 GO:0031734 CCR9 chemokine receptor binding 0 0 13774 GO:0031735 CCR10 chemokine receptor binding 0 0 13775 GO:0031736 CCR11 chemokine receptor binding 0 0 13776 GO:0031737 CX3C chemokine receptor binding 0 0 13777 GO:0031738 XCR1 chemokine receptor binding 0 0 13778 GO:0031739 cholecystokinin receptor binding 0 0 13779 GO:0031740 type A cholecystokinin receptor binding 0 0 13780 GO:0031741 type B gastrin/cholecystokinin receptor binding 0 0 13781 GO:0031742 corticotropin releasing factor receptor binding 0 0 13782 GO:0031743 type 1 corticotropin releasing factor receptor binding 0 0 13783 GO:0031744 type 2 corticotropin releasing factor receptor binding 0 0 13784 GO:0031745 cysteinyl leukotriene receptor binding 0 0 13785 GO:0031746 type 1 cysteinyl leukotriene receptor binding 0 0 13786 GO:0031747 type 2 cysteinyl leukotriene receptor binding 0 0 13787 GO:0031748 D1 dopamine receptor binding 0 0 13788 GO:0031749 D2 dopamine receptor binding 0 0 13789 GO:0031750 D3 dopamine receptor binding 0 0 13790 GO:0031751 D4 dopamine receptor binding 0 0 13791 GO:0031752 D5 dopamine receptor binding 0 0 13792 GO:0031753 endothelial differentiation G-protein coupled receptor binding 0 0 13793 GO:0031754 Edg-1 sphingosine 1-phosphate receptor binding 0 0 13794 GO:0031755 Edg-2 lysophosphatidic acid receptor binding 0 0 13795 GO:0031756 Edg-3 sphingosine 1-phosphate receptor binding 0 0 13796 GO:0031757 Edg-4 lysophosphatidic acid receptor binding 0 0 13797 GO:0031758 Edg-5 sphingosine 1-phosphate receptor binding 0 0 13798 GO:0031759 Edg-6 sphingosine 1-phosphate receptor binding 0 0 13799 GO:0031760 Edg-7 lysophosphatidic acid receptor binding 0 0 13800 GO:0031761 fMet-Leu-Phe receptor binding 0 0 13801 GO:0031762 follicle stimulating hormone receptor binding 0 0 13802 GO:0031763 galanin receptor binding 0 0 13803 GO:0031764 type 1 galanin receptor binding 0 0 13804 GO:0031765 type 2 galanin receptor binding 0 0 13805 GO:0031766 type 3 galanin receptor binding 0 0 13806 GO:0031767 gastric inhibitory polypeptide receptor binding 0 0 13807 GO:0031768 ghrelin receptor binding 0 0 13808 GO:0031769 glucagon receptor binding 0 0 13809 GO:0031770 growth hormone-releasing hormone receptor binding 0 0 13810 GO:0031771 type 1 hypocretin receptor binding 0 0 13811 GO:0031772 type 2 hypocretin receptor binding 0 0 13812 GO:0031773 kisspeptin receptor binding 0 0 13813 GO:0031774 leukotriene receptor binding 0 0 13814 GO:0031775 lutropin-choriogonadotropic hormone receptor binding 0 0 13815 GO:0031776 melanin-concentrating hormone receptor binding 0 0 13816 GO:0031777 type 1 melanin-concentrating hormone receptor binding 0 0 13817 GO:0031778 type 2 melanin-concentrating hormone receptor binding 0 0 13818 GO:0031779 melanocortin receptor binding 0 0 13819 GO:0031780 adrenocorticotropic hormone receptor binding 0 0 13820 GO:0031781 type 3 melanocortin receptor binding 0 0 13821 GO:0031782 type 4 melanocortin receptor binding 0 0 13822 GO:0031783 type 5 melanocortin receptor binding 0 0 13823 GO:0031784 melatonin receptor binding 0 0 13824 GO:0031785 type 1A melatonin receptor binding 0 0 13825 GO:0031786 type 1B melatonin receptor binding 0 0 13826 GO:0031787 H9 melatonin receptor binding 0 0 13827 GO:0031788 motilin receptor binding 0 0 13828 GO:0031789 muscarinic acetylcholine receptor binding 0 0 13829 GO:0031790 M1 muscarinic acetylcholine receptor binding 0 0 13830 GO:0031791 M2 muscarinic acetylcholine receptor binding 0 0 13831 GO:0031792 M3 muscarinic acetylcholine receptor binding 0 0 13832 GO:0031793 M4 muscarinic acetylcholine receptor binding 0 0 13833 GO:0031794 M5 muscarinic acetylcholine receptor binding 0 0 13834 GO:0031795 metabotropic GABA receptor binding 0 0 13835 GO:0031796 type 1 metabotropic GABA receptor binding 0 0 13836 GO:0031797 type 2 metabotropic GABA receptor binding 0 0 13837 GO:0031798 type 1 metabotropic glutamate receptor binding 0 0 13838 GO:0031799 type 2 metabotropic glutamate receptor binding 0 0 13839 GO:0031800 type 3 metabotropic glutamate receptor binding 0 0 13840 GO:0031801 type 4 metabotropic glutamate receptor binding 0 0 13841 GO:0031802 type 5 metabotropic glutamate receptor binding 0 0 13842 GO:0031803 type 6 metabotropic glutamate receptor binding 0 0 13843 GO:0031804 type 7 metabotropic glutamate receptor binding 0 0 13844 GO:0031805 type 8 metabotropic glutamate receptor binding 0 0 13845 GO:0031806 metabotropic histamine receptor binding 0 0 13846 GO:0031807 H1 histamine receptor binding 0 0 13847 GO:0031808 H2 histamine receptor binding 0 0 13848 GO:0031809 H3 histamine receptor binding 0 0 13849 GO:0031810 H4 histamine receptor binding 0 0 16384 GO:0045094 interleukin-18 beta subunit binding 0 0 16385 GO:0045095 keratin filament 0 0 16386 GO:0045096 acidic keratin (obsolete GO:0045096) 1 0 16387 GO:0045097 basic/neutral keratin (obsolete GO:0045097) 1 0 16388 GO:0045098 type III intermediate filament 0 0 16389 GO:0045099 vimentin (obsolete GO:0045099) 1 0 16390 GO:0045100 desmin (obsolete GO:0045100) 1 0 16391 GO:0045101 glial fibrillary acidic protein (obsolete GO:0045101) 1 0 16392 GO:0045102 peripherin (obsolete GO:0045102) 1 0 16393 GO:0045103 intermediate filament-based process 0 0 16394 GO:0045104 intermediate filament cytoskeleton organization and biogenesis 0 0 16395 GO:0045105 intermediate filament polymerization and/or depolymerization 0 0 16396 GO:0045106 intermediate filament depolymerization 0 0 16397 GO:0045107 intermediate filament polymerization 0 0 16398 GO:0045108 regulation of intermediate filament polymerization and/or depolymerization 0 0 16399 GO:0045109 intermediate filament organization 0 0 16400 GO:0045110 intermediate filament bundle assembly 0 0 16401 GO:0045111 intermediate filament cytoskeleton 0 0 16402 GO:0045112 integrin biosynthesis 0 0 16403 GO:0045113 regulation of integrin biosynthesis 0 0 16404 GO:0045114 beta 2 integrin biosynthesis 0 0 16405 GO:0045115 regulation of beta 2 integrin biosynthesis 0 0 16406 GO:0045116 protein neddylation 0 0 16407 GO:0045117 azole transport 0 0 16408 GO:0045118 azole transporter activity 0 0 16409 GO:0045119 azole:hydrogen antiporter activity 0 0 16410 GO:0045120 pronucleus 0 0 16411 GO:0045121 lipid raft 0 0 16412 GO:0045122 aflatoxin biosynthesis 0 0 16413 GO:0045123 cellular extravasation 0 0 16414 GO:0045124 regulation of bone resorption 0 0 16415 GO:0045125 bioactive lipid receptor activity 0 0 16416 GO:0045127 N-acetylglucosamine kinase activity 0 0 16417 GO:0045128 negative regulation of meiotic recombination 0 0 16418 GO:0045129 NAD-independent histone deacetylase activity 0 0 16419 GO:0045130 keratan sulfotransferase activity 0 0 16420 GO:0045131 pre-mRNA branch point binding 0 0 16421 GO:0045132 meiotic chromosome segregation 0 0 16422 GO:0045133 2,3-dihydroxybenzoate 3,4-dioxygenase activity 0 0 16423 GO:0045134 uridine-diphosphatase activity 0 0 16424 GO:0045135 poly(beta-D-mannuronate) lyase activity 0 0 16425 GO:0045136 development of secondary sexual characteristics 0 0 16426 GO:0045137 development of primary sexual characteristics 0 0 16427 GO:0045138 tail tip morphogenesis (sensu Nematoda) 0 0 16428 GO:0045139 copper sensitivity/resistance (obsolete GO:0045139) 1 0 16429 GO:0045140 inositol phosphoceramide synthase activity 0 0 16430 GO:0045141 telomere clustering 0 0 16431 GO:0045142 triplex DNA binding 0 0 16432 GO:0045143 homologous chromosome segregation 0 0 16433 GO:0045144 meiotic sister chromatid segregation 0 0 16434 GO:0045145 single-stranded DNA specific 5'-3' exodeoxyribonuclease activity 0 0 16435 GO:0045146 initiation of acetate catabolism by acetate 0 0 16436 GO:0045147 regulation of initiation of acetate catabolism by acetate 0 0 16437 GO:0045148 tripeptide aminopeptidase activity 0 0 16438 GO:0045149 acetoin metabolism 0 0 16439 GO:0045150 acetoin catabolism 0 0 16440 GO:0045151 acetoin biosynthesis 0 0 16441 GO:0045152 antisigma factor binding 0 0 16442 GO:0045153 electron transporter, transferring electrons within CoQH2-cytochrome c reductase complex activity 0 0 16443 GO:0045154 electron transporter, transferring electrons within cytochrome c oxidase complex activity 0 0 16444 GO:0045155 electron transporter, transferring electrons from CoQH2-cytochrome c reductase complex and cytochrome c oxidase complex activity 0 0 16445 GO:0045156 electron transporter, transferring electrons within the cyclic electron transport pathway of photosynthesis activity 0 0 16446 GO:0045157 electron transporter, transferring electrons within the noncyclic electron transport pathway of photosynthesis activity 0 0 16447 GO:0045158 electron transporter, transferring electrons within cytochrome b6/f complex of photosystem II activity 0 0 16448 GO:0045159 myosin II binding 0 0 16449 GO:0045160 myosin I 0 0 16450 GO:0045161 neuronal ion channel clustering 0 0 16451 GO:0045162 clustering of voltage-gated sodium channels 0 0 16452 GO:0045163 clustering of voltage-gated potassium channels 0 0 16453 GO:0045164 secretin (sensu Mammalia) (obsolete GO:0045164) 1 0 16454 GO:0045165 cell fate commitment 0 0 16455 GO:0045167 asymmetric protein localization during cell fate commitment 0 0 16456 GO:0045168 cell-cell signaling during cell fate commitment 0 0 16457 GO:0045169 fusome 0 0 16458 GO:0045170 spectrosome 0 0 16459 GO:0045171 intercellular bridge 0 0 16460 GO:0045172 ring canal (sensu Insecta) 0 0 16461 GO:0045173 O-sialoglycoprotein catabolism 0 0 16462 GO:0045174 glutathione dehydrogenase (ascorbate) activity 0 0 16463 GO:0045175 basal protein localization 0 0 16464 GO:0045176 apical protein localization 0 0 16465 GO:0045177 apical part of cell 0 0 16466 GO:0045178 basal part of cell 0 0 16467 GO:0045179 apical cortex 0 0 16468 GO:0045180 basal cortex 0 0 16469 GO:0045181 glutamate synthase activity, NADH or NADPH as acceptor 0 0 16470 GO:0045182 translation regulator activity 0 0 16471 GO:0045183 translation factor activity, non-nucleic acid binding 0 0 16472 GO:0045184 establishment of protein localization 0 0 16473 GO:0045185 maintenance of protein localization 0 0 16474 GO:0045186 zonula adherens assembly 0 0 16475 GO:0045187 regulation of circadian sleep/wake cycle, sleep 0 0 16476 GO:0045188 regulation of circadian sleep/wake cycle, non-REM sleep 0 0 16477 GO:0045189 connective tissue growth factor biosynthesis 0 0 16478 GO:0045190 isotype switching 0 0 16479 GO:0045191 regulation of isotype switching 0 0 16480 GO:0045192 low-density lipoprotein catabolism 0 0 16481 GO:0045193 acetylated low-density lipoprotein catabolism 0 0 16482 GO:0045194 oxidized low-density lipoprotein catabolism 0 0 16483 GO:0045195 gallstone formation (obsolete GO:0045195) 1 0 16484 GO:0045196 establishment and/or maintenance of neuroblast polarity 0 0 16485 GO:0045197 establishment and/or maintenance of epithelial cell polarity 0 0 16486 GO:0045198 establishment of epithelial cell polarity 0 0 16487 GO:0045199 maintenance of epithelial cell polarity 0 0 16488 GO:0045200 establishment of neuroblast polarity 0 0 16489 GO:0045201 maintenance of neuroblast polarity 0 0 16490 GO:0045202 synapse 0 0 16491 GO:0045203 integral to outer membrane (sensu Proteobacteria) 0 0 16492 GO:0045204 MAPK export from nucleus 0 0 16493 GO:0045205 MAPK transporter activity 0 0 16494 GO:0045206 MAPK phosphatase transporter activity 0 0 16495 GO:0045208 MAPK phosphatase export from nucleus 0 0 16496 GO:0045209 MAPK phosphatase export from nucleus, leptomycin B sensitive 0 0 16497 GO:0045210 FasL biosynthesis 0 0 16498 GO:0045211 postsynaptic membrane 0 0 16499 GO:0045212 neurotransmitter receptor biosynthesis 0 0 16500 GO:0045213 neurotransmitter receptor metabolism 0 0 16501 GO:0045214 sarcomere organization 0 0 16502 GO:0045216 intercellular junction assembly and maintenance 0 0 16503 GO:0045217 intercellular junction maintenance 0 0 16504 GO:0045218 zonula adherens maintenance 0 0 16505 GO:0045219 regulation of FasL biosynthesis 0 0 16506 GO:0045220 positive regulation of FasL biosynthesis 0 0 16507 GO:0045221 negative regulation of FasL biosynthesis 0 0 16508 GO:0045222 CD4 biosynthesis 0 0 16509 GO:0045223 regulation of CD4 biosynthesis 0 0 16510 GO:0045224 positive regulation of CD4 biosynthesis 0 0 16511 GO:0045225 negative regulation of CD4 biosynthesis 0 0 16512 GO:0045226 extracellular polysaccharide biosynthesis 0 0 16513 GO:0045227 capsule polysaccharide biosynthesis 0 0 16514 GO:0045228 slime layer polysaccharide biosynthesis 0 0 16515 GO:0045229 external encapsulating structure organization and biogenesis 0 0 16516 GO:0045230 capsule organization and biogenesis 0 0 16517 GO:0045231 slime layer organization and biogenesis 0 0 16518 GO:0045232 S-layer organization and biogenesis 0 0 16519 GO:0045233 natural killer cell receptor activity 0 0 16520 GO:0045234 protein palmitoleylation 0 0 16521 GO:0045235 protein amino acid palmitoleylation 0 0 16522 GO:0045236 CXCR chemokine receptor binding 0 0 16523 GO:0045237 CXCR1 chemokine receptor binding 0 0 16524 GO:0045238 CXCR2 chemokine receptor binding 0 0 16525 GO:0045239 tricarboxylic acid cycle enzyme complex 0 0 16526 GO:0045240 alpha-ketoglutarate dehydrogenase complex 0 0 16527 GO:0045241 alpha-ketoglutarate dehydrogenase complex (sensu Bacteria) 0 0 16528 GO:0045242 isocitrate dehydrogenase complex (NAD+) 0 0 16529 GO:0045243 isocitrate dehydrogenase complex (NAD+) (sensu Bacteria) 0 0 16530 GO:0045244 succinate-CoA ligase complex (GDP-forming) 0 0 16531 GO:0045246 tricarboxylic acid cycle enzyme complex (sensu Bacteria) 0 0 16532 GO:0045247 electron transfer flavoprotein complex (sensu Bacteria) 0 0 16533 GO:0045248 oxoglutarate dehydrogenase complex (sensu Bacteria) 0 0 16534 GO:0045249 pyruvate dehydrogenase (lipoamide) phosphatase complex (sensu Bacteria) 0 0 16535 GO:0045250 pyruvate dehydrogenase complex (sensu Bacteria) 0 0 16536 GO:0045251 electron transfer flavoprotein complex 0 0 16537 GO:0045252 oxoglutarate dehydrogenase complex 0 0 16538 GO:0045253 pyruvate dehydrogenase (lipoamide) phosphatase complex 0 0 16539 GO:0045254 pyruvate dehydrogenase complex 0 0 16540 GO:0045255 hydrogen-translocating F-type ATPase complex 0 0 16541 GO:0045256 hydrogen-translocating F-type ATPase complex (sensu Bacteria) 0 0 16542 GO:0045257 succinate dehydrogenase complex (ubiquinone) 0 0 16543 GO:0045258 succinate dehydrogenase complex (ubiquinone) (sensu Bacteria) 0 0 16544 GO:0045259 proton-transporting ATP synthase complex 0 0 16545 GO:0045260 proton-transporting ATP synthase complex (sensu Bacteria) 0 0 16546 GO:0045261 proton-transporting ATP synthase complex, catalytic core F(1) 0 0 16547 GO:0045262 proton-transporting ATP synthase complex, catalytic core F(1) (sensu Bacteria) 0 0 16548 GO:0045263 proton-transporting ATP synthase complex, coupling factor F(o) 0 0 16549 GO:0045264 proton-transporting ATP synthase complex, coupling factor F(o) (sensu Bacteria) 0 0 16550 GO:0045265 proton-transporting ATP synthase, stator stalk 0 0 16551 GO:0045266 proton-transporting ATP synthase, stator stalk (sensu Bacteria) 0 0 16552 GO:0045267 proton-transporting ATP synthase, catalytic core 0 0 16553 GO:0045268 proton-transporting ATP synthase, catalytic core (sensu Bacteria) 0 0 16554 GO:0045269 proton-transporting ATP synthase, central stalk 0 0 16555 GO:0045270 proton-transporting ATP synthase, central stalk (sensu Bacteria) 0 0 16556 GO:0045271 respiratory chain complex I 0 0 16557 GO:0045272 respiratory chain complex I (sensu Bacteria) 0 0 16558 GO:0045273 respiratory chain complex II 0 0 16559 GO:0045274 respiratory chain complex II (sensu Bacteria) 0 0 16560 GO:0045275 respiratory chain complex III 0 0 16561 GO:0045276 respiratory chain complex III (sensu Bacteria) 0 0 16562 GO:0045277 respiratory chain complex IV 0 0 16563 GO:0045278 respiratory chain complex IV (sensu Bacteria) 0 0 16564 GO:0045279 NADH dehydrogenase complex (ubiquinone) 0 0 16565 GO:0045280 NADH dehydrogenase complex (ubiquinone) (sensu Bacteria) 0 0 16566 GO:0045281 succinate dehydrogenase complex 0 0 16567 GO:0045282 succinate dehydrogenase complex (sensu Bacteria) 0 0 16568 GO:0045283 fumarate reductase complex 0 0 16569 GO:0045284 fumarate reductase complex (sensu Bacteria) 0 0 16570 GO:0045285 ubiquinol-cytochrome-c reductase complex 0 0 16571 GO:0045286 ubiquinol-cytochrome-c reductase complex (sensu Bacteria) 0 0 16572 GO:0045289 luciferin monooxygenase activity 0 0 16573 GO:0045290 D-arabinose 1-dehydrogenase [NAD(P)+] activity 0 0 16574 GO:0045291 nuclear mRNA trans splicing, splice leader addition 0 0 16575 GO:0045292 nuclear mRNA cis splicing, via U2-type spliceosome 0 0 16576 GO:0045293 mRNA editing complex 0 0 16577 GO:0045294 alpha-catenin binding 0 0 16578 GO:0045295 gamma-catenin binding 0 0 16579 GO:0045296 cadherin binding 0 0 16580 GO:0045297 post-mating behavior 0 0 16581 GO:0045298 tubulin 0 0 16582 GO:0045299 otolith mineralization 0 0 16583 GO:0045300 acyl-[acyl-carrier protein] desaturase activity 0 0 16584 GO:0045301 tRNA-(2-methylthio-N-6-(cis-hydroxy)isopentenyl adenosine)-hydroxylase activity 0 0 16585 GO:0045302 choloylglycine hydrolase activity 0 0 16586 GO:0045303 diaminobutyrate-2-oxoglutarate transaminase activity 0 0 16587 GO:0045304 regulation of establishment of competence for transformation 0 0 16588 GO:0045305 regulator of establishment of competence for transformation activity (obsolete GO:0045305) 1 0 16589 GO:0045306 inhibitor of the establishment of competence for transformation activity (obsolete GO:0045306) 1 0 16590 GO:0045307 activator of the establishment of competence for transformation activity (obsolete GO:0045307) 1 0 16591 GO:0045309 protein phosphorylated amino acid binding 0 0 16592 GO:0045310 phosphoserine/phosphothreonine binding (obsolete GO:0045310) 1 0 16593 GO:0045311 filamentous growth in response to pheromones 0 0 16594 GO:0045312 nor-spermidine biosynthesis 0 0 16595 GO:0045313 rhabdomere membrane biogenesis 0 0 16596 GO:0045314 regulation of eye photoreceptor development (sensu Endopterygota) 0 0 16597 GO:0045315 positive regulation of eye photoreceptor development (sensu Endopterygota) 0 0 16598 GO:0045316 negative regulation of eye photoreceptor development (sensu Endopterygota) 0 0 16599 GO:0045317 equator specification 0 0 16600 GO:0045319 SRP-independent cotranslational protein-membrane targeting, translocation (obsolete GO:0045319) 1 0 16601 GO:0045320 hydrogen-translocating F-type ATPase complex (sensu Viridiplantae) 0 0 16602 GO:0045321 immune cell activation 0 0 16603 GO:0045322 unmethylated CpG binding 0 0 16604 GO:0045323 interleukin-1 receptor complex 0 0 16605 GO:0045324 late endosome to vacuole transport 0 0 16606 GO:0045325 peptidyl-tryptophan hydroxylation 0 0 16607 GO:0045326 DNA-protein covalent cross-linking via the 3'-end to peptidyl-tyrosine 0 0 16608 GO:0045327 DNA-protein covalent cross-linking via peptidyl-tyrosine 0 0 16609 GO:0045328 cytochrome P450 4A1-heme linkage 0 0 16610 GO:0045329 carnitine biosynthesis 0 0 16611 GO:0045330 aspartyl esterase activity 0 0 16612 GO:0045331 coenzyme-M-7-mercaptoheptanoylthreonine-phosphate-heterodisulfide hydrogenase activity (obsolete GO:0045331) 1 0 16613 GO:0045332 phospholipid translocation 0 0 16614 GO:0045333 cellular respiration 0 0 16615 GO:0045334 clathrin-coated endocytic vesicle 0 0 16616 GO:0045335 phagocytic vesicle 0 0 16617 GO:0045336 clathrin-coated phagocytic vesicle 0 0 16618 GO:0045337 farnesyl diphosphate biosynthesis 0 0 16619 GO:0045338 farnesyl diphosphate metabolism 0 0 16620 GO:0045339 farnesyl diphosphate catabolism 0 0 16621 GO:0045340 mercury ion binding 0 0 16622 GO:0045341 MHC class I biosynthesis 0 0 16623 GO:0045342 MHC class II biosynthesis 0 0 16624 GO:0045343 regulation of MHC class I biosynthesis 0 0 16625 GO:0045344 negative regulation of MHC class I biosynthesis 0 0 16626 GO:0045345 positive regulation of MHC class I biosynthesis 0 0 16627 GO:0045346 regulation of MHC class II biosynthesis 0 0 16628 GO:0045347 negative regulation of MHC class II biosynthesis 0 0 16629 GO:0045348 positive regulation of MHC class II biosynthesis 0 0 16630 GO:0045349 interferon-alpha biosynthesis 0 0 16631 GO:0045350 interferon-beta biosynthesis 0 0 16632 GO:0045351 interferon type I biosynthesis 0 0 16633 GO:0045352 interleukin-1 Type I receptor antagonist activity 0 0 16634 GO:0045353 interleukin-1 Type II receptor antagonist activity 0 0 16635 GO:0045354 regulation of interferon-alpha biosynthesis 0 0 16636 GO:0045355 negative regulation of interferon-alpha biosynthesis 0 0 16637 GO:0045356 positive regulation of interferon-alpha biosynthesis 0 0 16638 GO:0045357 regulation of interferon-beta biosynthesis 0 0 16639 GO:0045358 negative regulation of interferon-beta biosynthesis 0 0 16640 GO:0045359 positive regulation of interferon-beta biosynthesis 0 0 16641 GO:0045360 regulation of interleukin-1 biosynthesis 0 0 16642 GO:0045361 negative regulation of interleukin-1 biosynthesis 0 0 16643 GO:0045362 positive regulation of interleukin-1 biosynthesis 0 0 16644 GO:0045363 regulation of interleukin-11 biosynthesis 0 0 16645 GO:0045364 negative regulation of interleukin-11 biosynthesis 0 0 16646 GO:0045365 positive regulation of interleukin-11 biosynthesis 0 0 16647 GO:0045366 regulation of interleukin-13 biosynthesis 0 0 16648 GO:0045367 negative regulation of interleukin-13 biosynthesis 0 0 16649 GO:0045368 positive regulation of interleukin-13 biosynthesis 0 0 16650 GO:0045369 regulation of interleukin-14 biosynthesis 0 0 16651 GO:0045370 negative regulation of interleukin-14 biosynthesis 0 0 16652 GO:0045371 positive regulation of interleukin-14 biosynthesis 0 0 16653 GO:0045372 regulation of interleukin-15 biosynthesis 0 0 16654 GO:0045373 negative regulation of interleukin-15 biosynthesis 0 0 16655 GO:0045374 positive regulation of interleukin-15 biosynthesis 0 0 16656 GO:0045375 regulation of interleukin-16 biosynthesis 0 0 16657 GO:0045376 negative regulation of interleukin-16 biosynthesis 0 0 16658 GO:0045377 positive regulation of interleukin-16 biosynthesis 0 0 16659 GO:0045378 regulation of interleukin-17 biosynthesis 0 0 16660 GO:0045379 negative regulation of interleukin-17 biosynthesis 0 0 16661 GO:0045380 positive regulation of interleukin-17 biosynthesis 0 0 16662 GO:0045381 regulation of interleukin-18 biosynthesis 0 0 16663 GO:0045382 negative regulation of interleukin-18 biosynthesis 0 0 16664 GO:0045383 positive regulation of interleukin-18 biosynthesis 0 0 16665 GO:0045384 regulation of interleukin-19 biosynthesis 0 0 16666 GO:0045385 negative regulation of interleukin-19 biosynthesis 0 0 16667 GO:0045386 positive regulation of interleukin-19 biosynthesis 0 0 16668 GO:0045387 regulation of interleukin-20 biosynthesis 0 0 16669 GO:0045388 negative regulation of interleukin-20 biosynthesis 0 0 16670 GO:0045389 positive regulation of interleukin-20 biosynthesis 0 0 16671 GO:0045390 regulation of interleukin-21 biosynthesis 0 0 16672 GO:0045391 negative regulation of interleukin-21 biosynthesis 0 0 16673 GO:0045392 positive regulation of interleukin-21 biosynthesis 0 0 16674 GO:0045393 regulation of interleukin-22 biosynthesis 0 0 16675 GO:0045394 negative regulation of interleukin-22 biosynthesis 0 0 16676 GO:0045395 positive regulation of interleukin-22 biosynthesis 0 0 16677 GO:0045396 regulation of interleukin-23 biosynthesis 0 0 16678 GO:0045397 negative regulation of interleukin-23 biosynthesis 0 0 16679 GO:0045398 positive regulation of interleukin-23 biosynthesis 0 0 16680 GO:0045399 regulation of interleukin-3 biosynthesis 0 0 16681 GO:0045400 negative regulation of interleukin-3 biosynthesis 0 0 16682 GO:0045401 positive regulation of interleukin-3 biosynthesis 0 0 16683 GO:0045402 regulation of interleukin-4 biosynthesis 0 0 16684 GO:0045403 negative regulation of interleukin-4 biosynthesis 0 0 16685 GO:0045404 positive regulation of interleukin-4 biosynthesis 0 0 16686 GO:0045405 regulation of interleukin-5 biosynthesis 0 0 16687 GO:0045406 negative regulation of interleukin-5 biosynthesis 0 0 16688 GO:0045407 positive regulation of interleukin-5 biosynthesis 0 0 16689 GO:0045408 regulation of interleukin-6 biosynthesis 0 0 16690 GO:0045409 negative regulation of interleukin-6 biosynthesis 0 0 16691 GO:0045410 positive regulation of interleukin-6 biosynthesis 0 0 16692 GO:0045411 regulation of interleukin-7 biosynthesis 0 0 16693 GO:0045412 negative regulation of interleukin-7 biosynthesis 0 0 16694 GO:0045413 positive regulation of interleukin-7 biosynthesis 0 0 16695 GO:0045414 regulation of interleukin-8 biosynthesis 0 0 16696 GO:0045415 negative regulation of interleukin-8 biosynthesis 0 0 16697 GO:0045416 positive regulation of interleukin-8 biosynthesis 0 0 16698 GO:0045417 regulation of interleukin-9 biosynthesis 0 0 16699 GO:0045418 negative regulation of interleukin-9 biosynthesis 0 0 16700 GO:0045419 positive regulation of interleukin-9 biosynthesis 0 0 16701 GO:0045420 regulation of connective tissue growth factor biosynthesis 0 0 16702 GO:0045421 negative regulation of connective tissue growth factor biosynthesis 0 0 16703 GO:0045422 positive regulation of connective tissue growth factor biosynthesis 0 0 16704 GO:0045423 regulation of granulocyte macrophage colony-stimulating factor biosynthesis 0 0 16705 GO:0045424 negative regulation of granulocyte macrophage colony-stimulating factor biosynthesis 0 0 16706 GO:0045425 positive regulation of granulocyte macrophage colony-stimulating factor biosynthesis 0 0 16707 GO:0045426 quinone cofactor biosynthesis 0 0 16708 GO:0045427 enzyme active site formation via (phospho-5'-guanosine)-L-histidine 0 0 16709 GO:0045428 regulation of nitric oxide biosynthesis 0 0 16710 GO:0045429 positive regulation of nitric oxide biosynthesis 0 0 16711 GO:0045430 chalcone isomerase activity 0 0 16712 GO:0045431 flavonol synthase activity 0 0 16713 GO:0045432 leucoanthocyanidin dioxygenase activity 0 0 16714 GO:0045433 male courtship behavior (sensu Insecta), song production 0 0 16715 GO:0045434 negative regulation of female receptivity, post-mating 0 0 16716 GO:0045435 lycopene epsilon cyclase activity 0 0 16717 GO:0045436 lycopene beta cyclase activity 0 0 16718 GO:0045437 uridine nucleosidase activity 0 0 16719 GO:0045438 L-cysteinyl-D-valine synthetase activity 0 0 16720 GO:0045439 isopenicillin-N epimerase activity 0 0 16721 GO:0045441 deacetoxycephalosporin C synthetase activity 0 0 16722 GO:0045442 deacetoxycephalosporin C hydroxylase activity 0 0 16723 GO:0045443 juvenile hormone secretion 0 0 16724 GO:0045444 fat cell differentiation 0 0 16725 GO:0045445 myoblast differentiation 0 0 16726 GO:0045446 endothelial cell differentiation 0 0 16727 GO:0045448 mitotic cell cycle, embryonic 0 0 16728 GO:0045449 regulation of transcription 0 0 16729 GO:0045450 bicoid mRNA localization 0 0 16730 GO:0045451 pole plasm oskar mRNA localization 0 0 16731 GO:0045453 bone resorption 0 0 16732 GO:0045454 cell redox homeostasis 0 0 16733 GO:0045455 ecdysteroid metabolism 0 0 16734 GO:0045456 ecdysteroid biosynthesis 0 0 16735 GO:0045457 ecdysteroid secretion 0 0 16736 GO:0045458 recombination within rDNA repeats 0 0 16737 GO:0045459 iron incorporation into iron-sulfur cluster via tetrakis-L-cysteinyl triiron tetrasulfide 0 0 16738 GO:0045460 sterigmatocystin metabolism 0 0 16739 GO:0045461 sterigmatocystin biosynthesis 0 0 16740 GO:0045462 trichothecene 3-O-acetyltransferase activity 0 0 16741 GO:0045463 R8 development 0 0 16742 GO:0045464 R8 cell fate specification 0 0 16743 GO:0045465 R8 cell differentiation 0 0 16744 GO:0045466 R7 cell differentiation 0 0 16745 GO:0045467 R7 development 0 0 16746 GO:0045468 regulation of R8 spacing 0 0 16747 GO:0045469 negative regulation of R8 spacing 0 0 16748 GO:0045470 R8-mediated photoreceptor organization 0 0 16749 GO:0045471 response to ethanol 0 0 16750 GO:0045472 response to ether 0 0 16751 GO:0045473 response to ethanol (sensu Insecta) (obsolete GO:0045473) 1 0 16752 GO:0045474 response to ether (sensu Insecta) (obsolete GO:0045474) 1 0 16753 GO:0045475 locomotor rhythm 0 0 16754 GO:0045476 nurse cell apoptosis 0 0 16755 GO:0045477 regulation of nurse cell apoptosis 0 0 16756 GO:0045478 fusome organization and biogenesis 0 0 16757 GO:0045479 vesicle targeting to fusome 0 0 16758 GO:0045480 galactose oxidase activity 0 0 16759 GO:0045481 6-endo-hydroxycineole dehydrogenase activity 0 0 16760 GO:0045482 trichodiene synthase activity 0 0 16761 GO:0045483 aristolochene synthase activity 0 0 16762 GO:0045484 L-lysine 6-transaminase activity 0 0 16763 GO:0045485 omega-6 fatty acid desaturase activity 0 0 16764 GO:0045486 naringenin 3-dioxygenase activity 0 0 16765 GO:0045487 gibberellic acid catabolism 0 0 16766 GO:0045488 pectin metabolism 0 0 16767 GO:0045489 pectin biosynthesis 0 0 16768 GO:0045490 pectin catabolism 0 0 16769 GO:0045491 xylan metabolism 0 0 16770 GO:0045492 xylan biosynthesis 0 0 16771 GO:0045493 xylan catabolism 0 0 16772 GO:0045494 photoreceptor maintenance 0 0 16773 GO:0045495 pole plasm 0 0 16774 GO:0045496 male analia development (sensu Endopterygota) 0 0 16775 GO:0045497 female analia development (sensu Endopterygota) 0 0 16776 GO:0045498 sex comb development 0 0 16777 GO:0045499 chemorepellant activity 0 0 16778 GO:0045500 sevenless signaling pathway 0 0 16779 GO:0045501 regulation of sevenless signaling pathway 0 0 16780 GO:0045502 dynein binding 0 0 16781 GO:0045503 dynein light chain binding 0 0 16782 GO:0045504 dynein heavy chain binding 0 0 16783 GO:0045505 dynein intermediate chain binding 0 0 16784 GO:0045506 interleukin-24 receptor activity 0 0 16785 GO:0045507 interleukin-25 receptor activity 0 0 16786 GO:0045508 interleukin-26 receptor activity 0 0 16787 GO:0045509 interleukin-27 receptor activity 0 0 16788 GO:0045510 interleukin-24 binding 0 0 16789 GO:0045511 interleukin-25 binding 0 0 16790 GO:0045512 interleukin-26 binding 0 0 16791 GO:0045513 interleukin-27 binding 0 0 16792 GO:0045514 interleukin-16 receptor binding 0 0 16793 GO:0045515 interleukin-18 receptor binding 0 0 16794 GO:0045516 interleukin-19 receptor binding 0 0 16795 GO:0045517 interleukin-20 receptor binding 0 0 16796 GO:0045518 interleukin-22 receptor binding 0 0 16797 GO:0045519 interleukin-23 receptor binding 0 0 16798 GO:0045520 interleukin-24 receptor binding 0 0 16799 GO:0045521 interleukin-25 receptor binding 0 0 16800 GO:0045522 interleukin-26 receptor binding 0 0 16801 GO:0045523 interleukin-27 receptor binding 0 0 16802 GO:0045524 interleukin-24 biosynthesis 0 0 16803 GO:0045525 interleukin-25 biosynthesis 0 0 16804 GO:0045526 interleukin-26 biosynthesis 0 0 16805 GO:0045527 interleukin-27 biosynthesis 0 0 16806 GO:0045528 regulation of interleukin-24 biosynthesis 0 0 16807 GO:0045529 regulation of interleukin-25 biosynthesis 0 0 16808 GO:0045530 regulation of interleukin-26 biosynthesis 0 0 16809 GO:0045531 regulation of interleukin-27 biosynthesis 0 0 16810 GO:0045532 negative regulation of interleukin-24 biosynthesis 0 0 16811 GO:0045533 negative regulation of interleukin-25 biosynthesis 0 0 16812 GO:0045534 negative regulation of interleukin-26 biosynthesis 0 0 16813 GO:0045535 negative regulation of interleukin-27 biosynthesis 0 0 16814 GO:0045536 positive regulation of interleukin-24 biosynthesis 0 0 16815 GO:0045537 positive regulation of interleukin-25 biosynthesis 0 0 16816 GO:0045538 positive regulation of interleukin-26 biosynthesis 0 0 16817 GO:0045539 positive regulation of interleukin-27 biosynthesis 0 0 16818 GO:0045540 regulation of cholesterol biosynthesis 0 0 16819 GO:0045541 negative regulation of cholesterol biosynthesis 0 0 16820 GO:0045542 positive regulation of cholesterol biosynthesis 0 0 16821 GO:0045543 gibberellin 2-beta-dioxygenase activity 0 0 16822 GO:0045544 gibberellin 20-oxidase activity 0 0 16823 GO:0045545 syndecan binding 0 0 16824 GO:0045547 dehydrodolichyl diphosphate synthase activity 0 0 16825 GO:0045548 phenylalanine ammonia-lyase activity 0 0 16826 GO:0045549 9-cis-epoxycarotenoid dioxygenase activity 0 0 16827 GO:0045550 geranylgeranyl reductase activity 0 0 16828 GO:0045551 cinnamyl-alcohol dehydrogenase activity 0 0 16829 GO:0045552 dihydrokaempferol 4-reductase activity 0 0 16830 GO:0045553 TRAIL biosynthesis 0 0 16831 GO:0045554 regulation of TRAIL biosynthesis 0 0 16832 GO:0045555 negative regulation of TRAIL biosynthesis 0 0 16833 GO:0045556 positive regulation of TRAIL biosynthesis 0 0 16834 GO:0045557 TRAIL receptor biosynthesis 0 0 16835 GO:0045558 TRAIL receptor 1 biosynthesis 0 0 16836 GO:0045559 TRAIL receptor 2 biosynthesis 0 0 16837 GO:0045560 regulation of TRAIL receptor biosynthesis 0 0 16838 GO:0045561 regulation of TRAIL receptor 1 biosynthesis 0 0 16839 GO:0045562 regulation of TRAIL receptor 2 biosynthesis 0 0 16840 GO:0045563 negative regulation of TRAIL receptor biosynthesis 0 0 16841 GO:0045564 positive regulation of TRAIL receptor biosynthesis 0 0 16842 GO:0045565 negative regulation of TRAIL receptor 1 biosynthesis 0 0 16843 GO:0045566 positive regulation of TRAIL receptor 1 biosynthesis 0 0 16844 GO:0045567 negative regulation of TRAIL receptor 2 biosynthesis 0 0 16845 GO:0045568 positive regulation of TRAIL receptor 2 biosynthesis 0 0 16846 GO:0045569 TRAIL binding 0 0 16847 GO:0045570 regulation of imaginal disc growth 0 0 16848 GO:0045571 negative regulation of imaginal disc growth 0 0 16849 GO:0045572 positive regulation of imaginal disc growth 0 0 16850 GO:0045574 sterigmatocystin catabolism 0 0 16851 GO:0045575 basophil activation 0 0 16852 GO:0045576 mast cell activation 0 0 16853 GO:0045577 regulation of B cell differentiation 0 0 16854 GO:0045578 negative regulation of B cell differentiation 0 0 16855 GO:0045579 positive regulation of B cell differentiation 0 0 16856 GO:0045580 regulation of T cell differentiation 0 0 16857 GO:0045581 negative regulation of T cell differentiation 0 0 16858 GO:0045582 positive regulation of T cell differentiation 0 0 16859 GO:0045583 regulation of cytotoxic T cell differentiation 0 0 16860 GO:0045584 negative regulation of cytoto