-
Notifications
You must be signed in to change notification settings - Fork 5
/
gene_ontologies.sql
2644 lines (2642 loc) · 147 KB
/
gene_ontologies.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
CREATE TABLE antismash.gene_ontologies (
go_id serial NOT NULL PRIMARY KEY,
identifier text NOT NULL UNIQUE,
description text NOT NULL
);
INSERT INTO antismash.gene_ontologies (identifier, description)
VALUES
('GO:0000001', 'mitochondrion inheritance'),
('GO:0000002', 'mitochondrial genome maintenance'),
('GO:0000009', 'alpha-1,6-mannosyltransferase activity'),
('GO:0000011', 'vacuole inheritance'),
('GO:0000012', 'single strand break repair'),
('GO:0000030', 'mannosyltransferase activity'),
('GO:0000041', 'transition metal ion transport'),
('GO:0000045', 'autophagosome assembly'),
('GO:0000049', 'tRNA binding'),
('GO:0000062', 'fatty-acyl-CoA binding'),
('GO:0000070', 'mitotic sister chromatid segregation'),
('GO:0000077', 'DNA damage checkpoint signaling'),
('GO:0000079', 'regulation of cyclin-dependent protein serine/threonine kinase activity'),
('GO:0000105', 'histidine biosynthetic process'),
('GO:0000120', 'RNA polymerase I transcription regulator complex'),
('GO:0000122', 'negative regulation of transcription by RNA polymerase II'),
('GO:0000123', 'histone acetyltransferase complex'),
('GO:0000124', 'SAGA complex'),
('GO:0000128', 'flocculation'),
('GO:0000139', 'Golgi membrane'),
('GO:0000145', 'exocyst'),
('GO:0000148', '1,3-beta-D-glucan synthase complex'),
('GO:0000150', 'DNA strand exchange activity'),
('GO:0000151', 'ubiquitin ligase complex'),
('GO:0000155', 'phosphorelay sensor kinase activity'),
('GO:0000156', 'phosphorelay response regulator activity'),
('GO:0000159', 'protein phosphatase type 2A complex'),
('GO:0000160', 'phosphorelay signal transduction system'),
('GO:0000165', 'MAPK cascade'),
('GO:0000166', 'nucleotide binding'),
('GO:0000172', 'ribonuclease MRP complex'),
('GO:0000176', 'nuclear exosome (RNase complex)'),
('GO:0000178', 'exosome (RNase complex)'),
('GO:0000184', 'nuclear-transcribed mRNA catabolic process, nonsense-mediated decay'),
('GO:0000209', 'protein polyubiquitination'),
('GO:0000213', 'tRNA-intron endonuclease activity'),
('GO:0000217', 'DNA secondary structure binding'),
('GO:0000221', 'vacuolar proton-transporting V-type ATPase, V1 domain'),
('GO:0000226', 'microtubule cytoskeleton organization'),
('GO:0000228', 'nuclear chromosome'),
('GO:0000256', 'allantoin catabolic process'),
('GO:0000262', 'mitochondrial chromosome'),
('GO:0000266', 'mitochondrial fission'),
('GO:0000271', 'polysaccharide biosynthetic process'),
('GO:0000272', 'polysaccharide catabolic process'),
('GO:0000275', 'mitochondrial proton-transporting ATP synthase complex, catalytic sector F(1)'),
('GO:0000276', 'mitochondrial proton-transporting ATP synthase complex, coupling factor F(o)'),
('GO:0000278', 'mitotic cell cycle'),
('GO:0000281', 'mitotic cytokinesis'),
('GO:0000287', 'magnesium ion binding'),
('GO:0000290', 'deadenylation-dependent decapping of nuclear-transcribed mRNA'),
('GO:0000302', 'response to reactive oxygen species'),
('GO:0000334', '3-hydroxyanthranilate 3,4-dioxygenase activity'),
('GO:0000340', 'RNA 7-methylguanosine cap binding'),
('GO:0000350', 'generation of catalytic spliceosome for second transesterification step'),
('GO:0000372', 'Group I intron splicing'),
('GO:0000381', 'regulation of alternative mRNA splicing, via spliceosome'),
('GO:0000387', 'spliceosomal snRNP assembly'),
('GO:0000398', 'mRNA splicing, via spliceosome'),
('GO:0000400', 'four-way junction DNA binding'),
('GO:0000407', 'phagophore assembly site'),
('GO:0000408', 'EKC/KEOPS complex'),
('GO:0000413', 'protein peptidyl-prolyl isomerization'),
('GO:0000422', 'autophagy of mitochondrion'),
('GO:0000423', 'mitophagy'),
('GO:0000439', 'transcription factor TFIIH core complex'),
('GO:0000444', 'MIS12/MIND type complex'),
('GO:0000445', 'THO complex part of transcription export complex'),
('GO:0000446', 'nucleoplasmic THO complex'),
('GO:0000462', 'maturation of SSU-rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)'),
('GO:0000492', 'box C/D snoRNP assembly'),
('GO:0000502', 'proteasome complex'),
('GO:0000712', 'resolution of meiotic recombination intermediates'),
('GO:0000723', 'telomere maintenance'),
('GO:0000724', 'double-strand break repair via homologous recombination'),
('GO:0000725', 'recombinational repair'),
('GO:0000731', 'DNA synthesis involved in DNA repair'),
('GO:0000736', 'double-strand break repair via single-strand annealing, removal of nonhomologous ends'),
('GO:0000742', 'karyogamy involved in conjugation with cellular fusion'),
('GO:0000750', 'pheromone-dependent signal transduction involved in conjugation with cellular fusion'),
('GO:0000752', 'agglutination involved in conjugation with cellular fusion'),
('GO:0000772', 'mating pheromone activity'),
('GO:0000774', 'adenyl-nucleotide exchange factor activity'),
('GO:0000775', 'chromosome, centromeric region'),
('GO:0000776', 'kinetochore'),
('GO:0000781', 'chromosome, telomeric region'),
('GO:0000785', 'chromatin'),
('GO:0000786', 'nucleosome'),
('GO:0000794', 'condensed nuclear chromosome'),
('GO:0000795', 'synaptonemal complex'),
('GO:0000796', 'condensin complex'),
('GO:0000808', 'origin recognition complex'),
('GO:0000813', 'ESCRT I complex'),
('GO:0000814', 'ESCRT II complex'),
('GO:0000902', 'cell morphogenesis'),
('GO:0000921', 'septin ring assembly'),
('GO:0000931', 'gamma-tubulin ring complex'),
('GO:0000959', 'mitochondrial RNA metabolic process'),
('GO:0000976', 'transcription cis-regulatory region binding'),
('GO:0000977', 'RNA polymerase II transcription regulatory region sequence-specific DNA binding'),
('GO:0000978', 'RNA polymerase II cis-regulatory region sequence-specific DNA binding'),
('GO:0000981', 'DNA-binding transcription factor activity, RNA polymerase II-specific'),
('GO:0001000', 'bacterial-type RNA polymerase core enzyme binding'),
('GO:0001070', 'RNA-binding transcription regulator activity'),
('GO:0001164', 'RNA polymerase I core promoter sequence-specific DNA binding'),
('GO:0001181', 'RNA polymerase I general transcription initiation factor activity'),
('GO:0001216', 'DNA-binding transcription activator activity'),
('GO:0001401', 'SAM complex'),
('GO:0001405', 'PAM complex, Tim23 associated import motor'),
('GO:0001503', 'ossification'),
('GO:0001510', 'RNA methylation'),
('GO:0001514', 'selenocysteine incorporation'),
('GO:0001518', 'voltage-gated sodium channel complex'),
('GO:0001522', 'pseudouridine synthesis'),
('GO:0001527', 'microfibril'),
('GO:0001533', 'cornified envelope'),
('GO:0001534', 'radial spoke'),
('GO:0001558', 'regulation of cell growth'),
('GO:0001664', 'G protein-coupled receptor binding'),
('GO:0001669', 'acrosomal vesicle'),
('GO:0001671', 'ATPase activator activity'),
('GO:0001682', 'tRNA 5''-leader removal'),
('GO:0001700', 'embryonic development via the syncytial blastoderm'),
('GO:0001726', 'ruffle'),
('GO:0001733', 'galactosylceramide sulfotransferase activity'),
('GO:0001772', 'immunological synapse'),
('GO:0001819', 'positive regulation of cytokine production'),
('GO:0001836', 'release of cytochrome c from mitochondria'),
('GO:0001848', 'complement binding'),
('GO:0001881', 'receptor recycling'),
('GO:0001882', 'nucleoside binding'),
('GO:0001907', 'killing by symbiont of host cells'),
('GO:0001919', 'regulation of receptor recycling'),
('GO:0001934', 'positive regulation of protein phosphorylation'),
('GO:0002062', 'chondrocyte differentiation'),
('GO:0002098', 'tRNA wobble uridine modification'),
('GO:0002100', 'tRNA wobble adenosine to inosine editing'),
('GO:0002128', 'tRNA nucleoside ribose methylation'),
('GO:0002143', 'tRNA wobble position uridine thiolation'),
('GO:0002151', 'G-quadruplex RNA binding'),
('GO:0002161', 'aminoacyl-tRNA editing activity'),
('GO:0002218', 'activation of innate immune response'),
('GO:0002376', 'immune system process'),
('GO:0002532', 'production of molecular mediator involved in inflammatory response'),
('GO:0002682', 'regulation of immune system process'),
('GO:0002764', 'immune response-regulating signaling pathway'),
('GO:0002949', 'tRNA threonylcarbamoyladenosine modification'),
('GO:0003333', 'amino acid transmembrane transport'),
('GO:0003334', 'keratinocyte development'),
('GO:0003352', 'regulation of cilium movement'),
('GO:0003676', 'nucleic acid binding'),
('GO:0003677', 'DNA binding'),
('GO:0003678', 'DNA helicase activity'),
('GO:0003682', 'chromatin binding'),
('GO:0003684', 'damaged DNA binding'),
('GO:0003688', 'DNA replication origin binding'),
('GO:0003689', 'DNA clamp loader activity'),
('GO:0003690', 'double-stranded DNA binding'),
('GO:0003697', 'single-stranded DNA binding'),
('GO:0003700', 'DNA-binding transcription factor activity'),
('GO:0003707', 'nuclear steroid receptor activity'),
('GO:0003711', 'transcription elongation factor activity'),
('GO:0003712', 'transcription coregulator activity'),
('GO:0003713', 'transcription coactivator activity'),
('GO:0003714', 'transcription corepressor activity'),
('GO:0003723', 'RNA binding'),
('GO:0003724', 'RNA helicase activity'),
('GO:0003725', 'double-stranded RNA binding'),
('GO:0003726', 'double-stranded RNA adenosine deaminase activity'),
('GO:0003727', 'single-stranded RNA binding'),
('GO:0003729', 'mRNA binding'),
('GO:0003735', 'structural constituent of ribosome'),
('GO:0003743', 'translation initiation factor activity'),
('GO:0003746', 'translation elongation factor activity'),
('GO:0003747', 'translation release factor activity'),
('GO:0003755', 'peptidyl-prolyl cis-trans isomerase activity'),
('GO:0003774', 'cytoskeletal motor activity'),
('GO:0003777', 'microtubule motor activity'),
('GO:0003779', 'actin binding'),
('GO:0003785', 'actin monomer binding'),
('GO:0003796', 'lysozyme activity'),
('GO:0003810', 'protein-glutamine gamma-glutamyltransferase activity'),
('GO:0003824', 'catalytic activity'),
('GO:0003830', 'beta-1,4-mannosylglycoprotein 4-beta-N-acetylglucosaminyltransferase activity'),
('GO:0003842', '1-pyrroline-5-carboxylate dehydrogenase activity'),
('GO:0003843', '1,3-beta-D-glucan synthase activity'),
('GO:0003848', '2-amino-4-hydroxy-6-hydroxymethyldihydropteridine diphosphokinase activity'),
('GO:0003849', '3-deoxy-7-phosphoheptulonate synthase activity'),
('GO:0003852', '2-isopropylmalate synthase activity'),
('GO:0003854', '3-beta-hydroxy-delta5-steroid dehydrogenase activity'),
('GO:0003855', '3-dehydroquinate dehydratase activity'),
('GO:0003856', '3-dehydroquinate synthase activity'),
('GO:0003864', '3-methyl-2-oxobutanoate hydroxymethyltransferase activity'),
('GO:0003870', '5-aminolevulinate synthase activity'),
('GO:0003871', '5-methyltetrahydropteroyltriglutamate-homocysteine S-methyltransferase activity'),
('GO:0003872', '6-phosphofructokinase activity'),
('GO:0003873', '6-phosphofructo-2-kinase activity'),
('GO:0003876', 'AMP deaminase activity'),
('GO:0003877', 'ATP adenylyltransferase activity'),
('GO:0003879', 'ATP phosphoribosyltransferase activity'),
('GO:0003883', 'CTP synthase activity'),
('GO:0003885', 'D-arabinono-1,4-lactone oxidase activity'),
('GO:0003887', 'DNA-directed DNA polymerase activity'),
('GO:0003896', 'DNA primase activity'),
('GO:0003899', 'DNA-directed 5''-3'' RNA polymerase activity'),
('GO:0003905', 'alkylbase DNA N-glycosylase activity'),
('GO:0003906', 'DNA-(apurinic or apyrimidinic site) endonuclease activity'),
('GO:0003908', 'methylated-DNA-[protein]-cysteine S-methyltransferase activity'),
('GO:0003910', 'DNA ligase (ATP) activity'),
('GO:0003911', 'DNA ligase (NAD+) activity'),
('GO:0003916', 'DNA topoisomerase activity'),
('GO:0003917', 'DNA topoisomerase type I (single strand cut, ATP-independent) activity'),
('GO:0003918', 'DNA topoisomerase type II (double strand cut, ATP-hydrolyzing) activity'),
('GO:0003919', 'FMN adenylyltransferase activity'),
('GO:0003922', 'GMP synthase (glutamine-hydrolyzing) activity'),
('GO:0003924', 'GTPase activity'),
('GO:0003933', 'GTP cyclohydrolase activity'),
('GO:0003937', 'IMP cyclohydrolase activity'),
('GO:0003941', 'L-serine ammonia-lyase activity'),
('GO:0003950', 'NAD+ ADP-ribosyltransferase activity'),
('GO:0003951', 'NAD+ kinase activity'),
('GO:0003953', 'NAD+ nucleosidase activity'),
('GO:0003964', 'RNA-directed DNA polymerase activity'),
('GO:0003968', 'RNA-dependent RNA polymerase activity'),
('GO:0003972', 'RNA ligase (ATP) activity'),
('GO:0003978', 'UDP-glucose 4-epimerase activity'),
('GO:0003980', 'UDP-glucose:glycoprotein glucosyltransferase activity'),
('GO:0003989', 'acetyl-CoA carboxylase activity'),
('GO:0003993', 'acid phosphatase activity'),
('GO:0003994', 'aconitate hydratase activity'),
('GO:0003995', 'acyl-CoA dehydrogenase activity'),
('GO:0003997', 'acyl-CoA oxidase activity'),
('GO:0004000', 'adenosine deaminase activity'),
('GO:0004014', 'adenosylmethionine decarboxylase activity'),
('GO:0004016', 'adenylate cyclase activity'),
('GO:0004017', 'adenylate kinase activity'),
('GO:0004018', 'N6-(1,2-dicarboxyethyl)AMP AMP-lyase (fumarate-forming) activity'),
('GO:0004019', 'adenylosuccinate synthase activity'),
('GO:0004022', 'alcohol dehydrogenase (NAD+) activity'),
('GO:0004037', 'allantoicase activity'),
('GO:0004040', 'amidase activity'),
('GO:0004045', 'aminoacyl-tRNA hydrolase activity'),
('GO:0004055', 'argininosuccinate synthase activity'),
('GO:0004057', 'arginyl-tRNA--protein transferase activity'),
('GO:0004061', 'arylformamidase activity'),
('GO:0004062', 'aryl sulfotransferase activity'),
('GO:0004064', 'arylesterase activity'),
('GO:0004066', 'asparagine synthase (glutamine-hydrolyzing) activity'),
('GO:0004068', 'aspartate 1-decarboxylase activity'),
('GO:0004069', 'L-aspartate:2-oxoglutarate aminotransferase activity'),
('GO:0004071', 'aspartate-ammonia ligase activity'),
('GO:0004074', 'biliverdin reductase (NAD(P)+) activity'),
('GO:0004089', 'carbonate dehydratase activity'),
('GO:0004096', 'catalase activity'),
('GO:0004097', 'catechol oxidase activity'),
('GO:0004100', 'chitin synthase activity'),
('GO:0004107', 'chorismate synthase activity'),
('GO:0004109', 'coproporphyrinogen oxidase activity'),
('GO:0004112', 'cyclic-nucleotide phosphodiesterase activity'),
('GO:0004113', '2'',3''-cyclic-nucleotide 3''-phosphodiesterase activity'),
('GO:0004114', '3'',5''-cyclic-nucleotide phosphodiesterase activity'),
('GO:0004115', '3'',5''-cyclic-AMP phosphodiesterase activity'),
('GO:0004126', 'cytidine deaminase activity'),
('GO:0004127', 'cytidylate kinase activity'),
('GO:0004129', 'cytochrome-c oxidase activity'),
('GO:0004134', '4-alpha-glucanotransferase activity'),
('GO:0004140', 'dephospho-CoA kinase activity'),
('GO:0004143', 'ATP-dependent diacylglycerol kinase activity'),
('GO:0004144', 'diacylglycerol O-acyltransferase activity'),
('GO:0004146', 'dihydrofolate reductase activity'),
('GO:0004150', 'dihydroneopterin aldolase activity'),
('GO:0004169', 'dolichyl-phosphate-mannose-protein mannosyltransferase activity'),
('GO:0004175', 'endopeptidase activity'),
('GO:0004176', 'ATP-dependent peptidase activity'),
('GO:0004177', 'aminopeptidase activity'),
('GO:0004181', 'metallocarboxypeptidase activity'),
('GO:0004185', 'serine-type carboxypeptidase activity'),
('GO:0004190', 'aspartic-type endopeptidase activity'),
('GO:0004197', 'cysteine-type endopeptidase activity'),
('GO:0004198', 'calcium-dependent cysteine-type endopeptidase activity'),
('GO:0004222', 'metalloendopeptidase activity'),
('GO:0004252', 'serine-type endopeptidase activity'),
('GO:0004308', 'exo-alpha-sialidase activity'),
('GO:0004315', '3-oxoacyl-[acyl-carrier-protein] synthase activity'),
('GO:0004317', '(3R)-hydroxypalmitoyl-[acyl-carrier-protein] dehydratase activity'),
('GO:0004318', 'enoyl-[acyl-carrier-protein] reductase (NADH) activity'),
('GO:0004325', 'ferrochelatase activity'),
('GO:0004329', 'formate-tetrahydrofolate ligase activity'),
('GO:0004332', 'fructose-bisphosphate aldolase activity'),
('GO:0004334', 'fumarylacetoacetase activity'),
('GO:0004336', 'galactosylceramidase activity'),
('GO:0004340', 'glucokinase activity'),
('GO:0004345', 'glucose-6-phosphate dehydrogenase activity'),
('GO:0004347', 'glucose-6-phosphate isomerase activity'),
('GO:0004352', 'glutamate dehydrogenase (NAD+) activity'),
('GO:0004356', 'glutamine synthetase activity'),
('GO:0004357', 'glutamate-cysteine ligase activity'),
('GO:0004358', 'glutamate N-acetyltransferase activity'),
('GO:0004359', 'glutaminase activity'),
('GO:0004363', 'glutathione synthase activity'),
('GO:0004366', 'glycerol-3-phosphate O-acyltransferase activity'),
('GO:0004371', 'glycerone kinase activity'),
('GO:0004373', 'glycogen (starch) synthase activity'),
('GO:0004375', 'glycine dehydrogenase (decarboxylating) activity'),
('GO:0004376', 'glycolipid mannosyltransferase activity'),
('GO:0004379', 'glycylpeptide N-tetradecanoyltransferase activity'),
('GO:0004383', 'guanylate cyclase activity'),
('GO:0004386', 'helicase activity'),
('GO:0004392', 'heme oxygenase (decyclizing) activity'),
('GO:0004398', 'histidine decarboxylase activity'),
('GO:0004402', 'histone acetyltransferase activity'),
('GO:0004408', 'holocytochrome-c synthase activity'),
('GO:0004415', 'hyalurononglucosaminidase activity'),
('GO:0004417', 'hydroxyethylthiazole kinase activity'),
('GO:0004418', 'hydroxymethylbilane synthase activity'),
('GO:0004420', 'hydroxymethylglutaryl-CoA reductase (NADPH) activity'),
('GO:0004421', 'hydroxymethylglutaryl-CoA synthase activity'),
('GO:0004424', 'imidazoleglycerol-phosphate dehydratase activity'),
('GO:0004425', 'indole-3-glycerol-phosphate synthase activity'),
('GO:0004427', 'inorganic diphosphate phosphatase activity'),
('GO:0004435', 'phosphatidylinositol phospholipase C activity'),
('GO:0004450', 'isocitrate dehydrogenase (NADP+) activity'),
('GO:0004451', 'isocitrate lyase activity'),
('GO:0004455', 'ketol-acid reductoisomerase activity'),
('GO:0004471', 'malate dehydrogenase (decarboxylating) (NAD+) activity'),
('GO:0004474', 'malate synthase activity'),
('GO:0004476', 'mannose-6-phosphate isomerase activity'),
('GO:0004478', 'methionine adenosyltransferase activity'),
('GO:0004482', 'mRNA (guanine-N7-)-methyltransferase activity'),
('GO:0004484', 'mRNA guanylyltransferase activity'),
('GO:0004488', 'methylenetetrahydrofolate dehydrogenase (NADP+) activity'),
('GO:0004489', 'methylenetetrahydrofolate reductase (NAD(P)H) activity'),
('GO:0004497', 'monooxygenase activity'),
('GO:0004499', 'N,N-dimethylaniline monooxygenase activity'),
('GO:0004506', 'squalene monooxygenase activity'),
('GO:0004511', 'tyrosine 3-monooxygenase activity'),
('GO:0004512', 'inositol-3-phosphate synthase activity'),
('GO:0004514', 'nicotinate-nucleotide diphosphorylase (carboxylating) activity'),
('GO:0004517', 'nitric-oxide synthase activity'),
('GO:0004518', 'nuclease activity'),
('GO:0004519', 'endonuclease activity'),
('GO:0004520', 'DNA endonuclease activity'),
('GO:0004521', 'RNA endonuclease activity'),
('GO:0004523', 'RNA-DNA hybrid ribonuclease activity'),
('GO:0004525', 'ribonuclease III activity'),
('GO:0004526', 'ribonuclease P activity'),
('GO:0004527', 'exonuclease activity'),
('GO:0004531', 'deoxyribonuclease II activity'),
('GO:0004532', 'RNA exonuclease activity'),
('GO:0004535', 'poly(A)-specific ribonuclease activity'),
('GO:0004540', 'RNA nuclease activity'),
('GO:0004553', 'hydrolase activity, hydrolyzing O-glycosyl compounds'),
('GO:0004555', 'alpha,alpha-trehalase activity'),
('GO:0004556', 'alpha-amylase activity'),
('GO:0004559', 'alpha-mannosidase activity'),
('GO:0004560', 'alpha-L-fucosidase activity'),
('GO:0004564', 'beta-fructofuranosidase activity'),
('GO:0004565', 'beta-galactosidase activity'),
('GO:0004568', 'chitinase activity'),
('GO:0004571', 'mannosyl-oligosaccharide 1,2-alpha-mannosidase activity'),
('GO:0004576', 'oligosaccharyl transferase activity'),
('GO:0004590', 'orotidine-5''-phosphate decarboxylase activity'),
('GO:0004592', 'pantoate-beta-alanine ligase activity'),
('GO:0004594', 'pantothenate kinase activity'),
('GO:0004601', 'peroxidase activity'),
('GO:0004602', 'glutathione peroxidase activity'),
('GO:0004605', 'phosphatidate cytidylyltransferase activity'),
('GO:0004609', 'phosphatidylserine decarboxylase activity'),
('GO:0004611', 'phosphoenolpyruvate carboxykinase activity'),
('GO:0004612', 'phosphoenolpyruvate carboxykinase (ATP) activity'),
('GO:0004615', 'phosphomannomutase activity'),
('GO:0004616', 'phosphogluconate dehydrogenase (decarboxylating) activity'),
('GO:0004618', 'phosphoglycerate kinase activity'),
('GO:0004619', 'phosphoglycerate mutase activity'),
('GO:0004620', 'phospholipase activity'),
('GO:0004623', 'phospholipase A2 activity'),
('GO:0004629', 'phospholipase C activity'),
('GO:0004631', 'phosphomevalonate kinase activity'),
('GO:0004635', 'phosphoribosyl-AMP cyclohydrolase activity'),
('GO:0004637', 'phosphoribosylamine-glycine ligase activity'),
('GO:0004640', 'phosphoribosylanthranilate isomerase activity'),
('GO:0004643', 'phosphoribosylaminoimidazolecarboxamide formyltransferase activity'),
('GO:0004649', 'poly(ADP-ribose) glycohydrolase activity'),
('GO:0004650', 'polygalacturonase activity'),
('GO:0004651', 'polynucleotide 5''-phosphatase activity'),
('GO:0004655', 'porphobilinogen synthase activity'),
('GO:0004656', 'procollagen-proline 4-dioxygenase activity'),
('GO:0004658', 'propionyl-CoA carboxylase activity'),
('GO:0004663', 'Rab geranylgeranyltransferase activity'),
('GO:0004664', 'prephenate dehydratase activity'),
('GO:0004668', 'protein-arginine deiminase activity'),
('GO:0004671', 'protein C-terminal S-isoprenylcysteine carboxyl O-methyltransferase activity'),
('GO:0004672', 'protein kinase activity'),
('GO:0004673', 'protein histidine kinase activity'),
('GO:0004674', 'protein serine/threonine kinase activity'),
('GO:0004675', 'transmembrane receptor protein serine/threonine kinase activity'),
('GO:0004683', 'calmodulin-dependent protein kinase activity'),
('GO:0004713', 'protein tyrosine kinase activity'),
('GO:0004714', 'transmembrane receptor protein tyrosine kinase activity'),
('GO:0004715', 'non-membrane spanning protein tyrosine kinase activity'),
('GO:0004721', 'phosphoprotein phosphatase activity'),
('GO:0004725', 'protein tyrosine phosphatase activity'),
('GO:0004730', 'pseudouridylate synthase activity'),
('GO:0004743', 'pyruvate kinase activity'),
('GO:0004748', 'ribonucleoside-diphosphate reductase activity, thioredoxin disulfide as acceptor'),
('GO:0004749', 'ribose phosphate diphosphokinase activity'),
('GO:0004751', 'ribose-5-phosphate isomerase activity'),
('GO:0004764', 'shikimate 3-dehydrogenase (NADP+) activity'),
('GO:0004781', 'sulfate adenylyltransferase (ATP) activity'),
('GO:0004784', 'superoxide dismutase activity'),
('GO:0004788', 'thiamine diphosphokinase activity'),
('GO:0004789', 'thiamine-phosphate diphosphorylase activity'),
('GO:0004797', 'thymidine kinase activity'),
('GO:0004800', 'thyroxine 5''-deiodinase activity'),
('GO:0004803', 'transposase activity'),
('GO:0004806', 'triglyceride lipase activity'),
('GO:0004807', 'triose-phosphate isomerase activity'),
('GO:0004809', 'tRNA (guanine-N2-)-methyltransferase activity'),
('GO:0004810', 'CCA tRNA nucleotidyltransferase activity'),
('GO:0004812', 'aminoacyl-tRNA ligase activity'),
('GO:0004813', 'alanine-tRNA ligase activity'),
('GO:0004814', 'arginine-tRNA ligase activity'),
('GO:0004817', 'cysteine-tRNA ligase activity'),
('GO:0004819', 'glutamine-tRNA ligase activity'),
('GO:0004820', 'glycine-tRNA ligase activity'),
('GO:0004824', 'lysine-tRNA ligase activity'),
('GO:0004826', 'phenylalanine-tRNA ligase activity'),
('GO:0004827', 'proline-tRNA ligase activity'),
('GO:0004829', 'threonine-tRNA ligase activity'),
('GO:0004832', 'valine-tRNA ligase activity'),
('GO:0004833', 'tryptophan 2,3-dioxygenase activity'),
('GO:0004834', 'tryptophan synthase activity'),
('GO:0004838', 'L-tyrosine:2-oxoglutarate aminotransferase activity'),
('GO:0004842', 'ubiquitin-protein transferase activity'),
('GO:0004843', 'cysteine-type deubiquitinase activity'),
('GO:0004852', 'uroporphyrinogen-III synthase activity'),
('GO:0004853', 'uroporphyrinogen decarboxylase activity'),
('GO:0004857', 'enzyme inhibitor activity'),
('GO:0004859', 'phospholipase inhibitor activity'),
('GO:0004860', 'protein kinase inhibitor activity'),
('GO:0004861', 'cyclin-dependent protein serine/threonine kinase inhibitor activity'),
('GO:0004862', 'cAMP-dependent protein kinase inhibitor activity'),
('GO:0004864', 'protein phosphatase inhibitor activity'),
('GO:0004865', 'protein serine/threonine phosphatase inhibitor activity'),
('GO:0004866', 'endopeptidase inhibitor activity'),
('GO:0004867', 'serine-type endopeptidase inhibitor activity'),
('GO:0004869', 'cysteine-type endopeptidase inhibitor activity'),
('GO:0004879', 'nuclear receptor activity'),
('GO:0004883', 'nuclear glucocorticoid receptor activity'),
('GO:0004888', 'transmembrane signaling receptor activity'),
('GO:0004896', 'cytokine receptor activity'),
('GO:0004930', 'G protein-coupled receptor activity'),
('GO:0004932', 'mating-type factor pheromone receptor activity'),
('GO:0004970', 'ionotropic glutamate receptor activity'),
('GO:0004984', 'olfactory receptor activity'),
('GO:0005026', 'transforming growth factor beta receptor activity, type II'),
('GO:0005044', 'scavenger receptor activity'),
('GO:0005047', 'signal recognition particle binding'),
('GO:0005049', 'nuclear export signal receptor activity'),
('GO:0005085', 'guanyl-nucleotide exchange factor activity'),
('GO:0005092', 'GDP-dissociation inhibitor activity'),
('GO:0005094', 'Rho GDP-dissociation inhibitor activity'),
('GO:0005096', 'GTPase activator activity'),
('GO:0005102', 'signaling receptor binding'),
('GO:0005125', 'cytokine activity'),
('GO:0005126', 'cytokine receptor binding'),
('GO:0005127', 'ciliary neurotrophic factor receptor binding'),
('GO:0005129', 'granulocyte macrophage colony-stimulating factor receptor binding'),
('GO:0005133', 'type II interferon receptor binding'),
('GO:0005134', 'interleukin-2 receptor binding'),
('GO:0005135', 'interleukin-3 receptor binding'),
('GO:0005136', 'interleukin-4 receptor binding'),
('GO:0005137', 'interleukin-5 receptor binding'),
('GO:0005138', 'interleukin-6 receptor binding'),
('GO:0005139', 'interleukin-7 receptor binding'),
('GO:0005143', 'interleukin-12 receptor binding'),
('GO:0005149', 'interleukin-1 receptor binding'),
('GO:0005157', 'macrophage colony-stimulating factor receptor binding'),
('GO:0005164', 'tumor necrosis factor receptor binding'),
('GO:0005173', 'stem cell factor receptor binding'),
('GO:0005179', 'hormone activity'),
('GO:0005184', 'neuropeptide hormone activity'),
('GO:0005185', 'neurohypophyseal hormone activity'),
('GO:0005186', 'pheromone activity'),
('GO:0005198', 'structural molecule activity'),
('GO:0005199', 'structural constituent of cell wall'),
('GO:0005200', 'structural constituent of cytoskeleton'),
('GO:0005201', 'extracellular matrix structural constituent'),
('GO:0005212', 'structural constituent of eye lens'),
('GO:0005213', 'structural constituent of egg chorion'),
('GO:0005216', 'monoatomic ion channel activity'),
('GO:0005219', 'ryanodine-sensitive calcium-release channel activity'),
('GO:0005230', 'extracellular ligand-gated monoatomic ion channel activity'),
('GO:0005244', 'voltage-gated monoatomic ion channel activity'),
('GO:0005247', 'voltage-gated chloride channel activity'),
('GO:0005248', 'voltage-gated sodium channel activity'),
('GO:0005249', 'voltage-gated potassium channel activity'),
('GO:0005253', 'monoatomic anion channel activity'),
('GO:0005254', 'chloride channel activity'),
('GO:0005261', 'monoatomic cation channel activity'),
('GO:0005262', 'calcium channel activity'),
('GO:0005267', 'potassium channel activity'),
('GO:0005272', 'sodium channel activity'),
('GO:0005283', 'amino acid:sodium symporter activity'),
('GO:0005315', 'inorganic phosphate transmembrane transporter activity'),
('GO:0005319', 'lipid transporter activity'),
('GO:0005335', 'serotonin:sodium:chloride symporter activity'),
('GO:0005337', 'nucleoside transmembrane transporter activity'),
('GO:0005351', 'carbohydrate:proton symporter activity'),
('GO:0005375', 'copper ion transmembrane transporter activity'),
('GO:0005381', 'iron ion transmembrane transporter activity'),
('GO:0005384', 'manganese ion transmembrane transporter activity'),
('GO:0005388', 'P-type calcium transporter activity'),
('GO:0005436', 'sodium:phosphate symporter activity'),
('GO:0005471', 'ATP:ADP antiporter activity'),
('GO:0005484', 'SNAP receptor activity'),
('GO:0005496', 'steroid binding'),
('GO:0005506', 'iron ion binding'),
('GO:0005507', 'copper ion binding'),
('GO:0005509', 'calcium ion binding'),
('GO:0005515', 'protein binding'),
('GO:0005516', 'calmodulin binding'),
('GO:0005518', 'collagen binding'),
('GO:0005523', 'tropomyosin binding'),
('GO:0005524', 'ATP binding'),
('GO:0005525', 'GTP binding'),
('GO:0005536', 'glucose binding'),
('GO:0005537', 'mannose binding'),
('GO:0005540', 'hyaluronic acid binding'),
('GO:0005542', 'folic acid binding'),
('GO:0005543', 'phospholipid binding'),
('GO:0005544', 'calcium-dependent phospholipid binding'),
('GO:0005546', 'phosphatidylinositol-4,5-bisphosphate binding'),
('GO:0005548', 'phospholipid transporter activity'),
('GO:0005549', 'odorant binding'),
('GO:0005576', 'extracellular region'),
('GO:0005577', 'fibrinogen complex'),
('GO:0005581', 'collagen trimer'),
('GO:0005615', 'extracellular space'),
('GO:0005618', 'cell wall'),
('GO:0005634', 'nucleus'),
('GO:0005637', 'nuclear inner membrane'),
('GO:0005643', 'nuclear pore'),
('GO:0005655', 'nucleolar ribonuclease P complex'),
('GO:0005663', 'DNA replication factor C complex'),
('GO:0005664', 'nuclear origin of replication recognition complex'),
('GO:0005666', 'RNA polymerase III complex'),
('GO:0005667', 'transcription regulator complex'),
('GO:0005668', 'RNA polymerase transcription factor SL1 complex'),
('GO:0005669', 'transcription factor TFIID complex'),
('GO:0005672', 'transcription factor TFIIA complex'),
('GO:0005680', 'anaphase-promoting complex'),
('GO:0005681', 'spliceosomal complex'),
('GO:0005685', 'U1 snRNP'),
('GO:0005694', 'chromosome'),
('GO:0005697', 'telomerase holoenzyme complex'),
('GO:0005727', 'extrachromosomal circular DNA'),
('GO:0005730', 'nucleolus'),
('GO:0005732', 'sno(s)RNA-containing ribonucleoprotein complex'),
('GO:0005737', 'cytoplasm'),
('GO:0005739', 'mitochondrion'),
('GO:0005740', 'mitochondrial envelope'),
('GO:0005741', 'mitochondrial outer membrane'),
('GO:0005742', 'mitochondrial outer membrane translocase complex'),
('GO:0005743', 'mitochondrial inner membrane'),
('GO:0005744', 'TIM23 mitochondrial import inner membrane translocase complex'),
('GO:0005746', 'mitochondrial respirasome'),
('GO:0005747', 'mitochondrial respiratory chain complex I'),
('GO:0005750', 'mitochondrial respiratory chain complex III'),
('GO:0005751', 'mitochondrial respiratory chain complex IV'),
('GO:0005753', 'mitochondrial proton-transporting ATP synthase complex'),
('GO:0005758', 'mitochondrial intermembrane space'),
('GO:0005759', 'mitochondrial matrix'),
('GO:0005761', 'mitochondrial ribosome'),
('GO:0005762', 'mitochondrial large ribosomal subunit'),
('GO:0005763', 'mitochondrial small ribosomal subunit'),
('GO:0005764', 'lysosome'),
('GO:0005765', 'lysosomal membrane'),
('GO:0005770', 'late endosome'),
('GO:0005773', 'vacuole'),
('GO:0005777', 'peroxisome'),
('GO:0005778', 'peroxisomal membrane'),
('GO:0005780', 'extrinsic component of intraperoxisomal membrane'),
('GO:0005783', 'endoplasmic reticulum'),
('GO:0005785', 'signal recognition particle receptor complex'),
('GO:0005786', 'signal recognition particle, endoplasmic reticulum targeting'),
('GO:0005787', 'signal peptidase complex'),
('GO:0005788', 'endoplasmic reticulum lumen'),
('GO:0005789', 'endoplasmic reticulum membrane'),
('GO:0005794', 'Golgi apparatus'),
('GO:0005795', 'Golgi stack'),
('GO:0005801', 'cis-Golgi network'),
('GO:0005802', 'trans-Golgi network'),
('GO:0005811', 'lipid droplet'),
('GO:0005813', 'centrosome'),
('GO:0005815', 'microtubule organizing center'),
('GO:0005819', 'spindle'),
('GO:0005823', 'central plaque of spindle pole body'),
('GO:0005829', 'cytosol'),
('GO:0005839', 'proteasome core complex'),
('GO:0005840', 'ribosome'),
('GO:0005845', 'mRNA cap binding complex'),
('GO:0005846', 'nuclear cap binding complex'),
('GO:0005849', 'mRNA cleavage factor complex'),
('GO:0005852', 'eukaryotic translation initiation factor 3 complex'),
('GO:0005856', 'cytoskeleton'),
('GO:0005861', 'troponin complex'),
('GO:0005868', 'cytoplasmic dynein complex'),
('GO:0005869', 'dynactin complex'),
('GO:0005874', 'microtubule'),
('GO:0005876', 'spindle microtubule'),
('GO:0005879', 'axonemal microtubule'),
('GO:0005882', 'intermediate filament'),
('GO:0005885', 'Arp2/3 protein complex'),
('GO:0005886', 'plasma membrane'),
('GO:0005890', 'sodium:potassium-exchanging ATPase complex'),
('GO:0005892', 'acetylcholine-gated channel complex'),
('GO:0005911', 'cell-cell junction'),
('GO:0005922', 'connexin complex'),
('GO:0005925', 'focal adhesion'),
('GO:0005938', 'cell cortex'),
('GO:0005940', 'septin ring'),
('GO:0005944', 'phosphatidylinositol 3-kinase complex, class IB'),
('GO:0005956', 'protein kinase CK2 complex'),
('GO:0005975', 'carbohydrate metabolic process'),
('GO:0005976', 'polysaccharide metabolic process'),
('GO:0005978', 'glycogen biosynthetic process'),
('GO:0005985', 'sucrose metabolic process'),
('GO:0005986', 'sucrose biosynthetic process'),
('GO:0005991', 'trehalose metabolic process'),
('GO:0005992', 'trehalose biosynthetic process'),
('GO:0005993', 'trehalose catabolic process'),
('GO:0005996', 'monosaccharide metabolic process'),
('GO:0006000', 'fructose metabolic process'),
('GO:0006004', 'fucose metabolic process'),
('GO:0006006', 'glucose metabolic process'),
('GO:0006007', 'glucose catabolic process'),
('GO:0006011', 'UDP-glucose metabolic process'),
('GO:0006012', 'galactose metabolic process'),
('GO:0006013', 'mannose metabolic process'),
('GO:0006021', 'inositol biosynthetic process'),
('GO:0006031', 'chitin biosynthetic process'),
('GO:0006032', 'chitin catabolic process'),
('GO:0006040', 'amino sugar metabolic process'),
('GO:0006051', 'N-acetylmannosamine metabolic process'),
('GO:0006064', 'glucuronate catabolic process'),
('GO:0006071', 'glycerol metabolic process'),
('GO:0006075', '(1->3)-beta-D-glucan biosynthetic process'),
('GO:0006078', '(1->6)-beta-D-glucan biosynthetic process'),
('GO:0006084', 'acetyl-CoA metabolic process'),
('GO:0006094', 'gluconeogenesis'),
('GO:0006096', 'glycolytic process'),
('GO:0006097', 'glyoxylate cycle'),
('GO:0006098', 'pentose-phosphate shunt'),
('GO:0006099', 'tricarboxylic acid cycle'),
('GO:0006103', '2-oxoglutarate metabolic process'),
('GO:0006106', 'fumarate metabolic process'),
('GO:0006109', 'regulation of carbohydrate metabolic process'),
('GO:0006112', 'energy reserve metabolic process'),
('GO:0006120', 'mitochondrial electron transport, NADH to ubiquinone'),
('GO:0006122', 'mitochondrial electron transport, ubiquinol to cytochrome c'),
('GO:0006123', 'mitochondrial electron transport, cytochrome c to oxygen'),
('GO:0006139', 'nucleobase-containing compound metabolic process'),
('GO:0006164', 'purine nucleotide biosynthetic process'),
('GO:0006171', 'cAMP biosynthetic process'),
('GO:0006177', 'GMP biosynthetic process'),
('GO:0006182', 'cGMP biosynthetic process'),
('GO:0006188', 'IMP biosynthetic process'),
('GO:0006189', '''de novo'' IMP biosynthetic process'),
('GO:0006190', 'inosine salvage'),
('GO:0006198', 'cAMP catabolic process'),
('GO:0006207', '''de novo'' pyrimidine nucleobase biosynthetic process'),
('GO:0006213', 'pyrimidine nucleoside metabolic process'),
('GO:0006221', 'pyrimidine nucleotide biosynthetic process'),
('GO:0006230', 'TMP biosynthetic process'),
('GO:0006231', 'dTMP biosynthetic process'),
('GO:0006259', 'DNA metabolic process'),
('GO:0006260', 'DNA replication'),
('GO:0006265', 'DNA topological change'),
('GO:0006268', 'DNA unwinding involved in DNA replication'),
('GO:0006269', 'DNA replication, synthesis of RNA primer'),
('GO:0006270', 'DNA replication initiation'),
('GO:0006274', 'DNA replication termination'),
('GO:0006275', 'regulation of DNA replication'),
('GO:0006276', 'plasmid maintenance'),
('GO:0006278', 'RNA-templated DNA biosynthetic process'),
('GO:0006281', 'DNA repair'),
('GO:0006282', 'regulation of DNA repair'),
('GO:0006284', 'base-excision repair'),
('GO:0006289', 'nucleotide-excision repair'),
('GO:0006298', 'mismatch repair'),
('GO:0006302', 'double-strand break repair'),
('GO:0006303', 'double-strand break repair via nonhomologous end joining'),
('GO:0006304', 'DNA modification'),
('GO:0006306', 'DNA methylation'),
('GO:0006308', 'DNA catabolic process'),
('GO:0006309', 'apoptotic DNA fragmentation'),
('GO:0006310', 'DNA recombination'),
('GO:0006313', 'DNA transposition'),
('GO:0006325', 'chromatin organization'),
('GO:0006334', 'nucleosome assembly'),
('GO:0006338', 'chromatin remodeling'),
('GO:0006351', 'DNA-templated transcription'),
('GO:0006352', 'DNA-templated transcription initiation'),
('GO:0006353', 'DNA-templated transcription termination'),
('GO:0006354', 'DNA-templated transcription elongation'),
('GO:0006355', 'regulation of DNA-templated transcription'),
('GO:0006357', 'regulation of transcription by RNA polymerase II'),
('GO:0006360', 'transcription by RNA polymerase I'),
('GO:0006361', 'transcription initiation at RNA polymerase I promoter'),
('GO:0006364', 'rRNA processing'),
('GO:0006366', 'transcription by RNA polymerase II'),
('GO:0006367', 'transcription initiation at RNA polymerase II promoter'),
('GO:0006368', 'transcription elongation by RNA polymerase II'),
('GO:0006369', 'termination of RNA polymerase II transcription'),
('GO:0006370', '7-methylguanosine mRNA capping'),
('GO:0006376', 'mRNA splice site recognition'),
('GO:0006378', 'mRNA polyadenylation'),
('GO:0006383', 'transcription by RNA polymerase III'),
('GO:0006384', 'transcription initiation at RNA polymerase III promoter'),
('GO:0006388', 'tRNA splicing, via endonucleolytic cleavage and ligation'),
('GO:0006396', 'RNA processing'),
('GO:0006397', 'mRNA processing'),
('GO:0006400', 'tRNA modification'),
('GO:0006401', 'RNA catabolic process'),
('GO:0006402', 'mRNA catabolic process'),
('GO:0006406', 'mRNA export from nucleus'),
('GO:0006412', 'translation'),
('GO:0006413', 'translational initiation'),
('GO:0006414', 'translational elongation'),
('GO:0006415', 'translational termination'),
('GO:0006417', 'regulation of translation'),
('GO:0006418', 'tRNA aminoacylation for protein translation'),
('GO:0006419', 'alanyl-tRNA aminoacylation'),
('GO:0006420', 'arginyl-tRNA aminoacylation'),
('GO:0006423', 'cysteinyl-tRNA aminoacylation'),
('GO:0006425', 'glutaminyl-tRNA aminoacylation'),
('GO:0006426', 'glycyl-tRNA aminoacylation'),
('GO:0006430', 'lysyl-tRNA aminoacylation'),
('GO:0006432', 'phenylalanyl-tRNA aminoacylation'),
('GO:0006433', 'prolyl-tRNA aminoacylation'),
('GO:0006438', 'valyl-tRNA aminoacylation'),
('GO:0006450', 'regulation of translational fidelity'),
('GO:0006457', 'protein folding'),
('GO:0006458', '''de novo'' protein folding'),
('GO:0006465', 'signal peptide processing'),
('GO:0006468', 'protein phosphorylation'),
('GO:0006469', 'negative regulation of protein kinase activity'),
('GO:0006470', 'protein dephosphorylation'),
('GO:0006480', 'N-terminal protein amino acid methylation'),
('GO:0006481', 'C-terminal protein methylation'),
('GO:0006486', 'protein glycosylation'),
('GO:0006487', 'protein N-linked glycosylation'),
('GO:0006488', 'dolichol-linked oligosaccharide biosynthetic process'),
('GO:0006493', 'protein O-linked glycosylation'),
('GO:0006506', 'GPI anchor biosynthetic process'),
('GO:0006508', 'proteolysis'),
('GO:0006511', 'ubiquitin-dependent protein catabolic process'),
('GO:0006516', 'glycoprotein catabolic process'),
('GO:0006520', 'amino acid metabolic process'),
('GO:0006523', 'alanine biosynthetic process'),
('GO:0006525', 'arginine metabolic process'),
('GO:0006526', 'arginine biosynthetic process'),
('GO:0006527', 'arginine catabolic process'),
('GO:0006529', 'asparagine biosynthetic process'),
('GO:0006535', 'cysteine biosynthetic process from serine'),
('GO:0006537', 'glutamate biosynthetic process'),
('GO:0006541', 'glutamine metabolic process'),
('GO:0006542', 'glutamine biosynthetic process'),
('GO:0006546', 'glycine catabolic process'),
('GO:0006547', 'histidine metabolic process'),
('GO:0006555', 'methionine metabolic process'),
('GO:0006556', 'S-adenosylmethionine biosynthetic process'),
('GO:0006568', 'tryptophan metabolic process'),
('GO:0006576', 'biogenic amine metabolic process'),
('GO:0006582', 'melanin metabolic process'),
('GO:0006597', 'spermine biosynthetic process'),
('GO:0006605', 'protein targeting'),
('GO:0006606', 'protein import into nucleus'),
('GO:0006614', 'SRP-dependent cotranslational protein targeting to membrane'),
('GO:0006621', 'protein retention in ER lumen'),
('GO:0006629', 'lipid metabolic process'),
('GO:0006631', 'fatty acid metabolic process'),
('GO:0006633', 'fatty acid biosynthetic process'),
('GO:0006635', 'fatty acid beta-oxidation'),
('GO:0006644', 'phospholipid metabolic process'),
('GO:0006659', 'phosphatidylserine biosynthetic process'),
('GO:0006672', 'ceramide metabolic process'),
('GO:0006673', 'inositol phosphoceramide metabolic process'),
('GO:0006683', 'galactosylceramide catabolic process'),
('GO:0006694', 'steroid biosynthetic process'),
('GO:0006695', 'cholesterol biosynthetic process'),
('GO:0006725', 'cellular aromatic compound metabolic process'),
('GO:0006729', 'tetrahydrobiopterin biosynthetic process'),
('GO:0006730', 'one-carbon metabolic process'),
('GO:0006741', 'NADP biosynthetic process'),
('GO:0006744', 'ubiquinone biosynthetic process'),
('GO:0006750', 'glutathione biosynthetic process'),
('GO:0006751', 'glutathione catabolic process'),
('GO:0006754', 'ATP biosynthetic process'),
('GO:0006760', 'folic acid-containing compound metabolic process'),
('GO:0006777', 'Mo-molybdopterin cofactor biosynthetic process'),
('GO:0006778', 'porphyrin-containing compound metabolic process'),
('GO:0006779', 'porphyrin-containing compound biosynthetic process'),
('GO:0006783', 'heme biosynthetic process'),
('GO:0006784', 'heme A biosynthetic process'),
('GO:0006788', 'heme oxidation'),
('GO:0006796', 'phosphate-containing compound metabolic process'),
('GO:0006801', 'superoxide metabolic process'),
('GO:0006807', 'nitrogen compound metabolic process'),
('GO:0006808', 'regulation of nitrogen utilization'),
('GO:0006809', 'nitric oxide biosynthetic process'),
('GO:0006811', 'monoatomic ion transport'),
('GO:0006812', 'monoatomic cation transport'),
('GO:0006813', 'potassium ion transport'),
('GO:0006814', 'sodium ion transport'),
('GO:0006817', 'phosphate ion transport'),
('GO:0006820', 'monoatomic anion transport'),
('GO:0006821', 'chloride transport'),
('GO:0006824', 'cobalt ion transport'),
('GO:0006826', 'iron ion transport'),
('GO:0006836', 'neurotransmitter transport'),
('GO:0006850', 'mitochondrial pyruvate transmembrane transport'),
('GO:0006862', 'nucleotide transport'),
('GO:0006865', 'amino acid transport'),
('GO:0006869', 'lipid transport'),
('GO:0006874', 'intracellular calcium ion homeostasis'),
('GO:0006878', 'intracellular copper ion homeostasis'),
('GO:0006879', 'intracellular iron ion homeostasis'),
('GO:0006885', 'regulation of pH'),
('GO:0006886', 'intracellular protein transport'),
('GO:0006887', 'exocytosis'),
('GO:0006888', 'endoplasmic reticulum to Golgi vesicle-mediated transport'),
('GO:0006890', 'retrograde vesicle-mediated transport, Golgi to endoplasmic reticulum'),
('GO:0006891', 'intra-Golgi vesicle-mediated transport'),
('GO:0006897', 'endocytosis'),
('GO:0006898', 'receptor-mediated endocytosis'),
('GO:0006904', 'vesicle docking involved in exocytosis'),
('GO:0006913', 'nucleocytoplasmic transport'),
('GO:0006914', 'autophagy'),
('GO:0006915', 'apoptotic process'),
('GO:0006919', 'activation of cysteine-type endopeptidase activity involved in apoptotic process'),
('GO:0006935', 'chemotaxis'),
('GO:0006940', 'regulation of smooth muscle contraction'),
('GO:0006952', 'defense response'),
('GO:0006954', 'inflammatory response'),
('GO:0006955', 'immune response'),
('GO:0006974', 'DNA damage response'),
('GO:0006979', 'response to oxidative stress'),
('GO:0006986', 'response to unfolded protein'),
('GO:0006996', 'organelle organization'),
('GO:0007004', 'telomere maintenance via telomerase'),
('GO:0007005', 'mitochondrion organization'),
('GO:0007008', 'outer mitochondrial membrane organization'),
('GO:0007009', 'plasma membrane organization'),
('GO:0007010', 'cytoskeleton organization'),
('GO:0007015', 'actin filament organization'),
('GO:0007017', 'microtubule-based process'),
('GO:0007018', 'microtubule-based movement'),
('GO:0007021', 'tubulin complex assembly'),
('GO:0007023', 'post-chaperonin tubulin folding pathway'),
('GO:0007029', 'endoplasmic reticulum organization'),
('GO:0007030', 'Golgi organization'),
('GO:0007031', 'peroxisome organization'),
('GO:0007034', 'vacuolar transport'),
('GO:0007040', 'lysosome organization'),
('GO:0007041', 'lysosomal transport'),
('GO:0007052', 'mitotic spindle organization'),
('GO:0007059', 'chromosome segregation'),
('GO:0007064', 'mitotic sister chromatid cohesion'),
('GO:0007076', 'mitotic chromosome condensation'),
('GO:0007093', 'mitotic cell cycle checkpoint signaling'),
('GO:0007094', 'mitotic spindle assembly checkpoint signaling'),
('GO:0007096', 'regulation of exit from mitosis'),
('GO:0007098', 'centrosome cycle'),
('GO:0007099', 'centriole replication'),
('GO:0007130', 'synaptonemal complex assembly'),
('GO:0007131', 'reciprocal meiotic recombination'),
('GO:0007154', 'cell communication'),
('GO:0007155', 'cell adhesion'),
('GO:0007156', 'homophilic cell adhesion via plasma membrane adhesion molecules'),
('GO:0007160', 'cell-matrix adhesion'),
('GO:0007165', 'signal transduction'),
('GO:0007166', 'cell surface receptor signaling pathway'),
('GO:0007169', 'transmembrane receptor protein tyrosine kinase signaling pathway'),
('GO:0007172', 'signal complex assembly'),
('GO:0007186', 'G protein-coupled receptor signaling pathway'),
('GO:0007205', 'protein kinase C-activating G protein-coupled receptor signaling pathway'),
('GO:0007212', 'dopamine receptor signaling pathway'),
('GO:0007213', 'G protein-coupled acetylcholine receptor signaling pathway'),
('GO:0007217', 'tachykinin receptor signaling pathway'),
('GO:0007218', 'neuropeptide signaling pathway'),
('GO:0007219', 'Notch signaling pathway'),
('GO:0007224', 'smoothened signaling pathway'),
('GO:0007259', 'receptor signaling pathway via JAK-STAT'),
('GO:0007264', 'small GTPase mediated signal transduction'),
('GO:0007266', 'Rho protein signal transduction'),
('GO:0007267', 'cell-cell signaling'),
('GO:0007268', 'chemical synaptic transmission'),
('GO:0007275', 'multicellular organism development'),
('GO:0007276', 'gamete generation'),
('GO:0007283', 'spermatogenesis'),
('GO:0007286', 'spermatid development'),
('GO:0007291', 'sperm individualization'),
('GO:0007304', 'chorion-containing eggshell formation'),
('GO:0007338', 'single fertilization'),
('GO:0007339', 'binding of sperm to zona pellucida'),
('GO:0007340', 'acrosome reaction'),
('GO:0007342', 'fusion of sperm to egg plasma membrane involved in single fertilization'),
('GO:0007349', 'cellularization'),
('GO:0007399', 'nervous system development'),
('GO:0007411', 'axon guidance'),
('GO:0007423', 'sensory organ development'),
('GO:0007531', 'mating type determination'),
('GO:0007586', 'digestion'),
('GO:0007596', 'blood coagulation'),
('GO:0007601', 'visual perception'),
('GO:0007605', 'sensory perception of sound'),
('GO:0007606', 'sensory perception of chemical stimulus'),
('GO:0007608', 'sensory perception of smell'),
('GO:0007617', 'mating behavior'),
('GO:0007618', 'mating'),
('GO:0007623', 'circadian rhythm'),
('GO:0007631', 'feeding behavior'),
('GO:0008009', 'chemokine activity'),
('GO:0008013', 'beta-catenin binding'),
('GO:0008017', 'microtubule binding'),
('GO:0008023', 'transcription elongation factor complex'),
('GO:0008033', 'tRNA processing'),
('GO:0008047', 'enzyme activator activity'),
('GO:0008053', 'mitochondrial fusion'),
('GO:0008061', 'chitin binding'),
('GO:0008073', 'ornithine decarboxylase inhibitor activity'),
('GO:0008076', 'voltage-gated potassium channel complex'),
('GO:0008081', 'phosphoric diester hydrolase activity'),
('GO:0008083', 'growth factor activity'),
('GO:0008092', 'cytoskeletal protein binding'),
('GO:0008093', 'cytoskeletal anchor activity'),
('GO:0008097', '5S rRNA binding'),
('GO:0008107', 'galactoside 2-alpha-L-fucosyltransferase activity'),
('GO:0008108', 'UDP-glucose:hexose-1-phosphate uridylyltransferase activity'),
('GO:0008113', 'peptide-methionine (S)-S-oxide reductase activity'),
('GO:0008115', 'sarcosine oxidase activity'),
('GO:0008121', 'ubiquinol-cytochrome-c reductase activity'),
('GO:0008124', '4-alpha-hydroxytetrahydrobiopterin dehydratase activity'),
('GO:0008131', 'primary amine oxidase activity'),
('GO:0008134', 'transcription factor binding'),
('GO:0008137', 'NADH dehydrogenase (ubiquinone) activity'),
('GO:0008138', 'protein tyrosine/serine/threonine phosphatase activity'),
('GO:0008140', 'cAMP response element binding protein binding'),
('GO:0008146', 'sulfotransferase activity'),
('GO:0008168', 'methyltransferase activity'),
('GO:0008170', 'N-methyltransferase activity'),
('GO:0008171', 'O-methyltransferase activity'),
('GO:0008173', 'RNA methyltransferase activity'),
('GO:0008174', 'mRNA methyltransferase activity'),
('GO:0008175', 'tRNA methyltransferase activity'),
('GO:0008176', 'tRNA (guanine-N7-)-methyltransferase activity'),
('GO:0008180', 'COP9 signalosome'),
('GO:0008184', 'glycogen phosphorylase activity'),
('GO:0008190', 'eukaryotic initiation factor 4E binding'),
('GO:0008191', 'metalloendopeptidase inhibitor activity'),
('GO:0008193', 'tRNA guanylyltransferase activity'),
('GO:0008194', 'UDP-glycosyltransferase activity'),
('GO:0008195', 'phosphatidate phosphatase activity'),
('GO:0008198', 'ferrous iron binding'),
('GO:0008199', 'ferric iron binding'),
('GO:0008200', 'ion channel inhibitor activity'),
('GO:0008201', 'heparin binding'),
('GO:0008203', 'cholesterol metabolic process'),
('GO:0008217', 'regulation of blood pressure'),
('GO:0008218', 'bioluminescence'),
('GO:0008219', 'cell death'),
('GO:0008233', 'peptidase activity'),
('GO:0008234', 'cysteine-type peptidase activity'),
('GO:0008236', 'serine-type peptidase activity'),
('GO:0008237', 'metallopeptidase activity'),
('GO:0008239', 'dipeptidyl-peptidase activity'),
('GO:0008241', 'peptidyl-dipeptidase activity'),
('GO:0008242', 'omega peptidase activity'),
('GO:0008250', 'oligosaccharyltransferase complex'),
('GO:0008251', 'tRNA-specific adenosine deaminase activity'),
('GO:0008253', '5''-nucleotidase activity'),
('GO:0008255', 'ecdysis-triggering hormone activity'),
('GO:0008270', 'zinc ion binding'),
('GO:0008277', 'regulation of G protein-coupled receptor signaling pathway'),
('GO:0008283', 'cell population proliferation'),
('GO:0008284', 'positive regulation of cell population proliferation'),
('GO:0008285', 'negative regulation of cell population proliferation'),
('GO:0008289', 'lipid binding'),
('GO:0008290', 'F-actin capping protein complex'),