diff --git a/.DS_Store b/.DS_Store index 1115253..b8cc137 100644 Binary files a/.DS_Store and b/.DS_Store differ diff --git a/GOSemSim.R b/GOSemSim.R new file mode 100644 index 0000000..5af3602 --- /dev/null +++ b/GOSemSim.R @@ -0,0 +1,35 @@ +library(GOSemSim) +library(org.Dm.eg.db) +#Reference for Fly +d = godata('org.Dm.eg.db', ont = "BP", computeIC = FALSE) +contrast = read.csv("contrasts_mite_life_stages.csv", header = F) +similarities_upregulated = c() +similarities_downregulated = c() + +for (id in 1:length(contrast$V1)) +{ + first_contrast = toString(contrast$V1[id]) + second_contrast = toString(contrast$V2[id]) + + #UP-REGULATED + filename = paste("./GO_enrichment_microbiome_output/contrast_", first_contrast, "_", second_contrast, "_upregulated", ".csv", sep = "") + GO1 = read.csv(filename, header = T) + GO1ID = as.character(GO1[,1]) + + filename = paste("./GO_enrichment_output/contrast_", first_contrast, "_", second_contrast, "_upregulated", ".csv", sep = "") + GO2 = read.csv(filename, header = T) + GO2ID = as.character(GO2[,1]) + + similarities_upregulated[id] = mgoSim(GO1ID, GO2ID, semData = d, measure = "Wang", combine = "BMA") + + #DOWN-REGULATED + filename = paste("./GO_enrichment_microbiome_output/contrast_", first_contrast, "_", second_contrast, "_downregulated", ".csv", sep = "") + GO1 = read.csv(filename, header = T) + GO1ID = as.character(GO1[,1]) + + filename = paste("./GO_enrichment_output/contrast_", first_contrast, "_", second_contrast, "_downregulated", ".csv", sep = "") + GO2 = read.csv(filename, header = T) + GO2ID = as.character(GO2[,1]) + + similarities_downregulated[id] = mgoSim(GO1ID, GO2ID, semData = d, measure = "Wang", combine = "BMA") +} \ No newline at end of file diff --git a/GO_enrichment_Microbiome.R b/GO_enrichment_Microbiome.R index 1722fc3..9fe3cc5 100644 --- a/GO_enrichment_Microbiome.R +++ b/GO_enrichment_Microbiome.R @@ -30,7 +30,7 @@ samples <- tibble(id = dir(file.path("mondet/kallisto"))) %>% mutate(path = past contrast = read.csv("contrasts_mite_life_stages.csv", header = F) gene2GO = readMappings2("GOterm/vdesgoassoc.csv") t2g = read.csv("IDrna_gene_map.csv", header=T) -for (id in 4:length(contrast$V1)) +for (id in 1:length(contrast$V1)) { print(paste(id, "id")) first_contrast = toString(contrast$V1[id]) @@ -44,6 +44,7 @@ for (id in 4:length(contrast$V1)) so = sleuth_wt(so, cond) results_table = sleuth_results(so, cond) #DE_genes = subset(results_table, qval <= 0.05) + #UP-REGULATED up_regulated = subset(results_table, b > 0) #beta postive is up-regulated @@ -62,24 +63,12 @@ for (id in 4:length(contrast$V1)) resultKS <- runTest(sampleGOdata, algorithm = "classic", statistic = "ks") resultKS.elim <- runTest(sampleGOdata, algorithm = "elim", statistic = "ks") - allRes <- GenTable(sampleGOdata, classicFisher = resultFisher, classicKS = resultKS, elimKS = resultKS.elim, orderBy = "elimKS", ranksOf = "classicFisher", topNodes = 5) + allGO = usedGO(sampleGOdata) + allRes <- GenTable(sampleGOdata, classicFisher = resultFisher, classicKS = resultKS, elimKS = resultKS.elim, orderBy = "elimKS", ranksOf = "classicFisher", topNodes = length(allGO)) filename = paste("./GO_enrichment_microbiome_output/contrast_", first_contrast, "_", second_contrast, "_upregulated", ".csv", sep = "") write.csv(allRes, file = filename, row.names = F) - pValue.classic <- score(resultKS) - pValue.elim <- score(resultKS.elim)[names(pValue.classic)] - gstat <- termStat(sampleGOdata, names(pValue.classic)) - gSize <- gstat$Annotated / max(gstat$Annotated) * 4 - gCol <- colMap(gstat$Significant) - - plotfile = paste("./GO_enrichment_microbiome_output/contrast_", first_contrast, "_", second_contrast, "_upregulated", ".png", sep = "") - png(filename=plotfile) - plot(pValue.classic, pValue.elim, xlab = "p-value classic", ylab = "p-value elim", - pch = 19, cex = gSize, col = gCol, main=paste(first_contrast, second_contrast, "up regulated")) - dev.off() - - showSigOfNodes(sampleGOdata, score(resultKS.elim), firstSigNodes = 5, useInfo = 'all') #DOWN-REGULATED down_regulated = subset(results_table, b < 0) #beta negative is down-regulated @@ -99,23 +88,12 @@ for (id in 4:length(contrast$V1)) resultKS <- runTest(sampleGOdata, algorithm = "classic", statistic = "ks") resultKS.elim <- runTest(sampleGOdata, algorithm = "elim", statistic = "ks") - allRes <- GenTable(sampleGOdata, classicFisher = resultFisher, classicKS = resultKS, elimKS = resultKS.elim, orderBy = "elimKS", ranksOf = "classicFisher", topNodes = 5) + allGO = usedGO(sampleGOdata) + allRes <- GenTable(sampleGOdata, classicFisher = resultFisher, classicKS = resultKS, elimKS = resultKS.elim, orderBy = "elimKS", ranksOf = "classicFisher", topNodes = length(allGO)) filename = paste("./GO_enrichment_microbiome_output/contrast_", first_contrast, "_", second_contrast, "_downregulated", ".csv", sep = "") write.csv(allRes, file = filename, row.names = F) - pValue.classic <- score(resultKS) - pValue.elim <- score(resultKS.elim)[names(pValue.classic)] - gstat <- termStat(sampleGOdata, names(pValue.classic)) - gSize <- gstat$Annotated / max(gstat$Annotated) * 4 - gCol <- colMap(gstat$Significant) - - plotfile = paste("./GO_enrichment_microbiome_output/contrast_", first_contrast, "_", second_contrast, "_downregulated", ".png", sep = "") - png(filename=plotfile) - plot(pValue.classic, pValue.elim, xlab = "p-value classic", ylab = "p-value elim", - pch = 19, cex = gSize, col = gCol, main=paste(first_contrast, second_contrast, "down regulated")) - dev.off() - showSigOfNodes(sampleGOdata, score(resultKS.elim), firstSigNodes = 5, useInfo = 'all') } diff --git a/GO_enrichment_comparison_mite.xlsx b/GO_enrichment_comparison_mite.xlsx new file mode 100644 index 0000000..5160406 Binary files /dev/null and b/GO_enrichment_comparison_mite.xlsx differ diff --git a/GO_enrichment_loop.R b/GO_enrichment_loop.R index 0abc1ce..a865491 100644 --- a/GO_enrichment_loop.R +++ b/GO_enrichment_loop.R @@ -50,7 +50,7 @@ for (id in 1:length(contrast$V1)) so = sleuth_wt(so, cond) results_table = sleuth_results(so, cond) DE_genes = subset(results_table, qval <= 0.05) - +#UP-REGULATED up_regulated = subset(results_table, b > 0) #beta postive is up-regulated #Preapre inputs for sampleOGData of class topGOdata @@ -69,27 +69,14 @@ for (id in 1:length(contrast$V1)) #Kolmogorov_smirnov - based on gene scores resultKS <- runTest(sampleGOdata, algorithm = "classic", statistic = "ks") resultKS.elim <- runTest(sampleGOdata, algorithm = "elim", statistic = "ks") - - allRes <- GenTable(sampleGOdata, classicFisher = resultFisher, classicKS = resultKS, elimKS = resultKS.elim, orderBy = "elimKS", ranksOf = "classicFisher", topNodes = 5) + allGO = usedGO(sampleGOdata) + allRes <- GenTable(sampleGOdata, classicFisher = resultFisher, classicKS = resultKS, elimKS = resultKS.elim, orderBy = "elimKS", ranksOf = "classicFisher", topNodes = length(allGO)) filename = paste("./GO_enrichment_output/contrast_", first_contrast, "_", second_contrast, "_upregulated", ".csv", sep = "") write.csv(allRes, file = filename, row.names = F) - pValue.classic <- score(resultKS) - pValue.elim <- score(resultKS.elim)[names(pValue.classic)] - gstat <- termStat(sampleGOdata, names(pValue.classic)) - gSize <- gstat$Annotated / max(gstat$Annotated) * 4 - gCol <- colMap(gstat$Significant) - - plotfile = paste("./GO_enrichment_output/contrast_", first_contrast, "_", second_contrast, "_upregulated", ".png", sep = "") - png(filename=plotfile) - plot(pValue.classic, pValue.elim, xlab = "p-value classic", ylab = "p-value elim", - pch = 19, cex = gSize, col = gCol, main=paste(first_contrast, second_contrast, "up regulated")) - dev.off() - - showSigOfNodes(sampleGOdata, score(resultKS.elim), firstSigNodes = 5, useInfo = 'all') - + #DOWN-REGULATED down_regulated = subset(results_table, b < 0) #beta postive is up-regulated #Preapre inputs for sampleOGData of class topGOdata @@ -108,25 +95,13 @@ for (id in 1:length(contrast$V1)) #Kolmogorov_smirnov - based on gene scores resultKS <- runTest(sampleGOdata, algorithm = "classic", statistic = "ks") resultKS.elim <- runTest(sampleGOdata, algorithm = "elim", statistic = "ks") - - allRes <- GenTable(sampleGOdata, classicFisher = resultFisher, classicKS = resultKS, elimKS = resultKS.elim, orderBy = "elimKS", ranksOf = "classicFisher", topNodes = 5) + allGO = usedGO(sampleGOdata) + allRes <- GenTable(sampleGOdata, classicFisher = resultFisher, classicKS = resultKS, elimKS = resultKS.elim, orderBy = "elimKS", ranksOf = "classicFisher", topNodes = length(allGO)) filename = paste("./GO_enrichment_output/contrast_", first_contrast, "_", second_contrast, "_downregulated", ".csv", sep = "") write.csv(allRes, file = filename, row.names = F) - pValue.classic <- score(resultKS) - pValue.elim <- score(resultKS.elim)[names(pValue.classic)] - gstat <- termStat(sampleGOdata, names(pValue.classic)) - gSize <- gstat$Annotated / max(gstat$Annotated) * 4 - gCol <- colMap(gstat$Significant) - - plotfile = paste("./GO_enrichment_output/contrast_", first_contrast, "_", second_contrast, "_downregulated", ".png", sep = "") - png(filename=plotfile) - plot(pValue.classic, pValue.elim, xlab = "p-value classic", ylab = "p-value elim", - pch = 19, cex = gSize, col = gCol, main=paste(first_contrast, second_contrast, "down regulated")) - dev.off() - showSigOfNodes(sampleGOdata, score(resultKS.elim), firstSigNodes = 5, useInfo = 'all') } diff --git a/GO_enrichment_microbiome_output/contrast_arresting_prelaying_downregulated.csv b/GO_enrichment_microbiome_output/contrast_arresting_prelaying_downregulated.csv index 3377468..5941d63 100644 --- a/GO_enrichment_microbiome_output/contrast_arresting_prelaying_downregulated.csv +++ b/GO_enrichment_microbiome_output/contrast_arresting_prelaying_downregulated.csv @@ -4,3 +4,475 @@ "GO:0018193","peptidyl-amino acid modification",7,4,1.54,2,"0.043","0.031","0.031" "GO:0006457","protein folding",4,3,0.88,1,"0.034","0.033","0.033" "GO:0051179","localization",60,12,13.18,163,"0.728","0.046","0.046" +"GO:0098662","inorganic cation transmembrane transport",5,3,1.1,4,"0.072","0.056","0.056" +"GO:0006518","peptide metabolic process",10,5,2.2,3,"0.044","0.071","0.071" +"GO:0044281","small molecule metabolic process",14,5,3.07,21,"0.169","0.073","0.073" +"GO:0098660","inorganic ion transmembrane transport",6,3,1.32,7,"0.121","0.102","0.102" +"GO:0055085","transmembrane transport",31,8,6.81,41,"0.362","0.106","0.106" +"GO:0070588","calcium ion transmembrane transport",3,2,0.66,9,"0.122","0.115","0.115" +"GO:0006811","ion transport",26,5,5.71,160,"0.721","0.116","0.116" +"GO:0019725","cellular homeostasis",6,3,1.32,8,"0.121","0.130","0.130" +"GO:0006520","cellular amino acid metabolic process",4,2,0.88,24,"0.210","0.130","0.130" +"GO:0044282","small molecule catabolic process",3,2,0.66,10,"0.122","0.149","0.149" +"GO:0043603","cellular amide metabolic process",12,5,2.64,5,"0.095","0.153","0.153" +"GO:0098655","cation transmembrane transport",7,3,1.54,22,"0.180","0.156","0.156" +"GO:1901615","organic hydroxy compound metabolic proce...",4,2,0.88,25,"0.210","0.160","0.160" +"GO:0016569","covalent chromatin modification",3,2,0.66,11,"0.122","0.180","0.180" +"GO:0016570","histone modification",3,2,0.66,12,"0.122","0.180","0.180" +"GO:0048878","chemical homeostasis",3,2,0.66,13,"0.122","0.196","0.196" +"GO:0050801","ion homeostasis",3,2,0.66,14,"0.122","0.196","0.196" +"GO:0055065","metal ion homeostasis",3,2,0.66,15,"0.122","0.196","0.196" +"GO:0055080","cation homeostasis",3,2,0.66,16,"0.122","0.196","0.196" +"GO:0098771","inorganic ion homeostasis",3,2,0.66,17,"0.122","0.196","0.196" +"GO:1901566","organonitrogen compound biosynthetic pro...",16,4,3.51,55,"0.483","0.211","0.211" +"GO:0044267","cellular protein metabolic process",35,11,7.69,6,"0.107","0.212","0.212" +"GO:1901605","alpha-amino acid metabolic process",3,1,0.66,59,"0.527","0.218","0.218" +"GO:0006066","alcohol metabolic process",3,2,0.66,18,"0.122","0.220","0.220" +"GO:0006816","calcium ion transport",4,2,0.88,26,"0.210","0.222","0.222" +"GO:0070838","divalent metal ion transport",4,2,0.88,27,"0.210","0.222","0.222" +"GO:0072511","divalent inorganic cation transport",4,2,0.88,28,"0.210","0.222","0.222" +"GO:0006812","cation transport",14,4,3.07,43,"0.369","0.224","0.224" +"GO:0051301","cell division",3,0,0.66,277,"1.000","0.225","0.225" +"GO:0006082","organic acid metabolic process",5,2,1.1,33,"0.303","0.234","0.234" +"GO:0019752","carboxylic acid metabolic process",5,2,1.1,34,"0.303","0.234","0.234" +"GO:0043436","oxoacid metabolic process",5,2,1.1,35,"0.303","0.234","0.234" +"GO:0019538","protein metabolic process",41,12,9,19,"0.148","0.239","0.239" +"GO:0045454","cell redox homeostasis",4,2,0.88,29,"0.210","0.260","0.260" +"GO:0019439","aromatic compound catabolic process",3,1,0.66,60,"0.527","0.272","0.272" +"GO:0044270","cellular nitrogen compound catabolic pro...",3,1,0.66,61,"0.527","0.272","0.272" +"GO:0046700","heterocycle catabolic process",3,1,0.66,62,"0.527","0.272","0.272" +"GO:1901361","organic cyclic compound catabolic proces...",3,1,0.66,63,"0.527","0.272","0.272" +"GO:0030001","metal ion transport",10,4,2.2,20,"0.153","0.282","0.282" +"GO:0006412","translation",8,3,1.76,30,"0.245","0.286","0.286" +"GO:0043043","peptide biosynthetic process",8,3,1.76,31,"0.245","0.286","0.286" +"GO:0043604","amide biosynthetic process",8,3,1.76,32,"0.245","0.286","0.286" +"GO:1901575","organic substance catabolic process",9,3,1.98,40,"0.313","0.302","0.302" +"GO:0034641","cellular nitrogen compound metabolic pro...",58,14,12.74,46,"0.383","0.302","0.302" +"GO:0046907","intracellular transport",11,2,2.42,166,"0.740","0.309","0.309" +"GO:0051649","establishment of localization in cell",13,2,2.86,194,"0.823","0.315","0.315" +"GO:0009056","catabolic process",12,3,2.64,58,"0.514","0.317","0.317" +"GO:0051641","cellular localization",16,3,3.51,162,"0.726","0.322","0.322" +"GO:0006725","cellular aromatic compound metabolic pro...",50,11,10.98,90,"0.567","0.338","0.338" +"GO:0017144","drug metabolic process",5,2,1.1,36,"0.303","0.341","0.341" +"GO:0042592","homeostatic process",11,4,2.42,23,"0.202","0.345","0.345" +"GO:0034220","ion transmembrane transport",13,4,2.86,39,"0.312","0.347","0.347" +"GO:0016311","dephosphorylation",5,1,1.1,140,"0.714","0.356","0.356" +"GO:0046486","glycerolipid metabolic process",5,1,1.1,141,"0.714","0.356","0.356" +"GO:0046483","heterocycle metabolic process",51,11,11.2,93,"0.600","0.357","0.357" +"GO:0009894","regulation of catabolic process",3,0,0.66,278,"1.000","0.369","0.369" +"GO:0031329","regulation of cellular catabolic process",3,0,0.66,279,"1.000","0.369","0.369" +"GO:1901360","organic cyclic compound metabolic proces...",52,11,11.42,98,"0.632","0.377","0.377" +"GO:0006511","ubiquitin-dependent protein catabolic pr...",4,1,0.88,99,"0.632","0.382","0.382" +"GO:0019941","modification-dependent protein catabolic...",4,1,0.88,100,"0.632","0.382","0.382" +"GO:0030163","protein catabolic process",4,1,0.88,101,"0.632","0.382","0.382" +"GO:0043632","modification-dependent macromolecule cat...",4,1,0.88,102,"0.632","0.382","0.382" +"GO:0044257","cellular protein catabolic process",4,1,0.88,103,"0.632","0.382","0.382" +"GO:0051603","proteolysis involved in cellular protein...",4,1,0.88,104,"0.632","0.382","0.382" +"GO:0034613","cellular protein localization",8,2,1.76,86,"0.556","0.393","0.393" +"GO:0070727","cellular macromolecule localization",8,2,1.76,87,"0.556","0.393","0.393" +"GO:0009108","coenzyme biosynthetic process",3,0,0.66,280,"1.000","0.394","0.394" +"GO:0051188","cofactor biosynthetic process",3,0,0.66,281,"1.000","0.394","0.394" +"GO:1901565","organonitrogen compound catabolic proces...",7,2,1.54,51,"0.479","0.398","0.398" +"GO:0009057","macromolecule catabolic process",5,1,1.1,142,"0.714","0.412","0.412" +"GO:0044265","cellular macromolecule catabolic process",5,1,1.1,143,"0.714","0.412","0.412" +"GO:0044248","cellular catabolic process",11,2,2.42,167,"0.740","0.433","0.433" +"GO:1901564","organonitrogen compound metabolic proces...",53,13,11.64,42,"0.365","0.435","0.435" +"GO:0006650","glycerophospholipid metabolic process",4,1,0.88,105,"0.632","0.439","0.439" +"GO:0048523","negative regulation of cellular process",16,2,3.51,236,"0.905","0.442","0.442" +"GO:0044271","cellular nitrogen compound biosynthetic ...",41,9,9,91,"0.574","0.451","0.451" +"GO:0008152","metabolic process",131,30,28.77,48,"0.405","0.454","0.454" +"GO:0051240","positive regulation of multicellular org...",8,1,1.76,221,"0.868","0.460","0.460" +"GO:0065009","regulation of molecular function",7,1,1.54,197,"0.829","0.506","0.506" +"GO:0006508","proteolysis",10,3,2.2,44,"0.382","0.523","0.523" +"GO:0022402","cell cycle process",3,0,0.66,282,"1.000","0.531","0.531" +"GO:0006396","RNA processing",6,0,1.32,283,"1.000","0.537","0.537" +"GO:0010941","regulation of cell death",4,1,0.88,106,"0.632","0.538","0.538" +"GO:0032269","negative regulation of cellular protein ...",4,1,0.88,107,"0.632","0.538","0.538" +"GO:0042981","regulation of apoptotic process",4,1,0.88,108,"0.632","0.538","0.538" +"GO:0043067","regulation of programmed cell death",4,1,0.88,109,"0.632","0.538","0.538" +"GO:0051248","negative regulation of protein metabolic...",4,1,0.88,110,"0.632","0.538","0.538" +"GO:1901137","carbohydrate derivative biosynthetic pro...",4,1,0.88,111,"0.632","0.538","0.538" +"GO:0015672","monovalent inorganic cation transport",5,2,1.1,37,"0.303","0.539","0.539" +"GO:0046488","phosphatidylinositol metabolic process",3,1,0.66,64,"0.527","0.541","0.541" +"GO:0044237","cellular metabolic process",104,24,22.84,49,"0.414","0.548","0.548" +"GO:0044260","cellular macromolecule metabolic process",69,16,15.15,50,"0.447","0.554","0.554" +"GO:0098656","anion transmembrane transport",7,2,1.54,52,"0.479","0.590","0.590" +"GO:0006886","intracellular protein transport",5,1,1.1,144,"0.714","0.592","0.592" +"GO:0006732","coenzyme metabolic process",4,0,0.88,284,"1.000","0.601","0.601" +"GO:0051186","cofactor metabolic process",4,0,0.88,285,"1.000","0.601","0.601" +"GO:0006139","nucleobase-containing compound metabolic...",45,9,9.88,138,"0.707","0.602","0.602" +"GO:0009607","response to biotic stimulus",5,2,1.1,38,"0.303","0.603","0.603" +"GO:0015698","inorganic anion transport",4,1,0.88,112,"0.632","0.607","0.607" +"GO:0051276","chromosome organization",7,2,1.54,53,"0.479","0.607","0.607" +"GO:0009628","response to abiotic stimulus",4,1,0.88,113,"0.632","0.612","0.612" +"GO:0009791","post-embryonic development",4,1,0.88,114,"0.632","0.612","0.612" +"GO:0007610","behavior",4,0,0.88,286,"1.000","0.612","0.612" +"GO:0050877","nervous system process",4,0,0.88,287,"1.000","0.612","0.612" +"GO:0090407","organophosphate biosynthetic process",4,0,0.88,288,"1.000","0.612","0.612" +"GO:0019637","organophosphate metabolic process",10,1,2.2,244,"0.921","0.615","0.615" +"GO:0006325","chromatin organization",6,2,1.32,47,"0.393","0.617","0.617" +"GO:0032879","regulation of localization",3,1,0.66,65,"0.527","0.623","0.623" +"GO:0032880","regulation of protein localization",3,1,0.66,66,"0.527","0.623","0.623" +"GO:0060341","regulation of cellular localization",3,1,0.66,67,"0.527","0.623","0.623" +"GO:0061024","membrane organization",3,0,0.66,289,"1.000","0.623","0.623" +"GO:0032268","regulation of cellular protein metabolic...",8,2,1.76,88,"0.556","0.625","0.625" +"GO:0016197","endosomal transport",3,1,0.66,68,"0.527","0.640","0.640" +"GO:0051640","organelle localization",3,0,0.66,290,"1.000","0.640","0.640" +"GO:0003333","amino acid transmembrane transport",4,1,0.88,115,"0.632","0.658","0.658" +"GO:0006865","amino acid transport",4,1,0.88,116,"0.632","0.658","0.658" +"GO:1903825","organic acid transmembrane transport",4,1,0.88,117,"0.632","0.658","0.658" +"GO:1905039","carboxylic acid transmembrane transport",4,1,0.88,118,"0.632","0.658","0.658" +"GO:0006464","cellular protein modification process",25,6,5.49,56,"0.483","0.663","0.663" +"GO:0036211","protein modification process",25,6,5.49,57,"0.483","0.663","0.663" +"GO:0006397","mRNA processing",4,0,0.88,291,"1.000","0.664","0.664" +"GO:0009892","negative regulation of metabolic process",10,2,2.2,133,"0.687","0.669","0.669" +"GO:0006807","nitrogen compound metabolic process",92,20,20.21,92,"0.591","0.670","0.670" +"GO:0055114","oxidation-reduction process",10,3,2.2,45,"0.382","0.673","0.673" +"GO:0097164","ammonium ion metabolic process",3,0,0.66,292,"1.000","0.679","0.679" +"GO:0010033","response to organic substance",8,2,1.76,89,"0.556","0.686","0.686" +"GO:0043412","macromolecule modification",26,6,5.71,85,"0.528","0.691","0.691" +"GO:0048519","negative regulation of biological proces...",20,3,4.39,219,"0.861","0.693","0.693" +"GO:0044249","cellular biosynthetic process",50,10,10.98,139,"0.714","0.694","0.694" +"GO:0022613","ribonucleoprotein complex biogenesis",3,1,0.66,69,"0.527","0.701","0.701" +"GO:0031399","regulation of protein modification proce...",6,1,1.32,173,"0.779","0.705","0.705" +"GO:0005975","carbohydrate metabolic process",8,1,1.76,222,"0.868","0.706","0.706" +"GO:0009987","cellular process",151,31,33.16,211,"0.833","0.708","0.708" +"GO:0006413","translational initiation",3,1,0.66,70,"0.527","0.714","0.714" +"GO:0006915","apoptotic process",5,1,1.1,145,"0.714","0.729","0.729" +"GO:0008219","cell death",5,1,1.1,146,"0.714","0.729","0.729" +"GO:0012501","programmed cell death",5,1,1.1,147,"0.714","0.729","0.729" +"GO:0022603","regulation of anatomical structure morph...",5,1,1.1,148,"0.714","0.729","0.729" +"GO:0048646","anatomical structure formation involved ...",5,1,1.1,149,"0.714","0.729","0.729" +"GO:0050790","regulation of catalytic activity",5,1,1.1,150,"0.714","0.729","0.729" +"GO:1901135","carbohydrate derivative metabolic proces...",5,1,1.1,151,"0.714","0.729","0.729" +"GO:0015931","nucleobase-containing compound transport",3,0,0.66,293,"1.000","0.730","0.730" +"GO:0044262","cellular carbohydrate metabolic process",3,1,0.66,71,"0.527","0.733","0.733" +"GO:0000375","RNA splicing, via transesterification re...",3,0,0.66,294,"1.000","0.736","0.736" +"GO:0000377","RNA splicing, via transesterification re...",3,0,0.66,295,"1.000","0.736","0.736" +"GO:0000398","mRNA splicing, via spliceosome",3,0,0.66,296,"1.000","0.736","0.736" +"GO:0008380","RNA splicing",3,0,0.66,297,"1.000","0.736","0.736" +"GO:0031503","protein-containing complex localization",3,0,0.66,298,"1.000","0.739","0.739" +"GO:0051129","negative regulation of cellular componen...",3,0,0.66,299,"1.000","0.739","0.739" +"GO:0010628","positive regulation of gene expression",7,1,1.54,198,"0.829","0.748","0.748" +"GO:0044238","primary metabolic process",105,22,23.06,136,"0.697","0.757","0.757" +"GO:0090304","nucleic acid metabolic process",43,8,9.44,186,"0.786","0.758","0.758" +"GO:0019438","aromatic compound biosynthetic process",34,6,7.47,188,"0.811","0.760","0.760" +"GO:1901576","organic substance biosynthetic process",54,10,11.86,189,"0.814","0.763","0.763" +"GO:0006644","phospholipid metabolic process",7,1,1.54,199,"0.829","0.767","0.767" +"GO:0009058","biosynthetic process",57,11,12.52,172,"0.772","0.767","0.767" +"GO:0034645","cellular macromolecule biosynthetic proc...",40,8,8.79,137,"0.700","0.767","0.767" +"GO:0007155","cell adhesion",6,0,1.32,300,"1.000","0.767","0.767" +"GO:0022610","biological adhesion",6,0,1.32,301,"1.000","0.767","0.767" +"GO:0008104","protein localization",10,2,2.2,134,"0.687","0.768","0.768" +"GO:0006820","anion transport",10,2,2.2,135,"0.687","0.771","0.771" +"GO:0042221","response to chemical",15,3,3.29,132,"0.681","0.773","0.773" +"GO:0006793","phosphorus metabolic process",23,3,5.05,242,"0.920","0.775","0.775" +"GO:0006796","phosphate-containing compound metabolic ...",23,3,5.05,243,"0.920","0.775","0.775" +"GO:0015711","organic anion transport",6,1,1.32,174,"0.779","0.776","0.776" +"GO:0000902","cell morphogenesis",5,1,1.1,152,"0.714","0.779","0.779" +"GO:0032989","cellular component morphogenesis",5,1,1.1,153,"0.714","0.779","0.779" +"GO:0030030","cell projection organization",5,0,1.1,302,"1.000","0.779","0.779" +"GO:0031175","neuron projection development",5,0,1.1,303,"1.000","0.779","0.779" +"GO:0048666","neuron development",5,0,1.1,304,"1.000","0.779","0.779" +"GO:0120036","plasma membrane bounded cell projection ...",5,0,1.1,305,"1.000","0.779","0.779" +"GO:0071704","organic substance metabolic process",111,23,24.38,165,"0.733","0.780","0.780" +"GO:0009653","anatomical structure morphogenesis",13,2,2.86,195,"0.823","0.781","0.781" +"GO:0018130","heterocycle biosynthetic process",35,6,7.69,212,"0.835","0.783","0.783" +"GO:0009605","response to external stimulus",8,1,1.76,223,"0.868","0.786","0.786" +"GO:0051246","regulation of protein metabolic process",9,2,1.98,95,"0.626","0.788","0.788" +"GO:0009059","macromolecule biosynthetic process",41,8,9,164,"0.731","0.790","0.790" +"GO:0030182","neuron differentiation",7,1,1.54,200,"0.829","0.790","0.790" +"GO:0044087","regulation of cellular component biogene...",7,1,1.54,201,"0.829","0.790","0.790" +"GO:0043170","macromolecule metabolic process",84,18,18.45,94,"0.623","0.792","0.792" +"GO:0003008","system process",5,0,1.1,306,"1.000","0.793","0.793" +"GO:0044283","small molecule biosynthetic process",5,0,1.1,307,"1.000","0.802","0.802" +"GO:0031929","TOR signaling",3,0,0.66,308,"1.000","0.803","0.803" +"GO:0016070","RNA metabolic process",36,6,7.91,217,"0.857","0.805","0.805" +"GO:1901362","organic cyclic compound biosynthetic pro...",36,6,7.91,218,"0.857","0.805","0.805" +"GO:0006417","regulation of translation",3,1,0.66,72,"0.527","0.806","0.806" +"GO:0010608","posttranscriptional regulation of gene e...",3,1,0.66,73,"0.527","0.806","0.806" +"GO:0034248","regulation of cellular amide metabolic p...",3,1,0.66,74,"0.527","0.806","0.806" +"GO:0031324","negative regulation of cellular metaboli...",8,1,1.76,224,"0.868","0.808","0.808" +"GO:0008610","lipid biosynthetic process",7,1,1.54,202,"0.829","0.811","0.811" +"GO:0000003","reproduction",5,0,1.1,309,"1.000","0.816","0.816" +"GO:0006996","organelle organization",17,3,3.73,169,"0.767","0.816","0.816" +"GO:0006352","DNA-templated transcription, initiation",3,0,0.66,310,"1.000","0.817","0.817" +"GO:0006643","membrane lipid metabolic process",4,1,0.88,119,"0.632","0.824","0.824" +"GO:0006928","movement of cell or subcellular componen...",5,0,1.1,311,"1.000","0.826","0.826" +"GO:0010467","gene expression",44,9,9.66,131,"0.676","0.830","0.830" +"GO:0010035","response to inorganic substance",3,1,0.66,75,"0.527","0.831","0.831" +"GO:0065008","regulation of biological quality",19,4,4.17,130,"0.636","0.841","0.841" +"GO:0080090","regulation of primary metabolic process",36,5,7.91,256,"0.939","0.841","0.841" +"GO:0000226","microtubule cytoskeleton organization",5,0,1.1,312,"1.000","0.845","0.845" +"GO:0003006","developmental process involved in reprod...",3,0,0.66,313,"1.000","0.852","0.852" +"GO:0007611","learning or memory",3,0,0.66,314,"1.000","0.852","0.852" +"GO:0045165","cell fate commitment",3,0,0.66,315,"1.000","0.852","0.852" +"GO:0050890","cognition",3,0,0.66,316,"1.000","0.852","0.852" +"GO:0006629","lipid metabolic process",15,2,3.29,233,"0.882","0.853","0.853" +"GO:0019222","regulation of metabolic process",39,6,8.57,240,"0.909","0.856","0.856" +"GO:0007049","cell cycle",5,0,1.1,317,"1.000","0.858","0.858" +"GO:0009725","response to hormone",3,1,0.66,76,"0.527","0.863","0.863" +"GO:0014070","response to organic cyclic compound",3,1,0.66,77,"0.527","0.863","0.863" +"GO:0043066","negative regulation of apoptotic process",3,1,0.66,78,"0.527","0.863","0.863" +"GO:0043069","negative regulation of programmed cell d...",3,1,0.66,79,"0.527","0.863","0.863" +"GO:0060548","negative regulation of cell death",3,1,0.66,80,"0.527","0.863","0.863" +"GO:0060560","developmental growth involved in morphog...",3,1,0.66,81,"0.527","0.863","0.863" +"GO:0071396","cellular response to lipid",3,1,0.66,82,"0.527","0.863","0.863" +"GO:0071495","cellular response to endogenous stimulus",3,1,0.66,83,"0.527","0.863","0.863" +"GO:1901700","response to oxygen-containing compound",3,1,0.66,84,"0.527","0.863","0.863" +"GO:0006351","transcription, DNA-templated",30,5,6.59,213,"0.840","0.871","0.871" +"GO:0032774","RNA biosynthetic process",30,5,6.59,214,"0.840","0.871","0.871" +"GO:0097659","nucleic acid-templated transcription",30,5,6.59,215,"0.840","0.871","0.871" +"GO:0007017","microtubule-based process",6,0,1.32,318,"1.000","0.874","0.874" +"GO:0006950","response to stress",14,3,3.07,96,"0.630","0.875","0.875" +"GO:0098609","cell-cell adhesion",5,0,1.1,319,"1.000","0.877","0.877" +"GO:0044085","cellular component biogenesis",11,1,2.42,250,"0.939","0.882","0.882" +"GO:0044255","cellular lipid metabolic process",12,2,2.64,183,"0.785","0.883","0.883" +"GO:0009889","regulation of biosynthetic process",31,6,6.81,161,"0.723","0.883","0.883" +"GO:0016310","phosphorylation",14,3,3.07,97,"0.630","0.884","0.884" +"GO:0016192","vesicle-mediated transport",13,2,2.86,196,"0.823","0.887","0.887" +"GO:0034654","nucleobase-containing compound biosynthe...",31,5,6.81,220,"0.862","0.889","0.889" +"GO:0060255","regulation of macromolecule metabolic pr...",35,5,7.69,248,"0.928","0.893","0.893" +"GO:0051173","positive regulation of nitrogen compound...",8,0,1.76,320,"1.000","0.895","0.895" +"GO:0010604","positive regulation of macromolecule met...",10,1,2.2,245,"0.921","0.897","0.897" +"GO:0032502","developmental process",28,4,6.15,238,"0.908","0.897","0.897" +"GO:0033036","macromolecule localization",11,2,2.42,168,"0.740","0.902","0.902" +"GO:0050803","regulation of synapse structure or activ...",4,0,0.88,321,"1.000","0.903","0.903" +"GO:0050807","regulation of synapse organization",4,0,0.88,322,"1.000","0.903","0.903" +"GO:0050808","synapse organization",4,0,0.88,323,"1.000","0.903","0.903" +"GO:0008283","cell proliferation",5,0,1.1,324,"1.000","0.911","0.911" +"GO:0009893","positive regulation of metabolic process",11,1,2.42,251,"0.939","0.912","0.912" +"GO:0071705","nitrogen compound transport",12,2,2.64,184,"0.785","0.913","0.913" +"GO:0019219","regulation of nucleobase-containing comp...",28,4,6.15,239,"0.908","0.917","0.917" +"GO:0007166","cell surface receptor signaling pathway",8,1,1.76,225,"0.868","0.922","0.922" +"GO:0031325","positive regulation of cellular metaboli...",8,0,1.76,325,"1.000","0.922","0.922" +"GO:0015849","organic acid transport",5,1,1.1,154,"0.714","0.924","0.924" +"GO:0046942","carboxylic acid transport",5,1,1.1,155,"0.714","0.924","0.924" +"GO:0051336","regulation of hydrolase activity",3,0,0.66,326,"1.000","0.928","0.928" +"GO:0009890","negative regulation of biosynthetic proc...",7,2,1.54,54,"0.479","0.930","0.930" +"GO:0001525","angiogenesis",3,0,0.66,327,"1.000","0.930","0.930" +"GO:0018212","peptidyl-tyrosine modification",3,0,0.66,328,"1.000","0.930","0.930" +"GO:0042127","regulation of cell proliferation",3,0,0.66,329,"1.000","0.930","0.930" +"GO:0045765","regulation of angiogenesis",3,0,0.66,330,"1.000","0.930","0.930" +"GO:0045766","positive regulation of angiogenesis",3,0,0.66,331,"1.000","0.930","0.930" +"GO:1901342","regulation of vasculature development",3,0,0.66,332,"1.000","0.930","0.930" +"GO:1904018","positive regulation of vasculature devel...",3,0,0.66,333,"1.000","0.930","0.930" +"GO:0007186","G protein-coupled receptor signaling pat...",8,0,1.76,334,"1.000","0.931","0.931" +"GO:0048731","system development",22,2,4.83,266,"0.975","0.932","0.932" +"GO:0006468","protein phosphorylation",12,2,2.64,185,"0.785","0.933","0.933" +"GO:0071702","organic substance transport",14,2,3.07,216,"0.856","0.933","0.933" +"GO:0022414","reproductive process",4,0,0.88,335,"1.000","0.935","0.935" +"GO:0040011","locomotion",4,0,0.88,336,"1.000","0.935","0.935" +"GO:0051171","regulation of nitrogen compound metaboli...",34,5,7.47,241,"0.915","0.937","0.937" +"GO:0016071","mRNA metabolic process",5,0,1.1,337,"1.000","0.940","0.940" +"GO:0051094","positive regulation of developmental pro...",7,0,1.54,338,"1.000","0.941","0.941" +"GO:0009891","positive regulation of biosynthetic proc...",6,0,1.32,339,"1.000","0.941","0.941" +"GO:0010557","positive regulation of macromolecule bio...",6,0,1.32,340,"1.000","0.941","0.941" +"GO:0031328","positive regulation of cellular biosynth...",6,0,1.32,341,"1.000","0.941","0.941" +"GO:0045893","positive regulation of transcription, DN...",6,0,1.32,342,"1.000","0.941","0.941" +"GO:0045935","positive regulation of nucleobase-contai...",6,0,1.32,343,"1.000","0.941","0.941" +"GO:0051254","positive regulation of RNA metabolic pro...",6,0,1.32,344,"1.000","0.941","0.941" +"GO:1902680","positive regulation of RNA biosynthetic ...",6,0,1.32,345,"1.000","0.941","0.941" +"GO:1903508","positive regulation of nucleic acid-temp...",6,0,1.32,346,"1.000","0.941","0.941" +"GO:0010605","negative regulation of macromolecule met...",7,1,1.54,203,"0.829","0.947","0.947" +"GO:0051172","negative regulation of nitrogen compound...",7,1,1.54,204,"0.829","0.947","0.947" +"GO:0032940","secretion by cell",3,0,0.66,347,"1.000","0.950","0.950" +"GO:0006259","DNA metabolic process",7,1,1.54,205,"0.829","0.951","0.951" +"GO:0032501","multicellular organismal process",26,3,5.71,259,"0.956","0.953","0.953" +"GO:0048856","anatomical structure development",26,3,5.71,260,"0.956","0.953","0.953" +"GO:0001932","regulation of protein phosphorylation",5,0,1.1,348,"1.000","0.953","0.953" +"GO:0019220","regulation of phosphate metabolic proces...",5,0,1.1,349,"1.000","0.953","0.953" +"GO:0042325","regulation of phosphorylation",5,0,1.1,350,"1.000","0.953","0.953" +"GO:0051174","regulation of phosphorus metabolic proce...",5,0,1.1,351,"1.000","0.953","0.953" +"GO:0015031","protein transport",7,1,1.54,206,"0.829","0.958","0.958" +"GO:0015833","peptide transport",7,1,1.54,207,"0.829","0.958","0.958" +"GO:0042886","amide transport",7,1,1.54,208,"0.829","0.958","0.958" +"GO:0045184","establishment of protein localization",7,1,1.54,209,"0.829","0.958","0.958" +"GO:0009719","response to endogenous stimulus",4,1,0.88,120,"0.632","0.958","0.958" +"GO:0009968","negative regulation of signal transducti...",4,1,0.88,121,"0.632","0.958","0.958" +"GO:0010648","negative regulation of cell communicatio...",4,1,0.88,122,"0.632","0.958","0.958" +"GO:0016049","cell growth",4,1,0.88,123,"0.632","0.958","0.958" +"GO:0023057","negative regulation of signaling",4,1,0.88,124,"0.632","0.958","0.958" +"GO:0033993","response to lipid",4,1,0.88,125,"0.632","0.958","0.958" +"GO:0043207","response to external biotic stimulus",4,1,0.88,126,"0.632","0.958","0.958" +"GO:0051707","response to other organism",4,1,0.88,127,"0.632","0.958","0.958" +"GO:0071310","cellular response to organic substance",4,1,0.88,128,"0.632","0.958","0.958" +"GO:0098542","defense response to other organism",4,1,0.88,129,"0.632","0.958","0.958" +"GO:0051252","regulation of RNA metabolic process",27,4,5.93,234,"0.891","0.959","0.959" +"GO:0006355","regulation of transcription, DNA-templat...",26,4,5.71,229,"0.871","0.959","0.959" +"GO:1903506","regulation of nucleic acid-templated tra...",26,4,5.71,230,"0.871","0.959","0.959" +"GO:2001141","regulation of RNA biosynthetic process",26,4,5.71,231,"0.871","0.959","0.959" +"GO:0006897","endocytosis",6,0,1.32,352,"1.000","0.966","0.966" +"GO:0098657","import into cell",6,0,1.32,353,"1.000","0.966","0.966" +"GO:0022008","neurogenesis",11,1,2.42,252,"0.939","0.967","0.967" +"GO:0010629","negative regulation of gene expression",5,1,1.1,156,"0.714","0.969","0.969" +"GO:0009966","regulation of signal transduction",13,1,2.86,261,"0.964","0.970","0.970" +"GO:0010646","regulation of cell communication",13,1,2.86,262,"0.964","0.970","0.970" +"GO:0023051","regulation of signaling",13,1,2.86,263,"0.964","0.970","0.970" +"GO:0051239","regulation of multicellular organismal p...",13,1,2.86,264,"0.964","0.970","0.970" +"GO:0010556","regulation of macromolecule biosynthetic...",29,5,6.37,190,"0.815","0.970","0.970" +"GO:0031326","regulation of cellular biosynthetic proc...",29,5,6.37,191,"0.815","0.970","0.970" +"GO:2000112","regulation of cellular macromolecule bio...",29,5,6.37,192,"0.815","0.970","0.970" +"GO:0007275","multicellular organism development",25,3,5.49,258,"0.946","0.972","0.972" +"GO:0050896","response to stimulus",55,5,12.08,275,"0.999","0.973","0.973" +"GO:0032990","cell part morphogenesis",4,0,0.88,354,"1.000","0.975","0.975" +"GO:0048812","neuron projection morphogenesis",4,0,0.88,355,"1.000","0.975","0.975" +"GO:0048858","cell projection morphogenesis",4,0,0.88,356,"1.000","0.975","0.975" +"GO:0120039","plasma membrane bounded cell projection ...",4,0,0.88,357,"1.000","0.975","0.975" +"GO:0031323","regulation of cellular metabolic process",36,5,7.91,257,"0.939","0.976","0.976" +"GO:0065007","biological regulation",80,12,17.57,267,"0.983","0.984","0.984" +"GO:0007165","signal transduction",32,2,7.03,272,"0.998","0.985","0.985" +"GO:0023052","signaling",32,2,7.03,273,"0.998","0.985","0.985" +"GO:0010468","regulation of gene expression",29,5,6.37,193,"0.815","0.986","0.986" +"GO:0006357","regulation of transcription by RNA polym...",8,1,1.76,226,"0.868","0.989","0.989" +"GO:0046903","secretion",4,0,0.88,358,"1.000","0.990","0.990" +"GO:0048699","generation of neurons",10,1,2.2,246,"0.921","0.992","0.992" +"GO:0048869","cellular developmental process",18,2,3.95,249,"0.938","0.992","0.992" +"GO:0006366","transcription by RNA polymerase II",9,1,1.98,235,"0.898","0.992","0.992" +"GO:0048583","regulation of response to stimulus",16,1,3.51,268,"0.984","0.993","0.993" +"GO:0030154","cell differentiation",17,2,3.73,247,"0.923","0.993","0.993" +"GO:0007399","nervous system development",16,2,3.51,237,"0.905","0.993","0.993" +"GO:0009967","positive regulation of signal transducti...",6,0,1.32,359,"1.000","0.993","0.993" +"GO:0010647","positive regulation of cell communicatio...",6,0,1.32,360,"1.000","0.993","0.993" +"GO:0023056","positive regulation of signaling",6,0,1.32,361,"1.000","0.993","0.993" +"GO:0016043","cellular component organization",26,4,5.71,232,"0.871","0.994","0.994" +"GO:0048518","positive regulation of biological proces...",26,2,5.71,271,"0.990","0.994","0.994" +"GO:0048513","animal organ development",14,1,3.07,265,"0.973","0.994","0.994" +"GO:0010558","negative regulation of macromolecule bio...",6,1,1.32,175,"0.779","0.994","0.994" +"GO:0031327","negative regulation of cellular biosynth...",6,1,1.32,176,"0.779","0.994","0.994" +"GO:2000113","negative regulation of cellular macromol...",6,1,1.32,177,"0.779","0.994","0.994" +"GO:0001568","blood vessel development",4,0,0.88,362,"1.000","0.995","0.995" +"GO:0001944","vasculature development",4,0,0.88,363,"1.000","0.995","0.995" +"GO:0035239","tube morphogenesis",4,0,0.88,364,"1.000","0.995","0.995" +"GO:0035295","tube development",4,0,0.88,365,"1.000","0.995","0.995" +"GO:0048514","blood vessel morphogenesis",4,0,0.88,366,"1.000","0.995","0.995" +"GO:0072358","cardiovascular system development",4,0,0.88,367,"1.000","0.995","0.995" +"GO:0072359","circulatory system development",4,0,0.88,368,"1.000","0.995","0.995" +"GO:0006952","defense response",5,1,1.1,157,"0.714","0.995","0.995" +"GO:0007420","brain development",5,1,1.1,158,"0.714","0.995","0.995" +"GO:0048585","negative regulation of response to stimu...",5,1,1.1,159,"0.714","0.995","0.995" +"GO:0035556","intracellular signal transduction",11,1,2.42,253,"0.939","0.995","0.995" +"GO:0050793","regulation of developmental process",11,1,2.42,254,"0.939","0.995","0.995" +"GO:2000026","regulation of multicellular organismal d...",11,1,2.42,255,"0.939","0.995","0.995" +"GO:1902533","positive regulation of intracellular sig...",4,0,0.88,369,"1.000","0.996","0.996" +"GO:0048468","cell development",10,0,2.2,370,"1.000","0.996","0.996" +"GO:0071840","cellular component organization or bioge...",28,5,6.15,187,"0.787","0.996","0.996" +"GO:0033554","cellular response to stress",6,1,1.32,178,"0.779","0.996","0.996" +"GO:0040007","growth",8,1,1.76,227,"0.868","0.997","0.997" +"GO:1902531","regulation of intracellular signal trans...",8,1,1.76,228,"0.868","0.997","0.997" +"GO:0048589","developmental growth",7,1,1.54,210,"0.829","0.997","0.997" +"GO:0048584","positive regulation of response to stimu...",7,0,1.54,371,"1.000","0.997","0.997" +"GO:0007417","central nervous system development",6,1,1.32,179,"0.779","0.998","0.998" +"GO:0060322","head development",6,1,1.32,180,"0.779","0.998","0.998" +"GO:0070887","cellular response to chemical stimulus",6,1,1.32,181,"0.779","0.998","0.998" +"GO:0045595","regulation of cell differentiation",6,0,1.32,372,"1.000","0.998","0.998" +"GO:0051716","cellular response to stimulus",42,2,9.22,276,"1.000","0.998","0.998" +"GO:0045934","negative regulation of nucleobase-contai...",5,0,1.1,373,"1.000","0.998","0.998" +"GO:0045944","positive regulation of transcription by ...",5,0,1.1,374,"1.000","0.998","0.998" +"GO:0051960","regulation of nervous system development",5,0,1.1,375,"1.000","0.998","0.998" +"GO:0070647","protein modification by small protein co...",5,0,1.1,376,"1.000","0.998","0.998" +"GO:0007154","cell communication",33,2,7.25,274,"0.998","0.998","0.998" +"GO:0002520","immune system development",4,0,0.88,377,"1.000","0.998","0.998" +"GO:0009790","embryo development",4,0,0.88,378,"1.000","0.998","0.998" +"GO:0009888","tissue development",4,0,0.88,379,"1.000","0.998","0.998" +"GO:0030097","hemopoiesis",4,0,0.88,380,"1.000","0.998","0.998" +"GO:0040008","regulation of growth",4,0,0.88,381,"1.000","0.998","0.998" +"GO:0042493","response to drug",4,0,0.88,382,"1.000","0.998","0.998" +"GO:0045664","regulation of neuron differentiation",4,0,0.88,383,"1.000","0.998","0.998" +"GO:0045892","negative regulation of transcription, DN...",4,0,0.88,384,"1.000","0.998","0.998" +"GO:0048534","hematopoietic or lymphoid organ developm...",4,0,0.88,385,"1.000","0.998","0.998" +"GO:0048872","homeostasis of number of cells",4,0,0.88,386,"1.000","0.998","0.998" +"GO:0050767","regulation of neurogenesis",4,0,0.88,387,"1.000","0.998","0.998" +"GO:0051241","negative regulation of multicellular org...",4,0,0.88,388,"1.000","0.998","0.998" +"GO:0051253","negative regulation of RNA metabolic pro...",4,0,0.88,389,"1.000","0.998","0.998" +"GO:0060284","regulation of cell development",4,0,0.88,390,"1.000","0.998","0.998" +"GO:1902679","negative regulation of RNA biosynthetic ...",4,0,0.88,391,"1.000","0.998","0.998" +"GO:1903507","negative regulation of nucleic acid-temp...",4,0,0.88,392,"1.000","0.998","0.998" +"GO:0001654","eye development",3,0,0.66,393,"1.000","0.999","0.999" +"GO:0007423","sensory organ development",3,0,0.66,394,"1.000","0.999","0.999" +"GO:0048880","sensory system development",3,0,0.66,395,"1.000","0.999","0.999" +"GO:0150063","visual system development",3,0,0.66,396,"1.000","0.999","0.999" +"GO:0000122","negative regulation of transcription by ...",3,0,0.66,397,"1.000","0.999","0.999" +"GO:0000165","MAPK cascade",3,0,0.66,398,"1.000","0.999","0.999" +"GO:0000278","mitotic cell cycle",3,0,0.66,399,"1.000","0.999","0.999" +"GO:0000904","cell morphogenesis involved in different...",3,0,0.66,400,"1.000","0.999","0.999" +"GO:0001558","regulation of cell growth",3,0,0.66,401,"1.000","0.999","0.999" +"GO:0001775","cell activation",3,0,0.66,402,"1.000","0.999","0.999" +"GO:0006974","cellular response to DNA damage stimulus",3,0,0.66,403,"1.000","0.999","0.999" +"GO:0007264","small GTPase mediated signal transductio...",3,0,0.66,404,"1.000","0.999","0.999" +"GO:0007265","Ras protein signal transduction",3,0,0.66,405,"1.000","0.999","0.999" +"GO:0007267","cell-cell signaling",3,0,0.66,406,"1.000","0.999","0.999" +"GO:0007276","gamete generation",3,0,0.66,407,"1.000","0.999","0.999" +"GO:0007346","regulation of mitotic cell cycle",3,0,0.66,408,"1.000","0.999","0.999" +"GO:0007409","axonogenesis",3,0,0.66,409,"1.000","0.999","0.999" +"GO:0009887","animal organ morphogenesis",3,0,0.66,410,"1.000","0.999","0.999" +"GO:0010975","regulation of neuron projection developm...",3,0,0.66,411,"1.000","0.999","0.999" +"GO:0016477","cell migration",3,0,0.66,412,"1.000","0.999","0.999" +"GO:0016567","protein ubiquitination",3,0,0.66,413,"1.000","0.999","0.999" +"GO:0019953","sexual reproduction",3,0,0.66,414,"1.000","0.999","0.999" +"GO:0022412","cellular process involved in reproductio...",3,0,0.66,415,"1.000","0.999","0.999" +"GO:0023014","signal transduction by protein phosphory...",3,0,0.66,416,"1.000","0.999","0.999" +"GO:0031344","regulation of cell projection organizati...",3,0,0.66,417,"1.000","0.999","0.999" +"GO:0032446","protein modification by small protein co...",3,0,0.66,418,"1.000","0.999","0.999" +"GO:0032504","multicellular organism reproduction",3,0,0.66,419,"1.000","0.999","0.999" +"GO:0043408","regulation of MAPK cascade",3,0,0.66,420,"1.000","0.999","0.999" +"GO:0044703","multi-organism reproductive process",3,0,0.66,421,"1.000","0.999","0.999" +"GO:0045321","leukocyte activation",3,0,0.66,422,"1.000","0.999","0.999" +"GO:0045597","positive regulation of cell differentiat...",3,0,0.66,423,"1.000","0.999","0.999" +"GO:0046578","regulation of Ras protein signal transdu...",3,0,0.66,424,"1.000","0.999","0.999" +"GO:0048609","multicellular organismal reproductive pr...",3,0,0.66,425,"1.000","0.999","0.999" +"GO:0048638","regulation of developmental growth",3,0,0.66,426,"1.000","0.999","0.999" +"GO:0048667","cell morphogenesis involved in neuron di...",3,0,0.66,427,"1.000","0.999","0.999" +"GO:0048870","cell motility",3,0,0.66,428,"1.000","0.999","0.999" +"GO:0051056","regulation of small GTPase mediated sign...",3,0,0.66,429,"1.000","0.999","0.999" +"GO:0051093","negative regulation of developmental pro...",3,0,0.66,430,"1.000","0.999","0.999" +"GO:0051674","localization of cell",3,0,0.66,431,"1.000","0.999","0.999" +"GO:0051726","regulation of cell cycle",3,0,0.66,432,"1.000","0.999","0.999" +"GO:0061564","axon development",3,0,0.66,433,"1.000","0.999","0.999" +"GO:0070371","ERK1 and ERK2 cascade",3,0,0.66,434,"1.000","0.999","0.999" +"GO:0070372","regulation of ERK1 and ERK2 cascade",3,0,0.66,435,"1.000","0.999","0.999" +"GO:0120035","regulation of plasma membrane bounded ce...",3,0,0.66,436,"1.000","0.999","0.999" +"GO:1902532","negative regulation of intracellular sig...",3,0,0.66,437,"1.000","0.999","0.999" +"GO:0050789","regulation of biological process",77,11,16.91,269,"0.988","1.000","1.000" +"GO:0002376","immune system process",10,0,2.2,438,"1.000","1.000","1.000" +"GO:0051704","multi-organism process",6,1,1.32,182,"0.779","1.000","1.000" +"GO:0002682","regulation of immune system process",5,0,1.1,439,"1.000","1.000","1.000" +"GO:0006955","immune response",4,0,0.88,440,"1.000","1.000","1.000" +"GO:0050776","regulation of immune response",3,0,0.66,441,"1.000","1.000","1.000" +"GO:0008150","biological_process",214,47,47,442,"1.000","1.000","1.000" +"GO:0050794","regulation of cellular process",73,10,16.03,270,"0.990","1.000","1.000" +"GO:0007010","cytoskeleton organization",7,0,1.54,443,"1.000","1.000","1.000" +"GO:0007015","actin filament organization",4,0,0.88,444,"1.000","1.000","1.000" +"GO:0008064","regulation of actin polymerization or de...",4,0,0.88,445,"1.000","1.000","1.000" +"GO:0008154","actin polymerization or depolymerization",4,0,0.88,446,"1.000","1.000","1.000" +"GO:0010638","positive regulation of organelle organiz...",3,0,0.66,447,"1.000","1.000","1.000" +"GO:0022607","cellular component assembly",9,0,1.98,448,"1.000","1.000","1.000" +"GO:0030029","actin filament-based process",4,0,0.88,449,"1.000","1.000","1.000" +"GO:0030036","actin cytoskeleton organization",4,0,0.88,450,"1.000","1.000","1.000" +"GO:0030041","actin filament polymerization",4,0,0.88,451,"1.000","1.000","1.000" +"GO:0030832","regulation of actin filament length",4,0,0.88,452,"1.000","1.000","1.000" +"GO:0030833","regulation of actin filament polymerizat...",4,0,0.88,453,"1.000","1.000","1.000" +"GO:0030838","positive regulation of actin filament po...",3,0,0.66,454,"1.000","1.000","1.000" +"GO:0031334","positive regulation of protein complex a...",3,0,0.66,455,"1.000","1.000","1.000" +"GO:0032271","regulation of protein polymerization",4,0,0.88,456,"1.000","1.000","1.000" +"GO:0032273","positive regulation of protein polymeriz...",3,0,0.66,457,"1.000","1.000","1.000" +"GO:0032535","regulation of cellular component size",5,0,1.1,458,"1.000","1.000","1.000" +"GO:0032956","regulation of actin cytoskeleton organiz...",4,0,0.88,459,"1.000","1.000","1.000" +"GO:0032970","regulation of actin filament-based proce...",4,0,0.88,460,"1.000","1.000","1.000" +"GO:0033043","regulation of organelle organization",4,0,0.88,461,"1.000","1.000","1.000" +"GO:0034622","cellular protein-containing complex asse...",7,0,1.54,462,"1.000","1.000","1.000" +"GO:0043254","regulation of protein complex assembly",4,0,0.88,463,"1.000","1.000","1.000" +"GO:0043933","protein-containing complex subunit organ...",8,0,1.76,464,"1.000","1.000","1.000" +"GO:0044089","positive regulation of cellular componen...",4,0,0.88,465,"1.000","1.000","1.000" +"GO:0048522","positive regulation of cellular process",22,0,4.83,466,"1.000","1.000","1.000" +"GO:0051128","regulation of cellular component organiz...",10,0,2.2,467,"1.000","1.000","1.000" +"GO:0051130","positive regulation of cellular componen...",5,0,1.1,468,"1.000","1.000","1.000" +"GO:0051258","protein polymerization",5,0,1.1,469,"1.000","1.000","1.000" +"GO:0051493","regulation of cytoskeleton organization",4,0,0.88,470,"1.000","1.000","1.000" +"GO:0051495","positive regulation of cytoskeleton orga...",3,0,0.66,471,"1.000","1.000","1.000" +"GO:0065003","protein-containing complex assembly",8,0,1.76,472,"1.000","1.000","1.000" +"GO:0090066","regulation of anatomical structure size",5,0,1.1,473,"1.000","1.000","1.000" +"GO:0097435","supramolecular fiber organization",5,0,1.1,474,"1.000","1.000","1.000" +"GO:0110053","regulation of actin filament organizatio...",4,0,0.88,475,"1.000","1.000","1.000" +"GO:1902903","regulation of supramolecular fiber organ...",4,0,0.88,476,"1.000","1.000","1.000" +"GO:1902905","positive regulation of supramolecular fi...",3,0,0.66,477,"1.000","1.000","1.000" diff --git a/GO_enrichment_microbiome_output/contrast_arresting_prelaying_upregulated.csv b/GO_enrichment_microbiome_output/contrast_arresting_prelaying_upregulated.csv index a370dc5..f4d7bc6 100644 --- a/GO_enrichment_microbiome_output/contrast_arresting_prelaying_upregulated.csv +++ b/GO_enrichment_microbiome_output/contrast_arresting_prelaying_upregulated.csv @@ -4,3 +4,512 @@ "GO:0005975","carbohydrate metabolic process",8,5,1.66,1,"0.011","0.0097","0.0097" "GO:0006950","response to stress",21,2,4.35,296,"0.958","0.0124","0.0124" "GO:0050790","regulation of catalytic activity",12,1,2.49,290,"0.943","0.0128","0.0128" +"GO:0055114","oxidation-reduction process",10,4,2.07,12,"0.129","0.0132","0.0132" +"GO:0001932","regulation of protein phosphorylation",7,1,1.45,245,"0.808","0.0139","0.0139" +"GO:0051338","regulation of transferase activity",7,1,1.45,246,"0.808","0.0139","0.0139" +"GO:0006508","proteolysis",10,4,2.07,13,"0.129","0.0202","0.0202" +"GO:0065009","regulation of molecular function",14,1,2.9,298,"0.966","0.0231","0.0231" +"GO:0043549","regulation of kinase activity",6,1,1.24,224,"0.757","0.0260","0.0260" +"GO:0045859","regulation of protein kinase activity",6,1,1.24,225,"0.757","0.0260","0.0260" +"GO:0010563","negative regulation of phosphorus metabo...",6,0,1.24,305,"1.000","0.0260","0.0260" +"GO:0045936","negative regulation of phosphate metabol...",6,0,1.24,306,"1.000","0.0260","0.0260" +"GO:0006974","cellular response to DNA damage stimulus",8,2,1.66,112,"0.521","0.0318","0.0318" +"GO:0090407","organophosphate biosynthetic process",3,2,0.62,5,"0.110","0.0366","0.0366" +"GO:0007010","cytoskeleton organization",5,0,1.04,307,"1.000","0.0393","0.0393" +"GO:0048667","cell morphogenesis involved in neuron di...",5,0,1.04,308,"1.000","0.0393","0.0393" +"GO:0048812","neuron projection morphogenesis",5,0,1.04,309,"1.000","0.0393","0.0393" +"GO:0048858","cell projection morphogenesis",5,0,1.04,310,"1.000","0.0393","0.0393" +"GO:0061564","axon development",5,0,1.04,311,"1.000","0.0393","0.0393" +"GO:0120039","plasma membrane bounded cell projection ...",5,0,1.04,312,"1.000","0.0393","0.0393" +"GO:0048646","anatomical structure formation involved ...",8,2,1.66,113,"0.521","0.0414","0.0414" +"GO:0001933","negative regulation of protein phosphory...",5,0,1.04,313,"1.000","0.0485","0.0485" +"GO:0042326","negative regulation of phosphorylation",5,0,1.04,314,"1.000","0.0485","0.0485" +"GO:0048666","neuron development",9,0,1.87,315,"1.000","0.0528","0.0528" +"GO:0006468","protein phosphorylation",23,4,4.77,221,"0.747","0.0586","0.0586" +"GO:0060249","anatomical structure homeostasis",4,1,0.83,134,"0.608","0.0587","0.0587" +"GO:0044093","positive regulation of molecular functio...",9,1,1.87,273,"0.882","0.0604","0.0604" +"GO:0007423","sensory organ development",7,2,1.45,62,"0.445","0.0625","0.0625" +"GO:0030030","cell projection organization",10,1,2.07,281,"0.907","0.0639","0.0639" +"GO:0120036","plasma membrane bounded cell projection ...",10,1,2.07,282,"0.907","0.0639","0.0639" +"GO:0009611","response to wounding",4,0,0.83,316,"1.000","0.0641","0.0641" +"GO:0051347","positive regulation of transferase activ...",4,1,0.83,135,"0.608","0.0699","0.0699" +"GO:0030029","actin filament-based process",5,0,1.04,317,"1.000","0.0721","0.0721" +"GO:0035239","tube morphogenesis",4,1,0.83,136,"0.608","0.0761","0.0761" +"GO:0035295","tube development",4,1,0.83,137,"0.608","0.0761","0.0761" +"GO:0042327","positive regulation of phosphorylation",4,1,0.83,138,"0.608","0.0761","0.0761" +"GO:0007409","axonogenesis",4,0,0.83,318,"1.000","0.0761","0.0761" +"GO:0030036","actin cytoskeleton organization",4,0,0.83,319,"1.000","0.0761","0.0761" +"GO:0050808","synapse organization",4,0,0.83,320,"1.000","0.0761","0.0761" +"GO:0031175","neuron projection development",7,0,1.45,321,"1.000","0.0785","0.0785" +"GO:0035556","intracellular signal transduction",13,2,2.7,240,"0.794","0.0798","0.0798" +"GO:0000003","reproduction",6,1,1.24,226,"0.757","0.0807","0.0807" +"GO:0022414","reproductive process",6,1,1.24,227,"0.757","0.0807","0.0807" +"GO:0033554","cellular response to stress",10,2,2.07,171,"0.652","0.0839","0.0839" +"GO:0015031","protein transport",9,3,1.87,35,"0.279","0.0896","0.0896" +"GO:0015833","peptide transport",9,3,1.87,36,"0.279","0.0896","0.0896" +"GO:0042886","amide transport",9,3,1.87,37,"0.279","0.0896","0.0896" +"GO:0006469","negative regulation of protein kinase ac...",4,0,0.83,322,"1.000","0.0898","0.0898" +"GO:0033673","negative regulation of kinase activity",4,0,0.83,323,"1.000","0.0898","0.0898" +"GO:0051348","negative regulation of transferase activ...",4,0,0.83,324,"1.000","0.0898","0.0898" +"GO:0008152","metabolic process",139,33,28.82,4,"0.099","0.0407","0.0923" +"GO:0009887","animal organ morphogenesis",6,2,1.24,46,"0.363","0.0939","0.0939" +"GO:0043009","chordate embryonic development",6,2,1.24,47,"0.363","0.0939","0.0939" +"GO:0031401","positive regulation of protein modificat...",7,2,1.45,63,"0.445","0.0977","0.0977" +"GO:0032270","positive regulation of cellular protein ...",7,2,1.45,64,"0.445","0.0977","0.0977" +"GO:0051247","positive regulation of protein metabolic...",7,2,1.45,65,"0.445","0.0977","0.0977" +"GO:0043086","negative regulation of catalytic activit...",7,0,1.45,325,"1.000","0.0977","0.0977" +"GO:0044092","negative regulation of molecular functio...",7,0,1.45,326,"1.000","0.0977","0.0977" +"GO:0006955","immune response",4,1,0.83,139,"0.608","0.1097","0.1097" +"GO:0009653","anatomical structure morphogenesis",16,3,3.32,177,"0.684","0.1148","0.1148" +"GO:0001894","tissue homeostasis",3,1,0.62,74,"0.504","0.1204","0.1204" +"GO:0006325","chromatin organization",3,1,0.62,75,"0.504","0.1204","0.1204" +"GO:0048871","multicellular organismal homeostasis",3,1,0.62,76,"0.504","0.1204","0.1204" +"GO:0007349","cellularization",3,0,0.62,327,"1.000","0.1204","0.1204" +"GO:0042060","wound healing",3,0,0.62,328,"1.000","0.1204","0.1204" +"GO:0099173","postsynapse organization",3,0,0.62,329,"1.000","0.1204","0.1204" +"GO:0046907","intracellular transport",12,5,2.49,2,"0.077","0.1209","0.1209" +"GO:0001654","eye development",4,1,0.83,140,"0.608","0.1232","0.1232" +"GO:0043010","camera-type eye development",4,1,0.83,141,"0.608","0.1232","0.1232" +"GO:0048878","chemical homeostasis",4,1,0.83,142,"0.608","0.1232","0.1232" +"GO:0048880","sensory system development",4,1,0.83,143,"0.608","0.1232","0.1232" +"GO:0060041","retina development in camera-type eye",4,1,0.83,144,"0.608","0.1232","0.1232" +"GO:0150063","visual system development",4,1,0.83,145,"0.608","0.1232","0.1232" +"GO:0032504","multicellular organism reproduction",4,0,0.83,330,"1.000","0.1232","0.1232" +"GO:0048609","multicellular organismal reproductive pr...",4,0,0.83,331,"1.000","0.1232","0.1232" +"GO:1901361","organic cyclic compound catabolic proces...",9,4,1.87,3,"0.091","0.1233","0.1233" +"GO:0018193","peptidyl-amino acid modification",3,1,0.62,77,"0.504","0.1286","0.1286" +"GO:0010975","regulation of neuron projection developm...",3,0,0.62,332,"1.000","0.1286","0.1286" +"GO:0043393","regulation of protein binding",3,0,0.62,333,"1.000","0.1286","0.1286" +"GO:0051098","regulation of binding",3,0,0.62,334,"1.000","0.1286","0.1286" +"GO:0032259","methylation",3,1,0.62,78,"0.504","0.1328","0.1328" +"GO:0043414","macromolecule methylation",3,1,0.62,79,"0.504","0.1328","0.1328" +"GO:0009893","positive regulation of metabolic process",11,2,2.28,203,"0.706","0.1332","0.1332" +"GO:0031325","positive regulation of cellular metaboli...",11,2,2.28,204,"0.706","0.1332","0.1332" +"GO:0042592","homeostatic process",14,3,2.9,129,"0.585","0.1362","0.1362" +"GO:0001934","positive regulation of protein phosphory...",3,1,0.62,80,"0.504","0.1372","0.1372" +"GO:0033674","positive regulation of kinase activity",3,1,0.62,81,"0.504","0.1372","0.1372" +"GO:0045860","positive regulation of protein kinase ac...",3,1,0.62,82,"0.504","0.1372","0.1372" +"GO:0007167","enzyme linked receptor protein signaling...",3,0,0.62,335,"1.000","0.1372","0.1372" +"GO:0000904","cell morphogenesis involved in different...",6,0,1.24,336,"1.000","0.1450","0.1450" +"GO:0031344","regulation of cell projection organizati...",6,0,1.24,337,"1.000","0.1450","0.1450" +"GO:0032990","cell part morphogenesis",6,0,1.24,338,"1.000","0.1450","0.1450" +"GO:0120035","regulation of plasma membrane bounded ce...",6,0,1.24,339,"1.000","0.1450","0.1450" +"GO:0006909","phagocytosis",3,0,0.62,340,"1.000","0.1462","0.1462" +"GO:0031346","positive regulation of cell projection o...",3,0,0.62,341,"1.000","0.1462","0.1462" +"GO:0034622","cellular protein-containing complex asse...",3,0,0.62,342,"1.000","0.1462","0.1462" +"GO:0035148","tube formation",3,0,0.62,343,"1.000","0.1462","0.1462" +"GO:0097435","supramolecular fiber organization",3,0,0.62,344,"1.000","0.1462","0.1462" +"GO:0006720","isoprenoid metabolic process",3,2,0.62,6,"0.110","0.1524","0.1524" +"GO:0022008","neurogenesis",12,0,2.49,345,"1.000","0.1545","0.1545" +"GO:0030182","neuron differentiation",12,0,2.49,346,"1.000","0.1545","0.1545" +"GO:0048699","generation of neurons",12,0,2.49,347,"1.000","0.1545","0.1545" +"GO:0006281","DNA repair",5,1,1.04,178,"0.691","0.1551","0.1551" +"GO:0046903","secretion",5,1,1.04,179,"0.691","0.1588","0.1588" +"GO:0010604","positive regulation of macromolecule met...",10,2,2.07,172,"0.652","0.1614","0.1614" +"GO:0051173","positive regulation of nitrogen compound...",10,2,2.07,173,"0.652","0.1614","0.1614" +"GO:0043085","positive regulation of catalytic activit...",7,1,1.45,247,"0.808","0.1618","0.1618" +"GO:0019538","protein metabolic process",51,9,10.58,239,"0.792","0.0286","0.1652" +"GO:1904029","regulation of cyclin-dependent protein k...",3,0,0.62,348,"1.000","0.1655","0.1655" +"GO:1903047","mitotic cell cycle process",7,2,1.45,66,"0.445","0.1696","0.1696" +"GO:0006081","cellular aldehyde metabolic process",4,2,0.83,17,"0.191","0.1787","0.1787" +"GO:0042493","response to drug",5,0,1.04,349,"1.000","0.1787","0.1787" +"GO:0006886","intracellular protein transport",6,2,1.24,48,"0.363","0.1817","0.1817" +"GO:0006259","DNA metabolic process",7,2,1.45,67,"0.445","0.1859","0.1859" +"GO:0003006","developmental process involved in reprod...",4,1,0.83,146,"0.608","0.1897","0.1897" +"GO:0045184","establishment of protein localization",10,3,2.07,41,"0.344","0.1918","0.1918" +"GO:0009790","embryo development",8,3,1.66,19,"0.217","0.1969","0.1969" +"GO:0008610","lipid biosynthetic process",6,2,1.24,49,"0.363","0.2058","0.2058" +"GO:0016192","vesicle-mediated transport",12,2,2.49,222,"0.754","0.2094","0.2094" +"GO:0009636","response to toxic substance",3,1,0.62,83,"0.504","0.2094","0.2094" +"GO:0006952","defense response",3,0,0.62,350,"1.000","0.2094","0.2094" +"GO:0050801","ion homeostasis",3,0,0.62,351,"1.000","0.2094","0.2094" +"GO:0051050","positive regulation of transport",3,0,0.62,352,"1.000","0.2094","0.2094" +"GO:0007507","heart development",4,0,0.83,353,"1.000","0.2097","0.2097" +"GO:0072359","circulatory system development",4,0,0.83,354,"1.000","0.2097","0.2097" +"GO:0071705","nitrogen compound transport",12,3,2.49,71,"0.470","0.2114","0.2114" +"GO:0051649","establishment of localization in cell",14,5,2.9,14,"0.139","0.2242","0.2242" +"GO:0006979","response to oxidative stress",5,0,1.04,355,"1.000","0.2269","0.2269" +"GO:0032940","secretion by cell",4,1,0.83,147,"0.608","0.2311","0.2311" +"GO:0044260","cellular macromolecule metabolic process",77,15,15.97,201,"0.693","0.1133","0.2334" +"GO:0000278","mitotic cell cycle",8,2,1.66,114,"0.521","0.2357","0.2357" +"GO:0017144","drug metabolic process",3,2,0.62,7,"0.110","0.2363","0.2363" +"GO:0010562","positive regulation of phosphorus metabo...",5,1,1.04,180,"0.691","0.2488","0.2488" +"GO:0045937","positive regulation of phosphate metabol...",5,1,1.04,181,"0.691","0.2488","0.2488" +"GO:0061024","membrane organization",5,1,1.04,182,"0.691","0.2488","0.2488" +"GO:0006470","protein dephosphorylation",5,0,1.04,356,"1.000","0.2488","0.2488" +"GO:0009166","nucleotide catabolic process",5,2,1.04,30,"0.277","0.2505","0.2505" +"GO:0034404","nucleobase-containing small molecule bio...",5,2,1.04,31,"0.277","0.2505","0.2505" +"GO:1901292","nucleoside phosphate catabolic process",5,2,1.04,32,"0.277","0.2505","0.2505" +"GO:0019439","aromatic compound catabolic process",8,3,1.66,20,"0.217","0.2535","0.2535" +"GO:0034655","nucleobase-containing compound catabolic...",8,3,1.66,21,"0.217","0.2535","0.2535" +"GO:0044270","cellular nitrogen compound catabolic pro...",8,3,1.66,22,"0.217","0.2535","0.2535" +"GO:0046700","heterocycle catabolic process",8,3,1.66,23,"0.217","0.2535","0.2535" +"GO:0006913","nucleocytoplasmic transport",3,2,0.62,8,"0.110","0.2562","0.2562" +"GO:0051169","nuclear transport",3,2,0.62,9,"0.110","0.2562","0.2562" +"GO:0010638","positive regulation of organelle organiz...",6,1,1.24,228,"0.757","0.2586","0.2586" +"GO:0048729","tissue morphogenesis",5,1,1.04,183,"0.691","0.2611","0.2611" +"GO:0060429","epithelium development",5,2,1.04,33,"0.277","0.2611","0.2611" +"GO:0016311","dephosphorylation",7,0,1.45,357,"1.000","0.2623","0.2623" +"GO:0007166","cell surface receptor signaling pathway",9,1,1.87,274,"0.882","0.2751","0.2751" +"GO:0043170","macromolecule metabolic process",93,19,19.29,133,"0.603","0.0825","0.2837" +"GO:0002376","immune system process",7,1,1.45,248,"0.808","0.2841","0.2841" +"GO:0009792","embryo development ending in birth or eg...",7,2,1.45,68,"0.445","0.2841","0.2841" +"GO:0000902","cell morphogenesis",7,0,1.45,358,"1.000","0.2841","0.2841" +"GO:2000026","regulation of multicellular organismal d...",7,0,1.45,359,"1.000","0.2841","0.2841" +"GO:0043412","macromolecule modification",36,6,7.47,254,"0.810","0.0410","0.2924" +"GO:0009605","response to external stimulus",10,0,2.07,360,"1.000","0.3056","0.3056" +"GO:0034220","ion transmembrane transport",8,0,1.66,361,"1.000","0.3068","0.3068" +"GO:0044271","cellular nitrogen compound biosynthetic ...",43,10,8.92,56,"0.394","0.3115","0.3115" +"GO:0003002","regionalization",3,1,0.62,84,"0.504","0.3116","0.3116" +"GO:0007389","pattern specification process",3,1,0.62,85,"0.504","0.3116","0.3116" +"GO:0001701","in utero embryonic development",3,0,0.62,362,"1.000","0.3116","0.3116" +"GO:0007623","circadian rhythm",3,0,0.62,363,"1.000","0.3116","0.3116" +"GO:0048511","rhythmic process",3,0,0.62,364,"1.000","0.3116","0.3116" +"GO:0051241","negative regulation of multicellular org...",3,0,0.62,365,"1.000","0.3116","0.3116" +"GO:0051301","cell division",3,0,0.62,366,"1.000","0.3116","0.3116" +"GO:0006464","cellular protein modification process",33,5,6.84,266,"0.865","0.0445","0.3142" +"GO:0036211","protein modification process",33,5,6.84,267,"0.865","0.0445","0.3142" +"GO:0007267","cell-cell signaling",4,0,0.83,367,"1.000","0.3212","0.3212" +"GO:0019725","cellular homeostasis",6,2,1.24,50,"0.363","0.3267","0.3267" +"GO:0046434","organophosphate catabolic process",6,2,1.24,51,"0.363","0.3267","0.3267" +"GO:1901575","organic substance catabolic process",17,6,3.53,10,"0.112","0.3306","0.3306" +"GO:0007155","cell adhesion",7,0,1.45,368,"1.000","0.3309","0.3309" +"GO:0022610","biological adhesion",7,0,1.45,369,"1.000","0.3309","0.3309" +"GO:0009056","catabolic process",21,7,4.35,11,"0.115","0.3338","0.3338" +"GO:0050896","response to stimulus",58,9,12.03,283,"0.912","0.3400","0.3400" +"GO:0071702","organic substance transport",15,4,3.11,55,"0.379","0.3494","0.3494" +"GO:0070887","cellular response to chemical stimulus",11,2,2.28,205,"0.706","0.3530","0.3530" +"GO:0048598","embryonic morphogenesis",4,2,0.83,18,"0.191","0.3536","0.3536" +"GO:0007264","small GTPase mediated signal transductio...",6,0,1.24,370,"1.000","0.3553","0.3553" +"GO:1902531","regulation of intracellular signal trans...",6,0,1.24,371,"1.000","0.3553","0.3553" +"GO:0006820","anion transport",3,1,0.62,86,"0.504","0.3594","0.3594" +"GO:0015711","organic anion transport",3,1,0.62,87,"0.504","0.3594","0.3594" +"GO:0051130","positive regulation of cellular componen...",8,1,1.66,260,"0.850","0.3609","0.3609" +"GO:0048731","system development",22,3,4.56,270,"0.878","0.3660","0.3660" +"GO:0051641","cellular localization",22,5,4.56,73,"0.496","0.3703","0.3703" +"GO:0007399","nervous system development",15,0,3.11,372,"1.000","0.3787","0.3787" +"GO:0098657","import into cell",5,0,1.04,373,"1.000","0.3813","0.3813" +"GO:0044249","cellular biosynthetic process",49,12,10.16,38,"0.291","0.3901","0.3901" +"GO:0009612","response to mechanical stimulus",4,0,0.83,374,"1.000","0.3901","0.3901" +"GO:0022402","cell cycle process",9,2,1.87,130,"0.590","0.3922","0.3922" +"GO:0044283","small molecule biosynthetic process",7,2,1.45,69,"0.445","0.3948","0.3948" +"GO:0008104","protein localization",17,3,3.53,213,"0.727","0.4005","0.4005" +"GO:0018130","heterocycle biosynthetic process",37,9,7.67,43,"0.347","0.4015","0.4015" +"GO:0019438","aromatic compound biosynthetic process",37,9,7.67,44,"0.347","0.4015","0.4015" +"GO:0034654","nucleobase-containing compound biosynthe...",37,9,7.67,45,"0.347","0.4015","0.4015" +"GO:0001775","cell activation",6,0,1.24,375,"1.000","0.4037","0.4037" +"GO:0045664","regulation of neuron differentiation",6,0,1.24,376,"1.000","0.4037","0.4037" +"GO:0050767","regulation of neurogenesis",6,0,1.24,377,"1.000","0.4037","0.4037" +"GO:0051960","regulation of nervous system development",6,0,1.24,378,"1.000","0.4037","0.4037" +"GO:0022603","regulation of anatomical structure morph...",5,0,1.04,379,"1.000","0.4037","0.4037" +"GO:0051336","regulation of hydrolase activity",5,0,1.04,380,"1.000","0.4037","0.4037" +"GO:0031399","regulation of protein modification proce...",11,2,2.28,206,"0.706","0.0086","0.4099" +"GO:0032268","regulation of cellular protein metabolic...",11,2,2.28,207,"0.706","0.0086","0.4099" +"GO:0051235","maintenance of location",4,0,0.83,381,"1.000","0.4102","0.4102" +"GO:0009891","positive regulation of biosynthetic proc...",5,1,1.04,184,"0.691","0.4105","0.4105" +"GO:0048513","animal organ development",17,3,3.53,214,"0.727","0.4170","0.4170" +"GO:0007417","central nervous system development",9,0,1.87,382,"1.000","0.4179","0.4179" +"GO:0051239","regulation of multicellular organismal p...",9,0,1.87,383,"1.000","0.4179","0.4179" +"GO:0007275","multicellular organism development",28,4,5.81,271,"0.879","0.4187","0.4187" +"GO:0006399","tRNA metabolic process",4,1,0.83,148,"0.608","0.4205","0.4205" +"GO:0008033","tRNA processing",4,1,0.83,149,"0.608","0.4205","0.4205" +"GO:0048856","anatomical structure development",33,4,6.84,292,"0.948","0.4277","0.4277" +"GO:0010639","negative regulation of organelle organiz...",3,1,0.62,88,"0.504","0.4314","0.4314" +"GO:0006996","organelle organization",19,4,3.94,122,"0.584","0.4361","0.4361" +"GO:0065008","regulation of biological quality",19,4,3.94,123,"0.584","0.4361","0.4361" +"GO:0035303","regulation of dephosphorylation",3,0,0.62,384,"1.000","0.4374","0.4374" +"GO:0035304","regulation of protein dephosphorylation",3,0,0.62,385,"1.000","0.4374","0.4374" +"GO:0009889","regulation of biosynthetic process",24,5,4.98,124,"0.585","0.4381","0.4381" +"GO:0010556","regulation of macromolecule biosynthetic...",24,5,4.98,125,"0.585","0.4381","0.4381" +"GO:0019219","regulation of nucleobase-containing comp...",24,5,4.98,126,"0.585","0.4381","0.4381" +"GO:0031326","regulation of cellular biosynthetic proc...",24,5,4.98,127,"0.585","0.4381","0.4381" +"GO:2000112","regulation of cellular macromolecule bio...",24,5,4.98,128,"0.585","0.4381","0.4381" +"GO:0051716","cellular response to stimulus",50,9,10.37,237,"0.768","0.4412","0.4412" +"GO:0016310","phosphorylation",27,5,5.6,202,"0.702","0.0263","0.4472" +"GO:0002009","morphogenesis of an epithelium",4,1,0.83,150,"0.608","0.4518","0.4518" +"GO:0006897","endocytosis",4,0,0.83,386,"1.000","0.4518","0.4518" +"GO:0022604","regulation of cell morphogenesis",4,0,0.83,387,"1.000","0.4518","0.4518" +"GO:0098609","cell-cell adhesion",4,0,0.83,388,"1.000","0.4518","0.4518" +"GO:0044281","small molecule metabolic process",19,6,3.94,15,"0.175","0.4524","0.4524" +"GO:0006753","nucleoside phosphate metabolic process",8,3,1.66,24,"0.217","0.4549","0.4549" +"GO:0009117","nucleotide metabolic process",8,3,1.66,25,"0.217","0.4549","0.4549" +"GO:0071704","organic substance metabolic process",120,26,24.88,61,"0.419","0.2977","0.4562" +"GO:0044267","cellular protein metabolic process",40,6,8.29,279,"0.889","0.1321","0.4589" +"GO:0044248","cellular catabolic process",19,6,3.94,16,"0.175","0.4625","0.4625" +"GO:0071310","cellular response to organic substance",8,1,1.66,261,"0.850","0.4740","0.4740" +"GO:0006139","nucleobase-containing compound metabolic...",52,13,10.78,26,"0.247","0.4797","0.4797" +"GO:0006725","cellular aromatic compound metabolic pro...",52,13,10.78,27,"0.247","0.4797","0.4797" +"GO:0046483","heterocycle metabolic process",52,13,10.78,28,"0.247","0.4797","0.4797" +"GO:0010557","positive regulation of macromolecule bio...",4,0,0.83,389,"1.000","0.4922","0.4922" +"GO:0031328","positive regulation of cellular biosynth...",4,0,0.83,390,"1.000","0.4922","0.4922" +"GO:0045935","positive regulation of nucleobase-contai...",4,0,0.83,391,"1.000","0.4922","0.4922" +"GO:0043933","protein-containing complex subunit organ...",7,0,1.45,392,"1.000","0.4927","0.4927" +"GO:0065003","protein-containing complex assembly",7,0,1.45,393,"1.000","0.4927","0.4927" +"GO:0090304","nucleic acid metabolic process",43,10,8.92,57,"0.394","0.4946","0.4946" +"GO:0006355","regulation of transcription, DNA-templat...",23,5,4.77,117,"0.541","0.4979","0.4979" +"GO:0051252","regulation of RNA metabolic process",23,5,4.77,118,"0.541","0.4979","0.4979" +"GO:1903506","regulation of nucleic acid-templated tra...",23,5,4.77,119,"0.541","0.4979","0.4979" +"GO:2001141","regulation of RNA biosynthetic process",23,5,4.77,120,"0.541","0.4979","0.4979" +"GO:0048468","cell development",14,0,2.9,394,"1.000","0.5005","0.5005" +"GO:0009059","macromolecule biosynthetic process",39,8,8.09,132,"0.591","0.5015","0.5015" +"GO:0007186","G protein-coupled receptor signaling pat...",7,2,1.45,70,"0.445","0.5073","0.5073" +"GO:1901360","organic cyclic compound metabolic proces...",53,13,10.99,29,"0.274","0.5099","0.5099" +"GO:0007265","Ras protein signal transduction",5,0,1.04,395,"1.000","0.5107","0.5107" +"GO:0033044","regulation of chromosome organization",3,1,0.62,89,"0.504","0.5150","0.5150" +"GO:2001252","positive regulation of chromosome organi...",3,1,0.62,90,"0.504","0.5150","0.5150" +"GO:0033043","regulation of organelle organization",7,1,1.45,249,"0.808","0.5220","0.5220" +"GO:0009058","biosynthetic process",50,12,10.37,39,"0.321","0.5259","0.5259" +"GO:1901576","organic substance biosynthetic process",50,12,10.37,40,"0.321","0.5259","0.5259" +"GO:0044238","primary metabolic process",115,25,23.85,58,"0.414","0.2254","0.5365" +"GO:0010629","negative regulation of gene expression",6,2,1.24,52,"0.363","0.5421","0.5421" +"GO:0044255","cellular lipid metabolic process",8,2,1.66,115,"0.521","0.5447","0.5447" +"GO:0055086","nucleobase-containing small molecule met...",10,3,2.07,42,"0.344","0.5472","0.5472" +"GO:0034613","cellular protein localization",11,2,2.28,208,"0.706","0.5541","0.5541" +"GO:0070727","cellular macromolecule localization",11,2,2.28,209,"0.706","0.5541","0.5541" +"GO:0034645","cellular macromolecule biosynthetic proc...",38,7,7.88,212,"0.722","0.5562","0.5562" +"GO:0007420","brain development",8,0,1.66,396,"1.000","0.5566","0.5566" +"GO:0060322","head development",8,0,1.66,397,"1.000","0.5566","0.5566" +"GO:0051171","regulation of nitrogen compound metaboli...",33,6,6.84,215,"0.727","0.2232","0.5575" +"GO:0080090","regulation of primary metabolic process",33,6,6.84,216,"0.727","0.2232","0.5575" +"GO:0034641","cellular nitrogen compound metabolic pro...",61,14,12.65,54,"0.370","0.5598","0.5598" +"GO:0008283","cell proliferation",5,1,1.04,185,"0.691","0.5606","0.5606" +"GO:0006351","transcription, DNA-templated",30,6,6.22,168,"0.625","0.5666","0.5666" +"GO:0032774","RNA biosynthetic process",30,6,6.22,169,"0.625","0.5666","0.5666" +"GO:0097659","nucleic acid-templated transcription",30,6,6.22,170,"0.625","0.5666","0.5666" +"GO:0009719","response to endogenous stimulus",6,1,1.24,229,"0.757","0.5743","0.5743" +"GO:0071495","cellular response to endogenous stimulus",6,1,1.24,230,"0.757","0.5743","0.5743" +"GO:0009150","purine ribonucleotide metabolic process",3,1,0.62,91,"0.504","0.5761","0.5761" +"GO:0009259","ribonucleotide metabolic process",3,1,0.62,92,"0.504","0.5761","0.5761" +"GO:0019693","ribose phosphate metabolic process",3,1,0.62,93,"0.504","0.5761","0.5761" +"GO:0010468","regulation of gene expression",25,6,5.18,60,"0.419","0.5807","0.5807" +"GO:0044265","cellular macromolecule catabolic process",5,2,1.04,34,"0.277","0.5833","0.5833" +"GO:1901700","response to oxygen-containing compound",4,1,0.83,151,"0.608","0.5839","0.5839" +"GO:1901701","cellular response to oxygen-containing c...",4,1,0.83,152,"0.608","0.5839","0.5839" +"GO:0023052","signaling",38,6,7.88,265,"0.854","0.5840","0.5840" +"GO:0006401","RNA catabolic process",3,1,0.62,94,"0.504","0.5891","0.5891" +"GO:0007346","regulation of mitotic cell cycle",3,1,0.62,95,"0.504","0.5891","0.5891" +"GO:0033993","response to lipid",3,1,0.62,96,"0.504","0.5891","0.5891" +"GO:0048545","response to steroid hormone",3,1,0.62,97,"0.504","0.5891","0.5891" +"GO:0071383","cellular response to steroid hormone sti...",3,1,0.62,98,"0.504","0.5891","0.5891" +"GO:0071396","cellular response to lipid",3,1,0.62,99,"0.504","0.5891","0.5891" +"GO:0071407","cellular response to organic cyclic comp...",3,1,0.62,100,"0.504","0.5891","0.5891" +"GO:0010628","positive regulation of gene expression",3,0,0.62,398,"1.000","0.5891","0.5891" +"GO:0045893","positive regulation of transcription, DN...",3,0,0.62,399,"1.000","0.5891","0.5891" +"GO:0045944","positive regulation of transcription by ...",3,0,0.62,400,"1.000","0.5891","0.5891" +"GO:0051254","positive regulation of RNA metabolic pro...",3,0,0.62,401,"1.000","0.5891","0.5891" +"GO:1902680","positive regulation of RNA biosynthetic ...",3,0,0.62,402,"1.000","0.5891","0.5891" +"GO:1903508","positive regulation of nucleic acid-temp...",3,0,0.62,403,"1.000","0.5891","0.5891" +"GO:0007154","cell communication",37,6,7.67,256,"0.833","0.6056","0.6056" +"GO:0010769","regulation of cell morphogenesis involve...",3,0,0.62,404,"1.000","0.6118","0.6118" +"GO:0007165","signal transduction",35,6,7.26,238,"0.785","0.6136","0.6136" +"GO:0010256","endomembrane system organization",4,1,0.83,153,"0.608","0.6150","0.6150" +"GO:0008219","cell death",4,0,0.83,405,"1.000","0.6150","0.6150" +"GO:1901564","organonitrogen compound metabolic proces...",61,10,12.65,272,"0.881","0.2266","0.6169" +"GO:0006357","regulation of transcription by RNA polym...",7,1,1.45,250,"0.808","0.6267","0.6267" +"GO:0019637","organophosphate metabolic process",12,3,2.49,72,"0.470","0.6319","0.6319" +"GO:1901135","carbohydrate derivative metabolic proces...",12,2,2.49,223,"0.754","0.6319","0.6319" +"GO:0051129","negative regulation of cellular componen...",5,1,1.04,186,"0.691","0.6414","0.6414" +"GO:0010467","gene expression",44,8,9.12,220,"0.746","0.6448","0.6448" +"GO:0060255","regulation of macromolecule metabolic pr...",35,7,7.26,167,"0.624","0.3073","0.6540" +"GO:0016042","lipid catabolic process",4,1,0.83,154,"0.608","0.6600","0.6600" +"GO:0045454","cell redox homeostasis",4,1,0.83,155,"0.608","0.6683","0.6683" +"GO:0010033","response to organic substance",10,2,2.07,174,"0.652","0.6716","0.6716" +"GO:0006811","ion transport",23,1,4.77,304,"0.997","0.6740","0.6740" +"GO:0031323","regulation of cellular metabolic process",33,6,6.84,217,"0.727","0.2232","0.6762" +"GO:0006807","nitrogen compound metabolic process",103,20,21.36,218,"0.733","0.3223","0.6765" +"GO:0006163","purine nucleotide metabolic process",4,1,0.83,156,"0.608","0.6795","0.6795" +"GO:0032787","monocarboxylic acid metabolic process",4,1,0.83,157,"0.608","0.6795","0.6795" +"GO:0051186","cofactor metabolic process",4,1,0.83,158,"0.608","0.6795","0.6795" +"GO:0034470","ncRNA processing",5,1,1.04,187,"0.691","0.6815","0.6815" +"GO:0034660","ncRNA metabolic process",5,1,1.04,188,"0.691","0.6815","0.6815" +"GO:0051276","chromosome organization",7,1,1.45,251,"0.808","0.6864","0.6864" +"GO:0010817","regulation of hormone levels",3,1,0.62,101,"0.504","0.6893","0.6893" +"GO:0009968","negative regulation of signal transducti...",3,0,0.62,406,"1.000","0.6893","0.6893" +"GO:0010648","negative regulation of cell communicatio...",3,0,0.62,407,"1.000","0.6893","0.6893" +"GO:0010720","positive regulation of cell development",3,0,0.62,408,"1.000","0.6893","0.6893" +"GO:0023057","negative regulation of signaling",3,0,0.62,409,"1.000","0.6893","0.6893" +"GO:0045666","positive regulation of neuron differenti...",3,0,0.62,410,"1.000","0.6893","0.6893" +"GO:0050769","positive regulation of neurogenesis",3,0,0.62,411,"1.000","0.6893","0.6893" +"GO:0051962","positive regulation of nervous system de...",3,0,0.62,412,"1.000","0.6893","0.6893" +"GO:0007610","behavior",6,0,1.24,413,"1.000","0.6895","0.6895" +"GO:0051704","multi-organism process",5,0,1.04,414,"1.000","0.6914","0.6914" +"GO:0032502","developmental process",35,4,7.26,297,"0.964","0.6924","0.6924" +"GO:0006397","mRNA processing",3,1,0.62,102,"0.504","0.6925","0.6925" +"GO:0016071","mRNA metabolic process",3,1,0.62,103,"0.504","0.6925","0.6925" +"GO:0009725","response to hormone",4,1,0.83,159,"0.608","0.6933","0.6933" +"GO:0032870","cellular response to hormone stimulus",4,1,0.83,160,"0.608","0.6933","0.6933" +"GO:0009967","positive regulation of signal transducti...",4,0,0.83,415,"1.000","0.6933","0.6933" +"GO:0010647","positive regulation of cell communicatio...",4,0,0.83,416,"1.000","0.6933","0.6933" +"GO:0023056","positive regulation of signaling",4,0,0.83,417,"1.000","0.6933","0.6933" +"GO:0043604","amide biosynthetic process",5,0,1.04,418,"1.000","0.6939","0.6939" +"GO:0010941","regulation of cell death",3,0,0.62,419,"1.000","0.6956","0.6956" +"GO:0012501","programmed cell death",3,0,0.62,420,"1.000","0.6956","0.6956" +"GO:0060548","negative regulation of cell death",3,0,0.62,421,"1.000","0.6956","0.6956" +"GO:0046578","regulation of Ras protein signal transdu...",4,0,0.83,422,"1.000","0.7071","0.7071" +"GO:0051056","regulation of small GTPase mediated sign...",4,0,0.83,423,"1.000","0.7071","0.7071" +"GO:0007018","microtubule-based movement",4,1,0.83,161,"0.608","0.7098","0.7098" +"GO:0051246","regulation of protein metabolic process",13,2,2.7,241,"0.794","0.0666","0.7102" +"GO:0009057","macromolecule catabolic process",6,2,1.24,53,"0.363","0.7120","0.7120" +"GO:1901566","organonitrogen compound biosynthetic pro...",8,1,1.66,262,"0.850","0.7125","0.7125" +"GO:1901362","organic cyclic compound biosynthetic pro...",39,9,8.09,59,"0.418","0.7137","0.7137" +"GO:0051094","positive regulation of developmental pro...",7,0,1.45,424,"1.000","0.7157","0.7157" +"GO:0060284","regulation of cell development",7,0,1.45,425,"1.000","0.7157","0.7157" +"GO:0009628","response to abiotic stimulus",6,0,1.24,426,"1.000","0.7165","0.7165" +"GO:0032880","regulation of protein localization",4,0,0.83,427,"1.000","0.7180","0.7180" +"GO:0040007","growth",3,1,0.62,104,"0.504","0.7271","0.7271" +"GO:0030031","cell projection assembly",3,0,0.62,428,"1.000","0.7271","0.7271" +"GO:0032101","regulation of response to external stimu...",3,0,0.62,429,"1.000","0.7271","0.7271" +"GO:0032103","positive regulation of response to exter...",3,0,0.62,430,"1.000","0.7271","0.7271" +"GO:0051346","negative regulation of hydrolase activit...",3,0,0.62,431,"1.000","0.7271","0.7271" +"GO:0060491","regulation of cell projection assembly",3,0,0.62,432,"1.000","0.7271","0.7271" +"GO:0120031","plasma membrane bounded cell projection ...",3,0,0.62,433,"1.000","0.7271","0.7271" +"GO:0120032","regulation of plasma membrane bounded ce...",3,0,0.62,434,"1.000","0.7271","0.7271" +"GO:0006644","phospholipid metabolic process",3,0,0.62,435,"1.000","0.7333","0.7333" +"GO:0044242","cellular lipid catabolic process",3,0,0.62,436,"1.000","0.7333","0.7333" +"GO:0006694","steroid biosynthetic process",3,1,0.62,105,"0.504","0.7395","0.7395" +"GO:0008202","steroid metabolic process",3,1,0.62,106,"0.504","0.7395","0.7395" +"GO:0032501","multicellular organismal process",32,4,6.64,288,"0.938","0.7438","0.7438" +"GO:0019220","regulation of phosphate metabolic proces...",9,1,1.87,275,"0.882","0.0297","0.7449" +"GO:0051174","regulation of phosphorus metabolic proce...",9,1,1.87,276,"0.882","0.0297","0.7449" +"GO:0072521","purine-containing compound metabolic pro...",5,1,1.04,189,"0.691","0.7450","0.7450" +"GO:0055085","transmembrane transport",22,0,4.56,437,"1.000","0.7452","0.7452" +"GO:0006412","translation",4,0,0.83,438,"1.000","0.7476","0.7476" +"GO:0043043","peptide biosynthetic process",4,0,0.83,439,"1.000","0.7476","0.7476" +"GO:0006869","lipid transport",3,1,0.62,107,"0.504","0.7487","0.7487" +"GO:0010876","lipid localization",3,1,0.62,108,"0.504","0.7487","0.7487" +"GO:0002682","regulation of immune system process",4,0,0.83,440,"1.000","0.7502","0.7502" +"GO:0042110","T cell activation",4,0,0.83,441,"1.000","0.7502","0.7502" +"GO:0045321","leukocyte activation",4,0,0.83,442,"1.000","0.7502","0.7502" +"GO:0046649","lymphocyte activation",4,0,0.83,443,"1.000","0.7502","0.7502" +"GO:0061061","muscle structure development",4,0,0.83,444,"1.000","0.7502","0.7502" +"GO:0006810","transport",52,7,10.78,295,"0.958","0.7529","0.7529" +"GO:0051259","protein complex oligomerization",4,0,0.83,445,"1.000","0.7581","0.7581" +"GO:0051260","protein homooligomerization",4,0,0.83,446,"1.000","0.7581","0.7581" +"GO:0010243","response to organonitrogen compound",3,0,0.62,447,"1.000","0.7608","0.7608" +"GO:1901698","response to nitrogen compound",3,0,0.62,448,"1.000","0.7608","0.7608" +"GO:0007049","cell cycle",13,2,2.7,242,"0.794","0.7615","0.7615" +"GO:0006518","peptide metabolic process",5,0,1.04,449,"1.000","0.7662","0.7662" +"GO:0006812","cation transport",16,0,3.32,450,"1.000","0.7673","0.7673" +"GO:0016070","RNA metabolic process",38,8,7.88,121,"0.555","0.7683","0.7683" +"GO:0000122","negative regulation of transcription by ...",4,1,0.83,162,"0.608","0.7685","0.7685" +"GO:0006629","lipid metabolic process",10,2,2.07,175,"0.652","0.7688","0.7688" +"GO:0051049","regulation of transport",9,1,1.87,277,"0.882","0.7690","0.7690" +"GO:0009888","tissue development",9,2,1.87,131,"0.590","0.7707","0.7707" +"GO:0032989","cellular component morphogenesis",9,0,1.87,451,"1.000","0.7707","0.7707" +"GO:0044087","regulation of cellular component biogene...",7,0,1.45,452,"1.000","0.7723","0.7723" +"GO:0006396","RNA processing",8,2,1.66,116,"0.521","0.7824","0.7824" +"GO:0048522","positive regulation of cellular process",19,2,3.94,287,"0.936","0.7830","0.7830" +"GO:0006914","autophagy",4,1,0.83,163,"0.608","0.7865","0.7865" +"GO:0061919","process utilizing autophagic mechanism",4,1,0.83,164,"0.608","0.7865","0.7865" +"GO:0022607","cellular component assembly",10,0,2.07,453,"1.000","0.7869","0.7869" +"GO:0006082","organic acid metabolic process",6,1,1.24,231,"0.757","0.8002","0.8002" +"GO:0019752","carboxylic acid metabolic process",6,1,1.24,232,"0.757","0.8002","0.8002" +"GO:0043436","oxoacid metabolic process",6,1,1.24,233,"0.757","0.8002","0.8002" +"GO:0007600","sensory perception",3,1,0.62,109,"0.504","0.8019","0.8019" +"GO:0098655","cation transmembrane transport",4,0,0.83,454,"1.000","0.8114","0.8114" +"GO:0044085","cellular component biogenesis",12,0,2.49,455,"1.000","0.8131","0.8131" +"GO:0003008","system process",6,1,1.24,234,"0.757","0.8143","0.8143" +"GO:0048584","positive regulation of response to stimu...",6,0,1.24,456,"1.000","0.8143","0.8143" +"GO:0009966","regulation of signal transduction",9,0,1.87,457,"1.000","0.8147","0.8147" +"GO:0030001","metal ion transport",12,0,2.49,458,"1.000","0.8230","0.8230" +"GO:0051726","regulation of cell cycle",7,1,1.45,252,"0.808","0.8253","0.8253" +"GO:0033036","macromolecule localization",22,4,4.56,210,"0.711","0.8274","0.8274" +"GO:0010035","response to inorganic substance",3,0,0.62,459,"1.000","0.8325","0.8325" +"GO:0010038","response to metal ion",3,0,0.62,460,"1.000","0.8325","0.8325" +"GO:0022898","regulation of transmembrane transporter ...",3,0,0.62,461,"1.000","0.8325","0.8325" +"GO:0032409","regulation of transporter activity",3,0,0.62,462,"1.000","0.8325","0.8325" +"GO:0032412","regulation of ion transmembrane transpor...",3,0,0.62,463,"1.000","0.8325","0.8325" +"GO:0034762","regulation of transmembrane transport",3,0,0.62,464,"1.000","0.8325","0.8325" +"GO:0034765","regulation of ion transmembrane transpor...",3,0,0.62,465,"1.000","0.8325","0.8325" +"GO:0043269","regulation of ion transport",3,0,0.62,466,"1.000","0.8325","0.8325" +"GO:0044057","regulation of system process",3,0,0.62,467,"1.000","0.8325","0.8325" +"GO:0098660","inorganic ion transmembrane transport",3,0,0.62,468,"1.000","0.8325","0.8325" +"GO:0098662","inorganic cation transmembrane transport",3,0,0.62,469,"1.000","0.8325","0.8325" +"GO:1904062","regulation of cation transmembrane trans...",3,0,0.62,470,"1.000","0.8325","0.8325" +"GO:2001257","regulation of cation channel activity",3,0,0.62,471,"1.000","0.8325","0.8325" +"GO:0015672","monovalent inorganic cation transport",11,0,2.28,472,"1.000","0.8372","0.8372" +"GO:0032879","regulation of localization",15,1,3.11,301,"0.973","0.8393","0.8393" +"GO:0050877","nervous system process",5,1,1.04,190,"0.691","0.8433","0.8433" +"GO:0030163","protein catabolic process",3,1,0.62,110,"0.504","0.8458","0.8458" +"GO:0043087","regulation of GTPase activity",3,0,0.62,473,"1.000","0.8484","0.8484" +"GO:0043547","positive regulation of GTPase activity",3,0,0.62,474,"1.000","0.8484","0.8484" +"GO:0051345","positive regulation of hydrolase activit...",3,0,0.62,475,"1.000","0.8484","0.8484" +"GO:0050794","regulation of cellular process",74,13,15.35,257,"0.843","0.7062","0.8503" +"GO:1901615","organic hydroxy compound metabolic proce...",4,1,0.83,165,"0.608","0.8535","0.8535" +"GO:0044282","small molecule catabolic process",3,1,0.62,111,"0.504","0.8663","0.8663" +"GO:0050789","regulation of biological process",80,15,16.59,236,"0.764","0.7336","0.8666" +"GO:0051128","regulation of cellular component organiz...",14,1,2.9,299,"0.966","0.8667","0.8667" +"GO:0071840","cellular component organization or bioge...",32,4,6.64,289,"0.938","0.8733","0.8733" +"GO:0016477","cell migration",6,0,1.24,476,"1.000","0.8740","0.8740" +"GO:0040011","locomotion",6,0,1.24,477,"1.000","0.8740","0.8740" +"GO:0045597","positive regulation of cell differentiat...",6,0,1.24,478,"1.000","0.8740","0.8740" +"GO:0048870","cell motility",6,0,1.24,479,"1.000","0.8740","0.8740" +"GO:0051240","positive regulation of multicellular org...",6,0,1.24,480,"1.000","0.8740","0.8740" +"GO:0051270","regulation of cellular component movemen...",6,0,1.24,481,"1.000","0.8740","0.8740" +"GO:0051674","localization of cell",6,0,1.24,482,"1.000","0.8740","0.8740" +"GO:0006928","movement of cell or subcellular componen...",11,1,2.28,286,"0.928","0.8804","0.8804" +"GO:0050793","regulation of developmental process",11,0,2.28,483,"1.000","0.8804","0.8804" +"GO:0016043","cellular component organization",31,4,6.43,285,"0.926","0.8830","0.8830" +"GO:0010605","negative regulation of macromolecule met...",13,2,2.7,243,"0.794","0.2141","0.8852" +"GO:0014070","response to organic cyclic compound",5,1,1.04,191,"0.691","0.8896","0.8896" +"GO:0044237","cellular metabolic process",108,21,22.4,219,"0.737","0.8254","0.8940" +"GO:0006814","sodium ion transport",7,0,1.45,484,"1.000","0.8950","0.8950" +"GO:0048583","regulation of response to stimulus",12,0,2.49,485,"1.000","0.8997","0.8997" +"GO:0006813","potassium ion transport",5,0,1.04,486,"1.000","0.9086","0.9086" +"GO:0019222","regulation of metabolic process",36,7,7.47,176,"0.659","0.4523","0.9103" +"GO:0060341","regulation of cellular localization",4,1,0.83,166,"0.608","0.9107","0.9107" +"GO:0007266","Rho protein signal transduction",3,0,0.62,487,"1.000","0.9122","0.9122" +"GO:0035023","regulation of Rho protein signal transdu...",3,0,0.62,488,"1.000","0.9122","0.9122" +"GO:0048518","positive regulation of biological proces...",22,2,4.56,300,"0.966","0.9129","0.9129" +"GO:0010646","regulation of cell communication",10,0,2.07,489,"1.000","0.9164","0.9164" +"GO:0023051","regulation of signaling",10,0,2.07,490,"1.000","0.9164","0.9164" +"GO:0009890","negative regulation of biosynthetic proc...",5,1,1.04,192,"0.691","0.9214","0.9214" +"GO:0010558","negative regulation of macromolecule bio...",5,1,1.04,193,"0.691","0.9214","0.9214" +"GO:0031327","negative regulation of cellular biosynth...",5,1,1.04,194,"0.691","0.9214","0.9214" +"GO:0045892","negative regulation of transcription, DN...",5,1,1.04,195,"0.691","0.9214","0.9214" +"GO:0045934","negative regulation of nucleobase-contai...",5,1,1.04,196,"0.691","0.9214","0.9214" +"GO:0051253","negative regulation of RNA metabolic pro...",5,1,1.04,197,"0.691","0.9214","0.9214" +"GO:1902679","negative regulation of RNA biosynthetic ...",5,1,1.04,198,"0.691","0.9214","0.9214" +"GO:1903507","negative regulation of nucleic acid-temp...",5,1,1.04,199,"0.691","0.9214","0.9214" +"GO:2000113","negative regulation of cellular macromol...",5,1,1.04,200,"0.691","0.9214","0.9214" +"GO:0051179","localization",58,7,12.03,303,"0.985","0.9262","0.9262" +"GO:0009892","negative regulation of metabolic process",14,2,2.9,255,"0.829","0.3525","0.9315" +"GO:0006793","phosphorus metabolic process",39,6,8.09,268,"0.872","0.4266","0.9323" +"GO:0006796","phosphate-containing compound metabolic ...",39,6,8.09,269,"0.872","0.4266","0.9323" +"GO:0065007","biological regulation",83,16,17.21,211,"0.720","0.8222","0.9325" +"GO:1901565","organonitrogen compound catabolic proces...",7,1,1.45,253,"0.808","0.9332","0.9332" +"GO:0002694","regulation of leukocyte activation",3,0,0.62,491,"1.000","0.9358","0.9358" +"GO:0007517","muscle organ development",3,0,0.62,492,"1.000","0.9358","0.9358" +"GO:0050863","regulation of T cell activation",3,0,0.62,493,"1.000","0.9358","0.9358" +"GO:0050865","regulation of cell activation",3,0,0.62,494,"1.000","0.9358","0.9358" +"GO:0051249","regulation of lymphocyte activation",3,0,0.62,495,"1.000","0.9358","0.9358" +"GO:0030334","regulation of cell migration",5,0,1.04,496,"1.000","0.9459","0.9459" +"GO:0040012","regulation of locomotion",5,0,1.04,497,"1.000","0.9459","0.9459" +"GO:2000145","regulation of cell motility",5,0,1.04,498,"1.000","0.9459","0.9459" +"GO:0051234","establishment of localization",55,7,11.41,302,"0.975","0.9472","0.9472" +"GO:0048585","negative regulation of response to stimu...",4,0,0.83,499,"1.000","0.9484","0.9484" +"GO:0030154","cell differentiation",17,0,3.53,500,"1.000","0.9525","0.9525" +"GO:0009894","regulation of catabolic process",3,0,0.62,501,"1.000","0.9590","0.9590" +"GO:0042221","response to chemical",18,2,3.73,284,"0.922","0.9600","0.9600" +"GO:0045595","regulation of cell differentiation",10,0,2.07,502,"1.000","0.9606","0.9606" +"GO:0006366","transcription by RNA polymerase II",9,1,1.87,278,"0.882","0.9609","0.9609" +"GO:0009116","nucleoside metabolic process",4,0,0.83,503,"1.000","0.9618","0.9618" +"GO:1901657","glycosyl compound metabolic process",4,0,0.83,504,"1.000","0.9618","0.9618" +"GO:0008380","RNA splicing",3,0,0.62,505,"1.000","0.9619","0.9619" +"GO:0010564","regulation of cell cycle process",3,0,0.62,506,"1.000","0.9675","0.9675" +"GO:0030155","regulation of cell adhesion",3,0,0.62,507,"1.000","0.9675","0.9675" +"GO:0043603","cellular amide metabolic process",8,0,1.66,508,"1.000","0.9777","0.9777" +"GO:0007017","microtubule-based process",6,1,1.24,235,"0.757","0.9790","0.9790" +"GO:0048869","cellular developmental process",18,0,3.73,509,"1.000","0.9794","0.9794" +"GO:0048519","negative regulation of biological proces...",23,3,4.77,280,"0.897","0.7651","0.9817" +"GO:0006352","DNA-templated transcription, initiation",4,0,0.83,510,"1.000","0.9828","0.9828" +"GO:0048523","negative regulation of cellular process",20,2,4.15,293,"0.948","0.6788","0.9855" +"GO:0031324","negative regulation of cellular metaboli...",13,1,2.7,294,"0.956","0.4963","0.9942" +"GO:0051172","negative regulation of nitrogen compound...",12,1,2.49,291,"0.943","0.3246","0.9953" +"GO:0030900","forebrain development",3,0,0.62,511,"1.000","0.9968","0.9968" +"GO:0045596","negative regulation of cell differentiat...",3,0,0.62,512,"1.000","0.9968","0.9968" +"GO:0051093","negative regulation of developmental pro...",3,0,0.62,513,"1.000","0.9968","0.9968" +"GO:0009987","cellular process",153,30,31.73,244,"0.795","0.9979","0.9987" +"GO:0008150","biological_process",217,45,45,514,"1.000","1.0000","1.0000" +"GO:0032269","negative regulation of cellular protein ...",8,1,1.66,263,"0.850","0.0074","1.0000" +"GO:0051248","negative regulation of protein metabolic...",8,1,1.66,264,"0.850","0.0074","1.0000" diff --git a/GO_enrichment_microbiome_output/contrast_emerging_phoretic_downregulated.csv b/GO_enrichment_microbiome_output/contrast_emerging_phoretic_downregulated.csv index 008be75..17c41f9 100644 --- a/GO_enrichment_microbiome_output/contrast_emerging_phoretic_downregulated.csv +++ b/GO_enrichment_microbiome_output/contrast_emerging_phoretic_downregulated.csv @@ -4,3 +4,490 @@ "GO:0034641","cellular nitrogen compound metabolic pro...",51,16,11.01,6,"0.0393","0.018","0.018" "GO:0006725","cellular aromatic compound metabolic pro...",42,15,9.06,3,"0.0125","0.042","0.042" "GO:0008152","metabolic process",116,29,25.03,13,"0.1039","0.055","0.055" +"GO:0003333","amino acid transmembrane transport",5,3,1.08,9,"0.0682","0.058","0.058" +"GO:0006865","amino acid transport",5,3,1.08,10,"0.0682","0.058","0.058" +"GO:1903825","organic acid transmembrane transport",5,3,1.08,11,"0.0682","0.058","0.058" +"GO:1905039","carboxylic acid transmembrane transport",5,3,1.08,12,"0.0682","0.058","0.058" +"GO:0046483","heterocycle metabolic process",43,15,9.28,4,"0.0162","0.058","0.058" +"GO:1901360","organic cyclic compound metabolic proces...",43,15,9.28,5,"0.0162","0.058","0.058" +"GO:0040007","growth",6,3,1.29,14,"0.1159","0.066","0.066" +"GO:0006396","RNA processing",7,4,1.51,7,"0.0401","0.068","0.068" +"GO:0006139","nucleobase-containing compound metabolic...",40,13,8.63,8,"0.0504","0.070","0.070" +"GO:0044085","cellular component biogenesis",8,1,1.73,229,"0.8628","0.102","0.102" +"GO:0015849","organic acid transport",6,3,1.29,15,"0.1159","0.105","0.105" +"GO:0046942","carboxylic acid transport",6,3,1.29,16,"0.1159","0.105","0.105" +"GO:0006814","sodium ion transport",3,2,0.65,17,"0.1181","0.109","0.109" +"GO:0090304","nucleic acid metabolic process",37,11,7.98,25,"0.1322","0.135","0.135" +"GO:0009968","negative regulation of signal transducti...",4,1,0.86,101,"0.6251","0.135","0.135" +"GO:0010648","negative regulation of cell communicatio...",4,1,0.86,102,"0.6251","0.135","0.135" +"GO:0023057","negative regulation of signaling",4,1,0.86,103,"0.6251","0.135","0.135" +"GO:0006412","translation",4,0,0.86,275,"1.0000","0.135","0.135" +"GO:0044238","primary metabolic process",94,20,20.28,98,"0.6087","0.138","0.138" +"GO:0006950","response to stress",19,5,4.1,55,"0.3908","0.140","0.140" +"GO:0006807","nitrogen compound metabolic process",85,18,18.34,99,"0.6160","0.140","0.140" +"GO:0015711","organic anion transport",7,3,1.51,26,"0.1727","0.160","0.160" +"GO:0098656","anion transmembrane transport",7,3,1.51,27,"0.1727","0.160","0.160" +"GO:0010467","gene expression",36,9,7.77,47,"0.3622","0.165","0.165" +"GO:0043170","macromolecule metabolic process",76,15,16.4,191,"0.7517","0.166","0.166" +"GO:0048589","developmental growth",4,1,0.86,104,"0.6251","0.166","0.166" +"GO:0006352","DNA-templated transcription, initiation",3,1,0.65,66,"0.5198","0.167","0.167" +"GO:0014070","response to organic cyclic compound",4,1,0.86,105,"0.6251","0.199","0.199" +"GO:1901566","organonitrogen compound biosynthetic pro...",11,2,2.37,185,"0.7305","0.212","0.212" +"GO:0016070","RNA metabolic process",31,9,6.69,30,"0.1915","0.218","0.218" +"GO:0006820","anion transport",8,3,1.73,35,"0.2357","0.219","0.219" +"GO:0001558","regulation of cell growth",3,2,0.65,18,"0.1181","0.225","0.225" +"GO:0016049","cell growth",3,2,0.65,19,"0.1181","0.225","0.225" +"GO:0022603","regulation of anatomical structure morph...",3,1,0.65,67,"0.5198","0.225","0.225" +"GO:0031344","regulation of cell projection organizati...",3,1,0.65,68,"0.5198","0.225","0.225" +"GO:0040008","regulation of growth",3,2,0.65,20,"0.1181","0.225","0.225" +"GO:0120035","regulation of plasma membrane bounded ce...",3,1,0.65,69,"0.5198","0.225","0.225" +"GO:0001568","blood vessel development",3,0,0.65,276,"1.0000","0.225","0.225" +"GO:0001944","vasculature development",3,0,0.65,277,"1.0000","0.225","0.225" +"GO:0006413","translational initiation",3,0,0.65,278,"1.0000","0.225","0.225" +"GO:0043933","protein-containing complex subunit organ...",3,0,0.65,279,"1.0000","0.225","0.225" +"GO:0048514","blood vessel morphogenesis",3,0,0.65,280,"1.0000","0.225","0.225" +"GO:0065003","protein-containing complex assembly",3,0,0.65,281,"1.0000","0.225","0.225" +"GO:0072358","cardiovascular system development",3,0,0.65,282,"1.0000","0.225","0.225" +"GO:1902532","negative regulation of intracellular sig...",3,0,0.65,283,"1.0000","0.225","0.225" +"GO:0044260","cellular macromolecule metabolic process",62,11,13.38,227,"0.8611","0.228","0.228" +"GO:0043603","cellular amide metabolic process",10,1,2.16,248,"0.9178","0.232","0.232" +"GO:0009059","macromolecule biosynthetic process",34,7,7.34,149,"0.6403","0.242","0.242" +"GO:0071704","organic substance metabolic process",100,21,21.58,151,"0.6488","0.249","0.249" +"GO:0044283","small molecule biosynthetic process",3,2,0.65,21,"0.1181","0.250","0.250" +"GO:1901615","organic hydroxy compound metabolic proce...",3,2,0.65,22,"0.1181","0.250","0.250" +"GO:0006914","autophagy",3,2,0.65,23,"0.1181","0.257","0.257" +"GO:0061919","process utilizing autophagic mechanism",3,2,0.65,24,"0.1181","0.257","0.257" +"GO:0044087","regulation of cellular component biogene...",6,1,1.29,192,"0.7725","0.264","0.264" +"GO:0048585","negative regulation of response to stimu...",6,2,1.29,50,"0.3839","0.264","0.264" +"GO:0006518","peptide metabolic process",6,0,1.29,284,"1.0000","0.264","0.264" +"GO:0043604","amide biosynthetic process",6,0,1.29,285,"1.0000","0.264","0.264" +"GO:0007264","small GTPase mediated signal transductio...",4,0,0.86,286,"1.0000","0.270","0.270" +"GO:0006974","cellular response to DNA damage stimulus",7,2,1.51,59,"0.4684","0.285","0.285" +"GO:0033993","response to lipid",4,0,0.86,287,"1.0000","0.299","0.299" +"GO:0071396","cellular response to lipid",4,0,0.86,288,"1.0000","0.299","0.299" +"GO:0015672","monovalent inorganic cation transport",5,2,1.08,41,"0.2946","0.312","0.312" +"GO:0045444","fat cell differentiation",3,1,0.65,70,"0.5198","0.321","0.321" +"GO:0035556","intracellular signal transduction",10,2,2.16,158,"0.6770","0.322","0.322" +"GO:1902531","regulation of intracellular signal trans...",5,0,1.08,289,"1.0000","0.323","0.323" +"GO:0045595","regulation of cell differentiation",7,3,1.51,28,"0.1727","0.329","0.329" +"GO:0019725","cellular homeostasis",4,0,0.86,290,"1.0000","0.330","0.330" +"GO:0005975","carbohydrate metabolic process",7,2,1.51,60,"0.4684","0.337","0.337" +"GO:0034220","ion transmembrane transport",10,3,2.16,48,"0.3697","0.339","0.339" +"GO:0034645","cellular macromolecule biosynthetic proc...",32,6,6.91,188,"0.7401","0.342","0.342" +"GO:0044237","cellular metabolic process",89,21,19.21,43,"0.3232","0.344","0.344" +"GO:0055114","oxidation-reduction process",7,3,1.51,29,"0.1727","0.361","0.361" +"GO:0009058","biosynthetic process",45,10,9.71,88,"0.5264","0.365","0.365" +"GO:0044271","cellular nitrogen compound biosynthetic ...",35,8,7.55,64,"0.4984","0.366","0.366" +"GO:0050793","regulation of developmental process",8,3,1.73,36,"0.2357","0.368","0.368" +"GO:0007265","Ras protein signal transduction",3,0,0.65,291,"1.0000","0.377","0.377" +"GO:0046578","regulation of Ras protein signal transdu...",3,0,0.65,292,"1.0000","0.377","0.377" +"GO:0051056","regulation of small GTPase mediated sign...",3,0,0.65,293,"1.0000","0.377","0.377" +"GO:0009057","macromolecule catabolic process",5,2,1.08,42,"0.2946","0.384","0.384" +"GO:0006259","DNA metabolic process",6,2,1.29,51,"0.3839","0.405","0.405" +"GO:0007346","regulation of mitotic cell cycle",3,1,0.65,71,"0.5198","0.407","0.407" +"GO:0060341","regulation of cellular localization",3,1,0.65,72,"0.5198","0.407","0.407" +"GO:0009725","response to hormone",3,0,0.65,294,"1.0000","0.407","0.407" +"GO:0010608","posttranscriptional regulation of gene e...",3,0,0.65,295,"1.0000","0.407","0.407" +"GO:0032870","cellular response to hormone stimulus",3,0,0.65,296,"1.0000","0.407","0.407" +"GO:0048545","response to steroid hormone",3,0,0.65,297,"1.0000","0.407","0.407" +"GO:0071383","cellular response to steroid hormone sti...",3,0,0.65,298,"1.0000","0.407","0.407" +"GO:0071407","cellular response to organic cyclic comp...",3,0,0.65,299,"1.0000","0.407","0.407" +"GO:0022607","cellular component assembly",5,0,1.08,300,"1.0000","0.410","0.410" +"GO:0043043","peptide biosynthetic process",5,0,1.08,301,"1.0000","0.410","0.410" +"GO:1901576","organic substance biosynthetic process",44,10,9.49,63,"0.4905","0.422","0.422" +"GO:0006650","glycerophospholipid metabolic process",3,0,0.65,302,"1.0000","0.427","0.427" +"GO:0046486","glycerolipid metabolic process",3,0,0.65,303,"1.0000","0.427","0.427" +"GO:0006811","ion transport",26,5,5.61,162,"0.7065","0.428","0.428" +"GO:0007049","cell cycle",7,2,1.51,61,"0.4684","0.429","0.429" +"GO:0002683","negative regulation of immune system pro...",3,1,0.65,73,"0.5198","0.430","0.430" +"GO:0009894","regulation of catabolic process",4,2,0.86,32,"0.2040","0.431","0.431" +"GO:0045454","cell redox homeostasis",3,0,0.65,304,"1.0000","0.437","0.437" +"GO:0008219","cell death",4,1,0.86,106,"0.6251","0.443","0.443" +"GO:0010941","regulation of cell death",4,1,0.86,107,"0.6251","0.443","0.443" +"GO:0060548","negative regulation of cell death",4,1,0.86,108,"0.6251","0.443","0.443" +"GO:0022402","cell cycle process",6,2,1.29,52,"0.3839","0.453","0.453" +"GO:0051186","cofactor metabolic process",4,2,0.86,33,"0.2040","0.455","0.455" +"GO:0055086","nucleobase-containing small molecule met...",4,2,0.86,34,"0.2040","0.455","0.455" +"GO:0018193","peptidyl-amino acid modification",3,1,0.65,74,"0.5198","0.469","0.469" +"GO:0010468","regulation of gene expression",23,5,4.96,96,"0.5837","0.474","0.474" +"GO:1901135","carbohydrate derivative metabolic proces...",6,2,1.29,53,"0.3839","0.484","0.484" +"GO:0006351","transcription, DNA-templated",26,5,5.61,163,"0.7065","0.508","0.508" +"GO:0009889","regulation of biosynthetic process",26,5,5.61,164,"0.7065","0.508","0.508" +"GO:0032774","RNA biosynthetic process",26,5,5.61,165,"0.7065","0.508","0.508" +"GO:0097659","nucleic acid-templated transcription",26,5,5.61,166,"0.7065","0.508","0.508" +"GO:0000165","MAPK cascade",3,0,0.65,305,"1.0000","0.512","0.512" +"GO:0010562","positive regulation of phosphorus metabo...",3,0,0.65,306,"1.0000","0.512","0.512" +"GO:0023014","signal transduction by protein phosphory...",3,0,0.65,307,"1.0000","0.512","0.512" +"GO:0031401","positive regulation of protein modificat...",3,0,0.65,308,"1.0000","0.512","0.512" +"GO:0032270","positive regulation of cellular protein ...",3,0,0.65,309,"1.0000","0.512","0.512" +"GO:0043408","regulation of MAPK cascade",3,0,0.65,310,"1.0000","0.512","0.512" +"GO:0045937","positive regulation of phosphate metabol...",3,0,0.65,311,"1.0000","0.512","0.512" +"GO:0051247","positive regulation of protein metabolic...",3,0,0.65,312,"1.0000","0.512","0.512" +"GO:0051128","regulation of cellular component organiz...",8,3,1.73,37,"0.2357","0.526","0.526" +"GO:0000278","mitotic cell cycle",6,1,1.29,193,"0.7725","0.530","0.530" +"GO:0051726","regulation of cell cycle",6,2,1.29,54,"0.3839","0.530","0.530" +"GO:0019220","regulation of phosphate metabolic proces...",6,0,1.29,313,"1.0000","0.530","0.530" +"GO:0051174","regulation of phosphorus metabolic proce...",6,0,1.29,314,"1.0000","0.530","0.530" +"GO:0044267","cellular protein metabolic process",32,2,6.91,274,"0.9978","0.535","0.535" +"GO:0019438","aromatic compound biosynthetic process",29,7,6.26,57,"0.4400","0.536","0.536" +"GO:0007165","signal transduction",28,4,6.04,246,"0.9018","0.542","0.542" +"GO:0042221","response to chemical",16,5,3.45,40,"0.2443","0.543","0.543" +"GO:0006915","apoptotic process",3,0,0.65,315,"1.0000","0.544","0.544" +"GO:0010256","endomembrane system organization",3,0,0.65,316,"1.0000","0.544","0.544" +"GO:0012501","programmed cell death",3,0,0.65,317,"1.0000","0.544","0.544" +"GO:0042981","regulation of apoptotic process",3,0,0.65,318,"1.0000","0.544","0.544" +"GO:0043066","negative regulation of apoptotic process",3,0,0.65,319,"1.0000","0.544","0.544" +"GO:0043067","regulation of programmed cell death",3,0,0.65,320,"1.0000","0.544","0.544" +"GO:0043069","negative regulation of programmed cell d...",3,0,0.65,321,"1.0000","0.544","0.544" +"GO:0006355","regulation of transcription, DNA-templat...",22,5,4.75,89,"0.5378","0.550","0.550" +"GO:0051252","regulation of RNA metabolic process",22,5,4.75,90,"0.5378","0.550","0.550" +"GO:1903506","regulation of nucleic acid-templated tra...",22,5,4.75,91,"0.5378","0.550","0.550" +"GO:2001141","regulation of RNA biosynthetic process",22,5,4.75,92,"0.5378","0.550","0.550" +"GO:0008610","lipid biosynthetic process",7,1,1.51,213,"0.8232","0.559","0.559" +"GO:0006281","DNA repair",5,1,1.08,168,"0.7077","0.562","0.562" +"GO:0006812","cation transport",15,3,3.24,153,"0.6684","0.569","0.569" +"GO:0019538","protein metabolic process",39,3,8.42,273,"0.9976","0.585","0.585" +"GO:0030163","protein catabolic process",3,1,0.65,75,"0.5198","0.585","0.585" +"GO:0044281","small molecule metabolic process",12,4,2.59,39,"0.2440","0.588","0.588" +"GO:0000003","reproduction",5,1,1.08,169,"0.7077","0.591","0.591" +"GO:0003006","developmental process involved in reprod...",5,1,1.08,170,"0.7077","0.591","0.591" +"GO:0007155","cell adhesion",5,1,1.08,171,"0.7077","0.591","0.591" +"GO:0022414","reproductive process",5,1,1.08,172,"0.7077","0.591","0.591" +"GO:0022610","biological adhesion",5,1,1.08,173,"0.7077","0.591","0.591" +"GO:0032990","cell part morphogenesis",5,1,1.08,174,"0.7077","0.591","0.591" +"GO:1903047","mitotic cell cycle process",5,1,1.08,175,"0.7077","0.591","0.591" +"GO:0001932","regulation of protein phosphorylation",5,0,1.08,322,"1.0000","0.591","0.591" +"GO:0006325","chromatin organization",5,0,1.08,323,"1.0000","0.591","0.591" +"GO:0009612","response to mechanical stimulus",5,0,1.08,324,"1.0000","0.591","0.591" +"GO:0035239","tube morphogenesis",5,0,1.08,325,"1.0000","0.591","0.591" +"GO:0035295","tube development",5,0,1.08,326,"1.0000","0.591","0.591" +"GO:0042325","regulation of phosphorylation",5,0,1.08,327,"1.0000","0.591","0.591" +"GO:0071705","nitrogen compound transport",15,3,3.24,154,"0.6684","0.595","0.595" +"GO:0009966","regulation of signal transduction",7,1,1.51,214,"0.8232","0.596","0.596" +"GO:0009056","catabolic process",14,4,3.02,45,"0.3550","0.596","0.596" +"GO:0044249","cellular biosynthetic process",41,9,8.85,93,"0.5499","0.612","0.612" +"GO:0002694","regulation of leukocyte activation",4,1,0.86,109,"0.6251","0.613","0.613" +"GO:0006928","movement of cell or subcellular componen...",4,1,0.86,110,"0.6251","0.613","0.613" +"GO:0006979","response to oxidative stress",4,1,0.86,111,"0.6251","0.613","0.613" +"GO:0016477","cell migration",4,1,0.86,112,"0.6251","0.613","0.613" +"GO:0040011","locomotion",4,1,0.86,113,"0.6251","0.613","0.613" +"GO:0042110","T cell activation",4,1,0.86,114,"0.6251","0.613","0.613" +"GO:0045321","leukocyte activation",4,1,0.86,115,"0.6251","0.613","0.613" +"GO:0045596","negative regulation of cell differentiat...",4,1,0.86,116,"0.6251","0.613","0.613" +"GO:0046649","lymphocyte activation",4,1,0.86,117,"0.6251","0.613","0.613" +"GO:0048870","cell motility",4,1,0.86,118,"0.6251","0.613","0.613" +"GO:0050863","regulation of T cell activation",4,1,0.86,119,"0.6251","0.613","0.613" +"GO:0050865","regulation of cell activation",4,1,0.86,120,"0.6251","0.613","0.613" +"GO:0051093","negative regulation of developmental pro...",4,1,0.86,121,"0.6251","0.613","0.613" +"GO:0051249","regulation of lymphocyte activation",4,1,0.86,122,"0.6251","0.613","0.613" +"GO:0051674","localization of cell",4,1,0.86,123,"0.6251","0.613","0.613" +"GO:0072359","circulatory system development",4,0,0.86,328,"1.0000","0.613","0.613" +"GO:0032501","multicellular organismal process",23,7,4.96,31,"0.1995","0.614","0.614" +"GO:0043412","macromolecule modification",29,3,6.26,266,"0.9750","0.619","0.619" +"GO:0055085","transmembrane transport",25,6,5.39,58,"0.4634","0.631","0.631" +"GO:1901362","organic cyclic compound biosynthetic pro...",31,8,6.69,44,"0.3401","0.631","0.631" +"GO:0042493","response to drug",3,1,0.65,76,"0.5198","0.652","0.652" +"GO:0098655","cation transmembrane transport",3,1,0.65,77,"0.5198","0.652","0.652" +"GO:0048856","anatomical structure development",24,7,5.18,38,"0.2357","0.655","0.655" +"GO:0044282","small molecule catabolic process",3,0,0.65,329,"1.0000","0.656","0.656" +"GO:0030900","forebrain development",4,1,0.86,124,"0.6251","0.658","0.658" +"GO:0000904","cell morphogenesis involved in different...",4,1,0.86,125,"0.6251","0.658","0.658" +"GO:0007409","axonogenesis",4,1,0.86,126,"0.6251","0.658","0.658" +"GO:0048667","cell morphogenesis involved in neuron di...",4,1,0.86,127,"0.6251","0.658","0.658" +"GO:0048812","neuron projection morphogenesis",4,1,0.86,128,"0.6251","0.658","0.658" +"GO:0048858","cell projection morphogenesis",4,1,0.86,129,"0.6251","0.658","0.658" +"GO:0050808","synapse organization",4,1,0.86,130,"0.6251","0.658","0.658" +"GO:0061564","axon development",4,1,0.86,131,"0.6251","0.658","0.658" +"GO:0098609","cell-cell adhesion",4,1,0.86,132,"0.6251","0.658","0.658" +"GO:0120039","plasma membrane bounded cell projection ...",4,1,0.86,133,"0.6251","0.658","0.658" +"GO:0001654","eye development",4,0,0.86,330,"1.0000","0.658","0.658" +"GO:0001933","negative regulation of protein phosphory...",4,0,0.86,331,"1.0000","0.658","0.658" +"GO:0007010","cytoskeleton organization",4,0,0.86,332,"1.0000","0.658","0.658" +"GO:0009611","response to wounding",4,0,0.86,333,"1.0000","0.658","0.658" +"GO:0010563","negative regulation of phosphorus metabo...",4,0,0.86,334,"1.0000","0.658","0.658" +"GO:0030029","actin filament-based process",4,0,0.86,335,"1.0000","0.658","0.658" +"GO:0030036","actin cytoskeleton organization",4,0,0.86,336,"1.0000","0.658","0.658" +"GO:0042060","wound healing",4,0,0.86,337,"1.0000","0.658","0.658" +"GO:0042326","negative regulation of phosphorylation",4,0,0.86,338,"1.0000","0.658","0.658" +"GO:0043549","regulation of kinase activity",4,0,0.86,339,"1.0000","0.658","0.658" +"GO:0045859","regulation of protein kinase activity",4,0,0.86,340,"1.0000","0.658","0.658" +"GO:0045936","negative regulation of phosphate metabol...",4,0,0.86,341,"1.0000","0.658","0.658" +"GO:0048880","sensory system development",4,0,0.86,342,"1.0000","0.658","0.658" +"GO:0150063","visual system development",4,0,0.86,343,"1.0000","0.658","0.658" +"GO:0010556","regulation of macromolecule biosynthetic...",24,5,5.18,146,"0.6273","0.661","0.661" +"GO:0031326","regulation of cellular biosynthetic proc...",24,5,5.18,147,"0.6273","0.661","0.661" +"GO:2000112","regulation of cellular macromolecule bio...",24,5,5.18,148,"0.6273","0.661","0.661" +"GO:0080090","regulation of primary metabolic process",31,6,6.69,167,"0.7071","0.670","0.670" +"GO:0050794","regulation of cellular process",63,11,13.59,239,"0.8778","0.672","0.672" +"GO:0030001","metal ion transport",10,2,2.16,159,"0.6770","0.673","0.673" +"GO:0033554","cellular response to stress",10,3,2.16,49,"0.3697","0.673","0.673" +"GO:0071702","organic substance transport",17,4,3.67,86,"0.5214","0.674","0.674" +"GO:0048513","animal organ development",13,3,2.81,94,"0.5609","0.675","0.675" +"GO:0023052","signaling",29,4,6.26,247,"0.9176","0.676","0.676" +"GO:0009791","post-embryonic development",4,1,0.86,134,"0.6251","0.677","0.677" +"GO:0008283","cell proliferation",4,0,0.86,344,"1.0000","0.677","0.677" +"GO:0007186","G protein-coupled receptor signaling pat...",6,0,1.29,345,"1.0000","0.678","0.678" +"GO:0006464","cellular protein modification process",27,2,5.83,269,"0.9920","0.678","0.678" +"GO:0036211","protein modification process",27,2,5.83,270,"0.9920","0.678","0.678" +"GO:0034654","nucleobase-containing compound biosynthe...",27,5,5.83,189,"0.7417","0.685","0.685" +"GO:0097164","ammonium ion metabolic process",4,0,0.86,346,"1.0000","0.690","0.690" +"GO:0019222","regulation of metabolic process",34,7,7.34,150,"0.6403","0.690","0.690" +"GO:0046467","membrane lipid biosynthetic process",3,0,0.65,347,"1.0000","0.700","0.700" +"GO:1901137","carbohydrate derivative biosynthetic pro...",3,0,0.65,348,"1.0000","0.700","0.700" +"GO:0006629","lipid metabolic process",13,2,2.81,210,"0.8158","0.702","0.702" +"GO:0018130","heterocycle biosynthetic process",30,7,6.47,62,"0.4821","0.704","0.704" +"GO:0016071","mRNA metabolic process",4,1,0.86,135,"0.6251","0.709","0.709" +"GO:0031329","regulation of cellular catabolic process",3,1,0.65,78,"0.5198","0.710","0.710" +"GO:0051129","negative regulation of cellular componen...",3,0,0.65,349,"1.0000","0.710","0.710" +"GO:0007275","multicellular organism development",19,5,4.1,56,"0.3908","0.713","0.713" +"GO:0051336","regulation of hydrolase activity",3,0,0.65,350,"1.0000","0.721","0.721" +"GO:0090407","organophosphate biosynthetic process",4,1,0.86,136,"0.6251","0.721","0.721" +"GO:0009888","tissue development",6,1,1.29,194,"0.7725","0.724","0.724" +"GO:0051094","positive regulation of developmental pro...",6,1,1.29,195,"0.7725","0.724","0.724" +"GO:0051239","regulation of multicellular organismal p...",6,1,1.29,196,"0.7725","0.724","0.724" +"GO:2000026","regulation of multicellular organismal d...",6,1,1.29,197,"0.7725","0.724","0.724" +"GO:0044248","cellular catabolic process",12,3,2.59,65,"0.5004","0.728","0.728" +"GO:0002118","aggressive behavior",3,0,0.65,351,"1.0000","0.732","0.732" +"GO:0006469","negative regulation of protein kinase ac...",3,0,0.65,352,"1.0000","0.732","0.732" +"GO:0006909","phagocytosis",3,0,0.65,353,"1.0000","0.732","0.732" +"GO:0007276","gamete generation",3,0,0.65,354,"1.0000","0.732","0.732" +"GO:0007281","germ cell development",3,0,0.65,355,"1.0000","0.732","0.732" +"GO:0007283","spermatogenesis",3,0,0.65,356,"1.0000","0.732","0.732" +"GO:0016319","mushroom body development",3,0,0.65,357,"1.0000","0.732","0.732" +"GO:0019953","sexual reproduction",3,0,0.65,358,"1.0000","0.732","0.732" +"GO:0022412","cellular process involved in reproductio...",3,0,0.65,359,"1.0000","0.732","0.732" +"GO:0032504","multicellular organism reproduction",3,0,0.65,360,"1.0000","0.732","0.732" +"GO:0033673","negative regulation of kinase activity",3,0,0.65,361,"1.0000","0.732","0.732" +"GO:0035148","tube formation",3,0,0.65,362,"1.0000","0.732","0.732" +"GO:0043010","camera-type eye development",3,0,0.65,363,"1.0000","0.732","0.732" +"GO:0043086","negative regulation of catalytic activit...",3,0,0.65,364,"1.0000","0.732","0.732" +"GO:0043393","regulation of protein binding",3,0,0.65,365,"1.0000","0.732","0.732" +"GO:0044092","negative regulation of molecular functio...",3,0,0.65,366,"1.0000","0.732","0.732" +"GO:0044703","multi-organism reproductive process",3,0,0.65,367,"1.0000","0.732","0.732" +"GO:0048232","male gamete generation",3,0,0.65,368,"1.0000","0.732","0.732" +"GO:0048609","multicellular organismal reproductive pr...",3,0,0.65,369,"1.0000","0.732","0.732" +"GO:0051098","regulation of binding",3,0,0.65,370,"1.0000","0.732","0.732" +"GO:0051235","maintenance of location",3,0,0.65,371,"1.0000","0.732","0.732" +"GO:0051348","negative regulation of transferase activ...",3,0,0.65,372,"1.0000","0.732","0.732" +"GO:0051705","multi-organism behavior",3,0,0.65,373,"1.0000","0.732","0.732" +"GO:0060041","retina development in camera-type eye",3,0,0.65,374,"1.0000","0.732","0.732" +"GO:0099173","postsynapse organization",3,0,0.65,375,"1.0000","0.732","0.732" +"GO:0044265","cellular macromolecule catabolic process",4,1,0.86,137,"0.6251","0.734","0.734" +"GO:0019219","regulation of nucleobase-containing comp...",23,5,4.96,97,"0.5837","0.739","0.739" +"GO:0009890","negative regulation of biosynthetic proc...",8,1,1.73,230,"0.8628","0.740","0.740" +"GO:0031323","regulation of cellular metabolic process",30,6,6.47,155,"0.6715","0.741","0.741" +"GO:0051171","regulation of nitrogen compound metaboli...",30,6,6.47,156,"0.6715","0.741","0.741" +"GO:0060255","regulation of macromolecule metabolic pr...",30,6,6.47,157,"0.6715","0.741","0.741" +"GO:0050789","regulation of biological process",68,13,14.67,209,"0.7868","0.743","0.743" +"GO:0006897","endocytosis",5,1,1.08,176,"0.7077","0.747","0.747" +"GO:0098657","import into cell",5,1,1.08,177,"0.7077","0.747","0.747" +"GO:0006508","proteolysis",8,0,1.73,376,"1.0000","0.749","0.749" +"GO:0048523","negative regulation of cellular process",17,4,3.67,87,"0.5214","0.749","0.749" +"GO:0009628","response to abiotic stimulus",7,1,1.51,215,"0.8232","0.750","0.750" +"GO:0006468","protein phosphorylation",16,1,3.45,267,"0.9830","0.753","0.753" +"GO:0030334","regulation of cell migration",3,1,0.65,79,"0.5198","0.760","0.760" +"GO:0040012","regulation of locomotion",3,1,0.65,80,"0.5198","0.760","0.760" +"GO:0051270","regulation of cellular component movemen...",3,1,0.65,81,"0.5198","0.760","0.760" +"GO:2000145","regulation of cell motility",3,1,0.65,82,"0.5198","0.760","0.760" +"GO:1901564","organonitrogen compound metabolic proces...",51,6,11.01,268,"0.9889","0.776","0.776" +"GO:1901575","organic substance catabolic process",11,2,2.37,186,"0.7305","0.777","0.777" +"GO:0032268","regulation of cellular protein metabolic...",9,0,1.94,377,"1.0000","0.778","0.778" +"GO:0008654","phospholipid biosynthetic process",3,0,0.65,378,"1.0000","0.784","0.784" +"GO:0010628","positive regulation of gene expression",5,0,1.08,379,"1.0000","0.787","0.787" +"GO:0048518","positive regulation of biological proces...",16,3,3.45,182,"0.7149","0.793","0.793" +"GO:0070647","protein modification by small protein co...",3,0,0.65,380,"1.0000","0.794","0.794" +"GO:0006810","transport",53,9,11.44,238,"0.8773","0.795","0.795" +"GO:0044255","cellular lipid metabolic process",11,1,2.37,254,"0.9365","0.797","0.797" +"GO:0048522","positive regulation of cellular process",13,2,2.81,211,"0.8158","0.798","0.798" +"GO:0007154","cell communication",30,4,6.47,253,"0.9311","0.799","0.799" +"GO:0006397","mRNA processing",3,1,0.65,83,"0.5198","0.800","0.800" +"GO:0008380","RNA splicing",3,1,0.65,84,"0.5198","0.800","0.800" +"GO:0051716","cellular response to stimulus",46,8,9.93,222,"0.8411","0.803","0.803" +"GO:0080134","regulation of response to stress",3,1,0.65,85,"0.5198","0.810","0.810" +"GO:0006996","organelle organization",14,1,3.02,265,"0.9711","0.810","0.810" +"GO:1901565","organonitrogen compound catabolic proces...",6,1,1.29,198,"0.7725","0.812","0.812" +"GO:0010033","response to organic substance",8,1,1.73,231,"0.8628","0.823","0.823" +"GO:0051234","establishment of localization",55,10,11.87,212,"0.8208","0.824","0.824" +"GO:0031399","regulation of protein modification proce...",8,0,1.73,381,"1.0000","0.842","0.842" +"GO:0048519","negative regulation of biological proces...",19,4,4.1,100,"0.6216","0.845","0.845" +"GO:0010558","negative regulation of macromolecule bio...",7,1,1.51,216,"0.8232","0.845","0.845" +"GO:0010629","negative regulation of gene expression",7,1,1.51,217,"0.8232","0.845","0.845" +"GO:0031327","negative regulation of cellular biosynth...",7,1,1.51,218,"0.8232","0.845","0.845" +"GO:2000113","negative regulation of cellular macromol...",7,1,1.51,219,"0.8232","0.845","0.845" +"GO:0007417","central nervous system development",9,1,1.94,240,"0.8937","0.849","0.849" +"GO:0007420","brain development",9,1,1.94,241,"0.8937","0.849","0.849" +"GO:0060322","head development",9,1,1.94,242,"0.8937","0.849","0.849" +"GO:0032502","developmental process",27,7,5.83,46,"0.3556","0.850","0.850" +"GO:0051179","localization",57,10,12.3,226,"0.8600","0.850","0.850" +"GO:0016311","dephosphorylation",4,0,0.86,382,"1.0000","0.853","0.853" +"GO:0002009","morphogenesis of an epithelium",3,0,0.65,383,"1.0000","0.853","0.853" +"GO:0006816","calcium ion transport",3,0,0.65,384,"1.0000","0.853","0.853" +"GO:0048729","tissue morphogenesis",3,0,0.65,385,"1.0000","0.853","0.853" +"GO:0051241","negative regulation of multicellular org...",3,0,0.65,386,"1.0000","0.853","0.853" +"GO:0060429","epithelium development",3,0,0.65,387,"1.0000","0.853","0.853" +"GO:0061024","membrane organization",3,0,0.65,388,"1.0000","0.853","0.853" +"GO:0070838","divalent metal ion transport",3,0,0.65,389,"1.0000","0.853","0.853" +"GO:0072511","divalent inorganic cation transport",3,0,0.65,390,"1.0000","0.853","0.853" +"GO:1903706","regulation of hemopoiesis",3,0,0.65,391,"1.0000","0.853","0.853" +"GO:0051704","multi-organism process",4,0,0.86,392,"1.0000","0.858","0.858" +"GO:0051130","positive regulation of cellular componen...",4,1,0.86,138,"0.6251","0.863","0.863" +"GO:0045893","positive regulation of transcription, DN...",4,0,0.86,393,"1.0000","0.863","0.863" +"GO:0045944","positive regulation of transcription by ...",4,0,0.86,394,"1.0000","0.863","0.863" +"GO:0051254","positive regulation of RNA metabolic pro...",4,0,0.86,395,"1.0000","0.863","0.863" +"GO:1902680","positive regulation of RNA biosynthetic ...",4,0,0.86,396,"1.0000","0.863","0.863" +"GO:1903508","positive regulation of nucleic acid-temp...",4,0,0.86,397,"1.0000","0.863","0.863" +"GO:0006793","phosphorus metabolic process",28,3,6.04,263,"0.9691","0.867","0.867" +"GO:0006796","phosphate-containing compound metabolic ...",28,3,6.04,264,"0.9691","0.867","0.867" +"GO:0006082","organic acid metabolic process",4,1,0.86,139,"0.6251","0.887","0.887" +"GO:0019752","carboxylic acid metabolic process",4,1,0.86,140,"0.6251","0.887","0.887" +"GO:0043436","oxoacid metabolic process",4,1,0.86,141,"0.6251","0.887","0.887" +"GO:0045597","positive regulation of cell differentiat...",5,1,1.08,178,"0.7077","0.892","0.892" +"GO:0007611","learning or memory",3,0,0.65,398,"1.0000","0.895","0.895" +"GO:0007612","learning",3,0,0.65,399,"1.0000","0.895","0.895" +"GO:0043009","chordate embryonic development",3,0,0.65,400,"1.0000","0.895","0.895" +"GO:0045165","cell fate commitment",3,0,0.65,401,"1.0000","0.895","0.895" +"GO:0050890","cognition",3,0,0.65,402,"1.0000","0.895","0.895" +"GO:0072089","stem cell proliferation",3,0,0.65,403,"1.0000","0.895","0.895" +"GO:0010646","regulation of cell communication",8,1,1.73,232,"0.8628","0.895","0.895" +"GO:0023051","regulation of signaling",8,1,1.73,233,"0.8628","0.895","0.895" +"GO:0031325","positive regulation of cellular metaboli...",8,1,1.73,234,"0.8628","0.895","0.895" +"GO:0001775","cell activation",6,1,1.29,199,"0.7725","0.898","0.898" +"GO:0030030","cell projection organization",6,1,1.29,200,"0.7725","0.898","0.898" +"GO:0120036","plasma membrane bounded cell projection ...",6,1,1.29,201,"0.7725","0.898","0.898" +"GO:0032269","negative regulation of cellular protein ...",6,0,1.29,404,"1.0000","0.898","0.898" +"GO:0051248","negative regulation of protein metabolic...",6,0,1.29,405,"1.0000","0.898","0.898" +"GO:0006955","immune response",3,0,0.65,406,"1.0000","0.900","0.900" +"GO:0050776","regulation of immune response",3,0,0.65,407,"1.0000","0.900","0.900" +"GO:0006665","sphingolipid metabolic process",3,0,0.65,408,"1.0000","0.902","0.902" +"GO:0030149","sphingolipid catabolic process",3,0,0.65,409,"1.0000","0.902","0.902" +"GO:0046466","membrane lipid catabolic process",3,0,0.65,410,"1.0000","0.902","0.902" +"GO:0050790","regulation of catalytic activity",7,0,1.51,411,"1.0000","0.904","0.904" +"GO:0051276","chromosome organization",7,0,1.51,412,"1.0000","0.904","0.904" +"GO:0065009","regulation of molecular function",7,0,1.51,413,"1.0000","0.904","0.904" +"GO:0071840","cellular component organization or bioge...",22,4,4.75,190,"0.7464","0.906","0.906" +"GO:0016310","phosphorylation",19,1,4.1,271,"0.9924","0.910","0.910" +"GO:0048731","system development",18,4,3.88,95,"0.5730","0.921","0.921" +"GO:0051246","regulation of protein metabolic process",11,1,2.37,255,"0.9365","0.922","0.922" +"GO:0070887","cellular response to chemical stimulus",10,1,2.16,249,"0.9178","0.932","0.932" +"GO:0016192","vesicle-mediated transport",12,1,2.59,258,"0.9511","0.934","0.934" +"GO:0032879","regulation of localization",5,1,1.08,179,"0.7077","0.938","0.938" +"GO:0009987","cellular process",127,25,27.41,228,"0.8614","0.939","0.939" +"GO:0050896","response to stimulus",56,10,12.08,223,"0.8413","0.939","0.939" +"GO:0048583","regulation of response to stimulus",10,2,2.16,160,"0.6770","0.943","0.943" +"GO:0016197","endosomal transport",4,0,0.86,414,"1.0000","0.944","0.944" +"GO:0009967","positive regulation of signal transducti...",4,0,0.86,415,"1.0000","0.947","0.947" +"GO:0010647","positive regulation of cell communicatio...",4,0,0.86,416,"1.0000","0.947","0.947" +"GO:0023056","positive regulation of signaling",4,0,0.86,417,"1.0000","0.947","0.947" +"GO:0043085","positive regulation of catalytic activit...",4,0,0.86,418,"1.0000","0.947","0.947" +"GO:0044093","positive regulation of molecular functio...",4,0,0.86,419,"1.0000","0.947","0.947" +"GO:0048584","positive regulation of response to stimu...",4,0,0.86,420,"1.0000","0.947","0.947" +"GO:0030154","cell differentiation",16,3,3.45,183,"0.7149","0.949","0.949" +"GO:0048869","cellular developmental process",16,3,3.45,184,"0.7149","0.949","0.949" +"GO:0003008","system process",5,0,1.08,421,"1.0000","0.953","0.953" +"GO:0009790","embryo development",5,0,1.08,422,"1.0000","0.953","0.953" +"GO:0045892","negative regulation of transcription, DN...",6,1,1.29,202,"0.7725","0.954","0.954" +"GO:0045934","negative regulation of nucleobase-contai...",6,1,1.29,203,"0.7725","0.954","0.954" +"GO:0051253","negative regulation of RNA metabolic pro...",6,1,1.29,204,"0.7725","0.954","0.954" +"GO:1902679","negative regulation of RNA biosynthetic ...",6,1,1.29,205,"0.7725","0.954","0.954" +"GO:1903507","negative regulation of nucleic acid-temp...",6,1,1.29,206,"0.7725","0.954","0.954" +"GO:0048666","neuron development",6,1,1.29,207,"0.7725","0.957","0.957" +"GO:0009605","response to external stimulus",8,1,1.73,235,"0.8628","0.957","0.957" +"GO:0016482","cytosolic transport",3,0,0.65,423,"1.0000","0.958","0.958" +"GO:0042147","retrograde transport, endosome to Golgi",3,0,0.65,424,"1.0000","0.958","0.958" +"GO:0045664","regulation of neuron differentiation",4,1,0.86,142,"0.6251","0.960","0.960" +"GO:0050767","regulation of neurogenesis",4,1,0.86,143,"0.6251","0.960","0.960" +"GO:0051960","regulation of nervous system development",4,1,0.86,144,"0.6251","0.960","0.960" +"GO:0060284","regulation of cell development",4,1,0.86,145,"0.6251","0.960","0.960" +"GO:0016043","cellular component organization",20,4,4.32,152,"0.6668","0.963","0.963" +"GO:0065007","biological regulation",71,13,15.32,224,"0.8482","0.966","0.966" +"GO:0007167","enzyme linked receptor protein signaling...",3,0,0.65,425,"1.0000","0.967","0.967" +"GO:0009719","response to endogenous stimulus",6,0,1.29,426,"1.0000","0.968","0.968" +"GO:0071310","cellular response to organic substance",6,0,1.29,427,"1.0000","0.968","0.968" +"GO:0071495","cellular response to endogenous stimulus",6,0,1.29,428,"1.0000","0.968","0.968" +"GO:0006644","phospholipid metabolic process",7,0,1.51,429,"1.0000","0.969","0.969" +"GO:0031175","neuron projection development",5,1,1.08,180,"0.7077","0.972","0.972" +"GO:0007610","behavior",5,0,1.08,430,"1.0000","0.972","0.972" +"GO:0002682","regulation of immune system process",6,1,1.29,208,"0.7725","0.975","0.975" +"GO:0031400","negative regulation of protein modificat...",5,0,1.08,431,"1.0000","0.977","0.977" +"GO:0051338","regulation of transferase activity",5,0,1.08,432,"1.0000","0.977","0.977" +"GO:0009893","positive regulation of metabolic process",10,1,2.16,250,"0.9178","0.979","0.979" +"GO:0019637","organophosphate metabolic process",10,2,2.16,161,"0.6770","0.979","0.979" +"GO:0071214","cellular response to abiotic stimulus",3,0,0.65,433,"1.0000","0.980","0.980" +"GO:0104004","cellular response to environmental stimu...",3,0,0.65,434,"1.0000","0.980","0.980" +"GO:0046434","organophosphate catabolic process",3,0,0.65,435,"1.0000","0.981","0.981" +"GO:0033043","regulation of organelle organization",4,0,0.86,436,"1.0000","0.982","0.982" +"GO:0006643","membrane lipid metabolic process",5,0,1.08,437,"1.0000","0.982","0.982" +"GO:0010638","positive regulation of organelle organiz...",3,0,0.65,438,"1.0000","0.984","0.984" +"GO:0033036","macromolecule localization",16,2,3.45,245,"0.8998","0.985","0.985" +"GO:0051347","positive regulation of transferase activ...",3,0,0.65,439,"1.0000","0.986","0.986" +"GO:0060249","anatomical structure homeostasis",3,0,0.65,440,"1.0000","0.986","0.986" +"GO:0051649","establishment of localization in cell",14,0,3.02,441,"1.0000","0.987","0.987" +"GO:0008104","protein localization",13,1,2.81,260,"0.9623","0.988","0.988" +"GO:0034613","cellular protein localization",13,1,2.81,261,"0.9623","0.988","0.988" +"GO:0070727","cellular macromolecule localization",13,1,2.81,262,"0.9623","0.988","0.988" +"GO:0046907","intracellular transport",12,0,2.59,442,"1.0000","0.989","0.989" +"GO:0002262","myeloid cell homeostasis",3,0,0.65,443,"1.0000","0.991","0.991" +"GO:0030099","myeloid cell differentiation",3,0,0.65,444,"1.0000","0.991","0.991" +"GO:0030218","erythrocyte differentiation",3,0,0.65,445,"1.0000","0.991","0.991" +"GO:0034101","erythrocyte homeostasis",3,0,0.65,446,"1.0000","0.991","0.991" +"GO:0048821","erythrocyte development",3,0,0.65,447,"1.0000","0.991","0.991" +"GO:0061515","myeloid cell development",3,0,0.65,448,"1.0000","0.991","0.991" +"GO:0015031","protein transport",9,0,1.94,449,"1.0000","0.992","0.992" +"GO:0015833","peptide transport",9,0,1.94,450,"1.0000","0.992","0.992" +"GO:0042886","amide transport",9,0,1.94,451,"1.0000","0.992","0.992" +"GO:0045184","establishment of protein localization",9,0,1.94,452,"1.0000","0.992","0.992" +"GO:0016042","lipid catabolic process",4,0,0.86,453,"1.0000","0.992","0.992" +"GO:0044242","cellular lipid catabolic process",4,0,0.86,454,"1.0000","0.992","0.992" +"GO:0006886","intracellular protein transport",8,0,1.73,455,"1.0000","0.993","0.993" +"GO:0000902","cell morphogenesis",5,1,1.08,181,"0.7077","0.993","0.993" +"GO:0007423","sensory organ development",5,0,1.08,456,"1.0000","0.993","0.993" +"GO:0048646","anatomical structure formation involved ...",5,0,1.08,457,"1.0000","0.993","0.993" +"GO:0002376","immune system process",7,1,1.51,220,"0.8232","0.993","0.993" +"GO:0007399","nervous system development",14,2,3.02,225,"0.8489","0.996","0.996" +"GO:0006913","nucleocytoplasmic transport",3,0,0.65,458,"1.0000","0.997","0.997" +"GO:0015931","nucleobase-containing compound transport",3,0,0.65,459,"1.0000","0.997","0.997" +"GO:0051169","nuclear transport",3,0,0.65,460,"1.0000","0.997","0.997" +"GO:0098660","inorganic ion transmembrane transport",3,0,0.65,461,"1.0000","0.998","0.998" +"GO:0051641","cellular localization",19,1,4.1,272,"0.9924","0.999","0.999" +"GO:0022008","neurogenesis",9,1,1.94,243,"0.8937","1.000","1.000" +"GO:0048699","generation of neurons",9,1,1.94,244,"0.8937","1.000","1.000" +"GO:0048468","cell development",11,2,2.37,187,"0.7305","1.000","1.000" +"GO:0046903","secretion",3,0,0.65,462,"1.0000","1.000","1.000" +"GO:0008150","biological_process",190,41,41,463,"1.0000","1.000","1.000" +"GO:0009653","anatomical structure morphogenesis",11,1,2.37,256,"0.9365","1.000","1.000" +"GO:0009892","negative regulation of metabolic process",12,1,2.59,259,"0.9511","1.000","1.000" +"GO:0010605","negative regulation of macromolecule met...",10,1,2.16,251,"0.9178","1.000","1.000" +"GO:0030182","neuron differentiation",8,1,1.73,236,"0.8628","1.000","1.000" +"GO:0031324","negative regulation of cellular metaboli...",11,1,2.37,257,"0.9365","1.000","1.000" +"GO:0032989","cellular component morphogenesis",7,1,1.51,221,"0.8232","1.000","1.000" +"GO:0051172","negative regulation of nitrogen compound...",10,1,2.16,252,"0.9178","1.000","1.000" +"GO:0065008","regulation of biological quality",15,2,3.24,237,"0.8767","1.000","1.000" +"GO:0000122","negative regulation of transcription by ...",5,0,1.08,464,"1.0000","1.000","1.000" +"GO:0002520","immune system development",4,0,0.86,465,"1.0000","1.000","1.000" +"GO:0006357","regulation of transcription by RNA polym...",6,0,1.29,466,"1.0000","1.000","1.000" +"GO:0006366","transcription by RNA polymerase II",8,0,1.73,467,"1.0000","1.000","1.000" +"GO:0007166","cell surface receptor signaling pathway",8,0,1.73,468,"1.0000","1.000","1.000" +"GO:0007267","cell-cell signaling",3,0,0.65,469,"1.0000","1.000","1.000" +"GO:0007623","circadian rhythm",3,0,0.65,470,"1.0000","1.000","1.000" +"GO:0009792","embryo development ending in birth or eg...",4,0,0.86,471,"1.0000","1.000","1.000" +"GO:0009891","positive regulation of biosynthetic proc...",5,0,1.08,472,"1.0000","1.000","1.000" +"GO:0010001","glial cell differentiation",3,0,0.65,473,"1.0000","1.000","1.000" +"GO:0010557","positive regulation of macromolecule bio...",5,0,1.08,474,"1.0000","1.000","1.000" +"GO:0010604","positive regulation of macromolecule met...",9,0,1.94,475,"1.0000","1.000","1.000" +"GO:0016055","Wnt signaling pathway",3,0,0.65,476,"1.0000","1.000","1.000" +"GO:0030097","hemopoiesis",4,0,0.86,477,"1.0000","1.000","1.000" +"GO:0031328","positive regulation of cellular biosynth...",5,0,1.08,478,"1.0000","1.000","1.000" +"GO:0042063","gliogenesis",3,0,0.65,479,"1.0000","1.000","1.000" +"GO:0042592","homeostatic process",11,0,2.37,480,"1.0000","1.000","1.000" +"GO:0045935","positive regulation of nucleobase-contai...",5,0,1.08,481,"1.0000","1.000","1.000" +"GO:0048511","rhythmic process",3,0,0.65,482,"1.0000","1.000","1.000" +"GO:0048534","hematopoietic or lymphoid organ developm...",4,0,0.86,483,"1.0000","1.000","1.000" +"GO:0048872","homeostasis of number of cells",4,0,0.86,484,"1.0000","1.000","1.000" +"GO:0050877","nervous system process",4,0,0.86,485,"1.0000","1.000","1.000" +"GO:0051173","positive regulation of nitrogen compound...",8,0,1.73,486,"1.0000","1.000","1.000" +"GO:0051240","positive regulation of multicellular org...",4,0,0.86,487,"1.0000","1.000","1.000" +"GO:0051301","cell division",4,0,0.86,488,"1.0000","1.000","1.000" +"GO:0070848","response to growth factor",3,0,0.65,489,"1.0000","1.000","1.000" +"GO:0071363","cellular response to growth factor stimu...",3,0,0.65,490,"1.0000","1.000","1.000" +"GO:0198738","cell-cell signaling by wnt",3,0,0.65,491,"1.0000","1.000","1.000" +"GO:1905114","cell surface receptor signaling pathway ...",3,0,0.65,492,"1.0000","1.000","1.000" diff --git a/GO_enrichment_microbiome_output/contrast_emerging_phoretic_upregulated.csv b/GO_enrichment_microbiome_output/contrast_emerging_phoretic_upregulated.csv index af3d23e..100b474 100644 --- a/GO_enrichment_microbiome_output/contrast_emerging_phoretic_upregulated.csv +++ b/GO_enrichment_microbiome_output/contrast_emerging_phoretic_upregulated.csv @@ -4,3 +4,485 @@ "GO:0006082","organic acid metabolic process",5,3,0.74,4,"0.024","0.0176","0.0176" "GO:0019752","carboxylic acid metabolic process",5,3,0.74,5,"0.024","0.0176","0.0176" "GO:0043436","oxoacid metabolic process",5,3,0.74,6,"0.024","0.0176","0.0176" +"GO:0006518","peptide metabolic process",7,4,1.03,1,"0.010","0.0276","0.0276" +"GO:0015672","monovalent inorganic cation transport",8,1,1.18,223,"0.729","0.0298","0.0298" +"GO:0055082","cellular chemical homeostasis",3,2,0.44,10,"0.058","0.0360","0.0360" +"GO:0007186","G protein-coupled receptor signaling pat...",8,3,1.18,15,"0.097","0.0379","0.0379" +"GO:0043603","cellular amide metabolic process",8,4,1.18,3,"0.018","0.0486","0.0486" +"GO:0006820","anion transport",5,2,0.74,24,"0.159","0.0509","0.0509" +"GO:0031929","TOR signaling",3,1,0.44,50,"0.383","0.0530","0.0530" +"GO:0006812","cation transport",11,2,1.63,153,"0.504","0.0620","0.0620" +"GO:0030001","metal ion transport",9,2,1.33,104,"0.394","0.0697","0.0697" +"GO:0006091","generation of precursor metabolites and ...",3,1,0.44,51,"0.383","0.0732","0.0732" +"GO:0071702","organic substance transport",13,2,1.92,181,"0.601","0.0764","0.0764" +"GO:0051346","negative regulation of hydrolase activit...",4,1,0.59,114,"0.475","0.0825","0.0825" +"GO:0006520","cellular amino acid metabolic process",3,2,0.44,11,"0.058","0.0911","0.0911" +"GO:0051128","regulation of cellular component organiz...",12,3,1.77,36,"0.253","0.0999","0.0999" +"GO:0006412","translation",6,3,0.89,7,"0.043","0.1059","0.1059" +"GO:0043043","peptide biosynthetic process",6,3,0.89,8,"0.043","0.1059","0.1059" +"GO:0043604","amide biosynthetic process",6,3,0.89,9,"0.043","0.1059","0.1059" +"GO:0014070","response to organic cyclic compound",3,1,0.44,52,"0.383","0.1149","0.1149" +"GO:0044281","small molecule metabolic process",17,5,2.51,14,"0.085","0.1151","0.1151" +"GO:0009058","biosynthetic process",49,8,7.24,105,"0.441","0.1174","0.1174" +"GO:0031503","protein-containing complex localization",3,0,0.44,329,"1.000","0.1233","0.1233" +"GO:0019725","cellular homeostasis",7,3,1.03,13,"0.068","0.1242","0.1242" +"GO:0044283","small molecule biosynthetic process",8,2,1.18,46,"0.336","0.1257","0.1257" +"GO:0098655","cation transmembrane transport",6,1,0.89,185,"0.622","0.1308","0.1308" +"GO:0006066","alcohol metabolic process",3,0,0.44,330,"1.000","0.1323","0.1323" +"GO:0048878","chemical homeostasis",4,2,0.59,19,"0.105","0.1422","0.1422" +"GO:0098660","inorganic ion transmembrane transport",4,1,0.59,115,"0.475","0.1422","0.1422" +"GO:0098662","inorganic cation transmembrane transport",4,1,0.59,116,"0.475","0.1422","0.1422" +"GO:0032502","developmental process",29,2,4.29,314,"0.954","0.1498","0.1498" +"GO:1901615","organic hydroxy compound metabolic proce...",4,0,0.59,331,"1.000","0.1552","0.1552" +"GO:0006811","ion transport",18,4,2.66,39,"0.265","0.1770","0.1770" +"GO:0007275","multicellular organism development",28,2,4.14,311,"0.946","0.1797","0.1797" +"GO:0032501","multicellular organismal process",28,2,4.14,312,"0.946","0.1797","0.1797" +"GO:0048856","anatomical structure development",28,2,4.14,313,"0.946","0.1797","0.1797" +"GO:0065007","biological regulation",76,9,11.23,284,"0.869","0.1839","0.1839" +"GO:0044249","cellular biosynthetic process",47,8,6.95,102,"0.387","0.1848","0.1848" +"GO:1901576","organic substance biosynthetic process",47,8,6.95,103,"0.387","0.1848","0.1848" +"GO:0018193","peptidyl-amino acid modification",7,2,1.03,40,"0.276","0.1873","0.1873" +"GO:0071310","cellular response to organic substance",5,1,0.74,157,"0.554","0.1955","0.1955" +"GO:0009056","catabolic process",17,4,2.51,35,"0.229","0.2033","0.2033" +"GO:0022607","cellular component assembly",13,2,1.92,182,"0.601","0.2064","0.2064" +"GO:0044085","cellular component biogenesis",13,2,1.92,183,"0.601","0.2064","0.2064" +"GO:0007155","cell adhesion",8,0,1.18,332,"1.000","0.2115","0.2115" +"GO:0022610","biological adhesion",8,0,1.18,333,"1.000","0.2115","0.2115" +"GO:0051129","negative regulation of cellular componen...",4,0,0.59,334,"1.000","0.2158","0.2158" +"GO:0032269","negative regulation of cellular protein ...",7,1,1.03,202,"0.679","0.2159","0.2159" +"GO:0043086","negative regulation of catalytic activit...",7,1,1.03,203,"0.679","0.2159","0.2159" +"GO:0044092","negative regulation of molecular functio...",7,1,1.03,204,"0.679","0.2159","0.2159" +"GO:0051248","negative regulation of protein metabolic...",7,1,1.03,205,"0.679","0.2159","0.2159" +"GO:0048523","negative regulation of cellular process",18,2,2.66,249,"0.782","0.2250","0.2250" +"GO:0048869","cellular developmental process",18,2,2.66,250,"0.782","0.2250","0.2250" +"GO:0042493","response to drug",4,1,0.59,117,"0.475","0.2292","0.2292" +"GO:0033043","regulation of organelle organization",5,1,0.74,158,"0.554","0.2341","0.2341" +"GO:0044087","regulation of cellular component biogene...",7,1,1.03,206,"0.679","0.2366","0.2366" +"GO:0051130","positive regulation of cellular componen...",7,2,1.03,41,"0.276","0.2366","0.2366" +"GO:1901361","organic cyclic compound catabolic proces...",9,3,1.33,23,"0.132","0.2385","0.2385" +"GO:0043085","positive regulation of catalytic activit...",3,0,0.44,335,"1.000","0.2419","0.2419" +"GO:0048731","system development",22,2,3.25,285,"0.872","0.2441","0.2441" +"GO:0071705","nitrogen compound transport",10,1,1.48,256,"0.806","0.2462","0.2462" +"GO:1901701","cellular response to oxygen-containing c...",3,1,0.44,53,"0.383","0.2490","0.2490" +"GO:0009719","response to endogenous stimulus",3,0,0.44,336,"1.000","0.2490","0.2490" +"GO:0009725","response to hormone",3,0,0.44,337,"1.000","0.2490","0.2490" +"GO:0065009","regulation of molecular function",12,1,1.77,276,"0.862","0.2535","0.2535" +"GO:0006470","protein dephosphorylation",3,1,0.44,54,"0.383","0.2537","0.2537" +"GO:0010921","regulation of phosphatase activity",3,1,0.44,55,"0.383","0.2537","0.2537" +"GO:0010923","negative regulation of phosphatase activ...",3,1,0.44,56,"0.383","0.2537","0.2537" +"GO:0032515","negative regulation of phosphoprotein ph...",3,1,0.44,57,"0.383","0.2537","0.2537" +"GO:0035303","regulation of dephosphorylation",3,1,0.44,58,"0.383","0.2537","0.2537" +"GO:0035304","regulation of protein dephosphorylation",3,1,0.44,59,"0.383","0.2537","0.2537" +"GO:0035305","negative regulation of dephosphorylation",3,1,0.44,60,"0.383","0.2537","0.2537" +"GO:0035308","negative regulation of protein dephospho...",3,1,0.44,61,"0.383","0.2537","0.2537" +"GO:0043666","regulation of phosphoprotein phosphatase...",3,1,0.44,62,"0.383","0.2537","0.2537" +"GO:0048518","positive regulation of biological proces...",26,2,3.84,308,"0.928","0.2541","0.2541" +"GO:1901362","organic cyclic compound biosynthetic pro...",34,5,5.02,177,"0.594","0.2548","0.2548" +"GO:0065008","regulation of biological quality",21,4,3.1,49,"0.377","0.2551","0.2551" +"GO:0050789","regulation of biological process",73,8,10.79,301,"0.915","0.2588","0.2588" +"GO:1901360","organic cyclic compound metabolic proces...",51,8,7.54,152,"0.496","0.2604","0.2604" +"GO:1901566","organonitrogen compound biosynthetic pro...",11,4,1.63,12,"0.061","0.2605","0.2605" +"GO:0031400","negative regulation of protein modificat...",6,1,0.89,186,"0.622","0.2706","0.2706" +"GO:0070887","cellular response to chemical stimulus",6,1,0.89,187,"0.622","0.2706","0.2706" +"GO:0044248","cellular catabolic process",15,4,2.22,28,"0.163","0.2760","0.2760" +"GO:0050790","regulation of catalytic activity",11,1,1.63,266,"0.836","0.2792","0.2792" +"GO:0019439","aromatic compound catabolic process",8,3,1.18,16,"0.097","0.2815","0.2815" +"GO:0044270","cellular nitrogen compound catabolic pro...",8,3,1.18,17,"0.097","0.2815","0.2815" +"GO:0046700","heterocycle catabolic process",8,3,1.18,18,"0.097","0.2815","0.2815" +"GO:0048519","negative regulation of biological proces...",21,2,3.1,274,"0.853","0.2900","0.2900" +"GO:0006725","cellular aromatic compound metabolic pro...",50,8,7.39,111,"0.469","0.2954","0.2954" +"GO:0046483","heterocycle metabolic process",50,8,7.39,112,"0.469","0.2954","0.2954" +"GO:0018130","heterocycle biosynthetic process",33,5,4.88,173,"0.563","0.2956","0.2956" +"GO:0019438","aromatic compound biosynthetic process",33,5,4.88,174,"0.563","0.2956","0.2956" +"GO:0009166","nucleotide catabolic process",4,2,0.59,20,"0.105","0.2974","0.2974" +"GO:0046434","organophosphate catabolic process",4,2,0.59,21,"0.105","0.2974","0.2974" +"GO:1901292","nucleoside phosphate catabolic process",4,2,0.59,22,"0.105","0.2974","0.2974" +"GO:0044271","cellular nitrogen compound biosynthetic ...",39,8,5.76,29,"0.189","0.2976","0.2976" +"GO:0009653","anatomical structure morphogenesis",15,1,2.22,303,"0.917","0.3038","0.3038" +"GO:0048513","animal organ development",15,1,2.22,304,"0.917","0.3038","0.3038" +"GO:0043933","protein-containing complex subunit organ...",10,2,1.48,108,"0.451","0.3085","0.3085" +"GO:0065003","protein-containing complex assembly",10,2,1.48,109,"0.451","0.3085","0.3085" +"GO:0048468","cell development",11,1,1.63,267,"0.836","0.3101","0.3101" +"GO:0034404","nucleobase-containing small molecule bio...",5,2,0.74,25,"0.159","0.3122","0.3122" +"GO:0051704","multi-organism process",6,1,0.89,188,"0.622","0.3155","0.3155" +"GO:0042221","response to chemical",14,1,2.07,298,"0.902","0.3202","0.3202" +"GO:0009987","cellular process",152,21,22.46,262,"0.816","0.2476","0.3206" +"GO:0051336","regulation of hydrolase activity",6,1,0.89,189,"0.622","0.3214","0.3214" +"GO:0030154","cell differentiation",16,1,2.36,309,"0.931","0.3228","0.3228" +"GO:0007015","actin filament organization",4,1,0.59,118,"0.475","0.3258","0.3258" +"GO:0008064","regulation of actin polymerization or de...",4,1,0.59,119,"0.475","0.3258","0.3258" +"GO:0008154","actin polymerization or depolymerization",4,1,0.59,120,"0.475","0.3258","0.3258" +"GO:0030029","actin filament-based process",4,1,0.59,121,"0.475","0.3258","0.3258" +"GO:0030036","actin cytoskeleton organization",4,1,0.59,122,"0.475","0.3258","0.3258" +"GO:0030041","actin filament polymerization",4,1,0.59,123,"0.475","0.3258","0.3258" +"GO:0030832","regulation of actin filament length",4,1,0.59,124,"0.475","0.3258","0.3258" +"GO:0030833","regulation of actin filament polymerizat...",4,1,0.59,125,"0.475","0.3258","0.3258" +"GO:0032271","regulation of protein polymerization",4,1,0.59,126,"0.475","0.3258","0.3258" +"GO:0032535","regulation of cellular component size",4,1,0.59,127,"0.475","0.3258","0.3258" +"GO:0032956","regulation of actin cytoskeleton organiz...",4,1,0.59,128,"0.475","0.3258","0.3258" +"GO:0032970","regulation of actin filament-based proce...",4,1,0.59,129,"0.475","0.3258","0.3258" +"GO:0043254","regulation of protein complex assembly",4,1,0.59,130,"0.475","0.3258","0.3258" +"GO:0051493","regulation of cytoskeleton organization",4,1,0.59,131,"0.475","0.3258","0.3258" +"GO:0090066","regulation of anatomical structure size",4,1,0.59,132,"0.475","0.3258","0.3258" +"GO:0110053","regulation of actin filament organizatio...",4,1,0.59,133,"0.475","0.3258","0.3258" +"GO:1902903","regulation of supramolecular fiber organ...",4,1,0.59,134,"0.475","0.3258","0.3258" +"GO:0043543","protein acylation",3,0,0.44,338,"1.000","0.3352","0.3352" +"GO:0034654","nucleobase-containing compound biosynthe...",32,5,4.73,154,"0.532","0.3372","0.3372" +"GO:0010563","negative regulation of phosphorus metabo...",5,1,0.74,159,"0.554","0.3383","0.3383" +"GO:0045936","negative regulation of phosphate metabol...",5,1,0.74,160,"0.554","0.3383","0.3383" +"GO:0022603","regulation of anatomical structure morph...",5,0,0.74,339,"1.000","0.3383","0.3383" +"GO:1901575","organic substance catabolic process",13,3,1.92,45,"0.297","0.3401","0.3401" +"GO:0031399","regulation of protein modification proce...",11,1,1.63,268,"0.836","0.3429","0.3429" +"GO:0009108","coenzyme biosynthetic process",3,1,0.44,63,"0.383","0.3438","0.3438" +"GO:0051188","cofactor biosynthetic process",3,1,0.44,64,"0.383","0.3438","0.3438" +"GO:0016567","protein ubiquitination",4,1,0.59,135,"0.475","0.3481","0.3481" +"GO:0032446","protein modification by small protein co...",4,1,0.59,136,"0.475","0.3481","0.3481" +"GO:0070647","protein modification by small protein co...",4,1,0.59,137,"0.475","0.3481","0.3481" +"GO:0045184","establishment of protein localization",9,1,1.33,241,"0.770","0.3506","0.3506" +"GO:0048522","positive regulation of cellular process",24,2,3.55,299,"0.903","0.3506","0.3506" +"GO:0050794","regulation of cellular process",70,8,10.34,288,"0.883","0.3515","0.3515" +"GO:0097435","supramolecular fiber organization",6,2,0.89,31,"0.217","0.3602","0.3602" +"GO:0031344","regulation of cell projection organizati...",5,1,0.74,161,"0.554","0.3609","0.3609" +"GO:0120035","regulation of plasma membrane bounded ce...",5,1,0.74,162,"0.554","0.3609","0.3609" +"GO:0015698","inorganic anion transport",3,1,0.44,65,"0.383","0.3672","0.3672" +"GO:0050801","ion homeostasis",3,1,0.44,66,"0.383","0.3672","0.3672" +"GO:0055065","metal ion homeostasis",3,1,0.44,67,"0.383","0.3672","0.3672" +"GO:0055080","cation homeostasis",3,1,0.44,68,"0.383","0.3672","0.3672" +"GO:0098771","inorganic ion homeostasis",3,1,0.44,69,"0.383","0.3672","0.3672" +"GO:0009892","negative regulation of metabolic process",14,2,2.07,199,"0.644","0.3682","0.3682" +"GO:0016070","RNA metabolic process",35,5,5.17,197,"0.623","0.3770","0.3770" +"GO:0001933","negative regulation of protein phosphory...",3,1,0.44,70,"0.383","0.3792","0.3792" +"GO:0042326","negative regulation of phosphorylation",3,1,0.44,71,"0.383","0.3792","0.3792" +"GO:0043549","regulation of kinase activity",3,0,0.44,340,"1.000","0.3792","0.3792" +"GO:0045859","regulation of protein kinase activity",3,0,0.44,341,"1.000","0.3792","0.3792" +"GO:0051338","regulation of transferase activity",3,0,0.44,342,"1.000","0.3792","0.3792" +"GO:0098609","cell-cell adhesion",5,0,0.74,343,"1.000","0.3843","0.3843" +"GO:0090304","nucleic acid metabolic process",41,5,6.06,248,"0.774","0.3861","0.3861" +"GO:0031401","positive regulation of protein modificat...",7,1,1.03,207,"0.679","0.3862","0.3862" +"GO:0032270","positive regulation of cellular protein ...",7,1,1.03,208,"0.679","0.3862","0.3862" +"GO:0051247","positive regulation of protein metabolic...",7,1,1.03,209,"0.679","0.3862","0.3862" +"GO:0034220","ion transmembrane transport",8,1,1.18,224,"0.729","0.3864","0.3864" +"GO:0006139","nucleobase-containing compound metabolic...",47,7,6.95,175,"0.571","0.3883","0.3883" +"GO:0017144","drug metabolic process",6,2,0.89,32,"0.217","0.3902","0.3902" +"GO:0034655","nucleobase-containing compound catabolic...",6,2,0.89,33,"0.217","0.3902","0.3902" +"GO:0055086","nucleobase-containing small molecule met...",6,2,0.89,34,"0.217","0.3902","0.3902" +"GO:0033036","macromolecule localization",17,2,2.51,238,"0.752","0.3910","0.3910" +"GO:0055114","oxidation-reduction process",11,1,1.63,269,"0.836","0.3921","0.3921" +"GO:0034622","cellular protein-containing complex asse...",8,2,1.18,47,"0.336","0.3941","0.3941" +"GO:0034641","cellular nitrogen compound metabolic pro...",56,10,8.28,44,"0.289","0.3941","0.3941" +"GO:0051049","regulation of transport",5,1,0.74,163,"0.554","0.3962","0.3962" +"GO:0009605","response to external stimulus",7,2,1.03,42,"0.276","0.4004","0.4004" +"GO:1901135","carbohydrate derivative metabolic proces...",7,2,1.03,43,"0.276","0.4004","0.4004" +"GO:1902533","positive regulation of intracellular sig...",5,1,0.74,164,"0.554","0.4108","0.4108" +"GO:0006732","coenzyme metabolic process",4,1,0.59,138,"0.475","0.4111","0.4111" +"GO:0051186","cofactor metabolic process",4,1,0.59,139,"0.475","0.4111","0.4111" +"GO:0019220","regulation of phosphate metabolic proces...",10,1,1.48,257,"0.806","0.4116","0.4116" +"GO:0051174","regulation of phosphorus metabolic proce...",10,1,1.48,258,"0.806","0.4116","0.4116" +"GO:0010638","positive regulation of organelle organiz...",4,1,0.59,140,"0.475","0.4193","0.4193" +"GO:0009792","embryo development ending in birth or eg...",4,0,0.59,344,"1.000","0.4220","0.4220" +"GO:0043009","chordate embryonic development",4,0,0.59,345,"1.000","0.4220","0.4220" +"GO:0009894","regulation of catabolic process",3,1,0.44,72,"0.383","0.4259","0.4259" +"GO:0031329","regulation of cellular catabolic process",3,1,0.44,73,"0.383","0.4259","0.4259" +"GO:0008610","lipid biosynthetic process",6,0,0.89,346,"1.000","0.4282","0.4282" +"GO:0032879","regulation of localization",10,1,1.48,259,"0.806","0.4293","0.4293" +"GO:0044093","positive regulation of molecular functio...",5,1,0.74,165,"0.554","0.4406","0.4406" +"GO:0044089","positive regulation of cellular componen...",4,1,0.59,141,"0.475","0.4443","0.4443" +"GO:0060341","regulation of cellular localization",4,1,0.59,142,"0.475","0.4443","0.4443" +"GO:0050808","synapse organization",4,0,0.59,347,"1.000","0.4443","0.4443" +"GO:0061024","membrane organization",4,0,0.59,348,"1.000","0.4443","0.4443" +"GO:0007010","cytoskeleton organization",7,1,1.03,210,"0.679","0.4445","0.4445" +"GO:0009059","macromolecule biosynthetic process",36,6,5.32,106,"0.447","0.4449","0.4449" +"GO:0019222","regulation of metabolic process",36,3,5.32,310,"0.936","0.4449","0.4449" +"GO:0034645","cellular macromolecule biosynthetic proc...",36,6,5.32,107,"0.447","0.4449","0.4449" +"GO:0032268","regulation of cellular protein metabolic...",12,1,1.77,277,"0.862","0.4483","0.4483" +"GO:0006351","transcription, DNA-templated",27,3,3.99,253,"0.803","0.4530","0.4530" +"GO:0032774","RNA biosynthetic process",27,3,3.99,254,"0.803","0.4530","0.4530" +"GO:0097659","nucleic acid-templated transcription",27,3,3.99,255,"0.803","0.4530","0.4530" +"GO:1901700","response to oxygen-containing compound",5,1,0.74,166,"0.554","0.4532","0.4532" +"GO:0006753","nucleoside phosphate metabolic process",5,2,0.74,26,"0.159","0.4558","0.4558" +"GO:0009117","nucleotide metabolic process",5,2,0.74,27,"0.159","0.4558","0.4558" +"GO:0030182","neuron differentiation",9,1,1.33,242,"0.770","0.4561","0.4561" +"GO:0048584","positive regulation of response to stimu...",9,1,1.33,243,"0.770","0.4561","0.4561" +"GO:0006952","defense response",3,1,0.44,74,"0.383","0.4648","0.4648" +"GO:0008104","protein localization",13,1,1.92,289,"0.883","0.4849","0.4849" +"GO:0015031","protein transport",8,1,1.18,225,"0.729","0.4860","0.4860" +"GO:0015833","peptide transport",8,1,1.18,226,"0.729","0.4860","0.4860" +"GO:0042886","amide transport",8,1,1.18,227,"0.729","0.4860","0.4860" +"GO:0048646","anatomical structure formation involved ...",8,1,1.18,228,"0.729","0.4860","0.4860" +"GO:0034613","cellular protein localization",7,0,1.03,349,"1.000","0.4904","0.4904" +"GO:0042325","regulation of phosphorylation",9,1,1.33,244,"0.770","0.4911","0.4911" +"GO:0010035","response to inorganic substance",3,1,0.44,75,"0.383","0.4914","0.4914" +"GO:0060255","regulation of macromolecule metabolic pr...",35,3,5.17,307,"0.927","0.4991","0.4991" +"GO:0051276","chromosome organization",7,0,1.03,350,"1.000","0.5060","0.5060" +"GO:0010033","response to organic substance",10,1,1.48,260,"0.806","0.5160","0.5160" +"GO:0050896","response to stimulus",44,5,6.5,264,"0.831","0.3853","0.5161" +"GO:0010467","gene expression",42,8,6.21,38,"0.257","0.5179","0.5179" +"GO:0001775","cell activation",3,1,0.44,76,"0.383","0.5253","0.5253" +"GO:0002682","regulation of immune system process",3,1,0.44,77,"0.383","0.5253","0.5253" +"GO:0006955","immune response",3,1,0.44,78,"0.383","0.5253","0.5253" +"GO:0030838","positive regulation of actin filament po...",3,1,0.44,79,"0.383","0.5253","0.5253" +"GO:0031334","positive regulation of protein complex a...",3,1,0.44,80,"0.383","0.5253","0.5253" +"GO:0032273","positive regulation of protein polymeriz...",3,1,0.44,81,"0.383","0.5253","0.5253" +"GO:0032880","regulation of protein localization",3,1,0.44,82,"0.383","0.5253","0.5253" +"GO:0034314","Arp2/3 complex-mediated actin nucleation",3,1,0.44,83,"0.383","0.5253","0.5253" +"GO:0045010","actin nucleation",3,1,0.44,84,"0.383","0.5253","0.5253" +"GO:0045321","leukocyte activation",3,1,0.44,85,"0.383","0.5253","0.5253" +"GO:0051495","positive regulation of cytoskeleton orga...",3,1,0.44,86,"0.383","0.5253","0.5253" +"GO:0061061","muscle structure development",3,1,0.44,87,"0.383","0.5253","0.5253" +"GO:0072359","circulatory system development",3,1,0.44,88,"0.383","0.5253","0.5253" +"GO:1902905","positive regulation of supramolecular fi...",3,1,0.44,89,"0.383","0.5253","0.5253" +"GO:0022604","regulation of cell morphogenesis",3,0,0.44,351,"1.000","0.5253","0.5253" +"GO:0010605","negative regulation of macromolecule met...",12,1,1.77,278,"0.862","0.5270","0.5270" +"GO:0031324","negative regulation of cellular metaboli...",12,2,1.77,155,"0.554","0.5270","0.5270" +"GO:0051239","regulation of multicellular organismal p...",13,1,1.92,290,"0.883","0.5282","0.5282" +"GO:0044262","cellular carbohydrate metabolic process",3,1,0.44,90,"0.383","0.5322","0.5322" +"GO:0034660","ncRNA metabolic process",3,1,0.44,91,"0.383","0.5390","0.5390" +"GO:0010975","regulation of neuron projection developm...",3,1,0.44,92,"0.383","0.5459","0.5459" +"GO:0007610","behavior",3,0,0.44,352,"1.000","0.5459","0.5459" +"GO:0050803","regulation of synapse structure or activ...",3,0,0.44,353,"1.000","0.5459","0.5459" +"GO:0050807","regulation of synapse organization",3,0,0.44,354,"1.000","0.5459","0.5459" +"GO:0051668","localization within membrane",3,0,0.44,355,"1.000","0.5459","0.5459" +"GO:0072657","protein localization to membrane",3,0,0.44,356,"1.000","0.5459","0.5459" +"GO:0030030","cell projection organization",8,1,1.18,229,"0.729","0.5472","0.5472" +"GO:0120036","plasma membrane bounded cell projection ...",8,1,1.18,230,"0.729","0.5472","0.5472" +"GO:0007166","cell surface receptor signaling pathway",9,1,1.33,245,"0.770","0.5530","0.5530" +"GO:0051173","positive regulation of nitrogen compound...",9,1,1.33,246,"0.770","0.5550","0.5550" +"GO:0031323","regulation of cellular metabolic process",34,3,5.02,302,"0.917","0.5561","0.5561" +"GO:0051258","protein polymerization",5,1,0.74,167,"0.554","0.5637","0.5637" +"GO:0032504","multicellular organism reproduction",3,0,0.44,357,"1.000","0.5666","0.5666" +"GO:0048609","multicellular organismal reproductive pr...",3,0,0.44,358,"1.000","0.5666","0.5666" +"GO:0050793","regulation of developmental process",12,1,1.77,279,"0.862","0.5693","0.5693" +"GO:1901565","organonitrogen compound catabolic proces...",7,1,1.03,211,"0.679","0.5695","0.5695" +"GO:0007017","microtubule-based process",8,0,1.18,359,"1.000","0.5707","0.5707" +"GO:0016311","dephosphorylation",8,2,1.18,48,"0.336","0.5729","0.5729" +"GO:0006950","response to stress",12,2,1.77,156,"0.554","0.1719","0.5795" +"GO:0001932","regulation of protein phosphorylation",8,1,1.18,231,"0.729","0.5815","0.5815" +"GO:0051240","positive regulation of multicellular org...",8,1,1.18,232,"0.729","0.5815","0.5815" +"GO:0070727","cellular macromolecule localization",8,0,1.18,360,"1.000","0.5922","0.5922" +"GO:0019637","organophosphate metabolic process",11,3,1.63,30,"0.210","0.5943","0.5943" +"GO:0006325","chromatin organization",4,0,0.59,361,"1.000","0.5944","0.5944" +"GO:1901564","organonitrogen compound metabolic proces...",57,9,8.42,151,"0.477","0.6018","0.6018" +"GO:0022008","neurogenesis",12,1,1.77,280,"0.862","0.6120","0.6120" +"GO:0006397","mRNA processing",4,1,0.59,143,"0.475","0.6125","0.6125" +"GO:0016071","mRNA metabolic process",4,1,0.59,144,"0.475","0.6125","0.6125" +"GO:0007018","microtubule-based movement",4,0,0.59,362,"1.000","0.6156","0.6156" +"GO:0002376","immune system process",7,1,1.03,212,"0.679","0.6177","0.6177" +"GO:0000902","cell morphogenesis",7,0,1.03,363,"1.000","0.6177","0.6177" +"GO:0032989","cellular component morphogenesis",7,0,1.03,364,"1.000","0.6177","0.6177" +"GO:0009057","macromolecule catabolic process",6,0,0.89,365,"1.000","0.6187","0.6187" +"GO:0044265","cellular macromolecule catabolic process",6,0,0.89,366,"1.000","0.6187","0.6187" +"GO:0031325","positive regulation of cellular metaboli...",11,1,1.63,270,"0.836","0.6202","0.6202" +"GO:0051172","negative regulation of nitrogen compound...",11,1,1.63,271,"0.836","0.6202","0.6202" +"GO:0006355","regulation of transcription, DNA-templat...",21,1,3.1,319,"0.971","0.6250","0.6250" +"GO:1903506","regulation of nucleic acid-templated tra...",21,1,3.1,320,"0.971","0.6250","0.6250" +"GO:2001141","regulation of RNA biosynthetic process",21,1,3.1,321,"0.971","0.6250","0.6250" +"GO:0009116","nucleoside metabolic process",3,0,0.44,367,"1.000","0.6291","0.6291" +"GO:1901657","glycosyl compound metabolic process",3,0,0.44,368,"1.000","0.6291","0.6291" +"GO:0000226","microtubule cytoskeleton organization",4,0,0.59,369,"1.000","0.6336","0.6336" +"GO:0009967","positive regulation of signal transducti...",7,1,1.03,213,"0.679","0.6338","0.6338" +"GO:0010647","positive regulation of cell communicatio...",7,1,1.03,214,"0.679","0.6338","0.6338" +"GO:0023056","positive regulation of signaling",7,1,1.03,215,"0.679","0.6338","0.6338" +"GO:0031175","neuron projection development",7,1,1.03,216,"0.679","0.6338","0.6338" +"GO:0048666","neuron development",7,1,1.03,217,"0.679","0.6338","0.6338" +"GO:0009790","embryo development",7,0,1.03,370,"1.000","0.6338","0.6338" +"GO:0040011","locomotion",7,0,1.03,371,"1.000","0.6338","0.6338" +"GO:0009607","response to biotic stimulus",3,1,0.44,93,"0.383","0.6499","0.6499" +"GO:0010243","response to organonitrogen compound",3,1,0.44,94,"0.383","0.6499","0.6499" +"GO:1901698","response to nitrogen compound",3,1,0.44,95,"0.383","0.6499","0.6499" +"GO:0006807","nitrogen compound metabolic process",95,14,14.04,176,"0.583","0.6507","0.6507" +"GO:0009968","negative regulation of signal transducti...",3,1,0.44,96,"0.383","0.6568","0.6568" +"GO:0010648","negative regulation of cell communicatio...",3,1,0.44,97,"0.383","0.6568","0.6568" +"GO:0023057","negative regulation of signaling",3,1,0.44,98,"0.383","0.6568","0.6568" +"GO:0048585","negative regulation of response to stimu...",3,1,0.44,99,"0.383","0.6568","0.6568" +"GO:0033993","response to lipid",3,0,0.44,372,"1.000","0.6568","0.6568" +"GO:0019538","protein metabolic process",50,7,7.39,200,"0.649","0.6571","0.6571" +"GO:0044237","cellular metabolic process",108,15,15.96,221,"0.719","0.6607","0.6607" +"GO:0048699","generation of neurons",11,1,1.63,272,"0.836","0.6608","0.6608" +"GO:2000026","regulation of multicellular organismal d...",11,1,1.63,273,"0.836","0.6608","0.6608" +"GO:0042592","homeostatic process",12,3,1.77,37,"0.253","0.6634","0.6634" +"GO:0006886","intracellular protein transport",4,0,0.59,373,"1.000","0.6696","0.6696" +"GO:0045597","positive regulation of cell differentiat...",3,1,0.44,100,"0.383","0.6740","0.6740" +"GO:0051171","regulation of nitrogen compound metaboli...",32,2,4.73,317,"0.971","0.6753","0.6753" +"GO:0080090","regulation of primary metabolic process",32,2,4.73,318,"0.971","0.6753","0.6753" +"GO:0006403","RNA localization",3,0,0.44,374,"1.000","0.6774","0.6774" +"GO:0006913","nucleocytoplasmic transport",3,0,0.44,375,"1.000","0.6774","0.6774" +"GO:0051169","nuclear transport",3,0,0.44,376,"1.000","0.6774","0.6774" +"GO:0051094","positive regulation of developmental pro...",6,1,0.89,190,"0.622","0.6778","0.6778" +"GO:0051960","regulation of nervous system development",6,1,0.89,191,"0.622","0.6778","0.6778" +"GO:0060284","regulation of cell development",6,1,0.89,192,"0.622","0.6778","0.6778" +"GO:0007417","central nervous system development",6,0,0.89,377,"1.000","0.6778","0.6778" +"GO:0016477","cell migration",6,0,0.89,378,"1.000","0.6778","0.6778" +"GO:0048870","cell motility",6,0,0.89,379,"1.000","0.6778","0.6778" +"GO:0051674","localization of cell",6,0,0.89,380,"1.000","0.6778","0.6778" +"GO:0051726","regulation of cell cycle",6,0,0.89,381,"1.000","0.6778","0.6778" +"GO:0044267","cellular protein metabolic process",42,6,6.21,196,"0.623","0.6907","0.6907" +"GO:0009888","tissue development",8,1,1.18,233,"0.729","0.6972","0.6972" +"GO:0007399","nervous system development",15,1,2.22,305,"0.917","0.6977","0.6977" +"GO:0048583","regulation of response to stimulus",15,1,2.22,306,"0.917","0.6977","0.6977" +"GO:0016569","covalent chromatin modification",3,0,0.44,382,"1.000","0.6979","0.6979" +"GO:0016570","histone modification",3,0,0.44,383,"1.000","0.6979","0.6979" +"GO:0007346","regulation of mitotic cell cycle",3,0,0.44,384,"1.000","0.7013","0.7013" +"GO:0010564","regulation of cell cycle process",3,0,0.44,385,"1.000","0.7013","0.7013" +"GO:0051640","organelle localization",4,0,0.59,386,"1.000","0.7139","0.7139" +"GO:0051716","cellular response to stimulus",38,4,5.62,275,"0.860","0.6152","0.7202" +"GO:0018212","peptidyl-tyrosine modification",3,0,0.44,387,"1.000","0.7215","0.7215" +"GO:0016043","cellular component organization",32,3,4.73,296,"0.892","0.7224","0.7224" +"GO:0071840","cellular component organization or bioge...",32,3,4.73,297,"0.892","0.7224","0.7224" +"GO:0006396","RNA processing",6,1,0.89,193,"0.622","0.7236","0.7236" +"GO:0003008","system process",5,1,0.74,168,"0.554","0.7244","0.7244" +"GO:0045664","regulation of neuron differentiation",5,1,0.74,169,"0.554","0.7244","0.7244" +"GO:0050767","regulation of neurogenesis",5,1,0.74,170,"0.554","0.7244","0.7244" +"GO:0050877","nervous system process",5,1,0.74,171,"0.554","0.7244","0.7244" +"GO:0051241","negative regulation of multicellular org...",5,1,0.74,172,"0.554","0.7244","0.7244" +"GO:0000003","reproduction",5,0,0.74,388,"1.000","0.7244","0.7244" +"GO:0000904","cell morphogenesis involved in different...",5,0,0.74,389,"1.000","0.7244","0.7244" +"GO:0006915","apoptotic process",5,0,0.74,390,"1.000","0.7244","0.7244" +"GO:0007423","sensory organ development",5,0,0.74,391,"1.000","0.7244","0.7244" +"GO:0008219","cell death",5,0,0.74,392,"1.000","0.7244","0.7244" +"GO:0010562","positive regulation of phosphorus metabo...",5,0,0.74,393,"1.000","0.7244","0.7244" +"GO:0012501","programmed cell death",5,0,0.74,394,"1.000","0.7244","0.7244" +"GO:0032990","cell part morphogenesis",5,0,0.74,395,"1.000","0.7244","0.7244" +"GO:0042327","positive regulation of phosphorylation",5,0,0.74,396,"1.000","0.7244","0.7244" +"GO:0045937","positive regulation of phosphate metabol...",5,0,0.74,397,"1.000","0.7244","0.7244" +"GO:0048812","neuron projection morphogenesis",5,0,0.74,398,"1.000","0.7244","0.7244" +"GO:0048858","cell projection morphogenesis",5,0,0.74,399,"1.000","0.7244","0.7244" +"GO:0120039","plasma membrane bounded cell projection ...",5,0,0.74,400,"1.000","0.7244","0.7244" +"GO:0009890","negative regulation of biosynthetic proc...",5,0,0.74,401,"1.000","0.7270","0.7270" +"GO:0010558","negative regulation of macromolecule bio...",5,0,0.74,402,"1.000","0.7270","0.7270" +"GO:0031327","negative regulation of cellular biosynth...",5,0,0.74,403,"1.000","0.7270","0.7270" +"GO:0045934","negative regulation of nucleobase-contai...",5,0,0.74,404,"1.000","0.7270","0.7270" +"GO:2000113","negative regulation of cellular macromol...",5,0,0.74,405,"1.000","0.7270","0.7270" +"GO:0006511","ubiquitin-dependent protein catabolic pr...",4,0,0.59,406,"1.000","0.7284","0.7284" +"GO:0019941","modification-dependent protein catabolic...",4,0,0.59,407,"1.000","0.7284","0.7284" +"GO:0030163","protein catabolic process",4,0,0.59,408,"1.000","0.7284","0.7284" +"GO:0043632","modification-dependent macromolecule cat...",4,0,0.59,409,"1.000","0.7284","0.7284" +"GO:0044257","cellular protein catabolic process",4,0,0.59,410,"1.000","0.7284","0.7284" +"GO:0051603","proteolysis involved in cellular protein...",4,0,0.59,411,"1.000","0.7284","0.7284" +"GO:0044238","primary metabolic process",109,15,16.11,236,"0.739","0.7309","0.7309" +"GO:0043170","macromolecule metabolic process",88,12,13,222,"0.724","0.7361","0.7361" +"GO:0006508","proteolysis",12,1,1.77,281,"0.862","0.7411","0.7411" +"GO:0033554","cellular response to stress",6,1,0.89,194,"0.622","0.0912","0.7427" +"GO:0005975","carbohydrate metabolic process",7,1,1.03,218,"0.679","0.7438","0.7438" +"GO:0023052","signaling",34,4,5.02,251,"0.786","0.7475","0.7475" +"GO:0009889","regulation of biosynthetic process",23,1,3.4,323,"0.980","0.7521","0.7521" +"GO:0010556","regulation of macromolecule biosynthetic...",23,1,3.4,324,"0.980","0.7521","0.7521" +"GO:0019219","regulation of nucleobase-containing comp...",23,1,3.4,325,"0.980","0.7521","0.7521" +"GO:0031326","regulation of cellular biosynthetic proc...",23,1,3.4,326,"0.980","0.7521","0.7521" +"GO:2000112","regulation of cellular macromolecule bio...",23,1,3.4,327,"0.980","0.7521","0.7521" +"GO:0051246","regulation of protein metabolic process",13,1,1.92,291,"0.883","0.7557","0.7557" +"GO:0001934","positive regulation of protein phosphory...",4,0,0.59,412,"1.000","0.7597","0.7597" +"GO:0090407","organophosphate biosynthetic process",3,1,0.44,101,"0.383","0.7641","0.7641" +"GO:0007267","cell-cell signaling",4,1,0.59,145,"0.475","0.7736","0.7736" +"GO:0048729","tissue morphogenesis",4,1,0.59,146,"0.475","0.7736","0.7736" +"GO:0061564","axon development",4,1,0.59,147,"0.475","0.7736","0.7736" +"GO:0006935","chemotaxis",4,0,0.59,413,"1.000","0.7736","0.7736" +"GO:0007420","brain development",4,0,0.59,414,"1.000","0.7736","0.7736" +"GO:0010941","regulation of cell death",4,0,0.59,415,"1.000","0.7736","0.7736" +"GO:0022414","reproductive process",4,0,0.59,416,"1.000","0.7736","0.7736" +"GO:0030334","regulation of cell migration",4,0,0.59,417,"1.000","0.7736","0.7736" +"GO:0035239","tube morphogenesis",4,0,0.59,418,"1.000","0.7736","0.7736" +"GO:0035295","tube development",4,0,0.59,419,"1.000","0.7736","0.7736" +"GO:0040012","regulation of locomotion",4,0,0.59,420,"1.000","0.7736","0.7736" +"GO:0042330","taxis",4,0,0.59,421,"1.000","0.7736","0.7736" +"GO:0042981","regulation of apoptotic process",4,0,0.59,422,"1.000","0.7736","0.7736" +"GO:0043067","regulation of programmed cell death",4,0,0.59,423,"1.000","0.7736","0.7736" +"GO:0048598","embryonic morphogenesis",4,0,0.59,424,"1.000","0.7736","0.7736" +"GO:0048667","cell morphogenesis involved in neuron di...",4,0,0.59,425,"1.000","0.7736","0.7736" +"GO:0051270","regulation of cellular component movemen...",4,0,0.59,426,"1.000","0.7736","0.7736" +"GO:0060322","head development",4,0,0.59,427,"1.000","0.7736","0.7736" +"GO:0060429","epithelium development",4,0,0.59,428,"1.000","0.7736","0.7736" +"GO:2000145","regulation of cell motility",4,0,0.59,429,"1.000","0.7736","0.7736" +"GO:0050673","epithelial cell proliferation",3,0,0.44,430,"1.000","0.7769","0.7769" +"GO:0007154","cell communication",33,4,4.88,239,"0.763","0.7801","0.7801" +"GO:0007165","signal transduction",33,4,4.88,240,"0.763","0.7801","0.7801" +"GO:0032940","secretion by cell",4,1,0.59,148,"0.475","0.7873","0.7873" +"GO:0046903","secretion",4,1,0.59,149,"0.475","0.7873","0.7873" +"GO:0006928","movement of cell or subcellular componen...",10,0,1.48,431,"1.000","0.7915","0.7915" +"GO:0006996","organelle organization",20,1,2.96,315,"0.966","0.7962","0.7962" +"GO:0045454","cell redox homeostasis",4,1,0.59,150,"0.475","0.8007","0.8007" +"GO:0044260","cellular macromolecule metabolic process",73,9,10.79,263,"0.827","0.8020","0.8020" +"GO:0010604","positive regulation of macromolecule met...",10,1,1.48,261,"0.806","0.8136","0.8136" +"GO:0051252","regulation of RNA metabolic process",22,1,3.25,322,"0.976","0.8202","0.8202" +"GO:0001654","eye development",3,0,0.44,432,"1.000","0.8257","0.8257" +"GO:0002009","morphogenesis of an epithelium",3,0,0.44,433,"1.000","0.8257","0.8257" +"GO:0003002","regionalization",3,0,0.44,434,"1.000","0.8257","0.8257" +"GO:0007389","pattern specification process",3,0,0.44,435,"1.000","0.8257","0.8257" +"GO:0007409","axonogenesis",3,0,0.44,436,"1.000","0.8257","0.8257" +"GO:0009880","embryonic pattern specification",3,0,0.44,437,"1.000","0.8257","0.8257" +"GO:0016358","dendrite development",3,0,0.44,438,"1.000","0.8257","0.8257" +"GO:0035282","segmentation",3,0,0.44,439,"1.000","0.8257","0.8257" +"GO:0048568","embryonic organ development",3,0,0.44,440,"1.000","0.8257","0.8257" +"GO:0048880","sensory system development",3,0,0.44,441,"1.000","0.8257","0.8257" +"GO:0051093","negative regulation of developmental pro...",3,0,0.44,442,"1.000","0.8257","0.8257" +"GO:0060562","epithelial tube morphogenesis",3,0,0.44,443,"1.000","0.8257","0.8257" +"GO:0150063","visual system development",3,0,0.44,444,"1.000","0.8257","0.8257" +"GO:0006810","transport",48,7,7.09,180,"0.598","0.8260","0.8260" +"GO:0055085","transmembrane transport",23,4,3.4,110,"0.452","0.8265","0.8265" +"GO:0010468","regulation of gene expression",25,1,3.69,328,"0.986","0.8290","0.8290" +"GO:0071704","organic substance metabolic process",112,15,16.55,252,"0.793","0.8335","0.8335" +"GO:0051234","establishment of localization",49,7,7.24,198,"0.624","0.8355","0.8355" +"GO:0006629","lipid metabolic process",12,1,1.77,282,"0.862","0.8362","0.8362" +"GO:0009966","regulation of signal transduction",13,1,1.92,292,"0.883","0.8415","0.8415" +"GO:0010646","regulation of cell communication",13,1,1.92,293,"0.883","0.8415","0.8415" +"GO:0023051","regulation of signaling",13,1,1.92,294,"0.883","0.8415","0.8415" +"GO:0008283","cell proliferation",7,1,1.03,219,"0.679","0.8434","0.8434" +"GO:0051179","localization",54,7,7.98,237,"0.741","0.8441","0.8441" +"GO:0035556","intracellular signal transduction",13,2,1.92,184,"0.601","0.8552","0.8552" +"GO:1902531","regulation of intracellular signal trans...",8,1,1.18,234,"0.729","0.8575","0.8575" +"GO:0008152","metabolic process",133,19,19.66,220,"0.689","0.8597","0.8597" +"GO:0006260","DNA replication",3,0,0.44,445,"1.000","0.8623","0.8623" +"GO:0044255","cellular lipid metabolic process",10,0,1.48,446,"1.000","0.8628","0.8628" +"GO:0009893","positive regulation of metabolic process",12,1,1.77,283,"0.862","0.8659","0.8659" +"GO:0006259","DNA metabolic process",7,0,1.03,447,"1.000","0.8687","0.8687" +"GO:0046486","glycerolipid metabolic process",4,0,0.59,448,"1.000","0.8747","0.8747" +"GO:0007049","cell cycle",12,0,1.77,449,"1.000","0.8958","0.8958" +"GO:0032259","methylation",3,0,0.44,450,"1.000","0.8979","0.8979" +"GO:0006650","glycerophospholipid metabolic process",3,0,0.44,451,"1.000","0.9049","0.9049" +"GO:0046488","phosphatidylinositol metabolic process",3,0,0.44,452,"1.000","0.9049","0.9049" +"GO:0009887","animal organ morphogenesis",6,1,0.89,195,"0.622","0.9090","0.9090" +"GO:0045595","regulation of cell differentiation",8,1,1.18,235,"0.729","0.9238","0.9238" +"GO:0043412","macromolecule modification",33,3,4.88,300,"0.905","0.9289","0.9289" +"GO:0006644","phospholipid metabolic process",4,0,0.59,453,"1.000","0.9444","0.9444" +"GO:0006813","potassium ion transport",3,0,0.44,454,"1.000","0.9480","0.9480" +"GO:0007264","small GTPase mediated signal transductio...",4,0,0.59,455,"1.000","0.9506","0.9506" +"GO:0007265","Ras protein signal transduction",4,0,0.59,456,"1.000","0.9506","0.9506" +"GO:0022402","cell cycle process",7,0,1.03,457,"1.000","0.9506","0.9506" +"GO:0051641","cellular localization",20,1,2.96,316,"0.966","0.9514","0.9514" +"GO:0040007","growth",5,0,0.74,458,"1.000","0.9524","0.9524" +"GO:0048589","developmental growth",5,0,0.74,459,"1.000","0.9524","0.9524" +"GO:0045892","negative regulation of transcription, DN...",4,0,0.59,460,"1.000","0.9535","0.9535" +"GO:0051253","negative regulation of RNA metabolic pro...",4,0,0.59,461,"1.000","0.9535","0.9535" +"GO:1902679","negative regulation of RNA biosynthetic ...",4,0,0.59,462,"1.000","0.9535","0.9535" +"GO:1903507","negative regulation of nucleic acid-temp...",4,0,0.59,463,"1.000","0.9535","0.9535" +"GO:0006793","phosphorus metabolic process",34,5,5.02,178,"0.594","0.9544","0.9544" +"GO:0006796","phosphate-containing compound metabolic ...",34,5,5.02,179,"0.594","0.9544","0.9544" +"GO:0006897","endocytosis",4,0,0.59,464,"1.000","0.9619","0.9619" +"GO:0098657","import into cell",4,0,0.59,465,"1.000","0.9619","0.9619" +"GO:0046578","regulation of Ras protein signal transdu...",3,0,0.44,466,"1.000","0.9629","0.9629" +"GO:0051056","regulation of small GTPase mediated sign...",3,0,0.44,467,"1.000","0.9629","0.9629" +"GO:0000278","mitotic cell cycle",5,0,0.74,468,"1.000","0.9648","0.9648" +"GO:0010629","negative regulation of gene expression",5,0,0.74,469,"1.000","0.9703","0.9703" +"GO:1903047","mitotic cell cycle process",4,0,0.59,470,"1.000","0.9719","0.9719" +"GO:0008284","positive regulation of cell proliferatio...",4,0,0.59,471,"1.000","0.9763","0.9763" +"GO:0042127","regulation of cell proliferation",4,0,0.59,472,"1.000","0.9763","0.9763" +"GO:0006468","protein phosphorylation",20,2,2.96,265,"0.832","0.9803","0.9803" +"GO:0016192","vesicle-mediated transport",11,0,1.63,473,"1.000","0.9822","0.9822" +"GO:0000122","negative regulation of transcription by ...",3,0,0.44,474,"1.000","0.9823","0.9823" +"GO:0006464","cellular protein modification process",31,3,4.58,286,"0.878","0.9858","0.9858" +"GO:0036211","protein modification process",31,3,4.58,287,"0.878","0.9858","0.9858" +"GO:0016310","phosphorylation",22,3,3.25,201,"0.665","0.9914","0.9914" +"GO:0051649","establishment of localization in cell",13,1,1.92,295,"0.883","0.9993","0.9993" +"GO:0046907","intracellular transport",11,0,1.63,475,"1.000","0.9994","0.9994" +"GO:0006366","transcription by RNA polymerase II",9,1,1.33,247,"0.770","0.9999","0.9999" +"GO:0008150","biological_process",203,30,30,476,"1.000","1.0000","1.0000" +"GO:0006357","regulation of transcription by RNA polym...",8,0,1.18,477,"1.000","1.0000","1.0000" +"GO:0009891","positive regulation of biosynthetic proc...",5,0,0.74,478,"1.000","1.0000","1.0000" +"GO:0010557","positive regulation of macromolecule bio...",4,0,0.59,479,"1.000","1.0000","1.0000" +"GO:0010628","positive regulation of gene expression",4,0,0.59,480,"1.000","1.0000","1.0000" +"GO:0031328","positive regulation of cellular biosynth...",4,0,0.59,481,"1.000","1.0000","1.0000" +"GO:0045893","positive regulation of transcription, DN...",4,0,0.59,482,"1.000","1.0000","1.0000" +"GO:0045935","positive regulation of nucleobase-contai...",4,0,0.59,483,"1.000","1.0000","1.0000" +"GO:0045944","positive regulation of transcription by ...",4,0,0.59,484,"1.000","1.0000","1.0000" +"GO:0051254","positive regulation of RNA metabolic pro...",4,0,0.59,485,"1.000","1.0000","1.0000" +"GO:1902680","positive regulation of RNA biosynthetic ...",4,0,0.59,486,"1.000","1.0000","1.0000" +"GO:1903508","positive regulation of nucleic acid-temp...",4,0,0.59,487,"1.000","1.0000","1.0000" diff --git a/GO_enrichment_microbiome_output/contrast_emerging_young_downregulated.csv b/GO_enrichment_microbiome_output/contrast_emerging_young_downregulated.csv index a44b5ed..bd23104 100644 --- a/GO_enrichment_microbiome_output/contrast_emerging_young_downregulated.csv +++ b/GO_enrichment_microbiome_output/contrast_emerging_young_downregulated.csv @@ -4,3 +4,431 @@ "GO:0019439","aromatic compound catabolic process",4,3,1.05,14,"0.056","0.012","0.012" "GO:0044270","cellular nitrogen compound catabolic pro...",4,3,1.05,15,"0.056","0.012","0.012" "GO:0046700","heterocycle catabolic process",4,3,1.05,16,"0.056","0.012","0.012" +"GO:0006468","protein phosphorylation",17,8,4.45,11,"0.044","0.027","0.027" +"GO:0006725","cellular aromatic compound metabolic pro...",44,11,11.51,290,"0.647","0.031","0.031" +"GO:0016310","phosphorylation",20,9,5.23,12,"0.044","0.036","0.036" +"GO:0034655","nucleobase-containing compound catabolic...",3,2,0.78,41,"0.168","0.038","0.038" +"GO:1901360","organic cyclic compound metabolic proces...",46,12,12.03,226,"0.574","0.042","0.042" +"GO:0001932","regulation of protein phosphorylation",9,6,2.35,1,"0.011","0.045","0.045" +"GO:0042325","regulation of phosphorylation",9,6,2.35,2,"0.011","0.045","0.045" +"GO:0032535","regulation of cellular component size",3,2,0.78,42,"0.168","0.047","0.047" +"GO:0034622","cellular protein-containing complex asse...",3,2,0.78,43,"0.168","0.047","0.047" +"GO:0090066","regulation of anatomical structure size",3,2,0.78,44,"0.168","0.047","0.047" +"GO:0007017","microtubule-based process",4,3,1.05,17,"0.056","0.052","0.052" +"GO:0051726","regulation of cell cycle",6,3,1.57,76,"0.185","0.053","0.053" +"GO:0006139","nucleobase-containing compound metabolic...",42,10,10.98,326,"0.718","0.054","0.054" +"GO:1901361","organic cyclic compound catabolic proces...",5,3,1.31,23,"0.113","0.054","0.054" +"GO:0046483","heterocycle metabolic process",45,11,11.77,302,"0.683","0.055","0.055" +"GO:0000003","reproduction",5,3,1.31,24,"0.113","0.057","0.057" +"GO:0044283","small molecule biosynthetic process",7,3,1.83,101,"0.265","0.059","0.059" +"GO:0031175","neuron projection development",6,3,1.57,77,"0.185","0.060","0.060" +"GO:0042592","homeostatic process",9,5,2.35,13,"0.054","0.063","0.063" +"GO:0006325","chromatin organization",5,3,1.31,25,"0.113","0.064","0.064" +"GO:0006950","response to stress",15,4,3.92,228,"0.586","0.069","0.069" +"GO:0031399","regulation of protein modification proce...",12,7,3.14,3,"0.015","0.071","0.071" +"GO:0032268","regulation of cellular protein metabolic...",12,7,3.14,4,"0.015","0.071","0.071" +"GO:0017144","drug metabolic process",4,2,1.05,112,"0.280","0.071","0.071" +"GO:0010033","response to organic substance",7,3,1.83,102,"0.265","0.071","0.071" +"GO:0048812","neuron projection morphogenesis",5,3,1.31,26,"0.113","0.075","0.075" +"GO:0048858","cell projection morphogenesis",5,3,1.31,27,"0.113","0.075","0.075" +"GO:0050808","synapse organization",5,3,1.31,28,"0.113","0.075","0.075" +"GO:0120039","plasma membrane bounded cell projection ...",5,3,1.31,29,"0.113","0.075","0.075" +"GO:0006732","coenzyme metabolic process",3,1,0.78,238,"0.600","0.075","0.075" +"GO:0006974","cellular response to DNA damage stimulus",5,1,1.31,335,"0.784","0.079","0.079" +"GO:0019725","cellular homeostasis",5,3,1.31,30,"0.113","0.083","0.083" +"GO:0090304","nucleic acid metabolic process",37,8,9.68,356,"0.816","0.088","0.088" +"GO:0007409","axonogenesis",3,2,0.78,45,"0.168","0.089","0.089" +"GO:0061564","axon development",3,2,0.78,46,"0.168","0.089","0.089" +"GO:0019220","regulation of phosphate metabolic proces...",10,6,2.62,7,"0.022","0.089","0.089" +"GO:0051174","regulation of phosphorus metabolic proce...",10,6,2.62,8,"0.022","0.089","0.089" +"GO:0007010","cytoskeleton organization",6,3,1.57,78,"0.185","0.093","0.093" +"GO:0033554","cellular response to stress",8,2,2.09,291,"0.666","0.099","0.099" +"GO:0022414","reproductive process",4,2,1.05,113,"0.280","0.102","0.102" +"GO:0000910","cytokinesis",3,2,0.78,47,"0.168","0.107","0.107" +"GO:0001894","tissue homeostasis",3,2,0.78,48,"0.168","0.107","0.107" +"GO:0007276","gamete generation",3,2,0.78,49,"0.168","0.107","0.107" +"GO:0019953","sexual reproduction",3,2,0.78,50,"0.168","0.107","0.107" +"GO:0022412","cellular process involved in reproductio...",3,2,0.78,51,"0.168","0.107","0.107" +"GO:0032504","multicellular organism reproduction",3,2,0.78,52,"0.168","0.107","0.107" +"GO:0044703","multi-organism reproductive process",3,2,0.78,53,"0.168","0.107","0.107" +"GO:0048609","multicellular organismal reproductive pr...",3,2,0.78,54,"0.168","0.107","0.107" +"GO:0048871","multicellular organismal homeostasis",3,2,0.78,55,"0.168","0.107","0.107" +"GO:0051235","maintenance of location",3,2,0.78,56,"0.168","0.107","0.107" +"GO:0060249","anatomical structure homeostasis",3,2,0.78,57,"0.168","0.107","0.107" +"GO:1904029","regulation of cyclin-dependent protein k...",3,2,0.78,58,"0.168","0.107","0.107" +"GO:0051239","regulation of multicellular organismal p...",8,5,2.09,10,"0.030","0.110","0.110" +"GO:0043933","protein-containing complex subunit organ...",5,2,1.31,165,"0.392","0.112","0.112" +"GO:0065003","protein-containing complex assembly",5,2,1.31,166,"0.392","0.112","0.112" +"GO:0051246","regulation of protein metabolic process",13,7,3.4,9,"0.026","0.118","0.118" +"GO:0006928","movement of cell or subcellular componen...",8,4,2.09,34,"0.126","0.128","0.128" +"GO:0000902","cell morphogenesis",6,3,1.57,79,"0.185","0.134","0.134" +"GO:0032990","cell part morphogenesis",6,3,1.57,80,"0.185","0.134","0.134" +"GO:0040008","regulation of growth",3,2,0.78,59,"0.168","0.139","0.139" +"GO:0050803","regulation of synapse structure or activ...",3,2,0.78,60,"0.168","0.139","0.139" +"GO:0050807","regulation of synapse organization",3,2,0.78,61,"0.168","0.139","0.139" +"GO:0070887","cellular response to chemical stimulus",6,2,1.57,199,"0.495","0.149","0.149" +"GO:0010941","regulation of cell death",3,2,0.78,62,"0.168","0.149","0.149" +"GO:0000904","cell morphogenesis involved in different...",4,2,1.05,114,"0.280","0.156","0.156" +"GO:0001933","negative regulation of protein phosphory...",4,2,1.05,115,"0.280","0.156","0.156" +"GO:0006469","negative regulation of protein kinase ac...",4,2,1.05,116,"0.280","0.156","0.156" +"GO:0010563","negative regulation of phosphorus metabo...",4,2,1.05,117,"0.280","0.156","0.156" +"GO:0033673","negative regulation of kinase activity",4,2,1.05,118,"0.280","0.156","0.156" +"GO:0042326","negative regulation of phosphorylation",4,2,1.05,119,"0.280","0.156","0.156" +"GO:0043086","negative regulation of catalytic activit...",4,2,1.05,120,"0.280","0.156","0.156" +"GO:0044092","negative regulation of molecular functio...",4,2,1.05,121,"0.280","0.156","0.156" +"GO:0045936","negative regulation of phosphate metabol...",4,2,1.05,122,"0.280","0.156","0.156" +"GO:0048667","cell morphogenesis involved in neuron di...",4,2,1.05,123,"0.280","0.156","0.156" +"GO:0051348","negative regulation of transferase activ...",4,2,1.05,124,"0.280","0.156","0.156" +"GO:0042221","response to chemical",13,3,3.4,324,"0.710","0.160","0.160" +"GO:0007049","cell cycle",10,3,2.62,214,"0.512","0.165","0.165" +"GO:0006281","DNA repair",3,1,0.78,239,"0.600","0.165","0.165" +"GO:0006259","DNA metabolic process",7,2,1.83,230,"0.587","0.170","0.170" +"GO:0051276","chromosome organization",7,3,1.83,103,"0.265","0.175","0.175" +"GO:0016070","RNA metabolic process",31,6,8.11,382,"0.880","0.175","0.175" +"GO:0048519","negative regulation of biological proces...",21,8,5.49,38,"0.146","0.179","0.179" +"GO:0003006","developmental process involved in reprod...",3,1,0.78,240,"0.600","0.183","0.183" +"GO:0007346","regulation of mitotic cell cycle",3,2,0.78,63,"0.168","0.183","0.183" +"GO:0022008","neurogenesis",11,5,2.88,37,"0.128","0.183","0.183" +"GO:0009628","response to abiotic stimulus",5,2,1.31,167,"0.392","0.186","0.186" +"GO:0030029","actin filament-based process",5,2,1.31,168,"0.392","0.186","0.186" +"GO:0030036","actin cytoskeleton organization",5,2,1.31,169,"0.392","0.186","0.186" +"GO:0051704","multi-organism process",5,3,1.31,31,"0.113","0.186","0.186" +"GO:0051641","cellular localization",18,6,4.71,149,"0.318","0.186","0.186" +"GO:0032501","multicellular organismal process",29,8,7.58,212,"0.505","0.189","0.189" +"GO:0006996","organelle organization",19,7,4.97,89,"0.197","0.192","0.192" +"GO:0098656","anion transmembrane transport",5,3,1.31,32,"0.113","0.194","0.194" +"GO:0006814","sodium ion transport",3,0,0.78,399,"1.000","0.195","0.195" +"GO:0007155","cell adhesion",7,2,1.83,231,"0.587","0.198","0.198" +"GO:0022610","biological adhesion",7,2,1.83,232,"0.587","0.198","0.198" +"GO:0030030","cell projection organization",7,3,1.83,104,"0.265","0.198","0.198" +"GO:0048666","neuron development",7,3,1.83,105,"0.265","0.198","0.198" +"GO:0120036","plasma membrane bounded cell projection ...",7,3,1.83,106,"0.265","0.198","0.198" +"GO:0007610","behavior",3,1,0.78,241,"0.600","0.201","0.201" +"GO:0071705","nitrogen compound transport",11,4,2.88,147,"0.316","0.203","0.203" +"GO:0019438","aromatic compound biosynthetic process",27,6,7.06,334,"0.765","0.212","0.212" +"GO:0015672","monovalent inorganic cation transport",6,1,1.57,370,"0.842","0.217","0.217" +"GO:0050896","response to stimulus",44,13,11.51,152,"0.344","0.220","0.220" +"GO:1901362","organic cyclic compound biosynthetic pro...",30,7,7.85,327,"0.723","0.220","0.220" +"GO:0072521","purine-containing compound metabolic pro...",3,1,0.78,242,"0.600","0.221","0.221" +"GO:0008104","protein localization",10,3,2.62,215,"0.512","0.236","0.236" +"GO:0000278","mitotic cell cycle",8,3,2.09,156,"0.349","0.240","0.240" +"GO:0022402","cell cycle process",8,2,2.09,292,"0.666","0.240","0.240" +"GO:0032502","developmental process",33,10,8.63,153,"0.346","0.244","0.244" +"GO:2000026","regulation of multicellular organismal d...",7,4,1.83,18,"0.078","0.248","0.248" +"GO:0099173","postsynapse organization",3,1,0.78,243,"0.600","0.250","0.250" +"GO:0009058","biosynthetic process",41,9,10.72,355,"0.812","0.253","0.253" +"GO:0022607","cellular component assembly",8,3,2.09,157,"0.349","0.254","0.254" +"GO:0034654","nucleobase-containing compound biosynthe...",26,6,6.8,328,"0.727","0.265","0.265" +"GO:0040007","growth",4,2,1.05,125,"0.280","0.266","0.266" +"GO:0051301","cell division",4,2,1.05,126,"0.280","0.266","0.266" +"GO:0051186","cofactor metabolic process",4,1,1.05,304,"0.706","0.268","0.268" +"GO:0006464","cellular protein modification process",30,10,7.85,92,"0.224","0.270","0.270" +"GO:0036211","protein modification process",30,10,7.85,93,"0.224","0.270","0.270" +"GO:0045454","cell redox homeostasis",3,1,0.78,244,"0.600","0.273","0.273" +"GO:0034613","cellular protein localization",9,2,2.35,329,"0.733","0.275","0.275" +"GO:0070727","cellular macromolecule localization",9,2,2.35,330,"0.733","0.275","0.275" +"GO:0032989","cellular component morphogenesis",8,3,2.09,158,"0.349","0.277","0.277" +"GO:0048523","negative regulation of cellular process",17,6,4.45,100,"0.264","0.288","0.288" +"GO:1903047","mitotic cell cycle process",7,2,1.83,233,"0.587","0.289","0.289" +"GO:0051716","cellular response to stimulus",38,12,9.94,98,"0.257","0.291","0.291" +"GO:0051960","regulation of nervous system development",6,3,1.57,81,"0.185","0.292","0.292" +"GO:0009057","macromolecule catabolic process",6,2,1.57,200,"0.495","0.298","0.298" +"GO:0044265","cellular macromolecule catabolic process",6,2,1.57,201,"0.495","0.298","0.298" +"GO:0050794","regulation of cellular process",61,19,15.95,75,"0.185","0.300","0.300" +"GO:0050789","regulation of biological process",66,20,17.26,91,"0.219","0.301","0.301" +"GO:1901576","organic substance biosynthetic process",40,8,10.46,388,"0.886","0.303","0.303" +"GO:0032269","negative regulation of cellular protein ...",6,3,1.57,82,"0.185","0.304","0.304" +"GO:0043549","regulation of kinase activity",6,3,1.57,83,"0.185","0.304","0.304" +"GO:0045859","regulation of protein kinase activity",6,3,1.57,84,"0.185","0.304","0.304" +"GO:0051248","negative regulation of protein metabolic...",6,3,1.57,85,"0.185","0.304","0.304" +"GO:0051338","regulation of transferase activity",6,3,1.57,86,"0.185","0.304","0.304" +"GO:0048856","anatomical structure development",32,9,8.37,197,"0.468","0.314","0.314" +"GO:0016043","cellular component organization",28,8,7.32,194,"0.457","0.320","0.320" +"GO:0006351","transcription, DNA-templated",25,5,6.54,367,"0.840","0.328","0.328" +"GO:0032774","RNA biosynthetic process",25,5,6.54,368,"0.840","0.328","0.328" +"GO:0097659","nucleic acid-templated transcription",25,5,6.54,369,"0.840","0.328","0.328" +"GO:0009893","positive regulation of metabolic process",13,6,3.4,20,"0.089","0.328","0.328" +"GO:0007275","multicellular organism development",27,8,7.06,189,"0.408","0.328","0.328" +"GO:0048522","positive regulation of cellular process",20,8,5.23,33,"0.114","0.330","0.330" +"GO:0018130","heterocycle biosynthetic process",28,6,7.32,352,"0.799","0.334","0.334" +"GO:0043412","macromolecule modification",31,10,8.11,99,"0.263","0.334","0.334" +"GO:0033036","macromolecule localization",14,4,3.66,221,"0.523","0.336","0.336" +"GO:0071702","organic substance transport",14,5,3.66,146,"0.288","0.336","0.336" +"GO:0008219","cell death",4,2,1.05,127,"0.280","0.339","0.339" +"GO:0022603","regulation of anatomical structure morph...",4,2,1.05,128,"0.280","0.339","0.339" +"GO:0048518","positive regulation of biological proces...",23,9,6.02,22,"0.107","0.347","0.347" +"GO:0030154","cell differentiation",15,6,3.92,40,"0.166","0.351","0.351" +"GO:0071840","cellular component organization or bioge...",29,8,7.58,213,"0.505","0.354","0.354" +"GO:0035239","tube morphogenesis",4,2,1.05,129,"0.280","0.357","0.357" +"GO:0035295","tube development",4,2,1.05,130,"0.280","0.357","0.357" +"GO:0044249","cellular biosynthetic process",39,8,10.2,379,"0.865","0.359","0.359" +"GO:0034641","cellular nitrogen compound metabolic pro...",51,11,13.34,376,"0.854","0.365","0.365" +"GO:0009894","regulation of catabolic process",3,2,0.78,64,"0.168","0.368","0.368" +"GO:0012501","programmed cell death",3,2,0.78,65,"0.168","0.368","0.368" +"GO:0031329","regulation of cellular catabolic process",3,2,0.78,66,"0.168","0.368","0.368" +"GO:1901137","carbohydrate derivative biosynthetic pro...",3,2,0.78,67,"0.168","0.368","0.368" +"GO:0030182","neuron differentiation",10,4,2.62,94,"0.247","0.376","0.376" +"GO:0048699","generation of neurons",10,4,2.62,95,"0.247","0.376","0.376" +"GO:0009966","regulation of signal transduction",8,4,2.09,35,"0.126","0.387","0.387" +"GO:0007165","signal transduction",26,10,6.8,21,"0.100","0.388","0.388" +"GO:0016192","vesicle-mediated transport",9,4,2.35,70,"0.183","0.388","0.388" +"GO:0019222","regulation of metabolic process",33,10,8.63,154,"0.346","0.398","0.398" +"GO:0048646","anatomical structure formation involved ...",6,3,1.57,87,"0.185","0.401","0.401" +"GO:0032787","monocarboxylic acid metabolic process",4,1,1.05,305,"0.706","0.401","0.401" +"GO:0006396","RNA processing",5,1,1.31,336,"0.784","0.403","0.403" +"GO:0055086","nucleobase-containing small molecule met...",5,2,1.31,170,"0.392","0.403","0.403" +"GO:0060255","regulation of macromolecule metabolic pr...",30,8,7.85,224,"0.552","0.406","0.406" +"GO:0032259","methylation",3,1,0.78,245,"0.600","0.406","0.406" +"GO:0010562","positive regulation of phosphorus metabo...",5,2,1.31,171,"0.392","0.416","0.416" +"GO:0045937","positive regulation of phosphate metabol...",5,2,1.31,172,"0.392","0.416","0.416" +"GO:0071310","cellular response to organic substance",4,2,1.05,131,"0.280","0.423","0.423" +"GO:0015031","protein transport",6,2,1.57,202,"0.495","0.429","0.429" +"GO:0015833","peptide transport",6,2,1.57,203,"0.495","0.429","0.429" +"GO:0042886","amide transport",6,2,1.57,204,"0.495","0.429","0.429" +"GO:0045184","establishment of protein localization",6,2,1.57,205,"0.495","0.429","0.429" +"GO:0098609","cell-cell adhesion",5,2,1.31,173,"0.392","0.429","0.429" +"GO:0048869","cellular developmental process",16,6,4.18,90,"0.213","0.435","0.435" +"GO:0001654","eye development",3,1,0.78,246,"0.600","0.436","0.436" +"GO:0043010","camera-type eye development",3,1,0.78,247,"0.600","0.436","0.436" +"GO:0048880","sensory system development",3,1,0.78,248,"0.600","0.436","0.436" +"GO:0060041","retina development in camera-type eye",3,1,0.78,249,"0.600","0.436","0.436" +"GO:0150063","visual system development",3,1,0.78,250,"0.600","0.436","0.436" +"GO:0031401","positive regulation of protein modificat...",7,3,1.83,107,"0.265","0.437","0.437" +"GO:0032270","positive regulation of cellular protein ...",7,3,1.83,108,"0.265","0.437","0.437" +"GO:0051247","positive regulation of protein metabolic...",7,3,1.83,109,"0.265","0.437","0.437" +"GO:0046907","intracellular transport",12,4,3.14,161,"0.386","0.444","0.444" +"GO:0051649","establishment of localization in cell",12,4,3.14,162,"0.386","0.444","0.444" +"GO:0005975","carbohydrate metabolic process",8,3,2.09,159,"0.349","0.444","0.444" +"GO:0006913","nucleocytoplasmic transport",4,2,1.05,132,"0.280","0.450","0.450" +"GO:0051169","nuclear transport",4,2,1.05,133,"0.280","0.450","0.450" +"GO:0023052","signaling",27,10,7.06,36,"0.126","0.450","0.450" +"GO:0030001","metal ion transport",7,1,1.83,387,"0.885","0.455","0.455" +"GO:0031400","negative regulation of protein modificat...",5,2,1.31,174,"0.392","0.455","0.455" +"GO:0001934","positive regulation of protein phosphory...",4,2,1.05,134,"0.280","0.456","0.456" +"GO:0042327","positive regulation of phosphorylation",4,2,1.05,135,"0.280","0.456","0.456" +"GO:0008610","lipid biosynthetic process",7,2,1.83,234,"0.587","0.459","0.459" +"GO:0019538","protein metabolic process",48,13,12.55,211,"0.502","0.465","0.465" +"GO:0006820","anion transport",7,3,1.83,110,"0.265","0.466","0.466" +"GO:0034220","ion transmembrane transport",7,3,1.83,111,"0.265","0.466","0.466" +"GO:0044271","cellular nitrogen compound biosynthetic ...",31,6,8.11,383,"0.880","0.472","0.472" +"GO:0055114","oxidation-reduction process",8,2,2.09,293,"0.666","0.474","0.474" +"GO:0009987","cellular process",140,37,36.62,220,"0.522","0.477","0.477" +"GO:0003333","amino acid transmembrane transport",4,2,1.05,136,"0.280","0.479","0.479" +"GO:0006865","amino acid transport",4,2,1.05,137,"0.280","0.479","0.479" +"GO:1903825","organic acid transmembrane transport",4,2,1.05,138,"0.280","0.479","0.479" +"GO:1905039","carboxylic acid transmembrane transport",4,2,1.05,139,"0.280","0.479","0.479" +"GO:0050790","regulation of catalytic activity",9,4,2.35,71,"0.183","0.482","0.482" +"GO:0065009","regulation of molecular function",9,4,2.35,72,"0.183","0.482","0.482" +"GO:0007399","nervous system development",15,5,3.92,155,"0.349","0.487","0.487" +"GO:0006793","phosphorus metabolic process",29,9,7.58,150,"0.330","0.490","0.490" +"GO:0006796","phosphate-containing compound metabolic ...",29,9,7.58,151,"0.330","0.490","0.490" +"GO:0010628","positive regulation of gene expression",6,3,1.57,88,"0.185","0.495","0.495" +"GO:0006886","intracellular protein transport",5,1,1.31,337,"0.784","0.496","0.496" +"GO:0051188","cofactor biosynthetic process",3,1,0.78,251,"0.600","0.498","0.498" +"GO:0007154","cell communication",28,10,7.32,39,"0.156","0.513","0.513" +"GO:0010605","negative regulation of macromolecule met...",10,3,2.62,216,"0.512","0.517","0.517" +"GO:0009967","positive regulation of signal transducti...",4,2,1.05,140,"0.280","0.528","0.528" +"GO:0010647","positive regulation of cell communicatio...",4,2,1.05,141,"0.280","0.528","0.528" +"GO:0023056","positive regulation of signaling",4,2,1.05,142,"0.280","0.528","0.528" +"GO:0048584","positive regulation of response to stimu...",4,2,1.05,143,"0.280","0.528","0.528" +"GO:0010646","regulation of cell communication",9,4,2.35,73,"0.183","0.532","0.532" +"GO:0023051","regulation of signaling",9,4,2.35,74,"0.183","0.532","0.532" +"GO:0006694","steroid biosynthetic process",3,1,0.78,252,"0.600","0.540","0.540" +"GO:0006869","lipid transport",3,1,0.78,253,"0.600","0.540","0.540" +"GO:0008202","steroid metabolic process",3,1,0.78,254,"0.600","0.540","0.540" +"GO:0010876","lipid localization",3,1,0.78,255,"0.600","0.540","0.540" +"GO:0016236","macroautophagy",3,1,0.78,256,"0.600","0.540","0.540" +"GO:0031344","regulation of cell projection organizati...",3,1,0.78,257,"0.600","0.540","0.540" +"GO:0120035","regulation of plasma membrane bounded ce...",3,1,0.78,258,"0.600","0.540","0.540" +"GO:0010604","positive regulation of macromolecule met...",12,5,3.14,68,"0.176","0.540","0.540" +"GO:0031325","positive regulation of cellular metaboli...",12,5,3.14,69,"0.176","0.540","0.540" +"GO:0044248","cellular catabolic process",16,5,4.18,190,"0.411","0.546","0.546" +"GO:0009059","macromolecule biosynthetic process",30,5,7.85,396,"0.940","0.547","0.547" +"GO:0034645","cellular macromolecule biosynthetic proc...",30,5,7.85,397,"0.940","0.547","0.547" +"GO:0071103","DNA conformation change",3,1,0.78,259,"0.600","0.551","0.551" +"GO:0048468","cell development",12,4,3.14,163,"0.386","0.551","0.551" +"GO:0065007","biological regulation",70,23,18.31,19,"0.078","0.106","0.558" +"GO:0006508","proteolysis",15,4,3.92,229,"0.586","0.561","0.561" +"GO:0033674","positive regulation of kinase activity",3,1,0.78,260,"0.600","0.562","0.562" +"GO:0045860","positive regulation of protein kinase ac...",3,1,0.78,261,"0.600","0.562","0.562" +"GO:0051347","positive regulation of transferase activ...",3,1,0.78,262,"0.600","0.562","0.562" +"GO:0009892","negative regulation of metabolic process",12,4,3.14,164,"0.386","0.562","0.562" +"GO:0051171","regulation of nitrogen compound metaboli...",28,8,7.32,195,"0.457","0.563","0.563" +"GO:0080090","regulation of primary metabolic process",28,8,7.32,196,"0.457","0.563","0.563" +"GO:0010468","regulation of gene expression",22,4,5.75,384,"0.880","0.568","0.568" +"GO:0044085","cellular component biogenesis",10,3,2.62,217,"0.512","0.577","0.577" +"GO:0007623","circadian rhythm",3,1,0.78,263,"0.600","0.583","0.583" +"GO:0009611","response to wounding",3,1,0.78,264,"0.600","0.583","0.583" +"GO:0042060","wound healing",3,1,0.78,265,"0.600","0.583","0.583" +"GO:0048511","rhythmic process",3,1,0.78,266,"0.600","0.583","0.583" +"GO:0044087","regulation of cellular component biogene...",6,2,1.57,206,"0.495","0.586","0.586" +"GO:0006470","protein dephosphorylation",3,0,0.78,400,"1.000","0.594","0.594" +"GO:0007186","G protein-coupled receptor signaling pat...",4,1,1.05,306,"0.706","0.613","0.613" +"GO:0045664","regulation of neuron differentiation",5,2,1.31,175,"0.392","0.621","0.621" +"GO:0050767","regulation of neurogenesis",5,2,1.31,176,"0.392","0.621","0.621" +"GO:0060284","regulation of cell development",5,2,1.31,177,"0.392","0.621","0.621" +"GO:0018193","peptidyl-amino acid modification",4,2,1.05,144,"0.280","0.628","0.628" +"GO:0051240","positive regulation of multicellular org...",4,2,1.05,145,"0.280","0.628","0.628" +"GO:1901564","organonitrogen compound metabolic proces...",57,15,14.91,225,"0.553","0.631","0.631" +"GO:0001775","cell activation",4,1,1.05,307,"0.706","0.632","0.632" +"GO:0051130","positive regulation of cellular componen...",5,1,1.31,338,"0.784","0.635","0.635" +"GO:0009116","nucleoside metabolic process",3,1,0.78,267,"0.600","0.638","0.638" +"GO:1901657","glycosyl compound metabolic process",3,1,0.78,268,"0.600","0.638","0.638" +"GO:0031323","regulation of cellular metabolic process",30,9,7.85,160,"0.375","0.639","0.639" +"GO:0006812","cation transport",8,1,2.09,390,"0.916","0.647","0.647" +"GO:0008152","metabolic process",130,32,34,353,"0.807","0.660","0.660" +"GO:0009889","regulation of biosynthetic process",21,5,5.49,303,"0.690","0.661","0.661" +"GO:0015711","organic anion transport",5,2,1.31,178,"0.392","0.663","0.663" +"GO:0015849","organic acid transport",5,2,1.31,179,"0.392","0.663","0.663" +"GO:0046942","carboxylic acid transport",5,2,1.31,180,"0.392","0.663","0.663" +"GO:0048583","regulation of response to stimulus",10,4,2.62,96,"0.247","0.668","0.668" +"GO:0050793","regulation of developmental process",10,4,2.62,97,"0.247","0.668","0.668" +"GO:0006457","protein folding",3,0,0.78,401,"1.000","0.670","0.670" +"GO:0002376","immune system process",5,1,1.31,339,"0.784","0.677","0.677" +"GO:0051172","negative regulation of nitrogen compound...",9,3,2.35,192,"0.432","0.678","0.678" +"GO:1901575","organic substance catabolic process",13,4,3.4,193,"0.456","0.679","0.679" +"GO:0016053","organic acid biosynthetic process",3,1,0.78,269,"0.600","0.681","0.681" +"GO:0043543","protein acylation",3,1,0.78,270,"0.600","0.681","0.681" +"GO:0046394","carboxylic acid biosynthetic process",3,1,0.78,271,"0.600","0.681","0.681" +"GO:0044281","small molecule metabolic process",17,5,4.45,198,"0.472","0.696","0.696" +"GO:0010638","positive regulation of organelle organiz...",4,1,1.05,308,"0.706","0.697","0.697" +"GO:0009719","response to endogenous stimulus",3,1,0.78,272,"0.600","0.702","0.702" +"GO:0071495","cellular response to endogenous stimulus",3,1,0.78,273,"0.600","0.702","0.702" +"GO:0006914","autophagy",5,1,1.31,340,"0.784","0.705","0.705" +"GO:0061919","process utilizing autophagic mechanism",5,1,1.31,341,"0.784","0.705","0.705" +"GO:0010467","gene expression",37,6,9.68,398,"0.963","0.707","0.707" +"GO:0007264","small GTPase mediated signal transductio...",3,1,0.78,274,"0.600","0.712","0.712" +"GO:0051093","negative regulation of developmental pro...",3,1,0.78,275,"0.600","0.712","0.712" +"GO:1902531","regulation of intracellular signal trans...",3,1,0.78,276,"0.600","0.712","0.712" +"GO:0044260","cellular macromolecule metabolic process",66,15,17.26,365,"0.829","0.717","0.717" +"GO:0006082","organic acid metabolic process",8,2,2.09,294,"0.666","0.731","0.731" +"GO:0019752","carboxylic acid metabolic process",8,2,2.09,295,"0.666","0.731","0.731" +"GO:0043436","oxoacid metabolic process",8,2,2.09,296,"0.666","0.731","0.731" +"GO:0006520","cellular amino acid metabolic process",3,1,0.78,277,"0.600","0.733","0.733" +"GO:1901605","alpha-amino acid metabolic process",3,1,0.78,278,"0.600","0.733","0.733" +"GO:0046434","organophosphate catabolic process",3,1,0.78,279,"0.600","0.744","0.744" +"GO:0009605","response to external stimulus",6,2,1.57,207,"0.495","0.746","0.746" +"GO:1901615","organic hydroxy compound metabolic proce...",6,1,1.57,371,"0.842","0.753","0.753" +"GO:0009653","anatomical structure morphogenesis",16,5,4.18,191,"0.411","0.754","0.754" +"GO:0006355","regulation of transcription, DNA-templat...",20,4,5.23,357,"0.822","0.755","0.755" +"GO:0010556","regulation of macromolecule biosynthetic...",20,4,5.23,358,"0.822","0.755","0.755" +"GO:0019219","regulation of nucleobase-containing comp...",20,4,5.23,359,"0.822","0.755","0.755" +"GO:0031326","regulation of cellular biosynthetic proc...",20,4,5.23,360,"0.822","0.755","0.755" +"GO:0051252","regulation of RNA metabolic process",20,4,5.23,361,"0.822","0.755","0.755" +"GO:1903506","regulation of nucleic acid-templated tra...",20,4,5.23,362,"0.822","0.755","0.755" +"GO:2000112","regulation of cellular macromolecule bio...",20,4,5.23,363,"0.822","0.755","0.755" +"GO:2001141","regulation of RNA biosynthetic process",20,4,5.23,364,"0.822","0.755","0.755" +"GO:0033043","regulation of organelle organization",5,1,1.31,342,"0.784","0.759","0.759" +"GO:0007423","sensory organ development",5,1,1.31,343,"0.784","0.759","0.759" +"GO:0006066","alcohol metabolic process",3,0,0.78,402,"1.000","0.764","0.764" +"GO:0048598","embryonic morphogenesis",3,0,0.78,403,"1.000","0.764","0.764" +"GO:0044267","cellular protein metabolic process",37,10,9.68,219,"0.521","0.767","0.767" +"GO:1901565","organonitrogen compound catabolic proces...",6,2,1.57,208,"0.495","0.768","0.768" +"GO:0007267","cell-cell signaling",3,1,0.78,280,"0.600","0.774","0.774" +"GO:0016055","Wnt signaling pathway",3,1,0.78,281,"0.600","0.774","0.774" +"GO:0198738","cell-cell signaling by wnt",3,1,0.78,282,"0.600","0.774","0.774" +"GO:1905114","cell surface receptor signaling pathway ...",3,1,0.78,283,"0.600","0.774","0.774" +"GO:0040011","locomotion",6,2,1.57,209,"0.495","0.775","0.775" +"GO:0007417","central nervous system development",8,2,2.09,297,"0.666","0.779","0.779" +"GO:0007420","brain development",8,2,2.09,298,"0.666","0.779","0.779" +"GO:0051173","positive regulation of nitrogen compound...",11,4,2.88,148,"0.316","0.784","0.784" +"GO:0045595","regulation of cell differentiation",7,2,1.83,235,"0.587","0.790","0.790" +"GO:0048731","system development",22,6,5.75,223,"0.539","0.796","0.796" +"GO:0007166","cell surface receptor signaling pathway",9,2,2.35,331,"0.733","0.809","0.809" +"GO:0010557","positive regulation of macromolecule bio...",5,2,1.31,181,"0.392","0.821","0.821" +"GO:0031328","positive regulation of cellular biosynth...",5,2,1.31,182,"0.392","0.821","0.821" +"GO:0045893","positive regulation of transcription, DN...",5,2,1.31,183,"0.392","0.821","0.821" +"GO:0045935","positive regulation of nucleobase-contai...",5,2,1.31,184,"0.392","0.821","0.821" +"GO:0045944","positive regulation of transcription by ...",5,2,1.31,185,"0.392","0.821","0.821" +"GO:0051254","positive regulation of RNA metabolic pro...",5,2,1.31,186,"0.392","0.821","0.821" +"GO:1902680","positive regulation of RNA biosynthetic ...",5,2,1.31,187,"0.392","0.821","0.821" +"GO:1903508","positive regulation of nucleic acid-temp...",5,2,1.31,188,"0.392","0.821","0.821" +"GO:0051129","negative regulation of cellular componen...",4,1,1.05,309,"0.706","0.827","0.827" +"GO:0061024","membrane organization",4,1,1.05,310,"0.706","0.827","0.827" +"GO:0009056","catabolic process",18,5,4.71,222,"0.531","0.827","0.827" +"GO:1901135","carbohydrate derivative metabolic proces...",8,2,2.09,299,"0.666","0.830","0.830" +"GO:0016567","protein ubiquitination",3,1,0.78,284,"0.600","0.831","0.831" +"GO:0032446","protein modification by small protein co...",3,1,0.78,285,"0.600","0.831","0.831" +"GO:0035556","intracellular signal transduction",7,2,1.83,236,"0.587","0.835","0.835" +"GO:0006511","ubiquitin-dependent protein catabolic pr...",4,1,1.05,311,"0.706","0.840","0.840" +"GO:0019941","modification-dependent protein catabolic...",4,1,1.05,312,"0.706","0.840","0.840" +"GO:0030163","protein catabolic process",4,1,1.05,313,"0.706","0.840","0.840" +"GO:0043632","modification-dependent macromolecule cat...",4,1,1.05,314,"0.706","0.840","0.840" +"GO:0044257","cellular protein catabolic process",4,1,1.05,315,"0.706","0.840","0.840" +"GO:0051603","proteolysis involved in cellular protein...",4,1,1.05,316,"0.706","0.840","0.840" +"GO:0051128","regulation of cellular component organiz...",11,3,2.88,227,"0.585","0.847","0.847" +"GO:0044282","small molecule catabolic process",4,1,1.05,317,"0.706","0.848","0.848" +"GO:0006810","transport",43,9,11.25,378,"0.861","0.863","0.863" +"GO:0034470","ncRNA processing",3,1,0.78,286,"0.600","0.866","0.866" +"GO:0034660","ncRNA metabolic process",3,1,0.78,287,"0.600","0.866","0.866" +"GO:0010256","endomembrane system organization",4,1,1.05,318,"0.706","0.867","0.867" +"GO:0051234","establishment of localization",44,9,11.51,385,"0.881","0.873","0.873" +"GO:0009790","embryo development",7,2,1.83,237,"0.587","0.875","0.875" +"GO:0030334","regulation of cell migration",3,0,0.78,404,"1.000","0.882","0.882" +"GO:0040012","regulation of locomotion",3,0,0.78,405,"1.000","0.882","0.882" +"GO:0051270","regulation of cellular component movemen...",3,0,0.78,406,"1.000","0.882","0.882" +"GO:2000145","regulation of cell motility",3,0,0.78,407,"1.000","0.882","0.882" +"GO:0031324","negative regulation of cellular metaboli...",10,3,2.62,218,"0.512","0.883","0.883" +"GO:0043085","positive regulation of catalytic activit...",5,1,1.31,344,"0.784","0.888","0.888" +"GO:0044093","positive regulation of molecular functio...",5,1,1.31,345,"0.784","0.888","0.888" +"GO:0051179","localization",48,10,12.55,381,"0.877","0.889","0.889" +"GO:0006807","nitrogen compound metabolic process",91,21,23.8,377,"0.860","0.892","0.892" +"GO:0006811","ion transport",19,3,4.97,393,"0.919","0.895","0.895" +"GO:0007167","enzyme linked receptor protein signaling...",3,0,0.78,408,"1.000","0.897","0.897" +"GO:0060322","head development",9,2,2.35,332,"0.733","0.899","0.899" +"GO:0055085","transmembrane transport",19,3,4.97,394,"0.919","0.904","0.904" +"GO:0006081","cellular aldehyde metabolic process",4,1,1.05,319,"0.706","0.912","0.912" +"GO:0043170","macromolecule metabolic process",82,18,21.45,389,"0.904","0.917","0.917" +"GO:0016311","dephosphorylation",6,1,1.57,372,"0.842","0.920","0.920" +"GO:0044238","primary metabolic process",104,25,27.2,354,"0.811","0.929","0.929" +"GO:0006357","regulation of transcription by RNA polym...",8,2,2.09,300,"0.666","0.938","0.938" +"GO:0006366","transcription by RNA polymerase II",8,2,2.09,301,"0.666","0.938","0.938" +"GO:0009891","positive regulation of biosynthetic proc...",6,2,1.57,210,"0.495","0.938","0.938" +"GO:0009792","embryo development ending in birth or eg...",5,1,1.31,346,"0.784","0.941","0.941" +"GO:0016477","cell migration",5,1,1.31,347,"0.784","0.941","0.941" +"GO:0048870","cell motility",5,1,1.31,348,"0.784","0.941","0.941" +"GO:0051674","localization of cell",5,1,1.31,349,"0.784","0.941","0.941" +"GO:0006629","lipid metabolic process",13,3,3.4,325,"0.710","0.942","0.942" +"GO:0048513","animal organ development",14,2,3.66,395,"0.922","0.950","0.950" +"GO:0006518","peptide metabolic process",6,1,1.57,373,"0.842","0.958","0.958" +"GO:0009791","post-embryonic development",3,1,0.78,288,"0.600","0.960","0.960" +"GO:0009888","tissue development",6,1,1.57,374,"0.842","0.961","0.961" +"GO:0032879","regulation of localization",6,1,1.57,375,"0.842","0.961","0.961" +"GO:0060429","epithelium development",4,1,1.05,320,"0.706","0.964","0.964" +"GO:0048585","negative regulation of response to stimu...",4,0,1.05,409,"1.000","0.964","0.964" +"GO:0070647","protein modification by small protein co...",4,1,1.05,321,"0.706","0.966","0.966" +"GO:0044237","cellular metabolic process",100,23,26.15,386,"0.883","0.967","0.967" +"GO:0051094","positive regulation of developmental pro...",5,1,1.31,350,"0.784","0.968","0.968" +"GO:0051336","regulation of hydrolase activity",3,1,0.78,289,"0.600","0.969","0.969" +"GO:0043009","chordate embryonic development",4,1,1.05,322,"0.706","0.971","0.971" +"GO:0002009","morphogenesis of an epithelium",3,0,0.78,410,"1.000","0.973","0.973" +"GO:0048729","tissue morphogenesis",3,0,0.78,411,"1.000","0.973","0.973" +"GO:0008283","cell proliferation",4,1,1.05,323,"0.706","0.974","0.974" +"GO:0009887","animal organ morphogenesis",4,0,1.05,412,"1.000","0.974","0.974" +"GO:1901566","organonitrogen compound biosynthetic pro...",9,2,2.35,333,"0.733","0.980","0.980" +"GO:0000122","negative regulation of transcription by ...",3,0,0.78,413,"1.000","0.981","0.981" +"GO:0001501","skeletal system development",3,0,0.78,414,"1.000","0.981","0.981" +"GO:0002682","regulation of immune system process",3,0,0.78,415,"1.000","0.981","0.981" +"GO:0003008","system process",3,0,0.78,416,"1.000","0.981","0.981" +"GO:0045597","positive regulation of cell differentiat...",3,0,0.78,417,"1.000","0.981","0.981" +"GO:0050877","nervous system process",3,0,0.78,418,"1.000","0.981","0.981" +"GO:0009890","negative regulation of biosynthetic proc...",5,1,1.31,351,"0.784","0.983","0.983" +"GO:0010629","negative regulation of gene expression",5,0,1.31,419,"1.000","0.983","0.983" +"GO:0044255","cellular lipid metabolic process",11,2,2.88,366,"0.834","0.985","0.985" +"GO:0010558","negative regulation of macromolecule bio...",4,0,1.05,420,"1.000","0.986","0.986" +"GO:0031327","negative regulation of cellular biosynth...",4,0,1.05,421,"1.000","0.986","0.986" +"GO:0045892","negative regulation of transcription, DN...",4,0,1.05,422,"1.000","0.986","0.986" +"GO:0045934","negative regulation of nucleobase-contai...",4,0,1.05,423,"1.000","0.986","0.986" +"GO:0051253","negative regulation of RNA metabolic pro...",4,0,1.05,424,"1.000","0.986","0.986" +"GO:1902679","negative regulation of RNA biosynthetic ...",4,0,1.05,425,"1.000","0.986","0.986" +"GO:1903507","negative regulation of nucleic acid-temp...",4,0,1.05,426,"1.000","0.986","0.986" +"GO:2000113","negative regulation of cellular macromol...",4,0,1.05,427,"1.000","0.986","0.986" +"GO:0019637","organophosphate metabolic process",8,1,2.09,391,"0.916","0.989","0.989" +"GO:0043603","cellular amide metabolic process",8,1,2.09,392,"0.916","0.989","0.989" +"GO:0030900","forebrain development",3,0,0.78,428,"1.000","0.990","0.990" +"GO:0043043","peptide biosynthetic process",4,0,1.05,429,"1.000","0.992","0.992" +"GO:0043604","amide biosynthetic process",4,0,1.05,430,"1.000","0.992","0.992" +"GO:0006644","phospholipid metabolic process",5,0,1.31,431,"1.000","0.993","0.993" +"GO:0006412","translation",3,0,0.78,432,"1.000","0.994","0.994" +"GO:0071704","organic substance metabolic process",111,26,29.03,380,"0.877","1.000","1.000" +"GO:0008150","biological_process",195,51,51,433,"1.000","1.000","1.000" diff --git a/GO_enrichment_microbiome_output/contrast_emerging_young_upregulated.csv b/GO_enrichment_microbiome_output/contrast_emerging_young_upregulated.csv index b5d595e..3d1e7d2 100644 --- a/GO_enrichment_microbiome_output/contrast_emerging_young_upregulated.csv +++ b/GO_enrichment_microbiome_output/contrast_emerging_young_upregulated.csv @@ -4,3 +4,625 @@ "GO:0016311","dephosphorylation",7,4,2.17,7,"0.1364","0.0130","0.0130" "GO:0031400","negative regulation of protein modificat...",7,3,2.17,80,"0.3761","0.0130","0.0130" "GO:0010563","negative regulation of phosphorus metabo...",6,3,1.86,46,"0.2734","0.0246","0.0246" +"GO:0045936","negative regulation of phosphate metabol...",6,3,1.86,47,"0.2734","0.0246","0.0246" +"GO:0098662","inorganic cation transmembrane transport",6,2,1.86,147,"0.6049","0.0246","0.0246" +"GO:0031399","regulation of protein modification proce...",9,3,2.79,135,"0.5679","0.0278","0.0278" +"GO:0009755","hormone-mediated signaling pathway",3,3,0.93,2,"0.0290","0.0291","0.0291" +"GO:0043401","steroid hormone mediated signaling pathw...",3,3,0.93,3,"0.0290","0.0291","0.0291" +"GO:0098660","inorganic ion transmembrane transport",7,2,2.17,253,"0.6964","0.0434","0.0434" +"GO:0006816","calcium ion transport",5,2,1.55,110,"0.4944","0.0463","0.0463" +"GO:0070838","divalent metal ion transport",5,2,1.55,111,"0.4944","0.0463","0.0463" +"GO:0072511","divalent inorganic cation transport",5,2,1.55,112,"0.4944","0.0463","0.0463" +"GO:0019220","regulation of phosphate metabolic proces...",8,3,2.48,103,"0.4758","0.0513","0.0513" +"GO:0051174","regulation of phosphorus metabolic proce...",8,3,2.48,104,"0.4758","0.0513","0.0513" +"GO:0055085","transmembrane transport",33,14,10.25,5,"0.0938","0.0553","0.0553" +"GO:0006464","cellular protein modification process",32,13,9.94,11,"0.1449","0.0590","0.0590" +"GO:0036211","protein modification process",32,13,9.94,12,"0.1449","0.0590","0.0590" +"GO:0018193","peptidyl-amino acid modification",6,3,1.86,48,"0.2734","0.0725","0.0725" +"GO:0002262","myeloid cell homeostasis",3,2,0.93,29,"0.2282","0.0747","0.0747" +"GO:0030099","myeloid cell differentiation",3,2,0.93,30,"0.2282","0.0747","0.0747" +"GO:0030218","erythrocyte differentiation",3,2,0.93,31,"0.2282","0.0747","0.0747" +"GO:0034101","erythrocyte homeostasis",3,2,0.93,32,"0.2282","0.0747","0.0747" +"GO:0042592","homeostatic process",15,4,4.66,270,"0.7416","0.0782","0.0782" +"GO:0061024","membrane organization",5,1,1.55,348,"0.8474","0.0830","0.0830" +"GO:0034762","regulation of transmembrane transport",5,0,1.55,463,"1.0000","0.0830","0.0830" +"GO:0034765","regulation of ion transmembrane transpor...",5,0,1.55,464,"1.0000","0.0830","0.0830" +"GO:0043269","regulation of ion transport",5,0,1.55,465,"1.0000","0.0830","0.0830" +"GO:0051050","positive regulation of transport",5,0,1.55,466,"1.0000","0.0830","0.0830" +"GO:1904062","regulation of cation transmembrane trans...",5,0,1.55,467,"1.0000","0.0830","0.0830" +"GO:0008104","protein localization",17,4,5.28,346,"0.8336","0.0862","0.0862" +"GO:0001933","negative regulation of protein phosphory...",4,2,1.24,67,"0.3666","0.0866","0.0866" +"GO:0006470","protein dephosphorylation",4,2,1.24,68,"0.3666","0.0866","0.0866" +"GO:0009636","response to toxic substance",4,1,1.24,278,"0.7768","0.0866","0.0866" +"GO:0032943","mononuclear cell proliferation",4,1,1.24,279,"0.7768","0.0866","0.0866" +"GO:0042098","T cell proliferation",4,1,1.24,280,"0.7768","0.0866","0.0866" +"GO:0042110","T cell activation",4,1,1.24,281,"0.7768","0.0866","0.0866" +"GO:0042326","negative regulation of phosphorylation",4,2,1.24,69,"0.3666","0.0866","0.0866" +"GO:0046649","lymphocyte activation",4,1,1.24,282,"0.7768","0.0866","0.0866" +"GO:0046651","lymphocyte proliferation",4,1,1.24,283,"0.7768","0.0866","0.0866" +"GO:0070588","calcium ion transmembrane transport",4,1,1.24,284,"0.7768","0.0866","0.0866" +"GO:0070647","protein modification by small protein co...",4,1,1.24,285,"0.7768","0.0866","0.0866" +"GO:0070661","leukocyte proliferation",4,1,1.24,286,"0.7768","0.0866","0.0866" +"GO:1901701","cellular response to oxygen-containing c...",4,1,1.24,287,"0.7768","0.0866","0.0866" +"GO:1902532","negative regulation of intracellular sig...",4,2,1.24,70,"0.3666","0.0866","0.0866" +"GO:0007399","nervous system development",17,5,5.28,172,"0.6547","0.0871","0.0871" +"GO:0043412","macromolecule modification",35,14,10.87,13,"0.1473","0.0910","0.0910" +"GO:0042325","regulation of phosphorylation",7,2,2.17,254,"0.6964","0.0932","0.0932" +"GO:0043086","negative regulation of catalytic activit...",7,3,2.17,81,"0.3761","0.0932","0.0932" +"GO:0044092","negative regulation of molecular functio...",7,3,2.17,82,"0.3761","0.0932","0.0932" +"GO:0007417","central nervous system development",10,3,3.11,166,"0.6495","0.0968","0.0968" +"GO:0065009","regulation of molecular function",14,3,4.35,377,"0.8670","0.0977","0.0977" +"GO:0001776","leukocyte homeostasis",3,1,0.93,174,"0.6742","0.0991","0.0991" +"GO:0002260","lymphocyte homeostasis",3,1,0.93,175,"0.6742","0.0991","0.0991" +"GO:0002694","regulation of leukocyte activation",3,1,0.93,176,"0.6742","0.0991","0.0991" +"GO:0006417","regulation of translation",3,2,0.93,33,"0.2282","0.0991","0.0991" +"GO:0016049","cell growth",3,1,0.93,177,"0.6742","0.0991","0.0991" +"GO:0032944","regulation of mononuclear cell prolifera...",3,1,0.93,178,"0.6742","0.0991","0.0991" +"GO:0034248","regulation of cellular amide metabolic p...",3,2,0.93,34,"0.2282","0.0991","0.0991" +"GO:0042129","regulation of T cell proliferation",3,1,0.93,179,"0.6742","0.0991","0.0991" +"GO:0043409","negative regulation of MAPK cascade",3,2,0.93,35,"0.2282","0.0991","0.0991" +"GO:0050670","regulation of lymphocyte proliferation",3,1,0.93,180,"0.6742","0.0991","0.0991" +"GO:0050863","regulation of T cell activation",3,1,0.93,181,"0.6742","0.0991","0.0991" +"GO:0050865","regulation of cell activation",3,1,0.93,182,"0.6742","0.0991","0.0991" +"GO:0051249","regulation of lymphocyte activation",3,1,0.93,183,"0.6742","0.0991","0.0991" +"GO:0060560","developmental growth involved in morphog...",3,1,0.93,184,"0.6742","0.0991","0.0991" +"GO:0070663","regulation of leukocyte proliferation",3,1,0.93,185,"0.6742","0.0991","0.0991" +"GO:1903706","regulation of hemopoiesis",3,1,0.93,186,"0.6742","0.0991","0.0991" +"GO:0048545","response to steroid hormone",6,4,1.86,4,"0.0763","0.1030","0.1030" +"GO:0032940","secretion by cell",6,1,1.86,382,"0.8959","0.1188","0.1188" +"GO:0048731","system development",23,8,7.14,91,"0.4232","0.1210","0.1210" +"GO:0007423","sensory organ development",6,2,1.86,148,"0.6049","0.1216","0.1216" +"GO:0071396","cellular response to lipid",6,3,1.86,49,"0.2734","0.1216","0.1216" +"GO:0071495","cellular response to endogenous stimulus",6,3,1.86,50,"0.2734","0.1216","0.1216" +"GO:0007568","aging",3,1,0.93,187,"0.6742","0.1293","0.1293" +"GO:0051649","establishment of localization in cell",16,4,4.97,324,"0.7915","0.1299","0.1299" +"GO:0002682","regulation of immune system process",6,1,1.86,383,"0.8959","0.1303","0.1303" +"GO:0006366","transcription by RNA polymerase II",11,5,3.42,40,"0.2291","0.1337","0.1337" +"GO:0048869","cellular developmental process",21,8,6.52,59,"0.3070","0.1355","0.1355" +"GO:0031325","positive regulation of cellular metaboli...",9,2,2.79,336,"0.8277","0.1365","0.1365" +"GO:0051173","positive regulation of nitrogen compound...",9,3,2.79,136,"0.5679","0.1365","0.1365" +"GO:0010975","regulation of neuron projection developm...",4,0,1.24,468,"1.0000","0.1378","0.1378" +"GO:0022898","regulation of transmembrane transporter ...",4,0,1.24,469,"1.0000","0.1378","0.1378" +"GO:0032409","regulation of transporter activity",4,0,1.24,470,"1.0000","0.1378","0.1378" +"GO:0032412","regulation of ion transmembrane transpor...",4,0,1.24,471,"1.0000","0.1378","0.1378" +"GO:0042391","regulation of membrane potential",4,0,1.24,472,"1.0000","0.1378","0.1378" +"GO:0050808","synapse organization",4,0,1.24,473,"1.0000","0.1378","0.1378" +"GO:2001257","regulation of cation channel activity",4,0,1.24,474,"1.0000","0.1378","0.1378" +"GO:0048468","cell development",13,4,4.04,160,"0.6168","0.1491","0.1491" +"GO:0003013","circulatory system process",3,1,0.93,188,"0.6742","0.1610","0.1610" +"GO:0003015","heart process",3,1,0.93,189,"0.6742","0.1610","0.1610" +"GO:0008015","blood circulation",3,1,0.93,190,"0.6742","0.1610","0.1610" +"GO:0008016","regulation of heart contraction",3,1,0.93,191,"0.6742","0.1610","0.1610" +"GO:0010921","regulation of phosphatase activity",3,1,0.93,192,"0.6742","0.1610","0.1610" +"GO:0010923","negative regulation of phosphatase activ...",3,1,0.93,193,"0.6742","0.1610","0.1610" +"GO:0014074","response to purine-containing compound",3,1,0.93,194,"0.6742","0.1610","0.1610" +"GO:0019932","second-messenger-mediated signaling",3,2,0.93,36,"0.2282","0.1610","0.1610" +"GO:0032515","negative regulation of phosphoprotein ph...",3,1,0.93,195,"0.6742","0.1610","0.1610" +"GO:0035303","regulation of dephosphorylation",3,1,0.93,196,"0.6742","0.1610","0.1610" +"GO:0035304","regulation of protein dephosphorylation",3,1,0.93,197,"0.6742","0.1610","0.1610" +"GO:0035305","negative regulation of dephosphorylation",3,1,0.93,198,"0.6742","0.1610","0.1610" +"GO:0035308","negative regulation of protein dephospho...",3,1,0.93,199,"0.6742","0.1610","0.1610" +"GO:0043666","regulation of phosphoprotein phosphatase...",3,1,0.93,200,"0.6742","0.1610","0.1610" +"GO:0046677","response to antibiotic",3,1,0.93,201,"0.6742","0.1610","0.1610" +"GO:0060047","heart contraction",3,1,0.93,202,"0.6742","0.1610","0.1610" +"GO:1903522","regulation of blood circulation",3,1,0.93,203,"0.6742","0.1610","0.1610" +"GO:0016567","protein ubiquitination",3,0,0.93,475,"1.0000","0.1610","0.1610" +"GO:0031346","positive regulation of cell projection o...",3,0,0.93,476,"1.0000","0.1610","0.1610" +"GO:0032092","positive regulation of protein binding",3,0,0.93,477,"1.0000","0.1610","0.1610" +"GO:0032446","protein modification by small protein co...",3,0,0.93,478,"1.0000","0.1610","0.1610" +"GO:0043393","regulation of protein binding",3,0,0.93,479,"1.0000","0.1610","0.1610" +"GO:0051098","regulation of binding",3,0,0.93,480,"1.0000","0.1610","0.1610" +"GO:0051099","positive regulation of binding",3,0,0.93,481,"1.0000","0.1610","0.1610" +"GO:0019725","cellular homeostasis",6,1,1.86,384,"0.8959","0.1628","0.1628" +"GO:0009719","response to endogenous stimulus",8,4,2.48,21,"0.2099","0.1641","0.1641" +"GO:0072359","circulatory system development",5,1,1.55,349,"0.8474","0.1643","0.1643" +"GO:0034613","cellular protein localization",10,3,3.11,167,"0.6495","0.1651","0.1651" +"GO:0098655","cation transmembrane transport",10,2,3.11,380,"0.8723","0.1651","0.1651" +"GO:0001932","regulation of protein phosphorylation",6,2,1.86,149,"0.6049","0.1664","0.1664" +"GO:0006974","cellular response to DNA damage stimulus",6,2,1.86,150,"0.6049","0.1664","0.1664" +"GO:0009968","negative regulation of signal transducti...",6,3,1.86,51,"0.2734","0.1664","0.1664" +"GO:0010648","negative regulation of cell communicatio...",6,3,1.86,52,"0.2734","0.1664","0.1664" +"GO:0023057","negative regulation of signaling",6,3,1.86,53,"0.2734","0.1664","0.1664" +"GO:0048585","negative regulation of response to stimu...",6,3,1.86,54,"0.2734","0.1664","0.1664" +"GO:0051346","negative regulation of hydrolase activit...",6,2,1.86,151,"0.6049","0.1664","0.1664" +"GO:0002520","immune system development",5,2,1.55,113,"0.4944","0.1695","0.1695" +"GO:0030097","hemopoiesis",5,2,1.55,114,"0.4944","0.1695","0.1695" +"GO:0048534","hematopoietic or lymphoid organ developm...",5,2,1.55,115,"0.4944","0.1695","0.1695" +"GO:0048872","homeostasis of number of cells",5,2,1.55,116,"0.4944","0.1695","0.1695" +"GO:0009893","positive regulation of metabolic process",11,3,3.42,265,"0.7199","0.1730","0.1730" +"GO:0070887","cellular response to chemical stimulus",11,4,3.42,98,"0.4619","0.1730","0.1730" +"GO:0001775","cell activation",5,1,1.55,350,"0.8474","0.1845","0.1845" +"GO:0045321","leukocyte activation",5,1,1.55,351,"0.8474","0.1845","0.1845" +"GO:0098609","cell-cell adhesion",5,0,1.55,482,"1.0000","0.1845","0.1845" +"GO:0048584","positive regulation of response to stimu...",11,2,3.42,415,"0.9062","0.1852","0.1852" +"GO:0006793","phosphorus metabolic process",35,13,10.87,43,"0.2546","0.1907","0.1907" +"GO:0006796","phosphate-containing compound metabolic ...",35,13,10.87,44,"0.2546","0.1907","0.1907" +"GO:0030154","cell differentiation",20,7,6.21,93,"0.4315","0.1935","0.1935" +"GO:0033036","macromolecule localization",20,4,6.21,421,"0.9202","0.1935","0.1935" +"GO:0006810","transport",63,22,19.56,45,"0.2642","0.1937","0.1937" +"GO:0009725","response to hormone",7,4,2.17,8,"0.1364","0.1992","0.1992" +"GO:0030001","metal ion transport",13,5,4.04,78,"0.3755","0.2028","0.2028" +"GO:0048856","anatomical structure development",27,9,8.38,101,"0.4709","0.2033","0.2033" +"GO:0030900","forebrain development",3,2,0.93,37,"0.2282","0.2037","0.2037" +"GO:0016071","mRNA metabolic process",6,3,1.86,55,"0.2734","0.2049","0.2049" +"GO:0007610","behavior",8,1,2.48,441,"0.9519","0.2053","0.2053" +"GO:0015031","protein transport",9,3,2.79,137,"0.5679","0.2081","0.2081" +"GO:0015833","peptide transport",9,3,2.79,138,"0.5679","0.2081","0.2081" +"GO:0042886","amide transport",9,3,2.79,139,"0.5679","0.2081","0.2081" +"GO:0006952","defense response",5,1,1.55,352,"0.8474","0.2140","0.2140" +"GO:0009792","embryo development ending in birth or eg...",4,0,1.24,483,"1.0000","0.2158","0.2158" +"GO:0043009","chordate embryonic development",4,0,1.24,484,"1.0000","0.2158","0.2158" +"GO:0010817","regulation of hormone levels",3,1,0.93,204,"0.6742","0.2216","0.2216" +"GO:0051259","protein complex oligomerization",3,1,0.93,205,"0.6742","0.2216","0.2216" +"GO:1903530","regulation of secretion by cell",3,0,0.93,485,"1.0000","0.2216","0.2216" +"GO:0065008","regulation of biological quality",22,6,6.83,268,"0.7357","0.2237","0.2237" +"GO:0072657","protein localization to membrane",3,1,0.93,206,"0.6742","0.2278","0.2278" +"GO:0007268","chemical synaptic transmission",3,0,0.93,486,"1.0000","0.2278","0.2278" +"GO:0010469","regulation of signaling receptor activit...",3,0,0.93,487,"1.0000","0.2278","0.2278" +"GO:0050803","regulation of synapse structure or activ...",3,0,0.93,488,"1.0000","0.2278","0.2278" +"GO:0050804","modulation of chemical synaptic transmis...",3,0,0.93,489,"1.0000","0.2278","0.2278" +"GO:0050806","positive regulation of synaptic transmis...",3,0,0.93,490,"1.0000","0.2278","0.2278" +"GO:0050807","regulation of synapse organization",3,0,0.93,491,"1.0000","0.2278","0.2278" +"GO:0098916","anterograde trans-synaptic signaling",3,0,0.93,492,"1.0000","0.2278","0.2278" +"GO:0099173","postsynapse organization",3,0,0.93,493,"1.0000","0.2278","0.2278" +"GO:0099177","regulation of trans-synaptic signaling",3,0,0.93,494,"1.0000","0.2278","0.2278" +"GO:0099536","synaptic signaling",3,0,0.93,495,"1.0000","0.2278","0.2278" +"GO:0099537","trans-synaptic signaling",3,0,0.93,496,"1.0000","0.2278","0.2278" +"GO:0001654","eye development",5,2,1.55,117,"0.4944","0.2283","0.2283" +"GO:0032504","multicellular organism reproduction",5,1,1.55,353,"0.8474","0.2283","0.2283" +"GO:0032870","cellular response to hormone stimulus",5,3,1.55,14,"0.1748","0.2283","0.2283" +"GO:0048609","multicellular organismal reproductive pr...",5,1,1.55,354,"0.8474","0.2283","0.2283" +"GO:0048880","sensory system development",5,2,1.55,118,"0.4944","0.2283","0.2283" +"GO:0071383","cellular response to steroid hormone sti...",5,3,1.55,15,"0.1748","0.2283","0.2283" +"GO:0071407","cellular response to organic cyclic comp...",5,3,1.55,16,"0.1748","0.2283","0.2283" +"GO:0150063","visual system development",5,2,1.55,119,"0.4944","0.2283","0.2283" +"GO:0014070","response to organic cyclic compound",8,4,2.48,22,"0.2099","0.2290","0.2290" +"GO:0071310","cellular response to organic substance",8,3,2.48,105,"0.4758","0.2290","0.2290" +"GO:0043066","negative regulation of apoptotic process",4,1,1.24,288,"0.7768","0.2374","0.2374" +"GO:0043069","negative regulation of programmed cell d...",4,1,1.24,289,"0.7768","0.2374","0.2374" +"GO:0044057","regulation of system process",4,1,1.24,290,"0.7768","0.2374","0.2374" +"GO:0060548","negative regulation of cell death",4,1,1.24,291,"0.7768","0.2374","0.2374" +"GO:0098657","import into cell",9,1,2.79,448,"0.9674","0.2406","0.2406" +"GO:0015672","monovalent inorganic cation transport",8,3,2.48,106,"0.4758","0.2421","0.2421" +"GO:0006753","nucleoside phosphate metabolic process",5,2,1.55,120,"0.4944","0.2466","0.2466" +"GO:0009117","nucleotide metabolic process",5,2,1.55,121,"0.4944","0.2466","0.2466" +"GO:0055086","nucleobase-containing small molecule met...",5,2,1.55,122,"0.4944","0.2466","0.2466" +"GO:0007155","cell adhesion",7,1,2.17,425,"0.9291","0.2480","0.2480" +"GO:0022610","biological adhesion",7,1,2.17,426,"0.9291","0.2480","0.2480" +"GO:0030182","neuron differentiation",9,1,2.79,449,"0.9674","0.2521","0.2521" +"GO:0048513","animal organ development",19,7,5.9,77,"0.3687","0.2523","0.2523" +"GO:0006955","immune response",4,0,1.24,497,"1.0000","0.2525","0.2525" +"GO:0050776","regulation of immune response",4,0,1.24,498,"1.0000","0.2525","0.2525" +"GO:0032880","regulation of protein localization",6,1,1.86,385,"0.8959","0.2587","0.2587" +"GO:0007275","multicellular organism development",26,9,8.07,90,"0.4155","0.2611","0.2611" +"GO:0046907","intracellular transport",11,4,3.42,99,"0.4619","0.2672","0.2672" +"GO:0015698","inorganic anion transport",3,2,0.93,38,"0.2282","0.2672","0.2672" +"GO:0060341","regulation of cellular localization",6,1,1.86,386,"0.8959","0.2684","0.2684" +"GO:0007267","cell-cell signaling",6,0,1.86,499,"1.0000","0.2684","0.2684" +"GO:0031344","regulation of cell projection organizati...",6,0,1.86,500,"1.0000","0.2684","0.2684" +"GO:0120035","regulation of plasma membrane bounded ce...",6,0,1.86,501,"1.0000","0.2684","0.2684" +"GO:0050790","regulation of catalytic activity",10,3,3.11,168,"0.6495","0.2757","0.2757" +"GO:0006352","DNA-templated transcription, initiation",3,1,0.93,207,"0.6742","0.2813","0.2813" +"GO:0007420","brain development",7,3,2.17,83,"0.3761","0.2860","0.2860" +"GO:0009790","embryo development",7,2,2.17,255,"0.6964","0.2860","0.2860" +"GO:0060322","head development",7,3,2.17,84,"0.3761","0.2860","0.2860" +"GO:0006996","organelle organization",20,7,6.21,94,"0.4315","0.0741","0.2877" +"GO:0045597","positive regulation of cell differentiat...",5,1,1.55,355,"0.8474","0.2897","0.2897" +"GO:0048878","chemical homeostasis",5,1,1.55,356,"0.8474","0.2897","0.2897" +"GO:0050801","ion homeostasis",5,1,1.55,357,"0.8474","0.2897","0.2897" +"GO:0045454","cell redox homeostasis",4,1,1.24,292,"0.7768","0.3015","0.3015" +"GO:0034220","ion transmembrane transport",14,2,4.35,447,"0.9644","0.3037","0.3037" +"GO:0043933","protein-containing complex subunit organ...",11,2,3.42,416,"0.9062","0.3096","0.3096" +"GO:0065003","protein-containing complex assembly",11,2,3.42,417,"0.9062","0.3096","0.3096" +"GO:0009967","positive regulation of signal transducti...",9,2,2.79,337,"0.8277","0.3105","0.3105" +"GO:0010647","positive regulation of cell communicatio...",9,2,2.79,338,"0.8277","0.3105","0.3105" +"GO:0023056","positive regulation of signaling",9,2,2.79,339,"0.8277","0.3105","0.3105" +"GO:0006811","ion transport",29,10,9,89,"0.4081","0.3175","0.3175" +"GO:0001701","in utero embryonic development",3,0,0.93,502,"1.0000","0.3183","0.3183" +"GO:0033993","response to lipid",9,4,2.79,57,"0.2918","0.3194","0.3194" +"GO:0070727","cellular macromolecule localization",11,3,3.42,266,"0.7199","0.3245","0.3245" +"GO:0051234","establishment of localization",65,22,20.18,63,"0.3345","0.3269","0.3269" +"GO:0000165","MAPK cascade",4,2,1.24,71,"0.3666","0.3348","0.3348" +"GO:0010608","posttranscriptional regulation of gene e...",4,2,1.24,72,"0.3666","0.3348","0.3348" +"GO:0023014","signal transduction by protein phosphory...",4,2,1.24,73,"0.3666","0.3348","0.3348" +"GO:0042127","regulation of cell proliferation",4,1,1.24,293,"0.7768","0.3348","0.3348" +"GO:0043408","regulation of MAPK cascade",4,2,1.24,74,"0.3666","0.3348","0.3348" +"GO:0016043","cellular component organization",31,10,9.63,129,"0.5132","0.1223","0.3412" +"GO:0046903","secretion",7,1,2.17,427,"0.9291","0.3412","0.3412" +"GO:0001568","blood vessel development",3,1,0.93,208,"0.6742","0.3418","0.3418" +"GO:0001944","vasculature development",3,1,0.93,209,"0.6742","0.3418","0.3418" +"GO:0048514","blood vessel morphogenesis",3,1,0.93,210,"0.6742","0.3418","0.3418" +"GO:0072358","cardiovascular system development",3,1,0.93,211,"0.6742","0.3418","0.3418" +"GO:0003012","muscle system process",3,0,0.93,503,"1.0000","0.3418","0.3418" +"GO:0006457","protein folding",3,0,0.93,504,"1.0000","0.3418","0.3418" +"GO:0006936","muscle contraction",3,0,0.93,505,"1.0000","0.3418","0.3418" +"GO:0006937","regulation of muscle contraction",3,0,0.93,506,"1.0000","0.3418","0.3418" +"GO:0090257","regulation of muscle system process",3,0,0.93,507,"1.0000","0.3418","0.3418" +"GO:0022607","cellular component assembly",13,2,4.04,439,"0.9505","0.3419","0.3419" +"GO:0016310","phosphorylation",24,7,7.45,173,"0.6645","0.3485","0.3485" +"GO:0044267","cellular protein metabolic process",42,16,13.04,17,"0.1802","0.0974","0.3486" +"GO:0006887","exocytosis",3,1,0.93,212,"0.6742","0.3498","0.3498" +"GO:1902531","regulation of intracellular signal trans...",11,3,3.42,267,"0.7199","0.3599","0.3599" +"GO:0006897","endocytosis",8,1,2.48,442,"0.9519","0.3609","0.3609" +"GO:0003008","system process",10,1,3.11,454,"0.9779","0.3623","0.3623" +"GO:0071840","cellular component organization or bioge...",33,11,10.25,96,"0.4517","0.1374","0.3626" +"GO:0010562","positive regulation of phosphorus metabo...",4,0,1.24,508,"1.0000","0.3628","0.3628" +"GO:0042327","positive regulation of phosphorylation",4,0,1.24,509,"1.0000","0.3628","0.3628" +"GO:0045937","positive regulation of phosphate metabol...",4,0,1.24,510,"1.0000","0.3628","0.3628" +"GO:0032502","developmental process",30,10,9.32,97,"0.4609","0.3669","0.3669" +"GO:0051336","regulation of hydrolase activity",7,2,2.17,256,"0.6964","0.3699","0.3699" +"GO:1901700","response to oxygen-containing compound",7,2,2.17,257,"0.6964","0.3699","0.3699" +"GO:0044093","positive regulation of molecular functio...",7,0,2.17,511,"1.0000","0.3699","0.3699" +"GO:0006886","intracellular protein transport",5,2,1.55,123,"0.4944","0.3707","0.3707" +"GO:0022603","regulation of anatomical structure morph...",5,1,1.55,358,"0.8474","0.3728","0.3728" +"GO:0048666","neuron development",8,0,2.48,512,"1.0000","0.3746","0.3746" +"GO:0051049","regulation of transport",8,0,2.48,513,"1.0000","0.3746","0.3746" +"GO:0009611","response to wounding",4,2,1.24,75,"0.3666","0.3797","0.3797" +"GO:0009890","negative regulation of biosynthetic proc...",8,4,2.48,23,"0.2099","0.3798","0.3798" +"GO:0010558","negative regulation of macromolecule bio...",8,4,2.48,24,"0.2099","0.3798","0.3798" +"GO:0031327","negative regulation of cellular biosynth...",8,4,2.48,25,"0.2099","0.3798","0.3798" +"GO:2000113","negative regulation of cellular macromol...",8,4,2.48,26,"0.2099","0.3798","0.3798" +"GO:0009889","regulation of biosynthetic process",29,9,9,141,"0.5782","0.3888","0.3888" +"GO:0045184","establishment of protein localization",10,3,3.11,169,"0.6495","0.3919","0.3919" +"GO:0000226","microtubule cytoskeleton organization",4,1,1.24,294,"0.7768","0.3919","0.3919" +"GO:0048583","regulation of response to stimulus",18,3,5.59,446,"0.9569","0.3921","0.3921" +"GO:0043207","response to external biotic stimulus",3,1,0.93,213,"0.6742","0.4000","0.4000" +"GO:0051707","response to other organism",3,1,0.93,214,"0.6742","0.4000","0.4000" +"GO:0098542","defense response to other organism",3,1,0.93,215,"0.6742","0.4000","0.4000" +"GO:0006357","regulation of transcription by RNA polym...",8,3,2.48,107,"0.4758","0.4045","0.4045" +"GO:0006260","DNA replication",3,2,0.93,39,"0.2282","0.4086","0.4086" +"GO:0001101","response to acid chemical",4,1,1.24,295,"0.7768","0.4119","0.4119" +"GO:0006396","RNA processing",7,3,2.17,85,"0.3761","0.4131","0.4131" +"GO:0044089","positive regulation of cellular componen...",5,0,1.55,514,"1.0000","0.4150","0.4150" +"GO:0045664","regulation of neuron differentiation",5,0,1.55,515,"1.0000","0.4150","0.4150" +"GO:0050767","regulation of neurogenesis",5,0,1.55,516,"1.0000","0.4150","0.4150" +"GO:0051960","regulation of nervous system development",5,0,1.55,517,"1.0000","0.4150","0.4150" +"GO:0051179","localization",68,23,21.11,62,"0.3288","0.4160","0.4160" +"GO:0010638","positive regulation of organelle organiz...",6,1,1.86,387,"0.8959","0.4209","0.4209" +"GO:0010604","positive regulation of macromolecule met...",9,2,2.79,340,"0.8277","0.4212","0.4212" +"GO:0042493","response to drug",9,2,2.79,341,"0.8277","0.4212","0.4212" +"GO:0019637","organophosphate metabolic process",12,5,3.73,58,"0.3007","0.4241","0.4241" +"GO:0022008","neurogenesis",12,1,3.73,459,"0.9900","0.4241","0.4241" +"GO:0048699","generation of neurons",12,1,3.73,460,"0.9900","0.4241","0.4241" +"GO:0009166","nucleotide catabolic process",3,1,0.93,216,"0.6742","0.4351","0.4351" +"GO:0034404","nucleobase-containing small molecule bio...",3,1,0.93,217,"0.6742","0.4351","0.4351" +"GO:1901292","nucleoside phosphate catabolic process",3,1,0.93,218,"0.6742","0.4351","0.4351" +"GO:0044085","cellular component biogenesis",15,3,4.66,408,"0.8984","0.4393","0.4393" +"GO:0051641","cellular localization",22,6,6.83,269,"0.7357","0.4402","0.4402" +"GO:0006812","cation transport",21,7,6.52,109,"0.4937","0.4428","0.4428" +"GO:0007010","cytoskeleton organization",6,1,1.86,388,"0.8959","0.4463","0.4463" +"GO:0007017","microtubule-based process",6,1,1.86,389,"0.8959","0.4463","0.4463" +"GO:0051130","positive regulation of cellular componen...",10,1,3.11,455,"0.9779","0.4576","0.4576" +"GO:0019222","regulation of metabolic process",40,14,12.42,64,"0.3371","0.0975","0.4579" +"GO:0006397","mRNA processing",5,2,1.55,124,"0.4944","0.4591","0.4591" +"GO:0023052","signaling",43,11,13.35,373,"0.8532","0.4611","0.4611" +"GO:0033554","cellular response to stress",8,2,2.48,274,"0.7700","0.4616","0.4616" +"GO:0006091","generation of precursor metabolites and ...",3,1,0.93,219,"0.6742","0.4714","0.4714" +"GO:0035556","intracellular signal transduction",16,5,4.97,142,"0.5917","0.4716","0.4716" +"GO:0010556","regulation of macromolecule biosynthetic...",28,8,8.69,250,"0.6934","0.4742","0.4742" +"GO:0031326","regulation of cellular biosynthetic proc...",28,8,8.69,251,"0.6934","0.4742","0.4742" +"GO:2000112","regulation of cellular macromolecule bio...",28,8,8.69,252,"0.6934","0.4742","0.4742" +"GO:1901135","carbohydrate derivative metabolic proces...",7,3,2.17,86,"0.3761","0.4746","0.4746" +"GO:0019538","protein metabolic process",46,16,14.28,61,"0.3276","0.2051","0.4765" +"GO:0051094","positive regulation of developmental pro...",9,1,2.79,450,"0.9674","0.4795","0.4795" +"GO:0051240","positive regulation of multicellular org...",9,1,2.79,451,"0.9674","0.4795","0.4795" +"GO:0016192","vesicle-mediated transport",17,3,5.28,437,"0.9422","0.4845","0.4845" +"GO:0045595","regulation of cell differentiation",9,1,2.79,452,"0.9674","0.4850","0.4850" +"GO:0010038","response to metal ion",4,1,1.24,296,"0.7768","0.4851","0.4851" +"GO:0010243","response to organonitrogen compound",4,1,1.24,297,"0.7768","0.4851","0.4851" +"GO:0055080","cation homeostasis",4,1,1.24,298,"0.7768","0.4851","0.4851" +"GO:0098771","inorganic ion homeostasis",4,1,1.24,299,"0.7768","0.4851","0.4851" +"GO:1901698","response to nitrogen compound",4,1,1.24,300,"0.7768","0.4851","0.4851" +"GO:0031401","positive regulation of protein modificat...",4,0,1.24,518,"1.0000","0.4851","0.4851" +"GO:0032270","positive regulation of cellular protein ...",4,0,1.24,519,"1.0000","0.4851","0.4851" +"GO:0048729","tissue morphogenesis",4,0,1.24,520,"1.0000","0.4851","0.4851" +"GO:0051247","positive regulation of protein metabolic...",4,0,1.24,521,"1.0000","0.4851","0.4851" +"GO:0007154","cell communication",42,11,13.04,331,"0.8266","0.4900","0.4900" +"GO:0006813","potassium ion transport",4,1,1.24,301,"0.7768","0.4986","0.4986" +"GO:0044238","primary metabolic process",106,35,32.91,60,"0.3213","0.3311","0.5038" +"GO:0000122","negative regulation of transcription by ...",5,2,1.55,125,"0.4944","0.5048","0.5048" +"GO:0016197","endosomal transport",3,1,0.93,220,"0.6742","0.5087","0.5087" +"GO:0009966","regulation of signal transduction",15,3,4.66,409,"0.8984","0.5158","0.5158" +"GO:0010646","regulation of cell communication",15,3,4.66,410,"0.8984","0.5158","0.5158" +"GO:0023051","regulation of signaling",15,3,4.66,411,"0.8984","0.5158","0.5158" +"GO:0007165","signal transduction",41,11,12.73,327,"0.7967","0.5199","0.5199" +"GO:0007264","small GTPase mediated signal transductio...",5,0,1.55,522,"1.0000","0.5244","0.5244" +"GO:0007265","Ras protein signal transduction",5,0,1.55,523,"1.0000","0.5244","0.5244" +"GO:1901137","carbohydrate derivative biosynthetic pro...",4,2,1.24,76,"0.3666","0.5287","0.5287" +"GO:0002376","immune system process",9,2,2.79,342,"0.8277","0.5290","0.5290" +"GO:1901576","organic substance biosynthetic process",55,17,17.08,140,"0.5730","0.5316","0.5316" +"GO:0071704","organic substance metabolic process",111,37,34.47,56,"0.2763","0.3070","0.5317" +"GO:0032501","multicellular organismal process",28,9,8.69,131,"0.5254","0.5352","0.5352" +"GO:0031175","neuron projection development",7,0,2.17,524,"1.0000","0.5367","0.5367" +"GO:0003002","regionalization",3,1,0.93,221,"0.6742","0.5371","0.5371" +"GO:0007389","pattern specification process",3,1,0.93,222,"0.6742","0.5371","0.5371" +"GO:0048568","embryonic organ development",3,1,0.93,223,"0.6742","0.5371","0.5371" +"GO:0006412","translation",8,2,2.48,275,"0.7700","0.5449","0.5449" +"GO:0006518","peptide metabolic process",8,2,2.48,276,"0.7700","0.5449","0.5449" +"GO:0043043","peptide biosynthetic process",8,2,2.48,277,"0.7700","0.5449","0.5449" +"GO:0051704","multi-organism process",6,2,1.86,152,"0.6049","0.5460","0.5460" +"GO:0031324","negative regulation of cellular metaboli...",14,7,4.35,6,"0.1019","0.0358","0.5489" +"GO:0060255","regulation of macromolecule metabolic pr...",39,13,12.11,95,"0.4348","0.1280","0.5503" +"GO:1901564","organonitrogen compound metabolic proces...",59,19,18.32,102,"0.4725","0.3771","0.5513" +"GO:0043170","macromolecule metabolic process",90,31,27.95,28,"0.2238","0.2461","0.5515" +"GO:0051716","cellular response to stimulus",53,14,16.46,347,"0.8434","0.5551","0.5551" +"GO:0001667","ameboidal-type cell migration",3,0,0.93,525,"1.0000","0.5563","0.5563" +"GO:0022604","regulation of cell morphogenesis",3,0,0.93,526,"1.0000","0.5563","0.5563" +"GO:0030031","cell projection assembly",3,0,0.93,527,"1.0000","0.5563","0.5563" +"GO:0030155","regulation of cell adhesion",3,0,0.93,528,"1.0000","0.5563","0.5563" +"GO:0043085","positive regulation of catalytic activit...",3,0,0.93,529,"1.0000","0.5563","0.5563" +"GO:0060491","regulation of cell projection assembly",3,0,0.93,530,"1.0000","0.5563","0.5563" +"GO:0120031","plasma membrane bounded cell projection ...",3,0,0.93,531,"1.0000","0.5563","0.5563" +"GO:0120032","regulation of plasma membrane bounded ce...",3,0,0.93,532,"1.0000","0.5563","0.5563" +"GO:0006820","anion transport",7,2,2.17,258,"0.6964","0.5620","0.5620" +"GO:0009058","biosynthetic process",57,17,17.7,171,"0.6517","0.5657","0.5657" +"GO:0010035","response to inorganic substance",6,1,1.86,390,"0.8959","0.5665","0.5665" +"GO:0051241","negative regulation of multicellular org...",6,1,1.86,391,"0.8959","0.5665","0.5665" +"GO:0097435","supramolecular fiber organization",6,1,1.86,392,"0.8959","0.5665","0.5665" +"GO:0009887","animal organ morphogenesis",6,0,1.86,533,"1.0000","0.5665","0.5665" +"GO:0008610","lipid biosynthetic process",5,2,1.55,126,"0.4944","0.5666","0.5666" +"GO:0040007","growth",7,2,2.17,259,"0.6964","0.5726","0.5726" +"GO:0048589","developmental growth",7,2,2.17,260,"0.6964","0.5726","0.5726" +"GO:0051239","regulation of multicellular organismal p...",14,3,4.35,378,"0.8670","0.5750","0.5750" +"GO:0006508","proteolysis",6,2,1.86,153,"0.6049","0.5802","0.5802" +"GO:0009628","response to abiotic stimulus",6,1,1.86,393,"0.8959","0.5802","0.5802" +"GO:1902533","positive regulation of intracellular sig...",6,1,1.86,394,"0.8959","0.5802","0.5802" +"GO:0060284","regulation of cell development",6,0,1.86,534,"1.0000","0.5802","0.5802" +"GO:1901566","organonitrogen compound biosynthetic pro...",15,5,4.66,130,"0.5232","0.5818","0.5818" +"GO:0009653","anatomical structure morphogenesis",14,4,4.35,249,"0.6833","0.5827","0.5827" +"GO:0044237","cellular metabolic process",104,34,32.29,65,"0.3617","0.5790","0.5915" +"GO:0006814","sodium ion transport",3,1,0.93,224,"0.6742","0.5948","0.5948" +"GO:0007266","Rho protein signal transduction",4,0,1.24,535,"1.0000","0.5981","0.5981" +"GO:0035023","regulation of Rho protein signal transdu...",4,0,1.24,536,"1.0000","0.5981","0.5981" +"GO:0046578","regulation of Ras protein signal transdu...",4,0,1.24,537,"1.0000","0.5981","0.5981" +"GO:0051056","regulation of small GTPase mediated sign...",4,0,1.24,538,"1.0000","0.5981","0.5981" +"GO:0010629","negative regulation of gene expression",7,3,2.17,87,"0.3761","0.6002","0.6002" +"GO:0045934","negative regulation of nucleobase-contai...",7,3,2.17,88,"0.3761","0.6002","0.6002" +"GO:2000026","regulation of multicellular organismal d...",11,2,3.42,418,"0.9062","0.6047","0.6047" +"GO:0006468","protein phosphorylation",20,6,6.21,162,"0.6312","0.6050","0.6050" +"GO:0051046","regulation of secretion",4,0,1.24,539,"1.0000","0.6065","0.6065" +"GO:0034622","cellular protein-containing complex asse...",8,1,2.48,443,"0.9519","0.6085","0.6085" +"GO:0006950","response to stress",20,5,6.21,328,"0.8048","0.6089","0.6089" +"GO:0010941","regulation of cell death",5,1,1.55,359,"0.8474","0.6091","0.6091" +"GO:0035239","tube morphogenesis",5,1,1.55,360,"0.8474","0.6091","0.6091" +"GO:0035295","tube development",5,1,1.55,361,"0.8474","0.6091","0.6091" +"GO:0042981","regulation of apoptotic process",5,1,1.55,362,"0.8474","0.6091","0.6091" +"GO:0043067","regulation of programmed cell death",5,1,1.55,363,"0.8474","0.6091","0.6091" +"GO:0071702","organic substance transport",14,3,4.35,379,"0.8670","0.6117","0.6117" +"GO:0005996","monosaccharide metabolic process",3,1,0.93,225,"0.6742","0.6141","0.6141" +"GO:0007276","gamete generation",3,1,0.93,226,"0.6742","0.6141","0.6141" +"GO:0007281","germ cell development",3,1,0.93,227,"0.6742","0.6141","0.6141" +"GO:0007283","spermatogenesis",3,1,0.93,228,"0.6742","0.6141","0.6141" +"GO:0019318","hexose metabolic process",3,1,0.93,229,"0.6742","0.6141","0.6141" +"GO:0019953","sexual reproduction",3,1,0.93,230,"0.6742","0.6141","0.6141" +"GO:0022412","cellular process involved in reproductio...",3,1,0.93,231,"0.6742","0.6141","0.6141" +"GO:0044703","multi-organism reproductive process",3,1,0.93,232,"0.6742","0.6141","0.6141" +"GO:0045786","negative regulation of cell cycle",3,1,0.93,233,"0.6742","0.6141","0.6141" +"GO:0045931","positive regulation of mitotic cell cycl...",3,1,0.93,234,"0.6742","0.6141","0.6141" +"GO:0048232","male gamete generation",3,1,0.93,235,"0.6742","0.6141","0.6141" +"GO:0001764","neuron migration",3,0,0.93,540,"1.0000","0.6141","0.6141" +"GO:0002009","morphogenesis of an epithelium",3,0,0.93,541,"1.0000","0.6141","0.6141" +"GO:0008284","positive regulation of cell proliferatio...",3,0,0.93,542,"1.0000","0.6141","0.6141" +"GO:0030100","regulation of endocytosis",3,0,0.93,543,"1.0000","0.6141","0.6141" +"GO:0030838","positive regulation of actin filament po...",3,0,0.93,544,"1.0000","0.6141","0.6141" +"GO:0031334","positive regulation of protein complex a...",3,0,0.93,545,"1.0000","0.6141","0.6141" +"GO:0032273","positive regulation of protein polymeriz...",3,0,0.93,546,"1.0000","0.6141","0.6141" +"GO:0048598","embryonic morphogenesis",3,0,0.93,547,"1.0000","0.6141","0.6141" +"GO:0051495","positive regulation of cytoskeleton orga...",3,0,0.93,548,"1.0000","0.6141","0.6141" +"GO:0060429","epithelium development",3,0,0.93,549,"1.0000","0.6141","0.6141" +"GO:0060562","epithelial tube morphogenesis",3,0,0.93,550,"1.0000","0.6141","0.6141" +"GO:0060627","regulation of vesicle-mediated transport",3,0,0.93,551,"1.0000","0.6141","0.6141" +"GO:1902905","positive regulation of supramolecular fi...",3,0,0.93,552,"1.0000","0.6141","0.6141" +"GO:0032268","regulation of cellular protein metabolic...",11,5,3.42,41,"0.2291","0.0079","0.6146" +"GO:0016358","dendrite development",4,0,1.24,553,"1.0000","0.6177","0.6177" +"GO:0051258","protein polymerization",5,1,1.55,364,"0.8474","0.6192","0.6192" +"GO:0008654","phospholipid biosynthetic process",3,1,0.93,236,"0.6742","0.6238","0.6238" +"GO:0034654","nucleobase-containing compound biosynthe...",34,9,10.56,325,"0.7948","0.6260","0.6260" +"GO:0045892","negative regulation of transcription, DN...",6,2,1.86,154,"0.6049","0.6352","0.6352" +"GO:0051253","negative regulation of RNA metabolic pro...",6,2,1.86,155,"0.6049","0.6352","0.6352" +"GO:1902679","negative regulation of RNA biosynthetic ...",6,2,1.86,156,"0.6049","0.6352","0.6352" +"GO:1903507","negative regulation of nucleic acid-temp...",6,2,1.86,157,"0.6049","0.6352","0.6352" +"GO:0051270","regulation of cellular component movemen...",5,0,1.55,554,"1.0000","0.6367","0.6367" +"GO:0001934","positive regulation of protein phosphory...",3,0,0.93,555,"1.0000","0.6431","0.6431" +"GO:0044283","small molecule biosynthetic process",4,1,1.24,302,"0.7768","0.6456","0.6456" +"GO:0046434","organophosphate catabolic process",4,1,1.24,303,"0.7768","0.6456","0.6456" +"GO:0080090","regulation of primary metabolic process",38,12,11.8,132,"0.5395","0.1660","0.6475" +"GO:0006281","DNA repair",3,0,0.93,556,"1.0000","0.6527","0.6527" +"GO:0051246","regulation of protein metabolic process",13,5,4.04,79,"0.3755","0.0620","0.6535" +"GO:0017144","drug metabolic process",6,2,1.86,158,"0.6049","0.6558","0.6558" +"GO:0006259","DNA metabolic process",7,2,2.17,261,"0.6964","0.6597","0.6597" +"GO:0033043","regulation of organelle organization",7,1,2.17,428,"0.9291","0.6597","0.6597" +"GO:0009891","positive regulation of biosynthetic proc...",5,1,1.55,365,"0.8474","0.6690","0.6690" +"GO:0010557","positive regulation of macromolecule bio...",5,1,1.55,366,"0.8474","0.6690","0.6690" +"GO:0031328","positive regulation of cellular biosynth...",5,1,1.55,367,"0.8474","0.6690","0.6690" +"GO:0045935","positive regulation of nucleobase-contai...",5,1,1.55,368,"0.8474","0.6690","0.6690" +"GO:0018130","heterocycle biosynthetic process",36,10,11.18,271,"0.7424","0.6705","0.6705" +"GO:0019438","aromatic compound biosynthetic process",36,10,11.18,272,"0.7424","0.6705","0.6705" +"GO:1901362","organic cyclic compound biosynthetic pro...",36,10,11.18,273,"0.7424","0.6705","0.6705" +"GO:0006629","lipid metabolic process",11,4,3.42,100,"0.4619","0.6730","0.6730" +"GO:0007166","cell surface receptor signaling pathway",11,2,3.42,419,"0.9062","0.6780","0.6780" +"GO:0009607","response to biotic stimulus",4,1,1.24,304,"0.7768","0.6871","0.6871" +"GO:0031960","response to corticosteroid",3,1,0.93,237,"0.6742","0.6908","0.6908" +"GO:0043010","camera-type eye development",3,1,0.93,238,"0.6742","0.6908","0.6908" +"GO:0060041","retina development in camera-type eye",3,1,0.93,239,"0.6742","0.6908","0.6908" +"GO:0006520","cellular amino acid metabolic process",3,0,0.93,557,"1.0000","0.6908","0.6908" +"GO:0048592","eye morphogenesis",3,0,0.93,558,"1.0000","0.6908","0.6908" +"GO:0090596","sensory organ morphogenesis",3,0,0.93,559,"1.0000","0.6908","0.6908" +"GO:0044260","cellular macromolecule metabolic process",77,25,23.91,92,"0.4261","0.4728","0.6927" +"GO:0045596","negative regulation of cell differentiat...",4,1,1.24,305,"0.7768","0.6980","0.6980" +"GO:0051093","negative regulation of developmental pro...",4,1,1.24,306,"0.7768","0.6980","0.6980" +"GO:0009612","response to mechanical stimulus",4,0,1.24,560,"1.0000","0.6980","0.6980" +"GO:0009791","post-embryonic development",4,0,1.24,561,"1.0000","0.6980","0.6980" +"GO:0030334","regulation of cell migration",4,0,1.24,562,"1.0000","0.6980","0.6980" +"GO:0040012","regulation of locomotion",4,0,1.24,563,"1.0000","0.6980","0.6980" +"GO:2000145","regulation of cell motility",4,0,1.24,564,"1.0000","0.6980","0.6980" +"GO:0034655","nucleobase-containing compound catabolic...",5,1,1.55,369,"0.8474","0.7132","0.7132" +"GO:0030029","actin filament-based process",5,0,1.55,565,"1.0000","0.7180","0.7180" +"GO:0032970","regulation of actin filament-based proce...",5,0,1.55,566,"1.0000","0.7180","0.7180" +"GO:0048518","positive regulation of biological proces...",25,4,7.76,456,"0.9801","0.7196","0.7196" +"GO:0050896","response to stimulus",66,16,20.49,438,"0.9457","0.7198","0.7198" +"GO:0009605","response to external stimulus",11,1,3.42,457,"0.9851","0.7198","0.7198" +"GO:0051128","regulation of cellular component organiz...",13,2,4.04,440,"0.9505","0.7221","0.7221" +"GO:0050793","regulation of developmental process",12,2,3.73,433,"0.9316","0.7230","0.7230" +"GO:0009892","negative regulation of metabolic process",15,7,4.66,10,"0.1438","0.0782","0.7252" +"GO:0042221","response to chemical",22,7,6.83,134,"0.5539","0.7258","0.7258" +"GO:0008283","cell proliferation",7,1,2.17,429,"0.9291","0.7283","0.7283" +"GO:0050877","nervous system process",7,0,2.17,567,"1.0000","0.7283","0.7283" +"GO:0031503","protein-containing complex localization",3,1,0.93,240,"0.6742","0.7283","0.7283" +"GO:0090407","organophosphate biosynthetic process",5,2,1.55,127,"0.4944","0.7396","0.7396" +"GO:0015711","organic anion transport",4,0,1.24,568,"1.0000","0.7410","0.7410" +"GO:0098656","anion transmembrane transport",4,0,1.24,569,"1.0000","0.7410","0.7410" +"GO:0071705","nitrogen compound transport",12,3,3.73,322,"0.7790","0.7418","0.7418" +"GO:0050794","regulation of cellular process",82,23,25.46,330,"0.8139","0.6029","0.7420" +"GO:0051171","regulation of nitrogen compound metaboli...",37,11,11.49,165,"0.6445","0.2123","0.7449" +"GO:0055114","oxidation-reduction process",12,1,3.73,461,"0.9900","0.7511","0.7511" +"GO:0006644","phospholipid metabolic process",5,2,1.55,128,"0.4944","0.7514","0.7514" +"GO:0030163","protein catabolic process",3,1,0.93,241,"0.6742","0.7556","0.7556" +"GO:0031099","regeneration",3,1,0.93,242,"0.6742","0.7556","0.7556" +"GO:0010720","positive regulation of cell development",3,0,0.93,570,"1.0000","0.7556","0.7556" +"GO:0045666","positive regulation of neuron differenti...",3,0,0.93,571,"1.0000","0.7556","0.7556" +"GO:0050769","positive regulation of neurogenesis",3,0,0.93,572,"1.0000","0.7556","0.7556" +"GO:0051962","positive regulation of nervous system de...",3,0,0.93,573,"1.0000","0.7556","0.7556" +"GO:0055065","metal ion homeostasis",3,0,0.93,574,"1.0000","0.7556","0.7556" +"GO:0055074","calcium ion homeostasis",3,0,0.93,575,"1.0000","0.7556","0.7556" +"GO:0061061","muscle structure development",3,0,0.93,576,"1.0000","0.7556","0.7556" +"GO:0072507","divalent inorganic cation homeostasis",3,0,0.93,577,"1.0000","0.7556","0.7556" +"GO:0043604","amide biosynthetic process",9,2,2.79,343,"0.8277","0.7571","0.7571" +"GO:0019439","aromatic compound catabolic process",6,1,1.86,395,"0.8959","0.7621","0.7621" +"GO:0044270","cellular nitrogen compound catabolic pro...",6,1,1.86,396,"0.8959","0.7621","0.7621" +"GO:0046700","heterocycle catabolic process",6,1,1.86,397,"0.8959","0.7621","0.7621" +"GO:1901361","organic cyclic compound catabolic proces...",6,1,1.86,398,"0.8959","0.7621","0.7621" +"GO:0044249","cellular biosynthetic process",52,15,16.15,263,"0.7111","0.7623","0.7623" +"GO:1901565","organonitrogen compound catabolic proces...",7,1,2.17,430,"0.9291","0.7623","0.7623" +"GO:0048863","stem cell differentiation",3,1,0.93,243,"0.6742","0.7646","0.7646" +"GO:0010721","negative regulation of cell development",3,0,0.93,578,"1.0000","0.7646","0.7646" +"GO:0072089","stem cell proliferation",3,0,0.93,579,"1.0000","0.7646","0.7646" +"GO:0048646","anatomical structure formation involved ...",7,1,2.17,431,"0.9291","0.7702","0.7702" +"GO:0009987","cellular process",154,48,47.82,133,"0.5436","0.5634","0.7746" +"GO:0000375","RNA splicing, via transesterification re...",4,1,1.24,307,"0.7768","0.7774","0.7774" +"GO:0000377","RNA splicing, via transesterification re...",4,1,1.24,308,"0.7768","0.7774","0.7774" +"GO:0000398","mRNA splicing, via spliceosome",4,1,1.24,309,"0.7768","0.7774","0.7774" +"GO:0008380","RNA splicing",4,1,1.24,310,"0.7768","0.7774","0.7774" +"GO:0010467","gene expression",42,11,13.04,332,"0.8266","0.7849","0.7849" +"GO:0034645","cellular macromolecule biosynthetic proc...",42,11,13.04,333,"0.8266","0.7849","0.7849" +"GO:0044087","regulation of cellular component biogene...",9,1,2.79,453,"0.9674","0.7881","0.7881" +"GO:0030030","cell projection organization",8,0,2.48,580,"1.0000","0.7931","0.7931" +"GO:0120036","plasma membrane bounded cell projection ...",8,0,2.48,581,"1.0000","0.7931","0.7931" +"GO:0044281","small molecule metabolic process",15,3,4.66,412,"0.8984","0.7966","0.7966" +"GO:0061564","axon development",5,0,1.55,582,"1.0000","0.7993","0.7993" +"GO:0010468","regulation of gene expression",27,7,8.38,326,"0.7965","0.8079","0.8079" +"GO:0019219","regulation of nucleobase-containing comp...",27,6,8.38,414,"0.9030","0.8079","0.8079" +"GO:0010033","response to organic substance",13,4,4.04,161,"0.6168","0.8135","0.8135" +"GO:0006979","response to oxidative stress",7,1,2.17,432,"0.9291","0.8138","0.8138" +"GO:0009059","macromolecule biosynthetic process",44,12,13.66,323,"0.7829","0.8169","0.8169" +"GO:0009888","tissue development",9,2,2.79,344,"0.8277","0.8178","0.8178" +"GO:0090068","positive regulation of cell cycle proces...",3,1,0.93,244,"0.6742","0.8245","0.8245" +"GO:1903047","mitotic cell cycle process",3,1,0.93,245,"0.6742","0.8245","0.8245" +"GO:0097164","ammonium ion metabolic process",5,1,1.55,370,"0.8474","0.8253","0.8253" +"GO:0031323","regulation of cellular metabolic process",36,11,11.18,144,"0.5990","0.2507","0.8362" +"GO:0048522","positive regulation of cellular process",22,3,6.83,458,"0.9876","0.8386","0.8386" +"GO:0006807","nitrogen compound metabolic process",98,31,30.43,108,"0.4909","0.5433","0.8436" +"GO:0006139","nucleobase-containing compound metabolic...",46,14,14.28,159,"0.6057","0.8458","0.8458" +"GO:0000902","cell morphogenesis",6,1,1.86,399,"0.8959","0.8460","0.8460" +"GO:0006915","apoptotic process",6,1,1.86,400,"0.8959","0.8460","0.8460" +"GO:0008219","cell death",6,1,1.86,401,"0.8959","0.8460","0.8460" +"GO:0012501","programmed cell death",6,1,1.86,402,"0.8959","0.8460","0.8460" +"GO:0032989","cellular component morphogenesis",6,1,1.86,403,"0.8959","0.8460","0.8460" +"GO:0006351","transcription, DNA-templated",29,7,9,374,"0.8607","0.8466","0.8466" +"GO:0032774","RNA biosynthetic process",29,7,9,375,"0.8607","0.8466","0.8466" +"GO:0097659","nucleic acid-templated transcription",29,7,9,376,"0.8607","0.8466","0.8466" +"GO:0006082","organic acid metabolic process",4,0,1.24,583,"1.0000","0.8494","0.8494" +"GO:0019752","carboxylic acid metabolic process",4,0,1.24,584,"1.0000","0.8494","0.8494" +"GO:0043436","oxoacid metabolic process",4,0,1.24,585,"1.0000","0.8494","0.8494" +"GO:0006355","regulation of transcription, DNA-templat...",24,5,7.45,422,"0.9205","0.8534","0.8534" +"GO:1903506","regulation of nucleic acid-templated tra...",24,5,7.45,423,"0.9205","0.8534","0.8534" +"GO:2001141","regulation of RNA biosynthetic process",24,5,7.45,424,"0.9205","0.8534","0.8534" +"GO:0051668","localization within membrane",3,0,0.93,586,"1.0000","0.8561","0.8561" +"GO:0032879","regulation of localization",12,1,3.73,462,"0.9900","0.8620","0.8620" +"GO:0010605","negative regulation of macromolecule met...",13,6,4.04,18,"0.1811","0.0620","0.8621" +"GO:0051172","negative regulation of nitrogen compound...",13,6,4.04,19,"0.1811","0.0620","0.8621" +"GO:0031929","TOR signaling",4,0,1.24,587,"1.0000","0.8753","0.8753" +"GO:0065007","biological regulation",88,24,27.32,381,"0.8730","0.7625","0.8794" +"GO:0000003","reproduction",8,1,2.48,444,"0.9519","0.8825","0.8825" +"GO:0022414","reproductive process",8,1,2.48,445,"0.9519","0.8825","0.8825" +"GO:0043603","cellular amide metabolic process",11,2,3.42,420,"0.9062","0.8837","0.8837" +"GO:0009894","regulation of catabolic process",3,1,0.93,246,"0.6742","0.8921","0.8921" +"GO:0006665","sphingolipid metabolic process",3,0,0.93,588,"1.0000","0.8921","0.8921" +"GO:0016042","lipid catabolic process",3,0,0.93,589,"1.0000","0.8921","0.8921" +"GO:0044242","cellular lipid catabolic process",3,0,0.93,590,"1.0000","0.8921","0.8921" +"GO:0006725","cellular aromatic compound metabolic pro...",50,15,15.53,163,"0.6352","0.8952","0.8952" +"GO:1901360","organic cyclic compound metabolic proces...",50,15,15.53,164,"0.6352","0.8952","0.8952" +"GO:0000278","mitotic cell cycle",4,1,1.24,311,"0.7768","0.8954","0.8954" +"GO:0007346","regulation of mitotic cell cycle",4,1,1.24,312,"0.7768","0.8954","0.8954" +"GO:0010628","positive regulation of gene expression",4,1,1.24,313,"0.7768","0.8954","0.8954" +"GO:0045787","positive regulation of cell cycle",4,1,1.24,314,"0.7768","0.8954","0.8954" +"GO:0045893","positive regulation of transcription, DN...",4,1,1.24,315,"0.7768","0.8954","0.8954" +"GO:0045944","positive regulation of transcription by ...",4,1,1.24,316,"0.7768","0.8954","0.8954" +"GO:0051254","positive regulation of RNA metabolic pro...",4,1,1.24,317,"0.7768","0.8954","0.8954" +"GO:1902680","positive regulation of RNA biosynthetic ...",4,1,1.24,318,"0.7768","0.8954","0.8954" +"GO:1903508","positive regulation of nucleic acid-temp...",4,1,1.24,319,"0.7768","0.8954","0.8954" +"GO:0007015","actin filament organization",4,0,1.24,591,"1.0000","0.8954","0.8954" +"GO:0007409","axonogenesis",4,0,1.24,592,"1.0000","0.8954","0.8954" +"GO:0008064","regulation of actin polymerization or de...",4,0,1.24,593,"1.0000","0.8954","0.8954" +"GO:0008154","actin polymerization or depolymerization",4,0,1.24,594,"1.0000","0.8954","0.8954" +"GO:0030036","actin cytoskeleton organization",4,0,1.24,595,"1.0000","0.8954","0.8954" +"GO:0030041","actin filament polymerization",4,0,1.24,596,"1.0000","0.8954","0.8954" +"GO:0030832","regulation of actin filament length",4,0,1.24,597,"1.0000","0.8954","0.8954" +"GO:0030833","regulation of actin filament polymerizat...",4,0,1.24,598,"1.0000","0.8954","0.8954" +"GO:0032271","regulation of protein polymerization",4,0,1.24,599,"1.0000","0.8954","0.8954" +"GO:0032535","regulation of cellular component size",4,0,1.24,600,"1.0000","0.8954","0.8954" +"GO:0032956","regulation of actin cytoskeleton organiz...",4,0,1.24,601,"1.0000","0.8954","0.8954" +"GO:0032990","cell part morphogenesis",4,0,1.24,602,"1.0000","0.8954","0.8954" +"GO:0043254","regulation of protein complex assembly",4,0,1.24,603,"1.0000","0.8954","0.8954" +"GO:0048667","cell morphogenesis involved in neuron di...",4,0,1.24,604,"1.0000","0.8954","0.8954" +"GO:0048812","neuron projection morphogenesis",4,0,1.24,605,"1.0000","0.8954","0.8954" +"GO:0048858","cell projection morphogenesis",4,0,1.24,606,"1.0000","0.8954","0.8954" +"GO:0051493","regulation of cytoskeleton organization",4,0,1.24,607,"1.0000","0.8954","0.8954" +"GO:0090066","regulation of anatomical structure size",4,0,1.24,608,"1.0000","0.8954","0.8954" +"GO:0110053","regulation of actin filament organizatio...",4,0,1.24,609,"1.0000","0.8954","0.8954" +"GO:0120039","plasma membrane bounded cell projection ...",4,0,1.24,610,"1.0000","0.8954","0.8954" +"GO:1902903","regulation of supramolecular fiber organ...",4,0,1.24,611,"1.0000","0.8954","0.8954" +"GO:0006928","movement of cell or subcellular componen...",7,0,2.17,612,"1.0000","0.8969","0.8969" +"GO:1901575","organic substance catabolic process",12,2,3.73,434,"0.9316","0.8981","0.8981" +"GO:0044271","cellular nitrogen compound biosynthetic ...",45,12,13.97,329,"0.8134","0.9078","0.9078" +"GO:0044248","cellular catabolic process",13,3,4.04,335,"0.8276","0.9093","0.9093" +"GO:0003006","developmental process involved in reprod...",6,1,1.86,404,"0.8959","0.9113","0.9113" +"GO:0034641","cellular nitrogen compound metabolic pro...",59,18,18.32,146,"0.6028","0.9123","0.9123" +"GO:0007049","cell cycle",10,3,3.11,170,"0.6495","0.9179","0.9179" +"GO:0050789","regulation of biological process",86,23,26.7,407,"0.8961","0.8145","0.9216" +"GO:0000904","cell morphogenesis involved in different...",5,0,1.55,613,"1.0000","0.9259","0.9259" +"GO:0016477","cell migration",5,0,1.55,614,"1.0000","0.9259","0.9259" +"GO:0040011","locomotion",5,0,1.55,615,"1.0000","0.9259","0.9259" +"GO:0048870","cell motility",5,0,1.55,616,"1.0000","0.9259","0.9259" +"GO:0051674","localization of cell",5,0,1.55,617,"1.0000","0.9259","0.9259" +"GO:0009056","catabolic process",15,3,4.66,413,"0.8984","0.9273","0.9273" +"GO:0051640","organelle localization",5,1,1.55,371,"0.8474","0.9274","0.9274" +"GO:0008152","metabolic process",130,40,40.37,145,"0.6027","0.7910","0.9292" +"GO:0048523","negative regulation of cellular process",20,8,6.21,42,"0.2520","0.3804","0.9292" +"GO:0010564","regulation of cell cycle process",4,1,1.24,320,"0.7768","0.9295","0.9295" +"GO:0016070","RNA metabolic process",35,9,10.87,334,"0.8268","0.9313","0.9313" +"GO:0044255","cellular lipid metabolic process",9,2,2.79,345,"0.8277","0.9360","0.9360" +"GO:0046483","heterocycle metabolic process",49,15,15.21,143,"0.5942","0.9378","0.9378" +"GO:0090304","nucleic acid metabolic process",42,12,13.04,264,"0.7126","0.9397","0.9397" +"GO:0006650","glycerophospholipid metabolic process",3,1,0.93,247,"0.6742","0.9405","0.9405" +"GO:0046486","glycerolipid metabolic process",3,1,0.93,248,"0.6742","0.9405","0.9405" +"GO:0007611","learning or memory",3,0,0.93,618,"1.0000","0.9405","0.9405" +"GO:0050890","cognition",3,0,0.93,619,"1.0000","0.9405","0.9405" +"GO:0045165","cell fate commitment",4,0,1.24,620,"1.0000","0.9405","0.9405" +"GO:0051726","regulation of cell cycle",7,2,2.17,262,"0.6964","0.9426","0.9426" +"GO:0005975","carbohydrate metabolic process",6,1,1.86,405,"0.8959","0.9438","0.9438" +"GO:0022402","cell cycle process",6,1,1.86,406,"0.8959","0.9508","0.9508" +"GO:0051252","regulation of RNA metabolic process",25,5,7.76,436,"0.9378","0.9529","0.9529" +"GO:0006935","chemotaxis",3,0,0.93,621,"1.0000","0.9552","0.9552" +"GO:0042330","taxis",3,0,0.93,622,"1.0000","0.9552","0.9552" +"GO:0051129","negative regulation of cellular componen...",3,0,0.93,623,"1.0000","0.9552","0.9552" +"GO:0044265","cellular macromolecule catabolic process",4,1,1.24,321,"0.7768","0.9587","0.9587" +"GO:0006643","membrane lipid metabolic process",4,0,1.24,624,"1.0000","0.9717","0.9717" +"GO:0051276","chromosome organization",7,4,2.17,9,"0.1364","0.1741","0.9745" +"GO:0009057","macromolecule catabolic process",5,1,1.55,372,"0.8474","0.9789","0.9789" +"GO:0007186","G protein-coupled receptor signaling pat...",12,2,3.73,435,"0.9316","0.9967","0.9967" +"GO:0048519","negative regulation of biological proces...",22,8,6.83,66,"0.3645","0.3894","0.9973" +"GO:0051186","cofactor metabolic process",3,0,0.93,625,"1.0000","0.9980","0.9980" +"GO:0044262","cellular carbohydrate metabolic process",3,0,0.93,626,"1.0000","0.9989","0.9989" +"GO:0008150","biological_process",219,68,68,627,"1.0000","1.0000","1.0000" +"GO:0051248","negative regulation of protein metabolic...",8,4,2.48,27,"0.2099","0.0068","1.0000" diff --git a/GO_enrichment_microbiome_output/contrast_laying_nonlaying_downregulated.csv b/GO_enrichment_microbiome_output/contrast_laying_nonlaying_downregulated.csv index 97703bb..abf7a4d 100644 --- a/GO_enrichment_microbiome_output/contrast_laying_nonlaying_downregulated.csv +++ b/GO_enrichment_microbiome_output/contrast_laying_nonlaying_downregulated.csv @@ -4,3 +4,561 @@ "GO:0006259","DNA metabolic process",6,3,1.92,73,"0.292","0.0243","0.0243" "GO:0019693","ribose phosphate metabolic process",4,3,1.28,5,"0.098","0.0309","0.0309" "GO:0006753","nucleoside phosphate metabolic process",6,3,1.92,74,"0.292","0.0379","0.0379" +"GO:0009117","nucleotide metabolic process",6,3,1.92,75,"0.292","0.0379","0.0379" +"GO:0090407","organophosphate biosynthetic process",6,4,1.92,4,"0.085","0.0379","0.0379" +"GO:0048646","anatomical structure formation involved ...",7,4,2.24,10,"0.150","0.0438","0.0438" +"GO:0055086","nucleobase-containing small molecule met...",8,4,2.56,17,"0.229","0.0479","0.0479" +"GO:0006725","cellular aromatic compound metabolic pro...",49,14,15.7,319,"0.778","0.0546","0.0546" +"GO:0046483","heterocycle metabolic process",49,14,15.7,320,"0.778","0.0546","0.0546" +"GO:0001934","positive regulation of protein phosphory...",4,2,1.28,92,"0.384","0.0628","0.0628" +"GO:0007167","enzyme linked receptor protein signaling...",4,3,1.28,6,"0.098","0.0628","0.0628" +"GO:0033674","positive regulation of kinase activity",4,2,1.28,93,"0.384","0.0628","0.0628" +"GO:0042327","positive regulation of phosphorylation",4,2,1.28,94,"0.384","0.0628","0.0628" +"GO:0045860","positive regulation of protein kinase ac...",4,2,1.28,95,"0.384","0.0628","0.0628" +"GO:0048878","chemical homeostasis",4,3,1.28,7,"0.098","0.0628","0.0628" +"GO:0051347","positive regulation of transferase activ...",4,2,1.28,96,"0.384","0.0628","0.0628" +"GO:0097435","supramolecular fiber organization",4,2,1.28,97,"0.384","0.0628","0.0628" +"GO:0006139","nucleobase-containing compound metabolic...",48,14,15.38,317,"0.744","0.0638","0.0638" +"GO:0006081","cellular aldehyde metabolic process",3,2,0.96,22,"0.241","0.0651","0.0651" +"GO:0019637","organophosphate metabolic process",12,5,3.84,89,"0.328","0.0684","0.0684" +"GO:1901360","organic cyclic compound metabolic proces...",51,14,16.34,381,"0.837","0.0701","0.0701" +"GO:0006974","cellular response to DNA damage stimulus",7,3,2.24,122,"0.399","0.0710","0.0710" +"GO:0034641","cellular nitrogen compound metabolic pro...",58,16,18.58,389,"0.847","0.0743","0.0743" +"GO:1901701","cellular response to oxygen-containing c...",4,2,1.28,98,"0.384","0.0787","0.0787" +"GO:0006814","sodium ion transport",3,2,0.96,23,"0.241","0.0852","0.0852" +"GO:0006281","DNA repair",4,1,1.28,326,"0.790","0.0859","0.0859" +"GO:0044249","cellular biosynthetic process",50,13,16.02,413,"0.891","0.0987","0.0987" +"GO:0006732","coenzyme metabolic process",3,2,0.96,24,"0.241","0.1013","0.1013" +"GO:0055082","cellular chemical homeostasis",3,2,0.96,25,"0.241","0.1013","0.1013" +"GO:0016310","phosphorylation",22,10,7.05,8,"0.119","0.1107","0.1107" +"GO:0009165","nucleotide biosynthetic process",4,2,1.28,99,"0.384","0.1153","0.1153" +"GO:1901293","nucleoside phosphate biosynthetic proces...",4,2,1.28,100,"0.384","0.1153","0.1153" +"GO:0031401","positive regulation of protein modificat...",6,3,1.92,76,"0.292","0.1179","0.1179" +"GO:0032270","positive regulation of cellular protein ...",6,3,1.92,77,"0.292","0.1179","0.1179" +"GO:0043549","regulation of kinase activity",6,3,1.92,78,"0.292","0.1179","0.1179" +"GO:0044093","positive regulation of molecular functio...",6,3,1.92,79,"0.292","0.1179","0.1179" +"GO:0045859","regulation of protein kinase activity",6,3,1.92,80,"0.292","0.1179","0.1179" +"GO:0051247","positive regulation of protein metabolic...",6,3,1.92,81,"0.292","0.1179","0.1179" +"GO:0051338","regulation of transferase activity",6,3,1.92,82,"0.292","0.1179","0.1179" +"GO:0006807","nitrogen compound metabolic process",94,29,30.12,217,"0.685","0.1201","0.1201" +"GO:0010256","endomembrane system organization",3,2,0.96,26,"0.241","0.1210","0.1210" +"GO:0006457","protein folding",3,2,0.96,27,"0.241","0.1252","0.1252" +"GO:0006955","immune response",3,2,0.96,28,"0.241","0.1267","0.1267" +"GO:0007015","actin filament organization",3,1,0.96,219,"0.688","0.1267","0.1267" +"GO:0007178","transmembrane receptor protein serine/th...",3,2,0.96,29,"0.241","0.1267","0.1267" +"GO:0008064","regulation of actin polymerization or de...",3,1,0.96,220,"0.688","0.1267","0.1267" +"GO:0008154","actin polymerization or depolymerization",3,1,0.96,221,"0.688","0.1267","0.1267" +"GO:0030041","actin filament polymerization",3,1,0.96,222,"0.688","0.1267","0.1267" +"GO:0030832","regulation of actin filament length",3,1,0.96,223,"0.688","0.1267","0.1267" +"GO:0030833","regulation of actin filament polymerizat...",3,1,0.96,224,"0.688","0.1267","0.1267" +"GO:0030838","positive regulation of actin filament po...",3,1,0.96,225,"0.688","0.1267","0.1267" +"GO:0031334","positive regulation of protein complex a...",3,1,0.96,226,"0.688","0.1267","0.1267" +"GO:0032147","activation of protein kinase activity",3,2,0.96,30,"0.241","0.1267","0.1267" +"GO:0032271","regulation of protein polymerization",3,1,0.96,227,"0.688","0.1267","0.1267" +"GO:0032273","positive regulation of protein polymeriz...",3,1,0.96,228,"0.688","0.1267","0.1267" +"GO:0032535","regulation of cellular component size",3,1,0.96,229,"0.688","0.1267","0.1267" +"GO:0032880","regulation of protein localization",3,1,0.96,230,"0.688","0.1267","0.1267" +"GO:0032956","regulation of actin cytoskeleton organiz...",3,1,0.96,231,"0.688","0.1267","0.1267" +"GO:0032970","regulation of actin filament-based proce...",3,1,0.96,232,"0.688","0.1267","0.1267" +"GO:0043254","regulation of protein complex assembly",3,1,0.96,233,"0.688","0.1267","0.1267" +"GO:0044262","cellular carbohydrate metabolic process",3,2,0.96,31,"0.241","0.1267","0.1267" +"GO:0050801","ion homeostasis",3,2,0.96,32,"0.241","0.1267","0.1267" +"GO:0051258","protein polymerization",3,1,0.96,234,"0.688","0.1267","0.1267" +"GO:0051493","regulation of cytoskeleton organization",3,1,0.96,235,"0.688","0.1267","0.1267" +"GO:0051495","positive regulation of cytoskeleton orga...",3,1,0.96,236,"0.688","0.1267","0.1267" +"GO:0055080","cation homeostasis",3,2,0.96,33,"0.241","0.1267","0.1267" +"GO:0090066","regulation of anatomical structure size",3,1,0.96,237,"0.688","0.1267","0.1267" +"GO:0098771","inorganic ion homeostasis",3,2,0.96,34,"0.241","0.1267","0.1267" +"GO:0110053","regulation of actin filament organizatio...",3,1,0.96,238,"0.688","0.1267","0.1267" +"GO:1902903","regulation of supramolecular fiber organ...",3,1,0.96,239,"0.688","0.1267","0.1267" +"GO:1902905","positive regulation of supramolecular fi...",3,1,0.96,240,"0.688","0.1267","0.1267" +"GO:0006950","response to stress",16,7,5.13,16,"0.219","0.1282","0.1282" +"GO:0044271","cellular nitrogen compound biosynthetic ...",43,9,13.78,482,"0.977","0.1334","0.1334" +"GO:0006163","purine nucleotide metabolic process",3,2,0.96,35,"0.241","0.1387","0.1387" +"GO:0006164","purine nucleotide biosynthetic process",3,2,0.96,36,"0.241","0.1387","0.1387" +"GO:0006754","ATP biosynthetic process",3,2,0.96,37,"0.241","0.1387","0.1387" +"GO:0009123","nucleoside monophosphate metabolic proce...",3,2,0.96,38,"0.241","0.1387","0.1387" +"GO:0009124","nucleoside monophosphate biosynthetic pr...",3,2,0.96,39,"0.241","0.1387","0.1387" +"GO:0009126","purine nucleoside monophosphate metaboli...",3,2,0.96,40,"0.241","0.1387","0.1387" +"GO:0009127","purine nucleoside monophosphate biosynth...",3,2,0.96,41,"0.241","0.1387","0.1387" +"GO:0009141","nucleoside triphosphate metabolic proces...",3,2,0.96,42,"0.241","0.1387","0.1387" +"GO:0009142","nucleoside triphosphate biosynthetic pro...",3,2,0.96,43,"0.241","0.1387","0.1387" +"GO:0009144","purine nucleoside triphosphate metabolic...",3,2,0.96,44,"0.241","0.1387","0.1387" +"GO:0009145","purine nucleoside triphosphate biosynthe...",3,2,0.96,45,"0.241","0.1387","0.1387" +"GO:0009150","purine ribonucleotide metabolic process",3,2,0.96,46,"0.241","0.1387","0.1387" +"GO:0009152","purine ribonucleotide biosynthetic proce...",3,2,0.96,47,"0.241","0.1387","0.1387" +"GO:0009156","ribonucleoside monophosphate biosyntheti...",3,2,0.96,48,"0.241","0.1387","0.1387" +"GO:0009161","ribonucleoside monophosphate metabolic p...",3,2,0.96,49,"0.241","0.1387","0.1387" +"GO:0009167","purine ribonucleoside monophosphate meta...",3,2,0.96,50,"0.241","0.1387","0.1387" +"GO:0009168","purine ribonucleoside monophosphate bios...",3,2,0.96,51,"0.241","0.1387","0.1387" +"GO:0009199","ribonucleoside triphosphate metabolic pr...",3,2,0.96,52,"0.241","0.1387","0.1387" +"GO:0009201","ribonucleoside triphosphate biosynthetic...",3,2,0.96,53,"0.241","0.1387","0.1387" +"GO:0009205","purine ribonucleoside triphosphate metab...",3,2,0.96,54,"0.241","0.1387","0.1387" +"GO:0009206","purine ribonucleoside triphosphate biosy...",3,2,0.96,55,"0.241","0.1387","0.1387" +"GO:0009259","ribonucleotide metabolic process",3,2,0.96,56,"0.241","0.1387","0.1387" +"GO:0009260","ribonucleotide biosynthetic process",3,2,0.96,57,"0.241","0.1387","0.1387" +"GO:0046034","ATP metabolic process",3,2,0.96,58,"0.241","0.1387","0.1387" +"GO:0046390","ribose phosphate biosynthetic process",3,2,0.96,59,"0.241","0.1387","0.1387" +"GO:0072522","purine-containing compound biosynthetic ...",3,2,0.96,60,"0.241","0.1387","0.1387" +"GO:1901576","organic substance biosynthetic process",51,13,16.34,436,"0.910","0.1401","0.1401" +"GO:1901362","organic cyclic compound biosynthetic pro...",39,7,12.5,492,"0.991","0.1456","0.1456" +"GO:0001894","tissue homeostasis",3,2,0.96,61,"0.241","0.1483","0.1483" +"GO:0043010","camera-type eye development",3,2,0.96,62,"0.241","0.1483","0.1483" +"GO:0048871","multicellular organismal homeostasis",3,2,0.96,63,"0.241","0.1483","0.1483" +"GO:0060041","retina development in camera-type eye",3,2,0.96,64,"0.241","0.1483","0.1483" +"GO:0060249","anatomical structure homeostasis",3,2,0.96,65,"0.241","0.1483","0.1483" +"GO:0044238","primary metabolic process",114,37,36.52,148,"0.504","0.1498","0.1498" +"GO:0042592","homeostatic process",12,7,3.84,3,"0.049","0.1504","0.1504" +"GO:0018130","heterocycle biosynthetic process",37,7,11.85,488,"0.984","0.1528","0.1528" +"GO:0019438","aromatic compound biosynthetic process",37,7,11.85,489,"0.984","0.1528","0.1528" +"GO:0001932","regulation of protein phosphorylation",8,4,2.56,18,"0.229","0.1587","0.1587" +"GO:0042325","regulation of phosphorylation",8,4,2.56,19,"0.229","0.1587","0.1587" +"GO:0034654","nucleobase-containing compound biosynthe...",36,7,11.53,483,"0.979","0.1751","0.1751" +"GO:0007005","mitochondrion organization",3,2,0.96,66,"0.241","0.1915","0.1915" +"GO:0048598","embryonic morphogenesis",3,1,0.96,241,"0.688","0.1935","0.1935" +"GO:0048729","tissue morphogenesis",3,1,0.96,242,"0.688","0.1935","0.1935" +"GO:0060429","epithelium development",3,1,0.96,243,"0.688","0.1935","0.1935" +"GO:0071704","organic substance metabolic process",119,38,38.13,179,"0.576","0.1942","0.1942" +"GO:1901137","carbohydrate derivative biosynthetic pro...",5,3,1.6,14,"0.189","0.1971","0.1971" +"GO:0007166","cell surface receptor signaling pathway",9,5,2.88,9,"0.121","0.1978","0.1978" +"GO:0009790","embryo development",6,2,1.92,189,"0.626","0.2148","0.2148" +"GO:0009888","tissue development",6,2,1.92,190,"0.626","0.2148","0.2148" +"GO:0009887","animal organ morphogenesis",4,2,1.28,101,"0.384","0.2181","0.2181" +"GO:0033554","cellular response to stress",8,3,2.56,141,"0.501","0.2187","0.2187" +"GO:0030001","metal ion transport",9,3,2.88,180,"0.594","0.2223","0.2223" +"GO:0010562","positive regulation of phosphorus metabo...",5,2,1.6,151,"0.515","0.2232","0.2232" +"GO:0030029","actin filament-based process",5,2,1.6,152,"0.515","0.2232","0.2232" +"GO:0030036","actin cytoskeleton organization",5,2,1.6,153,"0.515","0.2232","0.2232" +"GO:0034622","cellular protein-containing complex asse...",5,2,1.6,154,"0.515","0.2232","0.2232" +"GO:0043085","positive regulation of catalytic activit...",5,2,1.6,155,"0.515","0.2232","0.2232" +"GO:0043933","protein-containing complex subunit organ...",5,2,1.6,156,"0.515","0.2232","0.2232" +"GO:0045937","positive regulation of phosphate metabol...",5,2,1.6,157,"0.515","0.2232","0.2232" +"GO:0065003","protein-containing complex assembly",5,2,1.6,158,"0.515","0.2232","0.2232" +"GO:0019439","aromatic compound catabolic process",4,2,1.28,102,"0.384","0.2256","0.2256" +"GO:0034655","nucleobase-containing compound catabolic...",4,2,1.28,103,"0.384","0.2256","0.2256" +"GO:0044270","cellular nitrogen compound catabolic pro...",4,2,1.28,104,"0.384","0.2256","0.2256" +"GO:0046700","heterocycle catabolic process",4,2,1.28,105,"0.384","0.2256","0.2256" +"GO:0072521","purine-containing compound metabolic pro...",4,2,1.28,106,"0.384","0.2256","0.2256" +"GO:1901361","organic cyclic compound catabolic proces...",4,2,1.28,107,"0.384","0.2256","0.2256" +"GO:0090304","nucleic acid metabolic process",39,10,12.5,408,"0.874","0.2266","0.2266" +"GO:0009058","biosynthetic process",52,13,16.66,441,"0.926","0.2282","0.2282" +"GO:0046903","secretion",4,1,1.28,327,"0.790","0.2334","0.2334" +"GO:0070887","cellular response to chemical stimulus",9,3,2.88,181,"0.594","0.2353","0.2353" +"GO:0006468","protein phosphorylation",19,8,6.09,21,"0.230","0.2416","0.2416" +"GO:0006397","mRNA processing",3,2,0.96,67,"0.241","0.2497","0.2497" +"GO:0010038","response to metal ion",3,2,0.96,68,"0.241","0.2497","0.2497" +"GO:0016071","mRNA metabolic process",3,2,0.96,69,"0.241","0.2497","0.2497" +"GO:1901135","carbohydrate derivative metabolic proces...",12,5,3.84,90,"0.328","0.2555","0.2555" +"GO:0009059","macromolecule biosynthetic process",38,9,12.17,440,"0.924","0.2564","0.2564" +"GO:0098662","inorganic cation transmembrane transport",5,2,1.6,159,"0.515","0.2589","0.2589" +"GO:0040007","growth",3,1,0.96,244,"0.688","0.2592","0.2592" +"GO:0006869","lipid transport",3,1,0.96,245,"0.688","0.2665","0.2665" +"GO:0010876","lipid localization",3,1,0.96,246,"0.688","0.2665","0.2665" +"GO:0015672","monovalent inorganic cation transport",8,3,2.56,142,"0.501","0.2672","0.2672" +"GO:0051235","maintenance of location",5,2,1.6,160,"0.515","0.2684","0.2684" +"GO:1901700","response to oxygen-containing compound",5,2,1.6,161,"0.515","0.2684","0.2684" +"GO:0055114","oxidation-reduction process",10,4,3.2,130,"0.405","0.2702","0.2702" +"GO:0009653","anatomical structure morphogenesis",12,4,3.84,177,"0.573","0.2704","0.2704" +"GO:0006793","phosphorus metabolic process",35,14,11.21,12,"0.181","0.2775","0.2775" +"GO:0006796","phosphate-containing compound metabolic ...",35,14,11.21,13,"0.181","0.2775","0.2775" +"GO:0002376","immune system process",7,3,2.24,123,"0.399","0.2789","0.2789" +"GO:0019725","cellular homeostasis",7,4,2.24,11,"0.150","0.2789","0.2789" +"GO:0006811","ion transport",23,7,7.37,212,"0.652","0.2799","0.2799" +"GO:0001654","eye development",4,2,1.28,108,"0.384","0.2833","0.2833" +"GO:0009611","response to wounding",4,2,1.28,109,"0.384","0.2833","0.2833" +"GO:0043393","regulation of protein binding",4,2,1.28,110,"0.384","0.2833","0.2833" +"GO:0048880","sensory system development",4,2,1.28,111,"0.384","0.2833","0.2833" +"GO:0051098","regulation of binding",4,2,1.28,112,"0.384","0.2833","0.2833" +"GO:0061564","axon development",4,2,1.28,113,"0.384","0.2833","0.2833" +"GO:0150063","visual system development",4,2,1.28,114,"0.384","0.2833","0.2833" +"GO:0006886","intracellular protein transport",3,2,0.96,70,"0.241","0.2865","0.2865" +"GO:0034645","cellular macromolecule biosynthetic proc...",37,8,11.85,468,"0.958","0.2891","0.2891" +"GO:0051186","cofactor metabolic process",5,2,1.6,162,"0.515","0.2919","0.2919" +"GO:0048666","neuron development",8,3,2.56,143,"0.501","0.2987","0.2987" +"GO:0006979","response to oxidative stress",4,2,1.28,115,"0.384","0.3012","0.3012" +"GO:1903047","mitotic cell cycle process",8,3,2.56,144,"0.501","0.3020","0.3020" +"GO:0019220","regulation of phosphate metabolic proces...",9,4,2.88,85,"0.316","0.3107","0.3107" +"GO:0031399","regulation of protein modification proce...",9,4,2.88,86,"0.316","0.3107","0.3107" +"GO:0032268","regulation of cellular protein metabolic...",9,4,2.88,87,"0.316","0.3107","0.3107" +"GO:0051174","regulation of phosphorus metabolic proce...",9,4,2.88,88,"0.316","0.3107","0.3107" +"GO:0010467","gene expression",41,10,13.14,437,"0.915","0.3160","0.3160" +"GO:0006351","transcription, DNA-templated",31,5,9.93,493,"0.991","0.3291","0.3291" +"GO:0032774","RNA biosynthetic process",31,5,9.93,494,"0.991","0.3291","0.3291" +"GO:0097659","nucleic acid-templated transcription",31,5,9.93,495,"0.991","0.3291","0.3291" +"GO:0065008","regulation of biological quality",20,8,6.41,72,"0.285","0.3297","0.3297" +"GO:0043170","macromolecule metabolic process",85,26,27.23,301,"0.700","0.3359","0.3359" +"GO:0010468","regulation of gene expression",25,4,8.01,490,"0.985","0.3360","0.3360" +"GO:0002790","peptide secretion",3,1,0.96,247,"0.688","0.3376","0.3376" +"GO:0009306","protein secretion",3,1,0.96,248,"0.688","0.3376","0.3376" +"GO:0032940","secretion by cell",3,1,0.96,249,"0.688","0.3376","0.3376" +"GO:1901575","organic substance catabolic process",11,4,3.52,136,"0.492","0.3464","0.3464" +"GO:0009792","embryo development ending in birth or eg...",5,1,1.6,393,"0.858","0.3515","0.3515" +"GO:0006396","RNA processing",5,3,1.6,15,"0.189","0.3537","0.3537" +"GO:0048519","negative regulation of biological proces...",19,6,6.09,188,"0.610","0.3593","0.3593" +"GO:0071702","organic substance transport",13,4,4.17,210,"0.647","0.3612","0.3612" +"GO:0016070","RNA metabolic process",35,8,11.21,442,"0.933","0.3633","0.3633" +"GO:0055085","transmembrane transport",22,7,7.05,186,"0.596","0.3653","0.3653" +"GO:0006355","regulation of transcription, DNA-templat...",24,3,7.69,497,"0.995","0.3709","0.3709" +"GO:0010556","regulation of macromolecule biosynthetic...",24,3,7.69,498,"0.995","0.3709","0.3709" +"GO:0019219","regulation of nucleobase-containing comp...",24,3,7.69,499,"0.995","0.3709","0.3709" +"GO:0031326","regulation of cellular biosynthetic proc...",24,3,7.69,500,"0.995","0.3709","0.3709" +"GO:0051252","regulation of RNA metabolic process",24,3,7.69,501,"0.995","0.3709","0.3709" +"GO:1903506","regulation of nucleic acid-templated tra...",24,3,7.69,502,"0.995","0.3709","0.3709" +"GO:2000112","regulation of cellular macromolecule bio...",24,3,7.69,503,"0.995","0.3709","0.3709" +"GO:2001141","regulation of RNA biosynthetic process",24,3,7.69,504,"0.995","0.3709","0.3709" +"GO:0006470","protein dephosphorylation",4,2,1.28,116,"0.384","0.3794","0.3794" +"GO:0000278","mitotic cell cycle",9,3,2.88,182,"0.594","0.3806","0.3806" +"GO:0022402","cell cycle process",9,3,2.88,183,"0.594","0.3806","0.3806" +"GO:1901564","organonitrogen compound metabolic proces...",53,19,16.98,84,"0.299","0.3849","0.3849" +"GO:1901566","organonitrogen compound biosynthetic pro...",11,4,3.52,137,"0.492","0.3966","0.3966" +"GO:0000904","cell morphogenesis involved in different...",4,1,1.28,328,"0.790","0.4057","0.4057" +"GO:0002682","regulation of immune system process",4,1,1.28,329,"0.790","0.4057","0.4057" +"GO:0006469","negative regulation of protein kinase ac...",4,1,1.28,330,"0.790","0.4057","0.4057" +"GO:0008283","cell proliferation",4,2,1.28,117,"0.384","0.4057","0.4057" +"GO:0009636","response to toxic substance",4,2,1.28,118,"0.384","0.4057","0.4057" +"GO:0009968","negative regulation of signal transducti...",4,1,1.28,331,"0.790","0.4057","0.4057" +"GO:0010035","response to inorganic substance",4,2,1.28,119,"0.384","0.4057","0.4057" +"GO:0010648","negative regulation of cell communicatio...",4,1,1.28,332,"0.790","0.4057","0.4057" +"GO:0010975","regulation of neuron projection developm...",4,1,1.28,333,"0.790","0.4057","0.4057" +"GO:0018193","peptidyl-amino acid modification",4,1,1.28,334,"0.790","0.4057","0.4057" +"GO:0023057","negative regulation of signaling",4,1,1.28,335,"0.790","0.4057","0.4057" +"GO:0031344","regulation of cell projection organizati...",4,1,1.28,336,"0.790","0.4057","0.4057" +"GO:0033673","negative regulation of kinase activity",4,1,1.28,337,"0.790","0.4057","0.4057" +"GO:0042110","T cell activation",4,1,1.28,338,"0.790","0.4057","0.4057" +"GO:0043009","chordate embryonic development",4,1,1.28,339,"0.790","0.4057","0.4057" +"GO:0044089","positive regulation of cellular componen...",4,1,1.28,340,"0.790","0.4057","0.4057" +"GO:0045321","leukocyte activation",4,1,1.28,341,"0.790","0.4057","0.4057" +"GO:0046649","lymphocyte activation",4,1,1.28,342,"0.790","0.4057","0.4057" +"GO:0048585","negative regulation of response to stimu...",4,1,1.28,343,"0.790","0.4057","0.4057" +"GO:0048667","cell morphogenesis involved in neuron di...",4,1,1.28,344,"0.790","0.4057","0.4057" +"GO:0048812","neuron projection morphogenesis",4,1,1.28,345,"0.790","0.4057","0.4057" +"GO:0048858","cell projection morphogenesis",4,1,1.28,346,"0.790","0.4057","0.4057" +"GO:0051348","negative regulation of transferase activ...",4,1,1.28,347,"0.790","0.4057","0.4057" +"GO:0072359","circulatory system development",4,2,1.28,120,"0.384","0.4057","0.4057" +"GO:0120035","regulation of plasma membrane bounded ce...",4,1,1.28,348,"0.790","0.4057","0.4057" +"GO:0120039","plasma membrane bounded cell projection ...",4,1,1.28,349,"0.790","0.4057","0.4057" +"GO:0016477","cell migration",4,0,1.28,506,"1.000","0.4057","0.4057" +"GO:0030334","regulation of cell migration",4,0,1.28,507,"1.000","0.4057","0.4057" +"GO:0040011","locomotion",4,0,1.28,508,"1.000","0.4057","0.4057" +"GO:0040012","regulation of locomotion",4,0,1.28,509,"1.000","0.4057","0.4057" +"GO:0048870","cell motility",4,0,1.28,510,"1.000","0.4057","0.4057" +"GO:0051270","regulation of cellular component movemen...",4,0,1.28,511,"1.000","0.4057","0.4057" +"GO:0051674","localization of cell",4,0,1.28,512,"1.000","0.4057","0.4057" +"GO:2000145","regulation of cell motility",4,0,1.28,513,"1.000","0.4057","0.4057" +"GO:0000003","reproduction",5,2,1.6,163,"0.515","0.4143","0.4143" +"GO:0003006","developmental process involved in reprod...",5,2,1.6,164,"0.515","0.4143","0.4143" +"GO:0007423","sensory organ development",5,2,1.6,165,"0.515","0.4143","0.4143" +"GO:0022414","reproductive process",5,2,1.6,166,"0.515","0.4143","0.4143" +"GO:0098660","inorganic ion transmembrane transport",6,2,1.92,191,"0.626","0.4143","0.4143" +"GO:0044281","small molecule metabolic process",18,6,5.77,172,"0.545","0.4146","0.4146" +"GO:0032879","regulation of localization",11,2,3.52,439,"0.918","0.4147","0.4147" +"GO:0010629","negative regulation of gene expression",7,2,2.24,305,"0.717","0.4175","0.4175" +"GO:0050877","nervous system process",6,2,1.92,192,"0.626","0.4188","0.4188" +"GO:0051049","regulation of transport",6,2,1.92,193,"0.626","0.4188","0.4188" +"GO:0060341","regulation of cellular localization",6,2,1.92,194,"0.626","0.4188","0.4188" +"GO:0048513","animal organ development",15,5,4.81,174,"0.558","0.4374","0.4374" +"GO:0048523","negative regulation of cellular process",15,5,4.81,175,"0.558","0.4374","0.4374" +"GO:0007507","heart development",3,2,0.96,71,"0.241","0.4430","0.4430" +"GO:0007275","multicellular organism development",25,9,8.01,129,"0.404","0.4489","0.4489" +"GO:0031175","neuron projection development",7,2,2.24,306,"0.717","0.4531","0.4531" +"GO:0007049","cell cycle",10,3,3.2,213,"0.675","0.4563","0.4563" +"GO:0050790","regulation of catalytic activity",10,4,3.2,131,"0.405","0.4563","0.4563" +"GO:0044265","cellular macromolecule catabolic process",5,2,1.6,167,"0.515","0.4638","0.4638" +"GO:0001775","cell activation",6,2,1.92,195,"0.626","0.4642","0.4642" +"GO:0001933","negative regulation of protein phosphory...",6,2,1.92,196,"0.626","0.4642","0.4642" +"GO:0007010","cytoskeleton organization",6,2,1.92,197,"0.626","0.4642","0.4642" +"GO:0010563","negative regulation of phosphorus metabo...",6,2,1.92,198,"0.626","0.4642","0.4642" +"GO:0031400","negative regulation of protein modificat...",6,2,1.92,199,"0.626","0.4642","0.4642" +"GO:0032269","negative regulation of cellular protein ...",6,2,1.92,200,"0.626","0.4642","0.4642" +"GO:0042326","negative regulation of phosphorylation",6,2,1.92,201,"0.626","0.4642","0.4642" +"GO:0043086","negative regulation of catalytic activit...",6,2,1.92,202,"0.626","0.4642","0.4642" +"GO:0044092","negative regulation of molecular functio...",6,2,1.92,203,"0.626","0.4642","0.4642" +"GO:0045936","negative regulation of phosphate metabol...",6,2,1.92,204,"0.626","0.4642","0.4642" +"GO:0051248","negative regulation of protein metabolic...",6,2,1.92,205,"0.626","0.4642","0.4642" +"GO:0009987","cellular process",149,42,47.74,484,"0.980","0.4645","0.4839" +"GO:0015711","organic anion transport",5,1,1.6,394,"0.858","0.4842","0.4842" +"GO:0071310","cellular response to organic substance",6,2,1.92,206,"0.626","0.4875","0.4875" +"GO:0009605","response to external stimulus",8,3,2.56,145,"0.501","0.4883","0.4883" +"GO:0046907","intracellular transport",8,4,2.56,20,"0.229","0.5006","0.5006" +"GO:0017144","drug metabolic process",6,3,1.92,83,"0.292","0.5017","0.5017" +"GO:0061024","membrane organization",6,2,1.92,207,"0.626","0.5017","0.5017" +"GO:0003008","system process",7,2,2.24,307,"0.717","0.5030","0.5030" +"GO:0015031","protein transport",7,3,2.24,124,"0.399","0.5030","0.5030" +"GO:0015833","peptide transport",7,3,2.24,125,"0.399","0.5030","0.5030" +"GO:0042886","amide transport",7,3,2.24,126,"0.399","0.5030","0.5030" +"GO:0045184","establishment of protein localization",7,3,2.24,127,"0.399","0.5030","0.5030" +"GO:0008152","metabolic process",139,45,44.53,149,"0.507","0.3788","0.5110" +"GO:0006812","cation transport",14,4,4.49,302,"0.712","0.5192","0.5192" +"GO:0034220","ion transmembrane transport",13,3,4.17,390,"0.847","0.5201","0.5201" +"GO:0034613","cellular protein localization",9,3,2.88,184,"0.594","0.5211","0.5211" +"GO:0070727","cellular macromolecule localization",9,3,2.88,185,"0.594","0.5211","0.5211" +"GO:0051246","regulation of protein metabolic process",11,4,3.52,138,"0.492","0.5273","0.5273" +"GO:0065009","regulation of molecular function",11,4,3.52,139,"0.492","0.5273","0.5273" +"GO:0051641","cellular localization",18,6,5.77,173,"0.545","0.5277","0.5277" +"GO:0006508","proteolysis",11,4,3.52,140,"0.492","0.5291","0.5291" +"GO:0032501","multicellular organismal process",27,9,8.65,170,"0.519","0.5314","0.5314" +"GO:0007517","muscle organ development",3,1,0.96,250,"0.688","0.5386","0.5386" +"GO:0010243","response to organonitrogen compound",3,1,0.96,251,"0.688","0.5386","0.5386" +"GO:0014070","response to organic cyclic compound",3,1,0.96,252,"0.688","0.5386","0.5386" +"GO:0031929","TOR signaling",3,1,0.96,253,"0.688","0.5386","0.5386" +"GO:0034762","regulation of transmembrane transport",3,1,0.96,254,"0.688","0.5386","0.5386" +"GO:0034765","regulation of ion transmembrane transpor...",3,1,0.96,255,"0.688","0.5386","0.5386" +"GO:0043269","regulation of ion transport",3,1,0.96,256,"0.688","0.5386","0.5386" +"GO:0046677","response to antibiotic",3,1,0.96,257,"0.688","0.5386","0.5386" +"GO:0051241","negative regulation of multicellular org...",3,1,0.96,258,"0.688","0.5386","0.5386" +"GO:0051346","negative regulation of hydrolase activit...",3,1,0.96,259,"0.688","0.5386","0.5386" +"GO:0061061","muscle structure development",3,1,0.96,260,"0.688","0.5386","0.5386" +"GO:1901698","response to nitrogen compound",3,1,0.96,261,"0.688","0.5386","0.5386" +"GO:1902532","negative regulation of intracellular sig...",3,1,0.96,262,"0.688","0.5386","0.5386" +"GO:1904062","regulation of cation transmembrane trans...",3,1,0.96,263,"0.688","0.5386","0.5386" +"GO:0016311","dephosphorylation",5,2,1.6,168,"0.515","0.5415","0.5415" +"GO:0010558","negative regulation of macromolecule bio...",6,1,1.92,415,"0.905","0.5448","0.5448" +"GO:0031327","negative regulation of cellular biosynth...",6,1,1.92,416,"0.905","0.5448","0.5448" +"GO:0045892","negative regulation of transcription, DN...",6,1,1.92,417,"0.905","0.5448","0.5448" +"GO:0045934","negative regulation of nucleobase-contai...",6,1,1.92,418,"0.905","0.5448","0.5448" +"GO:0051253","negative regulation of RNA metabolic pro...",6,1,1.92,419,"0.905","0.5448","0.5448" +"GO:1902679","negative regulation of RNA biosynthetic ...",6,1,1.92,420,"0.905","0.5448","0.5448" +"GO:1903507","negative regulation of nucleic acid-temp...",6,1,1.92,421,"0.905","0.5448","0.5448" +"GO:2000113","negative regulation of cellular macromol...",6,1,1.92,422,"0.905","0.5448","0.5448" +"GO:0006644","phospholipid metabolic process",5,2,1.6,169,"0.515","0.5494","0.5494" +"GO:0051649","establishment of localization in cell",12,5,3.84,91,"0.328","0.5511","0.5511" +"GO:0009057","macromolecule catabolic process",6,2,1.92,208,"0.626","0.5690","0.5690" +"GO:0048856","anatomical structure development",28,10,8.97,128,"0.402","0.5714","0.5714" +"GO:0010033","response to organic substance",8,3,2.56,146,"0.501","0.5718","0.5718" +"GO:0060255","regulation of macromolecule metabolic pr...",35,8,11.21,443,"0.933","0.5751","0.5751" +"GO:0009889","regulation of biosynthetic process",25,3,8.01,505,"0.997","0.5761","0.5761" +"GO:0007186","G protein-coupled receptor signaling pat...",5,1,1.6,395,"0.858","0.5865","0.5865" +"GO:0010605","negative regulation of macromolecule met...",12,4,3.84,178,"0.573","0.5930","0.5930" +"GO:0051234","establishment of localization",45,12,14.42,391,"0.854","0.5964","0.5964" +"GO:0008219","cell death",3,1,0.96,264,"0.688","0.6069","0.6069" +"GO:0012501","programmed cell death",3,1,0.96,265,"0.688","0.6069","0.6069" +"GO:0022603","regulation of anatomical structure morph...",3,0,0.96,514,"1.000","0.6069","0.6069" +"GO:0006366","transcription by RNA polymerase II",10,1,3.2,485,"0.981","0.6136","0.6136" +"GO:1902600","proton transmembrane transport",3,1,0.96,266,"0.688","0.6171","0.6171" +"GO:0080090","regulation of primary metabolic process",35,7,11.21,479,"0.973","0.6177","0.6177" +"GO:0032787","monocarboxylic acid metabolic process",3,1,0.96,267,"0.688","0.6206","0.6206" +"GO:0051171","regulation of nitrogen compound metaboli...",34,7,10.89,469,"0.965","0.6251","0.6251" +"GO:1901565","organonitrogen compound catabolic proces...",5,1,1.6,396,"0.858","0.6265","0.6265" +"GO:0030030","cell projection organization",8,2,2.56,321,"0.788","0.6269","0.6269" +"GO:0120036","plasma membrane bounded cell projection ...",8,2,2.56,322,"0.788","0.6269","0.6269" +"GO:0051726","regulation of cell cycle",7,2,2.24,308,"0.717","0.6288","0.6288" +"GO:0019538","protein metabolic process",44,15,14.1,132,"0.437","0.6304","0.6304" +"GO:0007267","cell-cell signaling",4,1,1.28,350,"0.790","0.6362","0.6362" +"GO:0010720","positive regulation of cell development",4,1,1.28,351,"0.790","0.6362","0.6362" +"GO:0016567","protein ubiquitination",4,1,1.28,352,"0.790","0.6362","0.6362" +"GO:0032446","protein modification by small protein co...",4,1,1.28,353,"0.790","0.6362","0.6362" +"GO:0045666","positive regulation of neuron differenti...",4,1,1.28,354,"0.790","0.6362","0.6362" +"GO:0050769","positive regulation of neurogenesis",4,1,1.28,355,"0.790","0.6362","0.6362" +"GO:0051962","positive regulation of nervous system de...",4,1,1.28,356,"0.790","0.6362","0.6362" +"GO:0044267","cellular protein metabolic process",35,12,11.21,133,"0.449","0.6406","0.6406" +"GO:0044237","cellular metabolic process",106,30,33.96,435,"0.909","0.5974","0.6467" +"GO:0051179","localization",48,12,15.38,438,"0.917","0.6501","0.6501" +"GO:0044260","cellular macromolecule metabolic process",71,20,22.75,388,"0.846","0.6501","0.6501" +"GO:0008104","protein localization",13,4,4.17,211,"0.647","0.6528","0.6528" +"GO:0010604","positive regulation of macromolecule met...",10,3,3.2,214,"0.675","0.6555","0.6555" +"GO:0031325","positive regulation of cellular metaboli...",10,3,3.2,215,"0.675","0.6555","0.6555" +"GO:0070647","protein modification by small protein co...",5,1,1.6,397,"0.858","0.6663","0.6663" +"GO:0032502","developmental process",31,10,9.93,176,"0.565","0.6678","0.6678" +"GO:0046467","membrane lipid biosynthetic process",3,1,0.96,268,"0.688","0.6683","0.6683" +"GO:0008610","lipid biosynthetic process",8,3,2.56,147,"0.501","0.6692","0.6692" +"GO:0006464","cellular protein modification process",29,10,9.29,134,"0.457","0.6748","0.6748" +"GO:0036211","protein modification process",29,10,9.29,135,"0.457","0.6748","0.6748" +"GO:0098655","cation transmembrane transport",8,2,2.56,323,"0.788","0.6776","0.6776" +"GO:0015849","organic acid transport",4,0,1.28,515,"1.000","0.6834","0.6834" +"GO:0046942","carboxylic acid transport",4,0,1.28,516,"1.000","0.6834","0.6834" +"GO:0000165","MAPK cascade",3,1,0.96,269,"0.688","0.6852","0.6852" +"GO:0002118","aggressive behavior",3,1,0.96,270,"0.688","0.6852","0.6852" +"GO:0005996","monosaccharide metabolic process",3,1,0.96,271,"0.688","0.6852","0.6852" +"GO:0006909","phagocytosis",3,1,0.96,272,"0.688","0.6852","0.6852" +"GO:0007409","axonogenesis",3,1,0.96,273,"0.688","0.6852","0.6852" +"GO:0023014","signal transduction by protein phosphory...",3,1,0.96,274,"0.688","0.6852","0.6852" +"GO:0035148","tube formation",3,1,0.96,275,"0.688","0.6852","0.6852" +"GO:0035239","tube morphogenesis",3,1,0.96,276,"0.688","0.6852","0.6852" +"GO:0035295","tube development",3,1,0.96,277,"0.688","0.6852","0.6852" +"GO:0043408","regulation of MAPK cascade",3,1,0.96,278,"0.688","0.6852","0.6852" +"GO:0051705","multi-organism behavior",3,1,0.96,279,"0.688","0.6852","0.6852" +"GO:0070848","response to growth factor",3,1,0.96,280,"0.688","0.6852","0.6852" +"GO:0071363","cellular response to growth factor stimu...",3,1,0.96,281,"0.688","0.6852","0.6852" +"GO:0002694","regulation of leukocyte activation",3,0,0.96,517,"1.000","0.6852","0.6852" +"GO:0016358","dendrite development",3,0,0.96,518,"1.000","0.6852","0.6852" +"GO:0050803","regulation of synapse structure or activ...",3,0,0.96,519,"1.000","0.6852","0.6852" +"GO:0050807","regulation of synapse organization",3,0,0.96,520,"1.000","0.6852","0.6852" +"GO:0050863","regulation of T cell activation",3,0,0.96,521,"1.000","0.6852","0.6852" +"GO:0050865","regulation of cell activation",3,0,0.96,522,"1.000","0.6852","0.6852" +"GO:0051249","regulation of lymphocyte activation",3,0,0.96,523,"1.000","0.6852","0.6852" +"GO:0030163","protein catabolic process",4,1,1.28,357,"0.790","0.6892","0.6892" +"GO:0050794","regulation of cellular process",73,17,23.39,491,"0.985","0.6918","0.6918" +"GO:0071705","nitrogen compound transport",10,3,3.2,216,"0.675","0.6932","0.6932" +"GO:0007346","regulation of mitotic cell cycle",4,1,1.28,358,"0.790","0.6950","0.6950" +"GO:0006897","endocytosis",6,1,1.92,423,"0.905","0.6952","0.6952" +"GO:0098657","import into cell",6,1,1.92,424,"0.905","0.6952","0.6952" +"GO:0071495","cellular response to endogenous stimulus",5,1,1.6,398,"0.858","0.6952","0.6952" +"GO:0006810","transport",43,12,13.78,375,"0.797","0.6965","0.6965" +"GO:0051130","positive regulation of cellular componen...",9,2,2.88,382,"0.844","0.6985","0.6985" +"GO:0045454","cell redox homeostasis",4,2,1.28,121,"0.384","0.7008","0.7008" +"GO:0009893","positive regulation of metabolic process",11,3,3.52,312,"0.744","0.7013","0.7013" +"GO:0051173","positive regulation of nitrogen compound...",11,3,3.52,313,"0.744","0.7013","0.7013" +"GO:0051336","regulation of hydrolase activity",5,1,1.6,399,"0.858","0.7030","0.7030" +"GO:0009892","negative regulation of metabolic process",14,4,4.49,303,"0.712","0.7067","0.7067" +"GO:0007155","cell adhesion",7,1,2.24,445,"0.936","0.7093","0.7093" +"GO:0022607","cellular component assembly",7,2,2.24,309,"0.717","0.7093","0.7093" +"GO:0022610","biological adhesion",7,1,2.24,446,"0.936","0.7093","0.7093" +"GO:0044087","regulation of cellular component biogene...",7,1,2.24,447,"0.936","0.7093","0.7093" +"GO:0000902","cell morphogenesis",5,1,1.6,400,"0.858","0.7107","0.7107" +"GO:0006412","translation",5,1,1.6,401,"0.858","0.7107","0.7107" +"GO:0032990","cell part morphogenesis",5,1,1.6,402,"0.858","0.7107","0.7107" +"GO:0043043","peptide biosynthetic process",5,1,1.6,403,"0.858","0.7107","0.7107" +"GO:0050808","synapse organization",5,1,1.6,404,"0.858","0.7107","0.7107" +"GO:0099173","postsynapse organization",5,1,1.6,405,"0.858","0.7107","0.7107" +"GO:0050789","regulation of biological process",77,19,24.67,478,"0.973","0.7190","0.7190" +"GO:0033036","macromolecule localization",17,5,5.45,218,"0.688","0.7196","0.7196" +"GO:0006996","organelle organization",22,7,7.05,187,"0.596","0.7201","0.7201" +"GO:0048731","system development",21,7,6.73,171,"0.535","0.7207","0.7207" +"GO:0043412","macromolecule modification",30,10,9.61,150,"0.512","0.7208","0.7208" +"GO:0006082","organic acid metabolic process",4,1,1.28,359,"0.790","0.7295","0.7295" +"GO:0019752","carboxylic acid metabolic process",4,1,1.28,360,"0.790","0.7295","0.7295" +"GO:0043436","oxoacid metabolic process",4,1,1.28,361,"0.790","0.7295","0.7295" +"GO:0006338","chromatin remodeling",3,1,0.96,282,"0.688","0.7316","0.7316" +"GO:0007286","spermatid development",3,1,0.96,283,"0.688","0.7316","0.7316" +"GO:0007623","circadian rhythm",3,1,0.96,284,"0.688","0.7316","0.7316" +"GO:0048511","rhythmic process",3,1,0.96,285,"0.688","0.7316","0.7316" +"GO:0048515","spermatid differentiation",3,1,0.96,286,"0.688","0.7316","0.7316" +"GO:0051301","cell division",3,1,0.96,287,"0.688","0.7316","0.7316" +"GO:0051602","response to electrical stimulus",3,1,0.96,288,"0.688","0.7316","0.7316" +"GO:0071214","cellular response to abiotic stimulus",3,1,0.96,289,"0.688","0.7316","0.7316" +"GO:0104004","cellular response to environmental stimu...",3,1,0.96,290,"0.688","0.7316","0.7316" +"GO:0051172","negative regulation of nitrogen compound...",11,3,3.52,314,"0.744","0.7329","0.7329" +"GO:0035556","intracellular signal transduction",14,3,4.49,410,"0.884","0.7411","0.7411" +"GO:0051128","regulation of cellular component organiz...",14,2,4.49,472,"0.970","0.7503","0.7503" +"GO:0042493","response to drug",6,1,1.92,425,"0.905","0.7513","0.7513" +"GO:0045597","positive regulation of cell differentiat...",6,1,1.92,426,"0.905","0.7513","0.7513" +"GO:0051240","positive regulation of multicellular org...",6,1,1.92,427,"0.905","0.7513","0.7513" +"GO:1902533","positive regulation of intracellular sig...",6,2,1.92,209,"0.626","0.7513","0.7513" +"GO:0006511","ubiquitin-dependent protein catabolic pr...",3,1,0.96,291,"0.688","0.7575","0.7575" +"GO:0019941","modification-dependent protein catabolic...",3,1,0.96,292,"0.688","0.7575","0.7575" +"GO:0043632","modification-dependent macromolecule cat...",3,1,0.96,293,"0.688","0.7575","0.7575" +"GO:0044257","cellular protein catabolic process",3,1,0.96,294,"0.688","0.7575","0.7575" +"GO:0051603","proteolysis involved in cellular protein...",3,1,0.96,295,"0.688","0.7575","0.7575" +"GO:0006357","regulation of transcription by RNA polym...",8,1,2.56,463,"0.957","0.7632","0.7632" +"GO:0044283","small molecule biosynthetic process",5,1,1.6,406,"0.858","0.7736","0.7736" +"GO:0065007","biological regulation",80,21,25.63,459,"0.943","0.7784","0.7784" +"GO:0009612","response to mechanical stimulus",4,1,1.28,362,"0.790","0.7795","0.7795" +"GO:0051704","multi-organism process",7,2,2.24,310,"0.717","0.7837","0.7837" +"GO:0045664","regulation of neuron differentiation",7,1,2.24,448,"0.936","0.7878","0.7878" +"GO:0050767","regulation of neurogenesis",7,1,2.24,449,"0.936","0.7878","0.7878" +"GO:0051960","regulation of nervous system development",7,1,2.24,450,"0.936","0.7878","0.7878" +"GO:0060284","regulation of cell development",7,1,2.24,451,"0.936","0.7878","0.7878" +"GO:2000026","regulation of multicellular organismal d...",7,1,2.24,452,"0.936","0.7878","0.7878" +"GO:0044248","cellular catabolic process",14,4,4.49,304,"0.712","0.7921","0.7921" +"GO:0003333","amino acid transmembrane transport",3,0,0.96,524,"1.000","0.8009","0.8009" +"GO:0006865","amino acid transport",3,0,0.96,525,"1.000","0.8009","0.8009" +"GO:1903825","organic acid transmembrane transport",3,0,0.96,526,"1.000","0.8009","0.8009" +"GO:1905039","carboxylic acid transmembrane transport",3,0,0.96,527,"1.000","0.8009","0.8009" +"GO:0006820","anion transport",6,1,1.92,428,"0.905","0.8044","0.8044" +"GO:0016043","cellular component organization",31,8,9.93,387,"0.845","0.8051","0.8051" +"GO:0007264","small GTPase mediated signal transductio...",4,1,1.28,363,"0.790","0.8059","0.8059" +"GO:0010001","glial cell differentiation",3,0,0.96,528,"1.000","0.8099","0.8099" +"GO:0042063","gliogenesis",3,0,0.96,529,"1.000","0.8099","0.8099" +"GO:0051094","positive regulation of developmental pro...",8,1,2.56,464,"0.957","0.8163","0.8163" +"GO:0051239","regulation of multicellular organismal p...",8,1,2.56,465,"0.957","0.8163","0.8163" +"GO:1902531","regulation of intracellular signal trans...",8,2,2.56,324,"0.788","0.8163","0.8163" +"GO:0042221","response to chemical",16,4,5.13,379,"0.816","0.8164","0.8164" +"GO:0006629","lipid metabolic process",15,4,4.81,318,"0.769","0.8173","0.8173" +"GO:0010638","positive regulation of organelle organiz...",6,1,1.92,429,"0.905","0.8376","0.8376" +"GO:0009967","positive regulation of signal transducti...",9,2,2.88,383,"0.844","0.8391","0.8391" +"GO:0010647","positive regulation of cell communicatio...",9,2,2.88,384,"0.844","0.8391","0.8391" +"GO:0023056","positive regulation of signaling",9,2,2.88,385,"0.844","0.8391","0.8391" +"GO:0045595","regulation of cell differentiation",9,1,2.88,475,"0.972","0.8391","0.8391" +"GO:0048584","positive regulation of response to stimu...",9,2,2.88,386,"0.844","0.8391","0.8391" +"GO:0006643","membrane lipid metabolic process",4,1,1.28,364,"0.790","0.8411","0.8411" +"GO:0007276","gamete generation",4,1,1.28,365,"0.790","0.8459","0.8459" +"GO:0007281","germ cell development",4,1,1.28,366,"0.790","0.8459","0.8459" +"GO:0007283","spermatogenesis",4,1,1.28,367,"0.790","0.8459","0.8459" +"GO:0019953","sexual reproduction",4,1,1.28,368,"0.790","0.8459","0.8459" +"GO:0022412","cellular process involved in reproductio...",4,1,1.28,369,"0.790","0.8459","0.8459" +"GO:0032504","multicellular organism reproduction",4,1,1.28,370,"0.790","0.8459","0.8459" +"GO:0044703","multi-organism reproductive process",4,1,1.28,371,"0.790","0.8459","0.8459" +"GO:0048232","male gamete generation",4,1,1.28,372,"0.790","0.8459","0.8459" +"GO:0048609","multicellular organismal reproductive pr...",4,1,1.28,373,"0.790","0.8459","0.8459" +"GO:0043603","cellular amide metabolic process",7,1,2.24,453,"0.936","0.8531","0.8531" +"GO:0071840","cellular component organization or bioge...",33,8,10.57,414,"0.897","0.8546","0.8546" +"GO:0000122","negative regulation of transcription by ...",4,1,1.28,374,"0.790","0.8554","0.8554" +"GO:0044085","cellular component biogenesis",10,2,3.2,412,"0.886","0.8578","0.8578" +"GO:0050793","regulation of developmental process",10,1,3.2,486,"0.981","0.8578","0.8578" +"GO:0009890","negative regulation of biosynthetic proc...",7,1,2.24,454,"0.936","0.8584","0.8584" +"GO:0031323","regulation of cellular metabolic process",34,7,10.89,470,"0.965","0.8663","0.8663" +"GO:0006352","DNA-templated transcription, initiation",6,0,1.92,530,"1.000","0.8685","0.8685" +"GO:0030182","neuron differentiation",11,3,3.52,315,"0.744","0.8733","0.8733" +"GO:0009056","catabolic process",16,4,5.13,380,"0.816","0.8778","0.8778" +"GO:0006650","glycerophospholipid metabolic process",3,1,0.96,296,"0.688","0.8789","0.8789" +"GO:0006664","glycolipid metabolic process",3,1,0.96,297,"0.688","0.8789","0.8789" +"GO:0046486","glycerolipid metabolic process",3,1,0.96,298,"0.688","0.8789","0.8789" +"GO:0046488","phosphatidylinositol metabolic process",3,1,0.96,299,"0.688","0.8789","0.8789" +"GO:1903509","liposaccharide metabolic process",3,1,0.96,300,"0.688","0.8789","0.8789" +"GO:0016192","vesicle-mediated transport",12,1,3.84,496,"0.992","0.8839","0.8839" +"GO:0007265","Ras protein signal transduction",3,0,0.96,531,"1.000","0.8863","0.8863" +"GO:0007266","Rho protein signal transduction",3,0,0.96,532,"1.000","0.8863","0.8863" +"GO:0035023","regulation of Rho protein signal transdu...",3,0,0.96,533,"1.000","0.8863","0.8863" +"GO:0046578","regulation of Ras protein signal transdu...",3,0,0.96,534,"1.000","0.8863","0.8863" +"GO:0051056","regulation of small GTPase mediated sign...",3,0,0.96,535,"1.000","0.8863","0.8863" +"GO:0022008","neurogenesis",12,3,3.84,376,"0.801","0.8865","0.8865" +"GO:0031324","negative regulation of cellular metaboli...",12,3,3.84,377,"0.801","0.8865","0.8865" +"GO:0048699","generation of neurons",12,3,3.84,378,"0.801","0.8865","0.8865" +"GO:0032989","cellular component morphogenesis",7,1,2.24,455,"0.936","0.8873","0.8873" +"GO:0021537","telencephalon development",3,0,0.96,536,"1.000","0.8912","0.8912" +"GO:0021543","pallium development",3,0,0.96,537,"1.000","0.8912","0.8912" +"GO:0045596","negative regulation of cell differentiat...",3,0,0.96,538,"1.000","0.8912","0.8912" +"GO:0051093","negative regulation of developmental pro...",3,0,0.96,539,"1.000","0.8912","0.8912" +"GO:0019222","regulation of metabolic process",38,8,12.17,471,"0.967","0.8965","0.8965" +"GO:0009966","regulation of signal transduction",13,2,4.17,466,"0.958","0.8977","0.8977" +"GO:0048583","regulation of response to stimulus",13,2,4.17,467,"0.958","0.8977","0.8977" +"GO:0043604","amide biosynthetic process",6,1,1.92,430,"0.905","0.9035","0.9035" +"GO:0010646","regulation of cell communication",14,2,4.49,473,"0.970","0.9074","0.9074" +"GO:0023051","regulation of signaling",14,2,4.49,474,"0.970","0.9074","0.9074" +"GO:0048468","cell development",14,3,4.49,411,"0.884","0.9074","0.9074" +"GO:0006518","peptide metabolic process",6,1,1.92,431,"0.905","0.9099","0.9099" +"GO:0051716","cellular response to stimulus",46,11,14.74,457,"0.938","0.9134","0.9134" +"GO:0006325","chromatin organization",5,1,1.6,407,"0.858","0.9148","0.9148" +"GO:0006928","movement of cell or subcellular componen...",6,0,1.92,540,"1.000","0.9162","0.9162" +"GO:0098609","cell-cell adhesion",6,1,1.92,432,"0.905","0.9193","0.9193" +"GO:0007399","nervous system development",17,4,5.45,392,"0.856","0.9300","0.9300" +"GO:0044255","cellular lipid metabolic process",11,3,3.52,316,"0.744","0.9328","0.9328" +"GO:0009719","response to endogenous stimulus",6,1,1.92,433,"0.905","0.9338","0.9338" +"GO:0051276","chromosome organization",7,2,2.24,311,"0.717","0.9353","0.9353" +"GO:0009628","response to abiotic stimulus",8,2,2.56,325,"0.788","0.9405","0.9405" +"GO:0030154","cell differentiation",19,3,6.09,480,"0.974","0.9411","0.9411" +"GO:0048869","cellular developmental process",19,3,6.09,481,"0.974","0.9411","0.9411" +"GO:0007610","behavior",6,1,1.92,434,"0.905","0.9567","0.9567" +"GO:0048522","positive regulation of cellular process",24,5,7.69,444,"0.936","0.9609","0.9609" +"GO:0048518","positive regulation of biological proces...",25,5,8.01,460,"0.951","0.9638","0.9638" +"GO:0050896","response to stimulus",53,14,16.98,409,"0.884","0.9652","0.9652" +"GO:0009891","positive regulation of biosynthetic proc...",4,0,1.28,541,"1.000","0.9727","0.9727" +"GO:0010557","positive regulation of macromolecule bio...",4,0,1.28,542,"1.000","0.9727","0.9727" +"GO:0010628","positive regulation of gene expression",4,0,1.28,543,"1.000","0.9727","0.9727" +"GO:0031328","positive regulation of cellular biosynth...",4,0,1.28,544,"1.000","0.9727","0.9727" +"GO:0045893","positive regulation of transcription, DN...",4,0,1.28,545,"1.000","0.9727","0.9727" +"GO:0045935","positive regulation of nucleobase-contai...",4,0,1.28,546,"1.000","0.9727","0.9727" +"GO:0045944","positive regulation of transcription by ...",4,0,1.28,547,"1.000","0.9727","0.9727" +"GO:0051254","positive regulation of RNA metabolic pro...",4,0,1.28,548,"1.000","0.9727","0.9727" +"GO:1902680","positive regulation of RNA biosynthetic ...",4,0,1.28,549,"1.000","0.9727","0.9727" +"GO:1903508","positive regulation of nucleic acid-temp...",4,0,1.28,550,"1.000","0.9727","0.9727" +"GO:0007420","brain development",9,1,2.88,476,"0.972","0.9785","0.9785" +"GO:0060322","head development",9,1,2.88,477,"0.972","0.9785","0.9785" +"GO:0007165","signal transduction",32,7,10.25,458,"0.943","0.9791","0.9791" +"GO:0007154","cell communication",33,7,10.57,461,"0.955","0.9807","0.9807" +"GO:0023052","signaling",33,7,10.57,462,"0.955","0.9807","0.9807" +"GO:0009725","response to hormone",3,0,0.96,551,"1.000","0.9817","0.9817" +"GO:0010564","regulation of cell cycle process",3,0,0.96,552,"1.000","0.9817","0.9817" +"GO:0033993","response to lipid",3,0,0.96,553,"1.000","0.9817","0.9817" +"GO:0045787","positive regulation of cell cycle",3,0,0.96,554,"1.000","0.9817","0.9817" +"GO:0045931","positive regulation of mitotic cell cycl...",3,0,0.96,555,"1.000","0.9817","0.9817" +"GO:0033043","regulation of organelle organization",7,1,2.24,456,"0.936","0.9878","0.9878" +"GO:0030900","forebrain development",4,0,1.28,556,"1.000","0.9906","0.9906" +"GO:0048285","organelle fission",3,0,0.96,557,"1.000","0.9930","0.9930" +"GO:0006914","autophagy",4,0,1.28,558,"1.000","0.9931","0.9931" +"GO:0061919","process utilizing autophagic mechanism",4,0,1.28,559,"1.000","0.9931","0.9931" +"GO:0009894","regulation of catabolic process",3,0,0.96,560,"1.000","0.9948","0.9948" +"GO:0098656","anion transmembrane transport",4,0,1.28,561,"1.000","0.9952","0.9952" +"GO:0007417","central nervous system development",10,1,3.2,487,"0.981","0.9956","0.9956" +"GO:0007017","microtubule-based process",6,0,1.92,562,"1.000","0.9997","0.9997" +"GO:0008150","biological_process",206,66,66,563,"1.000","1.0000","1.0000" diff --git a/GO_enrichment_microbiome_output/contrast_laying_nonlaying_upregulated.csv b/GO_enrichment_microbiome_output/contrast_laying_nonlaying_upregulated.csv index b0157e0..0c02d82 100644 --- a/GO_enrichment_microbiome_output/contrast_laying_nonlaying_upregulated.csv +++ b/GO_enrichment_microbiome_output/contrast_laying_nonlaying_upregulated.csv @@ -4,3 +4,536 @@ "GO:0098662","inorganic cation transmembrane transport",5,4,1.58,4,"0.036","0.032","0.032" "GO:0022613","ribonucleoprotein complex biogenesis",3,3,0.95,1,"0.031","0.035","0.035" "GO:0055114","oxidation-reduction process",9,5,2.85,20,"0.116","0.055","0.055" +"GO:0046907","intracellular transport",16,7,5.06,39,"0.209","0.061","0.061" +"GO:0051649","establishment of localization in cell",16,7,5.06,40,"0.209","0.061","0.061" +"GO:1902531","regulation of intracellular signal trans...",7,4,2.22,24,"0.145","0.078","0.078" +"GO:0009966","regulation of signal transduction",10,5,3.17,27,"0.175","0.078","0.078" +"GO:0010646","regulation of cell communication",10,5,3.17,28,"0.175","0.078","0.078" +"GO:0023051","regulation of signaling",10,5,3.17,29,"0.175","0.078","0.078" +"GO:0006820","anion transport",7,3,2.22,141,"0.390","0.081","0.081" +"GO:0007399","nervous system development",14,8,4.43,5,"0.038","0.096","0.096" +"GO:0001654","eye development",4,3,1.27,9,"0.095","0.102","0.102" +"GO:0032870","cellular response to hormone stimulus",4,3,1.27,10,"0.095","0.102","0.102" +"GO:0048545","response to steroid hormone",4,3,1.27,11,"0.095","0.102","0.102" +"GO:0048878","chemical homeostasis",4,3,1.27,12,"0.095","0.102","0.102" +"GO:0048880","sensory system development",4,3,1.27,13,"0.095","0.102","0.102" +"GO:0050801","ion homeostasis",4,3,1.27,14,"0.095","0.102","0.102" +"GO:0071383","cellular response to steroid hormone sti...",4,3,1.27,15,"0.095","0.102","0.102" +"GO:0071396","cellular response to lipid",4,3,1.27,16,"0.095","0.102","0.102" +"GO:0071407","cellular response to organic cyclic comp...",4,3,1.27,17,"0.095","0.102","0.102" +"GO:0071495","cellular response to endogenous stimulus",4,3,1.27,18,"0.095","0.102","0.102" +"GO:0150063","visual system development",4,3,1.27,19,"0.095","0.102","0.102" +"GO:0015698","inorganic anion transport",3,2,0.95,47,"0.236","0.104","0.104" +"GO:1901565","organonitrogen compound catabolic proces...",8,4,2.53,42,"0.222","0.113","0.113" +"GO:0034613","cellular protein localization",10,4,3.17,156,"0.394","0.122","0.122" +"GO:0051641","cellular localization",22,8,6.96,139,"0.389","0.123","0.123" +"GO:0060560","developmental growth involved in morphog...",3,2,0.95,48,"0.236","0.125","0.125" +"GO:0010564","regulation of cell cycle process",3,1,0.95,248,"0.683","0.131","0.131" +"GO:0048589","developmental growth",8,4,2.53,43,"0.222","0.133","0.133" +"GO:0071702","organic substance transport",15,5,4.75,207,"0.544","0.134","0.134" +"GO:0030154","cell differentiation",15,8,4.75,7,"0.060","0.136","0.136" +"GO:0006629","lipid metabolic process",12,6,3.8,22,"0.139","0.138","0.138" +"GO:0015931","nucleobase-containing compound transport",5,2,1.58,180,"0.507","0.155","0.155" +"GO:0031503","protein-containing complex localization",5,2,1.58,181,"0.507","0.155","0.155" +"GO:0006952","defense response",5,2,1.58,182,"0.507","0.162","0.162" +"GO:0048869","cellular developmental process",17,9,5.38,6,"0.049","0.162","0.162" +"GO:0071705","nitrogen compound transport",14,4,4.43,325,"0.701","0.166","0.166" +"GO:0046578","regulation of Ras protein signal transdu...",3,2,0.95,49,"0.236","0.167","0.167" +"GO:0048638","regulation of developmental growth",3,2,0.95,50,"0.236","0.167","0.167" +"GO:0050808","synapse organization",3,2,0.95,51,"0.236","0.167","0.167" +"GO:0051056","regulation of small GTPase mediated sign...",3,2,0.95,52,"0.236","0.167","0.167" +"GO:0008152","metabolic process",128,46,40.51,8,"0.069","0.181","0.181" +"GO:0006643","membrane lipid metabolic process",3,2,0.95,53,"0.236","0.182","0.182" +"GO:0006665","sphingolipid metabolic process",3,2,0.95,54,"0.236","0.182","0.182" +"GO:0016042","lipid catabolic process",3,2,0.95,55,"0.236","0.182","0.182" +"GO:0097164","ammonium ion metabolic process",3,2,0.95,56,"0.236","0.182","0.182" +"GO:0044248","cellular catabolic process",13,6,4.11,37,"0.195","0.185","0.185" +"GO:0044267","cellular protein metabolic process",42,17,13.29,21,"0.119","0.188","0.188" +"GO:0006886","intracellular protein transport",8,3,2.53,172,"0.491","0.189","0.189" +"GO:0022008","neurogenesis",10,5,3.17,30,"0.175","0.194","0.194" +"GO:0034220","ion transmembrane transport",10,5,3.17,31,"0.175","0.194","0.194" +"GO:0048468","cell development",10,5,3.17,32,"0.175","0.194","0.194" +"GO:0000165","MAPK cascade",3,2,0.95,57,"0.236","0.199","0.199" +"GO:0009755","hormone-mediated signaling pathway",3,2,0.95,58,"0.236","0.199","0.199" +"GO:0009967","positive regulation of signal transducti...",3,2,0.95,59,"0.236","0.199","0.199" +"GO:0010647","positive regulation of cell communicatio...",3,2,0.95,60,"0.236","0.199","0.199" +"GO:0023014","signal transduction by protein phosphory...",3,2,0.95,61,"0.236","0.199","0.199" +"GO:0023056","positive regulation of signaling",3,2,0.95,62,"0.236","0.199","0.199" +"GO:0043401","steroid hormone mediated signaling pathw...",3,2,0.95,63,"0.236","0.199","0.199" +"GO:0043408","regulation of MAPK cascade",3,2,0.95,64,"0.236","0.199","0.199" +"GO:0040007","growth",9,4,2.85,93,"0.306","0.199","0.199" +"GO:0030001","metal ion transport",13,6,4.11,38,"0.195","0.200","0.200" +"GO:0051179","localization",69,22,21.84,206,"0.539","0.202","0.202" +"GO:0006611","protein export from nucleus",3,2,0.95,65,"0.236","0.205","0.205" +"GO:0071166","ribonucleoprotein complex localization",3,2,0.95,66,"0.236","0.205","0.205" +"GO:0071426","ribonucleoprotein complex export from nu...",3,2,0.95,67,"0.236","0.205","0.205" +"GO:0055065","metal ion homeostasis",3,2,0.95,68,"0.236","0.210","0.210" +"GO:0055080","cation homeostasis",3,2,0.95,69,"0.236","0.210","0.210" +"GO:0098771","inorganic ion homeostasis",3,2,0.95,70,"0.236","0.210","0.210" +"GO:0001932","regulation of protein phosphorylation",6,3,1.9,84,"0.285","0.223","0.223" +"GO:0009894","regulation of catabolic process",3,2,0.95,71,"0.236","0.225","0.225" +"GO:0031329","regulation of cellular catabolic process",3,2,0.95,72,"0.236","0.225","0.225" +"GO:0006405","RNA export from nucleus",4,2,1.27,108,"0.377","0.227","0.227" +"GO:0006913","nucleocytoplasmic transport",4,2,1.27,109,"0.377","0.227","0.227" +"GO:0050657","nucleic acid transport",4,2,1.27,110,"0.377","0.227","0.227" +"GO:0050658","RNA transport",4,2,1.27,111,"0.377","0.227","0.227" +"GO:0051168","nuclear export",4,2,1.27,112,"0.377","0.227","0.227" +"GO:0051169","nuclear transport",4,2,1.27,113,"0.377","0.227","0.227" +"GO:0051236","establishment of RNA localization",4,2,1.27,114,"0.377","0.227","0.227" +"GO:0009719","response to endogenous stimulus",5,3,1.58,33,"0.183","0.228","0.228" +"GO:0009725","response to hormone",5,3,1.58,34,"0.183","0.228","0.228" +"GO:0014070","response to organic cyclic compound",5,3,1.58,35,"0.183","0.228","0.228" +"GO:0070727","cellular macromolecule localization",11,4,3.48,166,"0.480","0.229","0.229" +"GO:0034660","ncRNA metabolic process",4,2,1.27,115,"0.377","0.231","0.231" +"GO:0008380","RNA splicing",5,3,1.58,36,"0.183","0.232","0.232" +"GO:0009607","response to biotic stimulus",4,2,1.27,116,"0.377","0.234","0.234" +"GO:0044255","cellular lipid metabolic process",10,4,3.17,157,"0.394","0.236","0.236" +"GO:0016049","cell growth",4,2,1.27,117,"0.377","0.242","0.242" +"GO:0006511","ubiquitin-dependent protein catabolic pr...",3,1,0.95,249,"0.683","0.250","0.250" +"GO:0019941","modification-dependent protein catabolic...",3,1,0.95,250,"0.683","0.250","0.250" +"GO:0030163","protein catabolic process",3,1,0.95,251,"0.683","0.250","0.250" +"GO:0043632","modification-dependent macromolecule cat...",3,1,0.95,252,"0.683","0.250","0.250" +"GO:0044257","cellular protein catabolic process",3,1,0.95,253,"0.683","0.250","0.250" +"GO:0051603","proteolysis involved in cellular protein...",3,1,0.95,254,"0.683","0.250","0.250" +"GO:0051234","establishment of localization",65,20,20.57,238,"0.631","0.254","0.254" +"GO:0000902","cell morphogenesis",7,3,2.22,142,"0.390","0.261","0.261" +"GO:0032989","cellular component morphogenesis",7,3,2.22,143,"0.390","0.261","0.261" +"GO:0018193","peptidyl-amino acid modification",6,3,1.9,85,"0.285","0.264","0.264" +"GO:0098656","anion transmembrane transport",5,2,1.58,183,"0.507","0.266","0.266" +"GO:0030182","neuron differentiation",8,4,2.53,44,"0.222","0.272","0.272" +"GO:0016192","vesicle-mediated transport",12,6,3.8,23,"0.139","0.277","0.277" +"GO:0006810","transport",64,20,20.26,219,"0.593","0.286","0.286" +"GO:0006468","protein phosphorylation",19,8,6.01,41,"0.218","0.286","0.286" +"GO:0006816","calcium ion transport",3,2,0.95,73,"0.236","0.290","0.290" +"GO:0009056","catabolic process",15,6,4.75,100,"0.324","0.291","0.291" +"GO:0006464","cellular protein modification process",32,13,10.13,25,"0.164","0.297","0.297" +"GO:0036211","protein modification process",32,13,10.13,26,"0.164","0.297","0.297" +"GO:0043010","camera-type eye development",3,2,0.95,74,"0.236","0.297","0.297" +"GO:0060041","retina development in camera-type eye",3,2,0.95,75,"0.236","0.297","0.297" +"GO:0006974","cellular response to DNA damage stimulus",3,2,0.95,76,"0.236","0.305","0.305" +"GO:0043603","cellular amide metabolic process",11,5,3.48,80,"0.243","0.306","0.306" +"GO:0007018","microtubule-based movement",3,1,0.95,255,"0.683","0.307","0.307" +"GO:0016197","endosomal transport",4,2,1.27,118,"0.377","0.316","0.316" +"GO:0007264","small GTPase mediated signal transductio...",4,2,1.27,119,"0.377","0.316","0.316" +"GO:0007265","Ras protein signal transduction",4,2,1.27,120,"0.377","0.316","0.316" +"GO:0040008","regulation of growth",4,2,1.27,121,"0.377","0.316","0.316" +"GO:0051960","regulation of nervous system development",4,2,1.27,122,"0.377","0.316","0.316" +"GO:0045184","establishment of protein localization",10,3,3.17,243,"0.665","0.318","0.318" +"GO:0051093","negative regulation of developmental pro...",4,2,1.27,123,"0.377","0.320","0.320" +"GO:0006812","cation transport",18,7,5.7,102,"0.328","0.327","0.327" +"GO:0019220","regulation of phosphate metabolic proces...",7,3,2.22,144,"0.390","0.329","0.329" +"GO:0042325","regulation of phosphorylation",7,3,2.22,145,"0.390","0.329","0.329" +"GO:0051174","regulation of phosphorus metabolic proce...",7,3,2.22,146,"0.390","0.329","0.329" +"GO:0051028","mRNA transport",3,1,0.95,256,"0.683","0.330","0.330" +"GO:0042592","homeostatic process",12,5,3.8,96,"0.318","0.333","0.333" +"GO:0043207","response to external biotic stimulus",3,1,0.95,257,"0.683","0.338","0.338" +"GO:0051707","response to other organism",3,1,0.95,258,"0.683","0.338","0.338" +"GO:0098542","defense response to other organism",3,1,0.95,259,"0.683","0.338","0.338" +"GO:0051239","regulation of multicellular organismal p...",15,6,4.75,101,"0.324","0.344","0.344" +"GO:0016310","phosphorylation",23,9,7.28,81,"0.277","0.346","0.346" +"GO:0006950","response to stress",18,7,5.7,103,"0.328","0.348","0.348" +"GO:0065008","regulation of biological quality",18,7,5.7,104,"0.328","0.348","0.348" +"GO:0017144","drug metabolic process",5,1,1.58,400,"0.854","0.348","0.348" +"GO:0034470","ncRNA processing",3,2,0.95,77,"0.236","0.352","0.352" +"GO:2000026","regulation of multicellular organismal d...",11,4,3.48,167,"0.480","0.352","0.352" +"GO:0007155","cell adhesion",6,2,1.9,225,"0.618","0.353","0.353" +"GO:0022610","biological adhesion",6,2,1.9,226,"0.618","0.353","0.353" +"GO:0015031","protein transport",9,3,2.85,211,"0.584","0.358","0.358" +"GO:0015833","peptide transport",9,3,2.85,212,"0.584","0.358","0.358" +"GO:0042886","amide transport",9,3,2.85,213,"0.584","0.358","0.358" +"GO:0010629","negative regulation of gene expression",4,2,1.27,124,"0.377","0.371","0.371" +"GO:0006520","cellular amino acid metabolic process",5,1,1.58,401,"0.854","0.380","0.380" +"GO:0007423","sensory organ development",6,3,1.9,86,"0.285","0.381","0.381" +"GO:0033993","response to lipid",6,3,1.9,87,"0.285","0.381","0.381" +"GO:0048666","neuron development",6,3,1.9,88,"0.285","0.381","0.381" +"GO:0071310","cellular response to organic substance",6,3,1.9,89,"0.285","0.381","0.381" +"GO:0048699","generation of neurons",9,4,2.85,94,"0.306","0.389","0.389" +"GO:0032268","regulation of cellular protein metabolic...",12,5,3.8,97,"0.318","0.392","0.392" +"GO:0051246","regulation of protein metabolic process",12,5,3.8,98,"0.318","0.392","0.392" +"GO:0019725","cellular homeostasis",6,1,1.9,432,"0.901","0.393","0.393" +"GO:0098657","import into cell",3,2,0.95,78,"0.236","0.394","0.394" +"GO:0016311","dephosphorylation",7,3,2.22,147,"0.390","0.404","0.404" +"GO:0044281","small molecule metabolic process",17,3,5.38,468,"0.948","0.404","0.404" +"GO:0009653","anatomical structure morphogenesis",16,6,5.06,155,"0.393","0.408","0.408" +"GO:0048583","regulation of response to stimulus",16,5,5.06,223,"0.613","0.408","0.408" +"GO:0015711","organic anion transport",4,1,1.27,344,"0.785","0.411","0.411" +"GO:0000375","RNA splicing, via transesterification re...",4,2,1.27,125,"0.377","0.416","0.416" +"GO:0000377","RNA splicing, via transesterification re...",4,2,1.27,126,"0.377","0.416","0.416" +"GO:0000398","mRNA splicing, via spliceosome",4,2,1.27,127,"0.377","0.416","0.416" +"GO:0006082","organic acid metabolic process",6,1,1.9,433,"0.901","0.418","0.418" +"GO:0019752","carboxylic acid metabolic process",6,1,1.9,434,"0.901","0.418","0.418" +"GO:0043436","oxoacid metabolic process",6,1,1.9,435,"0.901","0.418","0.418" +"GO:0051640","organelle localization",4,2,1.27,128,"0.377","0.421","0.421" +"GO:0016482","cytosolic transport",3,1,0.95,260,"0.683","0.423","0.423" +"GO:0042147","retrograde transport, endosome to Golgi",3,1,0.95,261,"0.683","0.423","0.423" +"GO:0043085","positive regulation of catalytic activit...",3,1,0.95,262,"0.683","0.423","0.423" +"GO:0019538","protein metabolic process",49,18,15.51,79,"0.242","0.423","0.423" +"GO:0035556","intracellular signal transduction",12,5,3.8,99,"0.318","0.431","0.431" +"GO:0050793","regulation of developmental process",12,4,3.8,209,"0.561","0.431","0.431" +"GO:0044237","cellular metabolic process",104,36,32.92,45,"0.226","0.432","0.432" +"GO:0006811","ion transport",27,9,8.55,179,"0.500","0.432","0.432" +"GO:0006366","transcription by RNA polymerase II",8,3,2.53,173,"0.491","0.436","0.436" +"GO:0007275","multicellular organism development",26,10,8.23,82,"0.280","0.440","0.440" +"GO:0008610","lipid biosynthetic process",5,2,1.58,184,"0.507","0.446","0.446" +"GO:1901575","organic substance catabolic process",13,4,4.11,240,"0.635","0.449","0.449" +"GO:0031175","neuron projection development",5,2,1.58,185,"0.507","0.458","0.458" +"GO:0032990","cell part morphogenesis",5,2,1.58,186,"0.507","0.458","0.458" +"GO:0048812","neuron projection morphogenesis",5,2,1.58,187,"0.507","0.458","0.458" +"GO:0048858","cell projection morphogenesis",5,2,1.58,188,"0.507","0.458","0.458" +"GO:0120039","plasma membrane bounded cell projection ...",5,2,1.58,189,"0.507","0.458","0.458" +"GO:0022603","regulation of anatomical structure morph...",6,2,1.9,227,"0.618","0.460","0.460" +"GO:1901605","alpha-amino acid metabolic process",4,1,1.27,345,"0.785","0.463","0.463" +"GO:0006412","translation",6,2,1.9,228,"0.618","0.465","0.465" +"GO:0043043","peptide biosynthetic process",6,2,1.9,229,"0.618","0.465","0.465" +"GO:0043604","amide biosynthetic process",6,2,1.9,230,"0.618","0.465","0.465" +"GO:0043412","macromolecule modification",35,13,11.08,83,"0.283","0.470","0.470" +"GO:0055085","transmembrane transport",30,8,9.5,388,"0.799","0.476","0.476" +"GO:0016071","mRNA metabolic process",6,3,1.9,90,"0.285","0.478","0.478" +"GO:0045454","cell redox homeostasis",4,0,1.27,479,"1.000","0.485","0.485" +"GO:0051276","chromosome organization",7,2,2.22,326,"0.709","0.486","0.486" +"GO:0048731","system development",22,9,6.96,46,"0.226","0.486","0.486" +"GO:0006518","peptide metabolic process",8,3,2.53,174,"0.491","0.489","0.489" +"GO:0006399","tRNA metabolic process",3,1,0.95,263,"0.683","0.493","0.493" +"GO:0046434","organophosphate catabolic process",5,2,1.58,190,"0.507","0.494","0.494" +"GO:0003333","amino acid transmembrane transport",3,1,0.95,264,"0.683","0.512","0.512" +"GO:0006865","amino acid transport",3,1,0.95,265,"0.683","0.512","0.512" +"GO:0015849","organic acid transport",3,1,0.95,266,"0.683","0.512","0.512" +"GO:0046942","carboxylic acid transport",3,1,0.95,267,"0.683","0.512","0.512" +"GO:1903825","organic acid transmembrane transport",3,1,0.95,268,"0.683","0.512","0.512" +"GO:1905039","carboxylic acid transmembrane transport",3,1,0.95,269,"0.683","0.512","0.512" +"GO:0022402","cell cycle process",5,1,1.58,402,"0.854","0.516","0.516" +"GO:0006396","RNA processing",9,4,2.85,95,"0.306","0.517","0.517" +"GO:0070838","divalent metal ion transport",4,2,1.27,129,"0.377","0.517","0.517" +"GO:0072511","divalent inorganic cation transport",4,2,1.27,130,"0.377","0.517","0.517" +"GO:0006403","RNA localization",5,2,1.58,191,"0.507","0.521","0.521" +"GO:0044093","positive regulation of molecular functio...",5,2,1.58,192,"0.507","0.521","0.521" +"GO:0006928","movement of cell or subcellular componen...",10,3,3.17,244,"0.665","0.522","0.522" +"GO:0031325","positive regulation of cellular metaboli...",10,4,3.17,158,"0.394","0.525","0.525" +"GO:0031399","regulation of protein modification proce...",10,4,3.17,159,"0.394","0.525","0.525" +"GO:0007267","cell-cell signaling",4,2,1.27,131,"0.377","0.528","0.528" +"GO:0032504","multicellular organism reproduction",4,2,1.27,132,"0.377","0.528","0.528" +"GO:0042493","response to drug",4,2,1.27,133,"0.377","0.528","0.528" +"GO:0048609","multicellular organismal reproductive pr...",4,2,1.27,134,"0.377","0.528","0.528" +"GO:1901700","response to oxygen-containing compound",4,2,1.27,135,"0.377","0.528","0.528" +"GO:0009890","negative regulation of biosynthetic proc...",5,2,1.58,193,"0.507","0.531","0.531" +"GO:0009968","negative regulation of signal transducti...",5,2,1.58,194,"0.507","0.531","0.531" +"GO:0010558","negative regulation of macromolecule bio...",5,2,1.58,195,"0.507","0.531","0.531" +"GO:0010648","negative regulation of cell communicatio...",5,2,1.58,196,"0.507","0.531","0.531" +"GO:0023057","negative regulation of signaling",5,2,1.58,197,"0.507","0.531","0.531" +"GO:0031327","negative regulation of cellular biosynth...",5,2,1.58,198,"0.507","0.531","0.531" +"GO:0051241","negative regulation of multicellular org...",5,2,1.58,199,"0.507","0.531","0.531" +"GO:2000113","negative regulation of cellular macromol...",5,2,1.58,200,"0.507","0.531","0.531" +"GO:0009790","embryo development",7,3,2.22,148,"0.390","0.534","0.534" +"GO:0006732","coenzyme metabolic process",3,0,0.95,480,"1.000","0.534","0.534" +"GO:0051186","cofactor metabolic process",3,0,0.95,481,"1.000","0.534","0.534" +"GO:0042221","response to chemical",18,6,5.7,205,"0.530","0.534","0.534" +"GO:1901564","organonitrogen compound metabolic proces...",62,21,19.62,138,"0.386","0.535","0.535" +"GO:0048856","anatomical structure development",28,10,8.86,137,"0.384","0.535","0.535" +"GO:0009987","cellular process",151,45,47.79,398,"0.851","0.544","0.544" +"GO:0032269","negative regulation of cellular protein ...",7,3,2.22,149,"0.390","0.548","0.548" +"GO:0033554","cellular response to stress",7,3,2.22,150,"0.390","0.548","0.548" +"GO:0051248","negative regulation of protein metabolic...",7,3,2.22,151,"0.390","0.548","0.548" +"GO:0001775","cell activation",3,1,0.95,270,"0.683","0.550","0.550" +"GO:0045321","leukocyte activation",3,1,0.95,271,"0.683","0.550","0.550" +"GO:0098609","cell-cell adhesion",3,1,0.95,272,"0.683","0.550","0.550" +"GO:0009893","positive regulation of metabolic process",11,4,3.48,168,"0.480","0.552","0.552" +"GO:0007017","microtubule-based process",5,1,1.58,403,"0.854","0.554","0.554" +"GO:0048585","negative regulation of response to stimu...",7,2,2.22,327,"0.709","0.555","0.555" +"GO:0044282","small molecule catabolic process",4,1,1.27,346,"0.785","0.562","0.562" +"GO:0009064","glutamine family amino acid metabolic pr...",3,0,0.95,482,"1.000","0.563","0.563" +"GO:0006793","phosphorus metabolic process",33,12,10.44,105,"0.329","0.565","0.565" +"GO:0006796","phosphate-containing compound metabolic ...",33,12,10.44,106,"0.329","0.565","0.565" +"GO:0006473","protein acetylation",3,1,0.95,273,"0.683","0.569","0.569" +"GO:0006475","internal protein amino acid acetylation",3,1,0.95,274,"0.683","0.569","0.569" +"GO:0016573","histone acetylation",3,1,0.95,275,"0.683","0.569","0.569" +"GO:0018205","peptidyl-lysine modification",3,1,0.95,276,"0.683","0.569","0.569" +"GO:0018393","internal peptidyl-lysine acetylation",3,1,0.95,277,"0.683","0.569","0.569" +"GO:0018394","peptidyl-lysine acetylation",3,1,0.95,278,"0.683","0.569","0.569" +"GO:0008104","protein localization",14,5,4.43,164,"0.471","0.570","0.570" +"GO:0006325","chromatin organization",4,1,1.27,347,"0.785","0.578","0.578" +"GO:0016569","covalent chromatin modification",4,1,1.27,348,"0.785","0.578","0.578" +"GO:0016570","histone modification",4,1,1.27,349,"0.785","0.578","0.578" +"GO:0010604","positive regulation of macromolecule met...",9,3,2.85,214,"0.584","0.580","0.580" +"GO:0032501","multicellular organismal process",29,10,9.18,161,"0.438","0.582","0.582" +"GO:0022604","regulation of cell morphogenesis",3,1,0.95,279,"0.683","0.598","0.598" +"GO:0045596","negative regulation of cell differentiat...",3,1,0.95,280,"0.683","0.598","0.598" +"GO:0048863","stem cell differentiation",3,1,0.95,281,"0.683","0.598","0.598" +"GO:0032259","methylation",3,0,0.95,483,"1.000","0.602","0.602" +"GO:0006457","protein folding",3,1,0.95,282,"0.683","0.608","0.608" +"GO:0009057","macromolecule catabolic process",4,1,1.27,350,"0.785","0.618","0.618" +"GO:0044265","cellular macromolecule catabolic process",4,1,1.27,351,"0.785","0.618","0.618" +"GO:0010033","response to organic substance",11,4,3.48,169,"0.480","0.621","0.621" +"GO:0019439","aromatic compound catabolic process",5,1,1.58,404,"0.854","0.621","0.621" +"GO:0044270","cellular nitrogen compound catabolic pro...",5,1,1.58,405,"0.854","0.621","0.621" +"GO:0046700","heterocycle catabolic process",5,1,1.58,406,"0.854","0.621","0.621" +"GO:0055086","nucleobase-containing small molecule met...",5,1,1.58,407,"0.854","0.621","0.621" +"GO:0044283","small molecule biosynthetic process",5,0,1.58,484,"1.000","0.621","0.621" +"GO:0006644","phospholipid metabolic process",6,2,1.9,231,"0.618","0.623","0.623" +"GO:0032502","developmental process",30,10,9.5,177,"0.492","0.627","0.627" +"GO:0019953","sexual reproduction",3,1,0.95,283,"0.683","0.631","0.631" +"GO:0044703","multi-organism reproductive process",3,1,0.95,284,"0.683","0.631","0.631" +"GO:0007420","brain development",6,3,1.9,91,"0.285","0.633","0.633" +"GO:0060322","head development",6,3,1.9,92,"0.285","0.633","0.633" +"GO:0032880","regulation of protein localization",3,1,0.95,285,"0.683","0.634","0.634" +"GO:0043066","negative regulation of apoptotic process",3,1,0.95,286,"0.683","0.634","0.634" +"GO:0043069","negative regulation of programmed cell d...",3,1,0.95,287,"0.683","0.634","0.634" +"GO:0019637","organophosphate metabolic process",12,4,3.8,210,"0.561","0.641","0.641" +"GO:0048518","positive regulation of biological proces...",23,7,7.28,242,"0.636","0.641","0.641" +"GO:0044238","primary metabolic process",106,35,33.55,154,"0.391","0.643","0.643" +"GO:0010557","positive regulation of macromolecule bio...",6,2,1.9,232,"0.618","0.646","0.646" +"GO:0010628","positive regulation of gene expression",6,1,1.9,436,"0.901","0.646","0.646" +"GO:0031328","positive regulation of cellular biosynth...",6,2,1.9,233,"0.618","0.646","0.646" +"GO:0045935","positive regulation of nucleobase-contai...",6,2,1.9,234,"0.618","0.646","0.646" +"GO:0019222","regulation of metabolic process",36,11,11.39,239,"0.631","0.649","0.649" +"GO:0048523","negative regulation of cellular process",20,7,6.33,162,"0.456","0.652","0.652" +"GO:0048519","negative regulation of biological proces...",22,8,6.96,140,"0.389","0.652","0.652" +"GO:0051704","multi-organism process",7,2,2.22,328,"0.709","0.655","0.655" +"GO:0071840","cellular component organization or bioge...",31,11,9.81,136,"0.381","0.663","0.663" +"GO:0033036","macromolecule localization",16,5,5.06,224,"0.613","0.664","0.664" +"GO:0045595","regulation of cell differentiation",6,2,1.9,235,"0.618","0.665","0.665" +"GO:0048584","positive regulation of response to stimu...",6,2,1.9,236,"0.618","0.665","0.665" +"GO:0001568","blood vessel development",3,1,0.95,288,"0.683","0.669","0.669" +"GO:0001944","vasculature development",3,1,0.95,289,"0.683","0.669","0.669" +"GO:0048514","blood vessel morphogenesis",3,1,0.95,290,"0.683","0.669","0.669" +"GO:0072358","cardiovascular system development",3,1,0.95,291,"0.683","0.669","0.669" +"GO:0070887","cellular response to chemical stimulus",8,3,2.53,175,"0.491","0.672","0.672" +"GO:0009611","response to wounding",3,1,0.95,292,"0.683","0.679","0.679" +"GO:0042060","wound healing",3,1,0.95,293,"0.683","0.679","0.679" +"GO:0045664","regulation of neuron differentiation",3,1,0.95,294,"0.683","0.682","0.682" +"GO:0050767","regulation of neurogenesis",3,1,0.95,295,"0.683","0.682","0.682" +"GO:0030030","cell projection organization",7,2,2.22,329,"0.709","0.685","0.685" +"GO:0044087","regulation of cellular component biogene...",7,2,2.22,330,"0.709","0.685","0.685" +"GO:0120036","plasma membrane bounded cell projection ...",7,2,2.22,331,"0.709","0.685","0.685" +"GO:0006753","nucleoside phosphate metabolic process",4,1,1.27,352,"0.785","0.685","0.685" +"GO:0009117","nucleotide metabolic process",4,1,1.27,353,"0.785","0.685","0.685" +"GO:1901135","carbohydrate derivative metabolic proces...",4,0,1.27,485,"1.000","0.685","0.685" +"GO:0051173","positive regulation of nitrogen compound...",8,3,2.53,176,"0.491","0.687","0.687" +"GO:0000278","mitotic cell cycle",3,1,0.95,296,"0.683","0.695","0.695" +"GO:0007346","regulation of mitotic cell cycle",3,1,0.95,297,"0.683","0.695","0.695" +"GO:0045893","positive regulation of transcription, DN...",5,1,1.58,408,"0.854","0.696","0.696" +"GO:0051254","positive regulation of RNA metabolic pro...",5,1,1.58,409,"0.854","0.696","0.696" +"GO:0051726","regulation of cell cycle",5,1,1.58,410,"0.854","0.696","0.696" +"GO:1902680","positive regulation of RNA biosynthetic ...",5,1,1.58,411,"0.854","0.696","0.696" +"GO:1903508","positive regulation of nucleic acid-temp...",5,1,1.58,412,"0.854","0.696","0.696" +"GO:0006259","DNA metabolic process",7,3,2.22,152,"0.390","0.697","0.697" +"GO:0005975","carbohydrate metabolic process",4,0,1.27,486,"1.000","0.701","0.701" +"GO:0050794","regulation of cellular process",71,19,22.47,428,"0.892","0.707","0.707" +"GO:0044260","cellular macromolecule metabolic process",71,24,22.47,107,"0.373","0.708","0.708" +"GO:0044085","cellular component biogenesis",14,5,4.43,165,"0.471","0.717","0.717" +"GO:0006979","response to oxidative stress",3,1,0.95,298,"0.683","0.717","0.717" +"GO:0006813","potassium ion transport",5,2,1.58,201,"0.507","0.718","0.718" +"GO:1901576","organic substance biosynthetic process",48,12,15.19,448,"0.905","0.720","0.720" +"GO:0006397","mRNA processing",5,2,1.58,202,"0.507","0.723","0.723" +"GO:0051129","negative regulation of cellular componen...",5,1,1.58,413,"0.854","0.728","0.728" +"GO:0031400","negative regulation of protein modificat...",5,2,1.58,203,"0.507","0.730","0.730" +"GO:0022607","cellular component assembly",13,4,4.11,241,"0.635","0.735","0.735" +"GO:0007166","cell surface receptor signaling pathway",8,2,2.53,340,"0.781","0.738","0.738" +"GO:0043086","negative regulation of catalytic activit...",4,1,1.27,354,"0.785","0.744","0.744" +"GO:0044092","negative regulation of molecular functio...",4,1,1.27,355,"0.785","0.744","0.744" +"GO:0060548","negative regulation of cell death",4,1,1.27,356,"0.785","0.744","0.744" +"GO:0016055","Wnt signaling pathway",3,1,0.95,299,"0.683","0.745","0.745" +"GO:0198738","cell-cell signaling by wnt",3,1,0.95,300,"0.683","0.745","0.745" +"GO:1905114","cell surface receptor signaling pathway ...",3,1,0.95,301,"0.683","0.745","0.745" +"GO:0045944","positive regulation of transcription by ...",4,1,1.27,357,"0.785","0.750","0.750" +"GO:0060284","regulation of cell development",4,1,1.27,358,"0.785","0.750","0.750" +"GO:0002376","immune system process",7,1,2.22,460,"0.933","0.750","0.750" +"GO:0007165","signal transduction",33,9,10.44,342,"0.783","0.751","0.751" +"GO:0080090","regulation of primary metabolic process",33,9,10.44,343,"0.783","0.751","0.751" +"GO:0044271","cellular nitrogen compound biosynthetic ...",39,10,12.34,423,"0.861","0.752","0.752" +"GO:0009116","nucleoside metabolic process",3,0,0.95,487,"1.000","0.754","0.754" +"GO:0034404","nucleobase-containing small molecule bio...",3,0,0.95,488,"1.000","0.754","0.754" +"GO:0034655","nucleobase-containing compound catabolic...",3,0,0.95,489,"1.000","0.754","0.754" +"GO:1901657","glycosyl compound metabolic process",3,0,0.95,490,"1.000","0.754","0.754" +"GO:0009058","biosynthetic process",50,12,15.83,466,"0.935","0.754","0.754" +"GO:0009889","regulation of biosynthetic process",29,7,9.18,425,"0.876","0.757","0.757" +"GO:1901566","organonitrogen compound biosynthetic pro...",13,3,4.11,397,"0.839","0.763","0.763" +"GO:0019438","aromatic compound biosynthetic process",33,8,10.44,427,"0.886","0.764","0.764" +"GO:0048522","positive regulation of cellular process",17,5,5.38,247,"0.675","0.765","0.765" +"GO:0000226","microtubule cytoskeleton organization",3,1,0.95,302,"0.683","0.766","0.766" +"GO:0010562","positive regulation of phosphorus metabo...",3,1,0.95,303,"0.683","0.766","0.766" +"GO:0042327","positive regulation of phosphorylation",3,1,0.95,304,"0.683","0.766","0.766" +"GO:0045937","positive regulation of phosphate metabol...",3,1,0.95,305,"0.683","0.766","0.766" +"GO:0051301","cell division",3,1,0.95,306,"0.683","0.766","0.766" +"GO:0006725","cellular aromatic compound metabolic pro...",53,15,16.78,339,"0.779","0.768","0.768" +"GO:0006357","regulation of transcription by RNA polym...",7,2,2.22,332,"0.709","0.770","0.770" +"GO:0018130","heterocycle biosynthetic process",34,8,10.76,449,"0.907","0.776","0.776" +"GO:1901362","organic cyclic compound biosynthetic pro...",34,8,10.76,450,"0.907","0.776","0.776" +"GO:0046483","heterocycle metabolic process",54,15,17.09,389,"0.808","0.777","0.777" +"GO:1901360","organic cyclic compound metabolic proces...",54,15,17.09,390,"0.808","0.777","0.777" +"GO:1902532","negative regulation of intracellular sig...",3,1,0.95,307,"0.683","0.780","0.780" +"GO:0015672","monovalent inorganic cation transport",9,3,2.85,215,"0.584","0.786","0.786" +"GO:0031323","regulation of cellular metabolic process",34,10,10.76,324,"0.689","0.787","0.787" +"GO:0071704","organic substance metabolic process",112,35,35.45,221,"0.609","0.790","0.790" +"GO:0043933","protein-containing complex subunit organ...",10,3,3.17,245,"0.665","0.792","0.792" +"GO:0065003","protein-containing complex assembly",10,3,3.17,246,"0.665","0.792","0.792" +"GO:0007409","axonogenesis",4,1,1.27,359,"0.785","0.796","0.796" +"GO:0031344","regulation of cell projection organizati...",4,1,1.27,360,"0.785","0.796","0.796" +"GO:0032535","regulation of cellular component size",4,1,1.27,361,"0.785","0.796","0.796" +"GO:0048667","cell morphogenesis involved in neuron di...",4,1,1.27,362,"0.785","0.796","0.796" +"GO:0061564","axon development",4,1,1.27,363,"0.785","0.796","0.796" +"GO:0090066","regulation of anatomical structure size",4,1,1.27,364,"0.785","0.796","0.796" +"GO:0120035","regulation of plasma membrane bounded ce...",4,1,1.27,365,"0.785","0.796","0.796" +"GO:0016043","cellular component organization",30,10,9.5,178,"0.492","0.796","0.796" +"GO:0010035","response to inorganic substance",4,1,1.27,366,"0.785","0.801","0.801" +"GO:0010605","negative regulation of macromolecule met...",9,3,2.85,216,"0.584","0.801","0.801" +"GO:0051172","negative regulation of nitrogen compound...",9,3,2.85,217,"0.584","0.801","0.801" +"GO:0031324","negative regulation of cellular metaboli...",10,4,3.17,160,"0.394","0.805","0.805" +"GO:0051240","positive regulation of multicellular org...",9,2,2.85,392,"0.837","0.805","0.805" +"GO:0006807","nitrogen compound metabolic process",100,32,31.65,204,"0.517","0.808","0.808" +"GO:0007417","central nervous system development",7,3,2.22,153,"0.390","0.808","0.808" +"GO:0050790","regulation of catalytic activity",9,2,2.85,393,"0.837","0.811","0.811" +"GO:0050789","regulation of biological process",76,19,24.06,471,"0.956","0.817","0.817" +"GO:0042981","regulation of apoptotic process",5,1,1.58,414,"0.854","0.817","0.817" +"GO:0043067","regulation of programmed cell death",5,1,1.58,415,"0.854","0.817","0.817" +"GO:0000122","negative regulation of transcription by ...",3,1,0.95,308,"0.683","0.818","0.818" +"GO:0002520","immune system development",3,1,0.95,309,"0.683","0.818","0.818" +"GO:0010563","negative regulation of phosphorus metabo...",3,1,0.95,310,"0.683","0.818","0.818" +"GO:0030097","hemopoiesis",3,1,0.95,311,"0.683","0.818","0.818" +"GO:0045597","positive regulation of cell differentiat...",3,1,0.95,312,"0.683","0.818","0.818" +"GO:0045892","negative regulation of transcription, DN...",3,1,0.95,313,"0.683","0.818","0.818" +"GO:0045936","negative regulation of phosphate metabol...",3,1,0.95,314,"0.683","0.818","0.818" +"GO:0048534","hematopoietic or lymphoid organ developm...",3,1,0.95,315,"0.683","0.818","0.818" +"GO:0048872","homeostasis of number of cells",3,1,0.95,316,"0.683","0.818","0.818" +"GO:0051253","negative regulation of RNA metabolic pro...",3,1,0.95,317,"0.683","0.818","0.818" +"GO:1902679","negative regulation of RNA biosynthetic ...",3,1,0.95,318,"0.683","0.818","0.818" +"GO:1903507","negative regulation of nucleic acid-temp...",3,1,0.95,319,"0.683","0.818","0.818" +"GO:0007154","cell communication",35,10,11.08,336,"0.731","0.821","0.821" +"GO:0023052","signaling",35,11,11.08,218,"0.584","0.821","0.821" +"GO:0034641","cellular nitrogen compound metabolic pro...",61,19,19.31,220,"0.600","0.827","0.827" +"GO:0006996","organelle organization",18,5,5.7,335,"0.731","0.833","0.833" +"GO:0040011","locomotion",7,1,2.22,461,"0.933","0.841","0.841" +"GO:0048646","anatomical structure formation involved ...",7,1,2.22,462,"0.933","0.841","0.841" +"GO:0051094","positive regulation of developmental pro...",7,1,2.22,463,"0.933","0.841","0.841" +"GO:0010038","response to metal ion",3,1,0.95,320,"0.683","0.847","0.847" +"GO:0008219","cell death",7,1,2.22,464,"0.933","0.851","0.851" +"GO:0043543","protein acylation",4,1,1.27,367,"0.785","0.857","0.857" +"GO:0043170","macromolecule metabolic process",89,29,28.17,163,"0.460","0.857","0.857" +"GO:0044249","cellular biosynthetic process",46,11,14.56,456,"0.929","0.865","0.865" +"GO:0051128","regulation of cellular component organiz...",11,4,3.48,170,"0.480","0.867","0.867" +"GO:0006915","apoptotic process",6,1,1.9,437,"0.901","0.868","0.868" +"GO:0010941","regulation of cell death",6,1,1.9,438,"0.901","0.868","0.868" +"GO:0012501","programmed cell death",6,1,1.9,439,"0.901","0.868","0.868" +"GO:0000904","cell morphogenesis involved in different...",5,1,1.58,416,"0.854","0.868","0.868" +"GO:0046486","glycerolipid metabolic process",4,1,1.27,368,"0.785","0.870","0.870" +"GO:0007010","cytoskeleton organization",6,1,1.9,440,"0.901","0.872","0.872" +"GO:0016477","cell migration",6,1,1.9,441,"0.901","0.872","0.872" +"GO:0034622","cellular protein-containing complex asse...",6,2,1.9,237,"0.618","0.872","0.872" +"GO:0048870","cell motility",6,1,1.9,442,"0.901","0.872","0.872" +"GO:0051674","localization of cell",6,1,1.9,443,"0.901","0.872","0.872" +"GO:0065007","biological regulation",79,20,25,469,"0.953","0.873","0.873" +"GO:0050896","response to stimulus",55,16,17.41,338,"0.737","0.874","0.874" +"GO:0031401","positive regulation of protein modificat...",4,1,1.27,369,"0.785","0.878","0.878" +"GO:0032270","positive regulation of cellular protein ...",4,1,1.27,370,"0.785","0.878","0.878" +"GO:0051247","positive regulation of protein metabolic...",4,1,1.27,371,"0.785","0.878","0.878" +"GO:0051259","protein complex oligomerization",4,1,1.27,372,"0.785","0.882","0.882" +"GO:0051260","protein homooligomerization",4,1,1.27,373,"0.785","0.882","0.882" +"GO:0051270","regulation of cellular component movemen...",4,1,1.27,374,"0.785","0.882","0.882" +"GO:0006814","sodium ion transport",4,1,1.27,375,"0.785","0.887","0.887" +"GO:0009791","post-embryonic development",4,1,1.27,376,"0.785","0.887","0.887" +"GO:0030029","actin filament-based process",5,1,1.58,417,"0.854","0.892","0.892" +"GO:0051336","regulation of hydrolase activity",5,0,1.58,491,"1.000","0.892","0.892" +"GO:0006351","transcription, DNA-templated",27,6,8.55,451,"0.914","0.897","0.897" +"GO:0032774","RNA biosynthetic process",27,6,8.55,452,"0.914","0.897","0.897" +"GO:0097659","nucleic acid-templated transcription",27,6,8.55,453,"0.914","0.897","0.897" +"GO:0034645","cellular macromolecule biosynthetic proc...",37,9,11.71,430,"0.896","0.898","0.898" +"GO:0006139","nucleobase-containing compound metabolic...",49,13,15.51,399,"0.853","0.898","0.898" +"GO:0032879","regulation of localization",7,2,2.22,333,"0.709","0.905","0.905" +"GO:0009892","negative regulation of metabolic process",11,4,3.48,171,"0.480","0.905","0.905" +"GO:0051171","regulation of nitrogen compound metaboli...",32,8,10.13,424,"0.861","0.907","0.907" +"GO:0006066","alcohol metabolic process",3,0,0.95,492,"1.000","0.909","0.909" +"GO:0009059","macromolecule biosynthetic process",38,9,12.03,454,"0.915","0.911","0.911" +"GO:0032970","regulation of actin filament-based proce...",4,1,1.27,377,"0.785","0.913","0.913" +"GO:0042127","regulation of cell proliferation",4,1,1.27,378,"0.785","0.913","0.913" +"GO:0072359","circulatory system development",4,1,1.27,379,"0.785","0.913","0.913" +"GO:0006935","chemotaxis",4,0,1.27,493,"1.000","0.913","0.913" +"GO:0030036","actin cytoskeleton organization",4,0,1.27,494,"1.000","0.913","0.913" +"GO:0042330","taxis",4,0,1.27,495,"1.000","0.913","0.913" +"GO:0051258","protein polymerization",4,0,1.27,496,"1.000","0.913","0.913" +"GO:0097435","supramolecular fiber organization",4,0,1.27,497,"1.000","0.913","0.913" +"GO:0045934","negative regulation of nucleobase-contai...",4,1,1.27,380,"0.785","0.924","0.924" +"GO:0048568","embryonic organ development",4,1,1.27,381,"0.785","0.924","0.924" +"GO:0050673","epithelial cell proliferation",4,1,1.27,382,"0.785","0.924","0.924" +"GO:0001701","in utero embryonic development",3,1,0.95,321,"0.683","0.925","0.925" +"GO:0044057","regulation of system process",3,1,0.95,322,"0.683","0.925","0.925" +"GO:0048513","animal organ development",15,5,4.75,208,"0.544","0.927","0.927" +"GO:0034654","nucleobase-containing compound biosynthe...",31,7,9.81,455,"0.920","0.927","0.927" +"GO:0090407","organophosphate biosynthetic process",4,0,1.27,498,"1.000","0.927","0.927" +"GO:0010468","regulation of gene expression",28,5,8.86,474,"0.976","0.929","0.929" +"GO:0010556","regulation of macromolecule biosynthetic...",28,6,8.86,457,"0.932","0.929","0.929" +"GO:0031326","regulation of cellular biosynthetic proc...",28,6,8.86,458,"0.932","0.929","0.929" +"GO:2000112","regulation of cellular macromolecule bio...",28,6,8.86,459,"0.932","0.929","0.929" +"GO:0051606","detection of stimulus",3,1,0.95,323,"0.683","0.931","0.931" +"GO:0002682","regulation of immune system process",5,1,1.58,418,"0.854","0.933","0.933" +"GO:0006887","exocytosis",3,0,0.95,499,"1.000","0.935","0.935" +"GO:0007015","actin filament organization",3,0,0.95,500,"1.000","0.935","0.935" +"GO:0008064","regulation of actin polymerization or de...",3,0,0.95,501,"1.000","0.935","0.935" +"GO:0008154","actin polymerization or depolymerization",3,0,0.95,502,"1.000","0.935","0.935" +"GO:0008284","positive regulation of cell proliferatio...",3,0,0.95,503,"1.000","0.935","0.935" +"GO:0030031","cell projection assembly",3,0,0.95,504,"1.000","0.935","0.935" +"GO:0030041","actin filament polymerization",3,0,0.95,505,"1.000","0.935","0.935" +"GO:0030334","regulation of cell migration",3,0,0.95,506,"1.000","0.935","0.935" +"GO:0030832","regulation of actin filament length",3,0,0.95,507,"1.000","0.935","0.935" +"GO:0030833","regulation of actin filament polymerizat...",3,0,0.95,508,"1.000","0.935","0.935" +"GO:0032271","regulation of protein polymerization",3,0,0.95,509,"1.000","0.935","0.935" +"GO:0032940","secretion by cell",3,0,0.95,510,"1.000","0.935","0.935" +"GO:0032956","regulation of actin cytoskeleton organiz...",3,0,0.95,511,"1.000","0.935","0.935" +"GO:0040012","regulation of locomotion",3,0,0.95,512,"1.000","0.935","0.935" +"GO:0043254","regulation of protein complex assembly",3,0,0.95,513,"1.000","0.935","0.935" +"GO:0051493","regulation of cytoskeleton organization",3,0,0.95,514,"1.000","0.935","0.935" +"GO:0060491","regulation of cell projection assembly",3,0,0.95,515,"1.000","0.935","0.935" +"GO:0110053","regulation of actin filament organizatio...",3,0,0.95,516,"1.000","0.935","0.935" +"GO:0120031","plasma membrane bounded cell projection ...",3,0,0.95,517,"1.000","0.935","0.935" +"GO:0120032","regulation of plasma membrane bounded ce...",3,0,0.95,518,"1.000","0.935","0.935" +"GO:1902903","regulation of supramolecular fiber organ...",3,0,0.95,519,"1.000","0.935","0.935" +"GO:2000145","regulation of cell motility",3,0,0.95,520,"1.000","0.935","0.935" +"GO:0009628","response to abiotic stimulus",4,1,1.27,383,"0.785","0.937","0.937" +"GO:0009891","positive regulation of biosynthetic proc...",7,2,2.22,334,"0.709","0.937","0.937" +"GO:0007049","cell cycle",9,1,2.85,473,"0.970","0.945","0.945" +"GO:0006955","immune response",4,0,1.27,521,"1.000","0.946","0.946" +"GO:0065009","regulation of molecular function",11,3,3.48,337,"0.734","0.948","0.948" +"GO:0060255","regulation of macromolecule metabolic pr...",34,9,10.76,391,"0.817","0.951","0.951" +"GO:0051716","cellular response to stimulus",42,13,13.29,222,"0.610","0.956","0.956" +"GO:1901615","organic hydroxy compound metabolic proce...",5,0,1.58,522,"1.000","0.956","0.956" +"GO:0016070","RNA metabolic process",37,9,11.71,431,"0.896","0.958","0.958" +"GO:0050776","regulation of immune response",3,0,0.95,523,"1.000","0.959","0.959" +"GO:0009605","response to external stimulus",10,2,3.17,426,"0.881","0.966","0.966" +"GO:0010467","gene expression",44,11,13.93,429,"0.895","0.967","0.967" +"GO:1901361","organic cyclic compound catabolic proces...",6,1,1.9,444,"0.901","0.971","0.971" +"GO:0006650","glycerophospholipid metabolic process",3,0,0.95,524,"1.000","0.979","0.979" +"GO:0045165","cell fate commitment",3,0,0.95,525,"1.000","0.979","0.979" +"GO:0048608","reproductive structure development",3,0,0.95,526,"1.000","0.979","0.979" +"GO:0061458","reproductive system development",3,0,0.95,527,"1.000","0.979","0.979" +"GO:0006355","regulation of transcription, DNA-templat...",24,4,7.6,475,"0.977","0.981","0.981" +"GO:1903506","regulation of nucleic acid-templated tra...",24,4,7.6,476,"0.977","0.981","0.981" +"GO:2001141","regulation of RNA biosynthetic process",24,4,7.6,477,"0.977","0.981","0.981" +"GO:0090304","nucleic acid metabolic process",45,12,14.24,396,"0.838","0.983","0.983" +"GO:0003008","system process",6,1,1.9,445,"0.901","0.984","0.984" +"GO:0051252","regulation of RNA metabolic process",25,4,7.91,478,"0.983","0.984","0.984" +"GO:0022414","reproductive process",8,2,2.53,341,"0.781","0.985","0.985" +"GO:0007186","G protein-coupled receptor signaling pat...",9,2,2.85,394,"0.837","0.986","0.986" +"GO:0007610","behavior",5,1,1.58,419,"0.854","0.986","0.986" +"GO:0019219","regulation of nucleobase-containing comp...",27,5,8.55,472,"0.968","0.988","0.988" +"GO:0050877","nervous system process",4,0,1.27,528,"1.000","0.989","0.989" +"GO:0009888","tissue development",8,1,2.53,470,"0.955","0.991","0.991" +"GO:0009612","response to mechanical stimulus",3,0,0.95,529,"1.000","0.992","0.992" +"GO:0008283","cell proliferation",7,1,2.22,465,"0.933","0.992","0.992" +"GO:0009792","embryo development ending in birth or eg...",4,1,1.27,384,"0.785","0.993","0.993" +"GO:0043009","chordate embryonic development",4,1,1.27,385,"0.785","0.993","0.993" +"GO:0051049","regulation of transport",4,1,1.27,386,"0.785","0.993","0.993" +"GO:0035239","tube morphogenesis",6,1,1.9,446,"0.901","0.994","0.994" +"GO:0035295","tube development",6,1,1.9,447,"0.901","0.994","0.994" +"GO:0000003","reproduction",9,2,2.85,395,"0.837","0.994","0.994" +"GO:0009887","animal organ morphogenesis",5,1,1.58,420,"0.854","0.995","0.995" +"GO:0033043","regulation of organelle organization",5,1,1.58,421,"0.854","0.995","0.995" +"GO:0051130","positive regulation of cellular componen...",5,1,1.58,422,"0.854","0.995","0.995" +"GO:0010638","positive regulation of organelle organiz...",4,1,1.27,387,"0.785","0.995","0.995" +"GO:0002009","morphogenesis of an epithelium",4,0,1.27,530,"1.000","0.996","0.996" +"GO:0048729","tissue morphogenesis",4,0,1.27,531,"1.000","0.996","0.996" +"GO:0060429","epithelium development",4,0,1.27,532,"1.000","0.996","0.996" +"GO:0003006","developmental process involved in reprod...",5,0,1.58,533,"1.000","0.997","0.997" +"GO:0006081","cellular aldehyde metabolic process",3,0,0.95,534,"1.000","0.997","0.997" +"GO:0048598","embryonic morphogenesis",3,0,0.95,535,"1.000","0.997","0.997" +"GO:0060562","epithelial tube morphogenesis",3,0,0.95,536,"1.000","0.997","0.997" +"GO:0046903","secretion",4,0,1.27,537,"1.000","0.997","0.997" +"GO:0006508","proteolysis",12,2,3.8,467,"0.937","1.000","1.000" +"GO:0008150","biological_process",218,69,69,538,"1.000","1.000","1.000" diff --git a/GO_enrichment_microbiome_output/contrast_laying_postlaying_downregulated.csv b/GO_enrichment_microbiome_output/contrast_laying_postlaying_downregulated.csv index 5523575..960b450 100644 --- a/GO_enrichment_microbiome_output/contrast_laying_postlaying_downregulated.csv +++ b/GO_enrichment_microbiome_output/contrast_laying_postlaying_downregulated.csv @@ -4,3 +4,599 @@ "GO:0009057","macromolecule catabolic process",4,2,1.07,45,"0.292","0.026","0.026" "GO:0044238","primary metabolic process",112,30,30.01,156,"0.564","0.026","0.026" "GO:0010256","endomembrane system organization",3,3,0.8,1,"0.018","0.034","0.034" +"GO:1903047","mitotic cell cycle process",6,4,1.61,2,"0.045","0.035","0.035" +"GO:0006793","phosphorus metabolic process",35,9,9.38,281,"0.636","0.038","0.038" +"GO:0006796","phosphate-containing compound metabolic ...",35,9,9.38,282,"0.636","0.038","0.038" +"GO:1901135","carbohydrate derivative metabolic proces...",12,4,3.22,106,"0.407","0.045","0.045" +"GO:0043549","regulation of kinase activity",6,2,1.61,122,"0.510","0.053","0.053" +"GO:0045859","regulation of protein kinase activity",6,2,1.61,123,"0.510","0.053","0.053" +"GO:0051338","regulation of transferase activity",6,2,1.61,124,"0.510","0.053","0.053" +"GO:0060341","regulation of cellular localization",5,3,1.34,7,"0.121","0.059","0.059" +"GO:0051128","regulation of cellular component organiz...",13,4,3.48,117,"0.478","0.064","0.064" +"GO:0044265","cellular macromolecule catabolic process",3,2,0.8,13,"0.176","0.065","0.065" +"GO:0042592","homeostatic process",13,6,3.48,6,"0.100","0.066","0.066" +"GO:0051130","positive regulation of cellular componen...",6,3,1.61,28,"0.196","0.066","0.066" +"GO:0019220","regulation of phosphate metabolic proces...",9,4,2.41,31,"0.196","0.069","0.069" +"GO:0031399","regulation of protein modification proce...",9,4,2.41,32,"0.196","0.069","0.069" +"GO:0051174","regulation of phosphorus metabolic proce...",9,4,2.41,33,"0.196","0.069","0.069" +"GO:0009894","regulation of catabolic process",3,0,0.8,522,"1.000","0.076","0.076" +"GO:0055086","nucleobase-containing small molecule met...",8,3,2.14,80,"0.366","0.077","0.077" +"GO:0001933","negative regulation of protein phosphory...",5,2,1.34,88,"0.405","0.087","0.087" +"GO:0010563","negative regulation of phosphorus metabo...",5,2,1.34,89,"0.405","0.087","0.087" +"GO:0031400","negative regulation of protein modificat...",5,2,1.34,90,"0.405","0.087","0.087" +"GO:0032269","negative regulation of cellular protein ...",5,2,1.34,91,"0.405","0.087","0.087" +"GO:0042326","negative regulation of phosphorylation",5,2,1.34,92,"0.405","0.087","0.087" +"GO:0045936","negative regulation of phosphate metabol...",5,2,1.34,93,"0.405","0.087","0.087" +"GO:0051248","negative regulation of protein metabolic...",5,2,1.34,94,"0.405","0.087","0.087" +"GO:0065008","regulation of biological quality",17,7,4.56,9,"0.134","0.092","0.092" +"GO:0006396","RNA processing",6,3,1.61,29,"0.196","0.100","0.100" +"GO:0071704","organic substance metabolic process",120,31,32.15,298,"0.700","0.102","0.102" +"GO:0007167","enzyme linked receptor protein signaling...",4,1,1.07,304,"0.716","0.104","0.104" +"GO:0007264","small GTPase mediated signal transductio...",4,2,1.07,46,"0.292","0.104","0.104" +"GO:0033043","regulation of organelle organization",5,1,1.34,383,"0.793","0.105","0.105" +"GO:0006897","endocytosis",4,1,1.07,305,"0.716","0.109","0.109" +"GO:0007010","cytoskeleton organization",4,2,1.07,47,"0.292","0.109","0.109" +"GO:0030036","actin cytoskeleton organization",4,2,1.07,48,"0.292","0.109","0.109" +"GO:0043393","regulation of protein binding",4,2,1.07,49,"0.292","0.109","0.109" +"GO:0051098","regulation of binding",4,2,1.07,50,"0.292","0.109","0.109" +"GO:0001932","regulation of protein phosphorylation",8,3,2.14,81,"0.366","0.112","0.112" +"GO:0042325","regulation of phosphorylation",8,3,2.14,82,"0.366","0.112","0.112" +"GO:0022402","cell cycle process",9,5,2.41,3,"0.060","0.119","0.119" +"GO:0009165","nucleotide biosynthetic process",4,1,1.07,306,"0.716","0.123","0.123" +"GO:0019693","ribose phosphate metabolic process",4,2,1.07,51,"0.292","0.123","0.123" +"GO:1901293","nucleoside phosphate biosynthetic proces...",4,1,1.07,307,"0.716","0.123","0.123" +"GO:0048878","chemical homeostasis",5,3,1.34,8,"0.121","0.124","0.124" +"GO:0048646","anatomical structure formation involved ...",8,4,2.14,10,"0.136","0.128","0.128" +"GO:0016310","phosphorylation",23,6,6.16,279,"0.619","0.131","0.131" +"GO:0006469","negative regulation of protein kinase ac...",4,1,1.07,308,"0.716","0.143","0.143" +"GO:0033673","negative regulation of kinase activity",4,1,1.07,309,"0.716","0.143","0.143" +"GO:0033674","positive regulation of kinase activity",4,1,1.07,310,"0.716","0.143","0.143" +"GO:0045860","positive regulation of protein kinase ac...",4,1,1.07,311,"0.716","0.143","0.143" +"GO:0050808","synapse organization",4,1,1.07,312,"0.716","0.143","0.143" +"GO:0051347","positive regulation of transferase activ...",4,1,1.07,313,"0.716","0.143","0.143" +"GO:0051348","negative regulation of transferase activ...",4,1,1.07,314,"0.716","0.143","0.143" +"GO:0099173","postsynapse organization",4,1,1.07,315,"0.716","0.143","0.143" +"GO:1901565","organonitrogen compound catabolic proces...",3,1,0.8,174,"0.610","0.144","0.144" +"GO:0032268","regulation of cellular protein metabolic...",10,4,2.68,37,"0.264","0.147","0.147" +"GO:0006753","nucleoside phosphate metabolic process",6,2,1.61,125,"0.510","0.149","0.149" +"GO:0009117","nucleotide metabolic process",6,2,1.61,126,"0.510","0.149","0.149" +"GO:0044262","cellular carbohydrate metabolic process",4,1,1.07,316,"0.716","0.155","0.155" +"GO:0008152","metabolic process",139,37,37.24,157,"0.600","0.158","0.158" +"GO:0055114","oxidation-reduction process",7,3,1.88,38,"0.280","0.158","0.158" +"GO:0009056","catabolic process",14,3,3.75,379,"0.777","0.166","0.166" +"GO:0006470","protein dephosphorylation",4,2,1.07,52,"0.292","0.166","0.166" +"GO:0010638","positive regulation of organelle organiz...",4,1,1.07,317,"0.716","0.166","0.166" +"GO:0001894","tissue homeostasis",3,2,0.8,14,"0.176","0.167","0.167" +"GO:0048871","multicellular organismal homeostasis",3,2,0.8,15,"0.176","0.167","0.167" +"GO:0060249","anatomical structure homeostasis",3,2,0.8,16,"0.176","0.167","0.167" +"GO:0007166","cell surface receptor signaling pathway",9,2,2.41,363,"0.747","0.176","0.176" +"GO:1901575","organic substance catabolic process",10,3,2.68,145,"0.530","0.176","0.176" +"GO:0031401","positive regulation of protein modificat...",7,3,1.88,39,"0.280","0.178","0.178" +"GO:0032270","positive regulation of cellular protein ...",7,3,1.88,40,"0.280","0.178","0.178" +"GO:0051247","positive regulation of protein metabolic...",7,3,1.88,41,"0.280","0.178","0.178" +"GO:0005996","monosaccharide metabolic process",3,1,0.8,175,"0.610","0.185","0.185" +"GO:0007178","transmembrane receptor protein serine/th...",3,1,0.8,176,"0.610","0.185","0.185" +"GO:0007265","Ras protein signal transduction",3,1,0.8,177,"0.610","0.185","0.185" +"GO:0007266","Rho protein signal transduction",3,1,0.8,178,"0.610","0.185","0.185" +"GO:0007346","regulation of mitotic cell cycle",3,1,0.8,179,"0.610","0.185","0.185" +"GO:0032147","activation of protein kinase activity",3,1,0.8,180,"0.610","0.185","0.185" +"GO:0034622","cellular protein-containing complex asse...",3,2,0.8,17,"0.176","0.185","0.185" +"GO:0035023","regulation of Rho protein signal transdu...",3,1,0.8,181,"0.610","0.185","0.185" +"GO:0046578","regulation of Ras protein signal transdu...",3,1,0.8,182,"0.610","0.185","0.185" +"GO:0051056","regulation of small GTPase mediated sign...",3,1,0.8,183,"0.610","0.185","0.185" +"GO:0055080","cation homeostasis",3,2,0.8,18,"0.176","0.185","0.185" +"GO:0055082","cellular chemical homeostasis",3,2,0.8,19,"0.176","0.185","0.185" +"GO:0097435","supramolecular fiber organization",3,2,0.8,20,"0.176","0.185","0.185" +"GO:0098771","inorganic ion homeostasis",3,2,0.8,21,"0.176","0.185","0.185" +"GO:0006996","organelle organization",18,7,4.82,12,"0.174","0.187","0.187" +"GO:0002118","aggressive behavior",3,1,0.8,184,"0.610","0.191","0.191" +"GO:0006909","phagocytosis",3,1,0.8,185,"0.610","0.191","0.191" +"GO:0007276","gamete generation",3,1,0.8,186,"0.610","0.191","0.191" +"GO:0007281","germ cell development",3,1,0.8,187,"0.610","0.191","0.191" +"GO:0007283","spermatogenesis",3,1,0.8,188,"0.610","0.191","0.191" +"GO:0019953","sexual reproduction",3,1,0.8,189,"0.610","0.191","0.191" +"GO:0022412","cellular process involved in reproductio...",3,1,0.8,190,"0.610","0.191","0.191" +"GO:0035148","tube formation",3,1,0.8,191,"0.610","0.191","0.191" +"GO:0044703","multi-organism reproductive process",3,1,0.8,192,"0.610","0.191","0.191" +"GO:0048232","male gamete generation",3,1,0.8,193,"0.610","0.191","0.191" +"GO:0051705","multi-organism behavior",3,1,0.8,194,"0.610","0.191","0.191" +"GO:0006457","protein folding",3,2,0.8,22,"0.176","0.195","0.195" +"GO:0007517","muscle organ development",3,2,0.8,23,"0.176","0.195","0.195" +"GO:0010038","response to metal ion",3,2,0.8,24,"0.176","0.195","0.195" +"GO:0061061","muscle structure development",3,2,0.8,25,"0.176","0.195","0.195" +"GO:0044087","regulation of cellular component biogene...",6,2,1.61,127,"0.510","0.202","0.202" +"GO:0006163","purine nucleotide metabolic process",3,1,0.8,195,"0.610","0.209","0.209" +"GO:0006164","purine nucleotide biosynthetic process",3,1,0.8,196,"0.610","0.209","0.209" +"GO:0006754","ATP biosynthetic process",3,1,0.8,197,"0.610","0.209","0.209" +"GO:0009123","nucleoside monophosphate metabolic proce...",3,1,0.8,198,"0.610","0.209","0.209" +"GO:0009124","nucleoside monophosphate biosynthetic pr...",3,1,0.8,199,"0.610","0.209","0.209" +"GO:0009126","purine nucleoside monophosphate metaboli...",3,1,0.8,200,"0.610","0.209","0.209" +"GO:0009127","purine nucleoside monophosphate biosynth...",3,1,0.8,201,"0.610","0.209","0.209" +"GO:0009141","nucleoside triphosphate metabolic proces...",3,1,0.8,202,"0.610","0.209","0.209" +"GO:0009142","nucleoside triphosphate biosynthetic pro...",3,1,0.8,203,"0.610","0.209","0.209" +"GO:0009144","purine nucleoside triphosphate metabolic...",3,1,0.8,204,"0.610","0.209","0.209" +"GO:0009145","purine nucleoside triphosphate biosynthe...",3,1,0.8,205,"0.610","0.209","0.209" +"GO:0009150","purine ribonucleotide metabolic process",3,1,0.8,206,"0.610","0.209","0.209" +"GO:0009152","purine ribonucleotide biosynthetic proce...",3,1,0.8,207,"0.610","0.209","0.209" +"GO:0009156","ribonucleoside monophosphate biosyntheti...",3,1,0.8,208,"0.610","0.209","0.209" +"GO:0009161","ribonucleoside monophosphate metabolic p...",3,1,0.8,209,"0.610","0.209","0.209" +"GO:0009167","purine ribonucleoside monophosphate meta...",3,1,0.8,210,"0.610","0.209","0.209" +"GO:0009168","purine ribonucleoside monophosphate bios...",3,1,0.8,211,"0.610","0.209","0.209" +"GO:0009199","ribonucleoside triphosphate metabolic pr...",3,1,0.8,212,"0.610","0.209","0.209" +"GO:0009201","ribonucleoside triphosphate biosynthetic...",3,1,0.8,213,"0.610","0.209","0.209" +"GO:0009205","purine ribonucleoside triphosphate metab...",3,1,0.8,214,"0.610","0.209","0.209" +"GO:0009206","purine ribonucleoside triphosphate biosy...",3,1,0.8,215,"0.610","0.209","0.209" +"GO:0009259","ribonucleotide metabolic process",3,1,0.8,216,"0.610","0.209","0.209" +"GO:0009260","ribonucleotide biosynthetic process",3,1,0.8,217,"0.610","0.209","0.209" +"GO:0046034","ATP metabolic process",3,1,0.8,218,"0.610","0.209","0.209" +"GO:0046390","ribose phosphate biosynthetic process",3,1,0.8,219,"0.610","0.209","0.209" +"GO:0072522","purine-containing compound biosynthetic ...",3,1,0.8,220,"0.610","0.209","0.209" +"GO:0001775","cell activation",6,3,1.61,30,"0.196","0.211","0.211" +"GO:0050790","regulation of catalytic activity",10,3,2.68,146,"0.530","0.219","0.219" +"GO:0006091","generation of precursor metabolites and ...",3,1,0.8,221,"0.610","0.222","0.222" +"GO:1901137","carbohydrate derivative biosynthetic pro...",6,1,1.61,416,"0.850","0.222","0.222" +"GO:0090407","organophosphate biosynthetic process",7,2,1.88,158,"0.602","0.224","0.224" +"GO:0006732","coenzyme metabolic process",3,2,0.8,26,"0.176","0.226","0.226" +"GO:0051186","cofactor metabolic process",3,2,0.8,27,"0.176","0.226","0.226" +"GO:0010975","regulation of neuron projection developm...",3,1,0.8,222,"0.610","0.235","0.235" +"GO:0051246","regulation of protein metabolic process",12,4,3.22,107,"0.407","0.236","0.236" +"GO:0006397","mRNA processing",4,2,1.07,53,"0.292","0.237","0.237" +"GO:0014070","response to organic cyclic compound",4,1,1.07,318,"0.716","0.237","0.237" +"GO:0016071","mRNA metabolic process",4,2,1.07,54,"0.292","0.237","0.237" +"GO:0019439","aromatic compound catabolic process",4,2,1.07,55,"0.292","0.237","0.237" +"GO:0034655","nucleobase-containing compound catabolic...",4,2,1.07,56,"0.292","0.237","0.237" +"GO:0044270","cellular nitrogen compound catabolic pro...",4,2,1.07,57,"0.292","0.237","0.237" +"GO:0046700","heterocycle catabolic process",4,2,1.07,58,"0.292","0.237","0.237" +"GO:1901361","organic cyclic compound catabolic proces...",4,2,1.07,59,"0.292","0.237","0.237" +"GO:0007049","cell cycle",11,5,2.95,11,"0.140","0.238","0.238" +"GO:0006352","DNA-templated transcription, initiation",3,1,0.8,223,"0.610","0.241","0.241" +"GO:0072521","purine-containing compound metabolic pro...",4,1,1.07,319,"0.716","0.243","0.243" +"GO:0019637","organophosphate metabolic process",13,3,3.48,358,"0.727","0.248","0.248" +"GO:1902600","proton transmembrane transport",3,0,0.8,523,"1.000","0.255","0.255" +"GO:0098660","inorganic ion transmembrane transport",7,1,1.88,462,"0.891","0.256","0.256" +"GO:0044267","cellular protein metabolic process",33,7,8.84,409,"0.842","0.262","0.262" +"GO:0007005","mitochondrion organization",3,1,0.8,224,"0.610","0.262","0.262" +"GO:0046467","membrane lipid biosynthetic process",3,0,0.8,524,"1.000","0.269","0.269" +"GO:0006468","protein phosphorylation",18,4,4.82,376,"0.763","0.273","0.273" +"GO:0010562","positive regulation of phosphorus metabo...",6,2,1.61,128,"0.510","0.279","0.279" +"GO:0032990","cell part morphogenesis",6,1,1.61,417,"0.850","0.279","0.279" +"GO:0043086","negative regulation of catalytic activit...",6,2,1.61,129,"0.510","0.279","0.279" +"GO:0044092","negative regulation of molecular functio...",6,2,1.61,130,"0.510","0.279","0.279" +"GO:0045937","positive regulation of phosphate metabol...",6,2,1.61,131,"0.510","0.279","0.279" +"GO:0019538","protein metabolic process",43,8,11.52,510,"0.944","0.284","0.284" +"GO:0044248","cellular catabolic process",12,3,3.22,287,"0.670","0.289","0.289" +"GO:0043603","cellular amide metabolic process",8,1,2.14,491,"0.922","0.292","0.292" +"GO:0071214","cellular response to abiotic stimulus",3,1,0.8,225,"0.610","0.292","0.292" +"GO:0104004","cellular response to environmental stimu...",3,1,0.8,226,"0.610","0.292","0.292" +"GO:0051726","regulation of cell cycle",8,3,2.14,83,"0.366","0.293","0.293" +"GO:0006643","membrane lipid metabolic process",4,0,1.07,525,"1.000","0.312","0.312" +"GO:0098662","inorganic cation transmembrane transport",6,1,1.61,418,"0.850","0.312","0.312" +"GO:1901564","organonitrogen compound metabolic proces...",53,11,14.2,482,"0.910","0.319","0.319" +"GO:0019725","cellular homeostasis",7,3,1.88,42,"0.280","0.321","0.321" +"GO:0016311","dephosphorylation",6,2,1.61,132,"0.510","0.324","0.324" +"GO:0043085","positive regulation of catalytic activit...",6,1,1.61,419,"0.850","0.324","0.324" +"GO:0006464","cellular protein modification process",25,5,6.7,454,"0.856","0.332","0.332" +"GO:0036211","protein modification process",25,5,6.7,455,"0.856","0.332","0.332" +"GO:0061024","membrane organization",5,2,1.34,95,"0.405","0.336","0.336" +"GO:0048513","animal organ development",17,6,4.56,43,"0.286","0.338","0.338" +"GO:0048523","negative regulation of cellular process",17,6,4.56,44,"0.286","0.338","0.338" +"GO:0044281","small molecule metabolic process",18,5,4.82,154,"0.557","0.341","0.341" +"GO:0010605","negative regulation of macromolecule met...",11,4,2.95,75,"0.335","0.341","0.341" +"GO:0031324","negative regulation of cellular metaboli...",11,3,2.95,171,"0.604","0.341","0.341" +"GO:0030029","actin filament-based process",5,2,1.34,96,"0.405","0.347","0.347" +"GO:0051235","maintenance of location",5,2,1.34,97,"0.405","0.347","0.347" +"GO:0061564","axon development",5,2,1.34,98,"0.405","0.347","0.347" +"GO:0098609","cell-cell adhesion",5,2,1.34,99,"0.405","0.347","0.347" +"GO:0098657","import into cell",5,1,1.34,384,"0.793","0.347","0.347" +"GO:0006807","nitrogen compound metabolic process",96,22,25.72,480,"0.908","0.359","0.359" +"GO:0006979","response to oxidative stress",4,2,1.07,60,"0.292","0.365","0.365" +"GO:0009611","response to wounding",4,2,1.07,61,"0.292","0.365","0.365" +"GO:0010035","response to inorganic substance",4,2,1.07,62,"0.292","0.365","0.365" +"GO:0032880","regulation of protein localization",4,2,1.07,63,"0.292","0.365","0.365" +"GO:0042110","T cell activation",4,2,1.07,64,"0.292","0.365","0.365" +"GO:0045321","leukocyte activation",4,2,1.07,65,"0.292","0.365","0.365" +"GO:0046649","lymphocyte activation",4,2,1.07,66,"0.292","0.365","0.365" +"GO:0050801","ion homeostasis",4,2,1.07,67,"0.292","0.365","0.365" +"GO:0043412","macromolecule modification",27,5,7.23,474,"0.902","0.374","0.374" +"GO:0010608","posttranscriptional regulation of gene e...",3,0,0.8,526,"1.000","0.374","0.374" +"GO:0006974","cellular response to DNA damage stimulus",9,2,2.41,364,"0.747","0.374","0.374" +"GO:0009628","response to abiotic stimulus",9,2,2.41,365,"0.747","0.378","0.378" +"GO:0043604","amide biosynthetic process",7,1,1.88,463,"0.891","0.378","0.378" +"GO:0007186","G protein-coupled receptor signaling pat...",6,2,1.61,133,"0.510","0.382","0.382" +"GO:0043933","protein-containing complex subunit organ...",4,2,1.07,68,"0.292","0.385","0.385" +"GO:0065003","protein-containing complex assembly",4,2,1.07,69,"0.292","0.385","0.385" +"GO:0032501","multicellular organismal process",29,9,7.77,79,"0.363","0.386","0.386" +"GO:0048856","anatomical structure development",29,10,7.77,35,"0.214","0.386","0.386" +"GO:0007275","multicellular organism development",25,8,6.7,78,"0.341","0.391","0.391" +"GO:0046434","organophosphate catabolic process",3,1,0.8,227,"0.610","0.392","0.392" +"GO:0006518","peptide metabolic process",7,1,1.88,464,"0.891","0.392","0.392" +"GO:0048519","negative regulation of biological proces...",22,7,5.89,86,"0.369","0.401","0.401" +"GO:0009892","negative regulation of metabolic process",13,4,3.48,118,"0.478","0.406","0.406" +"GO:0065009","regulation of molecular function",11,3,2.95,172,"0.604","0.409","0.409" +"GO:0006664","glycolipid metabolic process",3,0,0.8,527,"1.000","0.419","0.419" +"GO:1903509","liposaccharide metabolic process",3,0,0.8,528,"1.000","0.419","0.419" +"GO:0002376","immune system process",9,4,2.41,34,"0.196","0.420","0.420" +"GO:0009888","tissue development",8,3,2.14,84,"0.366","0.425","0.425" +"GO:0001934","positive regulation of protein phosphory...",5,1,1.34,385,"0.793","0.427","0.427" +"GO:0042327","positive regulation of phosphorylation",5,1,1.34,386,"0.793","0.427","0.427" +"GO:0048667","cell morphogenesis involved in neuron di...",5,1,1.34,387,"0.793","0.427","0.427" +"GO:0048812","neuron projection morphogenesis",5,1,1.34,388,"0.793","0.427","0.427" +"GO:0048858","cell projection morphogenesis",5,1,1.34,389,"0.793","0.427","0.427" +"GO:0120039","plasma membrane bounded cell projection ...",5,1,1.34,390,"0.793","0.427","0.427" +"GO:0044237","cellular metabolic process",105,24,28.13,502,"0.926","0.432","0.432" +"GO:0051049","regulation of transport",7,2,1.88,159,"0.602","0.432","0.432" +"GO:0043170","macromolecule metabolic process",87,19,23.31,508,"0.937","0.441","0.441" +"GO:0043010","camera-type eye development",5,2,1.34,100,"0.405","0.447","0.447" +"GO:0060041","retina development in camera-type eye",5,2,1.34,101,"0.405","0.447","0.447" +"GO:0018193","peptidyl-amino acid modification",4,1,1.07,320,"0.716","0.454","0.454" +"GO:0001558","regulation of cell growth",3,1,0.8,228,"0.610","0.457","0.457" +"GO:0016049","cell growth",3,1,0.8,229,"0.610","0.457","0.457" +"GO:0040008","regulation of growth",3,1,0.8,230,"0.610","0.457","0.457" +"GO:1902532","negative regulation of intracellular sig...",3,1,0.8,231,"0.610","0.457","0.457" +"GO:0006950","response to stress",22,7,5.89,87,"0.369","0.467","0.467" +"GO:0009893","positive regulation of metabolic process",10,3,2.68,147,"0.530","0.476","0.476" +"GO:0010604","positive regulation of macromolecule met...",10,3,2.68,148,"0.530","0.476","0.476" +"GO:0031325","positive regulation of cellular metaboli...",10,3,2.68,149,"0.530","0.476","0.476" +"GO:0051172","negative regulation of nitrogen compound...",10,3,2.68,150,"0.530","0.476","0.476" +"GO:0051173","positive regulation of nitrogen compound...",10,3,2.68,151,"0.530","0.476","0.476" +"GO:0098655","cation transmembrane transport",8,1,2.14,492,"0.922","0.478","0.478" +"GO:0016043","cellular component organization",30,10,8.04,36,"0.253","0.481","0.481" +"GO:0006814","sodium ion transport",4,2,1.07,70,"0.292","0.482","0.482" +"GO:0051046","regulation of secretion",3,1,0.8,232,"0.610","0.486","0.486" +"GO:0044085","cellular component biogenesis",9,3,2.41,111,"0.450","0.496","0.496" +"GO:0008380","RNA splicing",3,1,0.8,233,"0.610","0.502","0.502" +"GO:0010564","regulation of cell cycle process",3,1,0.8,234,"0.610","0.502","0.502" +"GO:0048545","response to steroid hormone",3,0,0.8,529,"1.000","0.502","0.502" +"GO:0071383","cellular response to steroid hormone sti...",3,0,0.8,530,"1.000","0.502","0.502" +"GO:0071407","cellular response to organic cyclic comp...",3,0,0.8,531,"1.000","0.502","0.502" +"GO:0006412","translation",6,1,1.61,420,"0.850","0.505","0.505" +"GO:0043043","peptide biosynthetic process",6,1,1.61,421,"0.850","0.505","0.505" +"GO:0071840","cellular component organization or bioge...",32,10,8.57,76,"0.337","0.514","0.514" +"GO:0044255","cellular lipid metabolic process",10,2,2.68,403,"0.801","0.514","0.514" +"GO:0006955","immune response",5,2,1.34,102,"0.405","0.523","0.523" +"GO:0009968","negative regulation of signal transducti...",5,2,1.34,103,"0.405","0.523","0.523" +"GO:0010648","negative regulation of cell communicatio...",5,2,1.34,104,"0.405","0.523","0.523" +"GO:0023057","negative regulation of signaling",5,2,1.34,105,"0.405","0.523","0.523" +"GO:0006082","organic acid metabolic process",4,2,1.07,71,"0.292","0.528","0.528" +"GO:0019752","carboxylic acid metabolic process",4,2,1.07,72,"0.292","0.528","0.528" +"GO:0043436","oxoacid metabolic process",4,2,1.07,73,"0.292","0.528","0.528" +"GO:0010720","positive regulation of cell development",4,1,1.07,321,"0.716","0.536","0.536" +"GO:0045666","positive regulation of neuron differenti...",4,1,1.07,322,"0.716","0.536","0.536" +"GO:0050769","positive regulation of neurogenesis",4,1,1.07,323,"0.716","0.536","0.536" +"GO:0051962","positive regulation of nervous system de...",4,1,1.07,324,"0.716","0.536","0.536" +"GO:0072359","circulatory system development",4,1,1.07,325,"0.716","0.536","0.536" +"GO:0071396","cellular response to lipid",4,0,1.07,532,"1.000","0.536","0.536" +"GO:0044260","cellular macromolecule metabolic process",70,14,18.76,516,"0.961","0.538","0.538" +"GO:0006325","chromatin organization",4,2,1.07,74,"0.292","0.539","0.539" +"GO:0032502","developmental process",32,10,8.57,77,"0.337","0.543","0.543" +"GO:0007409","axonogenesis",4,1,1.07,326,"0.716","0.548","0.548" +"GO:0032504","multicellular organism reproduction",4,1,1.07,327,"0.716","0.548","0.548" +"GO:0035239","tube morphogenesis",4,1,1.07,328,"0.716","0.548","0.548" +"GO:0035295","tube development",4,1,1.07,329,"0.716","0.548","0.548" +"GO:0048609","multicellular organismal reproductive pr...",4,1,1.07,330,"0.716","0.548","0.548" +"GO:0006629","lipid metabolic process",13,4,3.48,119,"0.478","0.548","0.548" +"GO:0050793","regulation of developmental process",10,3,2.68,152,"0.530","0.549","0.549" +"GO:0007155","cell adhesion",7,2,1.88,160,"0.602","0.553","0.553" +"GO:0022610","biological adhesion",7,2,1.88,161,"0.602","0.553","0.553" +"GO:0031175","neuron projection development",7,2,1.88,162,"0.602","0.553","0.553" +"GO:0001654","eye development",6,2,1.61,134,"0.510","0.569","0.569" +"GO:0048880","sensory system development",6,2,1.61,135,"0.510","0.569","0.569" +"GO:0150063","visual system development",6,2,1.61,136,"0.510","0.569","0.569" +"GO:0007507","heart development",3,1,0.8,235,"0.610","0.572","0.572" +"GO:0034641","cellular nitrogen compound metabolic pro...",61,15,16.34,362,"0.734","0.572","0.572" +"GO:0042493","response to drug",6,1,1.61,422,"0.850","0.578","0.578" +"GO:1901566","organonitrogen compound biosynthetic pro...",14,2,3.75,504,"0.929","0.579","0.579" +"GO:0006508","proteolysis",11,2,2.95,410,"0.845","0.580","0.580" +"GO:0048731","system development",21,6,5.63,144,"0.513","0.604","0.604" +"GO:0030001","metal ion transport",8,3,2.14,85,"0.366","0.604","0.604" +"GO:0006915","apoptotic process",3,1,0.8,236,"0.610","0.609","0.609" +"GO:0042981","regulation of apoptotic process",3,1,0.8,237,"0.610","0.609","0.609" +"GO:0043067","regulation of programmed cell death",3,1,0.8,238,"0.610","0.609","0.609" +"GO:0060548","negative regulation of cell death",3,1,0.8,239,"0.610","0.609","0.609" +"GO:0051094","positive regulation of developmental pro...",7,2,1.88,163,"0.602","0.615","0.615" +"GO:0006081","cellular aldehyde metabolic process",4,1,1.07,331,"0.716","0.615","0.615" +"GO:0071310","cellular response to organic substance",8,1,2.14,493,"0.922","0.619","0.619" +"GO:0034613","cellular protein localization",12,4,3.22,108,"0.407","0.619","0.619" +"GO:0008104","protein localization",16,5,4.29,110,"0.435","0.626","0.626" +"GO:0031344","regulation of cell projection organizati...",4,1,1.07,332,"0.716","0.630","0.630" +"GO:0120035","regulation of plasma membrane bounded ce...",4,1,1.07,333,"0.716","0.630","0.630" +"GO:0008610","lipid biosynthetic process",7,2,1.88,164,"0.602","0.631","0.631" +"GO:0022607","cellular component assembly",6,2,1.61,137,"0.510","0.631","0.631" +"GO:0045597","positive regulation of cell differentiat...",6,2,1.61,138,"0.510","0.631","0.631" +"GO:0006281","DNA repair",6,0,1.61,533,"1.000","0.631","0.631" +"GO:0009653","anatomical structure morphogenesis",15,4,4.02,173,"0.608","0.636","0.636" +"GO:0045595","regulation of cell differentiation",9,3,2.41,112,"0.450","0.638","0.638" +"GO:0048666","neuron development",9,2,2.41,366,"0.747","0.638","0.638" +"GO:0009612","response to mechanical stimulus",6,1,1.61,423,"0.850","0.646","0.646" +"GO:0051704","multi-organism process",6,2,1.61,139,"0.510","0.646","0.646" +"GO:0045454","cell redox homeostasis",4,1,1.07,334,"0.716","0.647","0.647" +"GO:0009636","response to toxic substance",4,1,1.07,335,"0.716","0.650","0.650" +"GO:0006139","nucleobase-containing compound metabolic...",51,13,13.67,285,"0.659","0.653","0.653" +"GO:0002682","regulation of immune system process",6,2,1.61,140,"0.510","0.655","0.655" +"GO:0009887","animal organ morphogenesis",6,2,1.61,141,"0.510","0.655","0.655" +"GO:0034220","ion transmembrane transport",12,3,3.22,288,"0.670","0.662","0.662" +"GO:0003006","developmental process involved in reprod...",7,2,1.88,165,"0.602","0.671","0.671" +"GO:0007423","sensory organ development",7,2,1.88,166,"0.602","0.671","0.671" +"GO:0012501","programmed cell death",4,1,1.07,336,"0.716","0.677","0.677" +"GO:0006914","autophagy",4,0,1.07,534,"1.000","0.677","0.677" +"GO:0022603","regulation of anatomical structure morph...",4,0,1.07,535,"1.000","0.677","0.677" +"GO:0061919","process utilizing autophagic mechanism",4,0,1.07,536,"1.000","0.677","0.677" +"GO:0046903","secretion",6,1,1.61,424,"0.850","0.677","0.677" +"GO:0006259","DNA metabolic process",8,1,2.14,494,"0.922","0.683","0.683" +"GO:0006952","defense response",4,1,1.07,337,"0.716","0.685","0.685" +"GO:0044282","small molecule catabolic process",3,0,0.8,537,"1.000","0.696","0.696" +"GO:0017144","drug metabolic process",5,1,1.34,391,"0.793","0.697","0.697" +"GO:0030182","neuron differentiation",11,2,2.95,411,"0.845","0.698","0.698" +"GO:0070887","cellular response to chemical stimulus",11,1,2.95,518,"0.971","0.698","0.698" +"GO:0042221","response to chemical",18,3,4.82,481,"0.908","0.700","0.700" +"GO:0015031","protein transport",9,3,2.41,113,"0.450","0.702","0.702" +"GO:0015833","peptide transport",9,3,2.41,114,"0.450","0.702","0.702" +"GO:0042886","amide transport",9,3,2.41,115,"0.450","0.702","0.702" +"GO:0044093","positive regulation of molecular functio...",9,2,2.41,367,"0.747","0.708","0.708" +"GO:0070727","cellular macromolecule localization",13,4,3.48,120,"0.478","0.708","0.708" +"GO:0010941","regulation of cell death",4,1,1.07,338,"0.716","0.717","0.717" +"GO:0032970","regulation of actin filament-based proce...",3,1,0.8,240,"0.610","0.725","0.725" +"GO:0034762","regulation of transmembrane transport",3,1,0.8,241,"0.610","0.725","0.725" +"GO:0034765","regulation of ion transmembrane transpor...",3,1,0.8,242,"0.610","0.725","0.725" +"GO:0043269","regulation of ion transport",3,1,0.8,243,"0.610","0.725","0.725" +"GO:1904062","regulation of cation transmembrane trans...",3,1,0.8,244,"0.610","0.725","0.725" +"GO:0007600","sensory perception",3,1,0.8,245,"0.610","0.738","0.738" +"GO:0048593","camera-type eye morphogenesis",3,1,0.8,246,"0.610","0.738","0.738" +"GO:0060042","retina morphogenesis in camera-type eye",3,1,0.8,247,"0.610","0.738","0.738" +"GO:0000904","cell morphogenesis involved in different...",6,1,1.61,425,"0.850","0.744","0.744" +"GO:0045664","regulation of neuron differentiation",6,1,1.61,426,"0.850","0.744","0.744" +"GO:0050767","regulation of neurogenesis",6,1,1.61,427,"0.850","0.744","0.744" +"GO:0051960","regulation of nervous system development",6,1,1.61,428,"0.850","0.744","0.744" +"GO:2000026","regulation of multicellular organismal d...",6,1,1.61,429,"0.850","0.744","0.744" +"GO:0060255","regulation of macromolecule metabolic pr...",37,10,9.91,155,"0.559","0.744","0.744" +"GO:0019222","regulation of metabolic process",39,10,10.45,284,"0.642","0.747","0.747" +"GO:0045786","negative regulation of cell cycle",3,1,0.8,248,"0.610","0.748","0.748" +"GO:0048608","reproductive structure development",3,1,0.8,249,"0.610","0.748","0.748" +"GO:0061458","reproductive system development",3,1,0.8,250,"0.610","0.748","0.748" +"GO:0006725","cellular aromatic compound metabolic pro...",52,13,13.93,297,"0.694","0.749","0.749" +"GO:0040007","growth",6,2,1.61,142,"0.510","0.753","0.753" +"GO:0000003","reproduction",8,2,2.14,293,"0.681","0.754","0.754" +"GO:0022414","reproductive process",8,2,2.14,294,"0.681","0.754","0.754" +"GO:0006913","nucleocytoplasmic transport",3,1,0.8,251,"0.610","0.754","0.754" +"GO:0009607","response to biotic stimulus",3,1,0.8,252,"0.610","0.754","0.754" +"GO:0009991","response to extracellular stimulus",3,1,0.8,253,"0.610","0.754","0.754" +"GO:0031667","response to nutrient levels",3,1,0.8,254,"0.610","0.754","0.754" +"GO:0043207","response to external biotic stimulus",3,1,0.8,255,"0.610","0.754","0.754" +"GO:0051169","nuclear transport",3,1,0.8,256,"0.610","0.754","0.754" +"GO:0051707","response to other organism",3,1,0.8,257,"0.610","0.754","0.754" +"GO:0098542","defense response to other organism",3,1,0.8,258,"0.610","0.754","0.754" +"GO:0009605","response to external stimulus",12,4,3.22,109,"0.407","0.756","0.756" +"GO:0016319","mushroom body development",3,1,0.8,259,"0.610","0.757","0.757" +"GO:0042060","wound healing",3,1,0.8,260,"0.610","0.757","0.757" +"GO:0048585","negative regulation of response to stimu...",7,2,1.88,167,"0.602","0.761","0.761" +"GO:0050877","nervous system process",7,2,1.88,168,"0.602","0.761","0.761" +"GO:0003002","regionalization",3,1,0.8,261,"0.610","0.767","0.767" +"GO:0007389","pattern specification process",3,1,0.8,262,"0.610","0.767","0.767" +"GO:0002694","regulation of leukocyte activation",3,1,0.8,263,"0.610","0.776","0.776" +"GO:0007162","negative regulation of cell adhesion",3,1,0.8,264,"0.610","0.776","0.776" +"GO:0030155","regulation of cell adhesion",3,1,0.8,265,"0.610","0.776","0.776" +"GO:0050863","regulation of T cell activation",3,1,0.8,266,"0.610","0.776","0.776" +"GO:0050865","regulation of cell activation",3,1,0.8,267,"0.610","0.776","0.776" +"GO:0051249","regulation of lymphocyte activation",3,1,0.8,268,"0.610","0.776","0.776" +"GO:0010629","negative regulation of gene expression",7,2,1.88,169,"0.602","0.787","0.787" +"GO:0032940","secretion by cell",4,1,1.07,339,"0.716","0.788","0.788" +"GO:0007610","behavior",6,1,1.61,430,"0.850","0.788","0.788" +"GO:0008219","cell death",5,1,1.34,392,"0.793","0.789","0.789" +"GO:0009725","response to hormone",4,0,1.07,538,"1.000","0.790","0.790" +"GO:0032870","cellular response to hormone stimulus",4,0,1.07,539,"1.000","0.790","0.790" +"GO:0006886","intracellular protein transport",6,2,1.61,143,"0.510","0.793","0.793" +"GO:0002790","peptide secretion",3,1,0.8,269,"0.610","0.797","0.797" +"GO:0009306","protein secretion",3,1,0.8,270,"0.610","0.797","0.797" +"GO:0051346","negative regulation of hydrolase activit...",3,1,0.8,271,"0.610","0.797","0.797" +"GO:0080135","regulation of cellular response to stres...",3,1,0.8,272,"0.610","0.797","0.797" +"GO:0000165","MAPK cascade",3,0,0.8,540,"1.000","0.797","0.797" +"GO:0023014","signal transduction by protein phosphory...",3,0,0.8,541,"1.000","0.797","0.797" +"GO:0043408","regulation of MAPK cascade",3,0,0.8,542,"1.000","0.797","0.797" +"GO:0043410","positive regulation of MAPK cascade",3,0,0.8,543,"1.000","0.797","0.797" +"GO:0045787","positive regulation of cell cycle",3,0,0.8,544,"1.000","0.797","0.797" +"GO:0051129","negative regulation of cellular componen...",3,0,0.8,545,"1.000","0.797","0.797" +"GO:0071363","cellular response to growth factor stimu...",3,0,0.8,546,"1.000","0.797","0.797" +"GO:0045184","establishment of protein localization",10,3,2.68,153,"0.530","0.797","0.797" +"GO:0010243","response to organonitrogen compound",3,1,0.8,273,"0.610","0.812","0.812" +"GO:1901698","response to nitrogen compound",3,1,0.8,274,"0.610","0.812","0.812" +"GO:0033554","cellular response to stress",12,2,3.22,457,"0.880","0.815","0.815" +"GO:0065007","biological regulation",87,24,23.31,116,"0.475","0.817","0.817" +"GO:0015672","monovalent inorganic cation transport",8,2,2.14,295,"0.681","0.833","0.833" +"GO:0009790","embryo development",9,2,2.41,368,"0.747","0.835","0.835" +"GO:0046483","heterocycle metabolic process",53,13,14.2,357,"0.726","0.836","0.836" +"GO:0048522","positive regulation of cellular process",22,5,5.89,374,"0.756","0.839","0.839" +"GO:0090304","nucleic acid metabolic process",42,10,11.25,372,"0.749","0.841","0.841" +"GO:0031323","regulation of cellular metabolic process",36,9,9.65,290,"0.676","0.842","0.842" +"GO:0051171","regulation of nitrogen compound metaboli...",36,9,9.65,291,"0.676","0.842","0.842" +"GO:0080090","regulation of primary metabolic process",36,9,9.65,292,"0.676","0.842","0.842" +"GO:0003008","system process",8,2,2.14,296,"0.681","0.842","0.842" +"GO:0051240","positive regulation of multicellular org...",5,1,1.34,393,"0.793","0.849","0.849" +"GO:0033993","response to lipid",5,0,1.34,547,"1.000","0.849","0.849" +"GO:0048592","eye morphogenesis",4,1,1.07,340,"0.716","0.852","0.852" +"GO:0048598","embryonic morphogenesis",4,1,1.07,341,"0.716","0.852","0.852" +"GO:0090596","sensory organ morphogenesis",4,1,1.07,342,"0.716","0.852","0.852" +"GO:1901700","response to oxygen-containing compound",6,1,1.61,431,"0.850","0.861","0.861" +"GO:0010769","regulation of cell morphogenesis involve...",3,0,0.8,548,"1.000","0.864","0.864" +"GO:0016358","dendrite development",3,0,0.8,549,"1.000","0.864","0.864" +"GO:0022604","regulation of cell morphogenesis",3,0,0.8,550,"1.000","0.864","0.864" +"GO:0031589","cell-substrate adhesion",3,0,0.8,551,"1.000","0.864","0.864" +"GO:0034446","substrate adhesion-dependent cell spread...",3,0,0.8,552,"1.000","0.864","0.864" +"GO:0048813","dendrite morphogenesis",3,0,0.8,553,"1.000","0.864","0.864" +"GO:0051276","chromosome organization",7,2,1.88,170,"0.602","0.869","0.869" +"GO:0009719","response to endogenous stimulus",7,0,1.88,554,"1.000","0.869","0.869" +"GO:0071495","cellular response to endogenous stimulus",7,0,1.88,555,"1.000","0.869","0.869" +"GO:0021537","telencephalon development",3,1,0.8,275,"0.610","0.870","0.870" +"GO:0021543","pallium development",3,1,0.8,276,"0.610","0.870","0.870" +"GO:0021987","cerebral cortex development",3,1,0.8,277,"0.610","0.870","0.870" +"GO:1902531","regulation of intracellular signal trans...",9,2,2.41,369,"0.747","0.870","0.870" +"GO:0007623","circadian rhythm",4,1,1.07,343,"0.716","0.871","0.871" +"GO:0048511","rhythmic process",4,1,1.07,344,"0.716","0.871","0.871" +"GO:0051301","cell division",4,1,1.07,345,"0.716","0.871","0.871" +"GO:0046488","phosphatidylinositol metabolic process",4,0,1.07,556,"1.000","0.875","0.875" +"GO:0044283","small molecule biosynthetic process",5,1,1.34,394,"0.793","0.876","0.876" +"GO:0032879","regulation of localization",14,3,3.75,380,"0.777","0.878","0.878" +"GO:0048468","cell development",14,3,3.75,381,"0.777","0.878","0.878" +"GO:0022008","neurogenesis",12,2,3.22,458,"0.880","0.878","0.878" +"GO:0048699","generation of neurons",12,2,3.22,459,"0.880","0.878","0.878" +"GO:0060429","epithelium development",4,1,1.07,346,"0.716","0.879","0.879" +"GO:0048729","tissue morphogenesis",4,1,1.07,347,"0.716","0.881","0.881" +"GO:1901701","cellular response to oxygen-containing c...",5,1,1.34,395,"0.793","0.883","0.883" +"GO:0006644","phospholipid metabolic process",7,1,1.88,465,"0.891","0.884","0.884" +"GO:0008654","phospholipid biosynthetic process",3,1,0.8,278,"0.610","0.889","0.889" +"GO:0007611","learning or memory",3,0,0.8,557,"1.000","0.889","0.889" +"GO:0007612","learning",3,0,0.8,558,"1.000","0.889","0.889" +"GO:0050890","cognition",3,0,0.8,559,"1.000","0.889","0.889" +"GO:0051649","establishment of localization in cell",13,3,3.48,359,"0.727","0.890","0.890" +"GO:0035556","intracellular signal transduction",16,3,4.29,451,"0.854","0.891","0.891" +"GO:0051345","positive regulation of hydrolase activit...",3,0,0.8,560,"1.000","0.894","0.894" +"GO:0055085","transmembrane transport",25,6,6.7,299,"0.711","0.900","0.900" +"GO:0030030","cell projection organization",9,2,2.41,370,"0.747","0.901","0.901" +"GO:0120036","plasma membrane bounded cell projection ...",9,2,2.41,371,"0.747","0.901","0.901" +"GO:0010033","response to organic substance",10,1,2.68,514,"0.959","0.903","0.903" +"GO:1901360","organic cyclic compound metabolic proces...",54,13,14.47,375,"0.756","0.908","0.908" +"GO:0001101","response to acid chemical",3,0,0.8,561,"1.000","0.910","0.910" +"GO:0002009","morphogenesis of an epithelium",3,0,0.8,562,"1.000","0.910","0.910" +"GO:0048589","developmental growth",3,0,0.8,563,"1.000","0.910","0.910" +"GO:1902533","positive regulation of intracellular sig...",6,1,1.61,432,"0.850","0.912","0.912" +"GO:0006820","anion transport",7,1,1.88,466,"0.891","0.919","0.919" +"GO:0031929","TOR signaling",4,1,1.07,348,"0.716","0.919","0.919" +"GO:0050776","regulation of immune response",4,1,1.07,349,"0.716","0.919","0.919" +"GO:0051241","negative regulation of multicellular org...",4,1,1.07,350,"0.716","0.919","0.919" +"GO:0080134","regulation of response to stress",4,1,1.07,351,"0.716","0.919","0.919" +"GO:0033036","macromolecule localization",21,5,5.63,300,"0.713","0.920","0.920" +"GO:0051641","cellular localization",21,5,5.63,301,"0.713","0.920","0.920" +"GO:0071702","organic substance transport",16,4,4.29,286,"0.666","0.924","0.924" +"GO:0050789","regulation of biological process",84,22,22.51,280,"0.624","0.926","0.926" +"GO:0030154","cell differentiation",18,4,4.82,377,"0.763","0.928","0.928" +"GO:0048869","cellular developmental process",18,4,4.82,378,"0.763","0.928","0.928" +"GO:0006869","lipid transport",3,0,0.8,564,"1.000","0.929","0.929" +"GO:0010876","lipid localization",3,0,0.8,565,"1.000","0.929","0.929" +"GO:0015711","organic anion transport",6,1,1.61,433,"0.850","0.930","0.930" +"GO:0009987","cellular process",150,37,40.19,473,"0.899","0.934","0.934" +"GO:0071705","nitrogen compound transport",13,4,3.48,121,"0.478","0.935","0.935" +"GO:0007017","microtubule-based process",3,0,0.8,566,"1.000","0.940","0.940" +"GO:0015849","organic acid transport",5,1,1.34,396,"0.793","0.942","0.942" +"GO:0046942","carboxylic acid transport",5,1,1.34,397,"0.793","0.942","0.942" +"GO:0098656","anion transmembrane transport",5,1,1.34,398,"0.793","0.942","0.942" +"GO:0007165","signal transduction",35,7,9.38,461,"0.888","0.945","0.945" +"GO:0006810","transport",46,9,12.33,503,"0.928","0.948","0.948" +"GO:0016192","vesicle-mediated transport",11,1,2.95,519,"0.971","0.948","0.948" +"GO:0000902","cell morphogenesis",7,1,1.88,467,"0.891","0.950","0.950" +"GO:0051239","regulation of multicellular organismal p...",7,1,1.88,468,"0.891","0.950","0.950" +"GO:0060284","regulation of cell development",7,1,1.88,469,"0.891","0.950","0.950" +"GO:0051716","cellular response to stimulus",53,9,14.2,521,"0.982","0.952","0.952" +"GO:0051336","regulation of hydrolase activity",5,1,1.34,399,"0.793","0.953","0.953" +"GO:0046907","intracellular transport",10,2,2.68,404,"0.801","0.953","0.953" +"GO:0003333","amino acid transmembrane transport",4,1,1.07,352,"0.716","0.953","0.953" +"GO:0006865","amino acid transport",4,1,1.07,353,"0.716","0.953","0.953" +"GO:1903825","organic acid transmembrane transport",4,1,1.07,354,"0.716","0.953","0.953" +"GO:1905039","carboxylic acid transmembrane transport",4,1,1.07,355,"0.716","0.953","0.953" +"GO:0006811","ion transport",21,5,5.63,302,"0.713","0.954","0.954" +"GO:0023052","signaling",37,7,9.91,500,"0.922","0.956","0.956" +"GO:0007154","cell communication",38,7,10.18,506,"0.936","0.958","0.958" +"GO:0050794","regulation of cellular process",77,20,20.63,283,"0.641","0.960","0.960" +"GO:0008284","positive regulation of cell proliferatio...",3,0,0.8,567,"1.000","0.961","0.961" +"GO:0042127","regulation of cell proliferation",3,0,0.8,568,"1.000","0.961","0.961" +"GO:0030900","forebrain development",4,1,1.07,356,"0.716","0.963","0.963" +"GO:0032989","cellular component morphogenesis",9,1,2.41,509,"0.943","0.965","0.965" +"GO:0006650","glycerophospholipid metabolic process",5,0,1.34,569,"1.000","0.967","0.967" +"GO:0046486","glycerolipid metabolic process",5,0,1.34,570,"1.000","0.967","0.967" +"GO:0044249","cellular biosynthetic process",53,12,14.2,407,"0.834","0.969","0.969" +"GO:0009966","regulation of signal transduction",12,3,3.22,289,"0.670","0.970","0.970" +"GO:0007267","cell-cell signaling",5,1,1.34,400,"0.793","0.973","0.973" +"GO:0010468","regulation of gene expression",29,6,7.77,415,"0.848","0.973","0.973" +"GO:0044271","cellular nitrogen compound biosynthetic ...",45,9,12.06,487,"0.914","0.976","0.976" +"GO:0050896","response to stimulus",63,12,16.88,517,"0.969","0.978","0.978" +"GO:0043009","chordate embryonic development",6,1,1.61,434,"0.850","0.978","0.978" +"GO:0016477","cell migration",6,1,1.61,435,"0.850","0.983","0.983" +"GO:0030334","regulation of cell migration",6,1,1.61,436,"0.850","0.983","0.983" +"GO:0040011","locomotion",6,1,1.61,437,"0.850","0.983","0.983" +"GO:0040012","regulation of locomotion",6,1,1.61,438,"0.850","0.983","0.983" +"GO:0048870","cell motility",6,1,1.61,439,"0.850","0.983","0.983" +"GO:0051674","localization of cell",6,1,1.61,440,"0.850","0.983","0.983" +"GO:2000145","regulation of cell motility",6,1,1.61,441,"0.850","0.983","0.983" +"GO:0016070","RNA metabolic process",37,9,9.91,303,"0.713","0.986","0.986" +"GO:1901615","organic hydroxy compound metabolic proce...",4,0,1.07,571,"1.000","0.988","0.988" +"GO:0006812","cation transport",14,3,3.75,382,"0.777","0.989","0.989" +"GO:0010558","negative regulation of macromolecule bio...",6,1,1.61,442,"0.850","0.991","0.991" +"GO:0031327","negative regulation of cellular biosynth...",6,1,1.61,443,"0.850","0.991","0.991" +"GO:0045892","negative regulation of transcription, DN...",6,1,1.61,444,"0.850","0.991","0.991" +"GO:0045934","negative regulation of nucleobase-contai...",6,1,1.61,445,"0.850","0.991","0.991" +"GO:0051253","negative regulation of RNA metabolic pro...",6,1,1.61,446,"0.850","0.991","0.991" +"GO:1902679","negative regulation of RNA biosynthetic ...",6,1,1.61,447,"0.850","0.991","0.991" +"GO:1903507","negative regulation of nucleic acid-temp...",6,1,1.61,448,"0.850","0.991","0.991" +"GO:2000113","negative regulation of cellular macromol...",6,1,1.61,449,"0.850","0.991","0.991" +"GO:0007399","nervous system development",16,3,4.29,452,"0.854","0.993","0.993" +"GO:0048583","regulation of response to stimulus",15,3,4.02,405,"0.819","0.993","0.993" +"GO:0010646","regulation of cell communication",13,3,3.48,360,"0.727","0.993","0.993" +"GO:0023051","regulation of signaling",13,3,3.48,361,"0.727","0.993","0.993" +"GO:0010467","gene expression",46,11,12.33,373,"0.751","0.994","0.994" +"GO:0048518","positive regulation of biological proces...",24,5,6.43,406,"0.827","0.994","0.994" +"GO:0070848","response to growth factor",4,0,1.07,572,"1.000","0.994","0.994" +"GO:0009792","embryo development ending in birth or eg...",7,1,1.88,470,"0.891","0.995","0.995" +"GO:0006366","transcription by RNA polymerase II",11,1,2.95,520,"0.971","0.995","0.995" +"GO:0007417","central nervous system development",11,2,2.95,412,"0.845","0.995","0.995" +"GO:0007420","brain development",11,2,2.95,413,"0.845","0.995","0.995" +"GO:0060322","head development",11,2,2.95,414,"0.845","0.995","0.995" +"GO:0006357","regulation of transcription by RNA polym...",10,1,2.68,515,"0.959","0.996","0.996" +"GO:0008283","cell proliferation",6,1,1.61,450,"0.850","0.996","0.996" +"GO:0009967","positive regulation of signal transducti...",8,1,2.14,495,"0.922","0.997","0.997" +"GO:0010647","positive regulation of cell communicatio...",8,1,2.14,496,"0.922","0.997","0.997" +"GO:0023056","positive regulation of signaling",8,1,2.14,497,"0.922","0.997","0.997" +"GO:0048584","positive regulation of response to stimu...",8,1,2.14,498,"0.922","0.997","0.997" +"GO:0009058","biosynthetic process",55,12,14.74,456,"0.876","0.997","0.997" +"GO:0045596","negative regulation of cell differentiat...",5,1,1.34,401,"0.793","0.997","0.997" +"GO:0051093","negative regulation of developmental pro...",5,1,1.34,402,"0.793","0.997","0.997" +"GO:1901576","organic substance biosynthetic process",54,12,14.47,453,"0.856","0.997","0.997" +"GO:0009890","negative regulation of biosynthetic proc...",7,1,1.88,471,"0.891","0.997","0.997" +"GO:0009059","macromolecule biosynthetic process",41,9,10.99,408,"0.836","0.997","0.997" +"GO:0051270","regulation of cellular component movemen...",7,1,1.88,472,"0.891","0.997","0.997" +"GO:1901362","organic cyclic compound biosynthetic pro...",40,7,10.72,512,"0.957","0.998","0.998" +"GO:0018130","heterocycle biosynthetic process",39,7,10.45,511,"0.948","0.998","0.998" +"GO:0034645","cellular macromolecule biosynthetic proc...",39,8,10.45,460,"0.883","0.998","0.998" +"GO:0019438","aromatic compound biosynthetic process",38,7,10.18,507,"0.936","0.998","0.998" +"GO:0000122","negative regulation of transcription by ...",5,0,1.34,573,"1.000","0.998","0.998" +"GO:0009891","positive regulation of biosynthetic proc...",5,0,1.34,574,"1.000","0.998","0.998" +"GO:0010557","positive regulation of macromolecule bio...",5,0,1.34,575,"1.000","0.998","0.998" +"GO:0010628","positive regulation of gene expression",5,0,1.34,576,"1.000","0.998","0.998" +"GO:0031328","positive regulation of cellular biosynth...",5,0,1.34,577,"1.000","0.998","0.998" +"GO:0045893","positive regulation of transcription, DN...",5,0,1.34,578,"1.000","0.998","0.998" +"GO:0045935","positive regulation of nucleobase-contai...",5,0,1.34,579,"1.000","0.998","0.998" +"GO:0045944","positive regulation of transcription by ...",5,0,1.34,580,"1.000","0.998","0.998" +"GO:0051254","positive regulation of RNA metabolic pro...",5,0,1.34,581,"1.000","0.998","0.998" +"GO:1902680","positive regulation of RNA biosynthetic ...",5,0,1.34,582,"1.000","0.998","0.998" +"GO:1903508","positive regulation of nucleic acid-temp...",5,0,1.34,583,"1.000","0.998","0.998" +"GO:0034654","nucleobase-containing compound biosynthe...",37,7,9.91,501,"0.922","0.998","0.998" +"GO:0006351","transcription, DNA-templated",32,6,8.57,484,"0.913","0.998","0.998" +"GO:0032774","RNA biosynthetic process",32,6,8.57,485,"0.913","0.998","0.998" +"GO:0097659","nucleic acid-templated transcription",32,6,8.57,486,"0.913","0.998","0.998" +"GO:0009791","post-embryonic development",4,0,1.07,584,"1.000","0.998","0.998" +"GO:0045165","cell fate commitment",4,0,1.07,585,"1.000","0.998","0.998" +"GO:0072089","stem cell proliferation",4,0,1.07,586,"1.000","0.998","0.998" +"GO:0009889","regulation of biosynthetic process",29,5,7.77,505,"0.935","0.998","0.998" +"GO:0010556","regulation of macromolecule biosynthetic...",28,5,7.5,488,"0.920","0.999","0.999" +"GO:0031326","regulation of cellular biosynthetic proc...",28,5,7.5,489,"0.920","0.999","0.999" +"GO:2000112","regulation of cellular macromolecule bio...",28,5,7.5,490,"0.920","0.999","0.999" +"GO:0006355","regulation of transcription, DNA-templat...",27,5,7.23,475,"0.902","0.999","0.999" +"GO:0019219","regulation of nucleobase-containing comp...",27,5,7.23,476,"0.902","0.999","0.999" +"GO:0051252","regulation of RNA metabolic process",27,5,7.23,477,"0.902","0.999","0.999" +"GO:1903506","regulation of nucleic acid-templated tra...",27,5,7.23,478,"0.902","0.999","0.999" +"GO:2001141","regulation of RNA biosynthetic process",27,5,7.23,479,"0.902","0.999","0.999" +"GO:0001701","in utero embryonic development",3,0,0.8,587,"1.000","0.999","0.999" +"GO:0001764","neuron migration",3,0,0.8,588,"1.000","0.999","0.999" +"GO:0007405","neuroblast proliferation",3,0,0.8,589,"1.000","0.999","0.999" +"GO:0010001","glial cell differentiation",3,0,0.8,590,"1.000","0.999","0.999" +"GO:0016055","Wnt signaling pathway",3,0,0.8,591,"1.000","0.999","0.999" +"GO:0030111","regulation of Wnt signaling pathway",3,0,0.8,592,"1.000","0.999","0.999" +"GO:0042063","gliogenesis",3,0,0.8,593,"1.000","0.999","0.999" +"GO:0048663","neuron fate commitment",3,0,0.8,594,"1.000","0.999","0.999" +"GO:0061351","neural precursor cell proliferation",3,0,0.8,595,"1.000","0.999","0.999" +"GO:0198738","cell-cell signaling by wnt",3,0,0.8,596,"1.000","0.999","0.999" +"GO:1905114","cell surface receptor signaling pathway ...",3,0,0.8,597,"1.000","0.999","0.999" +"GO:0051234","establishment of localization",49,10,13.13,483,"0.912","0.999","0.999" +"GO:0006928","movement of cell or subcellular componen...",8,1,2.14,499,"0.922","1.000","1.000" +"GO:0008150","biological_process",209,56,56,598,"1.000","1.000","1.000" +"GO:0051179","localization",53,10,14.2,513,"0.957","1.000","1.000" +"GO:0010721","negative regulation of cell development",4,0,1.07,599,"1.000","1.000","1.000" +"GO:0031503","protein-containing complex localization",3,0,0.8,600,"1.000","1.000","1.000" +"GO:0048863","stem cell differentiation",3,0,0.8,601,"1.000","1.000","1.000" diff --git a/GO_enrichment_microbiome_output/contrast_laying_postlaying_upregulated.csv b/GO_enrichment_microbiome_output/contrast_laying_postlaying_upregulated.csv index 095cc8f..8c09b36 100644 --- a/GO_enrichment_microbiome_output/contrast_laying_postlaying_upregulated.csv +++ b/GO_enrichment_microbiome_output/contrast_laying_postlaying_upregulated.csv @@ -1,6 +1,496 @@ "GO.ID","Term","Annotated","Significant","Expected","Rank in classicFisher","classicFisher","classicKS","elimKS" -"GO:0000902","cell morphogenesis",5,3,1.38,4,"0.13","0.064","0.064" -"GO:0032989","cellular component morphogenesis",5,3,1.38,5,"0.13","0.064","0.064" -"GO:0055114","oxidation-reduction process",14,5,3.86,54,"0.34","0.074","0.074" -"GO:0009607","response to biotic stimulus",3,2,0.83,7,"0.19","0.081","0.081" -"GO:0009058","biosynthetic process",51,12,14.08,259,"0.82","0.097","0.097" +"GO:0000902","cell morphogenesis",5,3,1.38,4,"0.130","0.064","0.064" +"GO:0032989","cellular component morphogenesis",5,3,1.38,5,"0.130","0.064","0.064" +"GO:0055114","oxidation-reduction process",14,5,3.86,54,"0.335","0.074","0.074" +"GO:0009607","response to biotic stimulus",3,2,0.83,7,"0.185","0.081","0.081" +"GO:0009058","biosynthetic process",51,12,14.08,259,"0.821","0.097","0.097" +"GO:0071310","cellular response to organic substance",4,1,1.1,180,"0.728","0.102","0.102" +"GO:0006820","anion transport",6,3,1.66,31,"0.210","0.110","0.110" +"GO:0040007","growth",6,3,1.66,32,"0.210","0.115","0.115" +"GO:0048589","developmental growth",6,3,1.66,33,"0.210","0.115","0.115" +"GO:0098660","inorganic ion transmembrane transport",4,3,1.1,1,"0.065","0.116","0.116" +"GO:0098662","inorganic cation transmembrane transport",4,3,1.1,2,"0.065","0.116","0.116" +"GO:0015698","inorganic anion transport",3,2,0.83,8,"0.185","0.121","0.121" +"GO:1901576","organic substance biosynthetic process",49,11,13.52,281,"0.864","0.124","0.124" +"GO:0016049","cell growth",3,2,0.83,9,"0.185","0.125","0.125" +"GO:0040008","regulation of growth",3,2,0.83,10,"0.185","0.125","0.125" +"GO:0048638","regulation of developmental growth",3,2,0.83,11,"0.185","0.125","0.125" +"GO:0050803","regulation of synapse structure or activ...",3,2,0.83,12,"0.185","0.125","0.125" +"GO:0050807","regulation of synapse organization",3,2,0.83,13,"0.185","0.125","0.125" +"GO:0060560","developmental growth involved in morphog...",3,2,0.83,14,"0.185","0.125","0.125" +"GO:0044249","cellular biosynthetic process",47,10,12.97,307,"0.901","0.158","0.158" +"GO:0046907","intracellular transport",14,3,3.86,238,"0.796","0.161","0.161" +"GO:0043603","cellular amide metabolic process",12,3,3.31,168,"0.692","0.164","0.164" +"GO:0046434","organophosphate catabolic process",4,2,1.1,36,"0.306","0.170","0.170" +"GO:0007420","brain development",4,2,1.1,37,"0.306","0.172","0.172" +"GO:0060322","head development",4,2,1.1,38,"0.306","0.172","0.172" +"GO:0046578","regulation of Ras protein signal transdu...",3,2,0.83,15,"0.185","0.180","0.180" +"GO:0051056","regulation of small GTPase mediated sign...",3,2,0.83,16,"0.185","0.180","0.180" +"GO:0031503","protein-containing complex localization",3,1,0.83,104,"0.623","0.182","0.182" +"GO:0048878","chemical homeostasis",3,2,0.83,17,"0.185","0.185","0.185" +"GO:0050801","ion homeostasis",3,2,0.83,18,"0.185","0.185","0.185" +"GO:0055065","metal ion homeostasis",3,2,0.83,19,"0.185","0.185","0.185" +"GO:0055080","cation homeostasis",3,2,0.83,20,"0.185","0.185","0.185" +"GO:0098771","inorganic ion homeostasis",3,2,0.83,21,"0.185","0.185","0.185" +"GO:1902531","regulation of intracellular signal trans...",6,3,1.66,34,"0.210","0.195","0.195" +"GO:0051641","cellular localization",19,5,5.24,166,"0.644","0.195","0.195" +"GO:0016071","mRNA metabolic process",5,2,1.38,64,"0.422","0.205","0.205" +"GO:0009059","macromolecule biosynthetic process",39,6,10.76,352,"0.985","0.211","0.211" +"GO:0034645","cellular macromolecule biosynthetic proc...",39,6,10.76,353,"0.985","0.211","0.211" +"GO:0006816","calcium ion transport",3,2,0.83,22,"0.185","0.216","0.216" +"GO:0006366","transcription by RNA polymerase II",8,3,2.21,60,"0.387","0.216","0.216" +"GO:0000375","RNA splicing, via transesterification re...",3,2,0.83,23,"0.185","0.226","0.226" +"GO:0000377","RNA splicing, via transesterification re...",3,2,0.83,24,"0.185","0.226","0.226" +"GO:0000398","mRNA splicing, via spliceosome",3,2,0.83,25,"0.185","0.226","0.226" +"GO:0008380","RNA splicing",3,2,0.83,26,"0.185","0.226","0.226" +"GO:0098656","anion transmembrane transport",4,2,1.1,39,"0.306","0.233","0.233" +"GO:0030182","neuron differentiation",8,3,2.21,61,"0.387","0.239","0.239" +"GO:0032990","cell part morphogenesis",4,2,1.1,40,"0.306","0.240","0.240" +"GO:0048812","neuron projection morphogenesis",4,2,1.1,41,"0.306","0.240","0.240" +"GO:0048858","cell projection morphogenesis",4,2,1.1,42,"0.306","0.240","0.240" +"GO:0050808","synapse organization",4,2,1.1,43,"0.306","0.240","0.240" +"GO:0120039","plasma membrane bounded cell projection ...",4,2,1.1,44,"0.306","0.240","0.240" +"GO:0006457","protein folding",3,2,0.83,27,"0.185","0.245","0.245" +"GO:0016482","cytosolic transport",3,1,0.83,105,"0.623","0.247","0.247" +"GO:0042147","retrograde transport, endosome to Golgi",3,1,0.83,106,"0.623","0.247","0.247" +"GO:0098655","cation transmembrane transport",5,3,1.38,6,"0.130","0.256","0.256" +"GO:0006518","peptide metabolic process",9,2,2.48,230,"0.764","0.263","0.263" +"GO:0070838","divalent metal ion transport",4,2,1.1,45,"0.306","0.267","0.267" +"GO:0072511","divalent inorganic cation transport",4,2,1.1,46,"0.306","0.267","0.267" +"GO:0006643","membrane lipid metabolic process",3,1,0.83,107,"0.623","0.267","0.267" +"GO:0006665","sphingolipid metabolic process",3,1,0.83,108,"0.623","0.267","0.267" +"GO:0044242","cellular lipid catabolic process",3,1,0.83,109,"0.623","0.267","0.267" +"GO:0006753","nucleoside phosphate metabolic process",4,2,1.1,47,"0.306","0.269","0.269" +"GO:0009117","nucleotide metabolic process",4,2,1.1,48,"0.306","0.269","0.269" +"GO:0006952","defense response",3,1,0.83,110,"0.623","0.281","0.281" +"GO:0006397","mRNA processing",4,2,1.1,49,"0.306","0.283","0.283" +"GO:0019725","cellular homeostasis",6,2,1.66,85,"0.529","0.290","0.290" +"GO:0051649","establishment of localization in cell",15,3,4.14,261,"0.836","0.295","0.295" +"GO:0055085","transmembrane transport",28,10,7.73,30,"0.209","0.298","0.298" +"GO:0044271","cellular nitrogen compound biosynthetic ...",41,9,11.32,280,"0.863","0.304","0.304" +"GO:0048699","generation of neurons",9,3,2.48,81,"0.473","0.304","0.304" +"GO:0008610","lipid biosynthetic process",6,2,1.66,86,"0.529","0.318","0.318" +"GO:0006082","organic acid metabolic process",6,1,1.66,269,"0.860","0.322","0.322" +"GO:0019752","carboxylic acid metabolic process",6,1,1.66,270,"0.860","0.322","0.322" +"GO:0043436","oxoacid metabolic process",6,1,1.66,271,"0.860","0.322","0.322" +"GO:0007399","nervous system development",15,5,4.14,63,"0.401","0.336","0.336" +"GO:0007264","small GTPase mediated signal transductio...",4,2,1.1,50,"0.306","0.339","0.339" +"GO:0007265","Ras protein signal transduction",4,2,1.1,51,"0.306","0.339","0.339" +"GO:1901565","organonitrogen compound catabolic proces...",10,5,2.76,3,"0.107","0.350","0.350" +"GO:0090407","organophosphate biosynthetic process",3,2,0.83,28,"0.185","0.354","0.354" +"GO:0022603","regulation of anatomical structure morph...",5,2,1.38,65,"0.422","0.354","0.354" +"GO:0031175","neuron projection development",5,2,1.38,66,"0.422","0.354","0.354" +"GO:0048666","neuron development",5,2,1.38,67,"0.422","0.354","0.354" +"GO:0051960","regulation of nervous system development",5,2,1.38,68,"0.422","0.354","0.354" +"GO:0006412","translation",7,1,1.93,292,"0.900","0.357","0.357" +"GO:0043043","peptide biosynthetic process",7,1,1.93,293,"0.900","0.357","0.357" +"GO:0043604","amide biosynthetic process",7,1,1.93,294,"0.900","0.357","0.357" +"GO:0022008","neurogenesis",10,3,2.76,94,"0.554","0.368","0.368" +"GO:0006793","phosphorus metabolic process",34,9,9.38,164,"0.636","0.372","0.372" +"GO:0006796","phosphate-containing compound metabolic ...",34,9,9.38,165,"0.636","0.372","0.372" +"GO:0042592","homeostatic process",12,3,3.31,169,"0.692","0.373","0.373" +"GO:0006629","lipid metabolic process",14,3,3.86,239,"0.796","0.378","0.378" +"GO:0016054","organic acid catabolic process",3,1,0.83,111,"0.623","0.381","0.381" +"GO:0044282","small molecule catabolic process",3,1,0.83,112,"0.623","0.381","0.381" +"GO:0046395","carboxylic acid catabolic process",3,1,0.83,113,"0.623","0.381","0.381" +"GO:1901605","alpha-amino acid metabolic process",3,1,0.83,114,"0.623","0.381","0.381" +"GO:0030154","cell differentiation",16,5,4.42,79,"0.466","0.399","0.399" +"GO:0009889","regulation of biosynthetic process",27,4,7.45,340,"0.972","0.409","0.409" +"GO:0034220","ion transmembrane transport",11,4,3.04,57,"0.359","0.412","0.412" +"GO:0031401","positive regulation of protein modificat...",3,1,0.83,115,"0.623","0.412","0.412" +"GO:0032270","positive regulation of cellular protein ...",3,1,0.83,116,"0.623","0.412","0.412" +"GO:0051247","positive regulation of protein metabolic...",3,1,0.83,117,"0.623","0.412","0.412" +"GO:0006928","movement of cell or subcellular componen...",8,1,2.21,312,"0.928","0.417","0.417" +"GO:0042221","response to chemical",17,5,4.69,83,"0.528","0.418","0.418" +"GO:0044255","cellular lipid metabolic process",11,2,3.04,266,"0.858","0.421","0.421" +"GO:0034654","nucleobase-containing compound biosynthe...",32,7,8.83,263,"0.841","0.433","0.433" +"GO:0045454","cell redox homeostasis",4,1,1.1,181,"0.728","0.442","0.442" +"GO:0006575","cellular modified amino acid metabolic p...",3,1,0.83,118,"0.623","0.442","0.442" +"GO:0010556","regulation of macromolecule biosynthetic...",26,3,7.18,360,"0.991","0.442","0.442" +"GO:0031326","regulation of cellular biosynthetic proc...",26,3,7.18,361,"0.991","0.442","0.442" +"GO:2000112","regulation of cellular macromolecule bio...",26,3,7.18,362,"0.991","0.442","0.442" +"GO:0010467","gene expression",42,7,11.59,346,"0.978","0.449","0.449" +"GO:0016197","endosomal transport",5,1,1.38,242,"0.805","0.449","0.449" +"GO:0006473","protein acetylation",3,1,0.83,119,"0.623","0.457","0.457" +"GO:0006475","internal protein amino acid acetylation",3,1,0.83,120,"0.623","0.457","0.457" +"GO:0016569","covalent chromatin modification",3,1,0.83,121,"0.623","0.457","0.457" +"GO:0016570","histone modification",3,1,0.83,122,"0.623","0.457","0.457" +"GO:0016573","histone acetylation",3,1,0.83,123,"0.623","0.457","0.457" +"GO:0018205","peptidyl-lysine modification",3,1,0.83,124,"0.623","0.457","0.457" +"GO:0018393","internal peptidyl-lysine acetylation",3,1,0.83,125,"0.623","0.457","0.457" +"GO:0018394","peptidyl-lysine acetylation",3,1,0.83,126,"0.623","0.457","0.457" +"GO:0030030","cell projection organization",6,2,1.66,87,"0.529","0.457","0.457" +"GO:0120036","plasma membrane bounded cell projection ...",6,2,1.66,88,"0.529","0.457","0.457" +"GO:0048869","cellular developmental process",18,5,4.97,98,"0.588","0.461","0.461" +"GO:0006520","cellular amino acid metabolic process",4,1,1.1,182,"0.728","0.473","0.473" +"GO:0019219","regulation of nucleobase-containing comp...",25,3,6.9,356,"0.987","0.477","0.477" +"GO:0017144","drug metabolic process",6,3,1.66,35,"0.210","0.485","0.485" +"GO:0050793","regulation of developmental process",12,3,3.31,170,"0.692","0.486","0.486" +"GO:2000026","regulation of multicellular organismal d...",12,3,3.31,171,"0.692","0.486","0.486" +"GO:0009653","anatomical structure morphogenesis",14,4,3.86,97,"0.573","0.490","0.490" +"GO:0018193","peptidyl-amino acid modification",6,2,1.66,89,"0.529","0.496","0.496" +"GO:0006886","intracellular protein transport",5,1,1.38,243,"0.805","0.497","0.497" +"GO:0007186","G protein-coupled receptor signaling pat...",8,1,2.21,313,"0.928","0.506","0.506" +"GO:0044248","cellular catabolic process",15,6,4.14,29,"0.204","0.512","0.512" +"GO:0022613","ribonucleoprotein complex biogenesis",3,1,0.83,127,"0.623","0.515","0.515" +"GO:0006357","regulation of transcription by RNA polym...",6,1,1.66,272,"0.860","0.518","0.518" +"GO:0009891","positive regulation of biosynthetic proc...",6,0,1.66,367,"1.000","0.518","0.518" +"GO:0016192","vesicle-mediated transport",13,3,3.59,228,"0.748","0.520","0.520" +"GO:0019439","aromatic compound catabolic process",5,2,1.38,69,"0.422","0.523","0.523" +"GO:0044270","cellular nitrogen compound catabolic pro...",5,2,1.38,70,"0.422","0.523","0.523" +"GO:0046700","heterocycle catabolic process",5,2,1.38,71,"0.422","0.523","0.523" +"GO:0055086","nucleobase-containing small molecule met...",5,2,1.38,72,"0.422","0.523","0.523" +"GO:1901362","organic cyclic compound biosynthetic pro...",35,8,9.66,256,"0.812","0.526","0.526" +"GO:0033554","cellular response to stress",4,1,1.1,183,"0.728","0.527","0.527" +"GO:0048468","cell development",11,3,3.04,162,"0.627","0.529","0.529" +"GO:0002520","immune system development",4,0,1.1,368,"1.000","0.529","0.529" +"GO:0030097","hemopoiesis",4,0,1.1,369,"1.000","0.529","0.529" +"GO:0048534","hematopoietic or lymphoid organ developm...",4,0,1.1,370,"1.000","0.529","0.529" +"GO:0048872","homeostasis of number of cells",4,0,1.1,371,"1.000","0.529","0.529" +"GO:0051179","localization",66,17,18.22,177,"0.711","0.530","0.530" +"GO:0043066","negative regulation of apoptotic process",3,1,0.83,128,"0.623","0.537","0.537" +"GO:0043069","negative regulation of programmed cell d...",3,1,0.83,129,"0.623","0.537","0.537" +"GO:0048545","response to steroid hormone",3,1,0.83,130,"0.623","0.537","0.537" +"GO:0060548","negative regulation of cell death",3,1,0.83,131,"0.623","0.537","0.537" +"GO:1901700","response to oxygen-containing compound",3,1,0.83,132,"0.623","0.537","0.537" +"GO:0007018","microtubule-based movement",4,1,1.1,184,"0.728","0.538","0.538" +"GO:0009116","nucleoside metabolic process",3,1,0.83,133,"0.623","0.540","0.540" +"GO:0034404","nucleobase-containing small molecule bio...",3,1,0.83,134,"0.623","0.540","0.540" +"GO:0034655","nucleobase-containing compound catabolic...",3,1,0.83,135,"0.623","0.540","0.540" +"GO:1901657","glycosyl compound metabolic process",3,1,0.83,136,"0.623","0.540","0.540" +"GO:0051252","regulation of RNA metabolic process",23,3,6.35,345,"0.978","0.552","0.552" +"GO:0044283","small molecule biosynthetic process",5,1,1.38,244,"0.805","0.560","0.560" +"GO:0015931","nucleobase-containing compound transport",4,1,1.1,185,"0.728","0.562","0.562" +"GO:0007417","central nervous system development",6,2,1.66,90,"0.529","0.566","0.566" +"GO:0006325","chromatin organization",5,1,1.38,245,"0.805","0.568","0.568" +"GO:0019637","organophosphate metabolic process",11,4,3.04,58,"0.359","0.568","0.568" +"GO:0035556","intracellular signal transduction",10,3,2.76,95,"0.554","0.568","0.568" +"GO:0030001","metal ion transport",14,5,3.86,55,"0.335","0.569","0.569" +"GO:0018130","heterocycle biosynthetic process",34,8,9.38,235,"0.781","0.569","0.569" +"GO:0019438","aromatic compound biosynthetic process",34,8,9.38,236,"0.781","0.569","0.569" +"GO:0031323","regulation of cellular metabolic process",34,5,9.38,349,"0.984","0.569","0.569" +"GO:0006811","ion transport",30,7,8.28,233,"0.780","0.572","0.572" +"GO:0015031","protein transport",7,1,1.93,295,"0.900","0.572","0.572" +"GO:0015833","peptide transport",7,1,1.93,296,"0.900","0.572","0.572" +"GO:0042886","amide transport",7,1,1.93,297,"0.900","0.572","0.572" +"GO:0045184","establishment of protein localization",7,1,1.93,298,"0.900","0.572","0.572" +"GO:1901566","organonitrogen compound biosynthetic pro...",12,3,3.31,172,"0.692","0.576","0.576" +"GO:0010557","positive regulation of macromolecule bio...",5,0,1.38,372,"1.000","0.580","0.580" +"GO:0010628","positive regulation of gene expression",5,0,1.38,373,"1.000","0.580","0.580" +"GO:0031328","positive regulation of cellular biosynth...",5,0,1.38,374,"1.000","0.580","0.580" +"GO:0045935","positive regulation of nucleobase-contai...",5,0,1.38,375,"1.000","0.580","0.580" +"GO:0001932","regulation of protein phosphorylation",6,1,1.66,273,"0.860","0.581","0.581" +"GO:1901615","organic hydroxy compound metabolic proce...",3,1,0.83,137,"0.623","0.584","0.584" +"GO:0034641","cellular nitrogen compound metabolic pro...",60,13,16.56,310,"0.917","0.589","0.589" +"GO:0006355","regulation of transcription, DNA-templat...",22,3,6.07,336,"0.971","0.592","0.592" +"GO:1903506","regulation of nucleic acid-templated tra...",22,3,6.07,337,"0.971","0.592","0.592" +"GO:2001141","regulation of RNA biosynthetic process",22,3,6.07,338,"0.971","0.592","0.592" +"GO:0051276","chromosome organization",7,1,1.93,299,"0.900","0.593","0.593" +"GO:0000165","MAPK cascade",3,1,0.83,138,"0.623","0.594","0.594" +"GO:0010564","regulation of cell cycle process",3,1,0.83,139,"0.623","0.594","0.594" +"GO:0023014","signal transduction by protein phosphory...",3,1,0.83,140,"0.623","0.594","0.594" +"GO:0043408","regulation of MAPK cascade",3,1,0.83,141,"0.623","0.594","0.594" +"GO:0061024","membrane organization",3,1,0.83,142,"0.623","0.594","0.594" +"GO:0051640","organelle localization",4,1,1.1,186,"0.728","0.607","0.607" +"GO:0006351","transcription, DNA-templated",28,5,7.73,321,"0.933","0.609","0.609" +"GO:0032774","RNA biosynthetic process",28,5,7.73,322,"0.933","0.609","0.609" +"GO:0097659","nucleic acid-templated transcription",28,5,7.73,323,"0.933","0.609","0.609" +"GO:0016311","dephosphorylation",7,1,1.93,300,"0.900","0.619","0.619" +"GO:0070887","cellular response to chemical stimulus",6,1,1.66,274,"0.860","0.622","0.622" +"GO:0044281","small molecule metabolic process",17,5,4.69,84,"0.528","0.624","0.624" +"GO:0009894","regulation of catabolic process",3,1,0.83,143,"0.623","0.626","0.626" +"GO:0031329","regulation of cellular catabolic process",3,1,0.83,144,"0.623","0.626","0.626" +"GO:0009966","regulation of signal transduction",11,3,3.04,163,"0.627","0.631","0.631" +"GO:0006644","phospholipid metabolic process",4,2,1.1,52,"0.306","0.631","0.631" +"GO:0009719","response to endogenous stimulus",4,1,1.1,187,"0.728","0.634","0.634" +"GO:0009725","response to hormone",4,1,1.1,188,"0.728","0.634","0.634" +"GO:0009968","negative regulation of signal transducti...",4,1,1.1,189,"0.728","0.634","0.634" +"GO:0010648","negative regulation of cell communicatio...",4,1,1.1,190,"0.728","0.634","0.634" +"GO:0010941","regulation of cell death",4,1,1.1,191,"0.728","0.634","0.634" +"GO:0014070","response to organic cyclic compound",4,1,1.1,192,"0.728","0.634","0.634" +"GO:0023057","negative regulation of signaling",4,1,1.1,193,"0.728","0.634","0.634" +"GO:0032879","regulation of localization",4,1,1.1,194,"0.728","0.634","0.634" +"GO:0033993","response to lipid",4,1,1.1,195,"0.728","0.634","0.634" +"GO:0042981","regulation of apoptotic process",4,1,1.1,196,"0.728","0.634","0.634" +"GO:0043067","regulation of programmed cell death",4,1,1.1,197,"0.728","0.634","0.634" +"GO:0043086","negative regulation of catalytic activit...",4,1,1.1,198,"0.728","0.634","0.634" +"GO:0044092","negative regulation of molecular functio...",4,1,1.1,199,"0.728","0.634","0.634" +"GO:0048585","negative regulation of response to stimu...",4,1,1.1,200,"0.728","0.634","0.634" +"GO:0016042","lipid catabolic process",4,1,1.1,201,"0.728","0.637","0.637" +"GO:0043543","protein acylation",4,1,1.1,202,"0.728","0.637","0.637" +"GO:0051129","negative regulation of cellular componen...",4,1,1.1,203,"0.728","0.637","0.637" +"GO:0034660","ncRNA metabolic process",3,0,0.83,376,"1.000","0.639","0.639" +"GO:0034613","cellular protein localization",7,2,1.93,101,"0.621","0.640","0.640" +"GO:0070727","cellular macromolecule localization",7,2,1.93,102,"0.621","0.640","0.640" +"GO:0006950","response to stress",13,3,3.59,229,"0.748","0.642","0.642" +"GO:0015711","organic anion transport",3,1,0.83,145,"0.623","0.642","0.642" +"GO:0006810","transport",63,16,17.39,223,"0.733","0.642","0.642" +"GO:0051234","establishment of localization",63,16,17.39,224,"0.733","0.642","0.642" +"GO:1901135","carbohydrate derivative metabolic proces...",4,1,1.1,204,"0.728","0.648","0.648" +"GO:0045893","positive regulation of transcription, DN...",4,0,1.1,377,"1.000","0.648","0.648" +"GO:0051254","positive regulation of RNA metabolic pro...",4,0,1.1,378,"1.000","0.648","0.648" +"GO:1902680","positive regulation of RNA biosynthetic ...",4,0,1.1,379,"1.000","0.648","0.648" +"GO:1903508","positive regulation of nucleic acid-temp...",4,0,1.1,380,"1.000","0.648","0.648" +"GO:0016477","cell migration",4,0,1.1,381,"1.000","0.651","0.651" +"GO:0048870","cell motility",4,0,1.1,382,"1.000","0.651","0.651" +"GO:0051674","localization of cell",4,0,1.1,383,"1.000","0.651","0.651" +"GO:0006139","nucleobase-containing compound metabolic...",46,9,12.7,326,"0.943","0.662","0.662" +"GO:0006352","DNA-templated transcription, initiation",3,1,0.83,146,"0.623","0.667","0.667" +"GO:0010646","regulation of cell communication",12,3,3.31,173,"0.692","0.669","0.669" +"GO:0023051","regulation of signaling",12,3,3.31,174,"0.692","0.669","0.669" +"GO:0009628","response to abiotic stimulus",3,1,0.83,147,"0.623","0.670","0.670" +"GO:0015672","monovalent inorganic cation transport",9,2,2.48,231,"0.764","0.673","0.673" +"GO:0051239","regulation of multicellular organismal p...",16,3,4.42,283,"0.870","0.678","0.678" +"GO:0000904","cell morphogenesis involved in different...",3,1,0.83,148,"0.623","0.680","0.680" +"GO:0007409","axonogenesis",3,1,0.83,149,"0.623","0.680","0.680" +"GO:0048667","cell morphogenesis involved in neuron di...",3,1,0.83,150,"0.623","0.680","0.680" +"GO:0061564","axon development",3,1,0.83,151,"0.623","0.680","0.680" +"GO:0071702","organic substance transport",12,3,3.31,175,"0.692","0.680","0.680" +"GO:0006468","protein phosphorylation",20,4,5.52,265,"0.857","0.681","0.681" +"GO:0007346","regulation of mitotic cell cycle",4,1,1.1,205,"0.728","0.686","0.686" +"GO:0045664","regulation of neuron differentiation",4,1,1.1,206,"0.728","0.686","0.686" +"GO:0050767","regulation of neurogenesis",4,1,1.1,207,"0.728","0.686","0.686" +"GO:0051726","regulation of cell cycle",4,1,1.1,208,"0.728","0.686","0.686" +"GO:0060284","regulation of cell development",4,1,1.1,209,"0.728","0.686","0.686" +"GO:0010468","regulation of gene expression",26,3,7.18,363,"0.991","0.691","0.691" +"GO:1901360","organic cyclic compound metabolic proces...",51,11,14.08,306,"0.901","0.691","0.691" +"GO:0010604","positive regulation of macromolecule met...",9,1,2.48,328,"0.949","0.691","0.691" +"GO:0008152","metabolic process",135,38,37.26,80,"0.473","0.697","0.697" +"GO:0000226","microtubule cytoskeleton organization",4,1,1.1,210,"0.728","0.700","0.700" +"GO:0009967","positive regulation of signal transducti...",4,1,1.1,211,"0.728","0.700","0.700" +"GO:0010647","positive regulation of cell communicatio...",4,1,1.1,212,"0.728","0.700","0.700" +"GO:0023056","positive regulation of signaling",4,1,1.1,213,"0.728","0.700","0.700" +"GO:0051241","negative regulation of multicellular org...",4,1,1.1,214,"0.728","0.700","0.700" +"GO:1903047","mitotic cell cycle process",4,1,1.1,215,"0.728","0.700","0.700" +"GO:0006915","apoptotic process",5,1,1.38,246,"0.805","0.701","0.701" +"GO:0008219","cell death",5,1,1.38,247,"0.805","0.701","0.701" +"GO:0012501","programmed cell death",5,1,1.38,248,"0.805","0.701","0.701" +"GO:0016070","RNA metabolic process",36,6,9.94,335,"0.969","0.702","0.702" +"GO:0006813","potassium ion transport",4,1,1.1,216,"0.728","0.708","0.708" +"GO:0000122","negative regulation of transcription by ...",3,0,0.83,384,"1.000","0.714","0.714" +"GO:0010038","response to metal ion",4,1,1.1,217,"0.728","0.719","0.719" +"GO:0045944","positive regulation of transcription by ...",3,0,0.83,385,"1.000","0.723","0.723" +"GO:0050673","epithelial cell proliferation",3,0,0.83,386,"1.000","0.723","0.723" +"GO:0006725","cellular aromatic compound metabolic pro...",50,11,13.8,285,"0.884","0.723","0.723" +"GO:0046483","heterocycle metabolic process",50,11,13.8,286,"0.884","0.723","0.723" +"GO:0006812","cation transport",18,5,4.97,99,"0.588","0.729","0.729" +"GO:0048583","regulation of response to stimulus",14,3,3.86,240,"0.796","0.732","0.732" +"GO:0031325","positive regulation of cellular metaboli...",10,2,2.76,258,"0.816","0.745","0.745" +"GO:0009605","response to external stimulus",6,1,1.66,275,"0.860","0.749","0.749" +"GO:0048646","anatomical structure formation involved ...",6,1,1.66,276,"0.860","0.749","0.749" +"GO:0010033","response to organic substance",9,2,2.48,232,"0.764","0.750","0.750" +"GO:0051186","cofactor metabolic process",5,1,1.38,249,"0.805","0.753","0.753" +"GO:1901361","organic cyclic compound catabolic proces...",6,2,1.66,91,"0.529","0.753","0.753" +"GO:0007275","multicellular organism development",28,7,7.73,176,"0.704","0.763","0.763" +"GO:0001933","negative regulation of protein phosphory...",3,0,0.83,387,"1.000","0.765","0.765" +"GO:0002262","myeloid cell homeostasis",3,0,0.83,388,"1.000","0.765","0.765" +"GO:0030099","myeloid cell differentiation",3,0,0.83,389,"1.000","0.765","0.765" +"GO:0030218","erythrocyte differentiation",3,0,0.83,390,"1.000","0.765","0.765" +"GO:0034101","erythrocyte homeostasis",3,0,0.83,391,"1.000","0.765","0.765" +"GO:0042326","negative regulation of phosphorylation",3,0,0.83,392,"1.000","0.765","0.765" +"GO:0002376","immune system process",6,0,1.66,393,"1.000","0.770","0.770" +"GO:0006403","RNA localization",3,1,0.83,152,"0.623","0.771","0.771" +"GO:0006405","RNA export from nucleus",3,1,0.83,153,"0.623","0.771","0.771" +"GO:0006913","nucleocytoplasmic transport",3,1,0.83,154,"0.623","0.771","0.771" +"GO:0050657","nucleic acid transport",3,1,0.83,155,"0.623","0.771","0.771" +"GO:0050658","RNA transport",3,1,0.83,156,"0.623","0.771","0.771" +"GO:0051168","nuclear export",3,1,0.83,157,"0.623","0.771","0.771" +"GO:0051169","nuclear transport",3,1,0.83,158,"0.623","0.771","0.771" +"GO:0051236","establishment of RNA localization",3,1,0.83,159,"0.623","0.771","0.771" +"GO:0000278","mitotic cell cycle",5,1,1.38,250,"0.805","0.771","0.771" +"GO:0022402","cell cycle process",5,1,1.38,251,"0.805","0.771","0.771" +"GO:1901564","organonitrogen compound metabolic proces...",64,19,17.67,62,"0.387","0.779","0.779" +"GO:0050896","response to stimulus",46,10,12.7,284,"0.884","0.779","0.779" +"GO:0009056","catabolic process",17,6,4.69,53,"0.314","0.783","0.783" +"GO:0007166","cell surface receptor signaling pathway",7,1,1.93,301,"0.900","0.785","0.785" +"GO:0006396","RNA processing",7,2,1.93,103,"0.621","0.787","0.787" +"GO:0080090","regulation of primary metabolic process",34,5,9.38,350,"0.984","0.789","0.789" +"GO:0007276","gamete generation",3,0,0.83,394,"1.000","0.791","0.791" +"GO:0022412","cellular process involved in reproductio...",3,0,0.83,395,"1.000","0.791","0.791" +"GO:0031344","regulation of cell projection organizati...",4,1,1.1,218,"0.728","0.793","0.793" +"GO:0120035","regulation of plasma membrane bounded ce...",4,1,1.1,219,"0.728","0.793","0.793" +"GO:0044267","cellular protein metabolic process",47,13,12.97,96,"0.563","0.794","0.794" +"GO:0090304","nucleic acid metabolic process",42,6,11.59,365,"0.993","0.794","0.794" +"GO:0032501","multicellular organismal process",29,7,8,226,"0.744","0.801","0.801" +"GO:0048856","anatomical structure development",29,7,8,227,"0.744","0.801","0.801" +"GO:0019538","protein metabolic process",52,15,14.35,82,"0.474","0.808","0.808" +"GO:0009790","embryo development",5,0,1.38,396,"1.000","0.811","0.811" +"GO:0043933","protein-containing complex subunit organ...",11,1,3.04,342,"0.974","0.811","0.811" +"GO:0065003","protein-containing complex assembly",11,1,3.04,343,"0.974","0.811","0.811" +"GO:0050790","regulation of catalytic activity",8,1,2.21,314,"0.928","0.814","0.814" +"GO:0051704","multi-organism process",8,1,2.21,315,"0.928","0.814","0.814" +"GO:0010035","response to inorganic substance",5,1,1.38,252,"0.805","0.816","0.816" +"GO:1901575","organic substance catabolic process",14,5,3.86,56,"0.335","0.821","0.821" +"GO:0034622","cellular protein-containing complex asse...",8,1,2.21,316,"0.928","0.822","0.822" +"GO:0044085","cellular component biogenesis",15,2,4.14,331,"0.953","0.827","0.827" +"GO:0019953","sexual reproduction",4,0,1.1,397,"1.000","0.827","0.827" +"GO:0044703","multi-organism reproductive process",4,0,1.1,398,"1.000","0.827","0.827" +"GO:0019220","regulation of phosphate metabolic proces...",7,1,1.93,302,"0.900","0.828","0.828" +"GO:0042325","regulation of phosphorylation",7,1,1.93,303,"0.900","0.828","0.828" +"GO:0051174","regulation of phosphorus metabolic proce...",7,1,1.93,304,"0.900","0.828","0.828" +"GO:0048731","system development",24,5,6.62,264,"0.848","0.829","0.829" +"GO:0009893","positive regulation of metabolic process",12,2,3.31,287,"0.891","0.832","0.832" +"GO:0051128","regulation of cellular component organiz...",12,2,3.31,288,"0.891","0.832","0.832" +"GO:0032502","developmental process",30,7,8.28,234,"0.780","0.837","0.837" +"GO:0006508","proteolysis",11,4,3.04,59,"0.359","0.837","0.837" +"GO:0022607","cellular component assembly",14,2,3.86,325,"0.937","0.838","0.838" +"GO:0048523","negative regulation of cellular process",19,2,5.24,354,"0.986","0.841","0.841" +"GO:0009888","tissue development",7,0,1.93,399,"1.000","0.843","0.843" +"GO:0007017","microtubule-based process",8,1,2.21,317,"0.928","0.844","0.844" +"GO:0016043","cellular component organization",31,6,8.56,309,"0.911","0.849","0.849" +"GO:0006511","ubiquitin-dependent protein catabolic pr...",5,2,1.38,73,"0.422","0.854","0.854" +"GO:0019941","modification-dependent protein catabolic...",5,2,1.38,74,"0.422","0.854","0.854" +"GO:0030163","protein catabolic process",5,2,1.38,75,"0.422","0.854","0.854" +"GO:0043632","modification-dependent macromolecule cat...",5,2,1.38,76,"0.422","0.854","0.854" +"GO:0044257","cellular protein catabolic process",5,2,1.38,77,"0.422","0.854","0.854" +"GO:0051603","proteolysis involved in cellular protein...",5,2,1.38,78,"0.422","0.854","0.854" +"GO:0051240","positive regulation of multicellular org...",10,1,2.76,332,"0.963","0.855","0.855" +"GO:0065009","regulation of molecular function",10,1,2.76,333,"0.963","0.855","0.855" +"GO:0048519","negative regulation of biological proces...",20,2,5.52,358,"0.989","0.857","0.857" +"GO:0019222","regulation of metabolic process",37,6,10.21,344,"0.976","0.858","0.858" +"GO:0048584","positive regulation of response to stimu...",7,1,1.93,305,"0.900","0.860","0.860" +"GO:0071705","nitrogen compound transport",11,2,3.04,267,"0.858","0.860","0.860" +"GO:0065008","regulation of biological quality",22,6,6.07,100,"0.602","0.863","0.863" +"GO:0006464","cellular protein modification process",36,9,9.94,178,"0.716","0.865","0.865" +"GO:0036211","protein modification process",36,9,9.94,179,"0.716","0.865","0.865" +"GO:0032535","regulation of cellular component size",5,1,1.38,253,"0.805","0.866","0.866" +"GO:0090066","regulation of anatomical structure size",5,1,1.38,254,"0.805","0.866","0.866" +"GO:0071840","cellular component organization or bioge...",32,6,8.83,311,"0.927","0.868","0.868" +"GO:0051171","regulation of nitrogen compound metaboli...",32,4,8.83,364,"0.992","0.869","0.869" +"GO:0008104","protein localization",11,2,3.04,268,"0.858","0.871","0.871" +"GO:0070647","protein modification by small protein co...",5,1,1.38,255,"0.805","0.874","0.874" +"GO:0009611","response to wounding",3,0,0.83,400,"1.000","0.878","0.878" +"GO:1902532","negative regulation of intracellular sig...",3,0,0.83,401,"1.000","0.878","0.878" +"GO:0048513","animal organ development",14,3,3.86,241,"0.796","0.881","0.881" +"GO:0042493","response to drug",4,1,1.1,220,"0.728","0.883","0.883" +"GO:0033036","macromolecule localization",12,2,3.31,289,"0.891","0.884","0.884" +"GO:0016310","phosphorylation",22,4,6.07,308,"0.907","0.884","0.884" +"GO:0008283","cell proliferation",5,0,1.38,402,"1.000","0.886","0.886" +"GO:0030029","actin filament-based process",5,0,1.38,403,"1.000","0.886","0.886" +"GO:0030036","actin cytoskeleton organization",5,0,1.38,404,"1.000","0.886","0.886" +"GO:0040011","locomotion",5,0,1.38,405,"1.000","0.886","0.886" +"GO:0051258","protein polymerization",5,0,1.38,406,"1.000","0.886","0.886" +"GO:0097435","supramolecular fiber organization",5,0,1.38,407,"1.000","0.886","0.886" +"GO:0007010","cytoskeleton organization",8,1,2.21,318,"0.928","0.889","0.889" +"GO:0007049","cell cycle",8,1,2.21,319,"0.928","0.889","0.889" +"GO:0044087","regulation of cellular component biogene...",8,1,2.21,320,"0.928","0.889","0.889" +"GO:0007423","sensory organ development",4,1,1.1,221,"0.728","0.891","0.891" +"GO:0097164","ammonium ion metabolic process",3,1,0.83,160,"0.623","0.898","0.898" +"GO:0032268","regulation of cellular protein metabolic...",12,1,3.31,347,"0.982","0.901","0.901" +"GO:0051246","regulation of protein metabolic process",12,1,3.31,348,"0.982","0.901","0.901" +"GO:0071704","organic substance metabolic process",114,29,31.47,257,"0.814","0.903","0.903" +"GO:0007015","actin filament organization",4,0,1.1,408,"1.000","0.908","0.908" +"GO:0008064","regulation of actin polymerization or de...",4,0,1.1,409,"1.000","0.908","0.908" +"GO:0008154","actin polymerization or depolymerization",4,0,1.1,410,"1.000","0.908","0.908" +"GO:0030041","actin filament polymerization",4,0,1.1,411,"1.000","0.908","0.908" +"GO:0030832","regulation of actin filament length",4,0,1.1,412,"1.000","0.908","0.908" +"GO:0030833","regulation of actin filament polymerizat...",4,0,1.1,413,"1.000","0.908","0.908" +"GO:0032271","regulation of protein polymerization",4,0,1.1,414,"1.000","0.908","0.908" +"GO:0032956","regulation of actin cytoskeleton organiz...",4,0,1.1,415,"1.000","0.908","0.908" +"GO:0032970","regulation of actin filament-based proce...",4,0,1.1,416,"1.000","0.908","0.908" +"GO:0043254","regulation of protein complex assembly",4,0,1.1,417,"1.000","0.908","0.908" +"GO:0051493","regulation of cytoskeleton organization",4,0,1.1,418,"1.000","0.908","0.908" +"GO:0110053","regulation of actin filament organizatio...",4,0,1.1,419,"1.000","0.908","0.908" +"GO:1902903","regulation of supramolecular fiber organ...",4,0,1.1,420,"1.000","0.908","0.908" +"GO:0044237","cellular metabolic process",109,29,30.09,167,"0.683","0.910","0.910" +"GO:0001775","cell activation",3,0,0.83,421,"1.000","0.911","0.911" +"GO:0002682","regulation of immune system process",3,0,0.83,422,"1.000","0.911","0.911" +"GO:0045321","leukocyte activation",3,0,0.83,423,"1.000","0.911","0.911" +"GO:0051173","positive regulation of nitrogen compound...",9,1,2.48,329,"0.949","0.911","0.911" +"GO:0045595","regulation of cell differentiation",6,1,1.66,277,"0.860","0.914","0.914" +"GO:0005975","carbohydrate metabolic process",4,0,1.1,424,"1.000","0.916","0.916" +"GO:0048518","positive regulation of biological proces...",25,3,6.9,357,"0.987","0.917","0.917" +"GO:0044238","primary metabolic process",111,28,30.64,260,"0.827","0.919","0.919" +"GO:0009987","cellular process",154,40,42.51,262,"0.838","0.921","0.921" +"GO:0031399","regulation of protein modification proce...",10,1,2.76,334,"0.963","0.929","0.929" +"GO:0007155","cell adhesion",6,1,1.66,278,"0.860","0.930","0.930" +"GO:0022610","biological adhesion",6,1,1.66,279,"0.860","0.930","0.930" +"GO:0002009","morphogenesis of an epithelium",3,0,0.83,425,"1.000","0.931","0.931" +"GO:0006935","chemotaxis",3,0,0.83,426,"1.000","0.931","0.931" +"GO:0009887","animal organ morphogenesis",3,0,0.83,427,"1.000","0.931","0.931" +"GO:0030838","positive regulation of actin filament po...",3,0,0.83,428,"1.000","0.931","0.931" +"GO:0031334","positive regulation of protein complex a...",3,0,0.83,429,"1.000","0.931","0.931" +"GO:0032273","positive regulation of protein polymeriz...",3,0,0.83,430,"1.000","0.931","0.931" +"GO:0034314","Arp2/3 complex-mediated actin nucleation",3,0,0.83,431,"1.000","0.931","0.931" +"GO:0042127","regulation of cell proliferation",3,0,0.83,432,"1.000","0.931","0.931" +"GO:0042330","taxis",3,0,0.83,433,"1.000","0.931","0.931" +"GO:0045010","actin nucleation",3,0,0.83,434,"1.000","0.931","0.931" +"GO:0045597","positive regulation of cell differentiat...",3,0,0.83,435,"1.000","0.931","0.931" +"GO:0048568","embryonic organ development",3,0,0.83,436,"1.000","0.931","0.931" +"GO:0048729","tissue morphogenesis",3,0,0.83,437,"1.000","0.931","0.931" +"GO:0051495","positive regulation of cytoskeleton orga...",3,0,0.83,438,"1.000","0.931","0.931" +"GO:0060429","epithelium development",3,0,0.83,439,"1.000","0.931","0.931" +"GO:1902905","positive regulation of supramolecular fi...",3,0,0.83,440,"1.000","0.931","0.931" +"GO:0007165","signal transduction",28,5,7.73,324,"0.933","0.941","0.941" +"GO:0006732","coenzyme metabolic process",3,1,0.83,161,"0.623","0.942","0.942" +"GO:0050794","regulation of cellular process",69,13,19.05,351,"0.985","0.942","0.942" +"GO:0006807","nitrogen compound metabolic process",100,26,27.6,225,"0.737","0.943","0.943" +"GO:0009890","negative regulation of biosynthetic proc...",6,0,1.66,441,"1.000","0.944","0.944" +"GO:0010558","negative regulation of macromolecule bio...",6,0,1.66,442,"1.000","0.944","0.944" +"GO:0031327","negative regulation of cellular biosynth...",6,0,1.66,443,"1.000","0.944","0.944" +"GO:2000113","negative regulation of cellular macromol...",6,0,1.66,444,"1.000","0.944","0.944" +"GO:0051259","protein complex oligomerization",3,0,0.83,445,"1.000","0.947","0.947" +"GO:0051260","protein homooligomerization",3,0,0.83,446,"1.000","0.947","0.947" +"GO:0007154","cell communication",29,5,8,327,"0.946","0.948","0.948" +"GO:0050789","regulation of biological process",71,13,19.6,359,"0.990","0.950","0.950" +"GO:0060255","regulation of macromolecule metabolic pr...",34,4,9.38,366,"0.996","0.951","0.951" +"GO:0023052","signaling",30,6,8.28,290,"0.892","0.953","0.953" +"GO:0044089","positive regulation of cellular componen...",4,0,1.1,447,"1.000","0.953","0.953" +"GO:0098609","cell-cell adhesion",4,0,1.1,448,"1.000","0.953","0.953" +"GO:0043412","macromolecule modification",38,9,10.49,237,"0.784","0.957","0.957" +"GO:0048522","positive regulation of cellular process",19,2,5.24,355,"0.986","0.959","0.959" +"GO:0010629","negative regulation of gene expression",5,0,1.38,449,"1.000","0.960","0.960" +"GO:0045934","negative regulation of nucleobase-contai...",5,0,1.38,450,"1.000","0.960","0.960" +"GO:0009057","macromolecule catabolic process",6,2,1.66,92,"0.529","0.960","0.960" +"GO:0044265","cellular macromolecule catabolic process",6,2,1.66,93,"0.529","0.960","0.960" +"GO:0065007","biological regulation",74,15,20.43,341,"0.972","0.961","0.961" +"GO:0043170","macromolecule metabolic process",89,21,24.57,291,"0.894","0.962","0.962" +"GO:0007267","cell-cell signaling",3,0,0.83,451,"1.000","0.965","0.965" +"GO:0045892","negative regulation of transcription, DN...",4,0,1.1,452,"1.000","0.968","0.968" +"GO:0051253","negative regulation of RNA metabolic pro...",4,0,1.1,453,"1.000","0.968","0.968" +"GO:1902679","negative regulation of RNA biosynthetic ...",4,0,1.1,454,"1.000","0.968","0.968" +"GO:1903507","negative regulation of nucleic acid-temp...",4,0,1.1,455,"1.000","0.968","0.968" +"GO:0003006","developmental process involved in reprod...",3,0,0.83,456,"1.000","0.971","0.971" +"GO:0006814","sodium ion transport",3,0,0.83,457,"1.000","0.972","0.972" +"GO:0050877","nervous system process",3,0,0.83,458,"1.000","0.972","0.972" +"GO:0051049","regulation of transport",3,0,0.83,459,"1.000","0.972","0.972" +"GO:0009892","negative regulation of metabolic process",13,0,3.59,460,"1.000","0.973","0.973" +"GO:0051716","cellular response to stimulus",34,6,9.38,330,"0.952","0.974","0.974" +"GO:0031324","negative regulation of cellular metaboli...",12,0,3.31,461,"1.000","0.975","0.975" +"GO:0006259","DNA metabolic process",5,0,1.38,462,"1.000","0.975","0.975" +"GO:0010605","negative regulation of macromolecule met...",11,0,3.04,463,"1.000","0.977","0.977" +"GO:0051172","negative regulation of nitrogen compound...",11,0,3.04,464,"1.000","0.977","0.977" +"GO:0044260","cellular macromolecule metabolic process",76,18,20.98,282,"0.865","0.979","0.979" +"GO:0016567","protein ubiquitination",3,0,0.83,465,"1.000","0.982","0.982" +"GO:0032446","protein modification by small protein co...",3,0,0.83,466,"1.000","0.982","0.982" +"GO:0006996","organelle organization",22,3,6.07,339,"0.971","0.983","0.983" +"GO:0032269","negative regulation of cellular protein ...",8,0,2.21,467,"1.000","0.983","0.983" +"GO:0051130","positive regulation of cellular componen...",8,0,2.21,468,"1.000","0.983","0.983" +"GO:0051248","negative regulation of protein metabolic...",8,0,2.21,469,"1.000","0.983","0.983" +"GO:0010563","negative regulation of phosphorus metabo...",4,0,1.1,470,"1.000","0.985","0.985" +"GO:0045936","negative regulation of phosphate metabol...",4,0,1.1,471,"1.000","0.985","0.985" +"GO:0033043","regulation of organelle organization",7,0,1.93,472,"1.000","0.986","0.986" +"GO:0000003","reproduction",6,0,1.66,473,"1.000","0.988","0.988" +"GO:0010638","positive regulation of organelle organiz...",6,0,1.66,474,"1.000","0.988","0.988" +"GO:0031400","negative regulation of protein modificat...",6,0,1.66,475,"1.000","0.988","0.988" +"GO:0007610","behavior",5,0,1.38,476,"1.000","0.990","0.990" +"GO:0022414","reproductive process",5,0,1.38,477,"1.000","0.990","0.990" +"GO:0032504","multicellular organism reproduction",4,0,1.1,478,"1.000","0.992","0.992" +"GO:0048609","multicellular organismal reproductive pr...",4,0,1.1,479,"1.000","0.992","0.992" +"GO:0051336","regulation of hydrolase activity",4,0,1.1,480,"1.000","0.992","0.992" +"GO:0006979","response to oxidative stress",3,0,0.83,481,"1.000","0.994","0.994" +"GO:0032259","methylation",4,1,1.1,222,"0.728","0.995","0.995" +"GO:0051094","positive regulation of developmental pro...",8,0,2.21,482,"1.000","0.999","0.999" +"GO:0003008","system process",5,0,1.38,483,"1.000","0.999","0.999" +"GO:0035239","tube morphogenesis",5,0,1.38,484,"1.000","0.999","0.999" +"GO:0035295","tube development",5,0,1.38,485,"1.000","0.999","0.999" +"GO:0072359","circulatory system development",4,0,1.1,486,"1.000","0.999","0.999" +"GO:0001568","blood vessel development",3,0,0.83,487,"1.000","1.000","1.000" +"GO:0001944","vasculature development",3,0,0.83,488,"1.000","1.000","1.000" +"GO:0044057","regulation of system process",3,0,0.83,489,"1.000","1.000","1.000" +"GO:0048514","blood vessel morphogenesis",3,0,0.83,490,"1.000","1.000","1.000" +"GO:0072358","cardiovascular system development",3,0,0.83,491,"1.000","1.000","1.000" +"GO:0006897","endocytosis",4,0,1.1,492,"1.000","1.000","1.000" +"GO:0098657","import into cell",4,0,1.1,493,"1.000","1.000","1.000" +"GO:0008150","biological_process",221,61,61,494,"1.000","1.000","1.000" +"GO:0043414","macromolecule methylation",3,0,0.83,495,"1.000","1.000","1.000" diff --git a/GO_enrichment_microbiome_output/contrast_phoretic_arresting_downregulated.csv b/GO_enrichment_microbiome_output/contrast_phoretic_arresting_downregulated.csv index 43f2dfb..899b7cc 100644 --- a/GO_enrichment_microbiome_output/contrast_phoretic_arresting_downregulated.csv +++ b/GO_enrichment_microbiome_output/contrast_phoretic_arresting_downregulated.csv @@ -4,3 +4,505 @@ "GO:0099173","postsynapse organization",4,1,0.83,118,"0.610","0.0318","0.0318" "GO:0006259","DNA metabolic process",7,3,1.46,6,"0.159","0.0371","0.0371" "GO:0007155","cell adhesion",6,2,1.25,28,"0.365","0.0557","0.0557" +"GO:0009628","response to abiotic stimulus",6,3,1.25,4,"0.106","0.0557","0.0557" +"GO:0022610","biological adhesion",6,2,1.25,29,"0.365","0.0557","0.0557" +"GO:0098609","cell-cell adhesion",6,2,1.25,30,"0.365","0.0557","0.0557" +"GO:0046903","secretion",3,0,0.62,335,"1.000","0.0572","0.0572" +"GO:0051276","chromosome organization",7,1,1.46,251,"0.810","0.0590","0.0590" +"GO:0009892","negative regulation of metabolic process",11,2,2.29,208,"0.709","0.0670","0.0670" +"GO:0007266","Rho protein signal transduction",3,0,0.62,336,"1.000","0.0733","0.0733" +"GO:0035023","regulation of Rho protein signal transdu...",3,0,0.62,337,"1.000","0.0733","0.0733" +"GO:0002118","aggressive behavior",3,1,0.62,52,"0.505","0.0764","0.0764" +"GO:0006469","negative regulation of protein kinase ac...",3,1,0.62,53,"0.505","0.0764","0.0764" +"GO:0006909","phagocytosis",3,1,0.62,54,"0.505","0.0764","0.0764" +"GO:0007276","gamete generation",3,1,0.62,55,"0.505","0.0764","0.0764" +"GO:0007281","germ cell development",3,1,0.62,56,"0.505","0.0764","0.0764" +"GO:0007283","spermatogenesis",3,1,0.62,57,"0.505","0.0764","0.0764" +"GO:0019953","sexual reproduction",3,1,0.62,58,"0.505","0.0764","0.0764" +"GO:0022412","cellular process involved in reproductio...",3,1,0.62,59,"0.505","0.0764","0.0764" +"GO:0032504","multicellular organism reproduction",3,1,0.62,60,"0.505","0.0764","0.0764" +"GO:0033673","negative regulation of kinase activity",3,1,0.62,61,"0.505","0.0764","0.0764" +"GO:0035148","tube formation",3,1,0.62,62,"0.505","0.0764","0.0764" +"GO:0043393","regulation of protein binding",3,1,0.62,63,"0.505","0.0764","0.0764" +"GO:0044703","multi-organism reproductive process",3,1,0.62,64,"0.505","0.0764","0.0764" +"GO:0048232","male gamete generation",3,1,0.62,65,"0.505","0.0764","0.0764" +"GO:0048609","multicellular organismal reproductive pr...",3,1,0.62,66,"0.505","0.0764","0.0764" +"GO:0051098","regulation of binding",3,1,0.62,67,"0.505","0.0764","0.0764" +"GO:0051235","maintenance of location",3,1,0.62,68,"0.505","0.0764","0.0764" +"GO:0051348","negative regulation of transferase activ...",3,1,0.62,69,"0.505","0.0764","0.0764" +"GO:0051705","multi-organism behavior",3,1,0.62,70,"0.505","0.0764","0.0764" +"GO:0006396","RNA processing",6,1,1.25,219,"0.758","0.0895","0.0895" +"GO:0032269","negative regulation of cellular protein ...",5,1,1.04,175,"0.693","0.0967","0.0967" +"GO:0035239","tube morphogenesis",5,2,1.04,14,"0.279","0.0967","0.0967" +"GO:0035295","tube development",5,2,1.04,15,"0.279","0.0967","0.0967" +"GO:0051248","negative regulation of protein metabolic...",5,1,1.04,176,"0.693","0.0967","0.0967" +"GO:0034613","cellular protein localization",9,2,1.87,106,"0.593","0.0974","0.0974" +"GO:0070727","cellular macromolecule localization",9,2,1.87,107,"0.593","0.0974","0.0974" +"GO:0006325","chromatin organization",5,1,1.04,177,"0.693","0.1175","0.1175" +"GO:0090304","nucleic acid metabolic process",43,9,8.95,103,"0.566","0.1183","0.1183" +"GO:0000003","reproduction",5,2,1.04,16,"0.279","0.1255","0.1255" +"GO:0003006","developmental process involved in reprod...",5,2,1.04,17,"0.279","0.1255","0.1255" +"GO:0007610","behavior",5,1,1.04,178,"0.693","0.1255","0.1255" +"GO:0009612","response to mechanical stimulus",5,2,1.04,18,"0.279","0.1255","0.1255" +"GO:0022414","reproductive process",5,2,1.04,19,"0.279","0.1255","0.1255" +"GO:0010605","negative regulation of macromolecule met...",9,2,1.87,108,"0.593","0.1274","0.1274" +"GO:0005975","carbohydrate metabolic process",8,3,1.66,12,"0.218","0.1341","0.1341" +"GO:0034641","cellular nitrogen compound metabolic pro...",55,14,11.45,11,"0.209","0.1359","0.1359" +"GO:0006139","nucleobase-containing compound metabolic...",45,10,9.37,50,"0.469","0.1371","0.1371" +"GO:0031324","negative regulation of cellular metaboli...",9,2,1.87,109,"0.593","0.1443","0.1443" +"GO:0045595","regulation of cell differentiation",9,2,1.87,110,"0.593","0.1443","0.1443" +"GO:0051726","regulation of cell cycle",7,3,1.46,7,"0.159","0.1461","0.1461" +"GO:0006996","organelle organization",16,2,3.33,291,"0.886","0.1489","0.1489" +"GO:0001654","eye development",4,1,0.83,119,"0.610","0.1558","0.1558" +"GO:0001933","negative regulation of protein phosphory...",4,1,0.83,120,"0.610","0.1558","0.1558" +"GO:0010563","negative regulation of phosphorus metabo...",4,1,0.83,121,"0.610","0.1558","0.1558" +"GO:0031400","negative regulation of protein modificat...",4,1,0.83,122,"0.610","0.1558","0.1558" +"GO:0042326","negative regulation of phosphorylation",4,1,0.83,123,"0.610","0.1558","0.1558" +"GO:0045936","negative regulation of phosphate metabol...",4,1,0.83,124,"0.610","0.1558","0.1558" +"GO:0048880","sensory system development",4,1,0.83,125,"0.610","0.1558","0.1558" +"GO:0150063","visual system development",4,1,0.83,126,"0.610","0.1558","0.1558" +"GO:0006725","cellular aromatic compound metabolic pro...",47,10,9.78,99,"0.538","0.1569","0.1569" +"GO:1901360","organic cyclic compound metabolic proces...",49,10,10.2,117,"0.604","0.1776","0.1776" +"GO:0007049","cell cycle",8,3,1.66,13,"0.218","0.1879","0.1879" +"GO:0051172","negative regulation of nitrogen compound...",8,2,1.66,96,"0.524","0.1879","0.1879" +"GO:0055085","transmembrane transport",26,6,5.41,49,"0.467","0.2004","0.2004" +"GO:0016071","mRNA metabolic process",4,1,0.83,127,"0.610","0.2034","0.2034" +"GO:0051130","positive regulation of cellular componen...",4,1,0.83,128,"0.610","0.2034","0.2034" +"GO:0008104","protein localization",10,2,2.08,168,"0.655","0.2065","0.2065" +"GO:0009605","response to external stimulus",10,3,2.08,26,"0.346","0.2065","0.2065" +"GO:0048519","negative regulation of biological proces...",23,5,4.79,100,"0.546","0.2086","0.2086" +"GO:0051094","positive regulation of developmental pro...",8,2,1.66,97,"0.524","0.2088","0.2088" +"GO:0000904","cell morphogenesis involved in different...",4,1,0.83,129,"0.610","0.2109","0.2109" +"GO:0007409","axonogenesis",4,1,0.83,130,"0.610","0.2109","0.2109" +"GO:0048667","cell morphogenesis involved in neuron di...",4,1,0.83,131,"0.610","0.2109","0.2109" +"GO:0061564","axon development",4,1,0.83,132,"0.610","0.2109","0.2109" +"GO:0032880","regulation of protein localization",4,1,0.83,133,"0.610","0.2129","0.2129" +"GO:0009894","regulation of catabolic process",4,0,0.83,338,"1.000","0.2187","0.2187" +"GO:0019222","regulation of metabolic process",39,5,8.12,319,"0.950","0.2240","0.2240" +"GO:0046483","heterocycle metabolic process",48,10,9.99,104,"0.571","0.2257","0.2257" +"GO:0033036","macromolecule localization",12,2,2.5,215,"0.756","0.2287","0.2287" +"GO:0051704","multi-organism process",5,1,1.04,179,"0.693","0.2388","0.2388" +"GO:0048522","positive regulation of cellular process",17,2,3.54,300,"0.907","0.2388","0.2388" +"GO:0001568","blood vessel development",3,1,0.62,71,"0.505","0.2498","0.2498" +"GO:0001944","vasculature development",3,1,0.62,72,"0.505","0.2498","0.2498" +"GO:0002683","negative regulation of immune system pro...",3,1,0.62,73,"0.505","0.2498","0.2498" +"GO:0043010","camera-type eye development",3,1,0.62,74,"0.505","0.2498","0.2498" +"GO:0045444","fat cell differentiation",3,1,0.62,75,"0.505","0.2498","0.2498" +"GO:0048514","blood vessel morphogenesis",3,1,0.62,76,"0.505","0.2498","0.2498" +"GO:0060041","retina development in camera-type eye",3,1,0.62,77,"0.505","0.2498","0.2498" +"GO:0072358","cardiovascular system development",3,1,0.62,78,"0.505","0.2498","0.2498" +"GO:0071704","organic substance metabolic process",107,20,22.27,267,"0.835","0.2590","0.2590" +"GO:0016311","dephosphorylation",3,0,0.62,339,"1.000","0.2648","0.2648" +"GO:0030029","actin filament-based process",4,1,0.83,134,"0.610","0.2712","0.2712" +"GO:0030036","actin cytoskeleton organization",4,1,0.83,135,"0.610","0.2712","0.2712" +"GO:0043086","negative regulation of catalytic activit...",4,1,0.83,136,"0.610","0.2712","0.2712" +"GO:0043549","regulation of kinase activity",4,1,0.83,137,"0.610","0.2712","0.2712" +"GO:0044092","negative regulation of molecular functio...",4,1,0.83,138,"0.610","0.2712","0.2712" +"GO:0045859","regulation of protein kinase activity",4,1,0.83,139,"0.610","0.2712","0.2712" +"GO:0051338","regulation of transferase activity",4,1,0.83,140,"0.610","0.2712","0.2712" +"GO:0000278","mitotic cell cycle",7,2,1.46,42,"0.447","0.2737","0.2737" +"GO:0009890","negative regulation of biosynthetic proc...",7,1,1.46,252,"0.810","0.2737","0.2737" +"GO:0010629","negative regulation of gene expression",7,1,1.46,253,"0.810","0.2737","0.2737" +"GO:0022402","cell cycle process",7,3,1.46,8,"0.159","0.2737","0.2737" +"GO:0007264","small GTPase mediated signal transductio...",6,1,1.25,220,"0.758","0.2783","0.2783" +"GO:0010467","gene expression",42,8,8.74,206,"0.696","0.2859","0.2859" +"GO:0001558","regulation of cell growth",4,1,0.83,141,"0.610","0.2872","0.2872" +"GO:0001775","cell activation",6,2,1.25,31,"0.365","0.2896","0.2896" +"GO:0031175","neuron projection development",6,1,1.25,221,"0.758","0.2896","0.2896" +"GO:0048646","anatomical structure formation involved ...",6,2,1.25,32,"0.365","0.2896","0.2896" +"GO:0050808","synapse organization",6,1,1.25,222,"0.758","0.2896","0.2896" +"GO:0007165","signal transduction",33,8,6.87,37,"0.373","0.2930","0.2930" +"GO:0023052","signaling",33,8,6.87,38,"0.373","0.2930","0.2930" +"GO:0003333","amino acid transmembrane transport",5,2,1.04,20,"0.279","0.2966","0.2966" +"GO:0006865","amino acid transport",5,2,1.04,21,"0.279","0.2966","0.2966" +"GO:1903825","organic acid transmembrane transport",5,2,1.04,22,"0.279","0.2966","0.2966" +"GO:1905039","carboxylic acid transmembrane transport",5,2,1.04,23,"0.279","0.2966","0.2966" +"GO:0043170","macromolecule metabolic process",80,15,16.65,241,"0.778","0.3025","0.3025" +"GO:0006397","mRNA processing",3,1,0.62,79,"0.505","0.3047","0.3047" +"GO:0006950","response to stress",17,7,3.54,1,"0.038","0.0377","0.3112" +"GO:0010975","regulation of neuron projection developm...",3,0,0.62,340,"1.000","0.3131","0.3131" +"GO:0006914","autophagy",3,0,0.62,341,"1.000","0.3217","0.3217" +"GO:0010720","positive regulation of cell development",3,0,0.62,342,"1.000","0.3217","0.3217" +"GO:0031329","regulation of cellular catabolic process",3,0,0.62,343,"1.000","0.3217","0.3217" +"GO:0033043","regulation of organelle organization",3,0,0.62,344,"1.000","0.3217","0.3217" +"GO:0045666","positive regulation of neuron differenti...",3,0,0.62,345,"1.000","0.3217","0.3217" +"GO:0050769","positive regulation of neurogenesis",3,0,0.62,346,"1.000","0.3217","0.3217" +"GO:0051962","positive regulation of nervous system de...",3,0,0.62,347,"1.000","0.3217","0.3217" +"GO:0061919","process utilizing autophagic mechanism",3,0,0.62,348,"1.000","0.3217","0.3217" +"GO:0050896","response to stimulus",56,16,11.65,3,"0.069","0.0984","0.3443" +"GO:1901566","organonitrogen compound biosynthetic pro...",11,2,2.29,209,"0.709","0.3468","0.3468" +"GO:0016070","RNA metabolic process",36,6,7.49,263,"0.816","0.3559","0.3559" +"GO:0065009","regulation of molecular function",9,2,1.87,111,"0.593","0.3683","0.3683" +"GO:0048518","positive regulation of biological proces...",21,3,4.37,280,"0.858","0.3683","0.3683" +"GO:0007154","cell communication",34,8,7.08,39,"0.411","0.3687","0.3687" +"GO:0017144","drug metabolic process",4,0,0.83,349,"1.000","0.3807","0.3807" +"GO:0015849","organic acid transport",6,2,1.25,33,"0.365","0.3856","0.3856" +"GO:0046942","carboxylic acid transport",6,2,1.25,34,"0.365","0.3856","0.3856" +"GO:0098656","anion transmembrane transport",6,2,1.25,35,"0.365","0.3856","0.3856" +"GO:0018193","peptidyl-amino acid modification",4,0,0.83,350,"1.000","0.3916","0.3916" +"GO:0010558","negative regulation of macromolecule bio...",6,1,1.25,223,"0.758","0.3923","0.3923" +"GO:0031327","negative regulation of cellular biosynth...",6,1,1.25,224,"0.758","0.3923","0.3923" +"GO:1903047","mitotic cell cycle process",6,2,1.25,36,"0.365","0.3923","0.3923" +"GO:2000113","negative regulation of cellular macromol...",6,1,1.25,225,"0.758","0.3923","0.3923" +"GO:0031323","regulation of cellular metabolic process",36,5,7.49,308,"0.918","0.4105","0.4105" +"GO:0043933","protein-containing complex subunit organ...",4,0,0.83,351,"1.000","0.4111","0.4111" +"GO:0065003","protein-containing complex assembly",4,0,0.83,352,"1.000","0.4111","0.4111" +"GO:0070647","protein modification by small protein co...",3,0,0.62,353,"1.000","0.4135","0.4135" +"GO:0032990","cell part morphogenesis",6,1,1.25,226,"0.758","0.4198","0.4198" +"GO:0045597","positive regulation of cell differentiat...",6,1,1.25,227,"0.758","0.4198","0.4198" +"GO:0045664","regulation of neuron differentiation",6,0,1.25,354,"1.000","0.4198","0.4198" +"GO:0050767","regulation of neurogenesis",6,0,1.25,355,"1.000","0.4198","0.4198" +"GO:0060284","regulation of cell development",6,0,1.25,356,"1.000","0.4198","0.4198" +"GO:0015031","protein transport",4,0,0.83,357,"1.000","0.4252","0.4252" +"GO:0015833","peptide transport",4,0,0.83,358,"1.000","0.4252","0.4252" +"GO:0042886","amide transport",4,0,0.83,359,"1.000","0.4252","0.4252" +"GO:0045184","establishment of protein localization",4,0,0.83,360,"1.000","0.4252","0.4252" +"GO:0050793","regulation of developmental process",12,3,2.5,51,"0.473","0.4310","0.4310" +"GO:0050789","regulation of biological process",77,16,16.03,105,"0.572","0.4312","0.4312" +"GO:0071702","organic substance transport",11,2,2.29,210,"0.709","0.4325","0.4325" +"GO:0003008","system process",5,1,1.04,180,"0.693","0.4339","0.4339" +"GO:0060341","regulation of cellular localization",5,1,1.04,181,"0.693","0.4339","0.4339" +"GO:0060255","regulation of macromolecule metabolic pr...",35,5,7.28,298,"0.904","0.4359","0.4359" +"GO:0080090","regulation of primary metabolic process",35,5,7.28,299,"0.904","0.4359","0.4359" +"GO:0044281","small molecule metabolic process",12,2,2.5,216,"0.756","0.4480","0.4480" +"GO:0006081","cellular aldehyde metabolic process",3,0,0.62,361,"1.000","0.4532","0.4532" +"GO:0032502","developmental process",28,5,5.83,214,"0.741","0.4536","0.4536" +"GO:0007423","sensory organ development",5,1,1.04,182,"0.693","0.4547","0.4547" +"GO:0031399","regulation of protein modification proce...",8,1,1.66,275,"0.851","0.4560","0.4560" +"GO:0044238","primary metabolic process",101,20,21.02,207,"0.703","0.4560","0.4560" +"GO:0051716","cellular response to stimulus",47,13,9.78,5,"0.132","0.1284","0.4614" +"GO:0051234","establishment of localization",48,8,9.99,273,"0.846","0.4616","0.4616" +"GO:0006820","anion transport",7,2,1.46,43,"0.447","0.4644","0.4644" +"GO:0015711","organic anion transport",7,2,1.46,44,"0.447","0.4644","0.4644" +"GO:0030334","regulation of cell migration",3,1,0.62,80,"0.505","0.4702","0.4702" +"GO:0040012","regulation of locomotion",3,1,0.62,81,"0.505","0.4702","0.4702" +"GO:0042493","response to drug",3,1,0.62,82,"0.505","0.4702","0.4702" +"GO:0051270","regulation of cellular component movemen...",3,1,0.62,83,"0.505","0.4702","0.4702" +"GO:0051336","regulation of hydrolase activity",3,1,0.62,84,"0.505","0.4702","0.4702" +"GO:2000145","regulation of cell motility",3,1,0.62,85,"0.505","0.4702","0.4702" +"GO:0006979","response to oxidative stress",3,0,0.62,362,"1.000","0.4702","0.4702" +"GO:0007267","cell-cell signaling",3,0,0.62,363,"1.000","0.4702","0.4702" +"GO:0006897","endocytosis",7,1,1.46,254,"0.810","0.4893","0.4893" +"GO:0098657","import into cell",7,1,1.46,255,"0.810","0.4893","0.4893" +"GO:0030030","cell projection organization",7,1,1.46,256,"0.810","0.4916","0.4916" +"GO:0048666","neuron development",7,1,1.46,257,"0.810","0.4916","0.4916" +"GO:0050790","regulation of catalytic activity",7,2,1.46,45,"0.447","0.4916","0.4916" +"GO:0120036","plasma membrane bounded cell projection ...",7,1,1.46,258,"0.810","0.4916","0.4916" +"GO:0006816","calcium ion transport",4,0,0.83,364,"1.000","0.4927","0.4927" +"GO:0070838","divalent metal ion transport",4,0,0.83,365,"1.000","0.4927","0.4927" +"GO:0072511","divalent inorganic cation transport",4,0,0.83,366,"1.000","0.4927","0.4927" +"GO:0048523","negative regulation of cellular process",19,5,3.95,27,"0.357","0.5036","0.5036" +"GO:0048513","animal organ development",14,4,2.91,25,"0.327","0.5087","0.5087" +"GO:0007265","Ras protein signal transduction",5,0,1.04,367,"1.000","0.5136","0.5136" +"GO:0046578","regulation of Ras protein signal transdu...",5,0,1.04,368,"1.000","0.5136","0.5136" +"GO:0051056","regulation of small GTPase mediated sign...",5,0,1.04,369,"1.000","0.5136","0.5136" +"GO:0006518","peptide metabolic process",7,2,1.46,46,"0.447","0.5170","0.5170" +"GO:0043604","amide biosynthetic process",7,2,1.46,47,"0.447","0.5170","0.5170" +"GO:0051240","positive regulation of multicellular org...",7,1,1.46,259,"0.810","0.5239","0.5239" +"GO:0051171","regulation of nitrogen compound metaboli...",34,5,7.08,293,"0.887","0.5240","0.5240" +"GO:0048812","neuron projection morphogenesis",5,1,1.04,183,"0.693","0.5273","0.5273" +"GO:0048858","cell projection morphogenesis",5,1,1.04,184,"0.693","0.5273","0.5273" +"GO:0120039","plasma membrane bounded cell projection ...",5,1,1.04,185,"0.693","0.5273","0.5273" +"GO:0009889","regulation of biosynthetic process",29,4,6.04,295,"0.900","0.5287","0.5287" +"GO:0010468","regulation of gene expression",29,4,6.04,296,"0.900","0.5287","0.5287" +"GO:0006810","transport",46,7,9.57,297,"0.902","0.5311","0.5311" +"GO:0044087","regulation of cellular component biogene...",8,2,1.66,98,"0.524","0.5355","0.5355" +"GO:0043603","cellular amide metabolic process",9,3,1.87,24,"0.281","0.5389","0.5389" +"GO:0009058","biosynthetic process",48,9,9.99,212,"0.724","0.5419","0.5419" +"GO:0000910","cytokinesis",3,1,0.62,86,"0.505","0.5434","0.5434" +"GO:0007623","circadian rhythm",3,1,0.62,87,"0.505","0.5434","0.5434" +"GO:0016319","mushroom body development",3,1,0.62,88,"0.505","0.5434","0.5434" +"GO:0048511","rhythmic process",3,1,0.62,89,"0.505","0.5434","0.5434" +"GO:0045892","negative regulation of transcription, DN...",5,1,1.04,186,"0.693","0.5493","0.5493" +"GO:0045934","negative regulation of nucleobase-contai...",5,1,1.04,187,"0.693","0.5493","0.5493" +"GO:0051253","negative regulation of RNA metabolic pro...",5,1,1.04,188,"0.693","0.5493","0.5493" +"GO:1902679","negative regulation of RNA biosynthetic ...",5,1,1.04,189,"0.693","0.5493","0.5493" +"GO:1903507","negative regulation of nucleic acid-temp...",5,1,1.04,190,"0.693","0.5493","0.5493" +"GO:0033993","response to lipid",5,0,1.04,370,"1.000","0.5493","0.5493" +"GO:0045944","positive regulation of transcription by ...",5,0,1.04,371,"1.000","0.5493","0.5493" +"GO:0071396","cellular response to lipid",5,0,1.04,372,"1.000","0.5493","0.5493" +"GO:0009056","catabolic process",16,1,3.33,329,"0.980","0.5515","0.5515" +"GO:0010608","posttranscriptional regulation of gene e...",4,0,0.83,373,"1.000","0.5538","0.5538" +"GO:0032268","regulation of cellular protein metabolic...",10,1,2.08,301,"0.909","0.5556","0.5556" +"GO:0044085","cellular component biogenesis",11,2,2.29,211,"0.709","0.5559","0.5559" +"GO:0071840","cellular component organization or bioge...",30,5,6.24,245,"0.800","0.5575","0.5575" +"GO:0044260","cellular macromolecule metabolic process",67,12,13.94,264,"0.817","0.5584","0.5584" +"GO:0006355","regulation of transcription, DNA-templat...",26,4,5.41,268,"0.839","0.5599","0.5599" +"GO:0019219","regulation of nucleobase-containing comp...",26,4,5.41,269,"0.839","0.5599","0.5599" +"GO:0051252","regulation of RNA metabolic process",26,4,5.41,270,"0.839","0.5599","0.5599" +"GO:1903506","regulation of nucleic acid-templated tra...",26,4,5.41,271,"0.839","0.5599","0.5599" +"GO:2001141","regulation of RNA biosynthetic process",26,4,5.41,272,"0.839","0.5599","0.5599" +"GO:1901576","organic substance biosynthetic process",47,9,9.78,205,"0.695","0.5636","0.5636" +"GO:0008152","metabolic process",128,25,26.64,242,"0.786","0.5648","0.5648" +"GO:0032259","methylation",3,0,0.62,374,"1.000","0.5683","0.5683" +"GO:0006412","translation",6,1,1.25,228,"0.758","0.5697","0.5697" +"GO:0043043","peptide biosynthetic process",6,1,1.25,229,"0.758","0.5697","0.5697" +"GO:0050794","regulation of cellular process",72,16,14.98,40,"0.422","0.5699","0.5699" +"GO:0006811","ion transport",25,3,5.2,314,"0.931","0.5752","0.5752" +"GO:0006352","DNA-templated transcription, initiation",6,0,1.25,375,"1.000","0.5799","0.5799" +"GO:1901615","organic hydroxy compound metabolic proce...",3,0,0.62,376,"1.000","0.5861","0.5861" +"GO:0070588","calcium ion transmembrane transport",3,0,0.62,377,"1.000","0.5897","0.5897" +"GO:0098660","inorganic ion transmembrane transport",3,0,0.62,378,"1.000","0.5897","0.5897" +"GO:0098662","inorganic cation transmembrane transport",3,0,0.62,379,"1.000","0.5897","0.5897" +"GO:0051128","regulation of cellular component organiz...",12,2,2.5,217,"0.756","0.6022","0.6022" +"GO:0009059","macromolecule biosynthetic process",38,8,7.91,102,"0.562","0.6037","0.6037" +"GO:0071705","nitrogen compound transport",10,2,2.08,169,"0.655","0.6095","0.6095" +"GO:0042221","response to chemical",16,4,3.33,41,"0.436","0.6108","0.6108" +"GO:0016999","antibiotic metabolic process",3,0,0.62,380,"1.000","0.6112","0.6112" +"GO:0019220","regulation of phosphate metabolic proces...",7,1,1.46,260,"0.810","0.6206","0.6206" +"GO:0051174","regulation of phosphorus metabolic proce...",7,1,1.46,261,"0.810","0.6206","0.6206" +"GO:1901135","carbohydrate derivative metabolic proces...",4,1,0.83,142,"0.610","0.6220","0.6220" +"GO:0007417","central nervous system development",10,2,2.08,170,"0.655","0.6235","0.6235" +"GO:0019725","cellular homeostasis",5,1,1.04,191,"0.693","0.6245","0.6245" +"GO:0010556","regulation of macromolecule biosynthetic...",28,4,5.83,287,"0.882","0.6263","0.6263" +"GO:0031326","regulation of cellular biosynthetic proc...",28,4,5.83,288,"0.882","0.6263","0.6263" +"GO:2000112","regulation of cellular macromolecule bio...",28,4,5.83,289,"0.882","0.6263","0.6263" +"GO:0034220","ion transmembrane transport",12,2,2.5,218,"0.756","0.6279","0.6279" +"GO:0044249","cellular biosynthetic process",44,9,9.16,116,"0.601","0.6305","0.6305" +"GO:0006399","tRNA metabolic process",3,0,0.62,381,"1.000","0.6327","0.6327" +"GO:0034660","ncRNA metabolic process",3,0,0.62,382,"1.000","0.6327","0.6327" +"GO:0051246","regulation of protein metabolic process",12,1,2.5,315,"0.945","0.6334","0.6334" +"GO:0065007","biological regulation",79,16,16.44,166,"0.629","0.6339","0.6339" +"GO:0048731","system development",21,5,4.37,48,"0.453","0.6359","0.6359" +"GO:0006417","regulation of translation",3,0,0.62,383,"1.000","0.6434","0.6434" +"GO:0034248","regulation of cellular amide metabolic p...",3,0,0.62,384,"1.000","0.6434","0.6434" +"GO:0032501","multicellular organismal process",26,5,5.41,173,"0.670","0.6466","0.6466" +"GO:0048856","anatomical structure development",26,5,5.41,174,"0.670","0.6466","0.6466" +"GO:0044282","small molecule catabolic process",3,0,0.62,385,"1.000","0.6505","0.6505" +"GO:1901700","response to oxygen-containing compound",3,0,0.62,386,"1.000","0.6505","0.6505" +"GO:1901701","cellular response to oxygen-containing c...",3,0,0.62,387,"1.000","0.6505","0.6505" +"GO:0048468","cell development",13,2,2.71,243,"0.797","0.6528","0.6528" +"GO:0098655","cation transmembrane transport",6,1,1.25,230,"0.758","0.6538","0.6538" +"GO:0002694","regulation of leukocyte activation",4,1,0.83,143,"0.610","0.6562","0.6562" +"GO:0009611","response to wounding",4,1,0.83,144,"0.610","0.6562","0.6562" +"GO:0042060","wound healing",4,1,0.83,145,"0.610","0.6562","0.6562" +"GO:0042110","T cell activation",4,1,0.83,146,"0.610","0.6562","0.6562" +"GO:0045321","leukocyte activation",4,1,0.83,147,"0.610","0.6562","0.6562" +"GO:0045596","negative regulation of cell differentiat...",4,1,0.83,148,"0.610","0.6562","0.6562" +"GO:0046649","lymphocyte activation",4,1,0.83,149,"0.610","0.6562","0.6562" +"GO:0050863","regulation of T cell activation",4,1,0.83,150,"0.610","0.6562","0.6562" +"GO:0050865","regulation of cell activation",4,1,0.83,151,"0.610","0.6562","0.6562" +"GO:0051249","regulation of lymphocyte activation",4,1,0.83,152,"0.610","0.6562","0.6562" +"GO:0072359","circulatory system development",4,1,0.83,153,"0.610","0.6562","0.6562" +"GO:0044271","cellular nitrogen compound biosynthetic ...",39,8,8.12,115,"0.597","0.6613","0.6613" +"GO:0080134","regulation of response to stress",3,0,0.62,388,"1.000","0.6648","0.6648" +"GO:0006807","nitrogen compound metabolic process",88,17,18.31,213,"0.738","0.6675","0.6675" +"GO:0006351","transcription, DNA-templated",30,5,6.24,246,"0.800","0.6719","0.6719" +"GO:0032774","RNA biosynthetic process",30,5,6.24,247,"0.800","0.6719","0.6719" +"GO:0034654","nucleobase-containing compound biosynthe...",30,5,6.24,248,"0.800","0.6719","0.6719" +"GO:0097659","nucleic acid-templated transcription",30,5,6.24,249,"0.800","0.6719","0.6719" +"GO:0007346","regulation of mitotic cell cycle",4,1,0.83,154,"0.610","0.6746","0.6746" +"GO:0006886","intracellular protein transport",3,0,0.62,389,"1.000","0.6754","0.6754" +"GO:0097164","ammonium ion metabolic process",4,1,0.83,155,"0.610","0.6838","0.6838" +"GO:0016049","cell growth",5,1,1.04,192,"0.693","0.6881","0.6881" +"GO:0040008","regulation of growth",5,1,1.04,193,"0.693","0.6881","0.6881" +"GO:0007275","multicellular organism development",23,5,4.79,101,"0.546","0.6946","0.6946" +"GO:0051239","regulation of multicellular organismal p...",10,1,2.08,302,"0.909","0.6948","0.6948" +"GO:2000026","regulation of multicellular organismal d...",10,1,2.08,303,"0.909","0.6948","0.6948" +"GO:0006814","sodium ion transport",3,1,0.62,90,"0.505","0.7000","0.7000" +"GO:0010628","positive regulation of gene expression",7,0,1.46,390,"1.000","0.7027","0.7027" +"GO:0006952","defense response",3,0,0.62,391,"1.000","0.7035","0.7035" +"GO:0009607","response to biotic stimulus",3,0,0.62,392,"1.000","0.7035","0.7035" +"GO:0043207","response to external biotic stimulus",3,0,0.62,393,"1.000","0.7035","0.7035" +"GO:0050776","regulation of immune response",3,0,0.62,394,"1.000","0.7035","0.7035" +"GO:0051707","response to other organism",3,0,0.62,395,"1.000","0.7035","0.7035" +"GO:0098542","defense response to other organism",3,0,0.62,396,"1.000","0.7035","0.7035" +"GO:0019438","aromatic compound biosynthetic process",32,5,6.66,274,"0.849","0.7124","0.7124" +"GO:0031344","regulation of cell projection organizati...",4,0,0.83,397,"1.000","0.7142","0.7142" +"GO:0120035","regulation of plasma membrane bounded ce...",4,0,0.83,398,"1.000","0.7142","0.7142" +"GO:1902532","negative regulation of intracellular sig...",4,0,0.83,399,"1.000","0.7142","0.7142" +"GO:0044237","cellular metabolic process",98,17,20.4,307,"0.915","0.7295","0.7295" +"GO:0051960","regulation of nervous system development",7,0,1.46,400,"1.000","0.7346","0.7346" +"GO:0034645","cellular macromolecule biosynthetic proc...",36,7,7.49,172,"0.665","0.7374","0.7374" +"GO:0000122","negative regulation of transcription by ...",4,0,0.83,401,"1.000","0.7409","0.7409" +"GO:0009725","response to hormone",4,0,0.83,402,"1.000","0.7409","0.7409" +"GO:0014070","response to organic cyclic compound",4,0,0.83,403,"1.000","0.7409","0.7409" +"GO:0032870","cellular response to hormone stimulus",4,0,0.83,404,"1.000","0.7409","0.7409" +"GO:0048545","response to steroid hormone",4,0,0.83,405,"1.000","0.7409","0.7409" +"GO:0071383","cellular response to steroid hormone sti...",4,0,0.83,406,"1.000","0.7409","0.7409" +"GO:0071407","cellular response to organic cyclic comp...",4,0,0.83,407,"1.000","0.7409","0.7409" +"GO:0030154","cell differentiation",20,3,4.16,265,"0.832","0.7442","0.7442" +"GO:0048869","cellular developmental process",20,3,4.16,266,"0.832","0.7442","0.7442" +"GO:0022603","regulation of anatomical structure morph...",4,1,0.83,156,"0.610","0.7468","0.7468" +"GO:0042981","regulation of apoptotic process",4,1,0.83,157,"0.610","0.7468","0.7468" +"GO:0043066","negative regulation of apoptotic process",4,1,0.83,158,"0.610","0.7468","0.7468" +"GO:0043067","regulation of programmed cell death",4,1,0.83,159,"0.610","0.7468","0.7468" +"GO:0043069","negative regulation of programmed cell d...",4,1,0.83,160,"0.610","0.7468","0.7468" +"GO:1901362","organic cyclic compound biosynthetic pro...",34,5,7.08,294,"0.887","0.7492","0.7492" +"GO:0033554","cellular response to stress",7,3,1.46,9,"0.159","0.0677","0.7519" +"GO:0009966","regulation of signal transduction",13,1,2.71,320,"0.957","0.7522","0.7522" +"GO:0010646","regulation of cell communication",13,1,2.71,321,"0.957","0.7522","0.7522" +"GO:0023051","regulation of signaling",13,1,2.71,322,"0.957","0.7522","0.7522" +"GO:0050803","regulation of synapse structure or activ...",4,0,0.83,408,"1.000","0.7526","0.7526" +"GO:0050807","regulation of synapse organization",4,0,0.83,409,"1.000","0.7526","0.7526" +"GO:0016477","cell migration",4,1,0.83,161,"0.610","0.7555","0.7555" +"GO:0040011","locomotion",4,1,0.83,162,"0.610","0.7555","0.7555" +"GO:0048870","cell motility",4,1,0.83,163,"0.610","0.7555","0.7555" +"GO:0051674","localization of cell",4,1,0.83,164,"0.610","0.7555","0.7555" +"GO:0050877","nervous system process",4,0,0.83,410,"1.000","0.7555","0.7555" +"GO:0051049","regulation of transport",4,0,0.83,411,"1.000","0.7555","0.7555" +"GO:0001932","regulation of protein phosphorylation",6,1,1.25,231,"0.758","0.7576","0.7576" +"GO:0007010","cytoskeleton organization",6,1,1.25,232,"0.758","0.7576","0.7576" +"GO:0042325","regulation of phosphorylation",6,1,1.25,233,"0.758","0.7576","0.7576" +"GO:0042592","homeostatic process",10,2,2.08,171,"0.655","0.7597","0.7597" +"GO:0044248","cellular catabolic process",14,1,2.91,325,"0.966","0.7618","0.7618" +"GO:0007186","G protein-coupled receptor signaling pat...",5,1,1.04,194,"0.693","0.7705","0.7705" +"GO:0002682","regulation of immune system process",6,1,1.25,234,"0.758","0.7741","0.7741" +"GO:0016192","vesicle-mediated transport",11,1,2.29,311,"0.929","0.7761","0.7761" +"GO:0019637","organophosphate metabolic process",7,0,1.46,412,"1.000","0.7766","0.7766" +"GO:0010256","endomembrane system organization",3,0,0.62,413,"1.000","0.7779","0.7779" +"GO:0016197","endosomal transport",3,0,0.62,414,"1.000","0.7779","0.7779" +"GO:0051179","localization",50,8,10.41,286,"0.881","0.7801","0.7801" +"GO:0010564","regulation of cell cycle process",3,1,0.62,91,"0.505","0.7908","0.7908" +"GO:0030900","forebrain development",3,1,0.62,92,"0.505","0.7940","0.7940" +"GO:0007167","enzyme linked receptor protein signaling...",3,0,0.62,415,"1.000","0.7972","0.7972" +"GO:0043085","positive regulation of catalytic activit...",3,0,0.62,416,"1.000","0.7972","0.7972" +"GO:0044093","positive regulation of molecular functio...",3,0,0.62,417,"1.000","0.7972","0.7972" +"GO:0006665","sphingolipid metabolic process",3,1,0.62,93,"0.505","0.8003","0.8003" +"GO:0016042","lipid catabolic process",3,1,0.62,94,"0.505","0.8003","0.8003" +"GO:0044242","cellular lipid catabolic process",3,1,0.62,95,"0.505","0.8003","0.8003" +"GO:0006644","phospholipid metabolic process",6,0,1.25,418,"1.000","0.8061","0.8061" +"GO:0006629","lipid metabolic process",12,1,2.5,316,"0.945","0.8079","0.8079" +"GO:0006357","regulation of transcription by RNA polym...",7,0,1.46,419,"1.000","0.8103","0.8103" +"GO:0006812","cation transport",15,2,3.12,281,"0.861","0.8115","0.8115" +"GO:0018130","heterocycle biosynthetic process",33,5,6.87,285,"0.869","0.8122","0.8122" +"GO:0016043","cellular component organization",27,4,5.62,284,"0.862","0.8129","0.8129" +"GO:0030182","neuron differentiation",11,1,2.29,312,"0.929","0.8134","0.8134" +"GO:0006915","apoptotic process",5,1,1.04,195,"0.693","0.8200","0.8200" +"GO:0010941","regulation of cell death",5,1,1.04,196,"0.693","0.8200","0.8200" +"GO:0012501","programmed cell death",5,1,1.04,197,"0.693","0.8200","0.8200" +"GO:0060548","negative regulation of cell death",5,1,1.04,198,"0.693","0.8200","0.8200" +"GO:0008610","lipid biosynthetic process",5,1,1.04,199,"0.693","0.8363","0.8363" +"GO:0044255","cellular lipid metabolic process",10,1,2.08,304,"0.909","0.8387","0.8387" +"GO:0048585","negative regulation of response to stimu...",8,1,1.66,276,"0.851","0.8421","0.8421" +"GO:0055114","oxidation-reduction process",12,1,2.5,317,"0.945","0.8449","0.8449" +"GO:0007420","brain development",9,2,1.87,112,"0.593","0.8459","0.8459" +"GO:0060322","head development",9,2,1.87,113,"0.593","0.8459","0.8459" +"GO:1901565","organonitrogen compound catabolic proces...",6,1,1.25,235,"0.758","0.8489","0.8489" +"GO:0043412","macromolecule modification",25,2,5.2,332,"0.984","0.8577","0.8577" +"GO:0009891","positive regulation of biosynthetic proc...",6,0,1.25,420,"1.000","0.8649","0.8649" +"GO:0010557","positive regulation of macromolecule bio...",6,0,1.25,421,"1.000","0.8649","0.8649" +"GO:0031328","positive regulation of cellular biosynth...",6,0,1.25,422,"1.000","0.8649","0.8649" +"GO:0045893","positive regulation of transcription, DN...",6,0,1.25,423,"1.000","0.8649","0.8649" +"GO:0045935","positive regulation of nucleobase-contai...",6,0,1.25,424,"1.000","0.8649","0.8649" +"GO:0051254","positive regulation of RNA metabolic pro...",6,0,1.25,425,"1.000","0.8649","0.8649" +"GO:1902680","positive regulation of RNA biosynthetic ...",6,0,1.25,426,"1.000","0.8649","0.8649" +"GO:1903508","positive regulation of nucleic acid-temp...",6,0,1.25,427,"1.000","0.8649","0.8649" +"GO:0030163","protein catabolic process",4,0,0.83,428,"1.000","0.8698","0.8698" +"GO:0008219","cell death",6,1,1.25,236,"0.758","0.8707","0.8707" +"GO:0009057","macromolecule catabolic process",7,0,1.46,429,"1.000","0.8772","0.8772" +"GO:0009968","negative regulation of signal transducti...",6,1,1.25,237,"0.758","0.8802","0.8802" +"GO:0010648","negative regulation of cell communicatio...",6,1,1.25,238,"0.758","0.8802","0.8802" +"GO:0023057","negative regulation of signaling",6,1,1.25,239,"0.758","0.8802","0.8802" +"GO:0002520","immune system development",3,0,0.62,430,"1.000","0.8816","0.8816" +"GO:0009755","hormone-mediated signaling pathway",3,0,0.62,431,"1.000","0.8816","0.8816" +"GO:0030097","hemopoiesis",3,0,0.62,432,"1.000","0.8816","0.8816" +"GO:0043401","steroid hormone mediated signaling pathw...",3,0,0.62,433,"1.000","0.8816","0.8816" +"GO:0048534","hematopoietic or lymphoid organ developm...",3,0,0.62,434,"1.000","0.8816","0.8816" +"GO:0048872","homeostasis of number of cells",3,0,0.62,435,"1.000","0.8816","0.8816" +"GO:0070371","ERK1 and ERK2 cascade",3,0,0.62,436,"1.000","0.8816","0.8816" +"GO:0070372","regulation of ERK1 and ERK2 cascade",3,0,0.62,437,"1.000","0.8816","0.8816" +"GO:1903706","regulation of hemopoiesis",3,0,0.62,438,"1.000","0.8816","0.8816" +"GO:0009893","positive regulation of metabolic process",11,0,2.29,439,"1.000","0.8835","0.8835" +"GO:0040007","growth",9,2,1.87,114,"0.593","0.8845","0.8845" +"GO:0035556","intracellular signal transduction",15,3,3.12,167,"0.641","0.8970","0.8970" +"GO:0045454","cell redox homeostasis",4,1,0.83,165,"0.610","0.8990","0.8990" +"GO:0006650","glycerophospholipid metabolic process",3,0,0.62,440,"1.000","0.8993","0.8993" +"GO:0046486","glycerolipid metabolic process",3,0,0.62,441,"1.000","0.8993","0.8993" +"GO:0090407","organophosphate biosynthetic process",3,0,0.62,442,"1.000","0.8993","0.8993" +"GO:0051301","cell division",5,1,1.04,200,"0.693","0.9053","0.9053" +"GO:0000902","cell morphogenesis",7,1,1.46,262,"0.810","0.9148","0.9148" +"GO:0006643","membrane lipid metabolic process",5,1,1.04,201,"0.693","0.9179","0.9179" +"GO:0051641","cellular localization",15,2,3.12,282,"0.861","0.9228","0.9228" +"GO:0009653","anatomical structure morphogenesis",13,2,2.71,244,"0.797","0.9266","0.9266" +"GO:0006511","ubiquitin-dependent protein catabolic pr...",3,0,0.62,443,"1.000","0.9268","0.9268" +"GO:0019941","modification-dependent protein catabolic...",3,0,0.62,444,"1.000","0.9268","0.9268" +"GO:0043632","modification-dependent macromolecule cat...",3,0,0.62,445,"1.000","0.9268","0.9268" +"GO:0044257","cellular protein catabolic process",3,0,0.62,446,"1.000","0.9268","0.9268" +"GO:0051603","proteolysis involved in cellular protein...",3,0,0.62,447,"1.000","0.9268","0.9268" +"GO:0006928","movement of cell or subcellular componen...",5,1,1.04,202,"0.693","0.9281","0.9281" +"GO:0009888","tissue development",5,1,1.04,203,"0.693","0.9281","0.9281" +"GO:0051093","negative regulation of developmental pro...",5,1,1.04,204,"0.693","0.9281","0.9281" +"GO:0061024","membrane organization",5,0,1.04,448,"1.000","0.9281","0.9281" +"GO:0010033","response to organic substance",8,0,1.66,449,"1.000","0.9286","0.9286" +"GO:0070887","cellular response to chemical stimulus",10,1,2.08,305,"0.909","0.9296","0.9296" +"GO:0007399","nervous system development",18,2,3.75,309,"0.924","0.9307","0.9307" +"GO:0019439","aromatic compound catabolic process",3,0,0.62,450,"1.000","0.9310","0.9310" +"GO:0034655","nucleobase-containing compound catabolic...",3,0,0.62,451,"1.000","0.9310","0.9310" +"GO:0044270","cellular nitrogen compound catabolic pro...",3,0,0.62,452,"1.000","0.9310","0.9310" +"GO:0046700","heterocycle catabolic process",3,0,0.62,453,"1.000","0.9310","0.9310" +"GO:1901361","organic cyclic compound catabolic proces...",3,0,0.62,454,"1.000","0.9310","0.9310" +"GO:0015672","monovalent inorganic cation transport",6,1,1.25,240,"0.758","0.9322","0.9322" +"GO:0048638","regulation of developmental growth",3,0,0.62,455,"1.000","0.9372","0.9372" +"GO:0060560","developmental growth involved in morphog...",3,0,0.62,456,"1.000","0.9372","0.9372" +"GO:0070997","neuron death",3,0,0.62,457,"1.000","0.9391","0.9391" +"GO:1901214","regulation of neuron death",3,0,0.62,458,"1.000","0.9391","0.9391" +"GO:0032879","regulation of localization",8,1,1.66,277,"0.851","0.9412","0.9412" +"GO:0007166","cell surface receptor signaling pathway",8,0,1.66,459,"1.000","0.9412","0.9412" +"GO:1901575","organic substance catabolic process",12,1,2.5,318,"0.945","0.9442","0.9442" +"GO:0006464","cellular protein modification process",23,2,4.79,327,"0.974","0.9474","0.9474" +"GO:0036211","protein modification process",23,2,4.79,328,"0.974","0.9474","0.9474" +"GO:0032989","cellular component morphogenesis",8,1,1.66,278,"0.851","0.9482","0.9482" +"GO:0022607","cellular component assembly",7,0,1.46,460,"1.000","0.9488","0.9488" +"GO:0030001","metal ion transport",10,1,2.08,306,"0.909","0.9512","0.9512" +"GO:0006955","immune response",4,0,0.83,461,"1.000","0.9567","0.9567" +"GO:0065008","regulation of biological quality",15,2,3.12,283,"0.861","0.9576","0.9576" +"GO:0002376","immune system process",8,1,1.66,279,"0.851","0.9579","0.9579" +"GO:0006082","organic acid metabolic process",5,0,1.04,462,"1.000","0.9626","0.9626" +"GO:0019752","carboxylic acid metabolic process",5,0,1.04,463,"1.000","0.9626","0.9626" +"GO:0043436","oxoacid metabolic process",5,0,1.04,464,"1.000","0.9626","0.9626" +"GO:0009719","response to endogenous stimulus",7,0,1.46,465,"1.000","0.9633","0.9633" +"GO:0071310","cellular response to organic substance",7,0,1.46,466,"1.000","0.9633","0.9633" +"GO:0071495","cellular response to endogenous stimulus",7,0,1.46,467,"1.000","0.9633","0.9633" +"GO:0010604","positive regulation of macromolecule met...",10,0,2.08,468,"1.000","0.9642","0.9642" +"GO:1901564","organonitrogen compound metabolic proces...",48,6,9.99,326,"0.971","0.9669","0.9669" +"GO:0009987","cellular process",138,27,28.72,250,"0.804","0.9388","0.9713" +"GO:0031325","positive regulation of cellular metaboli...",10,0,2.08,469,"1.000","0.9722","0.9722" +"GO:0044265","cellular macromolecule catabolic process",6,0,1.25,470,"1.000","0.9726","0.9726" +"GO:0006520","cellular amino acid metabolic process",3,0,0.62,471,"1.000","0.9776","0.9776" +"GO:0048583","regulation of response to stimulus",16,1,3.33,330,"0.980","0.9778","0.9778" +"GO:0051649","establishment of localization in cell",11,0,2.29,472,"1.000","0.9780","0.9780" +"GO:0006468","protein phosphorylation",16,2,3.33,292,"0.886","0.9789","0.9789" +"GO:0008283","cell proliferation",4,0,0.83,473,"1.000","0.9792","0.9792" +"GO:0009790","embryo development",4,0,0.83,474,"1.000","0.9792","0.9792" +"GO:0022008","neurogenesis",13,1,2.71,323,"0.957","0.9822","0.9822" +"GO:0048699","generation of neurons",13,1,2.71,324,"0.957","0.9822","0.9822" +"GO:0044267","cellular protein metabolic process",31,4,6.45,313,"0.929","0.9827","0.9827" +"GO:0009791","post-embryonic development",3,0,0.62,475,"1.000","0.9844","0.9844" +"GO:0009792","embryo development ending in birth or eg...",3,0,0.62,476,"1.000","0.9844","0.9844" +"GO:0043009","chordate embryonic development",3,0,0.62,477,"1.000","0.9844","0.9844" +"GO:0045165","cell fate commitment",3,0,0.62,478,"1.000","0.9844","0.9844" +"GO:0070848","response to growth factor",3,0,0.62,479,"1.000","0.9844","0.9844" +"GO:0071363","cellular response to growth factor stimu...",3,0,0.62,480,"1.000","0.9844","0.9844" +"GO:0072089","stem cell proliferation",3,0,0.62,481,"1.000","0.9844","0.9844" +"GO:0016310","phosphorylation",18,2,3.75,310,"0.924","0.9868","0.9868" +"GO:0051173","positive regulation of nitrogen compound...",9,0,1.87,482,"1.000","0.9879","0.9879" +"GO:1902531","regulation of intracellular signal trans...",9,0,1.87,483,"1.000","0.9879","0.9879" +"GO:0046907","intracellular transport",8,0,1.66,484,"1.000","0.9893","0.9893" +"GO:0007017","microtubule-based process",4,0,0.83,485,"1.000","0.9911","0.9911" +"GO:0009967","positive regulation of signal transducti...",6,0,1.25,486,"1.000","0.9921","0.9921" +"GO:0010647","positive regulation of cell communicatio...",6,0,1.25,487,"1.000","0.9921","0.9921" +"GO:0023056","positive regulation of signaling",6,0,1.25,488,"1.000","0.9921","0.9921" +"GO:0048584","positive regulation of response to stimu...",6,0,1.25,489,"1.000","0.9921","0.9921" +"GO:0048589","developmental growth",6,0,1.25,490,"1.000","0.9921","0.9921" +"GO:0006366","transcription by RNA polymerase II",9,0,1.87,491,"1.000","0.9923","0.9923" +"GO:0000165","MAPK cascade",4,0,0.83,492,"1.000","0.9948","0.9948" +"GO:0010562","positive regulation of phosphorus metabo...",4,0,0.83,493,"1.000","0.9948","0.9948" +"GO:0023014","signal transduction by protein phosphory...",4,0,0.83,494,"1.000","0.9948","0.9948" +"GO:0031401","positive regulation of protein modificat...",4,0,0.83,495,"1.000","0.9948","0.9948" +"GO:0032270","positive regulation of cellular protein ...",4,0,0.83,496,"1.000","0.9948","0.9948" +"GO:0043408","regulation of MAPK cascade",4,0,0.83,497,"1.000","0.9948","0.9948" +"GO:0045937","positive regulation of phosphate metabol...",4,0,0.83,498,"1.000","0.9948","0.9948" +"GO:0051129","negative regulation of cellular componen...",4,0,0.83,499,"1.000","0.9948","0.9948" +"GO:0051241","negative regulation of multicellular org...",4,0,0.83,500,"1.000","0.9948","0.9948" +"GO:0051247","positive regulation of protein metabolic...",4,0,0.83,501,"1.000","0.9948","0.9948" +"GO:0006508","proteolysis",9,1,1.87,290,"0.883","0.9956","0.9956" +"GO:0000226","microtubule cytoskeleton organization",3,0,0.62,502,"1.000","0.9961","0.9961" +"GO:0001934","positive regulation of protein phosphory...",3,0,0.62,503,"1.000","0.9961","0.9961" +"GO:0042327","positive regulation of phosphorylation",3,0,0.62,504,"1.000","0.9961","0.9961" +"GO:0043410","positive regulation of MAPK cascade",3,0,0.62,505,"1.000","0.9961","0.9961" +"GO:1902533","positive regulation of intracellular sig...",3,0,0.62,506,"1.000","0.9961","0.9961" +"GO:0019538","protein metabolic process",38,4,7.91,331,"0.981","0.9966","0.9966" +"GO:0006793","phosphorus metabolic process",25,2,5.2,333,"0.984","0.9985","0.9985" +"GO:0006796","phosphate-containing compound metabolic ...",25,2,5.2,334,"0.984","0.9985","0.9985" +"GO:0008150","biological_process",197,41,41,507,"1.000","1.0000","1.0000" diff --git a/GO_enrichment_microbiome_output/contrast_phoretic_arresting_upregulated.csv b/GO_enrichment_microbiome_output/contrast_phoretic_arresting_upregulated.csv index d58f344..e58042d 100644 --- a/GO_enrichment_microbiome_output/contrast_phoretic_arresting_upregulated.csv +++ b/GO_enrichment_microbiome_output/contrast_phoretic_arresting_upregulated.csv @@ -1,6 +1,437 @@ "GO.ID","Term","Annotated","Significant","Expected","Rank in classicFisher","classicFisher","classicKS","elimKS" -"GO:0032989","cellular component morphogenesis",5,0,0.56,125,"1","0.011","0.011" -"GO:0009792","embryo development ending in birth or eg...",5,0,0.56,126,"1","0.017","0.017" -"GO:0048468","cell development",9,0,1,127,"1","0.026","0.026" -"GO:0000902","cell morphogenesis",4,0,0.44,128,"1","0.028","0.028" -"GO:0000904","cell morphogenesis involved in different...",4,0,0.44,129,"1","0.028","0.028" +"GO:0032989","cellular component morphogenesis",5,0,0.56,125,"1.0000","0.011","0.011" +"GO:0009792","embryo development ending in birth or eg...",5,0,0.56,126,"1.0000","0.017","0.017" +"GO:0048468","cell development",9,0,1,127,"1.0000","0.026","0.026" +"GO:0000902","cell morphogenesis",4,0,0.44,128,"1.0000","0.028","0.028" +"GO:0000904","cell morphogenesis involved in different...",4,0,0.44,129,"1.0000","0.028","0.028" +"GO:0006820","anion transport",6,2,0.67,9,"0.1342","0.033","0.033" +"GO:0006412","translation",4,3,0.44,1,"0.0045","0.034","0.034" +"GO:0043043","peptide biosynthetic process",4,3,0.44,2,"0.0045","0.034","0.034" +"GO:0043604","amide biosynthetic process",4,3,0.44,3,"0.0045","0.034","0.034" +"GO:0043009","chordate embryonic development",4,0,0.44,130,"1.0000","0.039","0.039" +"GO:0060429","epithelium development",4,0,0.44,131,"1.0000","0.039","0.039" +"GO:0007417","central nervous system development",3,0,0.33,132,"1.0000","0.045","0.045" +"GO:0030030","cell projection organization",6,0,0.67,133,"1.0000","0.048","0.048" +"GO:0030182","neuron differentiation",6,0,0.67,134,"1.0000","0.048","0.048" +"GO:0120036","plasma membrane bounded cell projection ...",6,0,0.67,135,"1.0000","0.048","0.048" +"GO:0007275","multicellular organism development",23,1,2.56,104,"0.9445","0.051","0.051" +"GO:0010562","positive regulation of phosphorus metabo...",3,0,0.33,136,"1.0000","0.053","0.053" +"GO:0022604","regulation of cell morphogenesis",3,0,0.33,137,"1.0000","0.053","0.053" +"GO:0030334","regulation of cell migration",3,0,0.33,138,"1.0000","0.053","0.053" +"GO:0040012","regulation of locomotion",3,0,0.33,139,"1.0000","0.053","0.053" +"GO:0042327","positive regulation of phosphorylation",3,0,0.33,140,"1.0000","0.053","0.053" +"GO:0043549","regulation of kinase activity",3,0,0.33,141,"1.0000","0.053","0.053" +"GO:0045859","regulation of protein kinase activity",3,0,0.33,142,"1.0000","0.053","0.053" +"GO:0045937","positive regulation of phosphate metabol...",3,0,0.33,143,"1.0000","0.053","0.053" +"GO:0051270","regulation of cellular component movemen...",3,0,0.33,144,"1.0000","0.053","0.053" +"GO:2000145","regulation of cell motility",3,0,0.33,145,"1.0000","0.053","0.053" +"GO:0007610","behavior",3,0,0.33,146,"1.0000","0.069","0.069" +"GO:0032990","cell part morphogenesis",3,0,0.33,147,"1.0000","0.069","0.069" +"GO:0048667","cell morphogenesis involved in neuron di...",3,0,0.33,148,"1.0000","0.069","0.069" +"GO:0048812","neuron projection morphogenesis",3,0,0.33,149,"1.0000","0.069","0.069" +"GO:0048858","cell projection morphogenesis",3,0,0.33,150,"1.0000","0.069","0.069" +"GO:0120039","plasma membrane bounded cell projection ...",3,0,0.33,151,"1.0000","0.069","0.069" +"GO:0006518","peptide metabolic process",5,3,0.56,4,"0.0103","0.081","0.081" +"GO:0032501","multicellular organismal process",24,1,2.67,105,"0.9515","0.083","0.083" +"GO:0048856","anatomical structure development",24,1,2.67,106,"0.9515","0.083","0.083" +"GO:0002009","morphogenesis of an epithelium",3,0,0.33,152,"1.0000","0.089","0.089" +"GO:0051129","negative regulation of cellular componen...",3,0,0.33,153,"1.0000","0.089","0.089" +"GO:0009888","tissue development",8,0,0.89,154,"1.0000","0.090","0.090" +"GO:0009653","anatomical structure morphogenesis",12,0,1.33,155,"1.0000","0.105","0.105" +"GO:0006950","response to stress",12,1,1.33,68,"0.7675","0.112","0.112" +"GO:0016477","cell migration",5,0,0.56,156,"1.0000","0.112","0.112" +"GO:0031175","neuron projection development",5,0,0.56,157,"1.0000","0.112","0.112" +"GO:0048666","neuron development",5,0,0.56,158,"1.0000","0.112","0.112" +"GO:0048870","cell motility",5,0,0.56,159,"1.0000","0.112","0.112" +"GO:0051674","localization of cell",5,0,0.56,160,"1.0000","0.112","0.112" +"GO:0007155","cell adhesion",7,0,0.78,161,"1.0000","0.114","0.114" +"GO:0022610","biological adhesion",7,0,0.78,162,"1.0000","0.114","0.114" +"GO:0048699","generation of neurons",7,0,0.78,163,"1.0000","0.129","0.129" +"GO:0006887","exocytosis",3,1,0.33,13,"0.2991","0.137","0.137" +"GO:0007423","sensory organ development",4,0,0.44,164,"1.0000","0.138","0.138" +"GO:0048598","embryonic morphogenesis",4,0,0.44,165,"1.0000","0.138","0.138" +"GO:0009058","biosynthetic process",45,6,5,30,"0.3799","0.140","0.140" +"GO:0009059","macromolecule biosynthetic process",32,4,3.56,37,"0.4916","0.148","0.148" +"GO:0034645","cellular macromolecule biosynthetic proc...",32,4,3.56,38,"0.4916","0.148","0.148" +"GO:0031401","positive regulation of protein modificat...",5,0,0.56,166,"1.0000","0.150","0.150" +"GO:0032270","positive regulation of cellular protein ...",5,0,0.56,167,"1.0000","0.150","0.150" +"GO:0051247","positive regulation of protein metabolic...",5,0,0.56,168,"1.0000","0.150","0.150" +"GO:0050790","regulation of catalytic activity",10,0,1.11,169,"1.0000","0.163","0.163" +"GO:0065009","regulation of molecular function",10,0,1.11,170,"1.0000","0.163","0.163" +"GO:0009790","embryo development",7,0,0.78,171,"1.0000","0.170","0.170" +"GO:0044260","cellular macromolecule metabolic process",65,9,7.22,12,"0.2631","0.179","0.179" +"GO:0032502","developmental process",26,1,2.89,110,"0.9631","0.182","0.182" +"GO:0048513","animal organ development",13,0,1.44,172,"1.0000","0.187","0.187" +"GO:0098656","anion transmembrane transport",3,1,0.33,14,"0.2991","0.188","0.188" +"GO:0048869","cellular developmental process",14,1,1.56,75,"0.8196","0.194","0.194" +"GO:0022603","regulation of anatomical structure morph...",4,0,0.44,173,"1.0000","0.201","0.201" +"GO:0031344","regulation of cell projection organizati...",4,0,0.44,174,"1.0000","0.201","0.201" +"GO:0043085","positive regulation of catalytic activit...",4,0,0.44,175,"1.0000","0.201","0.201" +"GO:0051338","regulation of transferase activity",4,0,0.44,176,"1.0000","0.201","0.201" +"GO:0060284","regulation of cell development",4,0,0.44,177,"1.0000","0.201","0.201" +"GO:0120035","regulation of plasma membrane bounded ce...",4,0,0.44,178,"1.0000","0.201","0.201" +"GO:0043086","negative regulation of catalytic activit...",6,0,0.67,179,"1.0000","0.201","0.201" +"GO:0044092","negative regulation of molecular functio...",6,0,0.67,180,"1.0000","0.201","0.201" +"GO:0045595","regulation of cell differentiation",6,0,0.67,181,"1.0000","0.201","0.201" +"GO:0030154","cell differentiation",12,0,1.33,182,"1.0000","0.216","0.216" +"GO:0043603","cellular amide metabolic process",7,3,0.78,5,"0.0311","0.220","0.220" +"GO:0007399","nervous system development",10,0,1.11,183,"1.0000","0.236","0.236" +"GO:0043170","macromolecule metabolic process",79,10,8.78,23,"0.3643","0.237","0.237" +"GO:0007017","microtubule-based process",6,0,0.67,184,"1.0000","0.241","0.241" +"GO:0051179","localization",58,7,6.44,36,"0.4787","0.243","0.243" +"GO:0006928","movement of cell or subcellular componen...",8,0,0.89,185,"1.0000","0.246","0.246" +"GO:0044249","cellular biosynthetic process",42,4,4.67,61,"0.7333","0.247","0.247" +"GO:0022008","neurogenesis",8,0,0.89,186,"1.0000","0.254","0.254" +"GO:0050793","regulation of developmental process",8,0,0.89,187,"1.0000","0.254","0.254" +"GO:0048731","system development",18,1,2,88,"0.8923","0.256","0.256" +"GO:0044271","cellular nitrogen compound biosynthetic ...",34,4,3.78,44,"0.5460","0.261","0.261" +"GO:0040011","locomotion",6,0,0.67,188,"1.0000","0.264","0.264" +"GO:0032940","secretion by cell",5,1,0.56,34,"0.4488","0.273","0.273" +"GO:0046903","secretion",5,1,0.56,35,"0.4488","0.273","0.273" +"GO:0051234","establishment of localization",54,7,6,31,"0.3888","0.274","0.274" +"GO:0042221","response to chemical",12,0,1.33,189,"1.0000","0.278","0.278" +"GO:0007186","G protein-coupled receptor signaling pat...",8,2,0.89,11,"0.2186","0.286","0.286" +"GO:0006397","mRNA processing",4,0,0.44,190,"1.0000","0.288","0.288" +"GO:0016071","mRNA metabolic process",4,0,0.44,191,"1.0000","0.288","0.288" +"GO:0031503","protein-containing complex localization",4,0,0.44,192,"1.0000","0.288","0.288" +"GO:0042493","response to drug",4,0,0.44,193,"1.0000","0.288","0.288" +"GO:0044267","cellular protein metabolic process",38,8,4.22,6,"0.0349","0.292","0.292" +"GO:0006260","DNA replication",3,0,0.33,194,"1.0000","0.300","0.300" +"GO:0016569","covalent chromatin modification",3,0,0.33,195,"1.0000","0.300","0.300" +"GO:0016570","histone modification",3,0,0.33,196,"1.0000","0.300","0.300" +"GO:0048729","tissue morphogenesis",4,0,0.44,197,"1.0000","0.308","0.308" +"GO:0008104","protein localization",14,0,1.56,198,"1.0000","0.314","0.314" +"GO:0006810","transport",53,7,5.89,24,"0.3666","0.319","0.319" +"GO:1901576","organic substance biosynthetic process",43,4,4.78,66,"0.7526","0.321","0.321" +"GO:0051128","regulation of cellular component organiz...",10,1,1.11,57,"0.7014","0.328","0.328" +"GO:0007049","cell cycle",10,0,1.11,199,"1.0000","0.332","0.332" +"GO:0006812","cation transport",11,1,1.22,62,"0.7364","0.333","0.333" +"GO:0031325","positive regulation of cellular metaboli...",8,0,0.89,200,"1.0000","0.339","0.339" +"GO:0010467","gene expression",35,4,3.89,48,"0.5722","0.339","0.339" +"GO:0015698","inorganic anion transport",4,1,0.44,25,"0.3782","0.342","0.342" +"GO:0033554","cellular response to stress",8,0,0.89,201,"1.0000","0.350","0.350" +"GO:0018193","peptidyl-amino acid modification",6,1,0.67,40,"0.5117","0.350","0.350" +"GO:0051241","negative regulation of multicellular org...",3,0,0.33,202,"1.0000","0.354","0.354" +"GO:0048878","chemical homeostasis",4,1,0.44,26,"0.3782","0.361","0.361" +"GO:0042325","regulation of phosphorylation",7,0,0.78,203,"1.0000","0.361","0.361" +"GO:1901566","organonitrogen compound biosynthetic pro...",9,3,1,7,"0.0643","0.376","0.376" +"GO:0044237","cellular metabolic process",92,10,10.22,51,"0.6300","0.382","0.382" +"GO:0051347","positive regulation of transferase activ...",3,0,0.33,204,"1.0000","0.383","0.383" +"GO:0019538","protein metabolic process",46,8,5.11,8,"0.1017","0.387","0.387" +"GO:0048523","negative regulation of cellular process",17,1,1.89,83,"0.8773","0.389","0.389" +"GO:0031400","negative regulation of protein modificat...",7,0,0.78,205,"1.0000","0.392","0.392" +"GO:0050801","ion homeostasis",3,1,0.33,15,"0.2991","0.393","0.393" +"GO:0055065","metal ion homeostasis",3,1,0.33,16,"0.2991","0.393","0.393" +"GO:0055080","cation homeostasis",3,1,0.33,17,"0.2991","0.393","0.393" +"GO:0098771","inorganic ion homeostasis",3,1,0.33,18,"0.2991","0.393","0.393" +"GO:0030001","metal ion transport",9,1,1,52,"0.6620","0.393","0.393" +"GO:0010563","negative regulation of phosphorus metabo...",5,0,0.56,206,"1.0000","0.403","0.403" +"GO:0045936","negative regulation of phosphate metabol...",5,0,0.56,207,"1.0000","0.403","0.403" +"GO:0006732","coenzyme metabolic process",4,0,0.44,208,"1.0000","0.406","0.406" +"GO:0051186","cofactor metabolic process",4,0,0.44,209,"1.0000","0.406","0.406" +"GO:0051246","regulation of protein metabolic process",11,0,1.22,210,"1.0000","0.409","0.409" +"GO:0051239","regulation of multicellular organismal p...",9,0,1,211,"1.0000","0.411","0.411" +"GO:0007018","microtubule-based movement",3,0,0.33,212,"1.0000","0.413","0.413" +"GO:0044093","positive regulation of molecular functio...",5,0,0.56,213,"1.0000","0.414","0.414" +"GO:0022607","cellular component assembly",12,0,1.33,214,"1.0000","0.415","0.415" +"GO:0044085","cellular component biogenesis",12,0,1.33,215,"1.0000","0.415","0.415" +"GO:0022402","cell cycle process",5,0,0.56,216,"1.0000","0.416","0.416" +"GO:1901361","organic cyclic compound catabolic proces...",6,0,0.67,217,"1.0000","0.420","0.420" +"GO:0034641","cellular nitrogen compound metabolic pro...",47,4,5.22,77,"0.8202","0.437","0.437" +"GO:0008152","metabolic process",113,14,12.56,22,"0.3319","0.438","0.438" +"GO:0006325","chromatin organization",4,0,0.44,218,"1.0000","0.439","0.439" +"GO:0031399","regulation of protein modification proce...",10,0,1.11,219,"1.0000","0.445","0.445" +"GO:0032268","regulation of cellular protein metabolic...",10,0,1.11,220,"1.0000","0.445","0.445" +"GO:1901575","organic substance catabolic process",10,0,1.11,221,"1.0000","0.445","0.445" +"GO:0043933","protein-containing complex subunit organ...",11,0,1.22,222,"1.0000","0.449","0.449" +"GO:0065003","protein-containing complex assembly",11,0,1.22,223,"1.0000","0.449","0.449" +"GO:0001933","negative regulation of protein phosphory...",3,0,0.33,224,"1.0000","0.454","0.454" +"GO:0042326","negative regulation of phosphorylation",3,0,0.33,225,"1.0000","0.454","0.454" +"GO:0045664","regulation of neuron differentiation",3,0,0.33,226,"1.0000","0.454","0.454" +"GO:0050767","regulation of neurogenesis",3,0,0.33,227,"1.0000","0.454","0.454" +"GO:0051960","regulation of nervous system development",3,0,0.33,228,"1.0000","0.454","0.454" +"GO:2000026","regulation of multicellular organismal d...",7,0,0.78,229,"1.0000","0.455","0.455" +"GO:0002376","immune system process",7,0,0.78,230,"1.0000","0.455","0.455" +"GO:0015672","monovalent inorganic cation transport",8,1,0.89,50,"0.6176","0.456","0.456" +"GO:0016043","cellular component organization",27,1,3,111,"0.9679","0.459","0.459" +"GO:0071840","cellular component organization or bioge...",27,1,3,112,"0.9679","0.459","0.459" +"GO:0060249","anatomical structure homeostasis",3,0,0.33,231,"1.0000","0.475","0.475" +"GO:0065008","regulation of biological quality",19,1,2.11,93,"0.9055","0.476","0.476" +"GO:0006807","nitrogen compound metabolic process",85,9,9.44,54,"0.6675","0.476","0.476" +"GO:0032879","regulation of localization",6,0,0.67,232,"1.0000","0.480","0.480" +"GO:0009893","positive regulation of metabolic process",9,0,1,233,"1.0000","0.485","0.485" +"GO:0017144","drug metabolic process",5,0,0.56,234,"1.0000","0.487","0.487" +"GO:0019439","aromatic compound catabolic process",5,0,0.56,235,"1.0000","0.487","0.487" +"GO:0044270","cellular nitrogen compound catabolic pro...",5,0,0.56,236,"1.0000","0.487","0.487" +"GO:0046700","heterocycle catabolic process",5,0,0.56,237,"1.0000","0.487","0.487" +"GO:0018130","heterocycle biosynthetic process",30,1,3.33,116,"0.9789","0.494","0.494" +"GO:0019438","aromatic compound biosynthetic process",30,1,3.33,117,"0.9789","0.494","0.494" +"GO:0044087","regulation of cellular component biogene...",5,0,0.56,238,"1.0000","0.496","0.496" +"GO:0070887","cellular response to chemical stimulus",5,0,0.56,239,"1.0000","0.496","0.496" +"GO:0034220","ion transmembrane transport",7,1,0.78,46,"0.5677","0.505","0.505" +"GO:0042592","homeostatic process",13,1,1.44,71,"0.7951","0.507","0.507" +"GO:0016310","phosphorylation",20,2,2.22,55,"0.6838","0.516","0.516" +"GO:0002520","immune system development",3,0,0.33,240,"1.0000","0.519","0.519" +"GO:0006935","chemotaxis",3,0,0.33,241,"1.0000","0.519","0.519" +"GO:0022414","reproductive process",3,0,0.33,242,"1.0000","0.519","0.519" +"GO:0030097","hemopoiesis",3,0,0.33,243,"1.0000","0.519","0.519" +"GO:0032504","multicellular organism reproduction",3,0,0.33,244,"1.0000","0.519","0.519" +"GO:0042330","taxis",3,0,0.33,245,"1.0000","0.519","0.519" +"GO:0048534","hematopoietic or lymphoid organ developm...",3,0,0.33,246,"1.0000","0.519","0.519" +"GO:0048609","multicellular organismal reproductive pr...",3,0,0.33,247,"1.0000","0.519","0.519" +"GO:0048872","homeostasis of number of cells",3,0,0.33,248,"1.0000","0.519","0.519" +"GO:0061061","muscle structure development",3,0,0.33,249,"1.0000","0.519","0.519" +"GO:0061564","axon development",3,0,0.33,250,"1.0000","0.519","0.519" +"GO:0010033","response to organic substance",8,0,0.89,251,"1.0000","0.527","0.527" +"GO:0010604","positive regulation of macromolecule met...",8,0,0.89,252,"1.0000","0.527","0.527" +"GO:0019220","regulation of phosphate metabolic proces...",8,0,0.89,253,"1.0000","0.527","0.527" +"GO:0032269","negative regulation of cellular protein ...",8,0,0.89,254,"1.0000","0.527","0.527" +"GO:0051174","regulation of phosphorus metabolic proce...",8,0,0.89,255,"1.0000","0.527","0.527" +"GO:0051248","negative regulation of protein metabolic...",8,0,0.89,256,"1.0000","0.527","0.527" +"GO:0006351","transcription, DNA-templated",24,1,2.67,107,"0.9515","0.528","0.528" +"GO:0032774","RNA biosynthetic process",24,1,2.67,108,"0.9515","0.528","0.528" +"GO:0097659","nucleic acid-templated transcription",24,1,2.67,109,"0.9515","0.528","0.528" +"GO:0043412","macromolecule modification",32,4,3.56,39,"0.4916","0.529","0.529" +"GO:0006811","ion transport",20,2,2.22,56,"0.6838","0.529","0.529" +"GO:0055085","transmembrane transport",24,3,2.67,43,"0.5178","0.532","0.532" +"GO:0033036","macromolecule localization",17,1,1.89,84,"0.8773","0.539","0.539" +"GO:0006508","proteolysis",10,0,1.11,257,"1.0000","0.540","0.540" +"GO:0006974","cellular response to DNA damage stimulus",5,0,0.56,258,"1.0000","0.544","0.544" +"GO:0009887","animal organ morphogenesis",5,0,0.56,259,"1.0000","0.544","0.544" +"GO:0090304","nucleic acid metabolic process",35,1,3.89,120,"0.9897","0.549","0.549" +"GO:0046434","organophosphate catabolic process",4,0,0.44,260,"1.0000","0.552","0.552" +"GO:0009166","nucleotide catabolic process",3,0,0.33,261,"1.0000","0.552","0.552" +"GO:0034655","nucleobase-containing compound catabolic...",3,0,0.33,262,"1.0000","0.552","0.552" +"GO:1901292","nucleoside phosphate catabolic process",3,0,0.33,263,"1.0000","0.552","0.552" +"GO:0051173","positive regulation of nitrogen compound...",7,0,0.78,264,"1.0000","0.556","0.556" +"GO:0000375","RNA splicing, via transesterification re...",3,0,0.33,265,"1.0000","0.563","0.563" +"GO:0000377","RNA splicing, via transesterification re...",3,0,0.33,266,"1.0000","0.563","0.563" +"GO:0000398","mRNA splicing, via spliceosome",3,0,0.33,267,"1.0000","0.563","0.563" +"GO:0008380","RNA splicing",3,0,0.33,268,"1.0000","0.563","0.563" +"GO:0034622","cellular protein-containing complex asse...",8,0,0.89,269,"1.0000","0.564","0.564" +"GO:0006082","organic acid metabolic process",4,0,0.44,270,"1.0000","0.564","0.564" +"GO:0019752","carboxylic acid metabolic process",4,0,0.44,271,"1.0000","0.564","0.564" +"GO:0043436","oxoacid metabolic process",4,0,0.44,272,"1.0000","0.564","0.564" +"GO:0045184","establishment of protein localization",12,0,1.33,273,"1.0000","0.570","0.570" +"GO:0044283","small molecule biosynthetic process",7,0,0.78,274,"1.0000","0.573","0.573" +"GO:1901565","organonitrogen compound catabolic proces...",7,0,0.78,275,"1.0000","0.573","0.573" +"GO:0006464","cellular protein modification process",30,4,3.33,32,"0.4355","0.573","0.573" +"GO:0036211","protein modification process",30,4,3.33,33,"0.4355","0.573","0.573" +"GO:0071704","organic substance metabolic process",99,10,11,67,"0.7566","0.574","0.574" +"GO:0006468","protein phosphorylation",17,2,1.89,49,"0.5892","0.575","0.575" +"GO:0006139","nucleobase-containing compound metabolic...",39,1,4.33,121,"0.9943","0.583","0.583" +"GO:0035239","tube morphogenesis",3,0,0.33,276,"1.0000","0.586","0.586" +"GO:0035295","tube development",3,0,0.33,277,"1.0000","0.586","0.586" +"GO:1901615","organic hydroxy compound metabolic proce...",3,0,0.33,278,"1.0000","0.586","0.586" +"GO:0043543","protein acylation",3,0,0.33,279,"1.0000","0.597","0.597" +"GO:1901564","organonitrogen compound metabolic proces...",53,8,5.89,10,"0.2007","0.598","0.598" +"GO:0055114","oxidation-reduction process",6,1,0.67,41,"0.5117","0.598","0.598" +"GO:0009892","negative regulation of metabolic process",14,1,1.56,76,"0.8196","0.602","0.602" +"GO:1901362","organic cyclic compound biosynthetic pro...",31,1,3.44,119,"0.9817","0.605","0.605" +"GO:0006396","RNA processing",6,0,0.67,280,"1.0000","0.606","0.606" +"GO:0051346","negative regulation of hydrolase activit...",4,0,0.44,281,"1.0000","0.606","0.606" +"GO:0051726","regulation of cell cycle",4,0,0.44,282,"1.0000","0.606","0.606" +"GO:0051130","positive regulation of cellular componen...",7,0,0.78,283,"1.0000","0.607","0.607" +"GO:0006457","protein folding",4,1,0.44,27,"0.3782","0.616","0.616" +"GO:0003008","system process",4,0,0.44,284,"1.0000","0.616","0.616" +"GO:0050877","nervous system process",4,0,0.44,285,"1.0000","0.616","0.616" +"GO:0071310","cellular response to organic substance",4,0,0.44,286,"1.0000","0.616","0.616" +"GO:0000278","mitotic cell cycle",4,0,0.44,287,"1.0000","0.619","0.619" +"GO:0034654","nucleobase-containing compound biosynthe...",29,1,3.22,114,"0.9757","0.621","0.621" +"GO:0001932","regulation of protein phosphorylation",6,0,0.67,288,"1.0000","0.622","0.622" +"GO:0048646","anatomical structure formation involved ...",6,0,0.67,289,"1.0000","0.622","0.622" +"GO:0006725","cellular aromatic compound metabolic pro...",42,1,4.67,122,"0.9964","0.623","0.623" +"GO:0046483","heterocycle metabolic process",42,1,4.67,123,"0.9964","0.623","0.623" +"GO:0008610","lipid biosynthetic process",7,0,0.78,290,"1.0000","0.625","0.625" +"GO:0044238","primary metabolic process",97,10,10.78,60,"0.7229","0.628","0.628" +"GO:0048519","negative regulation of biological proces...",19,1,2.11,94,"0.9055","0.637","0.637" +"GO:0055082","cellular chemical homeostasis",3,1,0.33,19,"0.2991","0.642","0.642" +"GO:0009108","coenzyme biosynthetic process",3,0,0.33,291,"1.0000","0.642","0.642" +"GO:0044262","cellular carbohydrate metabolic process",3,0,0.33,292,"1.0000","0.642","0.642" +"GO:0051188","cofactor biosynthetic process",3,0,0.33,293,"1.0000","0.642","0.642" +"GO:0035556","intracellular signal transduction",7,1,0.78,47,"0.5677","0.642","0.642" +"GO:0051276","chromosome organization",7,0,0.78,294,"1.0000","0.642","0.642" +"GO:0033043","regulation of organelle organization",6,0,0.67,295,"1.0000","0.654","0.654" +"GO:0097435","supramolecular fiber organization",6,0,0.67,296,"1.0000","0.654","0.654" +"GO:1901135","carbohydrate derivative metabolic proces...",5,0,0.56,297,"1.0000","0.654","0.654" +"GO:0006366","transcription by RNA polymerase II",7,0,0.78,298,"1.0000","0.659","0.659" +"GO:0034613","cellular protein localization",9,0,1,299,"1.0000","0.660","0.660" +"GO:0070727","cellular macromolecule localization",9,0,1,300,"1.0000","0.660","0.660" +"GO:0006813","potassium ion transport",4,0,0.44,301,"1.0000","0.668","0.668" +"GO:0071702","organic substance transport",16,2,1.78,45,"0.5538","0.673","0.673" +"GO:0009605","response to external stimulus",5,0,0.56,302,"1.0000","0.675","0.675" +"GO:0051240","positive regulation of multicellular org...",5,0,0.56,303,"1.0000","0.675","0.675" +"GO:0051336","regulation of hydrolase activity",5,0,0.56,304,"1.0000","0.675","0.675" +"GO:0016070","RNA metabolic process",30,1,3.33,118,"0.9789","0.676","0.676" +"GO:0048518","positive regulation of biological proces...",20,0,2.22,305,"1.0000","0.680","0.680" +"GO:0048522","positive regulation of cellular process",20,0,2.22,306,"1.0000","0.680","0.680" +"GO:0098660","inorganic ion transmembrane transport",4,1,0.44,28,"0.3782","0.681","0.681" +"GO:0001775","cell activation",3,0,0.33,307,"1.0000","0.697","0.697" +"GO:0002682","regulation of immune system process",3,0,0.33,308,"1.0000","0.697","0.697" +"GO:0006470","protein dephosphorylation",3,0,0.33,309,"1.0000","0.697","0.697" +"GO:0006955","immune response",3,0,0.33,310,"1.0000","0.697","0.697" +"GO:0006979","response to oxidative stress",3,0,0.33,311,"1.0000","0.697","0.697" +"GO:0010035","response to inorganic substance",3,0,0.33,312,"1.0000","0.697","0.697" +"GO:0010243","response to organonitrogen compound",3,0,0.33,313,"1.0000","0.697","0.697" +"GO:0010921","regulation of phosphatase activity",3,0,0.33,314,"1.0000","0.697","0.697" +"GO:0010923","negative regulation of phosphatase activ...",3,0,0.33,315,"1.0000","0.697","0.697" +"GO:0032515","negative regulation of phosphoprotein ph...",3,0,0.33,316,"1.0000","0.697","0.697" +"GO:0035303","regulation of dephosphorylation",3,0,0.33,317,"1.0000","0.697","0.697" +"GO:0035304","regulation of protein dephosphorylation",3,0,0.33,318,"1.0000","0.697","0.697" +"GO:0035305","negative regulation of dephosphorylation",3,0,0.33,319,"1.0000","0.697","0.697" +"GO:0035308","negative regulation of protein dephospho...",3,0,0.33,320,"1.0000","0.697","0.697" +"GO:0043666","regulation of phosphoprotein phosphatase...",3,0,0.33,321,"1.0000","0.697","0.697" +"GO:0045321","leukocyte activation",3,0,0.33,322,"1.0000","0.697","0.697" +"GO:0051049","regulation of transport",3,0,0.33,323,"1.0000","0.697","0.697" +"GO:1901698","response to nitrogen compound",3,0,0.33,324,"1.0000","0.697","0.697" +"GO:1901700","response to oxygen-containing compound",3,0,0.33,325,"1.0000","0.697","0.697" +"GO:0031323","regulation of cellular metabolic process",29,2,3.22,81,"0.8699","0.698","0.698" +"GO:0019725","cellular homeostasis",6,1,0.67,42,"0.5117","0.701","0.701" +"GO:0007010","cytoskeleton organization",5,0,0.56,326,"1.0000","0.703","0.703" +"GO:0010638","positive regulation of organelle organiz...",5,0,0.56,327,"1.0000","0.703","0.703" +"GO:0051258","protein polymerization",5,0,0.56,328,"1.0000","0.703","0.703" +"GO:0051704","multi-organism process",4,0,0.44,329,"1.0000","0.706","0.706" +"GO:0006996","organelle organization",18,0,2,330,"1.0000","0.711","0.711" +"GO:1901360","organic cyclic compound metabolic proces...",43,1,4.78,124,"0.9969","0.718","0.718" +"GO:0015031","protein transport",11,0,1.22,331,"1.0000","0.723","0.723" +"GO:0015833","peptide transport",11,0,1.22,332,"1.0000","0.723","0.723" +"GO:0042886","amide transport",11,0,1.22,333,"1.0000","0.723","0.723" +"GO:0009056","catabolic process",12,1,1.33,69,"0.7675","0.723","0.723" +"GO:0006793","phosphorus metabolic process",31,3,3.44,58,"0.7086","0.731","0.731" +"GO:0006796","phosphate-containing compound metabolic ...",31,3,3.44,59,"0.7086","0.731","0.731" +"GO:0000003","reproduction",4,0,0.44,334,"1.0000","0.731","0.731" +"GO:0009891","positive regulation of biosynthetic proc...",4,0,0.44,335,"1.0000","0.731","0.731" +"GO:0034404","nucleobase-containing small molecule bio...",4,0,0.44,336,"1.0000","0.731","0.731" +"GO:0051094","positive regulation of developmental pro...",4,0,0.44,337,"1.0000","0.731","0.731" +"GO:0048583","regulation of response to stimulus",10,0,1.11,338,"1.0000","0.731","0.731" +"GO:0098655","cation transmembrane transport",3,1,0.33,20,"0.2991","0.740","0.740" +"GO:0098662","inorganic cation transmembrane transport",3,1,0.33,21,"0.2991","0.740","0.740" +"GO:0051259","protein complex oligomerization",3,0,0.33,339,"1.0000","0.740","0.740" +"GO:0051260","protein homooligomerization",3,0,0.33,340,"1.0000","0.740","0.740" +"GO:0007015","actin filament organization",4,0,0.44,341,"1.0000","0.756","0.756" +"GO:0008064","regulation of actin polymerization or de...",4,0,0.44,342,"1.0000","0.756","0.756" +"GO:0008154","actin polymerization or depolymerization",4,0,0.44,343,"1.0000","0.756","0.756" +"GO:0030029","actin filament-based process",4,0,0.44,344,"1.0000","0.756","0.756" +"GO:0030036","actin cytoskeleton organization",4,0,0.44,345,"1.0000","0.756","0.756" +"GO:0030041","actin filament polymerization",4,0,0.44,346,"1.0000","0.756","0.756" +"GO:0030832","regulation of actin filament length",4,0,0.44,347,"1.0000","0.756","0.756" +"GO:0030833","regulation of actin filament polymerizat...",4,0,0.44,348,"1.0000","0.756","0.756" +"GO:0032271","regulation of protein polymerization",4,0,0.44,349,"1.0000","0.756","0.756" +"GO:0032535","regulation of cellular component size",4,0,0.44,350,"1.0000","0.756","0.756" +"GO:0032956","regulation of actin cytoskeleton organiz...",4,0,0.44,351,"1.0000","0.756","0.756" +"GO:0032970","regulation of actin filament-based proce...",4,0,0.44,352,"1.0000","0.756","0.756" +"GO:0043254","regulation of protein complex assembly",4,0,0.44,353,"1.0000","0.756","0.756" +"GO:0051493","regulation of cytoskeleton organization",4,0,0.44,354,"1.0000","0.756","0.756" +"GO:0090066","regulation of anatomical structure size",4,0,0.44,355,"1.0000","0.756","0.756" +"GO:0110053","regulation of actin filament organizatio...",4,0,0.44,356,"1.0000","0.756","0.756" +"GO:1902903","regulation of supramolecular fiber organ...",4,0,0.44,357,"1.0000","0.756","0.756" +"GO:0010646","regulation of cell communication",9,0,1,358,"1.0000","0.756","0.756" +"GO:0023051","regulation of signaling",9,0,1,359,"1.0000","0.756","0.756" +"GO:0071705","nitrogen compound transport",13,0,1.44,360,"1.0000","0.770","0.770" +"GO:0098609","cell-cell adhesion",3,0,0.33,361,"1.0000","0.771","0.771" +"GO:0044248","cellular catabolic process",11,1,1.22,63,"0.7364","0.773","0.773" +"GO:0050896","response to stimulus",41,3,4.56,85,"0.8797","0.774","0.774" +"GO:0060255","regulation of macromolecule metabolic pr...",30,2,3.33,87,"0.8832","0.775","0.775" +"GO:0048584","positive regulation of response to stimu...",6,0,0.67,362,"1.0000","0.777","0.777" +"GO:0051640","organelle localization",4,1,0.44,29,"0.3782","0.779","0.779" +"GO:0009966","regulation of signal transduction",8,0,0.89,363,"1.0000","0.781","0.781" +"GO:0044281","small molecule metabolic process",14,0,1.56,364,"1.0000","0.783","0.783" +"GO:0009987","cellular process",136,14,15.11,73,"0.7993","0.784","0.784" +"GO:0006511","ubiquitin-dependent protein catabolic pr...",3,0,0.33,365,"1.0000","0.792","0.792" +"GO:0009057","macromolecule catabolic process",3,0,0.33,366,"1.0000","0.792","0.792" +"GO:0010557","positive regulation of macromolecule bio...",3,0,0.33,367,"1.0000","0.792","0.792" +"GO:0019941","modification-dependent protein catabolic...",3,0,0.33,368,"1.0000","0.792","0.792" +"GO:0030163","protein catabolic process",3,0,0.33,369,"1.0000","0.792","0.792" +"GO:0031328","positive regulation of cellular biosynth...",3,0,0.33,370,"1.0000","0.792","0.792" +"GO:0043632","modification-dependent macromolecule cat...",3,0,0.33,371,"1.0000","0.792","0.792" +"GO:0044257","cellular protein catabolic process",3,0,0.33,372,"1.0000","0.792","0.792" +"GO:0044265","cellular macromolecule catabolic process",3,0,0.33,373,"1.0000","0.792","0.792" +"GO:0045935","positive regulation of nucleobase-contai...",3,0,0.33,374,"1.0000","0.792","0.792" +"GO:0051603","proteolysis involved in cellular protein...",3,0,0.33,375,"1.0000","0.792","0.792" +"GO:0072359","circulatory system development",3,0,0.33,376,"1.0000","0.792","0.792" +"GO:0031324","negative regulation of cellular metaboli...",13,1,1.44,72,"0.7951","0.793","0.793" +"GO:0030838","positive regulation of actin filament po...",3,0,0.33,377,"1.0000","0.811","0.811" +"GO:0031334","positive regulation of protein complex a...",3,0,0.33,378,"1.0000","0.811","0.811" +"GO:0032273","positive regulation of protein polymeriz...",3,0,0.33,379,"1.0000","0.811","0.811" +"GO:0034314","Arp2/3 complex-mediated actin nucleation",3,0,0.33,380,"1.0000","0.811","0.811" +"GO:0044089","positive regulation of cellular componen...",3,0,0.33,381,"1.0000","0.811","0.811" +"GO:0045010","actin nucleation",3,0,0.33,382,"1.0000","0.811","0.811" +"GO:0051495","positive regulation of cytoskeleton orga...",3,0,0.33,383,"1.0000","0.811","0.811" +"GO:1902905","positive regulation of supramolecular fi...",3,0,0.33,384,"1.0000","0.811","0.811" +"GO:0008283","cell proliferation",6,0,0.67,385,"1.0000","0.812","0.812" +"GO:0010556","regulation of macromolecule biosynthetic...",20,1,2.22,97,"0.9172","0.822","0.822" +"GO:0031326","regulation of cellular biosynthetic proc...",20,1,2.22,98,"0.9172","0.822","0.822" +"GO:2000112","regulation of cellular macromolecule bio...",20,1,2.22,99,"0.9172","0.822","0.822" +"GO:0016567","protein ubiquitination",4,0,0.44,386,"1.0000","0.825","0.825" +"GO:0032446","protein modification by small protein co...",4,0,0.44,387,"1.0000","0.825","0.825" +"GO:0070647","protein modification by small protein co...",4,0,0.44,388,"1.0000","0.825","0.825" +"GO:0005975","carbohydrate metabolic process",6,0,0.67,389,"1.0000","0.832","0.832" +"GO:0045454","cell redox homeostasis",3,0,0.33,390,"1.0000","0.840","0.840" +"GO:0006355","regulation of transcription, DNA-templat...",18,1,2,89,"0.8923","0.840","0.840" +"GO:1903506","regulation of nucleic acid-templated tra...",18,1,2,90,"0.8923","0.840","0.840" +"GO:2001141","regulation of RNA biosynthetic process",18,1,2,91,"0.8923","0.840","0.840" +"GO:0019222","regulation of metabolic process",31,2,3.44,92,"0.8952","0.843","0.843" +"GO:0009967","positive regulation of signal transducti...",4,0,0.44,391,"1.0000","0.846","0.846" +"GO:0010647","positive regulation of cell communicatio...",4,0,0.44,392,"1.0000","0.846","0.846" +"GO:0023056","positive regulation of signaling",4,0,0.44,393,"1.0000","0.846","0.846" +"GO:0051171","regulation of nitrogen compound metaboli...",28,1,3.11,113,"0.9720","0.847","0.847" +"GO:0016192","vesicle-mediated transport",11,1,1.22,64,"0.7364","0.849","0.849" +"GO:1903047","mitotic cell cycle process",3,0,0.33,394,"1.0000","0.858","0.858" +"GO:0006259","DNA metabolic process",6,0,0.67,395,"1.0000","0.858","0.858" +"GO:0016311","dephosphorylation",9,1,1,53,"0.6620","0.873","0.873" +"GO:0051641","cellular localization",21,1,2.33,101,"0.9275","0.876","0.876" +"GO:0006753","nucleoside phosphate metabolic process",5,0,0.56,396,"1.0000","0.879","0.879" +"GO:0009117","nucleotide metabolic process",5,0,0.56,397,"1.0000","0.879","0.879" +"GO:0031929","TOR signaling",3,0,0.33,398,"1.0000","0.883","0.883" +"GO:1902533","positive regulation of intracellular sig...",3,0,0.33,399,"1.0000","0.883","0.883" +"GO:0050794","regulation of cellular process",60,5,6.67,80,"0.8604","0.884","0.884" +"GO:1902531","regulation of intracellular signal trans...",4,0,0.44,400,"1.0000","0.886","0.886" +"GO:0006357","regulation of transcription by RNA polym...",6,0,0.67,401,"1.0000","0.888","0.888" +"GO:0007166","cell surface receptor signaling pathway",7,0,0.78,402,"1.0000","0.901","0.901" +"GO:0055086","nucleobase-containing small molecule met...",6,0,0.67,403,"1.0000","0.905","0.905" +"GO:0080090","regulation of primary metabolic process",29,1,3.22,115,"0.9757","0.906","0.906" +"GO:0019637","organophosphate metabolic process",11,1,1.22,65,"0.7364","0.908","0.908" +"GO:0050789","regulation of biological process",62,5,6.89,86,"0.8827","0.913","0.913" +"GO:0009889","regulation of biosynthetic process",21,1,2.33,102,"0.9275","0.919","0.919" +"GO:0019219","regulation of nucleobase-containing comp...",21,1,2.33,103,"0.9275","0.919","0.919" +"GO:0007154","cell communication",28,2,3.11,79,"0.8555","0.920","0.920" +"GO:0006629","lipid metabolic process",12,1,1.33,70,"0.7675","0.920","0.920" +"GO:0006913","nucleocytoplasmic transport",4,0,0.44,404,"1.0000","0.921","0.921" +"GO:0051169","nuclear transport",4,0,0.44,405,"1.0000","0.921","0.921" +"GO:0051252","regulation of RNA metabolic process",19,1,2.11,95,"0.9055","0.928","0.928" +"GO:0065007","biological regulation",66,6,7.33,74,"0.8120","0.929","0.929" +"GO:0010468","regulation of gene expression",20,1,2.22,100,"0.9172","0.933","0.933" +"GO:0007165","signal transduction",27,2,3,78,"0.8396","0.938","0.938" +"GO:0006403","RNA localization",3,0,0.33,406,"1.0000","0.940","0.940" +"GO:0006405","RNA export from nucleus",3,0,0.33,407,"1.0000","0.940","0.940" +"GO:0015931","nucleobase-containing compound transport",3,0,0.33,408,"1.0000","0.940","0.940" +"GO:0050657","nucleic acid transport",3,0,0.33,409,"1.0000","0.940","0.940" +"GO:0050658","RNA transport",3,0,0.33,410,"1.0000","0.940","0.940" +"GO:0051168","nuclear export",3,0,0.33,411,"1.0000","0.940","0.940" +"GO:0051236","establishment of RNA localization",3,0,0.33,412,"1.0000","0.940","0.940" +"GO:0010605","negative regulation of macromolecule met...",12,0,1.33,413,"1.0000","0.947","0.947" +"GO:0051172","negative regulation of nitrogen compound...",12,0,1.33,414,"1.0000","0.947","0.947" +"GO:0090407","organophosphate biosynthetic process",3,0,0.33,415,"1.0000","0.952","0.952" +"GO:0023052","signaling",29,2,3.22,82,"0.8699","0.953","0.953" +"GO:0007267","cell-cell signaling",3,0,0.33,416,"1.0000","0.957","0.957" +"GO:0044255","cellular lipid metabolic process",9,0,1,417,"1.0000","0.958","0.958" +"GO:0006886","intracellular protein transport",7,0,0.78,418,"1.0000","0.960","0.960" +"GO:0008284","positive regulation of cell proliferatio...",3,0,0.33,419,"1.0000","0.962","0.962" +"GO:0042127","regulation of cell proliferation",3,0,0.33,420,"1.0000","0.962","0.962" +"GO:0051716","cellular response to stimulus",33,2,3.67,96,"0.9161","0.974","0.974" +"GO:0006644","phospholipid metabolic process",4,0,0.44,421,"1.0000","0.982","0.982" +"GO:0046486","glycerolipid metabolic process",3,0,0.33,422,"1.0000","0.986","0.986" +"GO:0009890","negative regulation of biosynthetic proc...",5,0,0.56,423,"1.0000","0.991","0.991" +"GO:0010558","negative regulation of macromolecule bio...",5,0,0.56,424,"1.0000","0.991","0.991" +"GO:0031327","negative regulation of cellular biosynth...",5,0,0.56,425,"1.0000","0.991","0.991" +"GO:0045934","negative regulation of nucleobase-contai...",5,0,0.56,426,"1.0000","0.991","0.991" +"GO:2000113","negative regulation of cellular macromol...",5,0,0.56,427,"1.0000","0.991","0.991" +"GO:0051649","establishment of localization in cell",14,0,1.56,428,"1.0000","0.992","0.992" +"GO:0046907","intracellular transport",13,0,1.44,429,"1.0000","0.993","0.993" +"GO:0010629","negative regulation of gene expression",4,0,0.44,430,"1.0000","0.996","0.996" +"GO:0045892","negative regulation of transcription, DN...",4,0,0.44,431,"1.0000","0.996","0.996" +"GO:0051253","negative regulation of RNA metabolic pro...",4,0,0.44,432,"1.0000","0.996","0.996" +"GO:1902679","negative regulation of RNA biosynthetic ...",4,0,0.44,433,"1.0000","0.996","0.996" +"GO:1903507","negative regulation of nucleic acid-temp...",4,0,0.44,434,"1.0000","0.996","0.996" +"GO:0000122","negative regulation of transcription by ...",3,0,0.33,435,"1.0000","0.997","0.997" +"GO:0008150","biological_process",189,21,21,436,"1.0000","1.000","1.000" diff --git a/GO_enrichment_microbiome_output/contrast_phoretic_phoreticCaged_downregulated.csv b/GO_enrichment_microbiome_output/contrast_phoretic_phoreticCaged_downregulated.csv index 83df52e..039d530 100644 --- a/GO_enrichment_microbiome_output/contrast_phoretic_phoreticCaged_downregulated.csv +++ b/GO_enrichment_microbiome_output/contrast_phoretic_phoreticCaged_downregulated.csv @@ -1,6 +1,407 @@ "GO.ID","Term","Annotated","Significant","Expected","Rank in classicFisher","classicFisher","classicKS","elimKS" -"GO:0006366","transcription by RNA polymerase II",4,0,0.19,118,"1","0.019","0.019" -"GO:0032259","methylation",3,0,0.14,119,"1","0.027","0.027" -"GO:0005975","carbohydrate metabolic process",6,0,0.28,120,"1","0.038","0.038" -"GO:0006357","regulation of transcription by RNA polym...",3,0,0.14,121,"1","0.052","0.052" -"GO:0045184","establishment of protein localization",10,0,0.47,122,"1","0.060","0.060" +"GO:0006366","transcription by RNA polymerase II",4,0,0.19,118,"1.0000","0.019","0.019" +"GO:0032259","methylation",3,0,0.14,119,"1.0000","0.027","0.027" +"GO:0005975","carbohydrate metabolic process",6,0,0.28,120,"1.0000","0.038","0.038" +"GO:0006357","regulation of transcription by RNA polym...",3,0,0.14,121,"1.0000","0.052","0.052" +"GO:0045184","establishment of protein localization",10,0,0.47,122,"1.0000","0.060","0.060" +"GO:0055065","metal ion homeostasis",3,2,0.14,1,"0.0058","0.085","0.085" +"GO:0031503","protein-containing complex localization",3,0,0.14,123,"1.0000","0.090","0.090" +"GO:0015031","protein transport",9,0,0.42,124,"1.0000","0.108","0.108" +"GO:0015833","peptide transport",9,0,0.42,125,"1.0000","0.108","0.108" +"GO:0042886","amide transport",9,0,0.42,126,"1.0000","0.108","0.108" +"GO:0071702","organic substance transport",15,1,0.71,73,"0.5289","0.127","0.127" +"GO:0044283","small molecule biosynthetic process",6,1,0.28,41,"0.2544","0.131","0.131" +"GO:0006886","intracellular protein transport",6,0,0.28,127,"1.0000","0.139","0.139" +"GO:0006810","transport",58,2,2.73,104,"0.8171","0.155","0.155" +"GO:0050801","ion homeostasis",4,2,0.19,2,"0.0113","0.166","0.166" +"GO:0055080","cation homeostasis",4,2,0.19,3,"0.0113","0.166","0.166" +"GO:0098771","inorganic ion homeostasis",4,2,0.19,4,"0.0113","0.166","0.166" +"GO:0009607","response to biotic stimulus",3,1,0.14,10,"0.1355","0.182","0.182" +"GO:0051234","establishment of localization",60,2,2.83,108,"0.8345","0.196","0.196" +"GO:0051259","protein complex oligomerization",3,0,0.14,128,"1.0000","0.205","0.205" +"GO:0051260","protein homooligomerization",3,0,0.14,129,"1.0000","0.205","0.205" +"GO:0009890","negative regulation of biosynthetic proc...",3,0,0.14,130,"1.0000","0.208","0.208" +"GO:0010558","negative regulation of macromolecule bio...",3,0,0.14,131,"1.0000","0.208","0.208" +"GO:0031327","negative regulation of cellular biosynth...",3,0,0.14,132,"1.0000","0.208","0.208" +"GO:0045892","negative regulation of transcription, DN...",3,0,0.14,133,"1.0000","0.208","0.208" +"GO:0045934","negative regulation of nucleobase-contai...",3,0,0.14,134,"1.0000","0.208","0.208" +"GO:0051253","negative regulation of RNA metabolic pro...",3,0,0.14,135,"1.0000","0.208","0.208" +"GO:1902679","negative regulation of RNA biosynthetic ...",3,0,0.14,136,"1.0000","0.208","0.208" +"GO:1903507","negative regulation of nucleic acid-temp...",3,0,0.14,137,"1.0000","0.208","0.208" +"GO:2000113","negative regulation of cellular macromol...",3,0,0.14,138,"1.0000","0.208","0.208" +"GO:0006913","nucleocytoplasmic transport",4,0,0.19,139,"1.0000","0.214","0.214" +"GO:0051169","nuclear transport",4,0,0.19,140,"1.0000","0.214","0.214" +"GO:1901566","organonitrogen compound biosynthetic pro...",10,0,0.47,141,"1.0000","0.235","0.235" +"GO:0048878","chemical homeostasis",5,2,0.24,5,"0.0184","0.236","0.236" +"GO:0051179","localization",62,2,2.92,111,"0.8506","0.242","0.242" +"GO:0033036","macromolecule localization",19,0,0.9,142,"1.0000","0.250","0.250" +"GO:0034613","cellular protein localization",12,0,0.57,143,"1.0000","0.252","0.252" +"GO:0070727","cellular macromolecule localization",12,0,0.57,144,"1.0000","0.252","0.252" +"GO:0008104","protein localization",16,0,0.75,145,"1.0000","0.282","0.282" +"GO:0010033","response to organic substance",5,1,0.24,36,"0.2165","0.285","0.285" +"GO:0009058","biosynthetic process",44,2,2.07,78,"0.6560","0.305","0.305" +"GO:0009166","nucleotide catabolic process",3,1,0.14,11,"0.1355","0.305","0.305" +"GO:0034404","nucleobase-containing small molecule bio...",3,1,0.14,12,"0.1355","0.305","0.305" +"GO:0055082","cellular chemical homeostasis",3,1,0.14,13,"0.1355","0.305","0.305" +"GO:1901292","nucleoside phosphate catabolic process",3,1,0.14,14,"0.1355","0.305","0.305" +"GO:0006403","RNA localization",3,0,0.14,146,"1.0000","0.316","0.316" +"GO:0006405","RNA export from nucleus",3,0,0.14,147,"1.0000","0.316","0.316" +"GO:0015931","nucleobase-containing compound transport",3,0,0.14,148,"1.0000","0.316","0.316" +"GO:0050657","nucleic acid transport",3,0,0.14,149,"1.0000","0.316","0.316" +"GO:0050658","RNA transport",3,0,0.14,150,"1.0000","0.316","0.316" +"GO:0051168","nuclear export",3,0,0.14,151,"1.0000","0.316","0.316" +"GO:0051236","establishment of RNA localization",3,0,0.14,152,"1.0000","0.316","0.316" +"GO:0022607","cellular component assembly",10,0,0.47,153,"1.0000","0.328","0.328" +"GO:0065008","regulation of biological quality",17,2,0.8,35,"0.1852","0.337","0.337" +"GO:0022603","regulation of anatomical structure morph...",3,0,0.14,154,"1.0000","0.349","0.349" +"GO:0050793","regulation of developmental process",8,0,0.38,155,"1.0000","0.356","0.356" +"GO:0051704","multi-organism process",6,0,0.28,156,"1.0000","0.358","0.358" +"GO:0006457","protein folding",4,1,0.19,22,"0.1769","0.363","0.363" +"GO:0007275","multicellular organism development",25,1,1.18,86,"0.7253","0.364","0.364" +"GO:0051239","regulation of multicellular organismal p...",6,0,0.28,157,"1.0000","0.367","0.367" +"GO:2000026","regulation of multicellular organismal d...",6,0,0.28,158,"1.0000","0.367","0.367" +"GO:0009108","coenzyme biosynthetic process",3,0,0.14,159,"1.0000","0.368","0.368" +"GO:0051188","cofactor biosynthetic process",3,0,0.14,160,"1.0000","0.368","0.368" +"GO:0002376","immune system process",7,1,0.33,47,"0.2907","0.371","0.371" +"GO:0045595","regulation of cell differentiation",7,0,0.33,161,"1.0000","0.386","0.386" +"GO:0042592","homeostatic process",12,2,0.57,7,"0.1019","0.387","0.387" +"GO:0048856","anatomical structure development",28,1,1.32,94,"0.7678","0.391","0.391" +"GO:0046907","intracellular transport",13,0,0.61,162,"1.0000","0.400","0.400" +"GO:0051641","cellular localization",22,0,1.04,163,"1.0000","0.408","0.408" +"GO:0018130","heterocycle biosynthetic process",32,2,1.51,68,"0.4633","0.410","0.410" +"GO:0019439","aromatic compound catabolic process",7,1,0.33,48,"0.2907","0.415","0.415" +"GO:0044270","cellular nitrogen compound catabolic pro...",7,1,0.33,49,"0.2907","0.415","0.415" +"GO:0046700","heterocycle catabolic process",7,1,0.33,50,"0.2907","0.415","0.415" +"GO:1901361","organic cyclic compound catabolic proces...",7,1,0.33,51,"0.2907","0.415","0.415" +"GO:0071705","nitrogen compound transport",12,0,0.57,164,"1.0000","0.416","0.416" +"GO:0044249","cellular biosynthetic process",43,2,2.03,75,"0.6418","0.417","0.417" +"GO:1901576","organic substance biosynthetic process",43,2,2.03,76,"0.6418","0.417","0.417" +"GO:0006508","proteolysis",11,2,0.52,6,"0.0871","0.435","0.435" +"GO:0007165","signal transduction",25,2,1.18,57,"0.3340","0.458","0.458" +"GO:0016192","vesicle-mediated transport",13,0,0.61,165,"1.0000","0.473","0.473" +"GO:0048513","animal organ development",14,0,0.66,166,"1.0000","0.478","0.478" +"GO:0032502","developmental process",30,1,1.41,98,"0.7928","0.479","0.479" +"GO:0044262","cellular carbohydrate metabolic process",3,0,0.14,167,"1.0000","0.479","0.479" +"GO:0071310","cellular response to organic substance",4,0,0.19,168,"1.0000","0.480","0.480" +"GO:1901362","organic cyclic compound biosynthetic pro...",33,2,1.55,69,"0.4810","0.491","0.491" +"GO:0072657","protein localization to membrane",3,0,0.14,169,"1.0000","0.494","0.494" +"GO:0006518","peptide metabolic process",5,0,0.24,170,"1.0000","0.495","0.495" +"GO:0001894","tissue homeostasis",4,0,0.19,171,"1.0000","0.508","0.508" +"GO:0030029","actin filament-based process",4,0,0.19,172,"1.0000","0.508","0.508" +"GO:0030036","actin cytoskeleton organization",4,0,0.19,173,"1.0000","0.508","0.508" +"GO:0048871","multicellular organismal homeostasis",4,0,0.19,174,"1.0000","0.508","0.508" +"GO:0017144","drug metabolic process",5,0,0.24,175,"1.0000","0.509","0.509" +"GO:0015672","monovalent inorganic cation transport",9,1,0.42,59,"0.3585","0.511","0.511" +"GO:0044281","small molecule metabolic process",14,1,0.66,70,"0.5037","0.514","0.514" +"GO:0007154","cell communication",26,2,1.23,58,"0.3528","0.514","0.514" +"GO:0006813","potassium ion transport",3,0,0.14,176,"1.0000","0.515","0.515" +"GO:0006732","coenzyme metabolic process",4,0,0.19,177,"1.0000","0.533","0.533" +"GO:0051726","regulation of cell cycle",6,0,0.28,178,"1.0000","0.534","0.534" +"GO:0034655","nucleobase-containing compound catabolic...",5,1,0.24,37,"0.2165","0.537","0.537" +"GO:0007166","cell surface receptor signaling pathway",7,1,0.33,52,"0.2907","0.538","0.538" +"GO:0007186","G protein-coupled receptor signaling pat...",7,1,0.33,53,"0.2907","0.538","0.538" +"GO:0019725","cellular homeostasis",4,1,0.19,23,"0.1769","0.539","0.539" +"GO:0046434","organophosphate catabolic process",4,1,0.19,24,"0.1769","0.539","0.539" +"GO:0006955","immune response",3,1,0.14,15,"0.1355","0.541","0.541" +"GO:0032501","multicellular organismal process",27,1,1.27,92,"0.7543","0.543","0.543" +"GO:1901135","carbohydrate derivative metabolic proces...",7,1,0.33,54,"0.2907","0.548","0.548" +"GO:0051649","establishment of localization in cell",15,0,0.71,179,"1.0000","0.552","0.552" +"GO:0019438","aromatic compound biosynthetic process",31,2,1.46,66,"0.4454","0.553","0.553" +"GO:0023052","signaling",27,2,1.27,60,"0.3716","0.556","0.556" +"GO:0006139","nucleobase-containing compound metabolic...",43,2,2.03,77,"0.6418","0.557","0.557" +"GO:0006396","RNA processing",7,0,0.33,180,"1.0000","0.560","0.560" +"GO:0015698","inorganic anion transport",3,1,0.14,16,"0.1355","0.563","0.563" +"GO:0098656","anion transmembrane transport",3,1,0.14,17,"0.1355","0.563","0.563" +"GO:0071103","DNA conformation change",3,0,0.14,181,"1.0000","0.570","0.570" +"GO:0022402","cell cycle process",8,0,0.38,182,"1.0000","0.571","0.571" +"GO:0006412","translation",4,0,0.19,183,"1.0000","0.571","0.571" +"GO:0043043","peptide biosynthetic process",4,0,0.19,184,"1.0000","0.571","0.571" +"GO:0043604","amide biosynthetic process",4,0,0.19,185,"1.0000","0.571","0.571" +"GO:0010243","response to organonitrogen compound",3,1,0.14,18,"0.1355","0.574","0.574" +"GO:1901698","response to nitrogen compound",3,1,0.14,19,"0.1355","0.574","0.574" +"GO:0010629","negative regulation of gene expression",4,0,0.19,186,"1.0000","0.581","0.581" +"GO:0060284","regulation of cell development",5,0,0.24,187,"1.0000","0.588","0.588" +"GO:0044087","regulation of cellular component biogene...",5,0,0.24,188,"1.0000","0.594","0.594" +"GO:0044085","cellular component biogenesis",11,0,0.52,189,"1.0000","0.600","0.600" +"GO:0043933","protein-containing complex subunit organ...",7,0,0.33,190,"1.0000","0.602","0.602" +"GO:0065003","protein-containing complex assembly",7,0,0.33,191,"1.0000","0.602","0.602" +"GO:0007610","behavior",3,0,0.14,192,"1.0000","0.603","0.603" +"GO:0042060","wound healing",3,0,0.14,193,"1.0000","0.603","0.603" +"GO:0043010","camera-type eye development",3,0,0.14,194,"1.0000","0.603","0.603" +"GO:0060041","retina development in camera-type eye",3,0,0.14,195,"1.0000","0.603","0.603" +"GO:1904029","regulation of cyclin-dependent protein k...",3,0,0.14,196,"1.0000","0.603","0.603" +"GO:0006753","nucleoside phosphate metabolic process",5,1,0.24,38,"0.2165","0.609","0.609" +"GO:0009117","nucleotide metabolic process",5,1,0.24,39,"0.2165","0.609","0.609" +"GO:0055086","nucleobase-containing small molecule met...",5,1,0.24,40,"0.2165","0.609","0.609" +"GO:0060249","anatomical structure homeostasis",5,0,0.24,197,"1.0000","0.609","0.609" +"GO:0007267","cell-cell signaling",3,0,0.14,198,"1.0000","0.611","0.611" +"GO:0051240","positive regulation of multicellular org...",3,0,0.14,199,"1.0000","0.611","0.611" +"GO:0000278","mitotic cell cycle",7,0,0.33,200,"1.0000","0.614","0.614" +"GO:0006520","cellular amino acid metabolic process",3,0,0.14,201,"1.0000","0.625","0.625" +"GO:1901605","alpha-amino acid metabolic process",3,0,0.14,202,"1.0000","0.625","0.625" +"GO:0009887","animal organ morphogenesis",3,0,0.14,203,"1.0000","0.629","0.629" +"GO:0006996","organelle organization",19,1,0.9,74,"0.6188","0.630","0.630" +"GO:0043086","negative regulation of catalytic activit...",7,0,0.33,204,"1.0000","0.633","0.633" +"GO:0044092","negative regulation of molecular functio...",7,0,0.33,205,"1.0000","0.633","0.633" +"GO:0019637","organophosphate metabolic process",10,1,0.47,61,"0.3903","0.635","0.635" +"GO:0008152","metabolic process",118,5,5.56,97,"0.7745","0.636","0.636" +"GO:0090407","organophosphate biosynthetic process",3,0,0.14,206,"1.0000","0.648","0.648" +"GO:0044271","cellular nitrogen compound biosynthetic ...",35,2,1.65,72,"0.5157","0.656","0.656" +"GO:1901575","organic substance catabolic process",13,2,0.61,8,"0.1174","0.658","0.658" +"GO:1903047","mitotic cell cycle process",6,0,0.28,207,"1.0000","0.660","0.660" +"GO:0009628","response to abiotic stimulus",4,1,0.19,25,"0.1769","0.664","0.664" +"GO:0098660","inorganic ion transmembrane transport",4,1,0.19,26,"0.1769","0.664","0.664" +"GO:0098662","inorganic cation transmembrane transport",4,1,0.19,27,"0.1769","0.664","0.664" +"GO:0055114","oxidation-reduction process",6,0,0.28,208,"1.0000","0.667","0.667" +"GO:0006511","ubiquitin-dependent protein catabolic pr...",4,1,0.19,28,"0.1769","0.677","0.677" +"GO:0010256","endomembrane system organization",4,1,0.19,29,"0.1769","0.677","0.677" +"GO:0019941","modification-dependent protein catabolic...",4,1,0.19,30,"0.1769","0.677","0.677" +"GO:0030163","protein catabolic process",4,1,0.19,31,"0.1769","0.677","0.677" +"GO:0043632","modification-dependent macromolecule cat...",4,1,0.19,32,"0.1769","0.677","0.677" +"GO:0044257","cellular protein catabolic process",4,1,0.19,33,"0.1769","0.677","0.677" +"GO:0051603","proteolysis involved in cellular protein...",4,1,0.19,34,"0.1769","0.677","0.677" +"GO:0046486","glycerolipid metabolic process",3,0,0.14,209,"1.0000","0.680","0.680" +"GO:0006725","cellular aromatic compound metabolic pro...",46,2,2.17,80,"0.6834","0.685","0.685" +"GO:0006950","response to stress",14,2,0.66,9,"0.1336","0.687","0.687" +"GO:0009888","tissue development",7,0,0.33,210,"1.0000","0.689","0.689" +"GO:0046483","heterocycle metabolic process",47,2,2.21,83,"0.6965","0.691","0.691" +"GO:0031929","TOR signaling",3,0,0.14,211,"1.0000","0.695","0.695" +"GO:1902533","positive regulation of intracellular sig...",3,0,0.14,212,"1.0000","0.695","0.695" +"GO:0034654","nucleobase-containing compound biosynthe...",30,2,1.41,65,"0.4272","0.704","0.704" +"GO:0016070","RNA metabolic process",32,1,1.51,103,"0.8154","0.710","0.710" +"GO:0051716","cellular response to stimulus",31,2,1.46,67,"0.4454","0.711","0.711" +"GO:0044248","cellular catabolic process",15,2,0.71,20,"0.1503","0.713","0.713" +"GO:0033554","cellular response to stress",6,1,0.28,42,"0.2544","0.727","0.727" +"GO:0043603","cellular amide metabolic process",7,0,0.33,213,"1.0000","0.732","0.732" +"GO:0010564","regulation of cell cycle process",3,0,0.14,214,"1.0000","0.734","0.734" +"GO:0051276","chromosome organization",10,0,0.47,215,"1.0000","0.736","0.736" +"GO:0009056","catabolic process",16,2,0.75,21,"0.1675","0.736","0.736" +"GO:0034641","cellular nitrogen compound metabolic pro...",51,2,2.4,90,"0.7453","0.737","0.737" +"GO:0006897","endocytosis",4,0,0.19,216,"1.0000","0.739","0.739" +"GO:0098657","import into cell",4,0,0.19,217,"1.0000","0.739","0.739" +"GO:0007017","microtubule-based process",3,0,0.14,218,"1.0000","0.741","0.741" +"GO:0030154","cell differentiation",15,0,0.71,219,"1.0000","0.751","0.751" +"GO:1901700","response to oxygen-containing compound",3,0,0.14,220,"1.0000","0.752","0.752" +"GO:1901701","cellular response to oxygen-containing c...",3,0,0.14,221,"1.0000","0.752","0.752" +"GO:0006351","transcription, DNA-templated",25,1,1.18,87,"0.7253","0.753","0.753" +"GO:0032774","RNA biosynthetic process",25,1,1.18,88,"0.7253","0.753","0.753" +"GO:0097659","nucleic acid-templated transcription",25,1,1.18,89,"0.7253","0.753","0.753" +"GO:0010467","gene expression",37,1,1.74,113,"0.8626","0.759","0.759" +"GO:0090304","nucleic acid metabolic process",38,1,1.79,115,"0.8706","0.761","0.761" +"GO:1901360","organic cyclic compound metabolic proces...",48,2,2.26,84,"0.7093","0.763","0.763" +"GO:0030334","regulation of cell migration",3,0,0.14,222,"1.0000","0.769","0.769" +"GO:0040012","regulation of locomotion",3,0,0.14,223,"1.0000","0.769","0.769" +"GO:0051270","regulation of cellular component movemen...",3,0,0.14,224,"1.0000","0.769","0.769" +"GO:0051336","regulation of hydrolase activity",3,0,0.14,225,"1.0000","0.769","0.769" +"GO:2000145","regulation of cell motility",3,0,0.14,226,"1.0000","0.769","0.769" +"GO:0035556","intracellular signal transduction",9,0,0.42,227,"1.0000","0.770","0.770" +"GO:0006820","anion transport",6,1,0.28,43,"0.2544","0.783","0.783" +"GO:0098655","cation transmembrane transport",6,1,0.28,44,"0.2544","0.783","0.783" +"GO:0001654","eye development",4,0,0.19,228,"1.0000","0.784","0.784" +"GO:0007423","sensory organ development",4,0,0.19,229,"1.0000","0.784","0.784" +"GO:0048880","sensory system development",4,0,0.19,230,"1.0000","0.784","0.784" +"GO:0150063","visual system development",4,0,0.19,231,"1.0000","0.784","0.784" +"GO:0071704","organic substance metabolic process",105,4,4.95,110,"0.8396","0.789","0.789" +"GO:0044238","primary metabolic process",102,4,4.81,102,"0.8141","0.792","0.792" +"GO:0007049","cell cycle",11,0,0.52,232,"1.0000","0.792","0.792" +"GO:0048468","cell development",11,0,0.52,233,"1.0000","0.792","0.792" +"GO:0008610","lipid biosynthetic process",5,0,0.24,234,"1.0000","0.794","0.794" +"GO:0009967","positive regulation of signal transducti...",5,0,0.24,235,"1.0000","0.794","0.794" +"GO:0010647","positive regulation of cell communicatio...",5,0,0.24,236,"1.0000","0.794","0.794" +"GO:0023056","positive regulation of signaling",5,0,0.24,237,"1.0000","0.794","0.794" +"GO:0048584","positive regulation of response to stimu...",5,0,0.24,238,"1.0000","0.794","0.794" +"GO:0070887","cellular response to chemical stimulus",5,0,0.24,239,"1.0000","0.794","0.794" +"GO:0000902","cell morphogenesis",5,0,0.24,240,"1.0000","0.797","0.797" +"GO:0007420","brain development",5,0,0.24,241,"1.0000","0.797","0.797" +"GO:0032989","cellular component morphogenesis",5,0,0.24,242,"1.0000","0.797","0.797" +"GO:0060322","head development",5,0,0.24,243,"1.0000","0.797","0.797" +"GO:1902531","regulation of intracellular signal trans...",5,0,0.24,244,"1.0000","0.797","0.797" +"GO:0009057","macromolecule catabolic process",6,1,0.28,45,"0.2544","0.797","0.797" +"GO:0044265","cellular macromolecule catabolic process",6,1,0.28,46,"0.2544","0.797","0.797" +"GO:0006811","ion transport",24,1,1.13,85,"0.7096","0.802","0.802" +"GO:0006814","sodium ion transport",3,0,0.14,245,"1.0000","0.805","0.805" +"GO:0050896","response to stimulus",41,3,1.93,55,"0.2991","0.809","0.809" +"GO:0006082","organic acid metabolic process",5,0,0.24,246,"1.0000","0.810","0.810" +"GO:0019752","carboxylic acid metabolic process",5,0,0.24,247,"1.0000","0.810","0.810" +"GO:0043436","oxoacid metabolic process",5,0,0.24,248,"1.0000","0.810","0.810" +"GO:0009987","cellular process",135,6,6.36,91,"0.7491","0.811","0.811" +"GO:0015711","organic anion transport",3,0,0.14,249,"1.0000","0.812","0.812" +"GO:0042493","response to drug",3,0,0.14,250,"1.0000","0.812","0.812" +"GO:0034622","cellular protein-containing complex asse...",4,0,0.19,251,"1.0000","0.815","0.815" +"GO:0061024","membrane organization",3,0,0.14,252,"1.0000","0.815","0.815" +"GO:0051186","cofactor metabolic process",5,0,0.24,253,"1.0000","0.822","0.822" +"GO:0006397","mRNA processing",5,0,0.24,254,"1.0000","0.824","0.824" +"GO:0016071","mRNA metabolic process",5,0,0.24,255,"1.0000","0.824","0.824" +"GO:0055085","transmembrane transport",30,1,1.41,99,"0.7928","0.826","0.826" +"GO:0006325","chromatin organization",6,0,0.28,256,"1.0000","0.833","0.833" +"GO:0007417","central nervous system development",6,0,0.28,257,"1.0000","0.833","0.833" +"GO:0048646","anatomical structure formation involved ...",6,0,0.28,258,"1.0000","0.833","0.833" +"GO:0048731","system development",19,0,0.9,259,"1.0000","0.838","0.838" +"GO:0050790","regulation of catalytic activity",10,0,0.47,260,"1.0000","0.839","0.839" +"GO:0009891","positive regulation of biosynthetic proc...",3,0,0.14,261,"1.0000","0.855","0.855" +"GO:0010557","positive regulation of macromolecule bio...",3,0,0.14,262,"1.0000","0.855","0.855" +"GO:0016567","protein ubiquitination",3,0,0.14,263,"1.0000","0.855","0.855" +"GO:0031328","positive regulation of cellular biosynth...",3,0,0.14,264,"1.0000","0.855","0.855" +"GO:0032446","protein modification by small protein co...",3,0,0.14,265,"1.0000","0.855","0.855" +"GO:0045935","positive regulation of nucleobase-contai...",3,0,0.14,266,"1.0000","0.855","0.855" +"GO:0065007","biological regulation",69,3,3.25,82,"0.6938","0.858","0.858" +"GO:0008219","cell death",3,0,0.14,267,"1.0000","0.860","0.860" +"GO:1901565","organonitrogen compound catabolic proces...",8,1,0.38,56,"0.3254","0.864","0.864" +"GO:0048869","cellular developmental process",17,0,0.8,268,"1.0000","0.864","0.864" +"GO:0006644","phospholipid metabolic process",3,0,0.14,269,"1.0000","0.877","0.877" +"GO:0022008","neurogenesis",9,0,0.42,270,"1.0000","0.881","0.881" +"GO:0048699","generation of neurons",9,0,0.42,271,"1.0000","0.881","0.881" +"GO:0000904","cell morphogenesis involved in different...",4,0,0.19,272,"1.0000","0.881","0.881" +"GO:0016477","cell migration",4,0,0.19,273,"1.0000","0.881","0.881" +"GO:0040011","locomotion",4,0,0.19,274,"1.0000","0.881","0.881" +"GO:0048870","cell motility",4,0,0.19,275,"1.0000","0.881","0.881" +"GO:0051674","localization of cell",4,0,0.19,276,"1.0000","0.881","0.881" +"GO:0065009","regulation of molecular function",11,0,0.52,277,"1.0000","0.885","0.885" +"GO:0034220","ion transmembrane transport",10,1,0.47,62,"0.3903","0.891","0.891" +"GO:0045664","regulation of neuron differentiation",4,0,0.19,278,"1.0000","0.893","0.893" +"GO:0050767","regulation of neurogenesis",4,0,0.19,279,"1.0000","0.893","0.893" +"GO:0051960","regulation of nervous system development",4,0,0.19,280,"1.0000","0.893","0.893" +"GO:0048519","negative regulation of biological proces...",18,0,0.85,281,"1.0000","0.893","0.893" +"GO:0007010","cytoskeleton organization",5,0,0.24,282,"1.0000","0.894","0.894" +"GO:0010604","positive regulation of macromolecule met...",8,0,0.38,283,"1.0000","0.905","0.905" +"GO:0042221","response to chemical",11,1,0.52,63,"0.4206","0.906","0.906" +"GO:0030001","metal ion transport",11,1,0.52,64,"0.4206","0.907","0.907" +"GO:0006629","lipid metabolic process",10,0,0.47,284,"1.0000","0.907","0.907" +"GO:0048522","positive regulation of cellular process",18,0,0.85,285,"1.0000","0.907","0.907" +"GO:0009059","macromolecule biosynthetic process",33,1,1.55,106,"0.8258","0.913","0.913" +"GO:0034645","cellular macromolecule biosynthetic proc...",33,1,1.55,107,"0.8258","0.913","0.913" +"GO:0006259","DNA metabolic process",7,0,0.33,286,"1.0000","0.917","0.917" +"GO:0031401","positive regulation of protein modificat...",5,0,0.24,287,"1.0000","0.918","0.918" +"GO:0032270","positive regulation of cellular protein ...",5,0,0.24,288,"1.0000","0.918","0.918" +"GO:0043085","positive regulation of catalytic activit...",5,0,0.24,289,"1.0000","0.918","0.918" +"GO:0043549","regulation of kinase activity",5,0,0.24,290,"1.0000","0.918","0.918" +"GO:0045859","regulation of protein kinase activity",5,0,0.24,291,"1.0000","0.918","0.918" +"GO:0051247","positive regulation of protein metabolic...",5,0,0.24,292,"1.0000","0.918","0.918" +"GO:0016054","organic acid catabolic process",3,0,0.14,293,"1.0000","0.922","0.922" +"GO:0044282","small molecule catabolic process",3,0,0.14,294,"1.0000","0.922","0.922" +"GO:0046395","carboxylic acid catabolic process",3,0,0.14,295,"1.0000","0.922","0.922" +"GO:0044255","cellular lipid metabolic process",8,0,0.38,296,"1.0000","0.926","0.926" +"GO:0006807","nitrogen compound metabolic process",90,4,4.24,81,"0.6908","0.930","0.930" +"GO:1901137","carbohydrate derivative biosynthetic pro...",3,0,0.14,297,"1.0000","0.931","0.931" +"GO:0044237","cellular metabolic process",100,3,4.71,117,"0.9359","0.933","0.933" +"GO:0016197","endosomal transport",3,0,0.14,298,"1.0000","0.935","0.935" +"GO:0051640","organelle localization",3,0,0.14,299,"1.0000","0.935","0.935" +"GO:0009790","embryo development",4,0,0.19,300,"1.0000","0.936","0.936" +"GO:0006928","movement of cell or subcellular componen...",6,0,0.28,301,"1.0000","0.936","0.936" +"GO:0051338","regulation of transferase activity",6,0,0.28,302,"1.0000","0.936","0.936" +"GO:0010468","regulation of gene expression",23,0,1.08,303,"1.0000","0.938","0.938" +"GO:0006812","cation transport",14,1,0.66,71,"0.5037","0.939","0.939" +"GO:0031344","regulation of cell projection organizati...",5,0,0.24,304,"1.0000","0.945","0.945" +"GO:0120035","regulation of plasma membrane bounded ce...",5,0,0.24,305,"1.0000","0.945","0.945" +"GO:0009893","positive regulation of metabolic process",9,0,0.42,306,"1.0000","0.947","0.947" +"GO:0010646","regulation of cell communication",9,0,0.42,307,"1.0000","0.952","0.952" +"GO:0023051","regulation of signaling",9,0,0.42,308,"1.0000","0.952","0.952" +"GO:0006469","negative regulation of protein kinase ac...",4,0,0.19,309,"1.0000","0.952","0.952" +"GO:0033673","negative regulation of kinase activity",4,0,0.19,310,"1.0000","0.952","0.952" +"GO:0051348","negative regulation of transferase activ...",4,0,0.19,311,"1.0000","0.952","0.952" +"GO:0070647","protein modification by small protein co...",4,0,0.19,312,"1.0000","0.952","0.952" +"GO:0008380","RNA splicing",3,0,0.14,313,"1.0000","0.953","0.953" +"GO:0051172","negative regulation of nitrogen compound...",9,0,0.42,314,"1.0000","0.955","0.955" +"GO:0009889","regulation of biosynthetic process",21,0,0.99,315,"1.0000","0.956","0.956" +"GO:0010556","regulation of macromolecule biosynthetic...",21,0,0.99,316,"1.0000","0.956","0.956" +"GO:0019219","regulation of nucleobase-containing comp...",21,0,0.99,317,"1.0000","0.956","0.956" +"GO:0031326","regulation of cellular biosynthetic proc...",21,0,0.99,318,"1.0000","0.956","0.956" +"GO:2000112","regulation of cellular macromolecule bio...",21,0,0.99,319,"1.0000","0.956","0.956" +"GO:0050789","regulation of biological process",63,2,2.97,112,"0.8583","0.957","0.957" +"GO:0050808","synapse organization",4,0,0.19,320,"1.0000","0.957","0.957" +"GO:0099173","postsynapse organization",4,0,0.19,321,"1.0000","0.957","0.957" +"GO:0009605","response to external stimulus",6,0,0.28,322,"1.0000","0.959","0.959" +"GO:0006793","phosphorus metabolic process",28,1,1.32,95,"0.7678","0.959","0.959" +"GO:0006796","phosphate-containing compound metabolic ...",28,1,1.32,96,"0.7678","0.959","0.959" +"GO:0009966","regulation of signal transduction",8,0,0.38,323,"1.0000","0.960","0.960" +"GO:0032879","regulation of localization",8,0,0.38,324,"1.0000","0.960","0.960" +"GO:0032880","regulation of protein localization",3,0,0.14,325,"1.0000","0.960","0.960" +"GO:0048583","regulation of response to stimulus",9,0,0.42,326,"1.0000","0.961","0.961" +"GO:0051246","regulation of protein metabolic process",10,0,0.47,327,"1.0000","0.963","0.963" +"GO:0006643","membrane lipid metabolic process",4,0,0.19,328,"1.0000","0.963","0.963" +"GO:0051252","regulation of RNA metabolic process",20,0,0.94,329,"1.0000","0.964","0.964" +"GO:0048518","positive regulation of biological proces...",21,0,0.99,330,"1.0000","0.965","0.965" +"GO:0019538","protein metabolic process",45,2,2.12,79,"0.6699","0.967","0.967" +"GO:0009892","negative regulation of metabolic process",11,0,0.52,331,"1.0000","0.967","0.967" +"GO:0050794","regulation of cellular process",60,2,2.83,109,"0.8345","0.967","0.967" +"GO:0010562","positive regulation of phosphorus metabo...",3,0,0.14,332,"1.0000","0.968","0.968" +"GO:0032990","cell part morphogenesis",3,0,0.14,333,"1.0000","0.968","0.968" +"GO:0045937","positive regulation of phosphate metabol...",3,0,0.14,334,"1.0000","0.968","0.968" +"GO:0048667","cell morphogenesis involved in neuron di...",3,0,0.14,335,"1.0000","0.968","0.968" +"GO:0048812","neuron projection morphogenesis",3,0,0.14,336,"1.0000","0.968","0.968" +"GO:0048858","cell projection morphogenesis",3,0,0.14,337,"1.0000","0.968","0.968" +"GO:0051347","positive regulation of transferase activ...",3,0,0.14,338,"1.0000","0.968","0.968" +"GO:0120039","plasma membrane bounded cell projection ...",3,0,0.14,339,"1.0000","0.968","0.968" +"GO:0016043","cellular component organization",30,1,1.41,100,"0.7928","0.968","0.968" +"GO:0071840","cellular component organization or bioge...",30,1,1.41,101,"0.7928","0.968","0.968" +"GO:0030182","neuron differentiation",7,0,0.33,340,"1.0000","0.969","0.969" +"GO:0007399","nervous system development",12,0,0.57,341,"1.0000","0.970","0.970" +"GO:0048523","negative regulation of cellular process",15,0,0.71,342,"1.0000","0.972","0.972" +"GO:1901564","organonitrogen compound metabolic proces...",53,2,2.5,93,"0.7676","0.972","0.972" +"GO:0006355","regulation of transcription, DNA-templat...",19,0,0.9,343,"1.0000","0.972","0.972" +"GO:1903506","regulation of nucleic acid-templated tra...",19,0,0.9,344,"1.0000","0.972","0.972" +"GO:2001141","regulation of RNA biosynthetic process",19,0,0.9,345,"1.0000","0.972","0.972" +"GO:0006664","glycolipid metabolic process",3,0,0.14,346,"1.0000","0.972","0.972" +"GO:1903509","liposaccharide metabolic process",3,0,0.14,347,"1.0000","0.972","0.972" +"GO:0098609","cell-cell adhesion",5,0,0.24,348,"1.0000","0.972","0.972" +"GO:0009653","anatomical structure morphogenesis",13,0,0.61,349,"1.0000","0.978","0.978" +"GO:0044093","positive regulation of molecular functio...",6,0,0.28,350,"1.0000","0.979","0.979" +"GO:0010605","negative regulation of macromolecule met...",10,0,0.47,351,"1.0000","0.984","0.984" +"GO:0031324","negative regulation of cellular metaboli...",10,0,0.47,352,"1.0000","0.984","0.984" +"GO:0043170","macromolecule metabolic process",82,3,3.86,105,"0.8255","0.986","0.986" +"GO:0019222","regulation of metabolic process",33,0,1.55,353,"1.0000","0.987","0.987" +"GO:0009611","response to wounding",4,0,0.19,354,"1.0000","0.988","0.988" +"GO:0051235","maintenance of location",4,0,0.19,355,"1.0000","0.988","0.988" +"GO:0060255","regulation of macromolecule metabolic pr...",32,0,1.51,356,"1.0000","0.991","0.991" +"GO:0001933","negative regulation of protein phosphory...",5,0,0.24,357,"1.0000","0.992","0.992" +"GO:0010563","negative regulation of phosphorus metabo...",5,0,0.24,358,"1.0000","0.992","0.992" +"GO:0042326","negative regulation of phosphorylation",5,0,0.24,359,"1.0000","0.992","0.992" +"GO:0045936","negative regulation of phosphate metabol...",5,0,0.24,360,"1.0000","0.992","0.992" +"GO:0001932","regulation of protein phosphorylation",6,0,0.28,361,"1.0000","0.993","0.993" +"GO:0042325","regulation of phosphorylation",6,0,0.28,362,"1.0000","0.993","0.993" +"GO:0060341","regulation of cellular localization",5,0,0.24,363,"1.0000","0.994","0.994" +"GO:0031323","regulation of cellular metabolic process",31,0,1.46,364,"1.0000","0.994","0.994" +"GO:0032268","regulation of cellular protein metabolic...",9,0,0.42,365,"1.0000","0.995","0.995" +"GO:0051128","regulation of cellular component organiz...",9,0,0.42,366,"1.0000","0.995","0.995" +"GO:0030030","cell projection organization",7,0,0.33,367,"1.0000","0.996","0.996" +"GO:0120036","plasma membrane bounded cell projection ...",7,0,0.33,368,"1.0000","0.996","0.996" +"GO:0031325","positive regulation of cellular metaboli...",8,0,0.38,369,"1.0000","0.996","0.996" +"GO:0031399","regulation of protein modification proce...",8,0,0.38,370,"1.0000","0.996","0.996" +"GO:0051130","positive regulation of cellular componen...",5,0,0.24,371,"1.0000","0.996","0.996" +"GO:0019220","regulation of phosphate metabolic proces...",7,0,0.33,372,"1.0000","0.996","0.996" +"GO:0051173","positive regulation of nitrogen compound...",7,0,0.33,373,"1.0000","0.996","0.996" +"GO:0051174","regulation of phosphorus metabolic proce...",7,0,0.33,374,"1.0000","0.996","0.996" +"GO:0031400","negative regulation of protein modificat...",6,0,0.28,375,"1.0000","0.997","0.997" +"GO:0032269","negative regulation of cellular protein ...",6,0,0.28,376,"1.0000","0.997","0.997" +"GO:0051248","negative regulation of protein metabolic...",6,0,0.28,377,"1.0000","0.997","0.997" +"GO:0016311","dephosphorylation",5,0,0.24,378,"1.0000","0.997","0.997" +"GO:0031175","neuron projection development",5,0,0.24,379,"1.0000","0.997","0.997" +"GO:0048585","negative regulation of response to stimu...",5,0,0.24,380,"1.0000","0.997","0.997" +"GO:0048666","neuron development",5,0,0.24,381,"1.0000","0.997","0.997" +"GO:0007155","cell adhesion",9,0,0.42,382,"1.0000","0.998","0.998" +"GO:0022610","biological adhesion",9,0,0.42,383,"1.0000","0.998","0.998" +"GO:0001775","cell activation",4,0,0.19,384,"1.0000","0.998","0.998" +"GO:0009968","negative regulation of signal transducti...",4,0,0.19,385,"1.0000","0.998","0.998" +"GO:0010648","negative regulation of cell communicatio...",4,0,0.19,386,"1.0000","0.998","0.998" +"GO:0018193","peptidyl-amino acid modification",4,0,0.19,387,"1.0000","0.998","0.998" +"GO:0023057","negative regulation of signaling",4,0,0.19,388,"1.0000","0.998","0.998" +"GO:0051171","regulation of nitrogen compound metaboli...",29,0,1.37,389,"1.0000","0.998","0.998" +"GO:0080090","regulation of primary metabolic process",29,0,1.37,390,"1.0000","0.998","0.998" +"GO:0003008","system process",3,0,0.14,391,"1.0000","0.998","0.998" +"GO:0006974","cellular response to DNA damage stimulus",3,0,0.14,392,"1.0000","0.998","0.998" +"GO:0006979","response to oxidative stress",3,0,0.14,393,"1.0000","0.998","0.998" +"GO:0010975","regulation of neuron projection developm...",3,0,0.14,394,"1.0000","0.998","0.998" +"GO:0043393","regulation of protein binding",3,0,0.14,395,"1.0000","0.998","0.998" +"GO:0050877","nervous system process",3,0,0.14,396,"1.0000","0.998","0.998" +"GO:0051049","regulation of transport",3,0,0.14,397,"1.0000","0.998","0.998" +"GO:0051094","positive regulation of developmental pro...",3,0,0.14,398,"1.0000","0.998","0.998" +"GO:0051098","regulation of binding",3,0,0.14,399,"1.0000","0.998","0.998" +"GO:0061564","axon development",3,0,0.14,400,"1.0000","0.998","0.998" +"GO:0008150","biological_process",191,9,9,401,"1.0000","1.000","1.000" +"GO:0044260","cellular macromolecule metabolic process",68,2,3.2,116,"0.8919","1.000","1.000" +"GO:0044267","cellular protein metabolic process",37,1,1.74,114,"0.8626","1.000","1.000" +"GO:0006464","cellular protein modification process",28,0,1.32,402,"1.0000","1.000","1.000" +"GO:0006468","protein phosphorylation",16,0,0.75,403,"1.0000","1.000","1.000" +"GO:0016310","phosphorylation",18,0,0.85,404,"1.0000","1.000","1.000" +"GO:0036211","protein modification process",28,0,1.32,405,"1.0000","1.000","1.000" +"GO:0043412","macromolecule modification",30,0,1.41,406,"1.0000","1.000","1.000" diff --git a/GO_enrichment_microbiome_output/contrast_phoretic_phoreticCaged_upregulated.csv b/GO_enrichment_microbiome_output/contrast_phoretic_phoreticCaged_upregulated.csv index 57ea0a4..8530506 100644 --- a/GO_enrichment_microbiome_output/contrast_phoretic_phoreticCaged_upregulated.csv +++ b/GO_enrichment_microbiome_output/contrast_phoretic_phoreticCaged_upregulated.csv @@ -1,6 +1,530 @@ "GO.ID","Term","Annotated","Significant","Expected","Rank in classicFisher","classicFisher","classicKS","elimKS" -"GO:0000904","cell morphogenesis involved in different...",4,0,0.26,168,"1","0.013","0.013" -"GO:0006955","immune response",4,0,0.26,169,"1","0.013","0.013" -"GO:0007409","axonogenesis",4,0,0.26,170,"1","0.013","0.013" -"GO:0048667","cell morphogenesis involved in neuron di...",4,0,0.26,171,"1","0.013","0.013" -"GO:0050776","regulation of immune response",4,0,0.26,172,"1","0.013","0.013" +"GO:0000904","cell morphogenesis involved in different...",4,0,0.26,168,"1.000","0.013","0.013" +"GO:0006955","immune response",4,0,0.26,169,"1.000","0.013","0.013" +"GO:0007409","axonogenesis",4,0,0.26,170,"1.000","0.013","0.013" +"GO:0048667","cell morphogenesis involved in neuron di...",4,0,0.26,171,"1.000","0.013","0.013" +"GO:0050776","regulation of immune response",4,0,0.26,172,"1.000","0.013","0.013" +"GO:0061564","axon development",4,0,0.26,173,"1.000","0.013","0.013" +"GO:0022603","regulation of anatomical structure morph...",4,0,0.26,174,"1.000","0.019","0.019" +"GO:0006952","defense response",4,1,0.26,32,"0.238","0.029","0.029" +"GO:0006810","transport",36,5,2.35,4,"0.060","0.035","0.035" +"GO:0055085","transmembrane transport",15,2,0.98,48,"0.254","0.037","0.037" +"GO:0000003","reproduction",8,1,0.52,85,"0.423","0.039","0.039" +"GO:0051050","positive regulation of transport",3,1,0.2,14,"0.184","0.039","0.039" +"GO:0022604","regulation of cell morphogenesis",3,0,0.2,175,"1.000","0.039","0.039" +"GO:0031344","regulation of cell projection organizati...",3,0,0.2,176,"1.000","0.039","0.039" +"GO:0048588","developmental cell growth",3,0,0.2,177,"1.000","0.039","0.039" +"GO:0060560","developmental growth involved in morphog...",3,0,0.2,178,"1.000","0.039","0.039" +"GO:0120035","regulation of plasma membrane bounded ce...",3,0,0.2,179,"1.000","0.039","0.039" +"GO:0051234","establishment of localization",37,5,2.41,5,"0.067","0.046","0.046" +"GO:0006935","chemotaxis",3,0,0.2,180,"1.000","0.052","0.052" +"GO:0008284","positive regulation of cell proliferatio...",3,0,0.2,181,"1.000","0.052","0.052" +"GO:0042330","taxis",3,0,0.2,182,"1.000","0.052","0.052" +"GO:1901615","organic hydroxy compound metabolic proce...",4,1,0.26,33,"0.238","0.054","0.054" +"GO:0030029","actin filament-based process",5,1,0.33,50,"0.289","0.057","0.057" +"GO:0032504","multicellular organism reproduction",5,1,0.33,51,"0.289","0.057","0.057" +"GO:0032970","regulation of actin filament-based proce...",5,1,0.33,52,"0.289","0.057","0.057" +"GO:0048609","multicellular organismal reproductive pr...",5,1,0.33,53,"0.289","0.057","0.057" +"GO:0098657","import into cell",5,1,0.33,54,"0.289","0.057","0.057" +"GO:0032535","regulation of cellular component size",5,0,0.33,183,"1.000","0.057","0.057" +"GO:0048812","neuron projection morphogenesis",5,0,0.33,184,"1.000","0.057","0.057" +"GO:0048858","cell projection morphogenesis",5,0,0.33,185,"1.000","0.057","0.057" +"GO:0090066","regulation of anatomical structure size",5,0,0.33,186,"1.000","0.057","0.057" +"GO:0120039","plasma membrane bounded cell projection ...",5,0,0.33,187,"1.000","0.057","0.057" +"GO:0006813","potassium ion transport",3,2,0.2,1,"0.011","0.060","0.060" +"GO:0006811","ion transport",14,2,0.91,30,"0.229","0.060","0.060" +"GO:0032990","cell part morphogenesis",6,0,0.39,188,"1.000","0.061","0.061" +"GO:0034220","ion transmembrane transport",6,1,0.39,62,"0.337","0.064","0.064" +"GO:0006413","translational initiation",3,1,0.2,15,"0.184","0.068","0.068" +"GO:0048646","anatomical structure formation involved ...",5,0,0.33,189,"1.000","0.080","0.080" +"GO:0009605","response to external stimulus",9,1,0.59,92,"0.463","0.083","0.083" +"GO:0022414","reproductive process",7,1,0.46,72,"0.381","0.092","0.092" +"GO:0051704","multi-organism process",4,0,0.26,190,"1.000","0.094","0.094" +"GO:0006281","DNA repair",4,0,0.26,191,"1.000","0.094","0.094" +"GO:0044237","cellular metabolic process",89,5,5.8,134,"0.781","0.098","0.098" +"GO:0033554","cellular response to stress",8,0,0.52,192,"1.000","0.109","0.109" +"GO:0044281","small molecule metabolic process",14,1,0.91,115,"0.625","0.115","0.115" +"GO:0051179","localization",41,5,2.67,10,"0.100","0.116","0.116" +"GO:0051716","cellular response to stimulus",47,3,3.07,119,"0.633","0.118","0.118" +"GO:0018193","peptidyl-amino acid modification",6,0,0.39,193,"1.000","0.118","0.118" +"GO:0048666","neuron development",8,1,0.52,86,"0.423","0.124","0.124" +"GO:0002376","immune system process",8,0,0.52,194,"1.000","0.124","0.124" +"GO:0006518","peptide metabolic process",7,1,0.46,73,"0.381","0.126","0.126" +"GO:0018212","peptidyl-tyrosine modification",3,0,0.2,195,"1.000","0.127","0.127" +"GO:0030001","metal ion transport",6,2,0.39,3,"0.051","0.127","0.127" +"GO:0001654","eye development",3,1,0.2,16,"0.184","0.134","0.134" +"GO:0009636","response to toxic substance",3,1,0.2,17,"0.184","0.134","0.134" +"GO:0044093","positive regulation of molecular functio...",3,1,0.2,18,"0.184","0.134","0.134" +"GO:0048880","sensory system development",3,1,0.2,19,"0.184","0.134","0.134" +"GO:0098655","cation transmembrane transport",3,1,0.2,20,"0.184","0.134","0.134" +"GO:0098660","inorganic ion transmembrane transport",3,1,0.2,21,"0.184","0.134","0.134" +"GO:0098662","inorganic cation transmembrane transport",3,1,0.2,22,"0.184","0.134","0.134" +"GO:0150063","visual system development",3,1,0.2,23,"0.184","0.134","0.134" +"GO:1901701","cellular response to oxygen-containing c...",3,1,0.2,24,"0.184","0.134","0.134" +"GO:0048585","negative regulation of response to stimu...",3,0,0.2,196,"1.000","0.134","0.134" +"GO:0051049","regulation of transport",5,1,0.33,55,"0.289","0.135","0.135" +"GO:0051649","establishment of localization in cell",10,2,0.65,13,"0.131","0.135","0.135" +"GO:0070647","protein modification by small protein co...",3,0,0.2,197,"1.000","0.144","0.144" +"GO:0007610","behavior",6,1,0.39,63,"0.337","0.144","0.144" +"GO:0000902","cell morphogenesis",6,0,0.39,198,"1.000","0.144","0.144" +"GO:0030030","cell projection organization",6,0,0.39,199,"1.000","0.144","0.144" +"GO:0031175","neuron projection development",6,0,0.39,200,"1.000","0.144","0.144" +"GO:0120036","plasma membrane bounded cell projection ...",6,0,0.39,201,"1.000","0.144","0.144" +"GO:0006974","cellular response to DNA damage stimulus",7,0,0.46,202,"1.000","0.145","0.145" +"GO:0042127","regulation of cell proliferation",4,0,0.26,203,"1.000","0.148","0.148" +"GO:0042493","response to drug",4,1,0.26,34,"0.238","0.154","0.154" +"GO:0051270","regulation of cellular component movemen...",4,1,0.26,35,"0.238","0.154","0.154" +"GO:0006897","endocytosis",4,0,0.26,204,"1.000","0.154","0.154" +"GO:0007015","actin filament organization",4,0,0.26,205,"1.000","0.154","0.154" +"GO:0008064","regulation of actin polymerization or de...",4,0,0.26,206,"1.000","0.154","0.154" +"GO:0008154","actin polymerization or depolymerization",4,0,0.26,207,"1.000","0.154","0.154" +"GO:0016049","cell growth",4,0,0.26,208,"1.000","0.154","0.154" +"GO:0030036","actin cytoskeleton organization",4,0,0.26,209,"1.000","0.154","0.154" +"GO:0030041","actin filament polymerization",4,0,0.26,210,"1.000","0.154","0.154" +"GO:0030832","regulation of actin filament length",4,0,0.26,211,"1.000","0.154","0.154" +"GO:0030833","regulation of actin filament polymerizat...",4,0,0.26,212,"1.000","0.154","0.154" +"GO:0032271","regulation of protein polymerization",4,0,0.26,213,"1.000","0.154","0.154" +"GO:0032956","regulation of actin cytoskeleton organiz...",4,0,0.26,214,"1.000","0.154","0.154" +"GO:0043254","regulation of protein complex assembly",4,0,0.26,215,"1.000","0.154","0.154" +"GO:0050808","synapse organization",4,0,0.26,216,"1.000","0.154","0.154" +"GO:0051493","regulation of cytoskeleton organization",4,0,0.26,217,"1.000","0.154","0.154" +"GO:0110053","regulation of actin filament organizatio...",4,0,0.26,218,"1.000","0.154","0.154" +"GO:1902903","regulation of supramolecular fiber organ...",4,0,0.26,219,"1.000","0.154","0.154" +"GO:0051094","positive regulation of developmental pro...",7,0,0.46,220,"1.000","0.159","0.159" +"GO:0051240","positive regulation of multicellular org...",7,0,0.46,221,"1.000","0.159","0.159" +"GO:0006812","cation transport",9,2,0.59,11,"0.109","0.161","0.161" +"GO:2000026","regulation of multicellular organismal d...",9,0,0.59,222,"1.000","0.166","0.166" +"GO:0003006","developmental process involved in reprod...",4,0,0.26,223,"1.000","0.175","0.175" +"GO:0006082","organic acid metabolic process",4,0,0.26,224,"1.000","0.175","0.175" +"GO:0017144","drug metabolic process",4,0,0.26,225,"1.000","0.175","0.175" +"GO:0019752","carboxylic acid metabolic process",4,0,0.26,226,"1.000","0.175","0.175" +"GO:0043436","oxoacid metabolic process",4,0,0.26,227,"1.000","0.175","0.175" +"GO:0006508","proteolysis",8,0,0.52,228,"1.000","0.179","0.179" +"GO:0006259","DNA metabolic process",6,0,0.39,229,"1.000","0.181","0.181" +"GO:0040007","growth",8,0,0.52,230,"1.000","0.190","0.190" +"GO:0007420","brain development",7,2,0.46,6,"0.068","0.193","0.193" +"GO:0060322","head development",7,2,0.46,7,"0.068","0.193","0.193" +"GO:0040011","locomotion",6,0,0.39,231,"1.000","0.196","0.196" +"GO:0006915","apoptotic process",4,0,0.26,232,"1.000","0.197","0.197" +"GO:0008219","cell death",4,0,0.26,233,"1.000","0.197","0.197" +"GO:0010941","regulation of cell death",4,0,0.26,234,"1.000","0.197","0.197" +"GO:0012501","programmed cell death",4,0,0.26,235,"1.000","0.197","0.197" +"GO:0042981","regulation of apoptotic process",4,0,0.26,236,"1.000","0.197","0.197" +"GO:0043067","regulation of programmed cell death",4,0,0.26,237,"1.000","0.197","0.197" +"GO:0044283","small molecule biosynthetic process",4,0,0.26,238,"1.000","0.197","0.197" +"GO:0051336","regulation of hydrolase activity",4,0,0.26,239,"1.000","0.197","0.197" +"GO:0006066","alcohol metabolic process",3,1,0.2,25,"0.184","0.199","0.199" +"GO:0006820","anion transport",3,0,0.2,240,"1.000","0.206","0.206" +"GO:0015711","organic anion transport",3,0,0.2,241,"1.000","0.206","0.206" +"GO:0015849","organic acid transport",3,0,0.2,242,"1.000","0.206","0.206" +"GO:0046942","carboxylic acid transport",3,0,0.2,243,"1.000","0.206","0.206" +"GO:0006950","response to stress",14,1,0.91,116,"0.625","0.208","0.208" +"GO:0071702","organic substance transport",9,0,0.59,244,"1.000","0.211","0.211" +"GO:0001558","regulation of cell growth",3,0,0.2,245,"1.000","0.213","0.213" +"GO:0048638","regulation of developmental growth",3,0,0.2,246,"1.000","0.213","0.213" +"GO:0050803","regulation of synapse structure or activ...",3,0,0.2,247,"1.000","0.213","0.213" +"GO:0050807","regulation of synapse organization",3,0,0.2,248,"1.000","0.213","0.213" +"GO:0015672","monovalent inorganic cation transport",4,2,0.26,2,"0.022","0.213","0.213" +"GO:0006914","autophagy",4,0,0.26,249,"1.000","0.213","0.213" +"GO:0061919","process utilizing autophagic mechanism",4,0,0.26,250,"1.000","0.213","0.213" +"GO:0016192","vesicle-mediated transport",9,2,0.59,12,"0.109","0.218","0.218" +"GO:1901566","organonitrogen compound biosynthetic pro...",11,1,0.72,100,"0.534","0.230","0.230" +"GO:0043933","protein-containing complex subunit organ...",7,1,0.46,74,"0.381","0.230","0.230" +"GO:0065003","protein-containing complex assembly",7,1,0.46,75,"0.381","0.230","0.230" +"GO:0006644","phospholipid metabolic process",8,1,0.52,87,"0.423","0.237","0.237" +"GO:0090407","organophosphate biosynthetic process",4,0,0.26,251,"1.000","0.239","0.239" +"GO:0001568","blood vessel development",3,0,0.2,252,"1.000","0.240","0.240" +"GO:0001776","leukocyte homeostasis",3,0,0.2,253,"1.000","0.240","0.240" +"GO:0001944","vasculature development",3,0,0.2,254,"1.000","0.240","0.240" +"GO:0002260","lymphocyte homeostasis",3,0,0.2,255,"1.000","0.240","0.240" +"GO:0032943","mononuclear cell proliferation",3,0,0.2,256,"1.000","0.240","0.240" +"GO:0032944","regulation of mononuclear cell prolifera...",3,0,0.2,257,"1.000","0.240","0.240" +"GO:0042098","T cell proliferation",3,0,0.2,258,"1.000","0.240","0.240" +"GO:0042129","regulation of T cell proliferation",3,0,0.2,259,"1.000","0.240","0.240" +"GO:0046651","lymphocyte proliferation",3,0,0.2,260,"1.000","0.240","0.240" +"GO:0048514","blood vessel morphogenesis",3,0,0.2,261,"1.000","0.240","0.240" +"GO:0050670","regulation of lymphocyte proliferation",3,0,0.2,262,"1.000","0.240","0.240" +"GO:0070661","leukocyte proliferation",3,0,0.2,263,"1.000","0.240","0.240" +"GO:0070663","regulation of leukocyte proliferation",3,0,0.2,264,"1.000","0.240","0.240" +"GO:0072358","cardiovascular system development",3,0,0.2,265,"1.000","0.240","0.240" +"GO:0006412","translation",6,1,0.39,64,"0.337","0.245","0.245" +"GO:0043043","peptide biosynthetic process",6,1,0.39,65,"0.337","0.245","0.245" +"GO:0046907","intracellular transport",8,2,0.52,8,"0.088","0.250","0.250" +"GO:0022607","cellular component assembly",9,1,0.59,93,"0.463","0.252","0.252" +"GO:0070887","cellular response to chemical stimulus",11,1,0.72,101,"0.534","0.254","0.254" +"GO:0007267","cell-cell signaling",4,1,0.26,36,"0.238","0.257","0.257" +"GO:0010035","response to inorganic substance",4,1,0.26,37,"0.238","0.257","0.257" +"GO:1901700","response to oxygen-containing compound",4,1,0.26,38,"0.238","0.257","0.257" +"GO:0007417","central nervous system development",8,2,0.52,9,"0.088","0.263","0.263" +"GO:0007167","enzyme linked receptor protein signaling...",3,0,0.2,266,"1.000","0.264","0.264" +"GO:0002682","regulation of immune system process",7,0,0.46,267,"1.000","0.271","0.271" +"GO:0050896","response to stimulus",52,3,3.39,124,"0.712","0.271","0.271" +"GO:0009653","anatomical structure morphogenesis",12,1,0.78,106,"0.566","0.274","0.274" +"GO:0051239","regulation of multicellular organismal p...",12,1,0.78,107,"0.566","0.274","0.274" +"GO:0010563","negative regulation of phosphorus metabo...",4,0,0.26,268,"1.000","0.276","0.276" +"GO:0045936","negative regulation of phosphate metabol...",4,0,0.26,269,"1.000","0.276","0.276" +"GO:0045595","regulation of cell differentiation",7,0,0.46,270,"1.000","0.276","0.276" +"GO:0043603","cellular amide metabolic process",9,1,0.59,94,"0.463","0.281","0.281" +"GO:0007276","gamete generation",3,0,0.2,271,"1.000","0.283","0.283" +"GO:0019953","sexual reproduction",3,0,0.2,272,"1.000","0.283","0.283" +"GO:0022412","cellular process involved in reproductio...",3,0,0.2,273,"1.000","0.283","0.283" +"GO:0044703","multi-organism reproductive process",3,0,0.2,274,"1.000","0.283","0.283" +"GO:0031329","regulation of cellular catabolic process",4,0,0.26,275,"1.000","0.286","0.286" +"GO:0045664","regulation of neuron differentiation",4,0,0.26,276,"1.000","0.286","0.286" +"GO:0050767","regulation of neurogenesis",4,0,0.26,277,"1.000","0.286","0.286" +"GO:0060284","regulation of cell development",4,0,0.26,278,"1.000","0.286","0.286" +"GO:0008152","metabolic process",123,6,8.02,156,"0.942","0.289","0.289" +"GO:0030182","neuron differentiation",10,1,0.65,97,"0.499","0.292","0.292" +"GO:0050793","regulation of developmental process",10,0,0.65,279,"1.000","0.292","0.292" +"GO:0033036","macromolecule localization",11,1,0.72,102,"0.534","0.297","0.297" +"GO:0032989","cellular component morphogenesis",8,0,0.52,280,"1.000","0.305","0.305" +"GO:0045444","fat cell differentiation",3,0,0.2,281,"1.000","0.307","0.307" +"GO:0042592","homeostatic process",12,1,0.78,108,"0.566","0.316","0.316" +"GO:0006725","cellular aromatic compound metabolic pro...",42,1,2.74,161,"0.960","0.317","0.317" +"GO:0046483","heterocycle metabolic process",42,1,2.74,162,"0.960","0.317","0.317" +"GO:1901360","organic cyclic compound metabolic proces...",42,1,2.74,163,"0.960","0.317","0.317" +"GO:0051641","cellular localization",14,2,0.91,31,"0.229","0.322","0.322" +"GO:0009887","animal organ morphogenesis",5,1,0.33,56,"0.289","0.330","0.330" +"GO:0002520","immune system development",5,0,0.33,282,"1.000","0.330","0.330" +"GO:0016477","cell migration",5,0,0.33,283,"1.000","0.330","0.330" +"GO:0030097","hemopoiesis",5,0,0.33,284,"1.000","0.330","0.330" +"GO:0046903","secretion",5,0,0.33,285,"1.000","0.330","0.330" +"GO:0048534","hematopoietic or lymphoid organ developm...",5,0,0.33,286,"1.000","0.330","0.330" +"GO:0048870","cell motility",5,0,0.33,287,"1.000","0.330","0.330" +"GO:0048872","homeostasis of number of cells",5,0,0.33,288,"1.000","0.330","0.330" +"GO:0051258","protein polymerization",5,0,0.33,289,"1.000","0.330","0.330" +"GO:0051674","localization of cell",5,0,0.33,290,"1.000","0.330","0.330" +"GO:0097435","supramolecular fiber organization",5,0,0.33,291,"1.000","0.330","0.330" +"GO:0008104","protein localization",9,1,0.59,95,"0.463","0.333","0.333" +"GO:0016999","antibiotic metabolic process",3,0,0.2,292,"1.000","0.334","0.334" +"GO:0048589","developmental growth",6,0,0.39,293,"1.000","0.339","0.339" +"GO:0019637","organophosphate metabolic process",10,1,0.65,98,"0.499","0.339","0.339" +"GO:0008654","phospholipid biosynthetic process",3,0,0.2,294,"1.000","0.344","0.344" +"GO:0044267","cellular protein metabolic process",33,2,2.15,120,"0.671","0.347","0.347" +"GO:0032502","developmental process",22,2,1.43,91,"0.433","0.351","0.351" +"GO:0065009","regulation of molecular function",7,1,0.46,76,"0.381","0.354","0.354" +"GO:0010628","positive regulation of gene expression",7,0,0.46,295,"1.000","0.354","0.354" +"GO:0003008","system process",6,1,0.39,66,"0.337","0.357","0.357" +"GO:0006399","tRNA metabolic process",3,0,0.2,296,"1.000","0.366","0.366" +"GO:0034660","ncRNA metabolic process",3,0,0.2,297,"1.000","0.366","0.366" +"GO:0007399","nervous system development",15,2,0.98,49,"0.254","0.374","0.374" +"GO:0009893","positive regulation of metabolic process",12,0,0.78,298,"1.000","0.374","0.374" +"GO:0071396","cellular response to lipid",5,1,0.33,57,"0.289","0.378","0.378" +"GO:0034641","cellular nitrogen compound metabolic pro...",50,2,3.26,146,"0.886","0.382","0.382" +"GO:0000075","cell cycle checkpoint",3,0,0.2,299,"1.000","0.383","0.383" +"GO:0006470","protein dephosphorylation",3,0,0.2,300,"1.000","0.383","0.383" +"GO:0031570","DNA integrity checkpoint",3,0,0.2,301,"1.000","0.383","0.383" +"GO:0043086","negative regulation of catalytic activit...",3,0,0.2,302,"1.000","0.383","0.383" +"GO:0044092","negative regulation of molecular functio...",3,0,0.2,303,"1.000","0.383","0.383" +"GO:0045786","negative regulation of cell cycle",3,0,0.2,304,"1.000","0.383","0.383" +"GO:0051346","negative regulation of hydrolase activit...",3,0,0.2,305,"1.000","0.383","0.383" +"GO:0006793","phosphorus metabolic process",30,1,1.96,147,"0.890","0.386","0.386" +"GO:0006796","phosphate-containing compound metabolic ...",30,1,1.96,148,"0.890","0.386","0.386" +"GO:0001764","neuron migration",3,0,0.2,306,"1.000","0.386","0.386" +"GO:0002521","leukocyte differentiation",3,0,0.2,307,"1.000","0.386","0.386" +"GO:0016331","morphogenesis of embryonic epithelium",3,0,0.2,308,"1.000","0.386","0.386" +"GO:0030098","lymphocyte differentiation",3,0,0.2,309,"1.000","0.386","0.386" +"GO:0030100","regulation of endocytosis",3,0,0.2,310,"1.000","0.386","0.386" +"GO:0030217","T cell differentiation",3,0,0.2,311,"1.000","0.386","0.386" +"GO:0030334","regulation of cell migration",3,0,0.2,312,"1.000","0.386","0.386" +"GO:0030838","positive regulation of actin filament po...",3,0,0.2,313,"1.000","0.386","0.386" +"GO:0031334","positive regulation of protein complex a...",3,0,0.2,314,"1.000","0.386","0.386" +"GO:0032273","positive regulation of protein polymeriz...",3,0,0.2,315,"1.000","0.386","0.386" +"GO:0040012","regulation of locomotion",3,0,0.2,316,"1.000","0.386","0.386" +"GO:0043066","negative regulation of apoptotic process",3,0,0.2,317,"1.000","0.386","0.386" +"GO:0043069","negative regulation of programmed cell d...",3,0,0.2,318,"1.000","0.386","0.386" +"GO:0044089","positive regulation of cellular componen...",3,0,0.2,319,"1.000","0.386","0.386" +"GO:0045580","regulation of T cell differentiation",3,0,0.2,320,"1.000","0.386","0.386" +"GO:0045619","regulation of lymphocyte differentiation",3,0,0.2,321,"1.000","0.386","0.386" +"GO:0051495","positive regulation of cytoskeleton orga...",3,0,0.2,322,"1.000","0.386","0.386" +"GO:0060548","negative regulation of cell death",3,0,0.2,323,"1.000","0.386","0.386" +"GO:0060562","epithelial tube morphogenesis",3,0,0.2,324,"1.000","0.386","0.386" +"GO:0060627","regulation of vesicle-mediated transport",3,0,0.2,325,"1.000","0.386","0.386" +"GO:0061061","muscle structure development",3,0,0.2,326,"1.000","0.386","0.386" +"GO:1902105","regulation of leukocyte differentiation",3,0,0.2,327,"1.000","0.386","0.386" +"GO:1902905","positive regulation of supramolecular fi...",3,0,0.2,328,"1.000","0.386","0.386" +"GO:2000145","regulation of cell motility",3,0,0.2,329,"1.000","0.386","0.386" +"GO:0040008","regulation of growth",4,0,0.26,330,"1.000","0.395","0.395" +"GO:0071310","cellular response to organic substance",8,1,0.52,88,"0.423","0.401","0.401" +"GO:0034622","cellular protein-containing complex asse...",6,0,0.39,331,"1.000","0.405","0.405" +"GO:0035239","tube morphogenesis",5,0,0.33,332,"1.000","0.407","0.407" +"GO:0035295","tube development",5,0,0.33,333,"1.000","0.407","0.407" +"GO:0072359","circulatory system development",5,0,0.33,334,"1.000","0.407","0.407" +"GO:0048856","anatomical structure development",20,2,1.3,83,"0.383","0.408","0.408" +"GO:0048468","cell development",11,1,0.72,103,"0.534","0.412","0.412" +"GO:0006928","movement of cell or subcellular componen...",8,1,0.52,89,"0.423","0.418","0.418" +"GO:0048699","generation of neurons",11,1,0.72,104,"0.534","0.433","0.433" +"GO:0045597","positive regulation of cell differentiat...",5,0,0.33,335,"1.000","0.437","0.437" +"GO:0006629","lipid metabolic process",14,1,0.91,117,"0.625","0.443","0.443" +"GO:0030163","protein catabolic process",3,0,0.2,336,"1.000","0.449","0.449" +"GO:0044265","cellular macromolecule catabolic process",3,0,0.2,337,"1.000","0.449","0.449" +"GO:0043604","amide biosynthetic process",7,1,0.46,77,"0.381","0.449","0.449" +"GO:0071704","organic substance metabolic process",99,4,6.46,164,"0.962","0.449","0.449" +"GO:0030154","cell differentiation",17,2,1.11,60,"0.306","0.450","0.450" +"GO:0048869","cellular developmental process",17,2,1.11,61,"0.306","0.450","0.450" +"GO:0055114","oxidation-reduction process",13,1,0.85,113,"0.597","0.452","0.452" +"GO:0071705","nitrogen compound transport",8,0,0.52,338,"1.000","0.454","0.454" +"GO:0016311","dephosphorylation",7,1,0.46,78,"0.381","0.466","0.466" +"GO:0090304","nucleic acid metabolic process",38,1,2.48,158,"0.944","0.469","0.469" +"GO:0008283","cell proliferation",8,0,0.52,339,"1.000","0.472","0.472" +"GO:0007423","sensory organ development",6,1,0.39,67,"0.337","0.487","0.487" +"GO:0033993","response to lipid",6,1,0.39,68,"0.337","0.487","0.487" +"GO:0043009","chordate embryonic development",6,1,0.39,69,"0.337","0.487","0.487" +"GO:0015031","protein transport",6,0,0.39,340,"1.000","0.487","0.487" +"GO:0015833","peptide transport",6,0,0.39,341,"1.000","0.487","0.487" +"GO:0034613","cellular protein localization",6,0,0.39,342,"1.000","0.487","0.487" +"GO:0042886","amide transport",6,0,0.39,343,"1.000","0.487","0.487" +"GO:0045184","establishment of protein localization",6,0,0.39,344,"1.000","0.487","0.487" +"GO:0070727","cellular macromolecule localization",6,0,0.39,345,"1.000","0.487","0.487" +"GO:0006139","nucleobase-containing compound metabolic...",40,1,2.61,159,"0.952","0.489","0.489" +"GO:0000226","microtubule cytoskeleton organization",4,0,0.26,346,"1.000","0.507","0.507" +"GO:0007611","learning or memory",4,0,0.26,347,"1.000","0.507","0.507" +"GO:0045165","cell fate commitment",4,0,0.26,348,"1.000","0.507","0.507" +"GO:0050890","cognition",4,0,0.26,349,"1.000","0.507","0.507" +"GO:0032501","multicellular organismal process",21,2,1.37,84,"0.408","0.512","0.512" +"GO:0032879","regulation of localization",7,1,0.46,79,"0.381","0.518","0.518" +"GO:0033043","regulation of organelle organization",7,0,0.46,350,"1.000","0.518","0.518" +"GO:0050790","regulation of catalytic activity",6,0,0.39,351,"1.000","0.519","0.519" +"GO:0007275","multicellular organism development",19,2,1.24,70,"0.358","0.519","0.519" +"GO:0048731","system development",19,2,1.24,71,"0.358","0.519","0.519" +"GO:0019725","cellular homeostasis",7,0,0.46,352,"1.000","0.520","0.520" +"GO:0046434","organophosphate catabolic process",3,1,0.2,26,"0.184","0.523","0.523" +"GO:0009116","nucleoside metabolic process",3,0,0.2,353,"1.000","0.523","0.523" +"GO:0055086","nucleobase-containing small molecule met...",3,0,0.2,354,"1.000","0.523","0.523" +"GO:1901657","glycosyl compound metabolic process",3,0,0.2,355,"1.000","0.523","0.523" +"GO:0042221","response to chemical",16,1,1.04,121,"0.676","0.524","0.524" +"GO:0007010","cytoskeleton organization",6,0,0.39,356,"1.000","0.524","0.524" +"GO:0007264","small GTPase mediated signal transductio...",6,0,0.39,357,"1.000","0.524","0.524" +"GO:0007265","Ras protein signal transduction",6,0,0.39,358,"1.000","0.524","0.524" +"GO:0051130","positive regulation of cellular componen...",6,0,0.39,359,"1.000","0.524","0.524" +"GO:0048513","animal organ development",13,2,0.85,29,"0.203","0.525","0.525" +"GO:0030258","lipid modification",3,1,0.2,27,"0.184","0.527","0.527" +"GO:0046488","phosphatidylinositol metabolic process",3,1,0.2,28,"0.184","0.527","0.527" +"GO:0007166","cell surface receptor signaling pathway",8,0,0.52,360,"1.000","0.527","0.527" +"GO:0009894","regulation of catabolic process",5,0,0.33,361,"1.000","0.550","0.550" +"GO:0051129","negative regulation of cellular componen...",5,0,0.33,362,"1.000","0.550","0.550" +"GO:0051960","regulation of nervous system development",5,0,0.33,363,"1.000","0.550","0.550" +"GO:0032269","negative regulation of cellular protein ...",7,0,0.46,364,"1.000","0.560","0.560" +"GO:0051248","negative regulation of protein metabolic...",7,0,0.46,365,"1.000","0.560","0.560" +"GO:0009895","negative regulation of catabolic process",3,0,0.2,366,"1.000","0.561","0.561" +"GO:0010639","negative regulation of organelle organiz...",3,0,0.2,367,"1.000","0.561","0.561" +"GO:0031330","negative regulation of cellular cataboli...",3,0,0.2,368,"1.000","0.561","0.561" +"GO:0044238","primary metabolic process",94,4,6.13,157,"0.943","0.564","0.564" +"GO:0071495","cellular response to endogenous stimulus",7,1,0.46,80,"0.381","0.565","0.565" +"GO:0070848","response to growth factor",3,0,0.2,369,"1.000","0.572","0.572" +"GO:0071363","cellular response to growth factor stimu...",3,0,0.2,370,"1.000","0.572","0.572" +"GO:0045454","cell redox homeostasis",6,0,0.39,371,"1.000","0.573","0.573" +"GO:0005975","carbohydrate metabolic process",7,1,0.46,81,"0.381","0.580","0.580" +"GO:0009792","embryo development ending in birth or eg...",7,1,0.46,82,"0.381","0.580","0.580" +"GO:0022008","neurogenesis",12,1,0.78,109,"0.566","0.583","0.583" +"GO:0001775","cell activation",5,0,0.33,372,"1.000","0.585","0.585" +"GO:0045321","leukocyte activation",5,0,0.33,373,"1.000","0.585","0.585" +"GO:0044248","cellular catabolic process",11,0,0.72,374,"1.000","0.586","0.586" +"GO:0031325","positive regulation of cellular metaboli...",11,0,0.72,375,"1.000","0.590","0.590" +"GO:0044085","cellular component biogenesis",11,1,0.72,105,"0.534","0.596","0.596" +"GO:0007266","Rho protein signal transduction",4,0,0.26,376,"1.000","0.600","0.600" +"GO:0035023","regulation of Rho protein signal transdu...",4,0,0.26,377,"1.000","0.600","0.600" +"GO:0019538","protein metabolic process",40,2,2.61,133,"0.781","0.600","0.600" +"GO:0042325","regulation of phosphorylation",7,0,0.46,378,"1.000","0.619","0.619" +"GO:0010557","positive regulation of macromolecule bio...",6,0,0.39,379,"1.000","0.622","0.622" +"GO:0031328","positive regulation of cellular biosynth...",6,0,0.39,380,"1.000","0.622","0.622" +"GO:0045893","positive regulation of transcription, DN...",6,0,0.39,381,"1.000","0.622","0.622" +"GO:0045935","positive regulation of nucleobase-contai...",6,0,0.39,382,"1.000","0.622","0.622" +"GO:0045944","positive regulation of transcription by ...",6,0,0.39,383,"1.000","0.622","0.622" +"GO:0051254","positive regulation of RNA metabolic pro...",6,0,0.39,384,"1.000","0.622","0.622" +"GO:1902680","positive regulation of RNA biosynthetic ...",6,0,0.39,385,"1.000","0.622","0.622" +"GO:1903508","positive regulation of nucleic acid-temp...",6,0,0.39,386,"1.000","0.622","0.622" +"GO:0032870","cellular response to hormone stimulus",4,1,0.26,39,"0.238","0.640","0.640" +"GO:0048545","response to steroid hormone",4,1,0.26,40,"0.238","0.640","0.640" +"GO:0071383","cellular response to steroid hormone sti...",4,1,0.26,41,"0.238","0.640","0.640" +"GO:0071407","cellular response to organic cyclic comp...",4,1,0.26,42,"0.238","0.640","0.640" +"GO:0002694","regulation of leukocyte activation",4,0,0.26,387,"1.000","0.640","0.640" +"GO:0042110","T cell activation",4,0,0.26,388,"1.000","0.640","0.640" +"GO:0046649","lymphocyte activation",4,0,0.26,389,"1.000","0.640","0.640" +"GO:0050863","regulation of T cell activation",4,0,0.26,390,"1.000","0.640","0.640" +"GO:0050865","regulation of cell activation",4,0,0.26,391,"1.000","0.640","0.640" +"GO:0051249","regulation of lymphocyte activation",4,0,0.26,392,"1.000","0.640","0.640" +"GO:1903706","regulation of hemopoiesis",4,0,0.26,393,"1.000","0.640","0.640" +"GO:0007186","G protein-coupled receptor signaling pat...",6,0,0.39,394,"1.000","0.644","0.644" +"GO:0007154","cell communication",36,2,2.35,126,"0.722","0.649","0.649" +"GO:0001701","in utero embryonic development",4,1,0.26,43,"0.238","0.653","0.653" +"GO:0002009","morphogenesis of an epithelium",4,0,0.26,395,"1.000","0.653","0.653" +"GO:0007155","cell adhesion",4,0,0.26,396,"1.000","0.653","0.653" +"GO:0010562","positive regulation of phosphorus metabo...",4,0,0.26,397,"1.000","0.653","0.653" +"GO:0022610","biological adhesion",4,0,0.26,398,"1.000","0.653","0.653" +"GO:0032940","secretion by cell",4,0,0.26,399,"1.000","0.653","0.653" +"GO:0042327","positive regulation of phosphorylation",4,0,0.26,400,"1.000","0.653","0.653" +"GO:0045937","positive regulation of phosphate metabol...",4,0,0.26,401,"1.000","0.653","0.653" +"GO:0048598","embryonic morphogenesis",4,0,0.26,402,"1.000","0.653","0.653" +"GO:0048729","tissue morphogenesis",4,0,0.26,403,"1.000","0.653","0.653" +"GO:0060429","epithelium development",4,0,0.26,404,"1.000","0.653","0.653" +"GO:0061024","membrane organization",4,0,0.26,405,"1.000","0.653","0.653" +"GO:0098609","cell-cell adhesion",4,0,0.26,406,"1.000","0.653","0.653" +"GO:0045596","negative regulation of cell differentiat...",4,0,0.26,407,"1.000","0.653","0.653" +"GO:0006396","RNA processing",5,0,0.33,408,"1.000","0.654","0.654" +"GO:1902531","regulation of intracellular signal trans...",7,0,0.46,409,"1.000","0.654","0.654" +"GO:0007165","signal transduction",33,1,2.15,153,"0.914","0.659","0.659" +"GO:0009719","response to endogenous stimulus",8,1,0.52,90,"0.423","0.660","0.660" +"GO:0035556","intracellular signal transduction",13,1,0.85,114,"0.597","0.661","0.661" +"GO:0048518","positive regulation of biological proces...",20,1,1.3,130,"0.760","0.663","0.663" +"GO:0031400","negative regulation of protein modificat...",5,0,0.33,410,"1.000","0.672","0.672" +"GO:0006352","DNA-templated transcription, initiation",4,1,0.26,44,"0.238","0.679","0.679" +"GO:0000165","MAPK cascade",4,0,0.26,411,"1.000","0.679","0.679" +"GO:0023014","signal transduction by protein phosphory...",4,0,0.26,412,"1.000","0.679","0.679" +"GO:0043408","regulation of MAPK cascade",4,0,0.26,413,"1.000","0.679","0.679" +"GO:1901565","organonitrogen compound catabolic proces...",5,0,0.33,414,"1.000","0.684","0.684" +"GO:0010467","gene expression",38,2,2.48,129,"0.753","0.687","0.687" +"GO:0006650","glycerophospholipid metabolic process",4,1,0.26,45,"0.238","0.693","0.693" +"GO:0046486","glycerolipid metabolic process",4,1,0.26,46,"0.238","0.693","0.693" +"GO:0010033","response to organic substance",12,1,0.78,110,"0.566","0.693","0.693" +"GO:0050877","nervous system process",5,0,0.33,415,"1.000","0.695","0.695" +"GO:0019220","regulation of phosphate metabolic proces...",8,0,0.52,416,"1.000","0.698","0.698" +"GO:0051174","regulation of phosphorus metabolic proce...",8,0,0.52,417,"1.000","0.698","0.698" +"GO:0001934","positive regulation of protein phosphory...",3,0,0.2,418,"1.000","0.702","0.702" +"GO:0006979","response to oxidative stress",3,0,0.2,419,"1.000","0.702","0.702" +"GO:0007612","learning",3,0,0.2,420,"1.000","0.702","0.702" +"GO:0009612","response to mechanical stimulus",3,0,0.2,421,"1.000","0.702","0.702" +"GO:0009628","response to abiotic stimulus",3,0,0.2,422,"1.000","0.702","0.702" +"GO:0009791","post-embryonic development",3,0,0.2,423,"1.000","0.702","0.702" +"GO:0010001","glial cell differentiation",3,0,0.2,424,"1.000","0.702","0.702" +"GO:0010608","posttranscriptional regulation of gene e...",3,0,0.2,425,"1.000","0.702","0.702" +"GO:0016055","Wnt signaling pathway",3,0,0.2,426,"1.000","0.702","0.702" +"GO:0042063","gliogenesis",3,0,0.2,427,"1.000","0.702","0.702" +"GO:0043410","positive regulation of MAPK cascade",3,0,0.2,428,"1.000","0.702","0.702" +"GO:0070371","ERK1 and ERK2 cascade",3,0,0.2,429,"1.000","0.702","0.702" +"GO:0070372","regulation of ERK1 and ERK2 cascade",3,0,0.2,430,"1.000","0.702","0.702" +"GO:0072089","stem cell proliferation",3,0,0.2,431,"1.000","0.702","0.702" +"GO:0198738","cell-cell signaling by wnt",3,0,0.2,432,"1.000","0.702","0.702" +"GO:1902533","positive regulation of intracellular sig...",3,0,0.2,433,"1.000","0.702","0.702" +"GO:1905114","cell surface receptor signaling pathway ...",3,0,0.2,434,"1.000","0.702","0.702" +"GO:0043170","macromolecule metabolic process",75,3,4.89,155,"0.931","0.709","0.709" +"GO:0009056","catabolic process",14,1,0.91,118,"0.625","0.710","0.710" +"GO:0044255","cellular lipid metabolic process",12,1,0.78,111,"0.566","0.716","0.716" +"GO:0044087","regulation of cellular component biogene...",8,0,0.52,435,"1.000","0.716","0.716" +"GO:0006464","cellular protein modification process",26,0,1.7,436,"1.000","0.718","0.718" +"GO:0036211","protein modification process",26,0,1.7,437,"1.000","0.718","0.718" +"GO:0030900","forebrain development",4,1,0.26,47,"0.238","0.718","0.718" +"GO:0009790","embryo development",9,1,0.59,96,"0.463","0.727","0.727" +"GO:0023052","signaling",35,2,2.28,123,"0.706","0.727","0.727" +"GO:0002262","myeloid cell homeostasis",3,0,0.2,438,"1.000","0.728","0.728" +"GO:0008356","asymmetric cell division",3,0,0.2,439,"1.000","0.728","0.728" +"GO:0030099","myeloid cell differentiation",3,0,0.2,440,"1.000","0.728","0.728" +"GO:0030218","erythrocyte differentiation",3,0,0.2,441,"1.000","0.728","0.728" +"GO:0034101","erythrocyte homeostasis",3,0,0.2,442,"1.000","0.728","0.728" +"GO:0009057","macromolecule catabolic process",4,0,0.26,443,"1.000","0.731","0.731" +"GO:0048583","regulation of response to stimulus",15,0,0.98,444,"1.000","0.742","0.742" +"GO:0000278","mitotic cell cycle",4,0,0.26,445,"1.000","0.744","0.744" +"GO:0007346","regulation of mitotic cell cycle",4,0,0.26,446,"1.000","0.744","0.744" +"GO:0022402","cell cycle process",4,0,0.26,447,"1.000","0.744","0.744" +"GO:0006081","cellular aldehyde metabolic process",3,0,0.2,448,"1.000","0.746","0.746" +"GO:0008610","lipid biosynthetic process",7,0,0.46,449,"1.000","0.774","0.774" +"GO:1901564","organonitrogen compound metabolic proces...",48,2,3.13,144,"0.869","0.774","0.774" +"GO:0016310","phosphorylation",20,1,1.3,131,"0.760","0.777","0.777" +"GO:0046578","regulation of Ras protein signal transdu...",5,0,0.33,450,"1.000","0.794","0.794" +"GO:0051056","regulation of small GTPase mediated sign...",5,0,0.33,451,"1.000","0.794","0.794" +"GO:0009987","cellular process",132,7,8.61,154,"0.915","0.796","0.796" +"GO:0009891","positive regulation of biosynthetic proc...",7,0,0.46,452,"1.000","0.799","0.799" +"GO:0001932","regulation of protein phosphorylation",6,0,0.39,453,"1.000","0.800","0.800" +"GO:0006807","nitrogen compound metabolic process",81,3,5.28,160,"0.957","0.801","0.801" +"GO:0097164","ammonium ion metabolic process",3,0,0.2,454,"1.000","0.802","0.802" +"GO:0031324","negative regulation of cellular metaboli...",12,0,0.78,455,"1.000","0.803","0.803" +"GO:0006886","intracellular protein transport",4,0,0.26,456,"1.000","0.805","0.805" +"GO:0051128","regulation of cellular component organiz...",11,0,0.72,457,"1.000","0.807","0.807" +"GO:0007049","cell cycle",7,0,0.46,458,"1.000","0.814","0.814" +"GO:0031401","positive regulation of protein modificat...",4,0,0.26,459,"1.000","0.816","0.816" +"GO:0032270","positive regulation of cellular protein ...",4,0,0.26,460,"1.000","0.816","0.816" +"GO:0051247","positive regulation of protein metabolic...",4,0,0.26,461,"1.000","0.816","0.816" +"GO:1901135","carbohydrate derivative metabolic proces...",4,0,0.26,462,"1.000","0.816","0.816" +"GO:0031399","regulation of protein modification proce...",10,0,0.65,463,"1.000","0.820","0.820" +"GO:1901575","organic substance catabolic process",10,1,0.65,99,"0.499","0.820","0.820" +"GO:0010604","positive regulation of macromolecule met...",10,0,0.65,464,"1.000","0.824","0.824" +"GO:0043412","macromolecule modification",28,0,1.83,465,"1.000","0.827","0.827" +"GO:0009725","response to hormone",5,1,0.33,58,"0.289","0.830","0.830" +"GO:0014070","response to organic cyclic compound",5,1,0.33,59,"0.289","0.830","0.830" +"GO:0044260","cellular macromolecule metabolic process",62,3,4.04,138,"0.835","0.840","0.840" +"GO:0010638","positive regulation of organelle organiz...",5,0,0.33,466,"1.000","0.844","0.844" +"GO:0016070","RNA metabolic process",32,1,2.09,152,"0.907","0.848","0.848" +"GO:0009058","biosynthetic process",47,2,3.07,140,"0.860","0.857","0.857" +"GO:0006366","transcription by RNA polymerase II",12,1,0.78,112,"0.566","0.868","0.868" +"GO:0009888","tissue development",7,0,0.46,467,"1.000","0.870","0.870" +"GO:0016071","mRNA metabolic process",3,0,0.2,468,"1.000","0.871","0.871" +"GO:0048568","embryonic organ development",3,0,0.2,469,"1.000","0.871","0.871" +"GO:0050673","epithelial cell proliferation",3,0,0.2,470,"1.000","0.871","0.871" +"GO:1901576","organic substance biosynthetic process",45,2,2.93,139,"0.840","0.884","0.884" +"GO:0048519","negative regulation of biological proces...",21,1,1.37,132,"0.777","0.886","0.886" +"GO:0000122","negative regulation of transcription by ...",5,0,0.33,471,"1.000","0.888","0.888" +"GO:0009967","positive regulation of signal transducti...",5,0,0.33,472,"1.000","0.888","0.888" +"GO:0010647","positive regulation of cell communicatio...",5,0,0.33,473,"1.000","0.888","0.888" +"GO:0023056","positive regulation of signaling",5,0,0.33,474,"1.000","0.888","0.888" +"GO:0051093","negative regulation of developmental pro...",5,0,0.33,475,"1.000","0.888","0.888" +"GO:0051726","regulation of cell cycle",5,0,0.33,476,"1.000","0.888","0.888" +"GO:0010605","negative regulation of macromolecule met...",11,0,0.72,477,"1.000","0.893","0.893" +"GO:0032268","regulation of cellular protein metabolic...",11,0,0.72,478,"1.000","0.893","0.893" +"GO:0051172","negative regulation of nitrogen compound...",11,0,0.72,479,"1.000","0.893","0.893" +"GO:0044249","cellular biosynthetic process",43,2,2.8,136,"0.818","0.897","0.897" +"GO:0009892","negative regulation of metabolic process",14,0,0.91,480,"1.000","0.897","0.897" +"GO:0006325","chromatin organization",3,0,0.2,481,"1.000","0.899","0.899" +"GO:0048584","positive regulation of response to stimu...",7,0,0.46,482,"1.000","0.899","0.899" +"GO:0007017","microtubule-based process",7,0,0.46,483,"1.000","0.924","0.924" +"GO:0006357","regulation of transcription by RNA polym...",10,0,0.65,484,"1.000","0.927","0.927" +"GO:0044271","cellular nitrogen compound biosynthetic ...",37,2,2.41,128,"0.738","0.933","0.933" +"GO:0045892","negative regulation of transcription, DN...",6,0,0.39,485,"1.000","0.934","0.934" +"GO:0051241","negative regulation of multicellular org...",6,0,0.39,486,"1.000","0.934","0.934" +"GO:0051253","negative regulation of RNA metabolic pro...",6,0,0.39,487,"1.000","0.934","0.934" +"GO:1902679","negative regulation of RNA biosynthetic ...",6,0,0.39,488,"1.000","0.934","0.934" +"GO:1903507","negative regulation of nucleic acid-temp...",6,0,0.39,489,"1.000","0.934","0.934" +"GO:0009890","negative regulation of biosynthetic proc...",9,0,0.59,490,"1.000","0.935","0.935" +"GO:0009059","macromolecule biosynthetic process",36,2,2.35,127,"0.722","0.939","0.939" +"GO:0010558","negative regulation of macromolecule bio...",8,0,0.52,491,"1.000","0.942","0.942" +"GO:0031327","negative regulation of cellular biosynth...",8,0,0.52,492,"1.000","0.942","0.942" +"GO:2000113","negative regulation of cellular macromol...",8,0,0.52,493,"1.000","0.942","0.942" +"GO:0016042","lipid catabolic process",3,0,0.2,494,"1.000","0.943","0.943" +"GO:0034645","cellular macromolecule biosynthetic proc...",34,2,2.22,122,"0.689","0.944","0.944" +"GO:0010629","negative regulation of gene expression",7,0,0.46,495,"1.000","0.949","0.949" +"GO:0045934","negative regulation of nucleobase-contai...",7,0,0.46,496,"1.000","0.949","0.949" +"GO:0050789","regulation of biological process",74,2,4.83,166,"0.984","0.954","0.954" +"GO:0065007","biological regulation",74,2,4.83,167,"0.984","0.954","0.954" +"GO:0048522","positive regulation of cellular process",18,0,1.17,497,"1.000","0.964","0.964" +"GO:0006468","protein phosphorylation",17,0,1.11,498,"1.000","0.965","0.965" +"GO:0006355","regulation of transcription, DNA-templat...",24,0,1.57,499,"1.000","0.965","0.965" +"GO:0051252","regulation of RNA metabolic process",24,0,1.57,500,"1.000","0.965","0.965" +"GO:1903506","regulation of nucleic acid-templated tra...",24,0,1.57,501,"1.000","0.965","0.965" +"GO:2001141","regulation of RNA biosynthetic process",24,0,1.57,502,"1.000","0.965","0.965" +"GO:0018130","heterocycle biosynthetic process",30,1,1.96,149,"0.890","0.966","0.966" +"GO:0019438","aromatic compound biosynthetic process",30,1,1.96,150,"0.890","0.966","0.966" +"GO:1901362","organic cyclic compound biosynthetic pro...",30,1,1.96,151,"0.890","0.966","0.966" +"GO:0006996","organelle organization",15,0,0.98,503,"1.000","0.970","0.970" +"GO:0050794","regulation of cellular process",70,2,4.57,165,"0.977","0.971","0.971" +"GO:0051276","chromosome organization",4,0,0.26,504,"1.000","0.971","0.971" +"GO:0006887","exocytosis",3,0,0.2,505,"1.000","0.977","0.977" +"GO:0034654","nucleobase-containing compound biosynthe...",28,1,1.83,145,"0.871","0.977","0.977" +"GO:0009889","regulation of biosynthetic process",28,0,1.83,506,"1.000","0.977","0.977" +"GO:1901361","organic cyclic compound catabolic proces...",3,0,0.2,507,"1.000","0.978","0.978" +"GO:0006351","transcription, DNA-templated",27,1,1.76,141,"0.860","0.981","0.981" +"GO:0032774","RNA biosynthetic process",27,1,1.76,142,"0.860","0.981","0.981" +"GO:0097659","nucleic acid-templated transcription",27,1,1.76,143,"0.860","0.981","0.981" +"GO:0071840","cellular component organization or bioge...",24,1,1.57,137,"0.823","0.982","0.982" +"GO:0051173","positive regulation of nitrogen compound...",9,0,0.59,508,"1.000","0.984","0.984" +"GO:0010556","regulation of macromolecule biosynthetic...",26,0,1.7,509,"1.000","0.985","0.985" +"GO:0031326","regulation of cellular biosynthetic proc...",26,0,1.7,510,"1.000","0.985","0.985" +"GO:2000112","regulation of cellular macromolecule bio...",26,0,1.7,511,"1.000","0.985","0.985" +"GO:0065008","regulation of biological quality",18,1,1.17,125,"0.721","0.986","0.986" +"GO:0051246","regulation of protein metabolic process",13,0,0.85,512,"1.000","0.988","0.988" +"GO:0010468","regulation of gene expression",25,0,1.63,513,"1.000","0.988","0.988" +"GO:0019219","regulation of nucleobase-containing comp...",25,0,1.63,514,"1.000","0.988","0.988" +"GO:0051301","cell division",4,0,0.26,515,"1.000","0.988","0.988" +"GO:0016043","cellular component organization",22,1,1.43,135,"0.794","0.988","0.988" +"GO:0051640","organelle localization",3,0,0.2,516,"1.000","0.996","0.996" +"GO:1903047","mitotic cell cycle process",3,0,0.2,517,"1.000","0.997","0.997" +"GO:0033365","protein localization to organelle",3,0,0.2,518,"1.000","0.998","0.998" +"GO:0072594","establishment of protein localization to...",3,0,0.2,519,"1.000","0.998","0.998" +"GO:0048523","negative regulation of cellular process",18,0,1.17,520,"1.000","0.999","0.999" +"GO:0009966","regulation of signal transduction",11,0,0.72,521,"1.000","1.000","1.000" +"GO:0008150","biological_process",184,12,12,522,"1.000","1.000","1.000" +"GO:0010646","regulation of cell communication",12,0,0.78,523,"1.000","1.000","1.000" +"GO:0019222","regulation of metabolic process",36,0,2.35,524,"1.000","1.000","1.000" +"GO:0023051","regulation of signaling",12,0,0.78,525,"1.000","1.000","1.000" +"GO:0031323","regulation of cellular metabolic process",33,0,2.15,526,"1.000","1.000","1.000" +"GO:0051171","regulation of nitrogen compound metaboli...",32,0,2.09,527,"1.000","1.000","1.000" +"GO:0060255","regulation of macromolecule metabolic pr...",32,0,2.09,528,"1.000","1.000","1.000" +"GO:0080090","regulation of primary metabolic process",33,0,2.15,529,"1.000","1.000","1.000" diff --git a/GO_enrichment_microbiome_output/contrast_postlaying_emerging_downregulated.csv b/GO_enrichment_microbiome_output/contrast_postlaying_emerging_downregulated.csv index 7f49e02..35dd787 100644 --- a/GO_enrichment_microbiome_output/contrast_postlaying_emerging_downregulated.csv +++ b/GO_enrichment_microbiome_output/contrast_postlaying_emerging_downregulated.csv @@ -4,3 +4,396 @@ "GO:0005975","carbohydrate metabolic process",7,4,1.52,1,"0.041","0.087","0.087" "GO:0007186","G protein-coupled receptor signaling pat...",6,3,1.3,5,"0.118","0.097","0.097" "GO:0071705","nitrogen compound transport",15,6,3.26,3,"0.078","0.120","0.120" +"GO:0045595","regulation of cell differentiation",8,1,1.74,183,"0.865","0.136","0.136" +"GO:0048589","developmental growth",5,0,1.09,241,"1.000","0.144","0.144" +"GO:0016310","phosphorylation",13,5,2.82,8,"0.124","0.156","0.156" +"GO:0071702","organic substance transport",16,6,3.47,4,"0.104","0.172","0.172" +"GO:0071704","organic substance metabolic process",98,23,21.28,38,"0.337","0.180","0.180" +"GO:0007154","cell communication",29,8,6.3,24,"0.272","0.188","0.188" +"GO:0023052","signaling",29,8,6.3,25,"0.272","0.188","0.188" +"GO:0009890","negative regulation of biosynthetic proc...",6,2,1.3,43,"0.387","0.204","0.204" +"GO:0006468","protein phosphorylation",10,4,2.17,11,"0.148","0.206","0.206" +"GO:0016477","cell migration",4,2,0.87,15,"0.206","0.207","0.207" +"GO:0048870","cell motility",4,2,0.87,16,"0.206","0.207","0.207" +"GO:0051674","localization of cell",4,2,0.87,17,"0.206","0.207","0.207" +"GO:0008152","metabolic process",119,27,25.84,52,"0.411","0.209","0.209" +"GO:0045597","positive regulation of cell differentiat...",4,1,0.87,109,"0.628","0.214","0.214" +"GO:0048585","negative regulation of response to stimu...",4,1,0.87,110,"0.628","0.214","0.214" +"GO:0032990","cell part morphogenesis",4,0,0.87,242,"1.000","0.214","0.214" +"GO:0044238","primary metabolic process",91,21,19.76,50,"0.399","0.218","0.218" +"GO:0006886","intracellular protein transport",7,3,1.52,12,"0.175","0.218","0.218" +"GO:0080090","regulation of primary metabolic process",30,5,6.52,179,"0.833","0.219","0.219" +"GO:0006464","cellular protein modification process",17,6,3.69,9,"0.134","0.221","0.221" +"GO:0036211","protein modification process",17,6,3.69,10,"0.134","0.221","0.221" +"GO:0051246","regulation of protein metabolic process",11,3,2.39,54,"0.441","0.226","0.226" +"GO:0006644","phospholipid metabolic process",3,1,0.65,65,"0.522","0.232","0.232" +"GO:0044267","cellular protein metabolic process",26,9,5.65,2,"0.077","0.232","0.232" +"GO:0051641","cellular localization",21,5,4.56,62,"0.496","0.236","0.236" +"GO:0044237","cellular metabolic process",92,19,19.98,130,"0.695","0.247","0.247" +"GO:0022008","neurogenesis",9,1,1.95,194,"0.895","0.259","0.259" +"GO:0051171","regulation of nitrogen compound metaboli...",29,4,6.3,200,"0.920","0.260","0.260" +"GO:0009791","post-embryonic development",4,1,0.87,111,"0.628","0.264","0.264" +"GO:0010558","negative regulation of macromolecule bio...",5,1,1.09,133,"0.710","0.267","0.267" +"GO:0010629","negative regulation of gene expression",5,1,1.09,134,"0.710","0.267","0.267" +"GO:0031327","negative regulation of cellular biosynth...",5,1,1.09,135,"0.710","0.267","0.267" +"GO:2000113","negative regulation of cellular macromol...",5,1,1.09,136,"0.710","0.267","0.267" +"GO:0006897","endocytosis",3,1,0.65,66,"0.522","0.268","0.268" +"GO:0006325","chromatin organization",3,0,0.65,243,"1.000","0.268","0.268" +"GO:0043412","macromolecule modification",20,6,4.34,22,"0.247","0.269","0.269" +"GO:0019222","regulation of metabolic process",36,7,7.82,142,"0.716","0.274","0.274" +"GO:0030163","protein catabolic process",3,2,0.65,7,"0.120","0.276","0.276" +"GO:0048522","positive regulation of cellular process",19,2,4.13,206,"0.949","0.290","0.290" +"GO:0031399","regulation of protein modification proce...",7,1,1.52,166,"0.825","0.291","0.291" +"GO:0016192","vesicle-mediated transport",11,2,2.39,148,"0.734","0.300","0.300" +"GO:1901564","organonitrogen compound metabolic proces...",46,11,9.99,51,"0.410","0.305","0.305" +"GO:0006807","nitrogen compound metabolic process",83,17,18.03,132,"0.701","0.307","0.307" +"GO:0006928","movement of cell or subcellular componen...",5,2,1.09,26,"0.298","0.307","0.307" +"GO:0040011","locomotion",5,2,1.09,27,"0.298","0.307","0.307" +"GO:0098609","cell-cell adhesion",5,2,1.09,28,"0.298","0.307","0.307" +"GO:0031175","neuron projection development",4,0,0.87,244,"1.000","0.310","0.310" +"GO:0007399","nervous system development",12,1,2.61,208,"0.952","0.317","0.317" +"GO:0006403","RNA localization",3,1,0.65,67,"0.522","0.317","0.317" +"GO:0009968","negative regulation of signal transducti...",3,1,0.65,68,"0.522","0.317","0.317" +"GO:0010648","negative regulation of cell communicatio...",3,1,0.65,69,"0.522","0.317","0.317" +"GO:0023057","negative regulation of signaling",3,1,0.65,70,"0.522","0.317","0.317" +"GO:0007409","axonogenesis",3,0,0.65,245,"1.000","0.317","0.317" +"GO:0009611","response to wounding",3,0,0.65,246,"1.000","0.317","0.317" +"GO:0042060","wound healing",3,0,0.65,247,"1.000","0.317","0.317" +"GO:0045664","regulation of neuron differentiation",3,0,0.65,248,"1.000","0.317","0.317" +"GO:0048608","reproductive structure development",3,0,0.65,249,"1.000","0.317","0.317" +"GO:0048667","cell morphogenesis involved in neuron di...",3,0,0.65,250,"1.000","0.317","0.317" +"GO:0048812","neuron projection morphogenesis",3,0,0.65,251,"1.000","0.317","0.317" +"GO:0048858","cell projection morphogenesis",3,0,0.65,252,"1.000","0.317","0.317" +"GO:0050767","regulation of neurogenesis",3,0,0.65,253,"1.000","0.317","0.317" +"GO:0051960","regulation of nervous system development",3,0,0.65,254,"1.000","0.317","0.317" +"GO:0061458","reproductive system development",3,0,0.65,255,"1.000","0.317","0.317" +"GO:0061564","axon development",3,0,0.65,256,"1.000","0.317","0.317" +"GO:0120039","plasma membrane bounded cell projection ...",3,0,0.65,257,"1.000","0.317","0.317" +"GO:0051649","establishment of localization in cell",15,4,3.26,53,"0.417","0.330","0.330" +"GO:0016071","mRNA metabolic process",4,1,0.87,112,"0.628","0.335","0.335" +"GO:0016070","RNA metabolic process",35,4,7.6,216,"0.974","0.338","0.338" +"GO:0015031","protein transport",8,3,1.74,19,"0.239","0.338","0.338" +"GO:0015833","peptide transport",8,3,1.74,20,"0.239","0.338","0.338" +"GO:0042886","amide transport",8,3,1.74,21,"0.239","0.338","0.338" +"GO:0048699","generation of neurons",8,0,1.74,258,"1.000","0.342","0.342" +"GO:0006397","mRNA processing",3,1,0.65,71,"0.522","0.343","0.343" +"GO:0008380","RNA splicing",3,1,0.65,72,"0.522","0.343","0.343" +"GO:0015931","nucleobase-containing compound transport",3,1,0.65,73,"0.522","0.343","0.343" +"GO:0003333","amino acid transmembrane transport",5,2,1.09,29,"0.298","0.345","0.345" +"GO:0006865","amino acid transport",5,2,1.09,30,"0.298","0.345","0.345" +"GO:0015849","organic acid transport",5,2,1.09,31,"0.298","0.345","0.345" +"GO:0046942","carboxylic acid transport",5,2,1.09,32,"0.298","0.345","0.345" +"GO:1903825","organic acid transmembrane transport",5,2,1.09,33,"0.298","0.345","0.345" +"GO:1905039","carboxylic acid transmembrane transport",5,2,1.09,34,"0.298","0.345","0.345" +"GO:0060255","regulation of macromolecule metabolic pr...",31,5,6.73,181,"0.856","0.350","0.350" +"GO:0000278","mitotic cell cycle",4,0,0.87,259,"1.000","0.350","0.350" +"GO:0045892","negative regulation of transcription, DN...",4,0,0.87,260,"1.000","0.350","0.350" +"GO:0045934","negative regulation of nucleobase-contai...",4,0,0.87,261,"1.000","0.350","0.350" +"GO:0051253","negative regulation of RNA metabolic pro...",4,0,0.87,262,"1.000","0.350","0.350" +"GO:1902679","negative regulation of RNA biosynthetic ...",4,0,0.87,263,"1.000","0.350","0.350" +"GO:1903047","mitotic cell cycle process",4,0,0.87,264,"1.000","0.350","0.350" +"GO:1903507","negative regulation of nucleic acid-temp...",4,0,0.87,265,"1.000","0.350","0.350" +"GO:0006629","lipid metabolic process",11,3,2.39,55,"0.441","0.351","0.351" +"GO:0010256","endomembrane system organization",3,1,0.65,74,"0.522","0.352","0.352" +"GO:0006814","sodium ion transport",5,2,1.09,35,"0.298","0.356","0.356" +"GO:0006396","RNA processing",7,2,1.52,56,"0.472","0.368","0.368" +"GO:0034613","cellular protein localization",11,4,2.39,13,"0.196","0.368","0.368" +"GO:0007166","cell surface receptor signaling pathway",7,1,1.52,167,"0.825","0.372","0.372" +"GO:0009628","response to abiotic stimulus",7,1,1.52,168,"0.825","0.382","0.382" +"GO:0046907","intracellular transport",14,4,3.04,40,"0.360","0.396","0.396" +"GO:1902531","regulation of intracellular signal trans...",3,0,0.65,266,"1.000","0.398","0.398" +"GO:0018193","peptidyl-amino acid modification",4,1,0.87,113,"0.628","0.398","0.398" +"GO:0007155","cell adhesion",6,2,1.3,44,"0.387","0.398","0.398" +"GO:0009966","regulation of signal transduction",6,2,1.3,45,"0.387","0.398","0.398" +"GO:0016311","dephosphorylation",6,2,1.3,46,"0.387","0.398","0.398" +"GO:0022610","biological adhesion",6,2,1.3,47,"0.387","0.398","0.398" +"GO:0044255","cellular lipid metabolic process",8,2,1.74,93,"0.550","0.399","0.399" +"GO:0019538","protein metabolic process",32,10,6.95,6,"0.118","0.400","0.400" +"GO:0009056","catabolic process",16,3,3.47,143,"0.719","0.403","0.403" +"GO:0044260","cellular macromolecule metabolic process",57,11,12.38,151,"0.760","0.407","0.407" +"GO:0048878","chemical homeostasis",3,1,0.65,75,"0.522","0.408","0.408" +"GO:0050801","ion homeostasis",3,1,0.65,76,"0.522","0.408","0.408" +"GO:0019220","regulation of phosphate metabolic proces...",6,1,1.3,152,"0.775","0.412","0.412" +"GO:0051174","regulation of phosphorus metabolic proce...",6,1,1.3,153,"0.775","0.412","0.412" +"GO:0021537","telencephalon development",3,0,0.65,267,"1.000","0.417","0.417" +"GO:0021543","pallium development",3,0,0.65,268,"1.000","0.417","0.417" +"GO:0021987","cerebral cortex development",3,0,0.65,269,"1.000","0.417","0.417" +"GO:0030900","forebrain development",3,0,0.65,270,"1.000","0.417","0.417" +"GO:0050877","nervous system process",3,0,0.65,271,"1.000","0.417","0.417" +"GO:0009889","regulation of biosynthetic process",26,4,5.65,188,"0.865","0.417","0.417" +"GO:0006355","regulation of transcription, DNA-templat...",22,1,4.78,225,"0.997","0.426","0.426" +"GO:0019219","regulation of nucleobase-containing comp...",22,1,4.78,226,"0.997","0.426","0.426" +"GO:0051252","regulation of RNA metabolic process",22,1,4.78,227,"0.997","0.426","0.426" +"GO:1903506","regulation of nucleic acid-templated tra...",22,1,4.78,228,"0.997","0.426","0.426" +"GO:2001141","regulation of RNA biosynthetic process",22,1,4.78,229,"0.997","0.426","0.426" +"GO:0032268","regulation of cellular protein metabolic...",9,2,1.95,105,"0.619","0.428","0.428" +"GO:0051716","cellular response to stimulus",41,8,8.9,147,"0.719","0.430","0.430" +"GO:0009892","negative regulation of metabolic process",10,2,2.17,126,"0.681","0.442","0.442" +"GO:0030154","cell differentiation",15,2,3.26,190,"0.879","0.442","0.442" +"GO:0010646","regulation of cell communication",7,2,1.52,57,"0.472","0.446","0.446" +"GO:0023051","regulation of signaling",7,2,1.52,58,"0.472","0.446","0.446" +"GO:0006793","phosphorus metabolic process",21,5,4.56,63,"0.496","0.453","0.453" +"GO:0006796","phosphate-containing compound metabolic ...",21,5,4.56,64,"0.496","0.453","0.453" +"GO:0044248","cellular catabolic process",14,1,3.04,215,"0.972","0.455","0.455" +"GO:0000122","negative regulation of transcription by ...",3,0,0.65,272,"1.000","0.457","0.457" +"GO:0051640","organelle localization",3,0,0.65,273,"1.000","0.457","0.457" +"GO:0043170","macromolecule metabolic process",70,15,15.2,104,"0.596","0.458","0.458" +"GO:0031323","regulation of cellular metabolic process",32,3,6.95,222,"0.987","0.459","0.459" +"GO:0070727","cellular macromolecule localization",12,4,2.61,23,"0.248","0.460","0.460" +"GO:0009893","positive regulation of metabolic process",11,0,2.39,274,"1.000","0.463","0.463" +"GO:0010604","positive regulation of macromolecule met...",9,0,1.95,275,"1.000","0.463","0.463" +"GO:0098656","anion transmembrane transport",7,2,1.52,59,"0.472","0.477","0.477" +"GO:0010468","regulation of gene expression",25,3,5.43,205,"0.944","0.481","0.481" +"GO:0006518","peptide metabolic process",9,3,1.95,36,"0.306","0.481","0.481" +"GO:0031324","negative regulation of cellular metaboli...",9,1,1.95,195,"0.895","0.481","0.481" +"GO:0045184","establishment of protein localization",9,3,1.95,37,"0.306","0.481","0.481" +"GO:0015711","organic anion transport",6,2,1.3,48,"0.387","0.483","0.483" +"GO:0010467","gene expression",41,6,8.9,202,"0.931","0.486","0.486" +"GO:1901605","alpha-amino acid metabolic process",4,0,0.87,276,"1.000","0.490","0.490" +"GO:0042221","response to chemical",17,3,3.69,149,"0.760","0.492","0.492" +"GO:0009057","macromolecule catabolic process",4,2,0.87,18,"0.206","0.496","0.496" +"GO:0006820","anion transport",8,2,1.74,94,"0.550","0.506","0.506" +"GO:0010605","negative regulation of macromolecule met...",7,1,1.52,169,"0.825","0.509","0.509" +"GO:0022402","cell cycle process",7,1,1.52,170,"0.825","0.509","0.509" +"GO:0051172","negative regulation of nitrogen compound...",7,1,1.52,171,"0.825","0.509","0.509" +"GO:0006813","potassium ion transport",3,1,0.65,77,"0.522","0.519","0.519" +"GO:0006139","nucleobase-containing compound metabolic...",44,6,9.56,210,"0.959","0.522","0.522" +"GO:0048583","regulation of response to stimulus",8,2,1.74,95,"0.550","0.524","0.524" +"GO:0006366","transcription by RNA polymerase II",8,0,1.74,277,"1.000","0.524","0.524" +"GO:0006259","DNA metabolic process",6,1,1.3,154,"0.775","0.528","0.528" +"GO:0006351","transcription, DNA-templated",28,1,6.08,236,"0.999","0.529","0.529" +"GO:0032774","RNA biosynthetic process",28,1,6.08,237,"0.999","0.529","0.529" +"GO:0097659","nucleic acid-templated transcription",28,1,6.08,238,"0.999","0.529","0.529" +"GO:0051130","positive regulation of cellular componen...",4,1,0.87,114,"0.628","0.533","0.533" +"GO:0033043","regulation of organelle organization",4,0,0.87,278,"1.000","0.533","0.533" +"GO:0048519","negative regulation of biological proces...",19,4,4.13,108,"0.627","0.533","0.533" +"GO:0031325","positive regulation of cellular metaboli...",9,0,1.95,279,"1.000","0.536","0.536" +"GO:0016197","endosomal transport",3,0,0.65,280,"1.000","0.540","0.540" +"GO:0009987","cellular process",132,27,28.67,162,"0.787","0.543","0.543" +"GO:0090304","nucleic acid metabolic process",40,5,8.69,214,"0.969","0.543","0.543" +"GO:0048513","animal organ development",13,1,2.82,213,"0.963","0.544","0.544" +"GO:0010556","regulation of macromolecule biosynthetic...",24,2,5.21,218,"0.984","0.549","0.549" +"GO:0031326","regulation of cellular biosynthetic proc...",24,2,5.21,219,"0.984","0.549","0.549" +"GO:2000112","regulation of cellular macromolecule bio...",24,2,5.21,220,"0.984","0.549","0.549" +"GO:0008104","protein localization",14,4,3.04,41,"0.360","0.561","0.561" +"GO:0050896","response to stimulus",50,10,10.86,131,"0.700","0.562","0.562" +"GO:0019637","organophosphate metabolic process",7,1,1.52,172,"0.825","0.562","0.562" +"GO:0009059","macromolecule biosynthetic process",36,2,7.82,235,"0.999","0.563","0.563" +"GO:0048869","cellular developmental process",17,3,3.69,150,"0.760","0.568","0.568" +"GO:0001932","regulation of protein phosphorylation",5,1,1.09,137,"0.710","0.569","0.569" +"GO:0042325","regulation of phosphorylation",5,1,1.09,138,"0.710","0.569","0.569" +"GO:0003006","developmental process involved in reprod...",5,0,1.09,281,"1.000","0.569","0.569" +"GO:0006357","regulation of transcription by RNA polym...",7,0,1.52,282,"1.000","0.569","0.569" +"GO:0010628","positive regulation of gene expression",7,0,1.52,283,"1.000","0.569","0.569" +"GO:0051173","positive regulation of nitrogen compound...",7,0,1.52,284,"1.000","0.569","0.569" +"GO:0006399","tRNA metabolic process",3,1,0.65,78,"0.522","0.572","0.572" +"GO:0034660","ncRNA metabolic process",3,1,0.65,79,"0.522","0.572","0.572" +"GO:0009790","embryo development",6,1,1.3,155,"0.775","0.573","0.573" +"GO:0009888","tissue development",6,1,1.3,156,"0.775","0.573","0.573" +"GO:0030182","neuron differentiation",6,0,1.3,285,"1.000","0.573","0.573" +"GO:0032989","cellular component morphogenesis",6,0,1.3,286,"1.000","0.573","0.573" +"GO:0051128","regulation of cellular component organiz...",9,1,1.95,196,"0.895","0.573","0.573" +"GO:1901575","organic substance catabolic process",10,3,2.17,42,"0.374","0.577","0.577" +"GO:0006996","organelle organization",14,2,3.04,180,"0.851","0.578","0.578" +"GO:0009612","response to mechanical stimulus",4,0,0.87,287,"1.000","0.582","0.582" +"GO:0046483","heterocycle metabolic process",50,7,10.86,211,"0.962","0.588","0.588" +"GO:1901360","organic cyclic compound metabolic proces...",50,7,10.86,212,"0.962","0.588","0.588" +"GO:0046486","glycerolipid metabolic process",3,1,0.65,80,"0.522","0.593","0.593" +"GO:0001775","cell activation",4,1,0.87,115,"0.628","0.594","0.594" +"GO:1901362","organic cyclic compound biosynthetic pro...",34,2,7.38,233,"0.999","0.608","0.608" +"GO:0002682","regulation of immune system process",3,1,0.65,81,"0.522","0.614","0.614" +"GO:0010564","regulation of cell cycle process",3,1,0.65,82,"0.522","0.614","0.614" +"GO:0030334","regulation of cell migration",3,1,0.65,83,"0.522","0.614","0.614" +"GO:0040012","regulation of locomotion",3,1,0.65,84,"0.522","0.614","0.614" +"GO:0045321","leukocyte activation",3,1,0.65,85,"0.522","0.614","0.614" +"GO:2000145","regulation of cell motility",3,1,0.65,86,"0.522","0.614","0.614" +"GO:0034641","cellular nitrogen compound metabolic pro...",58,10,12.6,192,"0.881","0.618","0.618" +"GO:0044087","regulation of cellular component biogene...",6,2,1.3,49,"0.387","0.619","0.619" +"GO:0009891","positive regulation of biosynthetic proc...",6,0,1.3,288,"1.000","0.619","0.619" +"GO:0010557","positive regulation of macromolecule bio...",6,0,1.3,289,"1.000","0.619","0.619" +"GO:0031328","positive regulation of cellular biosynth...",6,0,1.3,290,"1.000","0.619","0.619" +"GO:0045893","positive regulation of transcription, DN...",6,0,1.3,291,"1.000","0.619","0.619" +"GO:0045935","positive regulation of nucleobase-contai...",6,0,1.3,292,"1.000","0.619","0.619" +"GO:0045944","positive regulation of transcription by ...",6,0,1.3,293,"1.000","0.619","0.619" +"GO:0051254","positive regulation of RNA metabolic pro...",6,0,1.3,294,"1.000","0.619","0.619" +"GO:1902680","positive regulation of RNA biosynthetic ...",6,0,1.3,295,"1.000","0.619","0.619" +"GO:1903508","positive regulation of nucleic acid-temp...",6,0,1.3,296,"1.000","0.619","0.619" +"GO:0009894","regulation of catabolic process",7,1,1.52,173,"0.825","0.619","0.619" +"GO:0002376","immune system process",5,1,1.09,139,"0.710","0.619","0.619" +"GO:0009058","biosynthetic process",49,6,10.64,217,"0.984","0.624","0.624" +"GO:0034645","cellular macromolecule biosynthetic proc...",35,2,7.6,234,"0.999","0.624","0.624" +"GO:0010638","positive regulation of organelle organiz...",3,0,0.65,297,"1.000","0.625","0.625" +"GO:0016236","macroautophagy",3,0,0.65,298,"1.000","0.625","0.625" +"GO:0050793","regulation of developmental process",11,1,2.39,204,"0.938","0.628","0.628" +"GO:0051726","regulation of cell cycle",6,1,1.3,157,"0.775","0.634","0.634" +"GO:0070887","cellular response to chemical stimulus",6,0,1.3,299,"1.000","0.634","0.634" +"GO:0007267","cell-cell signaling",3,1,0.65,87,"0.522","0.636","0.636" +"GO:0032504","multicellular organism reproduction",3,1,0.65,88,"0.522","0.636","0.636" +"GO:0048609","multicellular organismal reproductive pr...",3,1,0.65,89,"0.522","0.636","0.636" +"GO:1901137","carbohydrate derivative biosynthetic pro...",3,0,0.65,300,"1.000","0.636","0.636" +"GO:1901576","organic substance biosynthetic process",48,5,10.42,224,"0.994","0.640","0.640" +"GO:0006725","cellular aromatic compound metabolic pro...",49,7,10.64,209,"0.955","0.644","0.644" +"GO:0042592","homeostatic process",10,2,2.17,127,"0.681","0.644","0.644" +"GO:0051239","regulation of multicellular organismal p...",9,1,1.95,197,"0.895","0.649","0.649" +"GO:0010506","regulation of autophagy",3,0,0.65,301,"1.000","0.657","0.657" +"GO:0048523","negative regulation of cellular process",16,3,3.47,144,"0.719","0.660","0.660" +"GO:0031329","regulation of cellular catabolic process",6,0,1.3,302,"1.000","0.664","0.664" +"GO:2000026","regulation of multicellular organismal d...",7,0,1.52,303,"1.000","0.666","0.666" +"GO:0006643","membrane lipid metabolic process",3,0,0.65,304,"1.000","0.668","0.668" +"GO:0097164","ammonium ion metabolic process",3,0,0.65,305,"1.000","0.668","0.668" +"GO:0055114","oxidation-reduction process",7,1,1.52,174,"0.825","0.668","0.668" +"GO:0051179","localization",64,14,13.9,100,"0.554","0.673","0.673" +"GO:0018130","heterocycle biosynthetic process",33,2,7.17,232,"0.998","0.673","0.673" +"GO:0048584","positive regulation of response to stimu...",3,0,0.65,306,"1.000","0.678","0.678" +"GO:0008610","lipid biosynthetic process",6,1,1.3,158,"0.775","0.679","0.679" +"GO:0065008","regulation of biological quality",15,2,3.26,191,"0.879","0.680","0.680" +"GO:1901565","organonitrogen compound catabolic proces...",7,2,1.52,60,"0.472","0.684","0.684" +"GO:0032269","negative regulation of cellular protein ...",4,1,0.87,116,"0.628","0.686","0.686" +"GO:0051248","negative regulation of protein metabolic...",4,1,0.87,117,"0.628","0.686","0.686" +"GO:0098657","import into cell",4,1,0.87,118,"0.628","0.686","0.686" +"GO:0009064","glutamine family amino acid metabolic pr...",3,0,0.65,307,"1.000","0.689","0.689" +"GO:0044249","cellular biosynthetic process",45,4,9.77,230,"0.997","0.689","0.689" +"GO:0019438","aromatic compound biosynthetic process",32,2,6.95,231,"0.998","0.690","0.690" +"GO:0065007","biological regulation",77,16,16.72,124,"0.665","0.692","0.692" +"GO:0044282","small molecule catabolic process",4,1,0.87,119,"0.628","0.699","0.699" +"GO:1901615","organic hydroxy compound metabolic proce...",5,1,1.09,140,"0.710","0.699","0.699" +"GO:0044283","small molecule biosynthetic process",5,0,1.09,308,"1.000","0.699","0.699" +"GO:0032259","methylation",3,0,0.65,309,"1.000","0.699","0.699" +"GO:0006508","proteolysis",8,2,1.74,96,"0.550","0.699","0.699" +"GO:0034654","nucleobase-containing compound biosynthe...",29,1,6.3,239,"1.000","0.705","0.705" +"GO:0006914","autophagy",5,0,1.09,310,"1.000","0.712","0.712" +"GO:0061919","process utilizing autophagic mechanism",5,0,1.09,311,"1.000","0.712","0.712" +"GO:0090407","organophosphate biosynthetic process",3,0,0.65,312,"1.000","0.720","0.720" +"GO:0030030","cell projection organization",5,0,1.09,313,"1.000","0.720","0.720" +"GO:0048666","neuron development",5,0,1.09,314,"1.000","0.720","0.720" +"GO:0120036","plasma membrane bounded cell projection ...",5,0,1.09,315,"1.000","0.720","0.720" +"GO:0033036","macromolecule localization",18,5,3.91,39,"0.347","0.721","0.721" +"GO:0051270","regulation of cellular component movemen...",4,1,0.87,120,"0.628","0.723","0.723" +"GO:0043043","peptide biosynthetic process",7,2,1.52,61,"0.472","0.723","0.723" +"GO:0022414","reproductive process",7,1,1.52,175,"0.825","0.726","0.726" +"GO:0008283","cell proliferation",4,0,0.87,316,"1.000","0.728","0.728" +"GO:0009895","negative regulation of catabolic process",4,0,0.87,317,"1.000","0.728","0.728" +"GO:0031330","negative regulation of cellular cataboli...",4,0,0.87,318,"1.000","0.728","0.728" +"GO:0046903","secretion",3,0,0.65,319,"1.000","0.730","0.730" +"GO:0006810","transport",57,12,12.38,107,"0.626","0.732","0.732" +"GO:0050789","regulation of biological process",73,15,15.85,129,"0.683","0.735","0.735" +"GO:0050790","regulation of catalytic activity",5,0,1.09,320,"1.000","0.739","0.739" +"GO:0051276","chromosome organization",5,0,1.09,321,"1.000","0.739","0.739" +"GO:1901135","carbohydrate derivative metabolic proces...",6,0,1.3,322,"1.000","0.753","0.753" +"GO:0032501","multicellular organismal process",28,5,6.08,161,"0.779","0.755","0.755" +"GO:0000902","cell morphogenesis",4,0,0.87,323,"1.000","0.758","0.758" +"GO:0000904","cell morphogenesis involved in different...",4,0,0.87,324,"1.000","0.758","0.758" +"GO:0001654","eye development",4,0,0.87,325,"1.000","0.758","0.758" +"GO:0007423","sensory organ development",4,0,0.87,326,"1.000","0.758","0.758" +"GO:0043010","camera-type eye development",4,0,0.87,327,"1.000","0.758","0.758" +"GO:0045596","negative regulation of cell differentiat...",4,0,0.87,328,"1.000","0.758","0.758" +"GO:0048880","sensory system development",4,0,0.87,329,"1.000","0.758","0.758" +"GO:0051093","negative regulation of developmental pro...",4,0,0.87,330,"1.000","0.758","0.758" +"GO:0060041","retina development in camera-type eye",4,0,0.87,331,"1.000","0.758","0.758" +"GO:0060284","regulation of cell development",4,0,0.87,332,"1.000","0.758","0.758" +"GO:0150063","visual system development",4,0,0.87,333,"1.000","0.758","0.758" +"GO:0060322","head development",8,0,1.74,334,"1.000","0.758","0.758" +"GO:0006575","cellular modified amino acid metabolic p...",3,1,0.65,90,"0.522","0.760","0.760" +"GO:0006520","cellular amino acid metabolic process",5,0,1.09,335,"1.000","0.765","0.765" +"GO:0050794","regulation of cellular process",69,13,14.98,164,"0.815","0.770","0.770" +"GO:0044271","cellular nitrogen compound biosynthetic ...",40,4,8.69,223,"0.991","0.770","0.770" +"GO:0014070","response to organic cyclic compound",5,0,1.09,336,"1.000","0.773","0.773" +"GO:0033993","response to lipid",5,0,1.09,337,"1.000","0.773","0.773" +"GO:0071840","cellular component organization or bioge...",26,4,5.65,189,"0.865","0.775","0.775" +"GO:0007049","cell cycle",8,1,1.74,184,"0.865","0.779","0.779" +"GO:0043603","cellular amide metabolic process",13,3,2.82,102,"0.566","0.780","0.780" +"GO:0033554","cellular response to stress",8,1,1.74,185,"0.865","0.783","0.783" +"GO:0051336","regulation of hydrolase activity",4,0,0.87,338,"1.000","0.786","0.786" +"GO:0015672","monovalent inorganic cation transport",8,2,1.74,97,"0.550","0.787","0.787" +"GO:0010608","posttranscriptional regulation of gene e...",3,1,0.65,91,"0.522","0.789","0.789" +"GO:0044265","cellular macromolecule catabolic process",3,1,0.65,92,"0.522","0.789","0.789" +"GO:0042127","regulation of cell proliferation",3,0,0.65,339,"1.000","0.789","0.789" +"GO:0050673","epithelial cell proliferation",3,0,0.65,340,"1.000","0.789","0.789" +"GO:0019725","cellular homeostasis",4,1,0.87,121,"0.628","0.797","0.797" +"GO:0045454","cell redox homeostasis",4,1,0.87,122,"0.628","0.797","0.797" +"GO:0016043","cellular component organization",24,3,5.21,203,"0.932","0.797","0.797" +"GO:0034220","ion transmembrane transport",10,2,2.17,128,"0.681","0.803","0.803" +"GO:0043604","amide biosynthetic process",8,2,1.74,98,"0.550","0.806","0.806" +"GO:0044085","cellular component biogenesis",8,2,1.74,99,"0.550","0.806","0.806" +"GO:0051234","establishment of localization",60,13,13.03,103,"0.573","0.806","0.806" +"GO:0051186","cofactor metabolic process",6,1,1.3,159,"0.775","0.808","0.808" +"GO:0017144","drug metabolic process",4,0,0.87,341,"1.000","0.808","0.808" +"GO:0030001","metal ion transport",9,2,1.95,106,"0.619","0.809","0.809" +"GO:0044281","small molecule metabolic process",16,3,3.47,145,"0.719","0.816","0.816" +"GO:0051240","positive regulation of multicellular org...",5,1,1.09,141,"0.710","0.819","0.819" +"GO:0009887","animal organ morphogenesis",4,0,0.87,342,"1.000","0.824","0.824" +"GO:0051188","cofactor biosynthetic process",4,1,0.87,123,"0.628","0.829","0.829" +"GO:0055085","transmembrane transport",27,4,5.86,193,"0.886","0.834","0.834" +"GO:0048863","stem cell differentiation",3,0,0.65,343,"1.000","0.836","0.836" +"GO:0006732","coenzyme metabolic process",5,0,1.09,344,"1.000","0.838","0.838" +"GO:0048731","system development",19,2,4.13,207,"0.949","0.846","0.846" +"GO:0006974","cellular response to DNA damage stimulus",5,0,1.09,345,"1.000","0.847","0.847" +"GO:0019439","aromatic compound catabolic process",3,0,0.65,346,"1.000","0.853","0.853" +"GO:0044270","cellular nitrogen compound catabolic pro...",3,0,0.65,347,"1.000","0.853","0.853" +"GO:0046700","heterocycle catabolic process",3,0,0.65,348,"1.000","0.853","0.853" +"GO:1901361","organic cyclic compound catabolic proces...",3,0,0.65,349,"1.000","0.853","0.853" +"GO:0035556","intracellular signal transduction",8,1,1.74,186,"0.865","0.861","0.861" +"GO:0055086","nucleobase-containing small molecule met...",4,0,0.87,350,"1.000","0.869","0.869" +"GO:0010033","response to organic substance",9,1,1.95,198,"0.895","0.870","0.870" +"GO:0007610","behavior",4,0,0.87,351,"1.000","0.873","0.873" +"GO:0032502","developmental process",31,5,6.73,182,"0.856","0.875","0.875" +"GO:1901566","organonitrogen compound biosynthetic pro...",15,3,3.26,125,"0.673","0.877","0.877" +"GO:0048468","cell development",10,1,2.17,199,"0.919","0.877","0.877" +"GO:0007417","central nervous system development",7,0,1.52,352,"1.000","0.882","0.882" +"GO:0007420","brain development",7,0,1.52,353,"1.000","0.882","0.882" +"GO:0009605","response to external stimulus",7,1,1.52,176,"0.825","0.884","0.884" +"GO:0032879","regulation of localization",7,1,1.52,177,"0.825","0.884","0.884" +"GO:0051094","positive regulation of developmental pro...",7,1,1.52,178,"0.825","0.884","0.884" +"GO:0007275","multicellular organism development",24,4,5.21,165,"0.815","0.888","0.888" +"GO:0048518","positive regulation of biological proces...",24,2,5.21,221,"0.984","0.888","0.888" +"GO:0006812","cation transport",16,3,3.47,146,"0.719","0.891","0.891" +"GO:0009108","coenzyme biosynthetic process",3,0,0.65,354,"1.000","0.900","0.900" +"GO:0006811","ion transport",27,6,5.86,101,"0.559","0.903","0.903" +"GO:0009719","response to endogenous stimulus",4,0,0.87,355,"1.000","0.908","0.908" +"GO:0009725","response to hormone",4,0,0.87,356,"1.000","0.908","0.908" +"GO:0032870","cellular response to hormone stimulus",4,0,0.87,357,"1.000","0.908","0.908" +"GO:0048545","response to steroid hormone",4,0,0.87,358,"1.000","0.908","0.908" +"GO:0071310","cellular response to organic substance",4,0,0.87,359,"1.000","0.908","0.908" +"GO:0071383","cellular response to steroid hormone sti...",4,0,0.87,360,"1.000","0.908","0.908" +"GO:0071396","cellular response to lipid",4,0,0.87,361,"1.000","0.908","0.908" +"GO:0071407","cellular response to organic cyclic comp...",4,0,0.87,362,"1.000","0.908","0.908" +"GO:0071495","cellular response to endogenous stimulus",4,0,0.87,363,"1.000","0.908","0.908" +"GO:0000003","reproduction",8,1,1.74,187,"0.865","0.909","0.909" +"GO:0048856","anatomical structure development",29,4,6.3,201,"0.920","0.915","0.915" +"GO:0065009","regulation of molecular function",6,0,1.3,364,"1.000","0.931","0.931" +"GO:0008219","cell death",6,0,1.3,365,"1.000","0.940","0.940" +"GO:0003008","system process",5,0,1.09,366,"1.000","0.950","0.950" +"GO:0010941","regulation of cell death",5,0,1.09,367,"1.000","0.950","0.950" +"GO:0012501","programmed cell death",5,0,1.09,368,"1.000","0.950","0.950" +"GO:0022603","regulation of anatomical structure morph...",5,0,1.09,369,"1.000","0.950","0.950" +"GO:0035239","tube morphogenesis",5,0,1.09,370,"1.000","0.950","0.950" +"GO:0035295","tube development",5,0,1.09,371,"1.000","0.950","0.950" +"GO:0042493","response to drug",4,0,0.87,372,"1.000","0.954","0.954" +"GO:0044093","positive regulation of molecular functio...",4,0,0.87,373,"1.000","0.954","0.954" +"GO:0006457","protein folding",4,0,0.87,374,"1.000","0.960","0.960" +"GO:0006915","apoptotic process",4,0,0.87,375,"1.000","0.960","0.960" +"GO:0042981","regulation of apoptotic process",4,0,0.87,376,"1.000","0.960","0.960" +"GO:0043067","regulation of programmed cell death",4,0,0.87,377,"1.000","0.960","0.960" +"GO:0048646","anatomical structure formation involved ...",4,0,0.87,378,"1.000","0.960","0.960" +"GO:0006950","response to stress",18,3,3.91,163,"0.796","0.964","0.964" +"GO:0009792","embryo development ending in birth or eg...",3,0,0.65,379,"1.000","0.966","0.966" +"GO:0030029","actin filament-based process",3,0,0.65,380,"1.000","0.966","0.966" +"GO:0051049","regulation of transport",3,0,0.65,381,"1.000","0.966","0.966" +"GO:0098655","cation transmembrane transport",3,0,0.65,382,"1.000","0.966","0.966" +"GO:0098660","inorganic ion transmembrane transport",3,0,0.65,383,"1.000","0.966","0.966" +"GO:0001568","blood vessel development",3,0,0.65,384,"1.000","0.970","0.970" +"GO:0001944","vasculature development",3,0,0.65,385,"1.000","0.970","0.970" +"GO:0048514","blood vessel morphogenesis",3,0,0.65,386,"1.000","0.970","0.970" +"GO:0060548","negative regulation of cell death",3,0,0.65,387,"1.000","0.970","0.970" +"GO:0072358","cardiovascular system development",3,0,0.65,388,"1.000","0.970","0.970" +"GO:0072359","circulatory system development",3,0,0.65,389,"1.000","0.970","0.970" +"GO:0006082","organic acid metabolic process",8,0,1.74,390,"1.000","0.978","0.978" +"GO:0019752","carboxylic acid metabolic process",8,0,1.74,391,"1.000","0.978","0.978" +"GO:0043436","oxoacid metabolic process",8,0,1.74,392,"1.000","0.978","0.978" +"GO:0006412","translation",6,1,1.3,160,"0.775","0.989","0.989" +"GO:0006281","DNA repair",4,0,0.87,393,"1.000","0.993","0.993" +"GO:0022607","cellular component assembly",5,0,1.09,394,"1.000","0.993","0.993" +"GO:0043933","protein-containing complex subunit organ...",3,0,0.65,395,"1.000","0.996","0.996" +"GO:0065003","protein-containing complex assembly",3,0,0.65,396,"1.000","0.996","0.996" +"GO:0008150","biological_process",198,43,43,397,"1.000","1.000","1.000" +"GO:0009653","anatomical structure morphogenesis",14,0,3.04,398,"1.000","1.000","1.000" diff --git a/GO_enrichment_microbiome_output/contrast_postlaying_emerging_upregulated.csv b/GO_enrichment_microbiome_output/contrast_postlaying_emerging_upregulated.csv index c9c77f4..a3ded58 100644 --- a/GO_enrichment_microbiome_output/contrast_postlaying_emerging_upregulated.csv +++ b/GO_enrichment_microbiome_output/contrast_postlaying_emerging_upregulated.csv @@ -4,3 +4,607 @@ "GO:0017144","drug metabolic process",5,3,0.87,4,"0.0381","0.0122","0.0122" "GO:1901361","organic cyclic compound catabolic proces...",7,3,1.22,26,"0.1033","0.0222","0.0222" "GO:0009166","nucleotide catabolic process",4,2,0.7,29,"0.1409","0.0300","0.0300" +"GO:0034404","nucleobase-containing small molecule bio...",4,2,0.7,30,"0.1409","0.0300","0.0300" +"GO:1901292","nucleoside phosphate catabolic process",4,2,0.7,31,"0.1409","0.0300","0.0300" +"GO:1901615","organic hydroxy compound metabolic proce...",3,2,0.52,18,"0.0791","0.0340","0.0340" +"GO:0019439","aromatic compound catabolic process",6,3,1.04,10,"0.0671","0.0521","0.0521" +"GO:0034655","nucleobase-containing compound catabolic...",6,3,1.04,11,"0.0671","0.0521","0.0521" +"GO:0044270","cellular nitrogen compound catabolic pro...",6,3,1.04,12,"0.0671","0.0521","0.0521" +"GO:0046700","heterocycle catabolic process",6,3,1.04,13,"0.0671","0.0521","0.0521" +"GO:0006091","generation of precursor metabolites and ...",3,2,0.52,19,"0.0791","0.0564","0.0564" +"GO:0006694","steroid biosynthetic process",3,1,0.52,100,"0.4383","0.0703","0.0703" +"GO:0008202","steroid metabolic process",3,1,0.52,101,"0.4383","0.0703","0.0703" +"GO:0044249","cellular biosynthetic process",48,13,8.36,6,"0.0414","0.0784","0.0784" +"GO:0051726","regulation of cell cycle",6,2,1.04,62,"0.2805","0.0789","0.0789" +"GO:0009056","catabolic process",16,6,2.79,5,"0.0396","0.0844","0.0844" +"GO:0044248","cellular catabolic process",14,6,2.44,3,"0.0196","0.0873","0.0873" +"GO:1901575","organic substance catabolic process",14,5,2.44,16,"0.0741","0.0873","0.0873" +"GO:0010564","regulation of cell cycle process",3,1,0.52,102,"0.4383","0.0962","0.0962" +"GO:1901576","organic substance biosynthetic process",49,13,8.53,8,"0.0490","0.0988","0.0988" +"GO:0005975","carbohydrate metabolic process",8,2,1.39,91,"0.4200","0.1025","0.1025" +"GO:0006081","cellular aldehyde metabolic process",3,1,0.52,103,"0.4383","0.1063","0.1063" +"GO:0006260","DNA replication",3,1,0.52,104,"0.4383","0.1135","0.1135" +"GO:0071103","DNA conformation change",3,0,0.52,384,"1.0000","0.1135","0.1135" +"GO:0006753","nucleoside phosphate metabolic process",5,2,0.87,45,"0.2094","0.1189","0.1189" +"GO:0009117","nucleotide metabolic process",5,2,0.87,46,"0.2094","0.1189","0.1189" +"GO:0046434","organophosphate catabolic process",5,2,0.87,47,"0.2094","0.1189","0.1189" +"GO:0007010","cytoskeleton organization",10,4,1.74,17,"0.0752","0.1404","0.1404" +"GO:0032787","monocarboxylic acid metabolic process",3,2,0.52,20,"0.0791","0.1445","0.1445" +"GO:0006352","DNA-templated transcription, initiation",4,2,0.7,32,"0.1409","0.1559","0.1559" +"GO:0007346","regulation of mitotic cell cycle",5,1,0.87,196,"0.6194","0.1638","0.1638" +"GO:0016192","vesicle-mediated transport",14,4,2.44,52,"0.2111","0.1652","0.1652" +"GO:0051640","organelle localization",3,1,0.52,105,"0.4383","0.1746","0.1746" +"GO:0006793","phosphorus metabolic process",45,10,7.83,56,"0.2280","0.1769","0.1769" +"GO:0006796","phosphate-containing compound metabolic ...",45,10,7.83,57,"0.2280","0.1769","0.1769" +"GO:0071704","organic substance metabolic process",128,27,22.29,9,"0.0654","0.1933","0.1933" +"GO:0006508","proteolysis",12,2,2.09,237,"0.6516","0.2128","0.2128" +"GO:0006869","lipid transport",3,2,0.52,21,"0.0791","0.2226","0.2226" +"GO:0010876","lipid localization",3,2,0.52,22,"0.0791","0.2226","0.2226" +"GO:0051301","cell division",4,2,0.7,33,"0.1409","0.2311","0.2311" +"GO:0008152","metabolic process",148,30,25.77,23,"0.0801","0.1757","0.2346" +"GO:0008610","lipid biosynthetic process",8,2,1.39,92,"0.4200","0.2581","0.2581" +"GO:1901360","organic cyclic compound metabolic proces...",51,13,8.88,14,"0.0673","0.2653","0.2653" +"GO:1901135","carbohydrate derivative metabolic proces...",8,2,1.39,93,"0.4200","0.2691","0.2691" +"GO:0006139","nucleobase-containing compound metabolic...",48,12,8.36,24,"0.0913","0.2758","0.2758" +"GO:0046483","heterocycle metabolic process",48,12,8.36,25,"0.0913","0.2758","0.2758" +"GO:0045454","cell redox homeostasis",4,0,0.7,385,"1.0000","0.2764","0.2764" +"GO:0006082","organic acid metabolic process",4,2,0.7,34,"0.1409","0.2764","0.2764" +"GO:0019752","carboxylic acid metabolic process",4,2,0.7,35,"0.1409","0.2764","0.2764" +"GO:0043436","oxoacid metabolic process",4,2,0.7,36,"0.1409","0.2764","0.2764" +"GO:0055086","nucleobase-containing small molecule met...",6,2,1.04,63,"0.2805","0.2764","0.2764" +"GO:0016310","phosphorylation",30,7,5.22,60,"0.2471","0.2823","0.2823" +"GO:0009987","cellular process",167,32,29.08,43,"0.1636","0.2392","0.2847" +"GO:0051641","cellular localization",18,4,3.13,86,"0.3846","0.2850","0.2850" +"GO:0006897","endocytosis",6,2,1.04,64,"0.2805","0.2897","0.2897" +"GO:0098657","import into cell",6,2,1.04,65,"0.2805","0.2897","0.2897" +"GO:0009725","response to hormone",4,1,0.7,143,"0.5374","0.3010","0.3010" +"GO:0044237","cellular metabolic process",119,26,20.72,7,"0.0448","0.3135","0.3135" +"GO:0006470","protein dephosphorylation",4,1,0.7,144,"0.5374","0.3181","0.3181" +"GO:0006725","cellular aromatic compound metabolic pro...",49,12,8.53,27,"0.1050","0.3222","0.3222" +"GO:0044262","cellular carbohydrate metabolic process",4,1,0.7,145,"0.5374","0.3268","0.3268" +"GO:0007420","brain development",8,1,1.39,314,"0.7893","0.3288","0.3288" +"GO:0060322","head development",8,1,1.39,315,"0.7893","0.3288","0.3288" +"GO:0007186","G protein-coupled receptor signaling pat...",8,2,1.39,94,"0.4200","0.3415","0.3415" +"GO:0034641","cellular nitrogen compound metabolic pro...",57,13,9.92,41,"0.1489","0.3514","0.3514" +"GO:0043412","macromolecule modification",44,9,7.66,79,"0.3457","0.3538","0.3538" +"GO:0043543","protein acylation",3,1,0.52,106,"0.4383","0.3558","0.3558" +"GO:0048513","animal organ development",19,3,3.31,245,"0.6782","0.3651","0.3651" +"GO:0044238","primary metabolic process",123,25,21.42,28,"0.1371","0.3714","0.3714" +"GO:0000226","microtubule cytoskeleton organization",5,2,0.87,48,"0.2094","0.3725","0.3725" +"GO:0009057","macromolecule catabolic process",6,2,1.04,66,"0.2805","0.3771","0.3771" +"GO:0044265","cellular macromolecule catabolic process",6,2,1.04,67,"0.2805","0.3771","0.3771" +"GO:1901566","organonitrogen compound biosynthetic pro...",8,3,1.39,39,"0.1456","0.3813","0.3813" +"GO:0006468","protein phosphorylation",27,6,4.7,77,"0.3198","0.3890","0.3890" +"GO:0007017","microtubule-based process",10,3,1.74,59,"0.2429","0.3947","0.3947" +"GO:0006996","organelle organization",24,4,4.18,236,"0.6335","0.3978","0.3978" +"GO:0051235","maintenance of location",4,2,0.7,37,"0.1409","0.4111","0.4111" +"GO:0006396","RNA processing",6,2,1.04,68,"0.2805","0.4129","0.4129" +"GO:0010243","response to organonitrogen compound",3,1,0.52,107,"0.4383","0.4137","0.4137" +"GO:1901698","response to nitrogen compound",3,1,0.52,108,"0.4383","0.4137","0.4137" +"GO:0010817","regulation of hormone levels",3,0,0.52,386,"1.0000","0.4137","0.4137" +"GO:0019932","second-messenger-mediated signaling",3,0,0.52,387,"1.0000","0.4252","0.4252" +"GO:0031929","TOR signaling",3,0,0.52,388,"1.0000","0.4252","0.4252" +"GO:0034645","cellular macromolecule biosynthetic proc...",38,9,6.62,44,"0.1860","0.4294","0.4294" +"GO:0006259","DNA metabolic process",8,1,1.39,316,"0.7893","0.4375","0.4375" +"GO:0006464","cellular protein modification process",43,8,7.49,137,"0.4854","0.4400","0.4400" +"GO:0036211","protein modification process",43,8,7.49,138,"0.4854","0.4400","0.4400" +"GO:0032990","cell part morphogenesis",6,2,1.04,69,"0.2805","0.4417","0.4417" +"GO:0048812","neuron projection morphogenesis",6,2,1.04,70,"0.2805","0.4417","0.4417" +"GO:0048858","cell projection morphogenesis",6,2,1.04,71,"0.2805","0.4417","0.4417" +"GO:0050808","synapse organization",6,2,1.04,72,"0.2805","0.4417","0.4417" +"GO:0120039","plasma membrane bounded cell projection ...",6,2,1.04,73,"0.2805","0.4417","0.4417" +"GO:0006469","negative regulation of protein kinase ac...",4,1,0.7,146,"0.5374","0.4514","0.4514" +"GO:0033673","negative regulation of kinase activity",4,1,0.7,147,"0.5374","0.4514","0.4514" +"GO:0051348","negative regulation of transferase activ...",4,1,0.7,148,"0.5374","0.4514","0.4514" +"GO:0006807","nitrogen compound metabolic process",107,22,18.63,42,"0.1556","0.4528","0.4528" +"GO:0006511","ubiquitin-dependent protein catabolic pr...",4,1,0.7,149,"0.5374","0.4721","0.4721" +"GO:0019941","modification-dependent protein catabolic...",4,1,0.7,150,"0.5374","0.4721","0.4721" +"GO:0030163","protein catabolic process",4,1,0.7,151,"0.5374","0.4721","0.4721" +"GO:0043632","modification-dependent macromolecule cat...",4,1,0.7,152,"0.5374","0.4721","0.4721" +"GO:0044257","cellular protein catabolic process",4,1,0.7,153,"0.5374","0.4721","0.4721" +"GO:0051603","proteolysis involved in cellular protein...",4,1,0.7,154,"0.5374","0.4721","0.4721" +"GO:0032101","regulation of response to external stimu...",3,0,0.52,389,"1.0000","0.4784","0.4784" +"GO:0032103","positive regulation of response to exter...",3,0,0.52,390,"1.0000","0.4784","0.4784" +"GO:0044057","regulation of system process",3,0,0.52,391,"1.0000","0.4784","0.4784" +"GO:0046907","intracellular transport",9,2,1.57,132,"0.4850","0.4797","0.4797" +"GO:0070887","cellular response to chemical stimulus",11,2,1.92,192,"0.6011","0.4878","0.4878" +"GO:0006886","intracellular protein transport",5,0,0.87,392,"1.0000","0.4918","0.4918" +"GO:0009059","macromolecule biosynthetic process",39,9,6.79,50,"0.2099","0.4921","0.4921" +"GO:0044271","cellular nitrogen compound biosynthetic ...",39,9,6.79,51,"0.2099","0.4921","0.4921" +"GO:0051704","multi-organism process",11,2,1.92,193,"0.6011","0.4927","0.4927" +"GO:1901362","organic cyclic compound biosynthetic pro...",36,9,6.27,38,"0.1427","0.4970","0.4970" +"GO:0006325","chromatin organization",6,1,1.04,247,"0.6872","0.5014","0.5014" +"GO:1901564","organonitrogen compound metabolic proces...",67,12,11.67,142,"0.5185","0.5036","0.5036" +"GO:0001654","eye development",4,1,0.7,155,"0.5374","0.5036","0.5036" +"GO:0048880","sensory system development",4,1,0.7,156,"0.5374","0.5036","0.5036" +"GO:0150063","visual system development",4,1,0.7,157,"0.5374","0.5036","0.5036" +"GO:0040007","growth",5,1,0.87,197,"0.6194","0.5133","0.5133" +"GO:0048589","developmental growth",5,1,0.87,198,"0.6194","0.5133","0.5133" +"GO:0009058","biosynthetic process",51,13,8.88,15,"0.0673","0.1501","0.5154" +"GO:0072521","purine-containing compound metabolic pro...",3,1,0.52,109,"0.4383","0.5304","0.5304" +"GO:0009116","nucleoside metabolic process",3,0,0.52,393,"1.0000","0.5304","0.5304" +"GO:1901657","glycosyl compound metabolic process",3,0,0.52,394,"1.0000","0.5304","0.5304" +"GO:0044281","small molecule metabolic process",17,7,2.96,2,"0.0146","0.0620","0.5384" +"GO:0010467","gene expression",42,9,7.31,74,"0.2886","0.5385","0.5385" +"GO:0090304","nucleic acid metabolic process",42,9,7.31,75,"0.2886","0.5385","0.5385" +"GO:0007275","multicellular organism development",28,4,4.88,309,"0.7611","0.5394","0.5394" +"GO:0006813","potassium ion transport",3,0,0.52,395,"1.0000","0.5397","0.5397" +"GO:1901700","response to oxygen-containing compound",7,2,1.22,81,"0.3514","0.5437","0.5437" +"GO:0090407","organophosphate biosynthetic process",4,1,0.7,158,"0.5374","0.5466","0.5466" +"GO:0030900","forebrain development",3,0,0.52,396,"1.0000","0.5491","0.5491" +"GO:0006397","mRNA processing",4,1,0.7,159,"0.5374","0.5574","0.5574" +"GO:0016071","mRNA metabolic process",4,1,0.7,160,"0.5374","0.5574","0.5574" +"GO:0006518","peptide metabolic process",6,1,1.04,248,"0.6872","0.5632","0.5632" +"GO:0015711","organic anion transport",3,1,0.52,110,"0.4383","0.5647","0.5647" +"GO:0048731","system development",26,4,4.53,274,"0.7018","0.5670","0.5670" +"GO:0001933","negative regulation of protein phosphory...",6,1,1.04,249,"0.6872","0.5677","0.5677" +"GO:0042326","negative regulation of phosphorylation",6,1,1.04,250,"0.6872","0.5677","0.5677" +"GO:0006913","nucleocytoplasmic transport",4,0,0.7,397,"1.0000","0.5683","0.5683" +"GO:0051169","nuclear transport",4,0,0.7,398,"1.0000","0.5683","0.5683" +"GO:1901701","cellular response to oxygen-containing c...",5,2,0.87,49,"0.2094","0.5714","0.5714" +"GO:0051276","chromosome organization",9,1,1.57,337,"0.8273","0.5737","0.5737" +"GO:0072657","protein localization to membrane",3,0,0.52,399,"1.0000","0.5772","0.5772" +"GO:0043170","macromolecule metabolic process",100,19,17.41,80,"0.3486","0.5784","0.5784" +"GO:0006909","phagocytosis",3,1,0.52,111,"0.4383","0.5835","0.5835" +"GO:0009612","response to mechanical stimulus",3,1,0.52,112,"0.4383","0.5835","0.5835" +"GO:0035148","tube formation",3,1,0.52,113,"0.4383","0.5835","0.5835" +"GO:0043393","regulation of protein binding",3,1,0.52,114,"0.4383","0.5835","0.5835" +"GO:0051098","regulation of binding",3,1,0.52,115,"0.4383","0.5835","0.5835" +"GO:0060249","anatomical structure homeostasis",3,1,0.52,116,"0.4383","0.5835","0.5835" +"GO:0003006","developmental process involved in reprod...",5,1,0.87,199,"0.6194","0.5836","0.5836" +"GO:0019953","sexual reproduction",5,1,0.87,200,"0.6194","0.5836","0.5836" +"GO:0044703","multi-organism reproductive process",5,1,0.87,201,"0.6194","0.5836","0.5836" +"GO:0040008","regulation of growth",3,1,0.52,117,"0.4383","0.5867","0.5867" +"GO:0048638","regulation of developmental growth",3,1,0.52,118,"0.4383","0.5867","0.5867" +"GO:0007568","aging",3,0,0.52,400,"1.0000","0.5867","0.5867" +"GO:0030029","actin filament-based process",7,2,1.22,82,"0.3514","0.5871","0.5871" +"GO:0030036","actin cytoskeleton organization",7,2,1.22,83,"0.3514","0.5871","0.5871" +"GO:0016311","dephosphorylation",7,1,1.22,290,"0.7431","0.5871","0.5871" +"GO:0018130","heterocycle biosynthetic process",34,8,5.92,53,"0.2145","0.5939","0.5939" +"GO:0019438","aromatic compound biosynthetic process",34,8,5.92,54,"0.2145","0.5939","0.5939" +"GO:0034654","nucleobase-containing compound biosynthe...",34,8,5.92,55,"0.2145","0.5939","0.5939" +"GO:0000902","cell morphogenesis",8,2,1.39,95,"0.4200","0.6047","0.6047" +"GO:0031175","neuron projection development",8,2,1.39,96,"0.4200","0.6047","0.6047" +"GO:0032989","cellular component morphogenesis",8,2,1.39,97,"0.4200","0.6047","0.6047" +"GO:0005996","monosaccharide metabolic process",3,1,0.52,119,"0.4383","0.6055","0.6055" +"GO:0035556","intracellular signal transduction",16,1,2.79,383,"0.9584","0.6061","0.6061" +"GO:0044260","cellular macromolecule metabolic process",84,18,14.62,40,"0.1478","0.6062","0.6062" +"GO:0035239","tube morphogenesis",4,1,0.7,161,"0.5374","0.6120","0.6120" +"GO:0035295","tube development",4,1,0.7,162,"0.5374","0.6120","0.6120" +"GO:0048598","embryonic morphogenesis",4,0,0.7,401,"1.0000","0.6120","0.6120" +"GO:0048519","negative regulation of biological proces...",23,5,4,85,"0.3694","0.6135","0.6135" +"GO:0032502","developmental process",31,5,5.4,244,"0.6639","0.6158","0.6158" +"GO:0007049","cell cycle",11,3,1.92,76,"0.2952","0.0582","0.6189" +"GO:0015672","monovalent inorganic cation transport",8,1,1.39,317,"0.7893","0.6203","0.6203" +"GO:0043086","negative regulation of catalytic activit...",8,1,1.39,318,"0.7893","0.6203","0.6203" +"GO:0044092","negative regulation of molecular functio...",8,1,1.39,319,"0.7893","0.6203","0.6203" +"GO:0001932","regulation of protein phosphorylation",9,2,1.57,133,"0.4850","0.6234","0.6234" +"GO:0031400","negative regulation of protein modificat...",9,1,1.57,338,"0.8273","0.6234","0.6234" +"GO:0032269","negative regulation of cellular protein ...",9,1,1.57,339,"0.8273","0.6234","0.6234" +"GO:0051248","negative regulation of protein metabolic...",9,1,1.57,340,"0.8273","0.6234","0.6234" +"GO:0022008","neurogenesis",14,3,2.44,126,"0.4532","0.6271","0.6271" +"GO:0048699","generation of neurons",14,3,2.44,127,"0.4532","0.6271","0.6271" +"GO:0044267","cellular protein metabolic process",51,10,8.88,87,"0.3883","0.6349","0.6349" +"GO:0007423","sensory organ development",7,1,1.22,291,"0.7431","0.6453","0.6453" +"GO:0019725","cellular homeostasis",9,1,1.57,341,"0.8273","0.6455","0.6455" +"GO:0032501","multicellular organismal process",29,4,5.05,312,"0.7873","0.6461","0.6461" +"GO:0048856","anatomical structure development",29,4,5.05,313,"0.7873","0.6461","0.6461" +"GO:0022613","ribonucleoprotein complex biogenesis",3,0,0.52,402,"1.0000","0.6464","0.6464" +"GO:0031399","regulation of protein modification proce...",12,2,2.09,238,"0.6516","0.6474","0.6474" +"GO:0051173","positive regulation of nitrogen compound...",12,1,2.09,369,"0.9056","0.6474","0.6474" +"GO:0009636","response to toxic substance",4,1,0.7,163,"0.5374","0.6556","0.6556" +"GO:0010605","negative regulation of macromolecule met...",15,3,2.61,140,"0.5033","0.6571","0.6571" +"GO:0044087","regulation of cellular component biogene...",8,2,1.39,98,"0.4200","0.6669","0.6669" +"GO:0000278","mitotic cell cycle",8,2,1.39,99,"0.4200","0.0170","0.6674" +"GO:0043410","positive regulation of MAPK cascade",3,1,0.52,120,"0.4383","0.6683","0.6683" +"GO:0051093","negative regulation of developmental pro...",3,1,0.52,121,"0.4383","0.6683","0.6683" +"GO:0016070","RNA metabolic process",35,8,6.09,58,"0.2415","0.6687","0.6687" +"GO:0030030","cell projection organization",9,2,1.57,134,"0.4850","0.6693","0.6693" +"GO:0048666","neuron development",9,2,1.57,135,"0.4850","0.6693","0.6693" +"GO:0120036","plasma membrane bounded cell projection ...",9,2,1.57,136,"0.4850","0.6693","0.6693" +"GO:0051186","cofactor metabolic process",3,1,0.52,122,"0.4383","0.6869","0.6869" +"GO:0007417","central nervous system development",10,1,1.74,351,"0.8587","0.6869","0.6869" +"GO:0000165","MAPK cascade",4,1,0.7,164,"0.5374","0.6880","0.6880" +"GO:0007276","gamete generation",4,1,0.7,165,"0.5374","0.6880","0.6880" +"GO:0007281","germ cell development",4,1,0.7,166,"0.5374","0.6880","0.6880" +"GO:0007283","spermatogenesis",4,1,0.7,167,"0.5374","0.6880","0.6880" +"GO:0009611","response to wounding",4,1,0.7,168,"0.5374","0.6880","0.6880" +"GO:0022412","cellular process involved in reproductio...",4,1,0.7,169,"0.5374","0.6880","0.6880" +"GO:0023014","signal transduction by protein phosphory...",4,1,0.7,170,"0.5374","0.6880","0.6880" +"GO:0043408","regulation of MAPK cascade",4,1,0.7,171,"0.5374","0.6880","0.6880" +"GO:0048232","male gamete generation",4,1,0.7,172,"0.5374","0.6880","0.6880" +"GO:0007409","axonogenesis",4,1,0.7,173,"0.5374","0.6880","0.6880" +"GO:0098609","cell-cell adhesion",4,1,0.7,174,"0.5374","0.6880","0.6880" +"GO:0099173","postsynapse organization",4,1,0.7,175,"0.5374","0.6880","0.6880" +"GO:0034314","Arp2/3 complex-mediated actin nucleation",3,1,0.52,123,"0.4383","0.7023","0.7023" +"GO:0045010","actin nucleation",3,1,0.52,124,"0.4383","0.7023","0.7023" +"GO:0016569","covalent chromatin modification",3,0,0.52,403,"1.0000","0.7114","0.7114" +"GO:0016570","histone modification",3,0,0.52,404,"1.0000","0.7114","0.7114" +"GO:0010563","negative regulation of phosphorus metabo...",7,1,1.22,292,"0.7431","0.7168","0.7168" +"GO:0045936","negative regulation of phosphate metabol...",7,1,1.22,293,"0.7431","0.7168","0.7168" +"GO:0006814","sodium ion transport",3,1,0.52,125,"0.4383","0.7206","0.7206" +"GO:0019220","regulation of phosphate metabolic proces...",10,2,1.74,185,"0.5455","0.7244","0.7244" +"GO:0042325","regulation of phosphorylation",10,2,1.74,186,"0.5455","0.7244","0.7244" +"GO:0051174","regulation of phosphorus metabolic proce...",10,2,1.74,187,"0.5455","0.7244","0.7244" +"GO:0023052","signaling",38,6,6.62,266,"0.6905","0.7292","0.7292" +"GO:0009890","negative regulation of biosynthetic proc...",7,1,1.22,294,"0.7431","0.7308","0.7308" +"GO:0010558","negative regulation of macromolecule bio...",7,1,1.22,295,"0.7431","0.7308","0.7308" +"GO:0010629","negative regulation of gene expression",7,1,1.22,296,"0.7431","0.7308","0.7308" +"GO:0031327","negative regulation of cellular biosynth...",7,1,1.22,297,"0.7431","0.7308","0.7308" +"GO:0045934","negative regulation of nucleobase-contai...",7,1,1.22,298,"0.7431","0.7308","0.7308" +"GO:2000113","negative regulation of cellular macromol...",7,1,1.22,299,"0.7431","0.7308","0.7308" +"GO:0010038","response to metal ion",5,0,0.87,405,"1.0000","0.7311","0.7311" +"GO:0030154","cell differentiation",20,4,3.48,130,"0.4728","0.7339","0.7339" +"GO:0048869","cellular developmental process",20,4,3.48,131,"0.4728","0.7339","0.7339" +"GO:0006820","anion transport",5,1,0.87,202,"0.6194","0.7357","0.7357" +"GO:0022898","regulation of transmembrane transporter ...",3,0,0.52,406,"1.0000","0.7386","0.7386" +"GO:0032409","regulation of transporter activity",3,0,0.52,407,"1.0000","0.7386","0.7386" +"GO:0032412","regulation of ion transmembrane transpor...",3,0,0.52,408,"1.0000","0.7386","0.7386" +"GO:2001257","regulation of cation channel activity",3,0,0.52,409,"1.0000","0.7386","0.7386" +"GO:0010638","positive regulation of organelle organiz...",7,1,1.22,300,"0.7431","0.7446","0.7446" +"GO:0051716","cellular response to stimulus",48,9,8.36,129,"0.4648","0.7448","0.7448" +"GO:0006955","immune response",6,1,1.04,251,"0.6872","0.7485","0.7485" +"GO:0033036","macromolecule localization",17,4,2.96,78,"0.3400","0.7560","0.7560" +"GO:0000904","cell morphogenesis involved in different...",5,1,0.87,203,"0.6194","0.7588","0.7588" +"GO:0001775","cell activation",5,1,0.87,204,"0.6194","0.7588","0.7588" +"GO:0009628","response to abiotic stimulus",5,1,0.87,205,"0.6194","0.7588","0.7588" +"GO:0032504","multicellular organism reproduction",5,1,0.87,206,"0.6194","0.7588","0.7588" +"GO:0048609","multicellular organismal reproductive pr...",5,1,0.87,207,"0.6194","0.7588","0.7588" +"GO:0048667","cell morphogenesis involved in neuron di...",5,1,0.87,208,"0.6194","0.7588","0.7588" +"GO:0061564","axon development",5,1,0.87,209,"0.6194","0.7588","0.7588" +"GO:0010604","positive regulation of macromolecule met...",11,1,1.92,360,"0.8844","0.7590","0.7590" +"GO:0009892","negative regulation of metabolic process",16,3,2.79,191,"0.5512","0.7598","0.7598" +"GO:0009893","positive regulation of metabolic process",13,1,2.26,375,"0.9230","0.7634","0.7634" +"GO:0032268","regulation of cellular protein metabolic...",13,2,2.26,271,"0.6972","0.7634","0.7634" +"GO:0043549","regulation of kinase activity",6,1,1.04,252,"0.6872","0.7693","0.7693" +"GO:0045859","regulation of protein kinase activity",6,1,1.04,253,"0.6872","0.7693","0.7693" +"GO:1901565","organonitrogen compound catabolic proces...",6,1,1.04,254,"0.6872","0.7775","0.7775" +"GO:0007018","microtubule-based movement",4,1,0.7,176,"0.5374","0.7812","0.7812" +"GO:0050803","regulation of synapse structure or activ...",4,1,0.7,177,"0.5374","0.7812","0.7812" +"GO:0050807","regulation of synapse organization",4,1,0.7,178,"0.5374","0.7812","0.7812" +"GO:0031401","positive regulation of protein modificat...",8,1,1.39,320,"0.7893","0.7858","0.7858" +"GO:0032270","positive regulation of cellular protein ...",8,1,1.39,321,"0.7893","0.7858","0.7858" +"GO:0051247","positive regulation of protein metabolic...",8,1,1.39,322,"0.7893","0.7858","0.7858" +"GO:0034613","cellular protein localization",9,1,1.57,342,"0.8273","0.7900","0.7900" +"GO:0070727","cellular macromolecule localization",9,1,1.57,343,"0.8273","0.7900","0.7900" +"GO:0019538","protein metabolic process",59,11,10.27,128,"0.4556","0.7907","0.7907" +"GO:0048584","positive regulation of response to stimu...",12,2,2.09,239,"0.6516","0.7945","0.7945" +"GO:0007165","signal transduction",37,6,6.44,241,"0.6617","0.7947","0.7947" +"GO:0006412","translation",5,1,0.87,210,"0.6194","0.7966","0.7966" +"GO:0043043","peptide biosynthetic process",5,1,0.87,211,"0.6194","0.7966","0.7966" +"GO:0043604","amide biosynthetic process",5,1,0.87,212,"0.6194","0.7966","0.7966" +"GO:0007154","cell communication",38,6,6.62,267,"0.6905","0.7968","0.7968" +"GO:1902533","positive regulation of intracellular sig...",7,1,1.22,301,"0.7431","0.7979","0.7979" +"GO:0060255","regulation of macromolecule metabolic pr...",38,7,6.62,141,"0.5079","0.8002","0.8002" +"GO:0071840","cellular component organization or bioge...",35,4,6.09,368,"0.9010","0.8005","0.8005" +"GO:0051129","negative regulation of cellular componen...",5,1,0.87,213,"0.6194","0.8052","0.8052" +"GO:0009891","positive regulation of biosynthetic proc...",5,0,0.87,410,"1.0000","0.8052","0.8052" +"GO:0019637","organophosphate metabolic process",14,2,2.44,283,"0.7378","0.8066","0.8066" +"GO:0065008","regulation of biological quality",26,5,4.53,139,"0.4870","0.8086","0.8086" +"GO:0000003","reproduction",6,1,1.04,255,"0.6872","0.8094","0.8094" +"GO:0022414","reproductive process",6,1,1.04,256,"0.6872","0.8094","0.8094" +"GO:0048518","positive regulation of biological proces...",26,3,4.53,358,"0.8710","0.8106","0.8106" +"GO:0043603","cellular amide metabolic process",7,1,1.22,302,"0.7431","0.8106","0.8106" +"GO:0030838","positive regulation of actin filament po...",4,1,0.7,179,"0.5374","0.8197","0.8197" +"GO:0031334","positive regulation of protein complex a...",4,1,0.7,180,"0.5374","0.8197","0.8197" +"GO:0032273","positive regulation of protein polymeriz...",4,1,0.7,181,"0.5374","0.8197","0.8197" +"GO:0051495","positive regulation of cytoskeleton orga...",4,1,0.7,182,"0.5374","0.8197","0.8197" +"GO:1902905","positive regulation of supramolecular fi...",4,1,0.7,183,"0.5374","0.8197","0.8197" +"GO:0003002","regionalization",3,0,0.52,411,"1.0000","0.8237","0.8237" +"GO:0007389","pattern specification process",3,0,0.52,412,"1.0000","0.8237","0.8237" +"GO:0007507","heart development",3,0,0.52,413,"1.0000","0.8237","0.8237" +"GO:0007600","sensory perception",3,0,0.52,414,"1.0000","0.8237","0.8237" +"GO:0006351","transcription, DNA-templated",29,6,5.05,88,"0.3911","0.8241","0.8241" +"GO:0032774","RNA biosynthetic process",29,6,5.05,89,"0.3911","0.8241","0.8241" +"GO:0097659","nucleic acid-templated transcription",29,6,5.05,90,"0.3911","0.8241","0.8241" +"GO:0008104","protein localization",14,2,2.44,284,"0.7378","0.8246","0.8246" +"GO:0061024","membrane organization",6,1,1.04,257,"0.6872","0.8285","0.8285" +"GO:0010033","response to organic substance",11,2,1.92,194,"0.6011","0.8344","0.8344" +"GO:0002376","immune system process",9,1,1.57,344,"0.8273","0.8360","0.8360" +"GO:0032879","regulation of localization",11,1,1.92,361,"0.8844","0.8371","0.8371" +"GO:0019222","regulation of metabolic process",39,7,6.79,184,"0.5403","0.8379","0.8379" +"GO:0014070","response to organic cyclic compound",4,0,0.7,415,"1.0000","0.8380","0.8380" +"GO:0006950","response to stress",16,2,2.79,329,"0.8057","0.8388","0.8388" +"GO:0016043","cellular component organization",34,4,5.92,365,"0.8867","0.8393","0.8393" +"GO:0050896","response to stimulus",58,9,10.1,282,"0.7354","0.8411","0.8411" +"GO:0031324","negative regulation of cellular metaboli...",14,2,2.44,285,"0.7378","0.8420","0.8420" +"GO:0051172","negative regulation of nitrogen compound...",14,2,2.44,286,"0.7378","0.8420","0.8420" +"GO:0030182","neuron differentiation",13,2,2.26,272,"0.6972","0.8456","0.8456" +"GO:0007155","cell adhesion",7,1,1.22,303,"0.7431","0.8471","0.8471" +"GO:0007610","behavior",7,1,1.22,304,"0.7431","0.8471","0.8471" +"GO:0022610","biological adhesion",7,1,1.22,305,"0.7431","0.8471","0.8471" +"GO:0051338","regulation of transferase activity",7,1,1.22,306,"0.7431","0.8471","0.8471" +"GO:0007399","nervous system development",20,3,3.48,275,"0.7145","0.8505","0.8505" +"GO:0001934","positive regulation of protein phosphory...",5,1,0.87,214,"0.6194","0.8542","0.8542" +"GO:0046578","regulation of Ras protein signal transdu...",5,1,0.87,215,"0.6194","0.8542","0.8542" +"GO:0051056","regulation of small GTPase mediated sign...",5,1,0.87,216,"0.6194","0.8542","0.8542" +"GO:0051246","regulation of protein metabolic process",14,2,2.44,287,"0.7378","0.8587","0.8587" +"GO:0051649","establishment of localization in cell",12,2,2.09,240,"0.6516","0.8591","0.8591" +"GO:0006952","defense response",4,0,0.7,416,"1.0000","0.8641","0.8641" +"GO:0009607","response to biotic stimulus",4,0,0.7,417,"1.0000","0.8641","0.8641" +"GO:0033993","response to lipid",4,0,0.7,418,"1.0000","0.8641","0.8641" +"GO:0043207","response to external biotic stimulus",4,0,0.7,419,"1.0000","0.8641","0.8641" +"GO:0051707","response to other organism",4,0,0.7,420,"1.0000","0.8641","0.8641" +"GO:0098542","defense response to other organism",4,0,0.7,421,"1.0000","0.8641","0.8641" +"GO:0006812","cation transport",15,1,2.61,380,"0.9489","0.8646","0.8646" +"GO:0006366","transcription by RNA polymerase II",10,1,1.74,352,"0.8587","0.8683","0.8683" +"GO:0007166","cell surface receptor signaling pathway",11,1,1.92,362,"0.8844","0.8702","0.8702" +"GO:0050794","regulation of cellular process",74,12,12.88,269,"0.6941","0.8724","0.8724" +"GO:0048878","chemical homeostasis",5,1,0.87,217,"0.6194","0.8731","0.8731" +"GO:0055082","cellular chemical homeostasis",5,1,0.87,218,"0.6194","0.8731","0.8731" +"GO:0033043","regulation of organelle organization",8,1,1.39,323,"0.7893","0.8761","0.8761" +"GO:0010628","positive regulation of gene expression",3,0,0.52,422,"1.0000","0.8787","0.8787" +"GO:0031396","regulation of protein ubiquitination",3,0,0.52,423,"1.0000","0.8787","0.8787" +"GO:0045893","positive regulation of transcription, DN...",3,0,0.52,424,"1.0000","0.8787","0.8787" +"GO:0045944","positive regulation of transcription by ...",3,0,0.52,425,"1.0000","0.8787","0.8787" +"GO:0051254","positive regulation of RNA metabolic pro...",3,0,0.52,426,"1.0000","0.8787","0.8787" +"GO:0071900","regulation of protein serine/threonine k...",3,0,0.52,427,"1.0000","0.8787","0.8787" +"GO:1902680","positive regulation of RNA biosynthetic ...",3,0,0.52,428,"1.0000","0.8787","0.8787" +"GO:1903320","regulation of protein modification by sm...",3,0,0.52,429,"1.0000","0.8787","0.8787" +"GO:1903508","positive regulation of nucleic acid-temp...",3,0,0.52,430,"1.0000","0.8787","0.8787" +"GO:0009967","positive regulation of signal transducti...",10,2,1.74,188,"0.5455","0.8788","0.8788" +"GO:0010647","positive regulation of cell communicatio...",10,2,1.74,189,"0.5455","0.8788","0.8788" +"GO:0023056","positive regulation of signaling",10,2,1.74,190,"0.5455","0.8788","0.8788" +"GO:0055114","oxidation-reduction process",13,2,2.26,273,"0.6972","0.8802","0.8802" +"GO:0032880","regulation of protein localization",4,0,0.7,431,"1.0000","0.8805","0.8805" +"GO:0032940","secretion by cell",4,0,0.7,432,"1.0000","0.8805","0.8805" +"GO:0051346","negative regulation of hydrolase activit...",4,0,0.7,433,"1.0000","0.8805","0.8805" +"GO:0006357","regulation of transcription by RNA polym...",8,0,1.39,434,"1.0000","0.8875","0.8875" +"GO:0048646","anatomical structure formation involved ...",10,1,1.74,353,"0.8587","0.8889","0.8889" +"GO:0030001","metal ion transport",14,1,2.44,377,"0.9372","0.8899","0.8899" +"GO:0007015","actin filament organization",5,1,0.87,219,"0.6194","0.8909","0.8909" +"GO:0008064","regulation of actin polymerization or de...",5,1,0.87,220,"0.6194","0.8909","0.8909" +"GO:0008154","actin polymerization or depolymerization",5,1,0.87,221,"0.6194","0.8909","0.8909" +"GO:0030041","actin filament polymerization",5,1,0.87,222,"0.6194","0.8909","0.8909" +"GO:0030832","regulation of actin filament length",5,1,0.87,223,"0.6194","0.8909","0.8909" +"GO:0030833","regulation of actin filament polymerizat...",5,1,0.87,224,"0.6194","0.8909","0.8909" +"GO:0032271","regulation of protein polymerization",5,1,0.87,225,"0.6194","0.8909","0.8909" +"GO:0032535","regulation of cellular component size",5,1,0.87,226,"0.6194","0.8909","0.8909" +"GO:0032956","regulation of actin cytoskeleton organiz...",5,1,0.87,227,"0.6194","0.8909","0.8909" +"GO:0032970","regulation of actin filament-based proce...",5,1,0.87,228,"0.6194","0.8909","0.8909" +"GO:0043254","regulation of protein complex assembly",5,1,0.87,229,"0.6194","0.8909","0.8909" +"GO:0044089","positive regulation of cellular componen...",5,1,0.87,230,"0.6194","0.8909","0.8909" +"GO:0051493","regulation of cytoskeleton organization",5,1,0.87,231,"0.6194","0.8909","0.8909" +"GO:0090066","regulation of anatomical structure size",5,1,0.87,232,"0.6194","0.8909","0.8909" +"GO:0110053","regulation of actin filament organizatio...",5,1,0.87,233,"0.6194","0.8909","0.8909" +"GO:1902903","regulation of supramolecular fiber organ...",5,1,0.87,234,"0.6194","0.8909","0.8909" +"GO:0009887","animal organ morphogenesis",7,0,1.22,435,"1.0000","0.8912","0.8912" +"GO:0070647","protein modification by small protein co...",7,0,1.22,436,"1.0000","0.8912","0.8912" +"GO:0048468","cell development",15,2,2.61,310,"0.7739","0.8993","0.8993" +"GO:0048523","negative regulation of cellular process",19,3,3.31,246,"0.6782","0.9030","0.9030" +"GO:0007264","small GTPase mediated signal transductio...",6,1,1.04,258,"0.6872","0.9034","0.9034" +"GO:0007265","Ras protein signal transduction",6,1,1.04,259,"0.6872","0.9034","0.9034" +"GO:0010562","positive regulation of phosphorus metabo...",6,1,1.04,260,"0.6872","0.9034","0.9034" +"GO:0042327","positive regulation of phosphorylation",6,1,1.04,261,"0.6872","0.9034","0.9034" +"GO:0045937","positive regulation of phosphate metabol...",6,1,1.04,262,"0.6872","0.9034","0.9034" +"GO:0051241","negative regulation of multicellular org...",6,1,1.04,263,"0.6872","0.9034","0.9034" +"GO:0050789","regulation of biological process",80,13,13.93,270,"0.6971","0.9084","0.9084" +"GO:0051049","regulation of transport",7,0,1.22,437,"1.0000","0.9109","0.9109" +"GO:0051668","localization within membrane",3,0,0.52,438,"1.0000","0.9114","0.9114" +"GO:0008284","positive regulation of cell proliferatio...",3,0,0.52,439,"1.0000","0.9134","0.9134" +"GO:0010941","regulation of cell death",3,0,0.52,440,"1.0000","0.9134","0.9134" +"GO:0016049","cell growth",3,0,0.52,441,"1.0000","0.9134","0.9134" +"GO:0042127","regulation of cell proliferation",3,0,0.52,442,"1.0000","0.9134","0.9134" +"GO:0042981","regulation of apoptotic process",3,0,0.52,443,"1.0000","0.9134","0.9134" +"GO:0043066","negative regulation of apoptotic process",3,0,0.52,444,"1.0000","0.9134","0.9134" +"GO:0043067","regulation of programmed cell death",3,0,0.52,445,"1.0000","0.9134","0.9134" +"GO:0043069","negative regulation of programmed cell d...",3,0,0.52,446,"1.0000","0.9134","0.9134" +"GO:0060548","negative regulation of cell death",3,0,0.52,447,"1.0000","0.9134","0.9134" +"GO:0060560","developmental growth involved in morphog...",3,0,0.52,448,"1.0000","0.9134","0.9134" +"GO:0060562","epithelial tube morphogenesis",3,0,0.52,449,"1.0000","0.9134","0.9134" +"GO:2000241","regulation of reproductive process",3,0,0.52,450,"1.0000","0.9134","0.9134" +"GO:0009605","response to external stimulus",10,1,1.74,354,"0.8587","0.9171","0.9171" +"GO:0071705","nitrogen compound transport",10,0,1.74,451,"1.0000","0.9193","0.9193" +"GO:0009653","anatomical structure morphogenesis",16,2,2.79,330,"0.8057","0.9203","0.9203" +"GO:0006629","lipid metabolic process",16,2,2.79,331,"0.8057","0.9203","0.9203" +"GO:0006810","transport",52,7,9.05,349,"0.8577","0.9205","0.9205" +"GO:0051234","establishment of localization",52,7,9.05,350,"0.8577","0.9205","0.9205" +"GO:0051171","regulation of nitrogen compound metaboli...",37,6,6.44,242,"0.6617","0.9295","0.9295" +"GO:0051128","regulation of cellular component organiz...",14,2,2.44,288,"0.7378","0.9305","0.9305" +"GO:0044255","cellular lipid metabolic process",14,1,2.44,378,"0.9372","0.9305","0.9305" +"GO:0006650","glycerophospholipid metabolic process",4,0,0.7,452,"1.0000","0.9309","0.9309" +"GO:0046486","glycerolipid metabolic process",4,0,0.7,453,"1.0000","0.9309","0.9309" +"GO:0046488","phosphatidylinositol metabolic process",4,0,0.7,454,"1.0000","0.9309","0.9309" +"GO:0045892","negative regulation of transcription, DN...",6,0,1.04,455,"1.0000","0.9314","0.9314" +"GO:0051253","negative regulation of RNA metabolic pro...",6,0,1.04,456,"1.0000","0.9314","0.9314" +"GO:1902679","negative regulation of RNA biosynthetic ...",6,0,1.04,457,"1.0000","0.9314","0.9314" +"GO:1903507","negative regulation of nucleic acid-temp...",6,0,1.04,458,"1.0000","0.9314","0.9314" +"GO:0008654","phospholipid biosynthetic process",3,0,0.52,459,"1.0000","0.9344","0.9344" +"GO:0051258","protein polymerization",6,1,1.04,264,"0.6872","0.9365","0.9365" +"GO:0033554","cellular response to stress",8,1,1.39,324,"0.7893","0.9372","0.9372" +"GO:0051960","regulation of nervous system development",8,1,1.39,325,"0.7893","0.9372","0.9372" +"GO:0071310","cellular response to organic substance",8,1,1.39,326,"0.7893","0.9372","0.9372" +"GO:0071702","organic substance transport",14,2,2.44,289,"0.7378","0.9422","0.9422" +"GO:0031325","positive regulation of cellular metaboli...",12,1,2.09,370,"0.9056","0.9441","0.9441" +"GO:0009719","response to endogenous stimulus",7,1,1.22,307,"0.7431","0.9451","0.9451" +"GO:0048522","positive regulation of cellular process",23,3,4,327,"0.8051","0.9457","0.9457" +"GO:0042592","homeostatic process",16,2,2.79,332,"0.8057","0.9459","0.9459" +"GO:0050793","regulation of developmental process",12,1,2.09,371,"0.9056","0.9475","0.9475" +"GO:2000026","regulation of multicellular organismal d...",12,1,2.09,372,"0.9056","0.9475","0.9475" +"GO:0065007","biological regulation",82,14,14.28,195,"0.6078","0.9495","0.9495" +"GO:0022607","cellular component assembly",15,2,2.61,311,"0.7739","0.9509","0.9509" +"GO:0080090","regulation of primary metabolic process",38,6,6.62,268,"0.6905","0.9526","0.9526" +"GO:0045595","regulation of cell differentiation",8,0,1.39,460,"1.0000","0.9535","0.9535" +"GO:0050790","regulation of catalytic activity",13,1,2.26,376,"0.9230","0.9542","0.9542" +"GO:0006720","isoprenoid metabolic process",3,0,0.52,461,"1.0000","0.9557","0.9557" +"GO:0034220","ion transmembrane transport",11,1,1.92,363,"0.8844","0.9581","0.9581" +"GO:0006644","phospholipid metabolic process",8,0,1.39,462,"1.0000","0.9608","0.9608" +"GO:0042221","response to chemical",19,2,3.31,359,"0.8791","0.9626","0.9626" +"GO:0016042","lipid catabolic process",3,0,0.52,463,"1.0000","0.9629","0.9629" +"GO:0097435","supramolecular fiber organization",7,1,1.22,308,"0.7431","0.9658","0.9658" +"GO:0044085","cellular component biogenesis",16,2,2.79,333,"0.8057","0.9669","0.9669" +"GO:0010557","positive regulation of macromolecule bio...",4,0,0.7,464,"1.0000","0.9687","0.9687" +"GO:0031328","positive regulation of cellular biosynth...",4,0,0.7,465,"1.0000","0.9687","0.9687" +"GO:0045935","positive regulation of nucleobase-contai...",4,0,0.7,466,"1.0000","0.9687","0.9687" +"GO:0015031","protein transport",9,0,1.57,467,"1.0000","0.9687","0.9687" +"GO:0015833","peptide transport",9,0,1.57,468,"1.0000","0.9687","0.9687" +"GO:0042886","amide transport",9,0,1.57,469,"1.0000","0.9687","0.9687" +"GO:0045184","establishment of protein localization",9,0,1.57,470,"1.0000","0.9687","0.9687" +"GO:0060429","epithelium development",5,0,0.87,471,"1.0000","0.9691","0.9691" +"GO:0065009","regulation of molecular function",15,1,2.61,381,"0.9489","0.9697","0.9697" +"GO:0051239","regulation of multicellular organismal p...",15,1,2.61,382,"0.9489","0.9725","0.9725" +"GO:0030258","lipid modification",3,0,0.52,472,"1.0000","0.9731","0.9731" +"GO:0006811","ion transport",23,3,4,328,"0.8051","0.9777","0.9777" +"GO:0006974","cellular response to DNA damage stimulus",6,1,1.04,265,"0.6872","0.9788","0.9788" +"GO:0006643","membrane lipid metabolic process",4,0,0.7,473,"1.0000","0.9805","0.9805" +"GO:0051179","localization",55,7,9.58,367,"0.8990","0.9805","0.9805" +"GO:0009790","embryo development",7,0,1.22,474,"1.0000","0.9817","0.9817" +"GO:0045664","regulation of neuron differentiation",7,0,1.22,475,"1.0000","0.9817","0.9817" +"GO:0050767","regulation of neurogenesis",7,0,1.22,476,"1.0000","0.9817","0.9817" +"GO:0060284","regulation of cell development",7,0,1.22,477,"1.0000","0.9817","0.9817" +"GO:0002262","myeloid cell homeostasis",3,0,0.52,478,"1.0000","0.9827","0.9827" +"GO:0030099","myeloid cell differentiation",3,0,0.52,479,"1.0000","0.9827","0.9827" +"GO:0030218","erythrocyte differentiation",3,0,0.52,480,"1.0000","0.9827","0.9827" +"GO:0034101","erythrocyte homeostasis",3,0,0.52,481,"1.0000","0.9827","0.9827" +"GO:0022603","regulation of anatomical structure morph...",4,0,0.7,482,"1.0000","0.9839","0.9839" +"GO:0046677","response to antibiotic",3,0,0.52,483,"1.0000","0.9863","0.9863" +"GO:0006928","movement of cell or subcellular componen...",10,1,1.74,355,"0.8587","0.9879","0.9879" +"GO:0071495","cellular response to endogenous stimulus",5,1,0.87,235,"0.6194","0.9883","0.9883" +"GO:0009968","negative regulation of signal transducti...",5,0,0.87,484,"1.0000","0.9883","0.9883" +"GO:0010648","negative regulation of cell communicatio...",5,0,0.87,485,"1.0000","0.9883","0.9883" +"GO:0023057","negative regulation of signaling",5,0,0.87,486,"1.0000","0.9883","0.9883" +"GO:0060341","regulation of cellular localization",5,0,0.87,487,"1.0000","0.9883","0.9883" +"GO:0010720","positive regulation of cell development",3,0,0.52,488,"1.0000","0.9895","0.9895" +"GO:0031346","positive regulation of cell projection o...",3,0,0.52,489,"1.0000","0.9895","0.9895" +"GO:0032943","mononuclear cell proliferation",3,0,0.52,490,"1.0000","0.9895","0.9895" +"GO:0042098","T cell proliferation",3,0,0.52,491,"1.0000","0.9895","0.9895" +"GO:0045666","positive regulation of neuron differenti...",3,0,0.52,492,"1.0000","0.9895","0.9895" +"GO:0046651","lymphocyte proliferation",3,0,0.52,493,"1.0000","0.9895","0.9895" +"GO:0050769","positive regulation of neurogenesis",3,0,0.52,494,"1.0000","0.9895","0.9895" +"GO:0051962","positive regulation of nervous system de...",3,0,0.52,495,"1.0000","0.9895","0.9895" +"GO:0070661","leukocyte proliferation",3,0,0.52,496,"1.0000","0.9895","0.9895" +"GO:0072507","divalent inorganic cation homeostasis",3,0,0.52,497,"1.0000","0.9895","0.9895" +"GO:0006915","apoptotic process",4,0,0.7,498,"1.0000","0.9921","0.9921" +"GO:0008219","cell death",4,0,0.7,499,"1.0000","0.9921","0.9921" +"GO:0012501","programmed cell death",4,0,0.7,500,"1.0000","0.9921","0.9921" +"GO:1902531","regulation of intracellular signal trans...",11,1,1.92,364,"0.8844","0.9948","0.9948" +"GO:0030100","regulation of endocytosis",3,0,0.52,501,"1.0000","0.9952","0.9952" +"GO:0060627","regulation of vesicle-mediated transport",3,0,0.52,502,"1.0000","0.9952","0.9952" +"GO:0046903","secretion",5,0,0.87,503,"1.0000","0.9953","0.9953" +"GO:0055085","transmembrane transport",24,2,4.18,379,"0.9481","0.9957","0.9957" +"GO:0051130","positive regulation of cellular componen...",10,1,1.74,356,"0.8587","0.9957","0.9957" +"GO:0031323","regulation of cellular metabolic process",37,6,6.44,243,"0.6617","0.9962","0.9962" +"GO:0009792","embryo development ending in birth or eg...",6,0,1.04,504,"1.0000","0.9983","0.9983" +"GO:0043009","chordate embryonic development",6,0,1.04,505,"1.0000","0.9983","0.9983" +"GO:0016567","protein ubiquitination",5,0,0.87,506,"1.0000","0.9984","0.9984" +"GO:0032446","protein modification by small protein co...",5,0,0.87,507,"1.0000","0.9984","0.9984" +"GO:0010959","regulation of metal ion transport",3,0,0.52,508,"1.0000","0.9987","0.9987" +"GO:0043900","regulation of multi-organism process",3,0,0.52,509,"1.0000","0.9987","0.9987" +"GO:0098655","cation transmembrane transport",8,0,1.39,510,"1.0000","0.9987","0.9987" +"GO:0009889","regulation of biosynthetic process",27,4,4.7,276,"0.7326","0.9988","0.9988" +"GO:0010468","regulation of gene expression",27,4,4.7,277,"0.7326","0.9988","0.9988" +"GO:0010556","regulation of macromolecule biosynthetic...",27,4,4.7,278,"0.7326","0.9988","0.9988" +"GO:0019219","regulation of nucleobase-containing comp...",27,4,4.7,279,"0.7326","0.9988","0.9988" +"GO:0031326","regulation of cellular biosynthetic proc...",27,4,4.7,280,"0.7326","0.9988","0.9988" +"GO:2000112","regulation of cellular macromolecule bio...",27,4,4.7,281,"0.7326","0.9988","0.9988" +"GO:0051252","regulation of RNA metabolic process",25,3,4.35,348,"0.8515","0.9989","0.9989" +"GO:0006355","regulation of transcription, DNA-templat...",24,3,4.18,345,"0.8296","0.9989","0.9989" +"GO:1903506","regulation of nucleic acid-templated tra...",24,3,4.18,346,"0.8296","0.9989","0.9989" +"GO:2001141","regulation of RNA biosynthetic process",24,3,4.18,347,"0.8296","0.9989","0.9989" +"GO:0048583","regulation of response to stimulus",20,2,3.48,366,"0.8974","0.9991","0.9991" +"GO:0034622","cellular protein-containing complex asse...",10,1,1.74,357,"0.8587","0.9992","0.9992" +"GO:0009966","regulation of signal transduction",16,2,2.79,334,"0.8057","0.9993","0.9993" +"GO:0010646","regulation of cell communication",16,2,2.79,335,"0.8057","0.9993","0.9993" +"GO:0023051","regulation of signaling",16,2,2.79,336,"0.8057","0.9993","0.9993" +"GO:0061061","muscle structure development",4,0,0.7,511,"1.0000","0.9994","0.9994" +"GO:0043933","protein-containing complex subunit organ...",12,1,2.09,373,"0.9056","0.9995","0.9995" +"GO:0065003","protein-containing complex assembly",12,1,2.09,374,"0.9056","0.9995","0.9995" +"GO:0031503","protein-containing complex localization",3,0,0.52,512,"1.0000","0.9995","0.9995" +"GO:0048585","negative regulation of response to stimu...",6,0,1.04,513,"1.0000","0.9996","0.9996" +"GO:0051240","positive regulation of multicellular org...",10,0,1.74,514,"1.0000","0.9996","0.9996" +"GO:0009888","tissue development",9,0,1.57,515,"1.0000","0.9996","0.9996" +"GO:0003008","system process",8,0,1.39,516,"1.0000","0.9997","0.9997" +"GO:0051094","positive regulation of developmental pro...",8,0,1.39,517,"1.0000","0.9997","0.9997" +"GO:0008283","cell proliferation",7,0,1.22,518,"1.0000","0.9997","0.9997" +"GO:0010035","response to inorganic substance",7,0,1.22,519,"1.0000","0.9997","0.9997" +"GO:0044093","positive regulation of molecular functio...",7,0,1.22,520,"1.0000","0.9997","0.9997" +"GO:0050877","nervous system process",7,0,1.22,521,"1.0000","0.9997","0.9997" +"GO:0002682","regulation of immune system process",6,0,1.04,522,"1.0000","0.9998","0.9998" +"GO:0006979","response to oxidative stress",6,0,1.04,523,"1.0000","0.9998","0.9998" +"GO:0016477","cell migration",6,0,1.04,524,"1.0000","0.9998","0.9998" +"GO:0018193","peptidyl-amino acid modification",6,0,1.04,525,"1.0000","0.9998","0.9998" +"GO:0031344","regulation of cell projection organizati...",6,0,1.04,526,"1.0000","0.9998","0.9998" +"GO:0040011","locomotion",6,0,1.04,527,"1.0000","0.9998","0.9998" +"GO:0042493","response to drug",6,0,1.04,528,"1.0000","0.9998","0.9998" +"GO:0043085","positive regulation of catalytic activit...",6,0,1.04,529,"1.0000","0.9998","0.9998" +"GO:0048870","cell motility",6,0,1.04,530,"1.0000","0.9998","0.9998" +"GO:0051674","localization of cell",6,0,1.04,531,"1.0000","0.9998","0.9998" +"GO:0098660","inorganic ion transmembrane transport",6,0,1.04,532,"1.0000","0.9998","0.9998" +"GO:0098662","inorganic cation transmembrane transport",6,0,1.04,533,"1.0000","0.9998","0.9998" +"GO:0120035","regulation of plasma membrane bounded ce...",6,0,1.04,534,"1.0000","0.9998","0.9998" +"GO:0080134","regulation of response to stress",3,0,0.52,535,"1.0000","0.9998","0.9998" +"GO:0000122","negative regulation of transcription by ...",5,0,0.87,536,"1.0000","0.9998","0.9998" +"GO:0002520","immune system development",5,0,0.87,537,"1.0000","0.9998","0.9998" +"GO:0007267","cell-cell signaling",5,0,0.87,538,"1.0000","0.9998","0.9998" +"GO:0030097","hemopoiesis",5,0,0.87,539,"1.0000","0.9998","0.9998" +"GO:0045597","positive regulation of cell differentiat...",5,0,0.87,540,"1.0000","0.9998","0.9998" +"GO:0048534","hematopoietic or lymphoid organ developm...",5,0,0.87,541,"1.0000","0.9998","0.9998" +"GO:0048729","tissue morphogenesis",5,0,0.87,542,"1.0000","0.9998","0.9998" +"GO:0048872","homeostasis of number of cells",5,0,0.87,543,"1.0000","0.9998","0.9998" +"GO:0050776","regulation of immune response",5,0,0.87,544,"1.0000","0.9998","0.9998" +"GO:0051336","regulation of hydrolase activity",5,0,0.87,545,"1.0000","0.9998","0.9998" +"GO:0051347","positive regulation of transferase activ...",5,0,0.87,546,"1.0000","0.9998","0.9998" +"GO:0070838","divalent metal ion transport",5,0,0.87,547,"1.0000","0.9998","0.9998" +"GO:0072511","divalent inorganic cation transport",5,0,0.87,548,"1.0000","0.9998","0.9998" +"GO:0022402","cell cycle process",7,2,1.22,84,"0.3514","0.0370","0.9998" +"GO:0002009","morphogenesis of an epithelium",4,0,0.7,549,"1.0000","0.9998","0.9998" +"GO:0006816","calcium ion transport",4,0,0.7,550,"1.0000","0.9998","0.9998" +"GO:0006873","cellular ion homeostasis",4,0,0.7,551,"1.0000","0.9998","0.9998" +"GO:0006875","cellular metal ion homeostasis",4,0,0.7,552,"1.0000","0.9998","0.9998" +"GO:0007167","enzyme linked receptor protein signaling...",4,0,0.7,553,"1.0000","0.9998","0.9998" +"GO:0010975","regulation of neuron projection developm...",4,0,0.7,554,"1.0000","0.9998","0.9998" +"GO:0030003","cellular cation homeostasis",4,0,0.7,555,"1.0000","0.9998","0.9998" +"GO:0030334","regulation of cell migration",4,0,0.7,556,"1.0000","0.9998","0.9998" +"GO:0033674","positive regulation of kinase activity",4,0,0.7,557,"1.0000","0.9998","0.9998" +"GO:0034762","regulation of transmembrane transport",4,0,0.7,558,"1.0000","0.9998","0.9998" +"GO:0034765","regulation of ion transmembrane transpor...",4,0,0.7,559,"1.0000","0.9998","0.9998" +"GO:0040012","regulation of locomotion",4,0,0.7,560,"1.0000","0.9998","0.9998" +"GO:0042110","T cell activation",4,0,0.7,561,"1.0000","0.9998","0.9998" +"GO:0043269","regulation of ion transport",4,0,0.7,562,"1.0000","0.9998","0.9998" +"GO:0045321","leukocyte activation",4,0,0.7,563,"1.0000","0.9998","0.9998" +"GO:0045860","positive regulation of protein kinase ac...",4,0,0.7,564,"1.0000","0.9998","0.9998" +"GO:0046649","lymphocyte activation",4,0,0.7,565,"1.0000","0.9998","0.9998" +"GO:0050801","ion homeostasis",4,0,0.7,566,"1.0000","0.9998","0.9998" +"GO:0051270","regulation of cellular component movemen...",4,0,0.7,567,"1.0000","0.9998","0.9998" +"GO:0055065","metal ion homeostasis",4,0,0.7,568,"1.0000","0.9998","0.9998" +"GO:0055080","cation homeostasis",4,0,0.7,569,"1.0000","0.9998","0.9998" +"GO:0070588","calcium ion transmembrane transport",4,0,0.7,570,"1.0000","0.9998","0.9998" +"GO:0072359","circulatory system development",4,0,0.7,571,"1.0000","0.9998","0.9998" +"GO:0098771","inorganic ion homeostasis",4,0,0.7,572,"1.0000","0.9998","0.9998" +"GO:1902532","negative regulation of intracellular sig...",4,0,0.7,573,"1.0000","0.9998","0.9998" +"GO:1904062","regulation of cation transmembrane trans...",4,0,0.7,574,"1.0000","0.9998","0.9998" +"GO:2000145","regulation of cell motility",4,0,0.7,575,"1.0000","0.9998","0.9998" +"GO:0001764","neuron migration",3,0,0.52,576,"1.0000","0.9999","0.9999" +"GO:0002521","leukocyte differentiation",3,0,0.52,577,"1.0000","0.9999","0.9999" +"GO:0002694","regulation of leukocyte activation",3,0,0.52,578,"1.0000","0.9999","0.9999" +"GO:0006281","DNA repair",3,0,0.52,579,"1.0000","0.9999","0.9999" +"GO:0007178","transmembrane receptor protein serine/th...",3,0,0.52,580,"1.0000","0.9999","0.9999" +"GO:0007266","Rho protein signal transduction",3,0,0.52,581,"1.0000","0.9999","0.9999" +"GO:0009791","post-embryonic development",3,0,0.52,582,"1.0000","0.9999","0.9999" +"GO:0016055","Wnt signaling pathway",3,0,0.52,583,"1.0000","0.9999","0.9999" +"GO:0016358","dendrite development",3,0,0.52,584,"1.0000","0.9999","0.9999" +"GO:0018212","peptidyl-tyrosine modification",3,0,0.52,585,"1.0000","0.9999","0.9999" +"GO:0022604","regulation of cell morphogenesis",3,0,0.52,586,"1.0000","0.9999","0.9999" +"GO:0030031","cell projection assembly",3,0,0.52,587,"1.0000","0.9999","0.9999" +"GO:0030098","lymphocyte differentiation",3,0,0.52,588,"1.0000","0.9999","0.9999" +"GO:0030217","T cell differentiation",3,0,0.52,589,"1.0000","0.9999","0.9999" +"GO:0032147","activation of protein kinase activity",3,0,0.52,590,"1.0000","0.9999","0.9999" +"GO:0035023","regulation of Rho protein signal transdu...",3,0,0.52,591,"1.0000","0.9999","0.9999" +"GO:0045165","cell fate commitment",3,0,0.52,592,"1.0000","0.9999","0.9999" +"GO:0045580","regulation of T cell differentiation",3,0,0.52,593,"1.0000","0.9999","0.9999" +"GO:0045619","regulation of lymphocyte differentiation",3,0,0.52,594,"1.0000","0.9999","0.9999" +"GO:0048569","post-embryonic animal organ development",3,0,0.52,595,"1.0000","0.9999","0.9999" +"GO:0050863","regulation of T cell activation",3,0,0.52,596,"1.0000","0.9999","0.9999" +"GO:0050865","regulation of cell activation",3,0,0.52,597,"1.0000","0.9999","0.9999" +"GO:0051050","positive regulation of transport",3,0,0.52,598,"1.0000","0.9999","0.9999" +"GO:0051249","regulation of lymphocyte activation",3,0,0.52,599,"1.0000","0.9999","0.9999" +"GO:0060491","regulation of cell projection assembly",3,0,0.52,600,"1.0000","0.9999","0.9999" +"GO:0070848","response to growth factor",3,0,0.52,601,"1.0000","0.9999","0.9999" +"GO:0071363","cellular response to growth factor stimu...",3,0,0.52,602,"1.0000","0.9999","0.9999" +"GO:0120031","plasma membrane bounded cell projection ...",3,0,0.52,603,"1.0000","0.9999","0.9999" +"GO:0120032","regulation of plasma membrane bounded ce...",3,0,0.52,604,"1.0000","0.9999","0.9999" +"GO:0198738","cell-cell signaling by wnt",3,0,0.52,605,"1.0000","0.9999","0.9999" +"GO:1902105","regulation of leukocyte differentiation",3,0,0.52,606,"1.0000","0.9999","0.9999" +"GO:1903706","regulation of hemopoiesis",3,0,0.52,607,"1.0000","0.9999","0.9999" +"GO:1905114","cell surface receptor signaling pathway ...",3,0,0.52,608,"1.0000","0.9999","0.9999" +"GO:0008150","biological_process",224,39,39,609,"1.0000","1.0000","1.0000" diff --git a/GO_enrichment_microbiome_output/contrast_postlaying_nonlaying_downregulated.csv b/GO_enrichment_microbiome_output/contrast_postlaying_nonlaying_downregulated.csv index 7083e8a..9e2c79e 100644 --- a/GO_enrichment_microbiome_output/contrast_postlaying_nonlaying_downregulated.csv +++ b/GO_enrichment_microbiome_output/contrast_postlaying_nonlaying_downregulated.csv @@ -4,3 +4,472 @@ "GO:0007154","cell communication",29,4,1.97,11,"0.116","0.0099","0.0099" "GO:0048523","negative regulation of cellular process",17,2,1.16,53,"0.324","0.0143","0.0143" "GO:0048519","negative regulation of biological proces...",21,2,1.43,67,"0.429","0.0168","0.0168" +"GO:0023052","signaling",28,4,1.9,10,"0.104","0.0184","0.0184" +"GO:0051276","chromosome organization",6,0,0.41,148,"1.000","0.0199","0.0199" +"GO:0002683","negative regulation of immune system pro...",3,0,0.2,149,"1.000","0.0266","0.0266" +"GO:0007165","signal transduction",27,4,1.83,9,"0.093","0.0299","0.0299" +"GO:0016311","dephosphorylation",6,1,0.41,54,"0.348","0.0395","0.0395" +"GO:0051726","regulation of cell cycle",8,1,0.54,68,"0.436","0.0479","0.0479" +"GO:0048513","animal organ development",10,1,0.68,79,"0.513","0.0484","0.0484" +"GO:0006325","chromatin organization",3,0,0.2,150,"1.000","0.0601","0.0601" +"GO:0031400","negative regulation of protein modificat...",3,0,0.2,151,"1.000","0.0601","0.0601" +"GO:0032504","multicellular organism reproduction",3,0,0.2,152,"1.000","0.0601","0.0601" +"GO:0048609","multicellular organismal reproductive pr...",3,0,0.2,153,"1.000","0.0601","0.0601" +"GO:0051704","multi-organism process",3,0,0.2,154,"1.000","0.0601","0.0601" +"GO:0006928","movement of cell or subcellular componen...",6,0,0.41,155,"1.000","0.0709","0.0709" +"GO:0045595","regulation of cell differentiation",8,0,0.54,156,"1.000","0.0727","0.0727" +"GO:0005975","carbohydrate metabolic process",5,2,0.34,4,"0.038","0.0749","0.0749" +"GO:0048585","negative regulation of response to stimu...",6,0,0.41,157,"1.000","0.0763","0.0763" +"GO:0016477","cell migration",4,0,0.27,158,"1.000","0.0878","0.0878" +"GO:0048870","cell motility",4,0,0.27,159,"1.000","0.0878","0.0878" +"GO:0051270","regulation of cellular component movemen...",4,0,0.27,160,"1.000","0.0878","0.0878" +"GO:0051674","localization of cell",4,0,0.27,161,"1.000","0.0878","0.0878" +"GO:0032269","negative regulation of cellular protein ...",5,1,0.34,40,"0.299","0.0947","0.0947" +"GO:0051248","negative regulation of protein metabolic...",5,1,0.34,41,"0.299","0.0947","0.0947" +"GO:0051028","mRNA transport",3,0,0.2,162,"1.000","0.0953","0.0953" +"GO:0007186","G protein-coupled receptor signaling pat...",5,2,0.34,5,"0.038","0.0993","0.0993" +"GO:0044087","regulation of cellular component biogene...",7,1,0.48,62,"0.394","0.1031","0.1031" +"GO:0031324","negative regulation of cellular metaboli...",9,1,0.61,74,"0.476","0.1047","0.1047" +"GO:0000278","mitotic cell cycle",6,2,0.41,7,"0.055","0.1048","0.1048" +"GO:1903047","mitotic cell cycle process",6,2,0.41,8,"0.055","0.1048","0.1048" +"GO:0022402","cell cycle process",10,2,0.68,14,"0.141","0.1054","0.1054" +"GO:0035556","intracellular signal transduction",11,2,0.75,15,"0.166","0.1061","0.1061" +"GO:0032879","regulation of localization",9,0,0.61,163,"1.000","0.1061","0.1061" +"GO:0045596","negative regulation of cell differentiat...",4,0,0.27,164,"1.000","0.1084","0.1084" +"GO:0051093","negative regulation of developmental pro...",4,0,0.27,165,"1.000","0.1084","0.1084" +"GO:0048869","cellular developmental process",16,0,1.09,166,"1.000","0.1132","0.1132" +"GO:0051129","negative regulation of cellular componen...",3,0,0.2,167,"1.000","0.1182","0.1182" +"GO:0010558","negative regulation of macromolecule bio...",5,1,0.34,42,"0.299","0.1184","0.1184" +"GO:0010629","negative regulation of gene expression",5,1,0.34,43,"0.299","0.1184","0.1184" +"GO:0031327","negative regulation of cellular biosynth...",5,1,0.34,44,"0.299","0.1184","0.1184" +"GO:2000113","negative regulation of cellular macromol...",5,1,0.34,45,"0.299","0.1184","0.1184" +"GO:0045597","positive regulation of cell differentiat...",5,0,0.34,168,"1.000","0.1184","0.1184" +"GO:0006518","peptide metabolic process",7,1,0.48,63,"0.394","0.1252","0.1252" +"GO:0007049","cell cycle",13,2,0.88,24,"0.217","0.1258","0.1258" +"GO:1901135","carbohydrate derivative metabolic proces...",6,0,0.41,169,"1.000","0.1281","0.1281" +"GO:0006643","membrane lipid metabolic process",5,0,0.34,170,"1.000","0.1353","0.1353" +"GO:0006814","sodium ion transport",3,0,0.2,171,"1.000","0.1356","0.1356" +"GO:0010608","posttranscriptional regulation of gene e...",3,1,0.2,18,"0.191","0.1451","0.1451" +"GO:0043603","cellular amide metabolic process",11,1,0.75,86,"0.548","0.1460","0.1460" +"GO:0046434","organophosphate catabolic process",3,0,0.2,172,"1.000","0.1499","0.1499" +"GO:0010564","regulation of cell cycle process",5,0,0.34,173,"1.000","0.1541","0.1541" +"GO:0048731","system development",18,1,1.22,112,"0.734","0.1580","0.1580" +"GO:0030154","cell differentiation",15,0,1.02,174,"1.000","0.1587","0.1587" +"GO:0010605","negative regulation of macromolecule met...",8,1,0.54,69,"0.436","0.1609","0.1609" +"GO:0051172","negative regulation of nitrogen compound...",8,1,0.54,70,"0.436","0.1609","0.1609" +"GO:0048468","cell development",10,0,0.68,175,"1.000","0.1661","0.1661" +"GO:0009966","regulation of signal transduction",9,0,0.61,176,"1.000","0.1688","0.1688" +"GO:0010646","regulation of cell communication",9,0,0.61,177,"1.000","0.1688","0.1688" +"GO:0023051","regulation of signaling",9,0,0.61,178,"1.000","0.1688","0.1688" +"GO:0043604","amide biosynthetic process",6,1,0.41,55,"0.348","0.1700","0.1700" +"GO:0006665","sphingolipid metabolic process",3,0,0.2,179,"1.000","0.1707","0.1707" +"GO:0016042","lipid catabolic process",3,0,0.2,180,"1.000","0.1707","0.1707" +"GO:0030149","sphingolipid catabolic process",3,0,0.2,181,"1.000","0.1707","0.1707" +"GO:0044242","cellular lipid catabolic process",3,0,0.2,182,"1.000","0.1707","0.1707" +"GO:0046466","membrane lipid catabolic process",3,0,0.2,183,"1.000","0.1707","0.1707" +"GO:1902531","regulation of intracellular signal trans...",6,0,0.41,184,"1.000","0.1778","0.1778" +"GO:0009968","negative regulation of signal transducti...",4,0,0.27,185,"1.000","0.1829","0.1829" +"GO:0010648","negative regulation of cell communicatio...",4,0,0.27,186,"1.000","0.1829","0.1829" +"GO:0023057","negative regulation of signaling",4,0,0.27,187,"1.000","0.1829","0.1829" +"GO:0043010","camera-type eye development",4,0,0.27,188,"1.000","0.1829","0.1829" +"GO:0045892","negative regulation of transcription, DN...",4,0,0.27,189,"1.000","0.1829","0.1829" +"GO:0045934","negative regulation of nucleobase-contai...",4,0,0.27,190,"1.000","0.1829","0.1829" +"GO:0051253","negative regulation of RNA metabolic pro...",4,0,0.27,191,"1.000","0.1829","0.1829" +"GO:0060041","retina development in camera-type eye",4,0,0.27,192,"1.000","0.1829","0.1829" +"GO:1902679","negative regulation of RNA biosynthetic ...",4,0,0.27,193,"1.000","0.1829","0.1829" +"GO:1903507","negative regulation of nucleic acid-temp...",4,0,0.27,194,"1.000","0.1829","0.1829" +"GO:0031503","protein-containing complex localization",4,0,0.27,195,"1.000","0.1930","0.1930" +"GO:0009892","negative regulation of metabolic process",10,1,0.68,80,"0.513","0.1933","0.1933" +"GO:0007267","cell-cell signaling",3,0,0.2,196,"1.000","0.1974","0.1974" +"GO:0040011","locomotion",5,0,0.34,197,"1.000","0.2003","0.2003" +"GO:0055086","nucleobase-containing small molecule met...",3,0,0.2,198,"1.000","0.2035","0.2035" +"GO:0033036","macromolecule localization",19,1,1.29,114,"0.754","0.2098","0.2098" +"GO:0007264","small GTPase mediated signal transductio...",4,1,0.27,28,"0.247","0.2144","0.2144" +"GO:0001775","cell activation",4,0,0.27,199,"1.000","0.2218","0.2218" +"GO:0098609","cell-cell adhesion",4,0,0.27,200,"1.000","0.2218","0.2218" +"GO:0006952","defense response",3,0,0.2,201,"1.000","0.2226","0.2226" +"GO:0007346","regulation of mitotic cell cycle",4,1,0.27,29,"0.247","0.2256","0.2256" +"GO:0007155","cell adhesion",6,0,0.41,202,"1.000","0.2272","0.2272" +"GO:0022610","biological adhesion",6,0,0.41,203,"1.000","0.2272","0.2272" +"GO:0006412","translation",5,1,0.34,46,"0.299","0.2301","0.2301" +"GO:0043043","peptide biosynthetic process",5,1,0.34,47,"0.299","0.2301","0.2301" +"GO:0008104","protein localization",15,1,1.02,102,"0.665","0.2306","0.2306" +"GO:0071840","cellular component organization or bioge...",30,2,2.04,97,"0.635","0.2361","0.2361" +"GO:0002682","regulation of immune system process",5,0,0.34,204,"1.000","0.2424","0.2424" +"GO:0009719","response to endogenous stimulus",5,0,0.34,205,"1.000","0.2424","0.2424" +"GO:0009725","response to hormone",5,0,0.34,206,"1.000","0.2424","0.2424" +"GO:0014070","response to organic cyclic compound",5,0,0.34,207,"1.000","0.2424","0.2424" +"GO:0032870","cellular response to hormone stimulus",5,0,0.34,208,"1.000","0.2424","0.2424" +"GO:0048545","response to steroid hormone",5,0,0.34,209,"1.000","0.2424","0.2424" +"GO:0071310","cellular response to organic substance",5,0,0.34,210,"1.000","0.2424","0.2424" +"GO:0071383","cellular response to steroid hormone sti...",5,0,0.34,211,"1.000","0.2424","0.2424" +"GO:0071396","cellular response to lipid",5,0,0.34,212,"1.000","0.2424","0.2424" +"GO:0071407","cellular response to organic cyclic comp...",5,0,0.34,213,"1.000","0.2424","0.2424" +"GO:0071495","cellular response to endogenous stimulus",5,0,0.34,214,"1.000","0.2424","0.2424" +"GO:0009890","negative regulation of biosynthetic proc...",6,1,0.41,56,"0.348","0.2601","0.2601" +"GO:0016043","cellular component organization",27,1,1.83,134,"0.870","0.2608","0.2608" +"GO:0048583","regulation of response to stimulus",13,0,0.88,215,"1.000","0.2612","0.2612" +"GO:0034613","cellular protein localization",13,1,0.88,94,"0.611","0.2672","0.2672" +"GO:1901566","organonitrogen compound biosynthetic pro...",11,1,0.75,87,"0.548","0.2685","0.2685" +"GO:0030334","regulation of cell migration",3,0,0.2,216,"1.000","0.2714","0.2714" +"GO:0040012","regulation of locomotion",3,0,0.2,217,"1.000","0.2714","0.2714" +"GO:2000145","regulation of cell motility",3,0,0.2,218,"1.000","0.2714","0.2714" +"GO:0044085","cellular component biogenesis",11,1,0.75,88,"0.548","0.2738","0.2738" +"GO:0006996","organelle organization",18,1,1.22,113,"0.734","0.2801","0.2801" +"GO:0000122","negative regulation of transcription by ...",3,0,0.2,219,"1.000","0.2815","0.2815" +"GO:0009611","response to wounding",3,0,0.2,220,"1.000","0.2815","0.2815" +"GO:0010720","positive regulation of cell development",3,0,0.2,221,"1.000","0.2815","0.2815" +"GO:0042060","wound healing",3,0,0.2,222,"1.000","0.2815","0.2815" +"GO:0045666","positive regulation of neuron differenti...",3,0,0.2,223,"1.000","0.2815","0.2815" +"GO:0048863","stem cell differentiation",3,0,0.2,224,"1.000","0.2815","0.2815" +"GO:0050769","positive regulation of neurogenesis",3,0,0.2,225,"1.000","0.2815","0.2815" +"GO:0051962","positive regulation of nervous system de...",3,0,0.2,226,"1.000","0.2815","0.2815" +"GO:0002376","immune system process",6,0,0.41,227,"1.000","0.2884","0.2884" +"GO:0098657","import into cell",3,0,0.2,228,"1.000","0.2891","0.2891" +"GO:0006974","cellular response to DNA damage stimulus",6,1,0.41,57,"0.348","0.2921","0.2921" +"GO:0016310","phosphorylation",20,2,1.36,66,"0.404","0.2992","0.2992" +"GO:0051246","regulation of protein metabolic process",14,2,0.95,26,"0.244","0.2992","0.2992" +"GO:0050793","regulation of developmental process",11,0,0.75,229,"1.000","0.3039","0.3039" +"GO:0045321","leukocyte activation",3,0,0.2,230,"1.000","0.3101","0.3101" +"GO:0045444","fat cell differentiation",3,0,0.2,231,"1.000","0.3101","0.3101" +"GO:0070887","cellular response to chemical stimulus",7,0,0.48,232,"1.000","0.3224","0.3224" +"GO:0006405","RNA export from nucleus",4,0,0.27,233,"1.000","0.3246","0.3246" +"GO:0050657","nucleic acid transport",4,0,0.27,234,"1.000","0.3246","0.3246" +"GO:0050658","RNA transport",4,0,0.27,235,"1.000","0.3246","0.3246" +"GO:0051168","nuclear export",4,0,0.27,236,"1.000","0.3246","0.3246" +"GO:0051236","establishment of RNA localization",4,0,0.27,237,"1.000","0.3246","0.3246" +"GO:0008380","RNA splicing",6,0,0.41,238,"1.000","0.3264","0.3264" +"GO:0016071","mRNA metabolic process",6,0,0.41,239,"1.000","0.3264","0.3264" +"GO:0042592","homeostatic process",11,0,0.75,240,"1.000","0.3284","0.3284" +"GO:0043412","macromolecule modification",29,4,1.97,12,"0.116","0.3315","0.3315" +"GO:0050794","regulation of cellular process",75,7,5.1,22,"0.208","0.3434","0.3434" +"GO:0030182","neuron differentiation",6,0,0.41,241,"1.000","0.3545","0.3545" +"GO:0032989","cellular component morphogenesis",6,0,0.41,242,"1.000","0.3545","0.3545" +"GO:0033993","response to lipid",6,0,0.41,243,"1.000","0.3545","0.3545" +"GO:0006813","potassium ion transport",4,0,0.27,244,"1.000","0.3590","0.3590" +"GO:0001654","eye development",5,0,0.34,245,"1.000","0.3605","0.3605" +"GO:0007423","sensory organ development",5,0,0.34,246,"1.000","0.3605","0.3605" +"GO:0048880","sensory system development",5,0,0.34,247,"1.000","0.3605","0.3605" +"GO:0150063","visual system development",5,0,0.34,248,"1.000","0.3605","0.3605" +"GO:0051049","regulation of transport",5,0,0.34,249,"1.000","0.3627","0.3627" +"GO:0007010","cytoskeleton organization",4,0,0.27,250,"1.000","0.3691","0.3691" +"GO:0033554","cellular response to stress",10,1,0.68,81,"0.513","0.3766","0.3766" +"GO:0070727","cellular macromolecule localization",14,1,0.95,99,"0.639","0.3794","0.3794" +"GO:0071704","organic substance metabolic process",110,9,7.48,35,"0.287","0.3545","0.3840" +"GO:0006468","protein phosphorylation",16,2,1.09,39,"0.297","0.3886","0.3886" +"GO:0009605","response to external stimulus",8,0,0.54,251,"1.000","0.3899","0.3899" +"GO:0051094","positive regulation of developmental pro...",8,0,0.54,252,"1.000","0.3899","0.3899" +"GO:0006397","mRNA processing",5,0,0.34,253,"1.000","0.3952","0.3952" +"GO:0065007","biological regulation",82,7,5.57,38,"0.296","0.3952","0.3952" +"GO:0042221","response to chemical",18,0,1.22,254,"1.000","0.3963","0.3963" +"GO:0050789","regulation of biological process",80,7,5.44,34,"0.270","0.3980","0.3980" +"GO:0044267","cellular protein metabolic process",34,4,2.31,17,"0.182","0.3989","0.3989" +"GO:0007166","cell surface receptor signaling pathway",4,0,0.27,255,"1.000","0.4004","0.4004" +"GO:0009790","embryo development",6,0,0.41,256,"1.000","0.4012","0.4012" +"GO:0009888","tissue development",6,0,0.41,257,"1.000","0.4012","0.4012" +"GO:0007399","nervous system development",12,0,0.82,258,"1.000","0.4043","0.4043" +"GO:0048584","positive regulation of response to stimu...",3,0,0.2,259,"1.000","0.4084","0.4084" +"GO:1901564","organonitrogen compound metabolic proces...",49,4,3.33,72,"0.436","0.4087","0.4087" +"GO:0009628","response to abiotic stimulus",7,0,0.48,260,"1.000","0.4114","0.4114" +"GO:0006259","DNA metabolic process",7,1,0.48,64,"0.394","0.4217","0.4217" +"GO:0019220","regulation of phosphate metabolic proces...",9,1,0.61,75,"0.476","0.4237","0.4237" +"GO:0051174","regulation of phosphorus metabolic proce...",9,1,0.61,76,"0.476","0.4237","0.4237" +"GO:0044281","small molecule metabolic process",16,1,1.09,107,"0.690","0.4245","0.4245" +"GO:0007265","Ras protein signal transduction",3,0,0.2,261,"1.000","0.4271","0.4271" +"GO:0007266","Rho protein signal transduction",3,0,0.2,262,"1.000","0.4271","0.4271" +"GO:0035023","regulation of Rho protein signal transdu...",3,0,0.2,263,"1.000","0.4271","0.4271" +"GO:0046578","regulation of Ras protein signal transdu...",3,0,0.2,264,"1.000","0.4271","0.4271" +"GO:0051056","regulation of small GTPase mediated sign...",3,0,0.2,265,"1.000","0.4271","0.4271" +"GO:0051641","cellular localization",21,1,1.43,124,"0.789","0.4289","0.4289" +"GO:0022414","reproductive process",8,1,0.54,71,"0.436","0.4321","0.4321" +"GO:0046488","phosphatidylinositol metabolic process",3,0,0.2,266,"1.000","0.4366","0.4366" +"GO:0006611","protein export from nucleus",3,0,0.2,267,"1.000","0.4430","0.4430" +"GO:0071166","ribonucleoprotein complex localization",3,0,0.2,268,"1.000","0.4430","0.4430" +"GO:0071426","ribonucleoprotein complex export from nu...",3,0,0.2,269,"1.000","0.4430","0.4430" +"GO:0033043","regulation of organelle organization",8,0,0.54,270,"1.000","0.4479","0.4479" +"GO:0007417","central nervous system development",5,0,0.34,271,"1.000","0.4488","0.4488" +"GO:0007420","brain development",5,0,0.34,272,"1.000","0.4488","0.4488" +"GO:0060322","head development",5,0,0.34,273,"1.000","0.4488","0.4488" +"GO:0051640","organelle localization",4,0,0.27,274,"1.000","0.4494","0.4494" +"GO:0022008","neurogenesis",8,0,0.54,275,"1.000","0.4559","0.4559" +"GO:0001932","regulation of protein phosphorylation",8,0,0.54,276,"1.000","0.4679","0.4679" +"GO:0042325","regulation of phosphorylation",8,0,0.54,277,"1.000","0.4679","0.4679" +"GO:0030029","actin filament-based process",3,0,0.2,278,"1.000","0.4753","0.4753" +"GO:0051493","regulation of cytoskeleton organization",3,0,0.2,279,"1.000","0.4753","0.4753" +"GO:0007275","multicellular organism development",23,1,1.56,128,"0.820","0.4764","0.4764" +"GO:0000375","RNA splicing, via transesterification re...",4,0,0.27,280,"1.000","0.4776","0.4776" +"GO:0000377","RNA splicing, via transesterification re...",4,0,0.27,281,"1.000","0.4776","0.4776" +"GO:0000398","mRNA splicing, via spliceosome",4,0,0.27,282,"1.000","0.4776","0.4776" +"GO:0007610","behavior",3,0,0.2,283,"1.000","0.4819","0.4819" +"GO:0060249","anatomical structure homeostasis",3,0,0.2,284,"1.000","0.4819","0.4819" +"GO:0006807","nitrogen compound metabolic process",94,7,6.39,73,"0.473","0.4504","0.4884" +"GO:0048646","anatomical structure formation involved ...",6,0,0.41,285,"1.000","0.4969","0.4969" +"GO:0051240","positive regulation of multicellular org...",6,0,0.41,286,"1.000","0.4969","0.4969" +"GO:0006950","response to stress",21,1,1.43,125,"0.789","0.4995","0.4995" +"GO:0019538","protein metabolic process",38,4,2.58,27,"0.245","0.5011","0.5011" +"GO:0097164","ammonium ion metabolic process",4,0,0.27,287,"1.000","0.5063","0.5063" +"GO:0032268","regulation of cellular protein metabolic...",13,2,0.88,25,"0.217","0.5069","0.5069" +"GO:0000902","cell morphogenesis",5,0,0.34,288,"1.000","0.5100","0.5100" +"GO:0000904","cell morphogenesis involved in different...",5,0,0.34,289,"1.000","0.5100","0.5100" +"GO:0006403","RNA localization",5,0,0.34,290,"1.000","0.5100","0.5100" +"GO:0030030","cell projection organization",5,0,0.34,291,"1.000","0.5100","0.5100" +"GO:0032990","cell part morphogenesis",5,0,0.34,292,"1.000","0.5100","0.5100" +"GO:0048666","neuron development",5,0,0.34,293,"1.000","0.5100","0.5100" +"GO:0060284","regulation of cell development",5,0,0.34,294,"1.000","0.5100","0.5100" +"GO:0120036","plasma membrane bounded cell projection ...",5,0,0.34,295,"1.000","0.5100","0.5100" +"GO:0040007","growth",7,1,0.48,65,"0.394","0.5207","0.5207" +"GO:0022607","cellular component assembly",7,0,0.48,296,"1.000","0.5274","0.5274" +"GO:0000003","reproduction",9,1,0.61,77,"0.476","0.5330","0.5330" +"GO:0046486","glycerolipid metabolic process",5,0,0.34,297,"1.000","0.5336","0.5336" +"GO:0006464","cellular protein modification process",26,3,1.77,32,"0.252","0.5339","0.5339" +"GO:0036211","protein modification process",26,3,1.77,33,"0.252","0.5339","0.5339" +"GO:1901615","organic hydroxy compound metabolic proce...",3,0,0.2,298,"1.000","0.5353","0.5353" +"GO:0006793","phosphorus metabolic process",29,3,1.97,50,"0.312","0.5362","0.5362" +"GO:0006796","phosphate-containing compound metabolic ...",29,3,1.97,51,"0.312","0.5362","0.5362" +"GO:0051239","regulation of multicellular organismal p...",10,0,0.68,299,"1.000","0.5375","0.5375" +"GO:0006281","DNA repair",5,0,0.34,300,"1.000","0.5388","0.5388" +"GO:0008219","cell death",6,0,0.41,301,"1.000","0.5399","0.5399" +"GO:0006955","immune response",3,0,0.2,302,"1.000","0.5420","0.5420" +"GO:0044238","primary metabolic process",104,9,7.07,23,"0.215","0.5098","0.5464" +"GO:0098656","anion transmembrane transport",5,0,0.34,303,"1.000","0.5467","0.5467" +"GO:0042493","response to drug",4,0,0.27,304,"1.000","0.5472","0.5472" +"GO:0022613","ribonucleoprotein complex biogenesis",3,1,0.2,19,"0.191","0.5488","0.5488" +"GO:0042254","ribosome biogenesis",3,1,0.2,20,"0.191","0.5488","0.5488" +"GO:0051130","positive regulation of cellular componen...",7,0,0.48,305,"1.000","0.5542","0.5542" +"GO:0035239","tube morphogenesis",5,0,0.34,306,"1.000","0.5600","0.5600" +"GO:0035295","tube development",5,0,0.34,307,"1.000","0.5600","0.5600" +"GO:0051128","regulation of cellular component organiz...",14,0,0.95,308,"1.000","0.5611","0.5611" +"GO:0001558","regulation of cell growth",3,0,0.2,309,"1.000","0.5624","0.5624" +"GO:0016049","cell growth",3,0,0.2,310,"1.000","0.5624","0.5624" +"GO:0040008","regulation of growth",3,0,0.2,311,"1.000","0.5624","0.5624" +"GO:0006396","RNA processing",11,2,0.75,16,"0.166","0.2468","0.5707" +"GO:0048878","chemical homeostasis",3,0,0.2,312,"1.000","0.5727","0.5727" +"GO:0050801","ion homeostasis",3,0,0.2,313,"1.000","0.5727","0.5727" +"GO:0045184","establishment of protein localization",11,1,0.75,89,"0.548","0.5780","0.5780" +"GO:0065008","regulation of biological quality",14,0,0.95,314,"1.000","0.5806","0.5806" +"GO:0006457","protein folding",3,0,0.2,315,"1.000","0.5863","0.5863" +"GO:0008152","metabolic process",135,9,9.17,101,"0.660","0.4752","0.5913" +"GO:0043170","macromolecule metabolic process",84,7,5.71,52,"0.324","0.4866","0.5930" +"GO:0012501","programmed cell death",5,0,0.34,316,"1.000","0.5999","0.5999" +"GO:0006913","nucleocytoplasmic transport",5,0,0.34,317,"1.000","0.6052","0.6052" +"GO:0015931","nucleobase-containing compound transport",5,0,0.34,318,"1.000","0.6052","0.6052" +"GO:0051169","nuclear transport",5,0,0.34,319,"1.000","0.6052","0.6052" +"GO:0003008","system process",4,0,0.27,320,"1.000","0.6065","0.6065" +"GO:0006650","glycerophospholipid metabolic process",4,0,0.27,321,"1.000","0.6065","0.6065" +"GO:0009612","response to mechanical stimulus",4,0,0.27,322,"1.000","0.6065","0.6065" +"GO:0018193","peptidyl-amino acid modification",4,0,0.27,323,"1.000","0.6065","0.6065" +"GO:0034641","cellular nitrogen compound metabolic pro...",63,4,4.28,105,"0.670","0.4675","0.6092" +"GO:0010256","endomembrane system organization",3,1,0.2,21,"0.191","0.6206","0.6206" +"GO:0034220","ion transmembrane transport",9,0,0.61,324,"1.000","0.6229","0.6229" +"GO:0010562","positive regulation of phosphorus metabo...",5,1,0.34,48,"0.299","0.6265","0.6265" +"GO:0045937","positive regulation of phosphate metabol...",5,1,0.34,49,"0.299","0.6265","0.6265" +"GO:0010941","regulation of cell death",4,0,0.27,325,"1.000","0.6303","0.6303" +"GO:0051336","regulation of hydrolase activity",4,0,0.27,326,"1.000","0.6303","0.6303" +"GO:0044260","cellular macromolecule metabolic process",68,6,4.62,37,"0.296","0.6337","0.6337" +"GO:0003333","amino acid transmembrane transport",3,0,0.2,327,"1.000","0.6377","0.6377" +"GO:0006865","amino acid transport",3,0,0.2,328,"1.000","0.6377","0.6377" +"GO:1903825","organic acid transmembrane transport",3,0,0.2,329,"1.000","0.6377","0.6377" +"GO:1905039","carboxylic acid transmembrane transport",3,0,0.2,330,"1.000","0.6377","0.6377" +"GO:0015672","monovalent inorganic cation transport",6,0,0.41,331,"1.000","0.6470","0.6470" +"GO:0006082","organic acid metabolic process",8,0,0.54,332,"1.000","0.6481","0.6481" +"GO:0019752","carboxylic acid metabolic process",8,0,0.54,333,"1.000","0.6481","0.6481" +"GO:0043436","oxoacid metabolic process",8,0,0.54,334,"1.000","0.6481","0.6481" +"GO:0031399","regulation of protein modification proce...",11,1,0.75,90,"0.548","0.6527","0.6527" +"GO:0009891","positive regulation of biosynthetic proc...",7,0,0.48,335,"1.000","0.6559","0.6559" +"GO:0010557","positive regulation of macromolecule bio...",7,0,0.48,336,"1.000","0.6559","0.6559" +"GO:0031328","positive regulation of cellular biosynth...",7,0,0.48,337,"1.000","0.6559","0.6559" +"GO:0045935","positive regulation of nucleobase-contai...",7,0,0.48,338,"1.000","0.6559","0.6559" +"GO:0048699","generation of neurons",7,0,0.48,339,"1.000","0.6559","0.6559" +"GO:0006605","protein targeting",3,0,0.2,340,"1.000","0.6649","0.6649" +"GO:0010769","regulation of cell morphogenesis involve...",3,0,0.2,341,"1.000","0.6649","0.6649" +"GO:0022604","regulation of cell morphogenesis",3,0,0.2,342,"1.000","0.6649","0.6649" +"GO:0031344","regulation of cell projection organizati...",3,0,0.2,343,"1.000","0.6649","0.6649" +"GO:0051050","positive regulation of transport",3,0,0.2,344,"1.000","0.6649","0.6649" +"GO:0120035","regulation of plasma membrane bounded ce...",3,0,0.2,345,"1.000","0.6649","0.6649" +"GO:0006915","apoptotic process",4,0,0.27,346,"1.000","0.6658","0.6658" +"GO:0010638","positive regulation of organelle organiz...",6,0,0.41,347,"1.000","0.6760","0.6760" +"GO:0043549","regulation of kinase activity",3,0,0.2,348,"1.000","0.6784","0.6784" +"GO:0045859","regulation of protein kinase activity",3,0,0.2,349,"1.000","0.6784","0.6784" +"GO:0009987","cellular process",145,10,9.85,93,"0.598","0.2599","0.6790" +"GO:0044237","cellular metabolic process",105,7,7.14,98,"0.637","0.6402","0.6850" +"GO:0048518","positive regulation of biological proces...",26,1,1.77,131,"0.859","0.6863","0.6863" +"GO:0048856","anatomical structure development",26,1,1.77,132,"0.859","0.6863","0.6863" +"GO:0009792","embryo development ending in birth or eg...",3,0,0.2,350,"1.000","0.6885","0.6885" +"GO:0043009","chordate embryonic development",3,0,0.2,351,"1.000","0.6885","0.6885" +"GO:0001934","positive regulation of protein phosphory...",4,0,0.27,352,"1.000","0.6892","0.6892" +"GO:0042327","positive regulation of phosphorylation",4,0,0.27,353,"1.000","0.6892","0.6892" +"GO:1901137","carbohydrate derivative biosynthetic pro...",3,0,0.2,354,"1.000","0.6919","0.6919" +"GO:0044255","cellular lipid metabolic process",12,0,0.82,355,"1.000","0.6973","0.6973" +"GO:0065009","regulation of molecular function",11,0,0.75,356,"1.000","0.7048","0.7048" +"GO:0007409","axonogenesis",4,0,0.27,357,"1.000","0.7066","0.7066" +"GO:0031175","neuron projection development",4,0,0.27,358,"1.000","0.7066","0.7066" +"GO:0045664","regulation of neuron differentiation",4,0,0.27,359,"1.000","0.7066","0.7066" +"GO:0048667","cell morphogenesis involved in neuron di...",4,0,0.27,360,"1.000","0.7066","0.7066" +"GO:0048812","neuron projection morphogenesis",4,0,0.27,361,"1.000","0.7066","0.7066" +"GO:0048858","cell projection morphogenesis",4,0,0.27,362,"1.000","0.7066","0.7066" +"GO:0050767","regulation of neurogenesis",4,0,0.27,363,"1.000","0.7066","0.7066" +"GO:0051960","regulation of nervous system development",4,0,0.27,364,"1.000","0.7066","0.7066" +"GO:0061564","axon development",4,0,0.27,365,"1.000","0.7066","0.7066" +"GO:0120039","plasma membrane bounded cell projection ...",4,0,0.27,366,"1.000","0.7066","0.7066" +"GO:0001568","blood vessel development",3,0,0.2,367,"1.000","0.7086","0.7086" +"GO:0001944","vasculature development",3,0,0.2,368,"1.000","0.7086","0.7086" +"GO:0009895","negative regulation of catabolic process",3,0,0.2,369,"1.000","0.7086","0.7086" +"GO:0031330","negative regulation of cellular cataboli...",3,0,0.2,370,"1.000","0.7086","0.7086" +"GO:0042127","regulation of cell proliferation",3,0,0.2,371,"1.000","0.7086","0.7086" +"GO:0042981","regulation of apoptotic process",3,0,0.2,372,"1.000","0.7086","0.7086" +"GO:0043067","regulation of programmed cell death",3,0,0.2,373,"1.000","0.7086","0.7086" +"GO:0044283","small molecule biosynthetic process",3,0,0.2,374,"1.000","0.7086","0.7086" +"GO:0048514","blood vessel morphogenesis",3,0,0.2,375,"1.000","0.7086","0.7086" +"GO:0050673","epithelial cell proliferation",3,0,0.2,376,"1.000","0.7086","0.7086" +"GO:0072358","cardiovascular system development",3,0,0.2,377,"1.000","0.7086","0.7086" +"GO:0072359","circulatory system development",3,0,0.2,378,"1.000","0.7086","0.7086" +"GO:0009894","regulation of catabolic process",5,0,0.34,379,"1.000","0.7133","0.7133" +"GO:0006520","cellular amino acid metabolic process",5,0,0.34,380,"1.000","0.7210","0.7210" +"GO:0031960","response to corticosteroid",3,0,0.2,381,"1.000","0.7251","0.7251" +"GO:0051656","establishment of organelle localization",3,0,0.2,382,"1.000","0.7251","0.7251" +"GO:0060341","regulation of cellular localization",3,0,0.2,383,"1.000","0.7251","0.7251" +"GO:0071384","cellular response to corticosteroid stim...",3,0,0.2,384,"1.000","0.7251","0.7251" +"GO:0044093","positive regulation of molecular functio...",9,0,0.61,385,"1.000","0.7295","0.7295" +"GO:0050790","regulation of catalytic activity",9,0,0.61,386,"1.000","0.7390","0.7390" +"GO:0006399","tRNA metabolic process",4,2,0.27,2,"0.024","0.0250","0.7432" +"GO:0032501","multicellular organismal process",27,1,1.83,135,"0.870","0.7493","0.7493" +"GO:0044282","small molecule catabolic process",4,0,0.27,387,"1.000","0.7520","0.7520" +"GO:1901605","alpha-amino acid metabolic process",4,0,0.27,388,"1.000","0.7520","0.7520" +"GO:0050896","response to stimulus",54,5,3.67,36,"0.290","0.0550","0.7571" +"GO:0098662","inorganic cation transmembrane transport",3,0,0.2,389,"1.000","0.7606","0.7606" +"GO:0009653","anatomical structure morphogenesis",14,0,0.95,390,"1.000","0.7625","0.7625" +"GO:0048608","reproductive structure development",4,1,0.27,30,"0.247","0.7631","0.7631" +"GO:0061458","reproductive system development",4,1,0.27,31,"0.247","0.7631","0.7631" +"GO:1901576","organic substance biosynthetic process",47,2,3.19,136,"0.872","0.7696","0.7696" +"GO:0046903","secretion",3,0,0.2,391,"1.000","0.7795","0.7795" +"GO:0006629","lipid metabolic process",13,0,0.88,392,"1.000","0.7837","0.7837" +"GO:0043933","protein-containing complex subunit organ...",5,0,0.34,393,"1.000","0.7952","0.7952" +"GO:0065003","protein-containing complex assembly",5,0,0.34,394,"1.000","0.7952","0.7952" +"GO:0007005","mitochondrion organization",3,0,0.2,395,"1.000","0.7979","0.7979" +"GO:0048522","positive regulation of cellular process",24,1,1.63,130,"0.834","0.8032","0.8032" +"GO:0044249","cellular biosynthetic process",46,2,3.13,133,"0.863","0.8097","0.8097" +"GO:0010033","response to organic substance",9,0,0.61,396,"1.000","0.8120","0.8120" +"GO:0043085","positive regulation of catalytic activit...",6,0,0.41,397,"1.000","0.8129","0.8129" +"GO:0006886","intracellular protein transport",10,1,0.68,82,"0.513","0.8137","0.8137" +"GO:0015031","protein transport",10,1,0.68,83,"0.513","0.8137","0.8137" +"GO:0015833","peptide transport",10,1,0.68,84,"0.513","0.8137","0.8137" +"GO:0042886","amide transport",10,1,0.68,85,"0.513","0.8137","0.8137" +"GO:0009059","macromolecule biosynthetic process",39,2,2.65,121,"0.784","0.8154","0.8154" +"GO:0032880","regulation of protein localization",3,0,0.2,398,"1.000","0.8187","0.8187" +"GO:0010467","gene expression",48,3,3.26,106,"0.675","0.6327","0.8204" +"GO:0016192","vesicle-mediated transport",9,1,0.61,78,"0.476","0.8223","0.8223" +"GO:0006979","response to oxidative stress",3,0,0.2,399,"1.000","0.8246","0.8246" +"GO:0003006","developmental process involved in reprod...",6,1,0.41,58,"0.348","0.8295","0.8295" +"GO:0010628","positive regulation of gene expression",6,0,0.41,400,"1.000","0.8295","0.8295" +"GO:0045893","positive regulation of transcription, DN...",6,0,0.41,401,"1.000","0.8295","0.8295" +"GO:0051254","positive regulation of RNA metabolic pro...",6,0,0.41,402,"1.000","0.8295","0.8295" +"GO:1902680","positive regulation of RNA biosynthetic ...",6,0,0.41,403,"1.000","0.8295","0.8295" +"GO:1903508","positive regulation of nucleic acid-temp...",6,0,0.41,404,"1.000","0.8295","0.8295" +"GO:0030001","metal ion transport",8,0,0.54,405,"1.000","0.8342","0.8342" +"GO:0060255","regulation of macromolecule metabolic pr...",38,2,2.58,117,"0.770","0.8370","0.8370" +"GO:0009056","catabolic process",17,0,1.16,406,"1.000","0.8415","0.8415" +"GO:0015849","organic acid transport",4,0,0.27,407,"1.000","0.8459","0.8459" +"GO:0046942","carboxylic acid transport",4,0,0.27,408,"1.000","0.8459","0.8459" +"GO:1901575","organic substance catabolic process",13,0,0.88,409,"1.000","0.8472","0.8472" +"GO:0019222","regulation of metabolic process",41,2,2.79,127,"0.810","0.8480","0.8480" +"GO:0051171","regulation of nitrogen compound metaboli...",37,2,2.51,115,"0.756","0.8522","0.8522" +"GO:0080090","regulation of primary metabolic process",37,2,2.51,116,"0.756","0.8522","0.8522" +"GO:0032502","developmental process",29,1,1.97,138,"0.889","0.8529","0.8529" +"GO:0031401","positive regulation of protein modificat...",6,1,0.41,59,"0.348","0.8534","0.8534" +"GO:0032270","positive regulation of cellular protein ...",6,1,0.41,60,"0.348","0.8534","0.8534" +"GO:0051247","positive regulation of protein metabolic...",6,1,0.41,61,"0.348","0.8534","0.8534" +"GO:0098660","inorganic ion transmembrane transport",4,0,0.27,410,"1.000","0.8554","0.8554" +"GO:0009057","macromolecule catabolic process",6,0,0.41,411,"1.000","0.8572","0.8572" +"GO:0098655","cation transmembrane transport",4,0,0.27,412,"1.000","0.8601","0.8601" +"GO:0009058","biosynthetic process",49,2,3.33,137,"0.889","0.8635","0.8635" +"GO:0044271","cellular nitrogen compound biosynthetic ...",40,1,2.72,147,"0.956","0.8673","0.8673" +"GO:0071705","nitrogen compound transport",15,1,1.02,103,"0.665","0.8685","0.8685" +"GO:0051649","establishment of localization in cell",16,1,1.09,108,"0.690","0.8710","0.8710" +"GO:2000026","regulation of multicellular organismal d...",7,0,0.48,413,"1.000","0.8774","0.8774" +"GO:0044265","cellular macromolecule catabolic process",5,0,0.34,414,"1.000","0.8801","0.8801" +"GO:0034645","cellular macromolecule biosynthetic proc...",38,2,2.58,118,"0.770","0.8906","0.8906" +"GO:0051179","localization",58,2,3.94,146,"0.943","0.8906","0.8906" +"GO:0031323","regulation of cellular metabolic process",38,2,2.58,119,"0.770","0.8921","0.8921" +"GO:0044248","cellular catabolic process",15,0,1.02,415,"1.000","0.8960","0.8960" +"GO:0019725","cellular homeostasis",4,0,0.27,416,"1.000","0.8993","0.8993" +"GO:0045454","cell redox homeostasis",4,0,0.27,417,"1.000","0.8993","0.8993" +"GO:0007017","microtubule-based process",3,0,0.2,418,"1.000","0.9007","0.9007" +"GO:0055085","transmembrane transport",25,0,1.7,419,"1.000","0.9022","0.9022" +"GO:0030163","protein catabolic process",4,0,0.27,420,"1.000","0.9033","0.9033" +"GO:0006812","cation transport",14,1,0.95,100,"0.639","0.9074","0.9074" +"GO:0051241","negative regulation of multicellular org...",3,0,0.2,421,"1.000","0.9120","0.9120" +"GO:0015711","organic anion transport",5,0,0.34,422,"1.000","0.9148","0.9148" +"GO:0006914","autophagy",4,0,0.27,423,"1.000","0.9187","0.9187" +"GO:0061919","process utilizing autophagic mechanism",4,0,0.27,424,"1.000","0.9187","0.9187" +"GO:0008610","lipid biosynthetic process",5,0,0.34,425,"1.000","0.9198","0.9198" +"GO:0016236","macroautophagy",3,0,0.2,426,"1.000","0.9228","0.9228" +"GO:0009064","glutamine family amino acid metabolic pr...",3,0,0.2,427,"1.000","0.9249","0.9249" +"GO:0006511","ubiquitin-dependent protein catabolic pr...",3,0,0.2,428,"1.000","0.9269","0.9269" +"GO:0019941","modification-dependent protein catabolic...",3,0,0.2,429,"1.000","0.9269","0.9269" +"GO:0043632","modification-dependent macromolecule cat...",3,0,0.2,430,"1.000","0.9269","0.9269" +"GO:0044257","cellular protein catabolic process",3,0,0.2,431,"1.000","0.9269","0.9269" +"GO:0051603","proteolysis involved in cellular protein...",3,0,0.2,432,"1.000","0.9269","0.9269" +"GO:0033365","protein localization to organelle",3,0,0.2,433,"1.000","0.9289","0.9289" +"GO:0072594","establishment of protein localization to...",3,0,0.2,434,"1.000","0.9289","0.9289" +"GO:0051347","positive regulation of transferase activ...",4,0,0.27,435,"1.000","0.9295","0.9295" +"GO:0006820","anion transport",6,0,0.41,436,"1.000","0.9310","0.9310" +"GO:0022603","regulation of anatomical structure morph...",6,0,0.41,437,"1.000","0.9366","0.9366" +"GO:0009893","positive regulation of metabolic process",13,1,0.88,95,"0.611","0.9367","0.9367" +"GO:0031325","positive regulation of cellular metaboli...",13,1,0.88,96,"0.611","0.9367","0.9367" +"GO:0051338","regulation of transferase activity",5,0,0.34,438,"1.000","0.9371","0.9371" +"GO:1901565","organonitrogen compound catabolic proces...",9,0,0.61,439,"1.000","0.9381","0.9381" +"GO:0046907","intracellular transport",15,1,1.02,104,"0.665","0.9384","0.9384" +"GO:0045944","positive regulation of transcription by ...",5,0,0.34,440,"1.000","0.9400","0.9400" +"GO:0010604","positive regulation of macromolecule met...",12,1,0.82,91,"0.581","0.9417","0.9417" +"GO:0051173","positive regulation of nitrogen compound...",12,1,0.82,92,"0.581","0.9417","0.9417" +"GO:0046483","heterocycle metabolic process",56,3,3.81,122,"0.787","0.8949","0.9493" +"GO:1901360","organic cyclic compound metabolic proces...",56,3,3.81,123,"0.787","0.8949","0.9493" +"GO:0006352","DNA-templated transcription, initiation",3,0,0.2,441,"1.000","0.9495","0.9495" +"GO:0019637","organophosphate metabolic process",10,0,0.68,442,"1.000","0.9535","0.9535" +"GO:0010556","regulation of macromolecule biosynthetic...",29,1,1.97,139,"0.889","0.9539","0.9539" +"GO:0031326","regulation of cellular biosynthetic proc...",29,1,1.97,140,"0.889","0.9539","0.9539" +"GO:2000112","regulation of cellular macromolecule bio...",29,1,1.97,141,"0.889","0.9539","0.9539" +"GO:0006811","ion transport",22,1,1.5,126,"0.805","0.9541","0.9541" +"GO:0031329","regulation of cellular catabolic process",4,0,0.27,443,"1.000","0.9577","0.9577" +"GO:0048589","developmental growth",4,0,0.27,444,"1.000","0.9577","0.9577" +"GO:0006139","nucleobase-containing compound metabolic...",51,3,3.47,111,"0.721","0.8676","0.9589" +"GO:0071702","organic substance transport",16,1,1.09,109,"0.690","0.9621","0.9621" +"GO:0006725","cellular aromatic compound metabolic pro...",55,3,3.74,120,"0.774","0.9014","0.9688" +"GO:0006366","transcription by RNA polymerase II",10,0,0.68,445,"1.000","0.9688","0.9688" +"GO:0017144","drug metabolic process",4,0,0.27,446,"1.000","0.9727","0.9727" +"GO:0019439","aromatic compound catabolic process",4,0,0.27,447,"1.000","0.9727","0.9727" +"GO:0044270","cellular nitrogen compound catabolic pro...",4,0,0.27,448,"1.000","0.9727","0.9727" +"GO:0046700","heterocycle catabolic process",4,0,0.27,449,"1.000","0.9727","0.9727" +"GO:1901361","organic cyclic compound catabolic proces...",4,0,0.27,450,"1.000","0.9727","0.9727" +"GO:0051234","establishment of localization",55,2,3.74,145,"0.928","0.9747","0.9747" +"GO:0006357","regulation of transcription by RNA polym...",8,0,0.54,451,"1.000","0.9752","0.9752" +"GO:0008283","cell proliferation",5,0,0.34,452,"1.000","0.9761","0.9761" +"GO:0009791","post-embryonic development",4,0,0.27,453,"1.000","0.9810","0.9810" +"GO:0016567","protein ubiquitination",3,0,0.2,454,"1.000","0.9858","0.9858" +"GO:0032446","protein modification by small protein co...",3,0,0.2,455,"1.000","0.9858","0.9858" +"GO:0070647","protein modification by small protein co...",3,0,0.2,456,"1.000","0.9858","0.9858" +"GO:0055114","oxidation-reduction process",11,0,0.75,457,"1.000","0.9864","0.9864" +"GO:0009889","regulation of biosynthetic process",30,1,2.04,142,"0.898","0.9865","0.9865" +"GO:0010468","regulation of gene expression",30,1,2.04,143,"0.898","0.9865","0.9865" +"GO:0006644","phospholipid metabolic process",8,0,0.54,458,"1.000","0.9871","0.9871" +"GO:0006810","transport",52,2,3.53,144,"0.910","0.9879","0.9879" +"GO:0016070","RNA metabolic process",42,2,2.85,129,"0.821","0.9430","0.9892" +"GO:0090304","nucleic acid metabolic process",49,3,3.33,110,"0.691","0.9536","0.9900" +"GO:0018130","heterocycle biosynthetic process",35,0,2.38,459,"1.000","0.9912","0.9912" +"GO:1901362","organic cyclic compound biosynthetic pro...",35,0,2.38,460,"1.000","0.9912","0.9912" +"GO:0019438","aromatic compound biosynthetic process",34,0,2.31,461,"1.000","0.9928","0.9928" +"GO:0006508","proteolysis",8,0,0.54,462,"1.000","0.9937","0.9937" +"GO:0090407","organophosphate biosynthetic process",3,0,0.2,463,"1.000","0.9948","0.9948" +"GO:0034654","nucleobase-containing compound biosynthe...",32,0,2.17,464,"1.000","0.9957","0.9957" +"GO:0006351","transcription, DNA-templated",31,0,2.11,465,"1.000","0.9968","0.9968" +"GO:0032774","RNA biosynthetic process",31,0,2.11,466,"1.000","0.9968","0.9968" +"GO:0097659","nucleic acid-templated transcription",31,0,2.11,467,"1.000","0.9968","0.9968" +"GO:0034622","cellular protein-containing complex asse...",3,0,0.2,468,"1.000","0.9984","0.9984" +"GO:0034660","ncRNA metabolic process",5,2,0.34,6,"0.038","0.0610","0.9991" +"GO:0019219","regulation of nucleobase-containing comp...",28,0,1.9,469,"1.000","0.9994","0.9994" +"GO:0034470","ncRNA processing",4,2,0.27,3,"0.024","0.0250","0.9996" +"GO:0051252","regulation of RNA metabolic process",27,0,1.83,470,"1.000","0.9998","0.9998" +"GO:0006355","regulation of transcription, DNA-templat...",26,0,1.77,471,"1.000","1.0000","1.0000" +"GO:1903506","regulation of nucleic acid-templated tra...",26,0,1.77,472,"1.000","1.0000","1.0000" +"GO:2001141","regulation of RNA biosynthetic process",26,0,1.77,473,"1.000","1.0000","1.0000" +"GO:0008150","biological_process",206,14,14,474,"1.000","1.0000","1.0000" diff --git a/GO_enrichment_microbiome_output/contrast_postlaying_nonlaying_upregulated.csv b/GO_enrichment_microbiome_output/contrast_postlaying_nonlaying_upregulated.csv index cc4585b..17be213 100644 --- a/GO_enrichment_microbiome_output/contrast_postlaying_nonlaying_upregulated.csv +++ b/GO_enrichment_microbiome_output/contrast_postlaying_nonlaying_upregulated.csv @@ -1,6 +1,615 @@ "GO.ID","Term","Annotated","Significant","Expected","Rank in classicFisher","classicFisher","classicKS","elimKS" -"GO:0044283","small molecule biosynthetic process",7,0,0.44,172,"1","0.0088","0.0088" -"GO:0009166","nucleotide catabolic process",4,0,0.25,173,"1","0.0155","0.0155" -"GO:0034404","nucleobase-containing small molecule bio...",4,0,0.25,174,"1","0.0155","0.0155" -"GO:0046434","organophosphate catabolic process",4,0,0.25,175,"1","0.0155","0.0155" -"GO:1901292","nucleoside phosphate catabolic process",4,0,0.25,176,"1","0.0155","0.0155" +"GO:0044283","small molecule biosynthetic process",7,0,0.44,172,"1.000","0.0088","0.0088" +"GO:0009166","nucleotide catabolic process",4,0,0.25,173,"1.000","0.0155","0.0155" +"GO:0034404","nucleobase-containing small molecule bio...",4,0,0.25,174,"1.000","0.0155","0.0155" +"GO:0046434","organophosphate catabolic process",4,0,0.25,175,"1.000","0.0155","0.0155" +"GO:1901292","nucleoside phosphate catabolic process",4,0,0.25,176,"1.000","0.0155","0.0155" +"GO:0006082","organic acid metabolic process",3,1,0.19,10,"0.179","0.0446","0.0446" +"GO:0006091","generation of precursor metabolites and ...",3,1,0.19,11,"0.179","0.0446","0.0446" +"GO:0019752","carboxylic acid metabolic process",3,1,0.19,12,"0.179","0.0446","0.0446" +"GO:0032787","monocarboxylic acid metabolic process",3,1,0.19,13,"0.179","0.0446","0.0446" +"GO:0043436","oxoacid metabolic process",3,1,0.19,14,"0.179","0.0446","0.0446" +"GO:0055114","oxidation-reduction process",10,2,0.63,5,"0.125","0.0540","0.0540" +"GO:0006753","nucleoside phosphate metabolic process",5,0,0.32,177,"1.000","0.0663","0.0663" +"GO:0009117","nucleotide metabolic process",5,0,0.32,178,"1.000","0.0663","0.0663" +"GO:0019439","aromatic compound catabolic process",5,0,0.32,179,"1.000","0.0663","0.0663" +"GO:0034655","nucleobase-containing compound catabolic...",5,0,0.32,180,"1.000","0.0663","0.0663" +"GO:0044270","cellular nitrogen compound catabolic pro...",5,0,0.32,181,"1.000","0.0663","0.0663" +"GO:0046700","heterocycle catabolic process",5,0,0.32,182,"1.000","0.0663","0.0663" +"GO:1901135","carbohydrate derivative metabolic proces...",7,0,0.44,183,"1.000","0.0697","0.0697" +"GO:1901362","organic cyclic compound biosynthetic pro...",37,4,2.34,30,"0.190","0.0772","0.0772" +"GO:0006366","transcription by RNA polymerase II",8,2,0.51,1,"0.084","0.0883","0.0883" +"GO:0034654","nucleobase-containing compound biosynthe...",34,4,2.15,7,"0.150","0.0929","0.0929" +"GO:0018130","heterocycle biosynthetic process",35,4,2.22,8,"0.163","0.1238","0.1238" +"GO:0019438","aromatic compound biosynthetic process",35,4,2.22,9,"0.163","0.1238","0.1238" +"GO:0019637","organophosphate metabolic process",10,0,0.63,184,"1.000","0.1252","0.1252" +"GO:0006810","transport",58,4,3.67,120,"0.525","0.1292","0.1292" +"GO:0051234","establishment of localization",58,4,3.67,121,"0.525","0.1292","0.1292" +"GO:0051179","localization",62,4,3.93,127,"0.588","0.1342","0.1342" +"GO:0055085","transmembrane transport",24,3,1.52,25,"0.184","0.1585","0.1585" +"GO:0017144","drug metabolic process",6,1,0.38,76,"0.328","0.1659","0.1659" +"GO:0055086","nucleobase-containing small molecule met...",6,0,0.38,185,"1.000","0.1659","0.1659" +"GO:1901361","organic cyclic compound catabolic proces...",6,0,0.38,186,"1.000","0.1659","0.1659" +"GO:1901575","organic substance catabolic process",13,1,0.82,123,"0.583","0.1697","0.1697" +"GO:0006351","transcription, DNA-templated",29,4,1.84,2,"0.094","0.1880","0.1880" +"GO:0032774","RNA biosynthetic process",29,4,1.84,3,"0.094","0.1880","0.1880" +"GO:0097659","nucleic acid-templated transcription",29,4,1.84,4,"0.094","0.1880","0.1880" +"GO:0006352","DNA-templated transcription, initiation",3,1,0.19,15,"0.179","0.1926","0.1926" +"GO:0006357","regulation of transcription by RNA polym...",7,1,0.44,86,"0.372","0.2472","0.2472" +"GO:1901701","cellular response to oxygen-containing c...",5,0,0.32,187,"1.000","0.2479","0.2479" +"GO:0044248","cellular catabolic process",14,1,0.89,129,"0.611","0.2513","0.2513" +"GO:0015672","monovalent inorganic cation transport",8,1,0.51,103,"0.413","0.2651","0.2651" +"GO:0007346","regulation of mitotic cell cycle",4,0,0.25,188,"1.000","0.2708","0.2708" +"GO:0008152","metabolic process",137,8,8.68,151,"0.752","0.2227","0.2751" +"GO:0016070","RNA metabolic process",33,4,2.09,6,"0.138","0.2988","0.2988" +"GO:0006811","ion transport",25,2,1.58,113,"0.487","0.3167","0.3167" +"GO:1903047","mitotic cell cycle process",5,0,0.32,189,"1.000","0.3195","0.3195" +"GO:0044237","cellular metabolic process",110,8,6.97,99,"0.385","0.3501","0.3501" +"GO:0009116","nucleoside metabolic process",3,0,0.19,190,"1.000","0.3539","0.3539" +"GO:1901657","glycosyl compound metabolic process",3,0,0.19,191,"1.000","0.3539","0.3539" +"GO:0051186","cofactor metabolic process",5,1,0.32,49,"0.281","0.3625","0.3625" +"GO:0006355","regulation of transcription, DNA-templat...",24,3,1.52,26,"0.184","0.3841","0.3841" +"GO:0051252","regulation of RNA metabolic process",24,3,1.52,27,"0.184","0.3841","0.3841" +"GO:1903506","regulation of nucleic acid-templated tra...",24,3,1.52,28,"0.184","0.3841","0.3841" +"GO:2001141","regulation of RNA biosynthetic process",24,3,1.52,29,"0.184","0.3841","0.3841" +"GO:0040007","growth",5,0,0.32,192,"1.000","0.3861","0.3861" +"GO:0048589","developmental growth",5,0,0.32,193,"1.000","0.3861","0.3861" +"GO:0051726","regulation of cell cycle",5,0,0.32,194,"1.000","0.3971","0.3971" +"GO:1901360","organic cyclic compound metabolic proces...",47,4,2.98,83,"0.344","0.4008","0.4008" +"GO:0051171","regulation of nitrogen compound metaboli...",34,3,2.15,84,"0.368","0.4031","0.4031" +"GO:0000278","mitotic cell cycle",7,0,0.44,195,"1.000","0.4103","0.4103" +"GO:0044262","cellular carbohydrate metabolic process",3,0,0.19,196,"1.000","0.4124","0.4124" +"GO:0072521","purine-containing compound metabolic pro...",3,0,0.19,197,"1.000","0.4124","0.4124" +"GO:0070887","cellular response to chemical stimulus",12,0,0.76,198,"1.000","0.4160","0.4160" +"GO:0090304","nucleic acid metabolic process",37,4,2.34,31,"0.190","0.4217","0.4217" +"GO:0006139","nucleobase-containing compound metabolic...",44,4,2.79,73,"0.295","0.4293","0.4293" +"GO:0044271","cellular nitrogen compound biosynthetic ...",41,4,2.6,46,"0.248","0.4297","0.4297" +"GO:0071103","DNA conformation change",3,0,0.19,199,"1.000","0.4299","0.4299" +"GO:0010556","regulation of macromolecule biosynthetic...",25,3,1.58,32,"0.201","0.4300","0.4300" +"GO:0019219","regulation of nucleobase-containing comp...",25,3,1.58,33,"0.201","0.4300","0.4300" +"GO:0031326","regulation of cellular biosynthetic proc...",25,3,1.58,34,"0.201","0.4300","0.4300" +"GO:2000112","regulation of cellular macromolecule bio...",25,3,1.58,35,"0.201","0.4300","0.4300" +"GO:0044260","cellular macromolecule metabolic process",79,6,5,98,"0.380","0.4363","0.4363" +"GO:0006807","nitrogen compound metabolic process",101,6,6.4,142,"0.688","0.4370","0.4370" +"GO:1901565","organonitrogen compound catabolic proces...",6,0,0.38,200,"1.000","0.4402","0.4402" +"GO:0000122","negative regulation of transcription by ...",5,1,0.32,50,"0.281","0.4423","0.4423" +"GO:0009056","catabolic process",16,1,1.01,137,"0.662","0.4486","0.4486" +"GO:0006260","DNA replication",3,0,0.19,201,"1.000","0.4507","0.4507" +"GO:0034645","cellular macromolecule biosynthetic proc...",38,4,2.41,36,"0.204","0.4530","0.4530" +"GO:0006469","negative regulation of protein kinase ac...",4,0,0.25,202,"1.000","0.4545","0.4545" +"GO:0033673","negative regulation of kinase activity",4,0,0.25,203,"1.000","0.4545","0.4545" +"GO:0051348","negative regulation of transferase activ...",4,0,0.25,204,"1.000","0.4545","0.4545" +"GO:0042221","response to chemical",19,0,1.2,205,"1.000","0.4549","0.4549" +"GO:0006457","protein folding",3,0,0.19,206,"1.000","0.4597","0.4597" +"GO:0030001","metal ion transport",13,1,0.82,124,"0.583","0.4610","0.4610" +"GO:1901615","organic hydroxy compound metabolic proce...",4,1,0.25,40,"0.232","0.4624","0.4624" +"GO:0007049","cell cycle",9,0,0.57,207,"1.000","0.4700","0.4700" +"GO:0009889","regulation of biosynthetic process",26,3,1.65,37,"0.218","0.4704","0.4704" +"GO:0010468","regulation of gene expression",26,3,1.65,38,"0.218","0.4704","0.4704" +"GO:0006694","steroid biosynthetic process",3,0,0.19,208,"1.000","0.4748","0.4748" +"GO:0008202","steroid metabolic process",3,0,0.19,209,"1.000","0.4748","0.4748" +"GO:1902531","regulation of intracellular signal trans...",10,0,0.63,210,"1.000","0.4812","0.4812" +"GO:0009059","macromolecule biosynthetic process",39,4,2.47,39,"0.219","0.4844","0.4844" +"GO:0060255","regulation of macromolecule metabolic pr...",36,3,2.28,100,"0.406","0.4857","0.4857" +"GO:0080090","regulation of primary metabolic process",36,3,2.28,101,"0.406","0.4857","0.4857" +"GO:0006081","cellular aldehyde metabolic process",3,0,0.19,211,"1.000","0.4871","0.4871" +"GO:0006725","cellular aromatic compound metabolic pro...",45,4,2.85,74,"0.311","0.4928","0.4928" +"GO:0046483","heterocycle metabolic process",45,4,2.85,75,"0.311","0.4928","0.4928" +"GO:0010038","response to metal ion",5,0,0.32,212,"1.000","0.5015","0.5015" +"GO:0006511","ubiquitin-dependent protein catabolic pr...",5,0,0.32,213,"1.000","0.5063","0.5063" +"GO:0019941","modification-dependent protein catabolic...",5,0,0.32,214,"1.000","0.5063","0.5063" +"GO:0030163","protein catabolic process",5,0,0.32,215,"1.000","0.5063","0.5063" +"GO:0043632","modification-dependent macromolecule cat...",5,0,0.32,216,"1.000","0.5063","0.5063" +"GO:0044257","cellular protein catabolic process",5,0,0.32,217,"1.000","0.5063","0.5063" +"GO:0051603","proteolysis involved in cellular protein...",5,0,0.32,218,"1.000","0.5063","0.5063" +"GO:0071704","organic substance metabolic process",122,8,7.73,122,"0.554","0.5085","0.5085" +"GO:0048523","negative regulation of cellular process",21,1,1.33,153,"0.764","0.5100","0.5100" +"GO:0006066","alcohol metabolic process",3,1,0.19,16,"0.179","0.5181","0.5181" +"GO:0031323","regulation of cellular metabolic process",34,3,2.15,85,"0.368","0.5349","0.5349" +"GO:0002262","myeloid cell homeostasis",3,1,0.19,17,"0.179","0.5369","0.5369" +"GO:0030099","myeloid cell differentiation",3,1,0.19,18,"0.179","0.5369","0.5369" +"GO:0030218","erythrocyte differentiation",3,1,0.19,19,"0.179","0.5369","0.5369" +"GO:0034101","erythrocyte homeostasis",3,1,0.19,20,"0.179","0.5369","0.5369" +"GO:0009058","biosynthetic process",52,4,3.29,106,"0.427","0.5344","0.5373" +"GO:0010467","gene expression",41,4,2.6,47,"0.248","0.5465","0.5465" +"GO:0022607","cellular component assembly",14,1,0.89,130,"0.611","0.5478","0.5478" +"GO:0044085","cellular component biogenesis",14,1,0.89,131,"0.611","0.5478","0.5478" +"GO:0044249","cellular biosynthetic process",49,4,3.1,97,"0.377","0.5519","0.5519" +"GO:0031401","positive regulation of protein modificat...",7,0,0.44,219,"1.000","0.5575","0.5575" +"GO:0032270","positive regulation of cellular protein ...",7,0,0.44,220,"1.000","0.5575","0.5575" +"GO:0051247","positive regulation of protein metabolic...",7,0,0.44,221,"1.000","0.5575","0.5575" +"GO:0050793","regulation of developmental process",12,0,0.76,222,"1.000","0.5630","0.5630" +"GO:2000026","regulation of multicellular organismal d...",12,0,0.76,223,"1.000","0.5630","0.5630" +"GO:0045892","negative regulation of transcription, DN...",6,1,0.38,77,"0.328","0.5634","0.5634" +"GO:0051253","negative regulation of RNA metabolic pro...",6,1,0.38,78,"0.328","0.5634","0.5634" +"GO:1902679","negative regulation of RNA biosynthetic ...",6,1,0.38,79,"0.328","0.5634","0.5634" +"GO:1903507","negative regulation of nucleic acid-temp...",6,1,0.38,80,"0.328","0.5634","0.5634" +"GO:0019222","regulation of metabolic process",38,3,2.41,108,"0.444","0.5683","0.5683" +"GO:0044087","regulation of cellular component biogene...",8,1,0.51,104,"0.413","0.5766","0.5766" +"GO:0006468","protein phosphorylation",23,2,1.46,107,"0.440","0.6012","0.6012" +"GO:0010604","positive regulation of macromolecule met...",10,0,0.63,224,"1.000","0.6037","0.6037" +"GO:0051173","positive regulation of nitrogen compound...",10,0,0.63,225,"1.000","0.6037","0.6037" +"GO:0022402","cell cycle process",6,0,0.38,226,"1.000","0.6087","0.6087" +"GO:0044281","small molecule metabolic process",16,2,1.01,48,"0.268","0.0703","0.6127" +"GO:0044238","primary metabolic process",117,7,7.41,143,"0.694","0.6168","0.6168" +"GO:0006812","cation transport",15,1,0.95,136,"0.638","0.6200","0.6200" +"GO:0034314","Arp2/3 complex-mediated actin nucleation",3,1,0.19,21,"0.179","0.6228","0.6228" +"GO:0045010","actin nucleation",3,1,0.19,22,"0.179","0.6228","0.6228" +"GO:0034641","cellular nitrogen compound metabolic pro...",54,4,3.42,112,"0.460","0.6245","0.6245" +"GO:1901576","organic substance biosynthetic process",51,4,3.23,102,"0.410","0.6320","0.6320" +"GO:0006720","isoprenoid metabolic process",3,1,0.19,23,"0.179","0.6323","0.6323" +"GO:0009987","cellular process",163,10,10.33,144,"0.708","0.6357","0.6357" +"GO:0044267","cellular protein metabolic process",48,2,3.04,162,"0.850","0.6382","0.6382" +"GO:0030154","cell differentiation",20,1,1.27,149,"0.746","0.6416","0.6416" +"GO:0006814","sodium ion transport",3,1,0.19,24,"0.179","0.6419","0.6419" +"GO:0048519","negative regulation of biological proces...",24,1,1.52,158,"0.810","0.6422","0.6422" +"GO:0044255","cellular lipid metabolic process",9,1,0.57,109,"0.451","0.6470","0.6470" +"GO:0040008","regulation of growth",3,0,0.19,227,"1.000","0.6514","0.6514" +"GO:0043410","positive regulation of MAPK cascade",3,0,0.19,228,"1.000","0.6514","0.6514" +"GO:0046578","regulation of Ras protein signal transdu...",3,0,0.19,229,"1.000","0.6514","0.6514" +"GO:0048638","regulation of developmental growth",3,0,0.19,230,"1.000","0.6514","0.6514" +"GO:0051056","regulation of small GTPase mediated sign...",3,0,0.19,231,"1.000","0.6514","0.6514" +"GO:0051093","negative regulation of developmental pro...",3,0,0.19,232,"1.000","0.6514","0.6514" +"GO:0009057","macromolecule catabolic process",6,0,0.38,233,"1.000","0.6541","0.6541" +"GO:0044265","cellular macromolecule catabolic process",6,0,0.38,234,"1.000","0.6541","0.6541" +"GO:1901564","organonitrogen compound metabolic proces...",66,2,4.18,171,"0.956","0.6643","0.6643" +"GO:0009890","negative regulation of biosynthetic proc...",7,1,0.44,87,"0.372","0.6647","0.6647" +"GO:0010558","negative regulation of macromolecule bio...",7,1,0.44,88,"0.372","0.6647","0.6647" +"GO:0010629","negative regulation of gene expression",7,1,0.44,89,"0.372","0.6647","0.6647" +"GO:0031327","negative regulation of cellular biosynth...",7,1,0.44,90,"0.372","0.6647","0.6647" +"GO:0045934","negative regulation of nucleobase-contai...",7,1,0.44,91,"0.372","0.6647","0.6647" +"GO:2000113","negative regulation of cellular macromol...",7,1,0.44,92,"0.372","0.6647","0.6647" +"GO:0051960","regulation of nervous system development",8,0,0.51,235,"1.000","0.6673","0.6673" +"GO:0048522","positive regulation of cellular process",21,1,1.33,154,"0.764","0.6677","0.6677" +"GO:0000902","cell morphogenesis",8,0,0.51,236,"1.000","0.6712","0.6712" +"GO:0030182","neuron differentiation",14,0,0.89,237,"1.000","0.6747","0.6747" +"GO:0006644","phospholipid metabolic process",3,0,0.19,238,"1.000","0.6767","0.6767" +"GO:0006325","chromatin organization",6,0,0.38,239,"1.000","0.6788","0.6788" +"GO:0006950","response to stress",14,0,0.89,240,"1.000","0.6791","0.6791" +"GO:0048869","cellular developmental process",21,1,1.33,155,"0.764","0.6813","0.6813" +"GO:0001932","regulation of protein phosphorylation",8,0,0.51,241,"1.000","0.6868","0.6868" +"GO:0043086","negative regulation of catalytic activit...",8,0,0.51,242,"1.000","0.6868","0.6868" +"GO:0044092","negative regulation of molecular functio...",8,0,0.51,243,"1.000","0.6868","0.6868" +"GO:0048518","positive regulation of biological proces...",27,1,1.71,161,"0.848","0.6916","0.6916" +"GO:0007010","cytoskeleton organization",10,1,0.63,116,"0.488","0.6937","0.6937" +"GO:0043170","macromolecule metabolic process",94,6,5.95,128,"0.595","0.6978","0.6978" +"GO:0006820","anion transport",6,0,0.38,244,"1.000","0.6989","0.6989" +"GO:0002520","immune system development",5,1,0.32,51,"0.281","0.7008","0.7008" +"GO:0030097","hemopoiesis",5,1,0.32,52,"0.281","0.7008","0.7008" +"GO:0048534","hematopoietic or lymphoid organ developm...",5,1,0.32,53,"0.281","0.7008","0.7008" +"GO:0048872","homeostasis of number of cells",5,1,0.32,54,"0.281","0.7008","0.7008" +"GO:0051172","negative regulation of nitrogen compound...",13,1,0.82,125,"0.583","0.7022","0.7022" +"GO:0006793","phosphorus metabolic process",38,2,2.41,145,"0.731","0.7072","0.7072" +"GO:0006796","phosphate-containing compound metabolic ...",38,2,2.41,146,"0.731","0.7072","0.7072" +"GO:0006952","defense response",3,0,0.19,245,"1.000","0.7079","0.7079" +"GO:0009607","response to biotic stimulus",3,0,0.19,246,"1.000","0.7079","0.7079" +"GO:0016049","cell growth",3,0,0.19,247,"1.000","0.7079","0.7079" +"GO:0019932","second-messenger-mediated signaling",3,0,0.19,248,"1.000","0.7079","0.7079" +"GO:0043207","response to external biotic stimulus",3,0,0.19,249,"1.000","0.7079","0.7079" +"GO:0051707","response to other organism",3,0,0.19,250,"1.000","0.7079","0.7079" +"GO:0060560","developmental growth involved in morphog...",3,0,0.19,251,"1.000","0.7079","0.7079" +"GO:0072657","protein localization to membrane",3,0,0.19,252,"1.000","0.7079","0.7079" +"GO:0098542","defense response to other organism",3,0,0.19,253,"1.000","0.7079","0.7079" +"GO:1901700","response to oxygen-containing compound",8,0,0.51,254,"1.000","0.7080","0.7080" +"GO:0016310","phosphorylation",25,2,1.58,114,"0.487","0.7130","0.7130" +"GO:0010557","positive regulation of macromolecule bio...",3,0,0.19,255,"1.000","0.7172","0.7172" +"GO:0031328","positive regulation of cellular biosynth...",3,0,0.19,256,"1.000","0.7172","0.7172" +"GO:0031396","regulation of protein ubiquitination",3,0,0.19,257,"1.000","0.7172","0.7172" +"GO:0035966","response to topologically incorrect prot...",3,0,0.19,258,"1.000","0.7172","0.7172" +"GO:0035967","cellular response to topologically incor...",3,0,0.19,259,"1.000","0.7172","0.7172" +"GO:0045893","positive regulation of transcription, DN...",3,0,0.19,260,"1.000","0.7172","0.7172" +"GO:0045935","positive regulation of nucleobase-contai...",3,0,0.19,261,"1.000","0.7172","0.7172" +"GO:0045944","positive regulation of transcription by ...",3,0,0.19,262,"1.000","0.7172","0.7172" +"GO:0051254","positive regulation of RNA metabolic pro...",3,0,0.19,263,"1.000","0.7172","0.7172" +"GO:0071900","regulation of protein serine/threonine k...",3,0,0.19,264,"1.000","0.7172","0.7172" +"GO:1902680","positive regulation of RNA biosynthetic ...",3,0,0.19,265,"1.000","0.7172","0.7172" +"GO:1903320","regulation of protein modification by sm...",3,0,0.19,266,"1.000","0.7172","0.7172" +"GO:1903508","positive regulation of nucleic acid-temp...",3,0,0.19,267,"1.000","0.7172","0.7172" +"GO:0043549","regulation of kinase activity",5,0,0.32,268,"1.000","0.7176","0.7176" +"GO:0045859","regulation of protein kinase activity",5,0,0.32,269,"1.000","0.7176","0.7176" +"GO:0051338","regulation of transferase activity",5,0,0.32,270,"1.000","0.7176","0.7176" +"GO:0034220","ion transmembrane transport",11,1,0.7,117,"0.522","0.7209","0.7209" +"GO:0022008","neurogenesis",15,0,0.95,271,"1.000","0.7227","0.7227" +"GO:0048699","generation of neurons",15,0,0.95,272,"1.000","0.7227","0.7227" +"GO:0051239","regulation of multicellular organismal p...",15,0,0.95,273,"1.000","0.7227","0.7227" +"GO:0006259","DNA metabolic process",6,0,0.38,274,"1.000","0.7252","0.7252" +"GO:0007275","multicellular organism development",32,1,2.03,164,"0.896","0.7266","0.7266" +"GO:0005975","carbohydrate metabolic process",9,0,0.57,275,"1.000","0.7275","0.7275" +"GO:0030838","positive regulation of actin filament po...",4,1,0.25,41,"0.232","0.7320","0.7320" +"GO:0031334","positive regulation of protein complex a...",4,1,0.25,42,"0.232","0.7320","0.7320" +"GO:0032273","positive regulation of protein polymeriz...",4,1,0.25,43,"0.232","0.7320","0.7320" +"GO:0051495","positive regulation of cytoskeleton orga...",4,1,0.25,44,"0.232","0.7320","0.7320" +"GO:1902905","positive regulation of supramolecular fi...",4,1,0.25,45,"0.232","0.7320","0.7320" +"GO:0070647","protein modification by small protein co...",8,0,0.51,276,"1.000","0.7346","0.7346" +"GO:0016197","endosomal transport",4,0,0.25,277,"1.000","0.7346","0.7346" +"GO:0015698","inorganic anion transport",3,0,0.19,278,"1.000","0.7355","0.7355" +"GO:0098656","anion transmembrane transport",3,0,0.19,279,"1.000","0.7355","0.7355" +"GO:0032940","secretion by cell",5,1,0.32,55,"0.281","0.7366","0.7366" +"GO:0046903","secretion",5,1,0.32,56,"0.281","0.7366","0.7366" +"GO:0032989","cellular component morphogenesis",9,0,0.57,280,"1.000","0.7382","0.7382" +"GO:0007399","nervous system development",20,0,1.27,281,"1.000","0.7421","0.7421" +"GO:0009725","response to hormone",5,0,0.32,282,"1.000","0.7460","0.7460" +"GO:0071495","cellular response to endogenous stimulus",5,0,0.32,283,"1.000","0.7460","0.7460" +"GO:0045454","cell redox homeostasis",4,0,0.25,284,"1.000","0.7477","0.7477" +"GO:0032259","methylation",3,0,0.19,285,"1.000","0.7506","0.7506" +"GO:0019538","protein metabolic process",58,2,3.67,168,"0.922","0.7533","0.7533" +"GO:0008284","positive regulation of cell proliferatio...",3,0,0.19,286,"1.000","0.7535","0.7535" +"GO:0019220","regulation of phosphate metabolic proces...",9,0,0.57,287,"1.000","0.7540","0.7540" +"GO:0042325","regulation of phosphorylation",9,0,0.57,288,"1.000","0.7540","0.7540" +"GO:0051174","regulation of phosphorus metabolic proce...",9,0,0.57,289,"1.000","0.7540","0.7540" +"GO:0071310","cellular response to organic substance",9,0,0.57,290,"1.000","0.7540","0.7540" +"GO:0009893","positive regulation of metabolic process",12,0,0.76,291,"1.000","0.7551","0.7551" +"GO:0006396","RNA processing",4,0,0.25,292,"1.000","0.7555","0.7555" +"GO:0010605","negative regulation of macromolecule met...",14,1,0.89,132,"0.611","0.7564","0.7564" +"GO:0031324","negative regulation of cellular metaboli...",14,1,0.89,133,"0.611","0.7564","0.7564" +"GO:0043933","protein-containing complex subunit organ...",11,1,0.7,118,"0.522","0.7579","0.7579" +"GO:0065003","protein-containing complex assembly",11,1,0.7,119,"0.522","0.7579","0.7579" +"GO:0032501","multicellular organismal process",33,1,2.09,165,"0.904","0.7588","0.7588" +"GO:0000165","MAPK cascade",4,0,0.25,293,"1.000","0.7632","0.7632" +"GO:0001934","positive regulation of protein phosphory...",4,0,0.25,294,"1.000","0.7632","0.7632" +"GO:0007264","small GTPase mediated signal transductio...",4,0,0.25,295,"1.000","0.7632","0.7632" +"GO:0007265","Ras protein signal transduction",4,0,0.25,296,"1.000","0.7632","0.7632" +"GO:0023014","signal transduction by protein phosphory...",4,0,0.25,297,"1.000","0.7632","0.7632" +"GO:0043408","regulation of MAPK cascade",4,0,0.25,298,"1.000","0.7632","0.7632" +"GO:0050803","regulation of synapse structure or activ...",4,0,0.25,299,"1.000","0.7632","0.7632" +"GO:0050807","regulation of synapse organization",4,0,0.25,300,"1.000","0.7632","0.7632" +"GO:0051301","cell division",4,0,0.25,301,"1.000","0.7632","0.7632" +"GO:0010033","response to organic substance",12,0,0.76,302,"1.000","0.7657","0.7657" +"GO:0048468","cell development",16,1,1.01,138,"0.662","0.7658","0.7658" +"GO:0015711","organic anion transport",3,0,0.19,303,"1.000","0.7683","0.7683" +"GO:0043412","macromolecule modification",40,2,2.53,152,"0.759","0.7685","0.7685" +"GO:0010646","regulation of cell communication",18,0,1.14,304,"1.000","0.7711","0.7711" +"GO:0023051","regulation of signaling",18,0,1.14,305,"1.000","0.7711","0.7711" +"GO:1901566","organonitrogen compound biosynthetic pro...",11,0,0.7,306,"1.000","0.7782","0.7782" +"GO:0006464","cellular protein modification process",39,2,2.47,147,"0.745","0.7795","0.7795" +"GO:0036211","protein modification process",39,2,2.47,148,"0.745","0.7795","0.7795" +"GO:0006518","peptide metabolic process",7,0,0.44,307,"1.000","0.7796","0.7796" +"GO:0043603","cellular amide metabolic process",7,0,0.44,308,"1.000","0.7796","0.7796" +"GO:0001654","eye development",3,0,0.19,309,"1.000","0.7829","0.7829" +"GO:0048880","sensory system development",3,0,0.19,310,"1.000","0.7829","0.7829" +"GO:0150063","visual system development",3,0,0.19,311,"1.000","0.7829","0.7829" +"GO:0035556","intracellular signal transduction",15,0,0.95,312,"1.000","0.7843","0.7843" +"GO:0048731","system development",28,1,1.77,163,"0.859","0.7882","0.7882" +"GO:0048856","anatomical structure development",34,1,2.15,166,"0.911","0.7890","0.7890" +"GO:0016482","cytosolic transport",3,0,0.19,313,"1.000","0.7943","0.7943" +"GO:0042147","retrograde transport, endosome to Golgi",3,0,0.19,314,"1.000","0.7943","0.7943" +"GO:0008610","lipid biosynthetic process",8,0,0.51,315,"1.000","0.7947","0.7947" +"GO:0009966","regulation of signal transduction",16,0,1.01,316,"1.000","0.7954","0.7954" +"GO:0007018","microtubule-based movement",5,0,0.32,317,"1.000","0.7960","0.7960" +"GO:0031929","TOR signaling",3,0,0.19,318,"1.000","0.8028","0.8028" +"GO:0007015","actin filament organization",5,1,0.32,57,"0.281","0.8048","0.8048" +"GO:0008064","regulation of actin polymerization or de...",5,1,0.32,58,"0.281","0.8048","0.8048" +"GO:0008154","actin polymerization or depolymerization",5,1,0.32,59,"0.281","0.8048","0.8048" +"GO:0030041","actin filament polymerization",5,1,0.32,60,"0.281","0.8048","0.8048" +"GO:0030832","regulation of actin filament length",5,1,0.32,61,"0.281","0.8048","0.8048" +"GO:0030833","regulation of actin filament polymerizat...",5,1,0.32,62,"0.281","0.8048","0.8048" +"GO:0032271","regulation of protein polymerization",5,1,0.32,63,"0.281","0.8048","0.8048" +"GO:0032535","regulation of cellular component size",5,1,0.32,64,"0.281","0.8048","0.8048" +"GO:0032956","regulation of actin cytoskeleton organiz...",5,1,0.32,65,"0.281","0.8048","0.8048" +"GO:0032970","regulation of actin filament-based proce...",5,1,0.32,66,"0.281","0.8048","0.8048" +"GO:0043254","regulation of protein complex assembly",5,1,0.32,67,"0.281","0.8048","0.8048" +"GO:0044089","positive regulation of cellular componen...",5,1,0.32,68,"0.281","0.8048","0.8048" +"GO:0051493","regulation of cytoskeleton organization",5,1,0.32,69,"0.281","0.8048","0.8048" +"GO:0090066","regulation of anatomical structure size",5,1,0.32,70,"0.281","0.8048","0.8048" +"GO:0110053","regulation of actin filament organizatio...",5,1,0.32,71,"0.281","0.8048","0.8048" +"GO:1902903","regulation of supramolecular fiber organ...",5,1,0.32,72,"0.281","0.8048","0.8048" +"GO:0006412","translation",6,0,0.38,319,"1.000","0.8086","0.8086" +"GO:0016567","protein ubiquitination",6,0,0.38,320,"1.000","0.8086","0.8086" +"GO:0032446","protein modification by small protein co...",6,0,0.38,321,"1.000","0.8086","0.8086" +"GO:0043043","peptide biosynthetic process",6,0,0.38,322,"1.000","0.8086","0.8086" +"GO:0043604","amide biosynthetic process",6,0,0.38,323,"1.000","0.8086","0.8086" +"GO:0007420","brain development",10,0,0.63,324,"1.000","0.8095","0.8095" +"GO:0031325","positive regulation of cellular metaboli...",10,0,0.63,325,"1.000","0.8095","0.8095" +"GO:0060322","head development",10,0,0.63,326,"1.000","0.8095","0.8095" +"GO:0006397","mRNA processing",3,0,0.19,327,"1.000","0.8111","0.8111" +"GO:0016071","mRNA metabolic process",3,0,0.19,328,"1.000","0.8111","0.8111" +"GO:0019725","cellular homeostasis",9,0,0.57,329,"1.000","0.8129","0.8129" +"GO:0002376","immune system process",8,1,0.51,105,"0.413","0.8137","0.8137" +"GO:0032502","developmental process",35,1,2.22,167,"0.917","0.8173","0.8173" +"GO:0010035","response to inorganic substance",8,0,0.51,330,"1.000","0.8188","0.8188" +"GO:0022603","regulation of anatomical structure morph...",4,0,0.25,331,"1.000","0.8199","0.8199" +"GO:0006915","apoptotic process",4,0,0.25,332,"1.000","0.8223","0.8223" +"GO:0008219","cell death",4,0,0.25,333,"1.000","0.8223","0.8223" +"GO:0010941","regulation of cell death",4,0,0.25,334,"1.000","0.8223","0.8223" +"GO:0012501","programmed cell death",4,0,0.25,335,"1.000","0.8223","0.8223" +"GO:0014070","response to organic cyclic compound",4,0,0.25,336,"1.000","0.8223","0.8223" +"GO:0032880","regulation of protein localization",4,0,0.25,337,"1.000","0.8223","0.8223" +"GO:0042981","regulation of apoptotic process",4,0,0.25,338,"1.000","0.8223","0.8223" +"GO:0043066","negative regulation of apoptotic process",4,0,0.25,339,"1.000","0.8223","0.8223" +"GO:0043067","regulation of programmed cell death",4,0,0.25,340,"1.000","0.8223","0.8223" +"GO:0043069","negative regulation of programmed cell d...",4,0,0.25,341,"1.000","0.8223","0.8223" +"GO:0060548","negative regulation of cell death",4,0,0.25,342,"1.000","0.8223","0.8223" +"GO:0007186","G protein-coupled receptor signaling pat...",9,0,0.57,343,"1.000","0.8240","0.8240" +"GO:0033554","cellular response to stress",7,0,0.44,344,"1.000","0.8293","0.8293" +"GO:0009891","positive regulation of biosynthetic proc...",4,0,0.25,345,"1.000","0.8316","0.8316" +"GO:0010628","positive regulation of gene expression",4,0,0.25,346,"1.000","0.8316","0.8316" +"GO:0000226","microtubule cytoskeleton organization",5,0,0.32,347,"1.000","0.8364","0.8364" +"GO:0010562","positive regulation of phosphorus metabo...",5,0,0.32,348,"1.000","0.8364","0.8364" +"GO:0042327","positive regulation of phosphorylation",5,0,0.32,349,"1.000","0.8364","0.8364" +"GO:0045937","positive regulation of phosphate metabol...",5,0,0.32,350,"1.000","0.8364","0.8364" +"GO:0051129","negative regulation of cellular componen...",5,0,0.32,351,"1.000","0.8364","0.8364" +"GO:0065008","regulation of biological quality",25,2,1.58,115,"0.487","0.8374","0.8374" +"GO:0007167","enzyme linked receptor protein signaling...",5,0,0.32,352,"1.000","0.8385","0.8385" +"GO:0044093","positive regulation of molecular functio...",5,0,0.32,353,"1.000","0.8385","0.8385" +"GO:0048878","chemical homeostasis",5,0,0.32,354,"1.000","0.8385","0.8385" +"GO:0055082","cellular chemical homeostasis",5,0,0.32,355,"1.000","0.8385","0.8385" +"GO:0070838","divalent metal ion transport",5,0,0.32,356,"1.000","0.8385","0.8385" +"GO:0072511","divalent inorganic cation transport",5,0,0.32,357,"1.000","0.8385","0.8385" +"GO:0065007","biological regulation",84,5,5.32,140,"0.673","0.8418","0.8418" +"GO:0009892","negative regulation of metabolic process",16,1,1.01,139,"0.662","0.8451","0.8451" +"GO:0051128","regulation of cellular component organiz...",14,1,0.89,134,"0.611","0.8453","0.8453" +"GO:0060341","regulation of cellular localization",5,0,0.32,358,"1.000","0.8485","0.8485" +"GO:0006629","lipid metabolic process",13,1,0.82,126,"0.583","0.8492","0.8492" +"GO:0006873","cellular ion homeostasis",4,0,0.25,359,"1.000","0.8497","0.8497" +"GO:0006875","cellular metal ion homeostasis",4,0,0.25,360,"1.000","0.8497","0.8497" +"GO:0030003","cellular cation homeostasis",4,0,0.25,361,"1.000","0.8497","0.8497" +"GO:0050801","ion homeostasis",4,0,0.25,362,"1.000","0.8497","0.8497" +"GO:0055065","metal ion homeostasis",4,0,0.25,363,"1.000","0.8497","0.8497" +"GO:0055080","cation homeostasis",4,0,0.25,364,"1.000","0.8497","0.8497" +"GO:0098771","inorganic ion homeostasis",4,0,0.25,365,"1.000","0.8497","0.8497" +"GO:0031399","regulation of protein modification proce...",11,0,0.7,366,"1.000","0.8550","0.8550" +"GO:0032268","regulation of cellular protein metabolic...",11,0,0.7,367,"1.000","0.8550","0.8550" +"GO:0050790","regulation of catalytic activity",11,0,0.7,368,"1.000","0.8550","0.8550" +"GO:0010638","positive regulation of organelle organiz...",6,1,0.38,81,"0.328","0.8558","0.8558" +"GO:0051258","protein polymerization",6,1,0.38,82,"0.328","0.8558","0.8558" +"GO:0016192","vesicle-mediated transport",17,1,1.08,141,"0.685","0.8626","0.8626" +"GO:0051276","chromosome organization",8,0,0.51,369,"1.000","0.8639","0.8639" +"GO:1902533","positive regulation of intracellular sig...",7,0,0.44,370,"1.000","0.8665","0.8665" +"GO:0042127","regulation of cell proliferation",4,0,0.25,371,"1.000","0.8670","0.8670" +"GO:0051649","establishment of localization in cell",16,0,1.01,372,"1.000","0.8675","0.8675" +"GO:0006816","calcium ion transport",4,0,0.25,373,"1.000","0.8691","0.8691" +"GO:0043085","positive regulation of catalytic activit...",4,0,0.25,374,"1.000","0.8691","0.8691" +"GO:0051235","maintenance of location",4,0,0.25,375,"1.000","0.8691","0.8691" +"GO:0009967","positive regulation of signal transducti...",10,0,0.63,376,"1.000","0.8703","0.8703" +"GO:0010647","positive regulation of cell communicatio...",10,0,0.63,377,"1.000","0.8703","0.8703" +"GO:0023056","positive regulation of signaling",10,0,0.63,378,"1.000","0.8703","0.8703" +"GO:0010975","regulation of neuron projection developm...",4,0,0.25,379,"1.000","0.8774","0.8774" +"GO:0099173","postsynapse organization",4,0,0.25,380,"1.000","0.8774","0.8774" +"GO:0001933","negative regulation of protein phosphory...",6,0,0.38,381,"1.000","0.8849","0.8849" +"GO:0009968","negative regulation of signal transducti...",6,0,0.38,382,"1.000","0.8849","0.8849" +"GO:0010648","negative regulation of cell communicatio...",6,0,0.38,383,"1.000","0.8849","0.8849" +"GO:0023057","negative regulation of signaling",6,0,0.38,384,"1.000","0.8849","0.8849" +"GO:0042326","negative regulation of phosphorylation",6,0,0.38,385,"1.000","0.8849","0.8849" +"GO:0048585","negative regulation of response to stimu...",6,0,0.38,386,"1.000","0.8849","0.8849" +"GO:0032990","cell part morphogenesis",6,0,0.38,387,"1.000","0.8866","0.8866" +"GO:0048812","neuron projection morphogenesis",6,0,0.38,388,"1.000","0.8866","0.8866" +"GO:0048858","cell projection morphogenesis",6,0,0.38,389,"1.000","0.8866","0.8866" +"GO:0050808","synapse organization",6,0,0.38,390,"1.000","0.8866","0.8866" +"GO:0051241","negative regulation of multicellular org...",6,0,0.38,391,"1.000","0.8866","0.8866" +"GO:0061024","membrane organization",6,0,0.38,392,"1.000","0.8866","0.8866" +"GO:0120039","plasma membrane bounded cell projection ...",6,0,0.38,393,"1.000","0.8866","0.8866" +"GO:0007417","central nervous system development",12,0,0.76,394,"1.000","0.8920","0.8920" +"GO:0030029","actin filament-based process",7,1,0.44,93,"0.372","0.8928","0.8928" +"GO:0030036","actin cytoskeleton organization",7,1,0.44,94,"0.372","0.8928","0.8928" +"GO:0033043","regulation of organelle organization",7,1,0.44,95,"0.372","0.8928","0.8928" +"GO:0097435","supramolecular fiber organization",7,1,0.44,96,"0.372","0.8928","0.8928" +"GO:0033993","response to lipid",5,0,0.32,395,"1.000","0.8934","0.8934" +"GO:0048583","regulation of response to stimulus",18,0,1.14,396,"1.000","0.8937","0.8937" +"GO:0010256","endomembrane system organization",3,0,0.19,397,"1.000","0.8940","0.8940" +"GO:0048513","animal organ development",20,1,1.27,150,"0.746","0.8941","0.8941" +"GO:0046907","intracellular transport",13,0,0.82,398,"1.000","0.8951","0.8951" +"GO:0009719","response to endogenous stimulus",8,0,0.51,399,"1.000","0.8957","0.8957" +"GO:0071702","organic substance transport",14,0,0.89,400,"1.000","0.8986","0.8986" +"GO:0002790","peptide secretion",3,0,0.19,401,"1.000","0.9006","0.9006" +"GO:0007169","transmembrane receptor protein tyrosine ...",3,0,0.19,402,"1.000","0.9006","0.9006" +"GO:0007178","transmembrane receptor protein serine/th...",3,0,0.19,403,"1.000","0.9006","0.9006" +"GO:0009306","protein secretion",3,0,0.19,404,"1.000","0.9006","0.9006" +"GO:0010720","positive regulation of cell development",3,0,0.19,405,"1.000","0.9006","0.9006" +"GO:0033674","positive regulation of kinase activity",3,0,0.19,406,"1.000","0.9006","0.9006" +"GO:0043393","regulation of protein binding",3,0,0.19,407,"1.000","0.9006","0.9006" +"GO:0045666","positive regulation of neuron differenti...",3,0,0.19,408,"1.000","0.9006","0.9006" +"GO:0045860","positive regulation of protein kinase ac...",3,0,0.19,409,"1.000","0.9006","0.9006" +"GO:0050769","positive regulation of neurogenesis",3,0,0.19,410,"1.000","0.9006","0.9006" +"GO:0051098","regulation of binding",3,0,0.19,411,"1.000","0.9006","0.9006" +"GO:0051347","positive regulation of transferase activ...",3,0,0.19,412,"1.000","0.9006","0.9006" +"GO:0051962","positive regulation of nervous system de...",3,0,0.19,413,"1.000","0.9006","0.9006" +"GO:0070588","calcium ion transmembrane transport",3,0,0.19,414,"1.000","0.9006","0.9006" +"GO:0072507","divalent inorganic cation homeostasis",3,0,0.19,415,"1.000","0.9006","0.9006" +"GO:0045664","regulation of neuron differentiation",7,0,0.44,416,"1.000","0.9015","0.9015" +"GO:0050767","regulation of neurogenesis",7,0,0.44,417,"1.000","0.9015","0.9015" +"GO:0060284","regulation of cell development",7,0,0.44,418,"1.000","0.9015","0.9015" +"GO:0042592","homeostatic process",14,1,0.89,135,"0.611","0.9048","0.9048" +"GO:0016358","dendrite development",3,0,0.19,419,"1.000","0.9070","0.9070" +"GO:0006470","protein dephosphorylation",4,0,0.25,420,"1.000","0.9102","0.9102" +"GO:0090407","organophosphate biosynthetic process",4,0,0.25,421,"1.000","0.9155","0.9155" +"GO:0098660","inorganic ion transmembrane transport",5,0,0.32,422,"1.000","0.9181","0.9181" +"GO:0098662","inorganic cation transmembrane transport",5,0,0.32,423,"1.000","0.9181","0.9181" +"GO:0050896","response to stimulus",55,0,3.48,424,"1.000","0.9205","0.9205" +"GO:0051246","regulation of protein metabolic process",13,0,0.82,425,"1.000","0.9218","0.9218" +"GO:0065009","regulation of molecular function",13,0,0.82,426,"1.000","0.9218","0.9218" +"GO:0051641","cellular localization",23,1,1.46,157,"0.796","0.9221","0.9221" +"GO:0006979","response to oxidative stress",4,0,0.25,427,"1.000","0.9224","0.9224" +"GO:0009611","response to wounding",4,0,0.25,428,"1.000","0.9224","0.9224" +"GO:0009636","response to toxic substance",4,0,0.25,429,"1.000","0.9224","0.9224" +"GO:0010243","response to organonitrogen compound",4,0,0.25,430,"1.000","0.9224","0.9224" +"GO:1901698","response to nitrogen compound",4,0,0.25,431,"1.000","0.9224","0.9224" +"GO:1902532","negative regulation of intracellular sig...",4,0,0.25,432,"1.000","0.9224","0.9224" +"GO:0006974","cellular response to DNA damage stimulus",5,0,0.32,433,"1.000","0.9272","0.9272" +"GO:0018193","peptidyl-amino acid modification",6,0,0.38,434,"1.000","0.9296","0.9296" +"GO:0006732","coenzyme metabolic process",3,0,0.19,435,"1.000","0.9362","0.9362" +"GO:0009108","coenzyme biosynthetic process",3,0,0.19,436,"1.000","0.9362","0.9362" +"GO:0051188","cofactor biosynthetic process",3,0,0.19,437,"1.000","0.9362","0.9362" +"GO:0034622","cellular protein-containing complex asse...",9,1,0.57,110,"0.451","0.9412","0.9412" +"GO:0051130","positive regulation of cellular componen...",9,1,0.57,111,"0.451","0.9412","0.9412" +"GO:0001101","response to acid chemical",3,0,0.19,438,"1.000","0.9415","0.9415" +"GO:0007568","aging",3,0,0.19,439,"1.000","0.9415","0.9415" +"GO:0010817","regulation of hormone levels",3,0,0.19,440,"1.000","0.9415","0.9415" +"GO:0046677","response to antibiotic",3,0,0.19,441,"1.000","0.9415","0.9415" +"GO:0030900","forebrain development",4,0,0.25,442,"1.000","0.9474","0.9474" +"GO:0043543","protein acylation",4,0,0.25,443,"1.000","0.9529","0.9529" +"GO:0071705","nitrogen compound transport",11,0,0.7,444,"1.000","0.9537","0.9537" +"GO:0050789","regulation of biological process",80,4,5.07,159,"0.815","0.9548","0.9548" +"GO:0050794","regulation of cellular process",76,4,4.81,156,"0.773","0.9560","0.9560" +"GO:0009628","response to abiotic stimulus",6,0,0.38,445,"1.000","0.9593","0.9593" +"GO:0009791","post-embryonic development",3,0,0.19,446,"1.000","0.9605","0.9605" +"GO:0010001","glial cell differentiation",3,0,0.19,447,"1.000","0.9605","0.9605" +"GO:0042063","gliogenesis",3,0,0.19,448,"1.000","0.9605","0.9605" +"GO:0048569","post-embryonic animal organ development",3,0,0.19,449,"1.000","0.9605","0.9605" +"GO:0070848","response to growth factor",3,0,0.19,450,"1.000","0.9605","0.9605" +"GO:0071363","cellular response to growth factor stimu...",3,0,0.19,451,"1.000","0.9605","0.9605" +"GO:0015031","protein transport",9,0,0.57,452,"1.000","0.9623","0.9623" +"GO:0015833","peptide transport",9,0,0.57,453,"1.000","0.9623","0.9623" +"GO:0034613","cellular protein localization",9,0,0.57,454,"1.000","0.9623","0.9623" +"GO:0042886","amide transport",9,0,0.57,455,"1.000","0.9623","0.9623" +"GO:0045184","establishment of protein localization",9,0,0.57,456,"1.000","0.9623","0.9623" +"GO:0070727","cellular macromolecule localization",9,0,0.57,457,"1.000","0.9623","0.9623" +"GO:0006473","protein acetylation",3,0,0.19,458,"1.000","0.9646","0.9646" +"GO:0006475","internal protein amino acid acetylation",3,0,0.19,459,"1.000","0.9646","0.9646" +"GO:0016569","covalent chromatin modification",3,0,0.19,460,"1.000","0.9646","0.9646" +"GO:0016570","histone modification",3,0,0.19,461,"1.000","0.9646","0.9646" +"GO:0016573","histone acetylation",3,0,0.19,462,"1.000","0.9646","0.9646" +"GO:0018205","peptidyl-lysine modification",3,0,0.19,463,"1.000","0.9646","0.9646" +"GO:0018393","internal peptidyl-lysine acetylation",3,0,0.19,464,"1.000","0.9646","0.9646" +"GO:0018394","peptidyl-lysine acetylation",3,0,0.19,465,"1.000","0.9646","0.9646" +"GO:0098655","cation transmembrane transport",7,0,0.44,466,"1.000","0.9648","0.9648" +"GO:0031175","neuron projection development",9,0,0.57,467,"1.000","0.9655","0.9655" +"GO:0023052","signaling",40,0,2.53,468,"1.000","0.9685","0.9685" +"GO:0007154","cell communication",39,0,2.47,469,"1.000","0.9694","0.9694" +"GO:0009653","anatomical structure morphogenesis",16,0,1.01,470,"1.000","0.9695","0.9695" +"GO:0007165","signal transduction",37,0,2.34,471,"1.000","0.9713","0.9713" +"GO:0016043","cellular component organization",37,1,2.34,169,"0.929","0.9732","0.9732" +"GO:0071840","cellular component organization or bioge...",37,1,2.34,170,"0.929","0.9732","0.9732" +"GO:0033036","macromolecule localization",17,0,1.08,472,"1.000","0.9732","0.9732" +"GO:0010563","negative regulation of phosphorus metabo...",7,0,0.44,473,"1.000","0.9732","0.9732" +"GO:0045936","negative regulation of phosphate metabol...",7,0,0.44,474,"1.000","0.9732","0.9732" +"GO:0008104","protein localization",15,0,0.95,475,"1.000","0.9766","0.9766" +"GO:0006508","proteolysis",14,0,0.89,476,"1.000","0.9766","0.9766" +"GO:0007017","microtubule-based process",10,0,0.63,477,"1.000","0.9786","0.9786" +"GO:0048666","neuron development",10,0,0.63,478,"1.000","0.9786","0.9786" +"GO:0051716","cellular response to stimulus",46,0,2.91,479,"1.000","0.9788","0.9788" +"GO:0034762","regulation of transmembrane transport",4,0,0.25,480,"1.000","0.9800","0.9800" +"GO:0034765","regulation of ion transmembrane transpor...",4,0,0.25,481,"1.000","0.9800","0.9800" +"GO:0043269","regulation of ion transport",4,0,0.25,482,"1.000","0.9800","0.9800" +"GO:1904062","regulation of cation transmembrane trans...",4,0,0.25,483,"1.000","0.9800","0.9800" +"GO:0048584","positive regulation of response to stimu...",12,0,0.76,484,"1.000","0.9815","0.9815" +"GO:0032879","regulation of localization",11,0,0.7,485,"1.000","0.9831","0.9831" +"GO:0006886","intracellular protein transport",4,0,0.25,486,"1.000","0.9835","0.9835" +"GO:0045595","regulation of cell differentiation",8,0,0.51,487,"1.000","0.9841","0.9841" +"GO:0009888","tissue development",10,0,0.63,488,"1.000","0.9847","0.9847" +"GO:0007600","sensory perception",3,0,0.19,489,"1.000","0.9850","0.9850" +"GO:0009612","response to mechanical stimulus",3,0,0.19,490,"1.000","0.9850","0.9850" +"GO:0010959","regulation of metal ion transport",3,0,0.19,491,"1.000","0.9850","0.9850" +"GO:0022898","regulation of transmembrane transporter ...",3,0,0.19,492,"1.000","0.9850","0.9850" +"GO:0032409","regulation of transporter activity",3,0,0.19,493,"1.000","0.9850","0.9850" +"GO:0032412","regulation of ion transmembrane transpor...",3,0,0.19,494,"1.000","0.9850","0.9850" +"GO:0043900","regulation of multi-organism process",3,0,0.19,495,"1.000","0.9850","0.9850" +"GO:0044057","regulation of system process",3,0,0.19,496,"1.000","0.9850","0.9850" +"GO:2001257","regulation of cation channel activity",3,0,0.19,497,"1.000","0.9850","0.9850" +"GO:0006928","movement of cell or subcellular componen...",11,0,0.7,498,"1.000","0.9878","0.9878" +"GO:0030030","cell projection organization",11,0,0.7,499,"1.000","0.9878","0.9878" +"GO:0120036","plasma membrane bounded cell projection ...",11,0,0.7,500,"1.000","0.9878","0.9878" +"GO:0009790","embryo development",8,0,0.51,501,"1.000","0.9878","0.9878" +"GO:0031400","negative regulation of protein modificat...",8,0,0.51,502,"1.000","0.9878","0.9878" +"GO:0032269","negative regulation of cellular protein ...",8,0,0.51,503,"1.000","0.9878","0.9878" +"GO:0051248","negative regulation of protein metabolic...",8,0,0.51,504,"1.000","0.9878","0.9878" +"GO:0007155","cell adhesion",7,0,0.44,505,"1.000","0.9894","0.9894" +"GO:0009887","animal organ morphogenesis",7,0,0.44,506,"1.000","0.9894","0.9894" +"GO:0016311","dephosphorylation",7,0,0.44,507,"1.000","0.9894","0.9894" +"GO:0022610","biological adhesion",7,0,0.44,508,"1.000","0.9894","0.9894" +"GO:0042493","response to drug",7,0,0.44,509,"1.000","0.9894","0.9894" +"GO:0051049","regulation of transport",7,0,0.44,510,"1.000","0.9894","0.9894" +"GO:0007166","cell surface receptor signaling pathway",14,0,0.89,511,"1.000","0.9903","0.9903" +"GO:0006897","endocytosis",6,0,0.38,512,"1.000","0.9909","0.9909" +"GO:0007423","sensory organ development",6,0,0.38,513,"1.000","0.9909","0.9909" +"GO:0009792","embryo development ending in birth or eg...",6,0,0.38,514,"1.000","0.9909","0.9909" +"GO:0031344","regulation of cell projection organizati...",6,0,0.38,515,"1.000","0.9909","0.9909" +"GO:0048729","tissue morphogenesis",6,0,0.38,516,"1.000","0.9909","0.9909" +"GO:0098657","import into cell",6,0,0.38,517,"1.000","0.9909","0.9909" +"GO:0120035","regulation of plasma membrane bounded ce...",6,0,0.38,518,"1.000","0.9909","0.9909" +"GO:0006996","organelle organization",25,1,1.58,160,"0.824","0.9917","0.9917" +"GO:0001775","cell activation",5,0,0.32,519,"1.000","0.9925","0.9925" +"GO:0002009","morphogenesis of an epithelium",5,0,0.32,520,"1.000","0.9925","0.9925" +"GO:0043009","chordate embryonic development",5,0,0.32,521,"1.000","0.9925","0.9925" +"GO:0045597","positive regulation of cell differentiat...",5,0,0.32,522,"1.000","0.9925","0.9925" +"GO:0048598","embryonic morphogenesis",5,0,0.32,523,"1.000","0.9925","0.9925" +"GO:0051336","regulation of hydrolase activity",5,0,0.32,524,"1.000","0.9925","0.9925" +"GO:0060429","epithelium development",5,0,0.32,525,"1.000","0.9925","0.9925" +"GO:0098609","cell-cell adhesion",5,0,0.32,526,"1.000","0.9925","0.9925" +"GO:0007389","pattern specification process",4,0,0.25,527,"1.000","0.9935","0.9935" +"GO:0002682","regulation of immune system process",4,0,0.25,528,"1.000","0.9940","0.9940" +"GO:0006955","immune response",4,0,0.25,529,"1.000","0.9940","0.9940" +"GO:0030334","regulation of cell migration",4,0,0.25,530,"1.000","0.9940","0.9940" +"GO:0035239","tube morphogenesis",4,0,0.25,531,"1.000","0.9940","0.9940" +"GO:0035295","tube development",4,0,0.25,532,"1.000","0.9940","0.9940" +"GO:0040012","regulation of locomotion",4,0,0.25,533,"1.000","0.9940","0.9940" +"GO:0042110","T cell activation",4,0,0.25,534,"1.000","0.9940","0.9940" +"GO:0045321","leukocyte activation",4,0,0.25,535,"1.000","0.9940","0.9940" +"GO:0046649","lymphocyte activation",4,0,0.25,536,"1.000","0.9940","0.9940" +"GO:0051270","regulation of cellular component movemen...",4,0,0.25,537,"1.000","0.9940","0.9940" +"GO:0051346","negative regulation of hydrolase activit...",4,0,0.25,538,"1.000","0.9940","0.9940" +"GO:0072359","circulatory system development",4,0,0.25,539,"1.000","0.9940","0.9940" +"GO:2000145","regulation of cell motility",4,0,0.25,540,"1.000","0.9940","0.9940" +"GO:0009605","response to external stimulus",9,0,0.57,541,"1.000","0.9952","0.9952" +"GO:0048646","anatomical structure formation involved ...",9,0,0.57,542,"1.000","0.9952","0.9952" +"GO:0001764","neuron migration",3,0,0.19,543,"1.000","0.9955","0.9955" +"GO:0002521","leukocyte differentiation",3,0,0.19,544,"1.000","0.9955","0.9955" +"GO:0002694","regulation of leukocyte activation",3,0,0.19,545,"1.000","0.9955","0.9955" +"GO:0003002","regionalization",3,0,0.19,546,"1.000","0.9955","0.9955" +"GO:0006909","phagocytosis",3,0,0.19,547,"1.000","0.9955","0.9955" +"GO:0007507","heart development",3,0,0.19,548,"1.000","0.9955","0.9955" +"GO:0016331","morphogenesis of embryonic epithelium",3,0,0.19,549,"1.000","0.9955","0.9955" +"GO:0022604","regulation of cell morphogenesis",3,0,0.19,550,"1.000","0.9955","0.9955" +"GO:0030031","cell projection assembly",3,0,0.19,551,"1.000","0.9955","0.9955" +"GO:0030098","lymphocyte differentiation",3,0,0.19,552,"1.000","0.9955","0.9955" +"GO:0030100","regulation of endocytosis",3,0,0.19,553,"1.000","0.9955","0.9955" +"GO:0030217","T cell differentiation",3,0,0.19,554,"1.000","0.9955","0.9955" +"GO:0031346","positive regulation of cell projection o...",3,0,0.19,555,"1.000","0.9955","0.9955" +"GO:0032101","regulation of response to external stimu...",3,0,0.19,556,"1.000","0.9955","0.9955" +"GO:0032103","positive regulation of response to exter...",3,0,0.19,557,"1.000","0.9955","0.9955" +"GO:0032943","mononuclear cell proliferation",3,0,0.19,558,"1.000","0.9955","0.9955" +"GO:0035148","tube formation",3,0,0.19,559,"1.000","0.9955","0.9955" +"GO:0042098","T cell proliferation",3,0,0.19,560,"1.000","0.9955","0.9955" +"GO:0045580","regulation of T cell differentiation",3,0,0.19,561,"1.000","0.9955","0.9955" +"GO:0045619","regulation of lymphocyte differentiation",3,0,0.19,562,"1.000","0.9955","0.9955" +"GO:0046651","lymphocyte proliferation",3,0,0.19,563,"1.000","0.9955","0.9955" +"GO:0050776","regulation of immune response",3,0,0.19,564,"1.000","0.9955","0.9955" +"GO:0050863","regulation of T cell activation",3,0,0.19,565,"1.000","0.9955","0.9955" +"GO:0050865","regulation of cell activation",3,0,0.19,566,"1.000","0.9955","0.9955" +"GO:0051050","positive regulation of transport",3,0,0.19,567,"1.000","0.9955","0.9955" +"GO:0051249","regulation of lymphocyte activation",3,0,0.19,568,"1.000","0.9955","0.9955" +"GO:0060491","regulation of cell projection assembly",3,0,0.19,569,"1.000","0.9955","0.9955" +"GO:0060562","epithelial tube morphogenesis",3,0,0.19,570,"1.000","0.9955","0.9955" +"GO:0060627","regulation of vesicle-mediated transport",3,0,0.19,571,"1.000","0.9955","0.9955" +"GO:0070661","leukocyte proliferation",3,0,0.19,572,"1.000","0.9955","0.9955" +"GO:0120031","plasma membrane bounded cell projection ...",3,0,0.19,573,"1.000","0.9955","0.9955" +"GO:0120032","regulation of plasma membrane bounded ce...",3,0,0.19,574,"1.000","0.9955","0.9955" +"GO:1902105","regulation of leukocyte differentiation",3,0,0.19,575,"1.000","0.9955","0.9955" +"GO:1903706","regulation of hemopoiesis",3,0,0.19,576,"1.000","0.9955","0.9955" +"GO:2000241","regulation of reproductive process",3,0,0.19,577,"1.000","0.9955","0.9955" +"GO:0051240","positive regulation of multicellular org...",10,0,0.63,578,"1.000","0.9961","0.9961" +"GO:0051704","multi-organism process",10,0,0.63,579,"1.000","0.9961","0.9961" +"GO:0003008","system process",9,0,0.57,580,"1.000","0.9965","0.9965" +"GO:0007267","cell-cell signaling",5,0,0.32,581,"1.000","0.9967","0.9967" +"GO:0007610","behavior",8,0,0.51,582,"1.000","0.9969","0.9969" +"GO:0008283","cell proliferation",8,0,0.51,583,"1.000","0.9969","0.9969" +"GO:0050877","nervous system process",8,0,0.51,584,"1.000","0.9969","0.9969" +"GO:0051094","positive regulation of developmental pro...",8,0,0.51,585,"1.000","0.9969","0.9969" +"GO:0000003","reproduction",6,0,0.38,586,"1.000","0.9977","0.9977" +"GO:0016477","cell migration",6,0,0.38,587,"1.000","0.9977","0.9977" +"GO:0022414","reproductive process",6,0,0.38,588,"1.000","0.9977","0.9977" +"GO:0040011","locomotion",6,0,0.38,589,"1.000","0.9977","0.9977" +"GO:0048870","cell motility",6,0,0.38,590,"1.000","0.9977","0.9977" +"GO:0051674","localization of cell",6,0,0.38,591,"1.000","0.9977","0.9977" +"GO:0016055","Wnt signaling pathway",3,0,0.19,592,"1.000","0.9980","0.9980" +"GO:0198738","cell-cell signaling by wnt",3,0,0.19,593,"1.000","0.9980","0.9980" +"GO:1905114","cell surface receptor signaling pathway ...",3,0,0.19,594,"1.000","0.9980","0.9980" +"GO:0000904","cell morphogenesis involved in different...",5,0,0.32,595,"1.000","0.9981","0.9981" +"GO:0003006","developmental process involved in reprod...",5,0,0.32,596,"1.000","0.9981","0.9981" +"GO:0019953","sexual reproduction",5,0,0.32,597,"1.000","0.9981","0.9981" +"GO:0032504","multicellular organism reproduction",5,0,0.32,598,"1.000","0.9981","0.9981" +"GO:0044703","multi-organism reproductive process",5,0,0.32,599,"1.000","0.9981","0.9981" +"GO:0048609","multicellular organismal reproductive pr...",5,0,0.32,600,"1.000","0.9981","0.9981" +"GO:0048667","cell morphogenesis involved in neuron di...",5,0,0.32,601,"1.000","0.9981","0.9981" +"GO:0061564","axon development",5,0,0.32,602,"1.000","0.9981","0.9981" +"GO:0007276","gamete generation",4,0,0.25,603,"1.000","0.9985","0.9985" +"GO:0007281","germ cell development",4,0,0.25,604,"1.000","0.9985","0.9985" +"GO:0007283","spermatogenesis",4,0,0.25,605,"1.000","0.9985","0.9985" +"GO:0007409","axonogenesis",4,0,0.25,606,"1.000","0.9985","0.9985" +"GO:0022412","cellular process involved in reproductio...",4,0,0.25,607,"1.000","0.9985","0.9985" +"GO:0048232","male gamete generation",4,0,0.25,608,"1.000","0.9985","0.9985" +"GO:0061061","muscle structure development",4,0,0.25,609,"1.000","0.9985","0.9985" +"GO:0007611","learning or memory",3,0,0.19,610,"1.000","0.9989","0.9989" +"GO:0045165","cell fate commitment",3,0,0.19,611,"1.000","0.9989","0.9989" +"GO:0050890","cognition",3,0,0.19,612,"1.000","0.9989","0.9989" +"GO:0051668","localization within membrane",3,0,0.19,613,"1.000","0.9989","0.9989" +"GO:0008150","biological_process",221,14,14,614,"1.000","1.0000","1.0000" diff --git a/GO_enrichment_microbiome_output/contrast_prelaying_laying_downregulated.csv b/GO_enrichment_microbiome_output/contrast_prelaying_laying_downregulated.csv index aa5216e..4f594fc 100644 --- a/GO_enrichment_microbiome_output/contrast_prelaying_laying_downregulated.csv +++ b/GO_enrichment_microbiome_output/contrast_prelaying_laying_downregulated.csv @@ -4,3 +4,585 @@ "GO:1901564","organonitrogen compound metabolic proces...",59,13,8.28,9,"0.0355","0.00604","0.00604" "GO:1901135","carbohydrate derivative metabolic proces...",13,2,1.82,202,"0.5691","0.01133","0.01133" "GO:0019538","protein metabolic process",48,11,6.73,12,"0.0428","0.01166","0.01166" +"GO:0044267","cellular protein metabolic process",39,10,5.47,7,"0.0251","0.01379","0.01379" +"GO:0006464","cellular protein modification process",32,8,4.49,15,"0.0549","0.01770","0.01770" +"GO:0036211","protein modification process",32,8,4.49,16,"0.0549","0.01770","0.01770" +"GO:0071704","organic substance metabolic process",127,24,17.81,3,"0.0114","0.00120","0.04394" +"GO:0016311","dephosphorylation",5,3,0.7,6,"0.0207","0.04470","0.04470" +"GO:0006643","membrane lipid metabolic process",3,1,0.42,71,"0.3660","0.04643","0.04643" +"GO:0006664","glycolipid metabolic process",3,1,0.42,72,"0.3660","0.04643","0.04643" +"GO:0046488","phosphatidylinositol metabolic process",3,2,0.42,14,"0.0523","0.04643","0.04643" +"GO:1903509","liposaccharide metabolic process",3,1,0.42,73,"0.3660","0.04643","0.04643" +"GO:0019637","organophosphate metabolic process",15,3,2.1,69,"0.3527","0.04923","0.04923" +"GO:0043170","macromolecule metabolic process",93,19,13.05,5,"0.0166","0.05423","0.05423" +"GO:0043412","macromolecule modification",35,8,4.91,17,"0.0890","0.05991","0.05991" +"GO:0045454","cell redox homeostasis",5,0,0.7,333,"1.0000","0.07569","0.07569" +"GO:0051235","maintenance of location",4,1,0.56,144,"0.4561","0.08435","0.08435" +"GO:0006897","endocytosis",6,1,0.84,207,"0.6007","0.09754","0.09754" +"GO:0009888","tissue development",6,1,0.84,208,"0.6007","0.09754","0.09754" +"GO:0098657","import into cell",6,1,0.84,209,"0.6007","0.09754","0.09754" +"GO:0009653","anatomical structure morphogenesis",11,1,1.54,305,"0.8182","0.10468","0.10468" +"GO:0044260","cellular macromolecule metabolic process",78,17,10.94,4,"0.0134","0.11737","0.11737" +"GO:0006629","lipid metabolic process",14,3,1.96,61,"0.3105","0.12502","0.12502" +"GO:0019725","cellular homeostasis",9,1,1.26,278,"0.7503","0.12589","0.12589" +"GO:0048646","anatomical structure formation involved ...",7,1,0.98,244,"0.6583","0.12830","0.12830" +"GO:0006470","protein dephosphorylation",4,2,0.56,19,"0.0955","0.12924","0.12924" +"GO:0055086","nucleobase-containing small molecule met...",8,1,1.12,258,"0.7078","0.13242","0.13242" +"GO:0044237","cellular metabolic process",115,21,16.13,13,"0.0442","0.00832","0.13843" +"GO:0006397","mRNA processing",5,0,0.7,334,"1.0000","0.14623","0.14623" +"GO:0016071","mRNA metabolic process",5,0,0.7,335,"1.0000","0.14623","0.14623" +"GO:1901701","cellular response to oxygen-containing c...",4,1,0.56,145,"0.4561","0.14942","0.14942" +"GO:0006753","nucleoside phosphate metabolic process",6,1,0.84,210,"0.6007","0.15223","0.15223" +"GO:0009117","nucleotide metabolic process",6,1,0.84,211,"0.6007","0.15223","0.15223" +"GO:1901137","carbohydrate derivative biosynthetic pro...",6,1,0.84,212,"0.6007","0.15223","0.15223" +"GO:0006650","glycerophospholipid metabolic process",4,2,0.56,20,"0.0955","0.15346","0.15346" +"GO:0046486","glycerolipid metabolic process",4,2,0.56,21,"0.0955","0.15346","0.15346" +"GO:0042592","homeostatic process",14,1,1.96,315,"0.8877","0.15475","0.15475" +"GO:0019693","ribose phosphate metabolic process",4,1,0.56,146,"0.4561","0.16035","0.16035" +"GO:0072521","purine-containing compound metabolic pro...",4,0,0.56,336,"1.0000","0.16035","0.16035" +"GO:0044255","cellular lipid metabolic process",10,2,1.4,140,"0.4217","0.16698","0.16698" +"GO:0006352","DNA-templated transcription, initiation",5,0,0.7,337,"1.0000","0.17779","0.17779" +"GO:0008610","lipid biosynthetic process",8,1,1.12,259,"0.7078","0.18797","0.18797" +"GO:0048666","neuron development",9,1,1.26,279,"0.7503","0.19727","0.19727" +"GO:0007167","enzyme linked receptor protein signaling...",4,1,0.56,147,"0.4561","0.20147","0.20147" +"GO:0009059","macromolecule biosynthetic process",41,10,5.75,10,"0.0359","0.20604","0.20604" +"GO:0034645","cellular macromolecule biosynthetic proc...",41,10,5.75,11,"0.0359","0.20604","0.20604" +"GO:0001775","cell activation",4,1,0.56,148,"0.4561","0.21494","0.21494" +"GO:0002682","regulation of immune system process",4,1,0.56,149,"0.4561","0.21494","0.21494" +"GO:0009887","animal organ morphogenesis",4,1,0.56,150,"0.4561","0.21494","0.21494" +"GO:0032940","secretion by cell",4,1,0.56,151,"0.4561","0.21494","0.21494" +"GO:0048729","tissue morphogenesis",4,1,0.56,152,"0.4561","0.21494","0.21494" +"GO:0050776","regulation of immune response",4,1,0.56,153,"0.4561","0.21494","0.21494" +"GO:0051241","negative regulation of multicellular org...",4,1,0.56,154,"0.4561","0.21494","0.21494" +"GO:0048598","embryonic morphogenesis",4,0,0.56,338,"1.0000","0.21494","0.21494" +"GO:0060429","epithelium development",4,0,0.56,339,"1.0000","0.21494","0.21494" +"GO:0007423","sensory organ development",5,0,0.7,340,"1.0000","0.22013","0.22013" +"GO:0009605","response to external stimulus",8,1,1.12,260,"0.7078","0.22750","0.22750" +"GO:0016192","vesicle-mediated transport",11,1,1.54,306,"0.8182","0.22834","0.22834" +"GO:0031175","neuron projection development",8,1,1.12,261,"0.7078","0.23786","0.23786" +"GO:0044249","cellular biosynthetic process",54,10,7.57,39,"0.1908","0.24145","0.24145" +"GO:0009790","embryo development",7,0,0.98,341,"1.0000","0.24430","0.24430" +"GO:0010604","positive regulation of macromolecule met...",9,3,1.26,26,"0.1166","0.25338","0.25338" +"GO:0031399","regulation of protein modification proce...",9,2,1.26,127,"0.3676","0.25338","0.25338" +"GO:0032268","regulation of cellular protein metabolic...",9,2,1.26,128,"0.3676","0.25338","0.25338" +"GO:0051246","regulation of protein metabolic process",9,2,1.26,129,"0.3676","0.25338","0.25338" +"GO:0009611","response to wounding",3,1,0.42,74,"0.3660","0.25778","0.25778" +"GO:0043393","regulation of protein binding",3,1,0.42,75,"0.3660","0.25778","0.25778" +"GO:0051098","regulation of binding",3,1,0.42,76,"0.3660","0.25778","0.25778" +"GO:0006091","generation of precursor metabolites and ...",4,0,0.56,342,"1.0000","0.26087","0.26087" +"GO:0010243","response to organonitrogen compound",3,1,0.42,77,"0.3660","0.26453","0.26453" +"GO:1901698","response to nitrogen compound",3,1,0.42,78,"0.3660","0.26453","0.26453" +"GO:0045444","fat cell differentiation",3,0,0.42,343,"1.0000","0.26681","0.26681" +"GO:0050789","regulation of biological process",76,11,10.66,175,"0.5199","0.26815","0.26815" +"GO:0007399","nervous system development",18,1,2.52,322,"0.9416","0.26912","0.26912" +"GO:0007420","brain development",7,0,0.98,344,"1.0000","0.27083","0.27083" +"GO:0060322","head development",7,0,0.98,345,"1.0000","0.27083","0.27083" +"GO:0033554","cellular response to stress",8,2,1.12,62,"0.3118","0.27649","0.27649" +"GO:0008283","cell proliferation",6,1,0.84,213,"0.6007","0.27996","0.27996" +"GO:0006468","protein phosphorylation",20,3,2.81,200,"0.5545","0.28187","0.28187" +"GO:0016310","phosphorylation",25,3,3.51,275,"0.7174","0.28276","0.28276" +"GO:0050877","nervous system process",7,1,0.98,245,"0.6583","0.28631","0.28631" +"GO:1901576","organic substance biosynthetic process",55,10,7.71,43,"0.2091","0.28713","0.28713" +"GO:0006325","chromatin organization",6,2,0.84,41,"0.1993","0.29699","0.29699" +"GO:0001654","eye development",4,0,0.56,346,"1.0000","0.29962","0.29962" +"GO:0048880","sensory system development",4,0,0.56,347,"1.0000","0.29962","0.29962" +"GO:0150063","visual system development",4,0,0.56,348,"1.0000","0.29962","0.29962" +"GO:0009792","embryo development ending in birth or eg...",6,0,0.84,349,"1.0000","0.30047","0.30047" +"GO:0032989","cellular component morphogenesis",6,0,0.84,350,"1.0000","0.30047","0.30047" +"GO:0008380","RNA splicing",4,0,0.56,351,"1.0000","0.30175","0.30175" +"GO:0006816","calcium ion transport",3,1,0.42,79,"0.3660","0.30238","0.30238" +"GO:0007178","transmembrane receptor protein serine/th...",3,1,0.42,80,"0.3660","0.30238","0.30238" +"GO:0070588","calcium ion transmembrane transport",3,1,0.42,81,"0.3660","0.30238","0.30238" +"GO:0070838","divalent metal ion transport",3,1,0.42,82,"0.3660","0.30238","0.30238" +"GO:0072511","divalent inorganic cation transport",3,1,0.42,83,"0.3660","0.30238","0.30238" +"GO:0007612","learning",3,0,0.42,352,"1.0000","0.30238","0.30238" +"GO:0009612","response to mechanical stimulus",3,0,0.42,353,"1.0000","0.30238","0.30238" +"GO:0032147","activation of protein kinase activity",3,0,0.42,354,"1.0000","0.30238","0.30238" +"GO:0001932","regulation of protein phosphorylation",7,1,0.98,246,"0.6583","0.30557","0.30557" +"GO:0006457","protein folding",4,1,0.56,155,"0.4561","0.31689","0.31689" +"GO:0010941","regulation of cell death",3,1,0.42,84,"0.3660","0.31735","0.31735" +"GO:0031346","positive regulation of cell projection o...",3,1,0.42,85,"0.3660","0.31735","0.31735" +"GO:0032880","regulation of protein localization",3,1,0.42,86,"0.3660","0.31735","0.31735" +"GO:0032943","mononuclear cell proliferation",3,1,0.42,87,"0.3660","0.31735","0.31735" +"GO:0042098","T cell proliferation",3,1,0.42,88,"0.3660","0.31735","0.31735" +"GO:0042110","T cell activation",3,1,0.42,89,"0.3660","0.31735","0.31735" +"GO:0042981","regulation of apoptotic process",3,1,0.42,90,"0.3660","0.31735","0.31735" +"GO:0043066","negative regulation of apoptotic process",3,1,0.42,91,"0.3660","0.31735","0.31735" +"GO:0043067","regulation of programmed cell death",3,1,0.42,92,"0.3660","0.31735","0.31735" +"GO:0043069","negative regulation of programmed cell d...",3,1,0.42,93,"0.3660","0.31735","0.31735" +"GO:0045321","leukocyte activation",3,1,0.42,94,"0.3660","0.31735","0.31735" +"GO:0046649","lymphocyte activation",3,1,0.42,95,"0.3660","0.31735","0.31735" +"GO:0046651","lymphocyte proliferation",3,1,0.42,96,"0.3660","0.31735","0.31735" +"GO:0060548","negative regulation of cell death",3,1,0.42,97,"0.3660","0.31735","0.31735" +"GO:0070661","leukocyte proliferation",3,1,0.42,98,"0.3660","0.31735","0.31735" +"GO:0002009","morphogenesis of an epithelium",3,0,0.42,355,"1.0000","0.31735","0.31735" +"GO:0006909","phagocytosis",3,0,0.42,356,"1.0000","0.31735","0.31735" +"GO:0016049","cell growth",3,0,0.42,357,"1.0000","0.31735","0.31735" +"GO:0016331","morphogenesis of embryonic epithelium",3,0,0.42,358,"1.0000","0.31735","0.31735" +"GO:0030100","regulation of endocytosis",3,0,0.42,359,"1.0000","0.31735","0.31735" +"GO:0035148","tube formation",3,0,0.42,360,"1.0000","0.31735","0.31735" +"GO:0035239","tube morphogenesis",3,0,0.42,361,"1.0000","0.31735","0.31735" +"GO:0035295","tube development",3,0,0.42,362,"1.0000","0.31735","0.31735" +"GO:0048589","developmental growth",3,0,0.42,363,"1.0000","0.31735","0.31735" +"GO:0060627","regulation of vesicle-mediated transport",3,0,0.42,364,"1.0000","0.31735","0.31735" +"GO:0007155","cell adhesion",7,0,0.98,365,"1.0000","0.32049","0.32049" +"GO:0022610","biological adhesion",7,0,0.98,366,"1.0000","0.32049","0.32049" +"GO:0031929","TOR signaling",4,2,0.56,22,"0.0955","0.32130","0.32130" +"GO:0022008","neurogenesis",12,1,1.68,311,"0.8450","0.32383","0.32383" +"GO:0048699","generation of neurons",12,1,1.68,312,"0.8450","0.32383","0.32383" +"GO:0070647","protein modification by small protein co...",3,1,0.42,99,"0.3660","0.32499","0.32499" +"GO:0006644","phospholipid metabolic process",7,2,0.98,48,"0.2553","0.32895","0.32895" +"GO:0006260","DNA replication",4,2,0.56,23,"0.0955","0.33021","0.33021" +"GO:0009987","cellular process",159,25,22.3,37,"0.1724","0.06720","0.33712" +"GO:0044283","small molecule biosynthetic process",5,0,0.7,367,"1.0000","0.34166","0.34166" +"GO:1901575","organic substance catabolic process",9,1,1.26,280,"0.7503","0.34296","0.34296" +"GO:0006807","nitrogen compound metabolic process",104,21,14.59,2,"0.0107","0.01070","0.34357" +"GO:0051049","regulation of transport",6,1,0.84,214,"0.6007","0.34403","0.34403" +"GO:0061564","axon development",5,1,0.7,179,"0.5338","0.34784","0.34784" +"GO:0006163","purine nucleotide metabolic process",3,0,0.42,368,"1.0000","0.35654","0.35654" +"GO:0006164","purine nucleotide biosynthetic process",3,0,0.42,369,"1.0000","0.35654","0.35654" +"GO:0006754","ATP biosynthetic process",3,0,0.42,370,"1.0000","0.35654","0.35654" +"GO:0009123","nucleoside monophosphate metabolic proce...",3,0,0.42,371,"1.0000","0.35654","0.35654" +"GO:0009124","nucleoside monophosphate biosynthetic pr...",3,0,0.42,372,"1.0000","0.35654","0.35654" +"GO:0009126","purine nucleoside monophosphate metaboli...",3,0,0.42,373,"1.0000","0.35654","0.35654" +"GO:0009127","purine nucleoside monophosphate biosynth...",3,0,0.42,374,"1.0000","0.35654","0.35654" +"GO:0009141","nucleoside triphosphate metabolic proces...",3,0,0.42,375,"1.0000","0.35654","0.35654" +"GO:0009142","nucleoside triphosphate biosynthetic pro...",3,0,0.42,376,"1.0000","0.35654","0.35654" +"GO:0009144","purine nucleoside triphosphate metabolic...",3,0,0.42,377,"1.0000","0.35654","0.35654" +"GO:0009145","purine nucleoside triphosphate biosynthe...",3,0,0.42,378,"1.0000","0.35654","0.35654" +"GO:0009150","purine ribonucleotide metabolic process",3,0,0.42,379,"1.0000","0.35654","0.35654" +"GO:0009152","purine ribonucleotide biosynthetic proce...",3,0,0.42,380,"1.0000","0.35654","0.35654" +"GO:0009156","ribonucleoside monophosphate biosyntheti...",3,0,0.42,381,"1.0000","0.35654","0.35654" +"GO:0009161","ribonucleoside monophosphate metabolic p...",3,0,0.42,382,"1.0000","0.35654","0.35654" +"GO:0009167","purine ribonucleoside monophosphate meta...",3,0,0.42,383,"1.0000","0.35654","0.35654" +"GO:0009168","purine ribonucleoside monophosphate bios...",3,0,0.42,384,"1.0000","0.35654","0.35654" +"GO:0009199","ribonucleoside triphosphate metabolic pr...",3,0,0.42,385,"1.0000","0.35654","0.35654" +"GO:0009201","ribonucleoside triphosphate biosynthetic...",3,0,0.42,386,"1.0000","0.35654","0.35654" +"GO:0009205","purine ribonucleoside triphosphate metab...",3,0,0.42,387,"1.0000","0.35654","0.35654" +"GO:0009206","purine ribonucleoside triphosphate biosy...",3,0,0.42,388,"1.0000","0.35654","0.35654" +"GO:0009259","ribonucleotide metabolic process",3,0,0.42,389,"1.0000","0.35654","0.35654" +"GO:0009260","ribonucleotide biosynthetic process",3,0,0.42,390,"1.0000","0.35654","0.35654" +"GO:0046034","ATP metabolic process",3,0,0.42,391,"1.0000","0.35654","0.35654" +"GO:0046390","ribose phosphate biosynthetic process",3,0,0.42,392,"1.0000","0.35654","0.35654" +"GO:0072522","purine-containing compound biosynthetic ...",3,0,0.42,393,"1.0000","0.35654","0.35654" +"GO:0009892","negative regulation of metabolic process",15,2,2.1,242,"0.6521","0.35705","0.35705" +"GO:0031401","positive regulation of protein modificat...",5,1,0.7,180,"0.5338","0.36248","0.36248" +"GO:0032270","positive regulation of cellular protein ...",5,1,0.7,181,"0.5338","0.36248","0.36248" +"GO:0044093","positive regulation of molecular functio...",5,1,0.7,182,"0.5338","0.36248","0.36248" +"GO:0051247","positive regulation of protein metabolic...",5,1,0.7,183,"0.5338","0.36248","0.36248" +"GO:0043549","regulation of kinase activity",5,0,0.7,394,"1.0000","0.36248","0.36248" +"GO:0045859","regulation of protein kinase activity",5,0,0.7,395,"1.0000","0.36248","0.36248" +"GO:0051338","regulation of transferase activity",5,0,0.7,396,"1.0000","0.36248","0.36248" +"GO:0018193","peptidyl-amino acid modification",5,2,0.7,32,"0.1453","0.36885","0.36885" +"GO:0000902","cell morphogenesis",5,0,0.7,397,"1.0000","0.36885","0.36885" +"GO:0000904","cell morphogenesis involved in different...",5,0,0.7,398,"1.0000","0.36885","0.36885" +"GO:0010562","positive regulation of phosphorus metabo...",5,0,0.7,399,"1.0000","0.36885","0.36885" +"GO:0032990","cell part morphogenesis",5,0,0.7,400,"1.0000","0.36885","0.36885" +"GO:0042327","positive regulation of phosphorylation",5,0,0.7,401,"1.0000","0.36885","0.36885" +"GO:0043009","chordate embryonic development",5,0,0.7,402,"1.0000","0.36885","0.36885" +"GO:0045937","positive regulation of phosphate metabol...",5,0,0.7,403,"1.0000","0.36885","0.36885" +"GO:0048667","cell morphogenesis involved in neuron di...",5,0,0.7,404,"1.0000","0.36885","0.36885" +"GO:0048812","neuron projection morphogenesis",5,0,0.7,405,"1.0000","0.36885","0.36885" +"GO:0048858","cell projection morphogenesis",5,0,0.7,406,"1.0000","0.36885","0.36885" +"GO:0120039","plasma membrane bounded cell projection ...",5,0,0.7,407,"1.0000","0.36885","0.36885" +"GO:0008284","positive regulation of cell proliferatio...",3,0,0.42,408,"1.0000","0.37289","0.37289" +"GO:0042127","regulation of cell proliferation",3,0,0.42,409,"1.0000","0.37289","0.37289" +"GO:0007186","G protein-coupled receptor signaling pat...",5,1,0.7,184,"0.5338","0.38176","0.38176" +"GO:0044085","cellular component biogenesis",11,2,1.54,172,"0.4736","0.38292","0.38292" +"GO:0006970","response to osmotic stress",3,0,0.42,410,"1.0000","0.38679","0.38679" +"GO:0009651","response to salt stress",3,0,0.42,411,"1.0000","0.38679","0.38679" +"GO:0010035","response to inorganic substance",6,1,0.84,215,"0.6007","0.38872","0.38872" +"GO:1901700","response to oxygen-containing compound",6,1,0.84,216,"0.6007","0.38872","0.38872" +"GO:0071103","DNA conformation change",3,0,0.42,412,"1.0000","0.38960","0.38960" +"GO:0048513","animal organ development",18,1,2.52,323,"0.9416","0.39190","0.39190" +"GO:0042221","response to chemical",15,2,2.1,243,"0.6521","0.39522","0.39522" +"GO:0072524","pyridine-containing compound metabolic p...",3,1,0.42,100,"0.3660","0.39525","0.39525" +"GO:0030001","metal ion transport",9,3,1.26,27,"0.1166","0.39921","0.39921" +"GO:0006412","translation",6,1,0.84,217,"0.6007","0.40082","0.40082" +"GO:0043043","peptide biosynthetic process",6,1,0.84,218,"0.6007","0.40082","0.40082" +"GO:0043604","amide biosynthetic process",6,1,0.84,219,"0.6007","0.40082","0.40082" +"GO:0030154","cell differentiation",20,2,2.81,303,"0.8062","0.40113","0.40113" +"GO:0048869","cellular developmental process",20,2,2.81,304,"0.8062","0.40113","0.40113" +"GO:0031344","regulation of cell projection organizati...",5,1,0.7,185,"0.5338","0.41268","0.41268" +"GO:0120035","regulation of plasma membrane bounded ce...",5,1,0.7,186,"0.5338","0.41268","0.41268" +"GO:0050808","synapse organization",5,0,0.7,413,"1.0000","0.41268","0.41268" +"GO:0061024","membrane organization",5,0,0.7,414,"1.0000","0.41268","0.41268" +"GO:0006955","immune response",6,1,0.84,220,"0.6007","0.41308","0.41308" +"GO:0048731","system development",24,1,3.37,329,"0.9787","0.41699","0.41699" +"GO:0065008","regulation of biological quality",24,2,3.37,314,"0.8837","0.41699","0.41699" +"GO:0022607","cellular component assembly",10,1,1.4,295,"0.7868","0.41957","0.41957" +"GO:0070887","cellular response to chemical stimulus",10,2,1.4,141,"0.4217","0.42119","0.42119" +"GO:0050790","regulation of catalytic activity",9,1,1.26,281,"0.7503","0.42970","0.42970" +"GO:0007417","central nervous system development",9,0,1.26,415,"1.0000","0.42970","0.42970" +"GO:0000226","microtubule cytoskeleton organization",4,0,0.56,416,"1.0000","0.43131","0.43131" +"GO:0002520","immune system development",4,0,0.56,417,"1.0000","0.43131","0.43131" +"GO:0007409","axonogenesis",4,0,0.56,418,"1.0000","0.43131","0.43131" +"GO:0007611","learning or memory",4,0,0.56,419,"1.0000","0.43131","0.43131" +"GO:0030097","hemopoiesis",4,0,0.56,420,"1.0000","0.43131","0.43131" +"GO:0048534","hematopoietic or lymphoid organ developm...",4,0,0.56,421,"1.0000","0.43131","0.43131" +"GO:0048872","homeostasis of number of cells",4,0,0.56,422,"1.0000","0.43131","0.43131" +"GO:0050890","cognition",4,0,0.56,423,"1.0000","0.43131","0.43131" +"GO:0050896","response to stimulus",53,5,7.43,319,"0.9131","0.43259","0.43259" +"GO:0002376","immune system process",9,1,1.26,282,"0.7503","0.43660","0.43660" +"GO:0034622","cellular protein-containing complex asse...",9,1,1.26,283,"0.7503","0.43660","0.43660" +"GO:0043933","protein-containing complex subunit organ...",9,1,1.26,284,"0.7503","0.43660","0.43660" +"GO:0065003","protein-containing complex assembly",9,1,1.26,285,"0.7503","0.43660","0.43660" +"GO:0007010","cytoskeleton organization",9,0,1.26,424,"1.0000","0.43660","0.43660" +"GO:0034655","nucleobase-containing compound catabolic...",5,0,0.7,425,"1.0000","0.44003","0.44003" +"GO:0007154","cell communication",28,3,3.93,301,"0.7919","0.44121","0.44121" +"GO:0023052","signaling",28,3,3.93,302,"0.7919","0.44121","0.44121" +"GO:0009893","positive regulation of metabolic process",11,3,1.54,38,"0.1881","0.44439","0.44439" +"GO:0009058","biosynthetic process",58,10,8.14,54,"0.2689","0.44633","0.44633" +"GO:0001934","positive regulation of protein phosphory...",4,0,0.56,426,"1.0000","0.45194","0.45194" +"GO:0016477","cell migration",4,0,0.56,427,"1.0000","0.45194","0.45194" +"GO:0033674","positive regulation of kinase activity",4,0,0.56,428,"1.0000","0.45194","0.45194" +"GO:0040011","locomotion",4,0,0.56,429,"1.0000","0.45194","0.45194" +"GO:0043085","positive regulation of catalytic activit...",4,0,0.56,430,"1.0000","0.45194","0.45194" +"GO:0045860","positive regulation of protein kinase ac...",4,0,0.56,431,"1.0000","0.45194","0.45194" +"GO:0048870","cell motility",4,0,0.56,432,"1.0000","0.45194","0.45194" +"GO:0051347","positive regulation of transferase activ...",4,0,0.56,433,"1.0000","0.45194","0.45194" +"GO:0051674","localization of cell",4,0,0.56,434,"1.0000","0.45194","0.45194" +"GO:0030182","neuron differentiation",10,1,1.4,296,"0.7868","0.45414","0.45414" +"GO:0065009","regulation of molecular function",10,1,1.4,297,"0.7868","0.45414","0.45414" +"GO:0051171","regulation of nitrogen compound metaboli...",35,8,4.91,18,"0.0890","0.45465","0.45465" +"GO:0009967","positive regulation of signal transducti...",8,2,1.12,63,"0.3118","0.46445","0.46445" +"GO:0010647","positive regulation of cell communicatio...",8,2,1.12,64,"0.3118","0.46445","0.46445" +"GO:0019220","regulation of phosphate metabolic proces...",8,1,1.12,262,"0.7078","0.46445","0.46445" +"GO:0023056","positive regulation of signaling",8,2,1.12,65,"0.3118","0.46445","0.46445" +"GO:0042325","regulation of phosphorylation",8,1,1.12,263,"0.7078","0.46445","0.46445" +"GO:0051174","regulation of phosphorus metabolic proce...",8,1,1.12,264,"0.7078","0.46445","0.46445" +"GO:0009890","negative regulation of biosynthetic proc...",8,1,1.12,265,"0.7078","0.46633","0.46633" +"GO:0002252","immune effector process",3,0,0.42,435,"1.0000","0.47788","0.47788" +"GO:0007275","multicellular organism development",27,1,3.79,330,"0.9873","0.48193","0.48193" +"GO:0050794","regulation of cellular process",71,11,9.96,136,"0.4048","0.48637","0.48637" +"GO:0065007","biological regulation",80,11,11.22,237,"0.6094","0.48700","0.48700" +"GO:0006139","nucleobase-containing compound metabolic...",55,10,7.71,44,"0.2091","0.48945","0.48945" +"GO:0060255","regulation of macromolecule metabolic pr...",36,8,5.05,24,"0.1028","0.49053","0.49053" +"GO:0080090","regulation of primary metabolic process",36,8,5.05,25,"0.1028","0.49053","0.49053" +"GO:0010975","regulation of neuron projection developm...",4,1,0.56,156,"0.4561","0.49421","0.49421" +"GO:0098609","cell-cell adhesion",4,0,0.56,436,"1.0000","0.49421","0.49421" +"GO:0099173","postsynapse organization",4,0,0.56,437,"1.0000","0.49421","0.49421" +"GO:0044248","cellular catabolic process",10,1,1.4,298,"0.7868","0.49485","0.49485" +"GO:0044281","small molecule metabolic process",18,1,2.52,324,"0.9416","0.49742","0.49742" +"GO:1901566","organonitrogen compound biosynthetic pro...",14,2,1.96,238,"0.6122","0.49872","0.49872" +"GO:0010605","negative regulation of macromolecule met...",13,2,1.82,203,"0.5691","0.50014","0.50014" +"GO:0097435","supramolecular fiber organization",8,1,1.12,266,"0.7078","0.50243","0.50243" +"GO:0006366","transcription by RNA polymerase II",7,1,0.98,247,"0.6583","0.51382","0.51382" +"GO:0010558","negative regulation of macromolecule bio...",7,1,0.98,248,"0.6583","0.51382","0.51382" +"GO:0031327","negative regulation of cellular biosynth...",7,1,0.98,249,"0.6583","0.51382","0.51382" +"GO:0045934","negative regulation of nucleobase-contai...",7,1,0.98,250,"0.6583","0.51382","0.51382" +"GO:2000113","negative regulation of cellular macromol...",7,1,0.98,251,"0.6583","0.51382","0.51382" +"GO:0010629","negative regulation of gene expression",7,0,0.98,438,"1.0000","0.51382","0.51382" +"GO:0048856","anatomical structure development",29,1,4.07,331,"0.9910","0.51604","0.51604" +"GO:0030030","cell projection organization",9,1,1.26,286,"0.7503","0.53342","0.53342" +"GO:0032879","regulation of localization",9,1,1.26,287,"0.7503","0.53342","0.53342" +"GO:0120036","plasma membrane bounded cell projection ...",9,1,1.26,288,"0.7503","0.53342","0.53342" +"GO:0007165","signal transduction",27,3,3.79,294,"0.7689","0.53354","0.53354" +"GO:0061061","muscle structure development",3,1,0.42,101,"0.3660","0.53377","0.53377" +"GO:0045165","cell fate commitment",3,0,0.42,439,"1.0000","0.53377","0.53377" +"GO:0051301","cell division",3,0,0.42,440,"1.0000","0.53377","0.53377" +"GO:0006355","regulation of transcription, DNA-templat...",25,5,3.51,50,"0.2601","0.53725","0.53725" +"GO:1903506","regulation of nucleic acid-templated tra...",25,5,3.51,51,"0.2601","0.53725","0.53725" +"GO:2001141","regulation of RNA biosynthetic process",25,5,3.51,52,"0.2601","0.53725","0.53725" +"GO:0006974","cellular response to DNA damage stimulus",7,2,0.98,49,"0.2553","0.53869","0.53869" +"GO:0008104","protein localization",11,1,1.54,307,"0.8182","0.54603","0.54603" +"GO:0030029","actin filament-based process",7,0,0.98,441,"1.0000","0.54912","0.54912" +"GO:0030036","actin cytoskeleton organization",7,0,0.98,442,"1.0000","0.54912","0.54912" +"GO:0044087","regulation of cellular component biogene...",7,0,0.98,443,"1.0000","0.54912","0.54912" +"GO:0051258","protein polymerization",7,0,0.98,444,"1.0000","0.54912","0.54912" +"GO:0006469","negative regulation of protein kinase ac...",3,0,0.42,445,"1.0000","0.55271","0.55271" +"GO:0022603","regulation of anatomical structure morph...",3,0,0.42,446,"1.0000","0.55271","0.55271" +"GO:0022604","regulation of cell morphogenesis",3,0,0.42,447,"1.0000","0.55271","0.55271" +"GO:0030334","regulation of cell migration",3,0,0.42,448,"1.0000","0.55271","0.55271" +"GO:0033673","negative regulation of kinase activity",3,0,0.42,449,"1.0000","0.55271","0.55271" +"GO:0040012","regulation of locomotion",3,0,0.42,450,"1.0000","0.55271","0.55271" +"GO:0051270","regulation of cellular component movemen...",3,0,0.42,451,"1.0000","0.55271","0.55271" +"GO:0051348","negative regulation of transferase activ...",3,0,0.42,452,"1.0000","0.55271","0.55271" +"GO:2000145","regulation of cell motility",3,0,0.42,453,"1.0000","0.55271","0.55271" +"GO:0006518","peptide metabolic process",8,1,1.12,267,"0.7078","0.55296","0.55296" +"GO:0010556","regulation of macromolecule biosynthetic...",26,6,3.65,29,"0.1340","0.55766","0.55766" +"GO:0031326","regulation of cellular biosynthetic proc...",26,6,3.65,30,"0.1340","0.55766","0.55766" +"GO:2000112","regulation of cellular macromolecule bio...",26,6,3.65,31,"0.1340","0.55766","0.55766" +"GO:0019222","regulation of metabolic process",38,8,5.33,28,"0.1339","0.56145","0.56145" +"GO:0060341","regulation of cellular localization",5,1,0.7,187,"0.5338","0.56259","0.56259" +"GO:1902533","positive regulation of intracellular sig...",6,2,0.84,42,"0.1993","0.56563","0.56563" +"GO:0007166","cell surface receptor signaling pathway",8,1,1.12,268,"0.7078","0.56869","0.56869" +"GO:0042493","response to drug",5,1,0.7,188,"0.5338","0.57001","0.57001" +"GO:0046903","secretion",5,1,0.7,189,"0.5338","0.57001","0.57001" +"GO:0007264","small GTPase mediated signal transductio...",5,0,0.7,454,"1.0000","0.57001","0.57001" +"GO:0040007","growth",5,0,0.7,455,"1.0000","0.57001","0.57001" +"GO:0051252","regulation of RNA metabolic process",26,5,3.65,58,"0.2901","0.57249","0.57249" +"GO:0048519","negative regulation of biological proces...",20,3,2.81,201,"0.5545","0.57475","0.57475" +"GO:0051276","chromosome organization",9,2,1.26,130,"0.3676","0.57607","0.57607" +"GO:0000375","RNA splicing, via transesterification re...",3,0,0.42,456,"1.0000","0.57812","0.57812" +"GO:0000377","RNA splicing, via transesterification re...",3,0,0.42,457,"1.0000","0.57812","0.57812" +"GO:0000398","mRNA splicing, via spliceosome",3,0,0.42,458,"1.0000","0.57812","0.57812" +"GO:0048468","cell development",13,1,1.82,313,"0.8680","0.58068","0.58068" +"GO:0006952","defense response",3,0,0.42,459,"1.0000","0.58130","0.58130" +"GO:0009607","response to biotic stimulus",3,0,0.42,460,"1.0000","0.58130","0.58130" +"GO:0043207","response to external biotic stimulus",3,0,0.42,461,"1.0000","0.58130","0.58130" +"GO:0051707","response to other organism",3,0,0.42,462,"1.0000","0.58130","0.58130" +"GO:0098542","defense response to other organism",3,0,0.42,463,"1.0000","0.58130","0.58130" +"GO:0031324","negative regulation of cellular metaboli...",12,2,1.68,176,"0.5229","0.58413","0.58413" +"GO:0051172","negative regulation of nitrogen compound...",12,2,1.68,177,"0.5229","0.58413","0.58413" +"GO:0048523","negative regulation of cellular process",16,3,2.24,135,"0.3949","0.58474","0.58474" +"GO:0007267","cell-cell signaling",3,1,0.42,102,"0.3660","0.59086","0.59086" +"GO:0034762","regulation of transmembrane transport",3,1,0.42,103,"0.3660","0.59086","0.59086" +"GO:0034765","regulation of ion transmembrane transpor...",3,1,0.42,104,"0.3660","0.59086","0.59086" +"GO:0043269","regulation of ion transport",3,1,0.42,105,"0.3660","0.59086","0.59086" +"GO:1904062","regulation of cation transmembrane trans...",3,1,0.42,106,"0.3660","0.59086","0.59086" +"GO:0016358","dendrite development",3,0,0.42,464,"1.0000","0.59086","0.59086" +"GO:0050803","regulation of synapse structure or activ...",3,0,0.42,465,"1.0000","0.59086","0.59086" +"GO:0050807","regulation of synapse organization",3,0,0.42,466,"1.0000","0.59086","0.59086" +"GO:0051050","positive regulation of transport",3,0,0.42,467,"1.0000","0.59086","0.59086" +"GO:0051668","localization within membrane",3,0,0.42,468,"1.0000","0.59086","0.59086" +"GO:0055114","oxidation-reduction process",9,0,1.26,469,"1.0000","0.59286","0.59286" +"GO:0007015","actin filament organization",6,0,0.84,470,"1.0000","0.59965","0.59965" +"GO:0008064","regulation of actin polymerization or de...",6,0,0.84,471,"1.0000","0.59965","0.59965" +"GO:0008154","actin polymerization or depolymerization",6,0,0.84,472,"1.0000","0.59965","0.59965" +"GO:0030041","actin filament polymerization",6,0,0.84,473,"1.0000","0.59965","0.59965" +"GO:0030832","regulation of actin filament length",6,0,0.84,474,"1.0000","0.59965","0.59965" +"GO:0030833","regulation of actin filament polymerizat...",6,0,0.84,475,"1.0000","0.59965","0.59965" +"GO:0032271","regulation of protein polymerization",6,0,0.84,476,"1.0000","0.59965","0.59965" +"GO:0032535","regulation of cellular component size",6,0,0.84,477,"1.0000","0.59965","0.59965" +"GO:0032956","regulation of actin cytoskeleton organiz...",6,0,0.84,478,"1.0000","0.59965","0.59965" +"GO:0032970","regulation of actin filament-based proce...",6,0,0.84,479,"1.0000","0.59965","0.59965" +"GO:0043254","regulation of protein complex assembly",6,0,0.84,480,"1.0000","0.59965","0.59965" +"GO:0044089","positive regulation of cellular componen...",6,0,0.84,481,"1.0000","0.59965","0.59965" +"GO:0051493","regulation of cytoskeleton organization",6,0,0.84,482,"1.0000","0.59965","0.59965" +"GO:0090066","regulation of anatomical structure size",6,0,0.84,483,"1.0000","0.59965","0.59965" +"GO:0110053","regulation of actin filament organizatio...",6,0,0.84,484,"1.0000","0.59965","0.59965" +"GO:1902903","regulation of supramolecular fiber organ...",6,0,0.84,485,"1.0000","0.59965","0.59965" +"GO:0009889","regulation of biosynthetic process",27,6,3.79,35,"0.1548","0.60085","0.60085" +"GO:0019219","regulation of nucleobase-containing comp...",27,6,3.79,36,"0.1548","0.60085","0.60085" +"GO:0032502","developmental process",34,2,4.77,327,"0.9716","0.60417","0.60417" +"GO:0010468","regulation of gene expression",27,5,3.79,68,"0.3209","0.60648","0.60648" +"GO:0048584","positive regulation of response to stimu...",9,2,1.26,131,"0.3676","0.62087","0.62087" +"GO:0051173","positive regulation of nitrogen compound...",9,2,1.26,132,"0.3676","0.62087","0.62087" +"GO:0006508","proteolysis",13,2,1.82,204,"0.5691","0.62146","0.62146" +"GO:0003008","system process",8,1,1.12,269,"0.7078","0.62201","0.62201" +"GO:0050793","regulation of developmental process",8,1,1.12,270,"0.7078","0.62201","0.62201" +"GO:0007610","behavior",8,0,1.12,486,"1.0000","0.62201","0.62201" +"GO:0051704","multi-organism process",8,0,1.12,487,"1.0000","0.62201","0.62201" +"GO:0005975","carbohydrate metabolic process",10,2,1.4,142,"0.4217","0.62684","0.62684" +"GO:0098660","inorganic ion transmembrane transport",8,1,1.12,271,"0.7078","0.62991","0.62991" +"GO:0010467","gene expression",45,8,6.31,57,"0.2763","0.63081","0.63081" +"GO:0008654","phospholipid biosynthetic process",4,1,0.56,157,"0.4561","0.63418","0.63418" +"GO:0006357","regulation of transcription by RNA polym...",6,1,0.84,221,"0.6007","0.63824","0.63824" +"GO:0045892","negative regulation of transcription, DN...",6,0,0.84,488,"1.0000","0.63824","0.63824" +"GO:0051253","negative regulation of RNA metabolic pro...",6,0,0.84,489,"1.0000","0.63824","0.63824" +"GO:1902679","negative regulation of RNA biosynthetic ...",6,0,0.84,490,"1.0000","0.63824","0.63824" +"GO:1903507","negative regulation of nucleic acid-temp...",6,0,0.84,491,"1.0000","0.63824","0.63824" +"GO:0006081","cellular aldehyde metabolic process",4,1,0.56,158,"0.4561","0.64247","0.64247" +"GO:0009636","response to toxic substance",4,1,0.56,159,"0.4561","0.64247","0.64247" +"GO:0009056","catabolic process",11,1,1.54,308,"0.8182","0.64426","0.64426" +"GO:0006979","response to oxidative stress",5,1,0.7,190,"0.5338","0.64441","0.64441" +"GO:0001933","negative regulation of protein phosphory...",5,1,0.7,191,"0.5338","0.64935","0.64935" +"GO:0042326","negative regulation of phosphorylation",5,1,0.7,192,"0.5338","0.64935","0.64935" +"GO:0010038","response to metal ion",4,1,0.56,160,"0.4561","0.65349","0.65349" +"GO:0030838","positive regulation of actin filament po...",5,0,0.7,492,"1.0000","0.65429","0.65429" +"GO:0031334","positive regulation of protein complex a...",5,0,0.7,493,"1.0000","0.65429","0.65429" +"GO:0032273","positive regulation of protein polymeriz...",5,0,0.7,494,"1.0000","0.65429","0.65429" +"GO:0051495","positive regulation of cytoskeleton orga...",5,0,0.7,495,"1.0000","0.65429","0.65429" +"GO:1902905","positive regulation of supramolecular fi...",5,0,0.7,496,"1.0000","0.65429","0.65429" +"GO:0090407","organophosphate biosynthetic process",9,1,1.26,289,"0.7503","0.65440","0.65440" +"GO:0051640","organelle localization",3,0,0.42,497,"1.0000","0.65457","0.65457" +"GO:0006351","transcription, DNA-templated",30,6,4.21,45,"0.2254","0.65671","0.65671" +"GO:0032774","RNA biosynthetic process",30,6,4.21,46,"0.2254","0.65671","0.65671" +"GO:0097659","nucleic acid-templated transcription",30,6,4.21,47,"0.2254","0.65671","0.65671" +"GO:1901360","organic cyclic compound metabolic proces...",60,10,8.42,67,"0.3121","0.66081","0.66081" +"GO:0019439","aromatic compound catabolic process",6,0,0.84,498,"1.0000","0.66084","0.66084" +"GO:0044270","cellular nitrogen compound catabolic pro...",6,0,0.84,499,"1.0000","0.66084","0.66084" +"GO:0046700","heterocycle catabolic process",6,0,0.84,500,"1.0000","0.66084","0.66084" +"GO:1901361","organic cyclic compound catabolic proces...",6,0,0.84,501,"1.0000","0.66084","0.66084" +"GO:0048878","chemical homeostasis",4,1,0.56,161,"0.4561","0.66449","0.66449" +"GO:0055082","cellular chemical homeostasis",4,1,0.56,162,"0.4561","0.66449","0.66449" +"GO:0009165","nucleotide biosynthetic process",4,0,0.56,502,"1.0000","0.66449","0.66449" +"GO:1901293","nucleoside phosphate biosynthetic proces...",4,0,0.56,503,"1.0000","0.66449","0.66449" +"GO:0090304","nucleic acid metabolic process",46,8,6.45,60,"0.3000","0.66717","0.66717" +"GO:0051186","cofactor metabolic process",6,1,0.84,222,"0.6007","0.67432","0.67432" +"GO:0031323","regulation of cellular metabolic process",35,7,4.91,40,"0.1956","0.67473","0.67473" +"GO:0051716","cellular response to stimulus",39,5,5.47,255,"0.6774","0.68380","0.68380" +"GO:0006725","cellular aromatic compound metabolic pro...",58,10,8.14,55,"0.2689","0.69050","0.69050" +"GO:0046483","heterocycle metabolic process",58,10,8.14,56,"0.2689","0.69050","0.69050" +"GO:0008152","metabolic process",143,25,20.06,8,"0.0325","0.00746","0.69127" +"GO:0034641","cellular nitrogen compound metabolic pro...",66,11,9.26,59,"0.2946","0.69525","0.69525" +"GO:0009628","response to abiotic stimulus",7,0,0.98,504,"1.0000","0.69791","0.69791" +"GO:0015031","protein transport",6,1,0.84,223,"0.6007","0.69885","0.69885" +"GO:0015833","peptide transport",6,1,0.84,224,"0.6007","0.69885","0.69885" +"GO:0042886","amide transport",6,1,0.84,225,"0.6007","0.69885","0.69885" +"GO:0045184","establishment of protein localization",6,1,0.84,226,"0.6007","0.69885","0.69885" +"GO:0015711","organic anion transport",4,0,0.56,505,"1.0000","0.70259","0.70259" +"GO:0006915","apoptotic process",4,1,0.56,163,"0.4561","0.71066","0.71066" +"GO:0008219","cell death",4,1,0.56,164,"0.4561","0.71066","0.71066" +"GO:0012501","programmed cell death",4,1,0.56,165,"0.4561","0.71066","0.71066" +"GO:0034314","Arp2/3 complex-mediated actin nucleation",4,0,0.56,506,"1.0000","0.71334","0.71334" +"GO:0045010","actin nucleation",4,0,0.56,507,"1.0000","0.71334","0.71334" +"GO:0045595","regulation of cell differentiation",7,1,0.98,252,"0.6583","0.71835","0.71835" +"GO:2000026","regulation of multicellular organismal d...",7,1,0.98,253,"0.6583","0.71835","0.71835" +"GO:0033036","macromolecule localization",15,1,2.1,318,"0.9045","0.71988","0.71988" +"GO:0006281","DNA repair",3,0,0.42,508,"1.0000","0.72331","0.72331" +"GO:0072359","circulatory system development",4,1,0.56,166,"0.4561","0.73459","0.73459" +"GO:0044262","cellular carbohydrate metabolic process",4,0,0.56,509,"1.0000","0.73722","0.73722" +"GO:0071495","cellular response to endogenous stimulus",4,0,0.56,510,"1.0000","0.73722","0.73722" +"GO:0032501","multicellular organismal process",30,1,4.21,332,"0.9925","0.73758","0.73758" +"GO:0006812","cation transport",13,3,1.82,53,"0.2685","0.74141","0.74141" +"GO:0034654","nucleobase-containing compound biosynthe...",35,6,4.91,70,"0.3623","0.74230","0.74230" +"GO:1901565","organonitrogen compound catabolic proces...",3,1,0.42,107,"0.3660","0.74456","0.74456" +"GO:0071310","cellular response to organic substance",6,1,0.84,227,"0.6007","0.74467","0.74467" +"GO:0071705","nitrogen compound transport",8,1,1.12,272,"0.7078","0.75507","0.75507" +"GO:0006869","lipid transport",3,0,0.42,511,"1.0000","0.75652","0.75652" +"GO:0010876","lipid localization",3,0,0.42,512,"1.0000","0.75652","0.75652" +"GO:0045597","positive regulation of cell differentiat...",4,1,0.56,167,"0.4561","0.75805","0.75805" +"GO:0051336","regulation of hydrolase activity",4,1,0.56,168,"0.4561","0.75805","0.75805" +"GO:0051346","negative regulation of hydrolase activit...",4,1,0.56,169,"0.4561","0.75805","0.75805" +"GO:0007265","Ras protein signal transduction",4,0,0.56,513,"1.0000","0.75805","0.75805" +"GO:0051641","cellular localization",17,1,2.38,321,"0.9311","0.76167","0.76167" +"GO:0071702","organic substance transport",11,1,1.54,309,"0.8182","0.76577","0.76577" +"GO:0015849","organic acid transport",3,0,0.42,514,"1.0000","0.76834","0.76834" +"GO:0046942","carboxylic acid transport",3,0,0.42,515,"1.0000","0.76834","0.76834" +"GO:0010563","negative regulation of phosphorus metabo...",6,1,0.84,228,"0.6007","0.77004","0.77004" +"GO:0031400","negative regulation of protein modificat...",6,1,0.84,229,"0.6007","0.77004","0.77004" +"GO:0032269","negative regulation of cellular protein ...",6,1,0.84,230,"0.6007","0.77004","0.77004" +"GO:0043086","negative regulation of catalytic activit...",6,1,0.84,231,"0.6007","0.77004","0.77004" +"GO:0044092","negative regulation of molecular functio...",6,1,0.84,232,"0.6007","0.77004","0.77004" +"GO:0045936","negative regulation of phosphate metabol...",6,1,0.84,233,"0.6007","0.77004","0.77004" +"GO:0051248","negative regulation of protein metabolic...",6,1,0.84,234,"0.6007","0.77004","0.77004" +"GO:0006873","cellular ion homeostasis",3,1,0.42,108,"0.3660","0.77127","0.77127" +"GO:0006875","cellular metal ion homeostasis",3,1,0.42,109,"0.3660","0.77127","0.77127" +"GO:0007507","heart development",3,1,0.42,110,"0.3660","0.77127","0.77127" +"GO:0009968","negative regulation of signal transducti...",3,1,0.42,111,"0.3660","0.77127","0.77127" +"GO:0010648","negative regulation of cell communicatio...",3,1,0.42,112,"0.3660","0.77127","0.77127" +"GO:0010720","positive regulation of cell development",3,1,0.42,113,"0.3660","0.77127","0.77127" +"GO:0023057","negative regulation of signaling",3,1,0.42,114,"0.3660","0.77127","0.77127" +"GO:0030003","cellular cation homeostasis",3,1,0.42,115,"0.3660","0.77127","0.77127" +"GO:0045666","positive regulation of neuron differenti...",3,1,0.42,116,"0.3660","0.77127","0.77127" +"GO:0046677","response to antibiotic",3,1,0.42,117,"0.3660","0.77127","0.77127" +"GO:0048585","negative regulation of response to stimu...",3,1,0.42,118,"0.3660","0.77127","0.77127" +"GO:0050769","positive regulation of neurogenesis",3,1,0.42,119,"0.3660","0.77127","0.77127" +"GO:0050801","ion homeostasis",3,1,0.42,120,"0.3660","0.77127","0.77127" +"GO:0051962","positive regulation of nervous system de...",3,1,0.42,121,"0.3660","0.77127","0.77127" +"GO:0055065","metal ion homeostasis",3,1,0.42,122,"0.3660","0.77127","0.77127" +"GO:0055080","cation homeostasis",3,1,0.42,123,"0.3660","0.77127","0.77127" +"GO:0098771","inorganic ion homeostasis",3,1,0.42,124,"0.3660","0.77127","0.77127" +"GO:1902532","negative regulation of intracellular sig...",3,1,0.42,125,"0.3660","0.77127","0.77127" +"GO:0010628","positive regulation of gene expression",4,1,0.56,170,"0.4561","0.77338","0.77338" +"GO:1902531","regulation of intracellular signal trans...",8,2,1.12,66,"0.3118","0.77694","0.77694" +"GO:0044271","cellular nitrogen compound biosynthetic ...",42,7,5.89,134,"0.3693","0.77771","0.77771" +"GO:0016070","RNA metabolic process",38,6,5.33,143,"0.4491","0.77906","0.77906" +"GO:0000003","reproduction",7,0,0.98,516,"1.0000","0.77962","0.77962" +"GO:0022414","reproductive process",7,0,0.98,517,"1.0000","0.77962","0.77962" +"GO:0006261","DNA-dependent DNA replication",3,1,0.42,126,"0.3660","0.78000","0.78000" +"GO:0006950","response to stress",17,2,2.38,277,"0.7225","0.78322","0.78322" +"GO:0007049","cell cycle",10,1,1.4,299,"0.7868","0.79228","0.79228" +"GO:0098662","inorganic cation transmembrane transport",7,1,0.98,254,"0.6583","0.79476","0.79476" +"GO:1901615","organic hydroxy compound metabolic proce...",4,0,0.56,518,"1.0000","0.79583","0.79583" +"GO:0010033","response to organic substance",9,1,1.26,290,"0.7503","0.79654","0.79654" +"GO:0003006","developmental process involved in reprod...",6,0,0.84,519,"1.0000","0.80864","0.80864" +"GO:0043603","cellular amide metabolic process",9,1,1.26,291,"0.7503","0.81126","0.81126" +"GO:0071840","cellular component organization or bioge...",33,5,4.63,174,"0.5091","0.81276","0.81276" +"GO:0051094","positive regulation of developmental pro...",6,1,0.84,235,"0.6007","0.81843","0.81843" +"GO:0051240","positive regulation of multicellular org...",6,1,0.84,236,"0.6007","0.81843","0.81843" +"GO:0048518","positive regulation of biological proces...",23,4,3.23,137,"0.4079","0.82207","0.82207" +"GO:1901362","organic cyclic compound biosynthetic pro...",39,6,5.47,173,"0.4779","0.82372","0.82372" +"GO:0017144","drug metabolic process",9,0,1.26,520,"1.0000","0.82719","0.82719" +"GO:0051239","regulation of multicellular organismal p...",9,1,1.26,292,"0.7503","0.83032","0.83032" +"GO:0018130","heterocycle biosynthetic process",37,6,5.19,138,"0.4202","0.83362","0.83362" +"GO:0019438","aromatic compound biosynthetic process",37,6,5.19,139,"0.4202","0.83362","0.83362" +"GO:0035556","intracellular signal transduction",14,2,1.96,239,"0.6122","0.83663","0.83663" +"GO:0048583","regulation of response to stimulus",14,2,1.96,240,"0.6122","0.83663","0.83663" +"GO:0006886","intracellular protein transport",3,0,0.42,521,"1.0000","0.83804","0.83804" +"GO:0007017","microtubule-based process",7,0,0.98,522,"1.0000","0.83807","0.83807" +"GO:0032504","multicellular organism reproduction",5,0,0.7,523,"1.0000","0.83847","0.83847" +"GO:0048609","multicellular organismal reproductive pr...",5,0,0.7,524,"1.0000","0.83847","0.83847" +"GO:0055085","transmembrane transport",27,2,3.79,320,"0.9224","0.83877","0.83877" +"GO:0009108","coenzyme biosynthetic process",3,0,0.42,525,"1.0000","0.84325","0.84325" +"GO:0051188","cofactor biosynthetic process",3,0,0.42,526,"1.0000","0.84325","0.84325" +"GO:1901617","organic hydroxy compound biosynthetic pr...",3,0,0.42,527,"1.0000","0.84325","0.84325" +"GO:0006259","DNA metabolic process",9,2,1.26,133,"0.3676","0.84415","0.84415" +"GO:0006996","organelle organization",25,3,3.51,276,"0.7174","0.84780","0.84780" +"GO:0006732","coenzyme metabolic process",5,1,0.7,193,"0.5338","0.85447","0.85447" +"GO:0009719","response to endogenous stimulus",6,0,0.84,528,"1.0000","0.86111","0.86111" +"GO:0016043","cellular component organization",32,4,4.49,257,"0.6940","0.86445","0.86445" +"GO:0007266","Rho protein signal transduction",3,0,0.42,529,"1.0000","0.86592","0.86592" +"GO:0035023","regulation of Rho protein signal transdu...",3,0,0.42,530,"1.0000","0.86592","0.86592" +"GO:0046578","regulation of Ras protein signal transdu...",3,0,0.42,531,"1.0000","0.86592","0.86592" +"GO:0051056","regulation of small GTPase mediated sign...",3,0,0.42,532,"1.0000","0.86592","0.86592" +"GO:0007276","gamete generation",4,0,0.56,533,"1.0000","0.86910","0.86910" +"GO:0007281","germ cell development",4,0,0.56,534,"1.0000","0.86910","0.86910" +"GO:0007283","spermatogenesis",4,0,0.56,535,"1.0000","0.86910","0.86910" +"GO:0019953","sexual reproduction",4,0,0.56,536,"1.0000","0.86910","0.86910" +"GO:0022412","cellular process involved in reproductio...",4,0,0.56,537,"1.0000","0.86910","0.86910" +"GO:0044703","multi-organism reproductive process",4,0,0.56,538,"1.0000","0.86910","0.86910" +"GO:0048232","male gamete generation",4,0,0.56,539,"1.0000","0.86910","0.86910" +"GO:0006814","sodium ion transport",3,0,0.42,540,"1.0000","0.87077","0.87077" +"GO:0098656","anion transmembrane transport",4,0,0.56,541,"1.0000","0.87120","0.87120" +"GO:0014070","response to organic cyclic compound",4,1,0.56,171,"0.4561","0.88349","0.88349" +"GO:0034220","ion transmembrane transport",14,1,1.96,316,"0.8877","0.88368","0.88368" +"GO:0034613","cellular protein localization",7,0,0.98,542,"1.0000","0.88683","0.88683" +"GO:0070727","cellular macromolecule localization",7,0,0.98,543,"1.0000","0.88683","0.88683" +"GO:1903047","mitotic cell cycle process",7,0,0.98,544,"1.0000","0.88683","0.88683" +"GO:0006396","RNA processing",9,0,1.26,545,"1.0000","0.89230","0.89230" +"GO:0021537","telencephalon development",3,0,0.42,546,"1.0000","0.89838","0.89838" +"GO:0021543","pallium development",3,0,0.42,547,"1.0000","0.89838","0.89838" +"GO:0030900","forebrain development",3,0,0.42,548,"1.0000","0.89838","0.89838" +"GO:0000165","MAPK cascade",3,0,0.42,549,"1.0000","0.90056","0.90056" +"GO:0023014","signal transduction by protein phosphory...",3,0,0.42,550,"1.0000","0.90056","0.90056" +"GO:0043408","regulation of MAPK cascade",3,0,0.42,551,"1.0000","0.90056","0.90056" +"GO:0045664","regulation of neuron differentiation",5,1,0.7,194,"0.5338","0.90358","0.90358" +"GO:0050767","regulation of neurogenesis",5,1,0.7,195,"0.5338","0.90358","0.90358" +"GO:0051960","regulation of nervous system development",5,1,0.7,196,"0.5338","0.90358","0.90358" +"GO:0060284","regulation of cell development",5,1,0.7,197,"0.5338","0.90358","0.90358" +"GO:0051649","establishment of localization in cell",11,1,1.54,310,"0.8182","0.90795","0.90795" +"GO:0010646","regulation of cell communication",13,2,1.82,205,"0.5691","0.90884","0.90884" +"GO:0023051","regulation of signaling",13,2,1.82,206,"0.5691","0.90884","0.90884" +"GO:0006811","ion transport",24,3,3.37,256,"0.6887","0.90998","0.90998" +"GO:0000122","negative regulation of transcription by ...",4,0,0.56,552,"1.0000","0.91020","0.91020" +"GO:0006928","movement of cell or subcellular componen...",6,0,0.84,553,"1.0000","0.91140","0.91140" +"GO:0046907","intracellular transport",7,0,0.98,554,"1.0000","0.91668","0.91668" +"GO:0009057","macromolecule catabolic process",5,1,0.7,198,"0.5338","0.92568","0.92568" +"GO:0044265","cellular macromolecule catabolic process",5,1,0.7,199,"0.5338","0.92568","0.92568" +"GO:0051128","regulation of cellular component organiz...",14,1,1.96,317,"0.8877","0.92862","0.92862" +"GO:0009966","regulation of signal transduction",12,2,1.68,178,"0.5229","0.93635","0.93635" +"GO:0051130","positive regulation of cellular componen...",10,1,1.4,300,"0.7868","0.94943","0.94943" +"GO:0000278","mitotic cell cycle",8,0,1.12,555,"1.0000","0.95027","0.95027" +"GO:0022402","cell cycle process",8,0,1.12,556,"1.0000","0.95027","0.95027" +"GO:0051179","localization",54,4,7.57,328,"0.9733","0.95426","0.95426" +"GO:0031325","positive regulation of cellular metaboli...",9,1,1.26,293,"0.7503","0.95458","0.95458" +"GO:0051234","establishment of localization",52,4,7.29,326,"0.9653","0.95643","0.95643" +"GO:0098655","cation transmembrane transport",8,1,1.12,273,"0.7078","0.95697","0.95697" +"GO:0006810","transport",51,4,7.15,325,"0.9605","0.95749","0.95749" +"GO:0033043","regulation of organelle organization",8,0,1.12,557,"1.0000","0.95971","0.95971" +"GO:0048522","positive regulation of cellular process",22,3,3.09,241,"0.6254","0.96195","0.96195" +"GO:0010638","positive regulation of organelle organiz...",7,0,0.98,558,"1.0000","0.96482","0.96482" +"GO:0051726","regulation of cell cycle",6,0,0.84,559,"1.0000","0.96990","0.96990" +"GO:0015672","monovalent inorganic cation transport",8,1,1.12,274,"0.7078","0.97134","0.97134" +"GO:0006082","organic acid metabolic process",3,0,0.42,560,"1.0000","0.97237","0.97237" +"GO:0019752","carboxylic acid metabolic process",3,0,0.42,561,"1.0000","0.97237","0.97237" +"GO:0043436","oxoacid metabolic process",3,0,0.42,562,"1.0000","0.97237","0.97237" +"GO:0006820","anion transport",6,0,0.84,563,"1.0000","0.97254","0.97254" +"GO:0007346","regulation of mitotic cell cycle",5,0,0.7,564,"1.0000","0.97497","0.97497" +"GO:0009725","response to hormone",4,0,0.56,565,"1.0000","0.97911","0.97911" +"GO:0033993","response to lipid",4,0,0.56,566,"1.0000","0.98002","0.98002" +"GO:0009891","positive regulation of biosynthetic proc...",3,0,0.42,567,"1.0000","0.98504","0.98504" +"GO:0010557","positive regulation of macromolecule bio...",3,0,0.42,568,"1.0000","0.98504","0.98504" +"GO:0010564","regulation of cell cycle process",3,0,0.42,569,"1.0000","0.98504","0.98504" +"GO:0031328","positive regulation of cellular biosynth...",3,0,0.42,570,"1.0000","0.98504","0.98504" +"GO:0045787","positive regulation of cell cycle",3,0,0.42,571,"1.0000","0.98504","0.98504" +"GO:0045893","positive regulation of transcription, DN...",3,0,0.42,572,"1.0000","0.98504","0.98504" +"GO:0045931","positive regulation of mitotic cell cycl...",3,0,0.42,573,"1.0000","0.98504","0.98504" +"GO:0045935","positive regulation of nucleobase-contai...",3,0,0.42,574,"1.0000","0.98504","0.98504" +"GO:0051254","positive regulation of RNA metabolic pro...",3,0,0.42,575,"1.0000","0.98504","0.98504" +"GO:1902680","positive regulation of RNA biosynthetic ...",3,0,0.42,576,"1.0000","0.98504","0.98504" +"GO:1903508","positive regulation of nucleic acid-temp...",3,0,0.42,577,"1.0000","0.98504","0.98504" +"GO:1902600","proton transmembrane transport",4,0,0.56,578,"1.0000","0.98583","0.98583" +"GO:0001510","RNA methylation",3,0,0.42,579,"1.0000","0.99689","0.99689" +"GO:0006399","tRNA metabolic process",3,0,0.42,580,"1.0000","0.99689","0.99689" +"GO:0008033","tRNA processing",3,0,0.42,581,"1.0000","0.99689","0.99689" +"GO:0009451","RNA modification",3,0,0.42,582,"1.0000","0.99689","0.99689" +"GO:0032259","methylation",3,0,0.42,583,"1.0000","0.99689","0.99689" +"GO:0034470","ncRNA processing",3,0,0.42,584,"1.0000","0.99689","0.99689" +"GO:0034660","ncRNA metabolic process",3,0,0.42,585,"1.0000","0.99689","0.99689" +"GO:0043414","macromolecule methylation",3,0,0.42,586,"1.0000","0.99689","0.99689" +"GO:0006793","phosphorus metabolic process",39,8,5.47,34,"0.1512","0.00565","1.00000" +"GO:0008150","biological_process",221,31,31,587,"1.0000","1.00000","1.00000" diff --git a/GO_enrichment_microbiome_output/contrast_prelaying_laying_upregulated.csv b/GO_enrichment_microbiome_output/contrast_prelaying_laying_upregulated.csv index 717550a..d7d93de 100644 --- a/GO_enrichment_microbiome_output/contrast_prelaying_laying_upregulated.csv +++ b/GO_enrichment_microbiome_output/contrast_prelaying_laying_upregulated.csv @@ -1,6 +1,517 @@ "GO.ID","Term","Annotated","Significant","Expected","Rank in classicFisher","classicFisher","classicKS","elimKS" -"GO:0046907","intracellular transport",17,5,2.91,36,"0.14","0.0074","0.0074" -"GO:0009725","response to hormone",4,2,0.69,21,"0.14","0.0121","0.0121" -"GO:0014070","response to organic cyclic compound",4,2,0.69,22,"0.14","0.0121","0.0121" -"GO:0032870","cellular response to hormone stimulus",4,2,0.69,23,"0.14","0.0121","0.0121" -"GO:0048545","response to steroid hormone",4,2,0.69,24,"0.14","0.0121","0.0121" +"GO:0046907","intracellular transport",17,5,2.91,36,"0.1437","0.0074","0.0074" +"GO:0009725","response to hormone",4,2,0.69,21,"0.1368","0.0121","0.0121" +"GO:0014070","response to organic cyclic compound",4,2,0.69,22,"0.1368","0.0121","0.0121" +"GO:0032870","cellular response to hormone stimulus",4,2,0.69,23,"0.1368","0.0121","0.0121" +"GO:0048545","response to steroid hormone",4,2,0.69,24,"0.1368","0.0121","0.0121" +"GO:0071383","cellular response to steroid hormone sti...",4,2,0.69,25,"0.1368","0.0121","0.0121" +"GO:0071396","cellular response to lipid",4,2,0.69,26,"0.1368","0.0121","0.0121" +"GO:0071407","cellular response to organic cyclic comp...",4,2,0.69,27,"0.1368","0.0121","0.0121" +"GO:0007010","cytoskeleton organization",4,1,0.69,168,"0.5311","0.0167","0.0167" +"GO:0048589","developmental growth",6,4,1.03,1,"0.0086","0.0171","0.0171" +"GO:0009755","hormone-mediated signaling pathway",3,2,0.51,6,"0.0767","0.0263","0.0263" +"GO:0043401","steroid hormone mediated signaling pathw...",3,2,0.51,7,"0.0767","0.0263","0.0263" +"GO:0007264","small GTPase mediated signal transductio...",4,2,0.69,28,"0.1368","0.0326","0.0326" +"GO:0007265","Ras protein signal transduction",4,2,0.69,29,"0.1368","0.0326","0.0326" +"GO:0046578","regulation of Ras protein signal transdu...",4,2,0.69,30,"0.1368","0.0326","0.0326" +"GO:0051056","regulation of small GTPase mediated sign...",4,2,0.69,31,"0.1368","0.0326","0.0326" +"GO:0040007","growth",7,4,1.2,3,"0.0176","0.0386","0.0386" +"GO:0006520","cellular amino acid metabolic process",4,3,0.69,2,"0.0165","0.0395","0.0395" +"GO:0030029","actin filament-based process",3,0,0.51,387,"1.0000","0.0472","0.0472" +"GO:0032504","multicellular organism reproduction",3,0,0.51,388,"1.0000","0.0472","0.0472" +"GO:0048609","multicellular organismal reproductive pr...",3,0,0.51,389,"1.0000","0.0472","0.0472" +"GO:0009719","response to endogenous stimulus",5,2,0.86,45,"0.2038","0.0527","0.0527" +"GO:0033993","response to lipid",5,2,0.86,46,"0.2038","0.0527","0.0527" +"GO:0071495","cellular response to endogenous stimulus",5,2,0.86,47,"0.2038","0.0527","0.0527" +"GO:0022008","neurogenesis",13,3,2.23,98,"0.3902","0.0551","0.0551" +"GO:0016197","endosomal transport",4,0,0.69,390,"1.0000","0.0624","0.0624" +"GO:1902531","regulation of intracellular signal trans...",8,4,1.37,4,"0.0309","0.0634","0.0634" +"GO:0009653","anatomical structure morphogenesis",18,4,3.08,92,"0.3716","0.0649","0.0649" +"GO:0048812","neuron projection morphogenesis",5,2,0.86,48,"0.2038","0.0710","0.0710" +"GO:0048858","cell projection morphogenesis",5,2,0.86,49,"0.2038","0.0710","0.0710" +"GO:0120039","plasma membrane bounded cell projection ...",5,2,0.86,50,"0.2038","0.0710","0.0710" +"GO:0065008","regulation of biological quality",16,5,2.74,20,"0.1159","0.0726","0.0726" +"GO:0048666","neuron development",7,2,1.2,85,"0.3434","0.0755","0.0755" +"GO:0007399","nervous system development",16,4,2.74,71,"0.2844","0.0793","0.0793" +"GO:0051129","negative regulation of cellular componen...",6,1,1.03,270,"0.6808","0.0966","0.0966" +"GO:0006417","regulation of translation",3,0,0.51,391,"1.0000","0.1031","0.1031" +"GO:0010608","posttranscriptional regulation of gene e...",3,0,0.51,392,"1.0000","0.1031","0.1031" +"GO:0034248","regulation of cellular amide metabolic p...",3,0,0.51,393,"1.0000","0.1031","0.1031" +"GO:0007186","G protein-coupled receptor signaling pat...",8,1,1.37,311,"0.7836","0.1083","0.1083" +"GO:0007018","microtubule-based movement",4,2,0.69,32,"0.1368","0.1118","0.1118" +"GO:0032268","regulation of cellular protein metabolic...",13,2,2.23,286,"0.6880","0.1138","0.1138" +"GO:0040008","regulation of growth",3,2,0.51,8,"0.0767","0.1142","0.1142" +"GO:0050803","regulation of synapse structure or activ...",3,2,0.51,9,"0.0767","0.1142","0.1142" +"GO:0050807","regulation of synapse organization",3,2,0.51,10,"0.0767","0.1142","0.1142" +"GO:0006518","peptide metabolic process",8,2,1.37,104,"0.4112","0.1146","0.1146" +"GO:0048699","generation of neurons",12,3,2.06,83,"0.3380","0.1151","0.1151" +"GO:0060249","anatomical structure homeostasis",3,0,0.51,394,"1.0000","0.1220","0.1220" +"GO:0016482","cytosolic transport",3,0,0.51,395,"1.0000","0.1261","0.1261" +"GO:0042147","retrograde transport, endosome to Golgi",3,0,0.51,396,"1.0000","0.1261","0.1261" +"GO:0007275","multicellular organism development",27,6,4.62,77,"0.3044","0.1337","0.1337" +"GO:0006605","protein targeting",3,1,0.51,111,"0.4325","0.1346","0.1346" +"GO:0016049","cell growth",3,2,0.51,11,"0.0767","0.1346","0.1346" +"GO:0009790","embryo development",6,1,1.03,271,"0.6808","0.1350","0.1350" +"GO:0071310","cellular response to organic substance",6,2,1.03,65,"0.2736","0.1350","0.1350" +"GO:0000165","MAPK cascade",3,2,0.51,12,"0.0767","0.1390","0.1390" +"GO:0023014","signal transduction by protein phosphory...",3,2,0.51,13,"0.0767","0.1390","0.1390" +"GO:0043408","regulation of MAPK cascade",3,2,0.51,14,"0.0767","0.1390","0.1390" +"GO:0051239","regulation of multicellular organismal p...",16,4,2.74,72,"0.2844","0.1456","0.1456" +"GO:0048869","cellular developmental process",20,5,3.43,61,"0.2420","0.1476","0.1476" +"GO:0016192","vesicle-mediated transport",15,2,2.57,305,"0.7656","0.1522","0.1522" +"GO:0008380","RNA splicing",3,1,0.51,112,"0.4325","0.1577","0.1577" +"GO:0000902","cell morphogenesis",8,3,1.37,35,"0.1400","0.1578","0.1578" +"GO:0030030","cell projection organization",8,2,1.37,105,"0.4112","0.1578","0.1578" +"GO:0120036","plasma membrane bounded cell projection ...",8,2,1.37,106,"0.4112","0.1578","0.1578" +"GO:0006928","movement of cell or subcellular componen...",11,2,1.88,227,"0.5915","0.1592","0.1592" +"GO:1901605","alpha-amino acid metabolic process",3,2,0.51,15,"0.0767","0.1627","0.1627" +"GO:0051179","localization",65,8,11.13,379,"0.9270","0.0575","0.1740" +"GO:0007423","sensory organ development",6,1,1.03,272,"0.6808","0.1763","0.1763" +"GO:0031175","neuron projection development",6,2,1.03,66,"0.2736","0.1763","0.1763" +"GO:0032990","cell part morphogenesis",6,2,1.03,67,"0.2736","0.1763","0.1763" +"GO:0001654","eye development",4,1,0.69,169,"0.5311","0.1805","0.1805" +"GO:0007409","axonogenesis",4,1,0.69,170,"0.5311","0.1805","0.1805" +"GO:0009611","response to wounding",4,1,0.69,171,"0.5311","0.1805","0.1805" +"GO:0042060","wound healing",4,1,0.69,172,"0.5311","0.1805","0.1805" +"GO:0043010","camera-type eye development",4,1,0.69,173,"0.5311","0.1805","0.1805" +"GO:0048667","cell morphogenesis involved in neuron di...",4,1,0.69,174,"0.5311","0.1805","0.1805" +"GO:0048880","sensory system development",4,1,0.69,175,"0.5311","0.1805","0.1805" +"GO:0050808","synapse organization",4,2,0.69,33,"0.1368","0.1805","0.1805" +"GO:0060041","retina development in camera-type eye",4,1,0.69,176,"0.5311","0.1805","0.1805" +"GO:0061564","axon development",4,1,0.69,177,"0.5311","0.1805","0.1805" +"GO:0150063","visual system development",4,1,0.69,178,"0.5311","0.1805","0.1805" +"GO:0030154","cell differentiation",18,4,3.08,93,"0.3716","0.1819","0.1819" +"GO:0006810","transport",58,7,9.94,377,"0.9230","0.0450","0.1879" +"GO:0051276","chromosome organization",5,0,0.86,397,"1.0000","0.1900","0.1900" +"GO:0006811","ion transport",26,2,4.45,384,"0.9611","0.1922","0.1922" +"GO:0009966","regulation of signal transduction",13,4,2.23,38,"0.1641","0.1928","0.1928" +"GO:0010646","regulation of cell communication",13,4,2.23,39,"0.1641","0.1928","0.1928" +"GO:0023051","regulation of signaling",13,4,2.23,40,"0.1641","0.1928","0.1928" +"GO:0032501","multicellular organismal process",29,6,4.97,96,"0.3741","0.1947","0.1947" +"GO:0051246","regulation of protein metabolic process",16,2,2.74,323,"0.7980","0.2086","0.2086" +"GO:0031400","negative regulation of protein modificat...",5,1,0.86,235,"0.6129","0.2142","0.2142" +"GO:0006412","translation",7,1,1.2,293,"0.7371","0.2161","0.2161" +"GO:0043043","peptide biosynthetic process",7,1,1.2,294,"0.7371","0.2161","0.2161" +"GO:0030182","neuron differentiation",11,3,1.88,74,"0.2858","0.2247","0.2247" +"GO:0022607","cellular component assembly",11,1,1.88,355,"0.8801","0.2303","0.2303" +"GO:0051234","establishment of localization",60,7,10.28,381,"0.9403","0.0663","0.2393" +"GO:0043603","cellular amide metabolic process",11,3,1.88,75,"0.2858","0.2418","0.2418" +"GO:0006996","organelle organization",15,2,2.57,306,"0.7656","0.2437","0.2437" +"GO:0032502","developmental process",30,6,5.14,102,"0.4096","0.2470","0.2470" +"GO:0048856","anatomical structure development",30,6,5.14,103,"0.4096","0.2470","0.2470" +"GO:0007017","microtubule-based process",5,2,0.86,51,"0.2038","0.2490","0.2490" +"GO:0031344","regulation of cell projection organizati...",5,1,0.86,236,"0.6129","0.2490","0.2490" +"GO:0120035","regulation of plasma membrane bounded ce...",5,1,0.86,237,"0.6129","0.2490","0.2490" +"GO:0006082","organic acid metabolic process",7,3,1.2,17,"0.0990","0.2530","0.2530" +"GO:0019752","carboxylic acid metabolic process",7,3,1.2,18,"0.0990","0.2530","0.2530" +"GO:0043436","oxoacid metabolic process",7,3,1.2,19,"0.0990","0.2530","0.2530" +"GO:0051049","regulation of transport",6,0,1.03,398,"1.0000","0.2537","0.2537" +"GO:0070887","cellular response to chemical stimulus",7,2,1.2,86,"0.3434","0.2545","0.2545" +"GO:0006396","RNA processing",4,1,0.69,179,"0.5311","0.2585","0.2585" +"GO:0016071","mRNA metabolic process",4,1,0.69,180,"0.5311","0.2585","0.2585" +"GO:0006812","cation transport",19,0,3.25,399,"1.0000","0.2638","0.2638" +"GO:0035556","intracellular signal transduction",14,5,2.4,5,"0.0694","0.2638","0.2638" +"GO:0051241","negative regulation of multicellular org...",4,2,0.69,34,"0.1368","0.2665","0.2665" +"GO:0032269","negative regulation of cellular protein ...",7,1,1.2,295,"0.7371","0.2667","0.2667" +"GO:0051248","negative regulation of protein metabolic...",7,1,1.2,296,"0.7371","0.2667","0.2667" +"GO:0032989","cellular component morphogenesis",9,3,1.54,43,"0.1856","0.2704","0.2704" +"GO:0048731","system development",22,4,3.77,226,"0.5423","0.2726","0.2726" +"GO:0051301","cell division",3,1,0.51,113,"0.4325","0.2785","0.2785" +"GO:0009792","embryo development ending in birth or eg...",3,0,0.51,400,"1.0000","0.2785","0.2785" +"GO:0043009","chordate embryonic development",3,0,0.51,401,"1.0000","0.2785","0.2785" +"GO:0055114","oxidation-reduction process",10,3,1.71,59,"0.2346","0.2802","0.2802" +"GO:0006259","DNA metabolic process",4,1,0.69,181,"0.5311","0.2830","0.2830" +"GO:0006281","DNA repair",4,1,0.69,182,"0.5311","0.2830","0.2830" +"GO:0006974","cellular response to DNA damage stimulus",4,1,0.69,183,"0.5311","0.2830","0.2830" +"GO:1902532","negative regulation of intracellular sig...",3,1,0.51,114,"0.4325","0.2932","0.2932" +"GO:2000026","regulation of multicellular organismal d...",13,4,2.23,41,"0.1641","0.2936","0.2936" +"GO:0048568","embryonic organ development",3,1,0.51,115,"0.4325","0.3006","0.3006" +"GO:0002009","morphogenesis of an epithelium",3,0,0.51,402,"1.0000","0.3006","0.3006" +"GO:0048729","tissue morphogenesis",3,0,0.51,403,"1.0000","0.3006","0.3006" +"GO:0060429","epithelium development",3,0,0.51,404,"1.0000","0.3006","0.3006" +"GO:0098657","import into cell",5,0,0.86,405,"1.0000","0.3007","0.3007" +"GO:0044085","cellular component biogenesis",14,1,2.4,380,"0.9342","0.3029","0.3029" +"GO:0042592","homeostatic process",11,2,1.88,228,"0.5915","0.3115","0.3115" +"GO:0009887","animal organ morphogenesis",5,0,0.86,406,"1.0000","0.3146","0.3146" +"GO:0071702","organic substance transport",18,4,3.08,94,"0.3716","0.3159","0.3159" +"GO:0010769","regulation of cell morphogenesis involve...",3,1,0.51,116,"0.4325","0.3159","0.3159" +"GO:0010975","regulation of neuron projection developm...",3,1,0.51,117,"0.4325","0.3159","0.3159" +"GO:0022604","regulation of cell morphogenesis",3,1,0.51,118,"0.4325","0.3159","0.3159" +"GO:0072657","protein localization to membrane",3,1,0.51,119,"0.4325","0.3159","0.3159" +"GO:0010639","negative regulation of organelle organiz...",3,0,0.51,407,"1.0000","0.3159","0.3159" +"GO:0098660","inorganic ion transmembrane transport",3,0,0.51,408,"1.0000","0.3159","0.3159" +"GO:0098662","inorganic cation transmembrane transport",3,0,0.51,409,"1.0000","0.3159","0.3159" +"GO:0071840","cellular component organization or bioge...",32,4,5.48,342,"0.8436","0.3159","0.3159" +"GO:0001932","regulation of protein phosphorylation",7,2,1.2,87,"0.3434","0.3222","0.3222" +"GO:0042325","regulation of phosphorylation",7,2,1.2,88,"0.3434","0.3222","0.3222" +"GO:0033036","macromolecule localization",20,4,3.43,161,"0.4588","0.3312","0.3312" +"GO:0071705","nitrogen compound transport",17,4,2.91,80,"0.3277","0.3386","0.3386" +"GO:0043604","amide biosynthetic process",8,1,1.37,312,"0.7836","0.3405","0.3405" +"GO:0044057","regulation of system process",3,0,0.51,410,"1.0000","0.3559","0.3559" +"GO:0006397","mRNA processing",3,0,0.51,411,"1.0000","0.3643","0.3643" +"GO:0044087","regulation of cellular component biogene...",9,1,1.54,334,"0.8221","0.3655","0.3655" +"GO:1901700","response to oxygen-containing compound",3,1,0.51,120,"0.4325","0.3727","0.3727" +"GO:0006325","chromatin organization",3,0,0.51,412,"1.0000","0.3727","0.3727" +"GO:0051050","positive regulation of transport",3,0,0.51,413,"1.0000","0.3727","0.3727" +"GO:0009968","negative regulation of signal transducti...",6,2,1.03,68,"0.2736","0.3737","0.3737" +"GO:0010648","negative regulation of cell communicatio...",6,2,1.03,69,"0.2736","0.3737","0.3737" +"GO:0023057","negative regulation of signaling",6,2,1.03,70,"0.2736","0.3737","0.3737" +"GO:0000904","cell morphogenesis involved in different...",5,1,0.86,238,"0.6129","0.3779","0.3779" +"GO:0051704","multi-organism process",5,1,0.86,239,"0.6129","0.3779","0.3779" +"GO:0022414","reproductive process",5,0,0.86,414,"1.0000","0.3779","0.3779" +"GO:0009888","tissue development",8,1,1.37,313,"0.7836","0.3818","0.3818" +"GO:0006366","transcription by RNA polymerase II",12,1,2.06,369,"0.9018","0.3826","0.3826" +"GO:0006897","endocytosis",4,0,0.69,415,"1.0000","0.3842","0.3842" +"GO:0007610","behavior",4,0,0.69,416,"1.0000","0.3842","0.3842" +"GO:1901361","organic cyclic compound catabolic proces...",5,1,0.86,240,"0.6129","0.3845","0.3845" +"GO:0016042","lipid catabolic process",5,1,0.86,241,"0.6129","0.3867","0.3867" +"GO:0009967","positive regulation of signal transducti...",5,2,0.86,52,"0.2038","0.3912","0.3912" +"GO:0010647","positive regulation of cell communicatio...",5,2,0.86,53,"0.2038","0.3912","0.3912" +"GO:0023056","positive regulation of signaling",5,2,0.86,54,"0.2038","0.3912","0.3912" +"GO:0051093","negative regulation of developmental pro...",5,2,0.86,55,"0.2038","0.3912","0.3912" +"GO:0010638","positive regulation of organelle organiz...",4,0,0.69,417,"1.0000","0.3942","0.3942" +"GO:0006952","defense response",5,1,0.86,242,"0.6129","0.3957","0.3957" +"GO:0006468","protein phosphorylation",18,4,3.08,95,"0.3716","0.3998","0.3998" +"GO:0008104","protein localization",18,3,3.08,263,"0.6270","0.3998","0.3998" +"GO:0031399","regulation of protein modification proce...",10,2,1.71,223,"0.5359","0.4024","0.4024" +"GO:0006405","RNA export from nucleus",3,1,0.51,121,"0.4325","0.4072","0.4072" +"GO:0006913","nucleocytoplasmic transport",3,1,0.51,122,"0.4325","0.4072","0.4072" +"GO:0050657","nucleic acid transport",3,1,0.51,123,"0.4325","0.4072","0.4072" +"GO:0050658","RNA transport",3,1,0.51,124,"0.4325","0.4072","0.4072" +"GO:0051028","mRNA transport",3,1,0.51,125,"0.4325","0.4072","0.4072" +"GO:0051168","nuclear export",3,1,0.51,126,"0.4325","0.4072","0.4072" +"GO:0051169","nuclear transport",3,1,0.51,127,"0.4325","0.4072","0.4072" +"GO:0051236","establishment of RNA localization",3,1,0.51,128,"0.4325","0.4072","0.4072" +"GO:0043086","negative regulation of catalytic activit...",4,1,0.69,184,"0.5311","0.4145","0.4145" +"GO:0044092","negative regulation of molecular functio...",4,1,0.69,185,"0.5311","0.4145","0.4145" +"GO:0009892","negative regulation of metabolic process",11,1,1.88,356,"0.8801","0.4163","0.4163" +"GO:0031324","negative regulation of cellular metaboli...",11,1,1.88,357,"0.8801","0.4163","0.4163" +"GO:0001933","negative regulation of protein phosphory...",3,1,0.51,129,"0.4325","0.4250","0.4250" +"GO:0010563","negative regulation of phosphorus metabo...",3,1,0.51,130,"0.4325","0.4250","0.4250" +"GO:0042326","negative regulation of phosphorylation",3,1,0.51,131,"0.4325","0.4250","0.4250" +"GO:0045936","negative regulation of phosphate metabol...",3,1,0.51,132,"0.4325","0.4250","0.4250" +"GO:1903047","mitotic cell cycle process",3,1,0.51,133,"0.4325","0.4250","0.4250" +"GO:0008152","metabolic process",134,27,22.95,16,"0.0919","0.4306","0.4306" +"GO:0016043","cellular component organization",30,4,5.14,325,"0.8005","0.4353","0.4353" +"GO:1901564","organonitrogen compound metabolic proces...",64,13,10.96,63,"0.2681","0.4406","0.4406" +"GO:0008610","lipid biosynthetic process",5,0,0.86,418,"1.0000","0.4444","0.4444" +"GO:0050793","regulation of developmental process",16,4,2.74,73,"0.2844","0.4463","0.4463" +"GO:0034613","cellular protein localization",13,2,2.23,287,"0.6880","0.4501","0.4501" +"GO:0006357","regulation of transcription by RNA polym...",10,1,1.71,344,"0.8539","0.4525","0.4525" +"GO:0010033","response to organic substance",10,2,1.71,224,"0.5359","0.4525","0.4525" +"GO:0051240","positive regulation of multicellular org...",10,1,1.71,345,"0.8539","0.4525","0.4525" +"GO:0006886","intracellular protein transport",8,1,1.37,314,"0.7836","0.4554","0.4554" +"GO:0006820","anion transport",7,2,1.2,89,"0.3434","0.4606","0.4606" +"GO:0019439","aromatic compound catabolic process",4,1,0.69,186,"0.5311","0.4672","0.4672" +"GO:0044270","cellular nitrogen compound catabolic pro...",4,1,0.69,187,"0.5311","0.4672","0.4672" +"GO:0046700","heterocycle catabolic process",4,1,0.69,188,"0.5311","0.4672","0.4672" +"GO:0006753","nucleoside phosphate metabolic process",4,0,0.69,419,"1.0000","0.4672","0.4672" +"GO:0009117","nucleotide metabolic process",4,0,0.69,420,"1.0000","0.4672","0.4672" +"GO:0051960","regulation of nervous system development",8,2,1.37,107,"0.4112","0.4707","0.4707" +"GO:0060284","regulation of cell development",8,1,1.37,315,"0.7836","0.4707","0.4707" +"GO:0045184","establishment of protein localization",12,2,2.06,264,"0.6422","0.4744","0.4744" +"GO:0015931","nucleobase-containing compound transport",4,1,0.69,189,"0.5311","0.4780","0.4780" +"GO:0019220","regulation of phosphate metabolic proces...",8,2,1.37,108,"0.4112","0.4862","0.4862" +"GO:0051174","regulation of phosphorus metabolic proce...",8,2,1.37,109,"0.4112","0.4862","0.4862" +"GO:0044281","small molecule metabolic process",17,4,2.91,81,"0.3277","0.4880","0.4880" +"GO:0022898","regulation of transmembrane transporter ...",3,0,0.51,421,"1.0000","0.4896","0.4896" +"GO:0032409","regulation of transporter activity",3,0,0.51,422,"1.0000","0.4896","0.4896" +"GO:0032412","regulation of ion transmembrane transpor...",3,0,0.51,423,"1.0000","0.4896","0.4896" +"GO:0034762","regulation of transmembrane transport",3,0,0.51,424,"1.0000","0.4896","0.4896" +"GO:0034765","regulation of ion transmembrane transpor...",3,0,0.51,425,"1.0000","0.4896","0.4896" +"GO:0043269","regulation of ion transport",3,0,0.51,426,"1.0000","0.4896","0.4896" +"GO:1904062","regulation of cation transmembrane trans...",3,0,0.51,427,"1.0000","0.4896","0.4896" +"GO:2001257","regulation of cation channel activity",3,0,0.51,428,"1.0000","0.4896","0.4896" +"GO:0031325","positive regulation of cellular metaboli...",11,3,1.88,76,"0.2858","0.4897","0.4897" +"GO:0006508","proteolysis",10,3,1.71,60,"0.2346","0.4907","0.4907" +"GO:0010605","negative regulation of macromolecule met...",9,1,1.54,335,"0.8221","0.4916","0.4916" +"GO:0051172","negative regulation of nitrogen compound...",9,1,1.54,336,"0.8221","0.4916","0.4916" +"GO:0048583","regulation of response to stimulus",17,4,2.91,82,"0.3277","0.4948","0.4948" +"GO:0015031","protein transport",11,2,1.88,229,"0.5915","0.5031","0.5031" +"GO:0015833","peptide transport",11,2,1.88,230,"0.5915","0.5031","0.5031" +"GO:0042886","amide transport",11,2,1.88,231,"0.5915","0.5031","0.5031" +"GO:0009890","negative regulation of biosynthetic proc...",5,1,0.86,243,"0.6129","0.5050","0.5050" +"GO:0010558","negative regulation of macromolecule bio...",5,1,0.86,244,"0.6129","0.5050","0.5050" +"GO:0010629","negative regulation of gene expression",5,1,0.86,245,"0.6129","0.5050","0.5050" +"GO:0031327","negative regulation of cellular biosynth...",5,1,0.86,246,"0.6129","0.5050","0.5050" +"GO:2000113","negative regulation of cellular macromol...",5,1,0.86,247,"0.6129","0.5050","0.5050" +"GO:0055085","transmembrane transport",26,3,4.45,350,"0.8636","0.5070","0.5070" +"GO:0009987","cellular process",151,27,25.87,101,"0.4080","0.5082","0.5082" +"GO:0048519","negative regulation of biological proces...",25,3,4.28,340,"0.8434","0.5150","0.5150" +"GO:0098655","cation transmembrane transport",6,0,1.03,429,"1.0000","0.5161","0.5161" +"GO:0006807","nitrogen compound metabolic process",98,20,16.79,37,"0.1625","0.5168","0.5168" +"GO:0051338","regulation of transferase activity",3,0,0.51,430,"1.0000","0.5182","0.5182" +"GO:0045664","regulation of neuron differentiation",7,1,1.2,297,"0.7371","0.5188","0.5188" +"GO:0048584","positive regulation of response to stimu...",7,2,1.2,90,"0.3434","0.5188","0.5188" +"GO:0050767","regulation of neurogenesis",7,1,1.2,298,"0.7371","0.5188","0.5188" +"GO:0006814","sodium ion transport",4,0,0.69,431,"1.0000","0.5220","0.5220" +"GO:0051128","regulation of cellular component organiz...",13,2,2.23,288,"0.6880","0.5227","0.5227" +"GO:0009893","positive regulation of metabolic process",12,3,2.06,84,"0.3380","0.5328","0.5328" +"GO:0000122","negative regulation of transcription by ...",4,1,0.69,190,"0.5311","0.5332","0.5332" +"GO:0045892","negative regulation of transcription, DN...",4,1,0.69,191,"0.5311","0.5332","0.5332" +"GO:0045934","negative regulation of nucleobase-contai...",4,1,0.69,192,"0.5311","0.5332","0.5332" +"GO:0050673","epithelial cell proliferation",4,1,0.69,193,"0.5311","0.5332","0.5332" +"GO:0051253","negative regulation of RNA metabolic pro...",4,1,0.69,194,"0.5311","0.5332","0.5332" +"GO:1902679","negative regulation of RNA biosynthetic ...",4,1,0.69,195,"0.5311","0.5332","0.5332" +"GO:1903507","negative regulation of nucleic acid-temp...",4,1,0.69,196,"0.5311","0.5332","0.5332" +"GO:0009891","positive regulation of biosynthetic proc...",8,1,1.37,316,"0.7836","0.5335","0.5335" +"GO:0044237","cellular metabolic process",103,20,17.64,62,"0.2509","0.5469","0.5469" +"GO:0043933","protein-containing complex subunit organ...",7,0,1.2,432,"1.0000","0.5615","0.5615" +"GO:0065003","protein-containing complex assembly",7,0,1.2,433,"1.0000","0.5615","0.5615" +"GO:0009166","nucleotide catabolic process",3,0,0.51,434,"1.0000","0.5666","0.5666" +"GO:0034655","nucleobase-containing compound catabolic...",3,0,0.51,435,"1.0000","0.5666","0.5666" +"GO:1901292","nucleoside phosphate catabolic process",3,0,0.51,436,"1.0000","0.5666","0.5666" +"GO:0044248","cellular catabolic process",19,3,3.25,267,"0.6667","0.5696","0.5696" +"GO:0022603","regulation of anatomical structure morph...",7,2,1.2,91,"0.3434","0.5700","0.5700" +"GO:0048468","cell development",14,3,2.4,160,"0.4415","0.5705","0.5705" +"GO:0048513","animal organ development",14,2,2.4,291,"0.7291","0.5705","0.5705" +"GO:0070727","cellular macromolecule localization",14,2,2.4,292,"0.7291","0.5705","0.5705" +"GO:0003008","system process",6,0,1.03,437,"1.0000","0.5713","0.5713" +"GO:0007267","cell-cell signaling",6,0,1.03,438,"1.0000","0.5713","0.5713" +"GO:0030001","metal ion transport",12,0,2.06,439,"1.0000","0.5725","0.5725" +"GO:0016236","macroautophagy",3,1,0.51,134,"0.4325","0.5764","0.5764" +"GO:0009607","response to biotic stimulus",3,1,0.51,135,"0.4325","0.5764","0.5764" +"GO:0031503","protein-containing complex localization",3,0,0.51,440,"1.0000","0.5764","0.5764" +"GO:0015711","organic anion transport",5,1,0.86,248,"0.6129","0.5778","0.5778" +"GO:0098656","anion transmembrane transport",5,1,0.86,249,"0.6129","0.5778","0.5778" +"GO:0010557","positive regulation of macromolecule bio...",7,1,1.2,299,"0.7371","0.5787","0.5787" +"GO:0031328","positive regulation of cellular biosynth...",7,1,1.2,300,"0.7371","0.5787","0.5787" +"GO:0045935","positive regulation of nucleobase-contai...",7,1,1.2,301,"0.7371","0.5787","0.5787" +"GO:0048646","anatomical structure formation involved ...",7,1,1.2,302,"0.7371","0.5787","0.5787" +"GO:1901135","carbohydrate derivative metabolic proces...",7,0,1.2,441,"1.0000","0.5787","0.5787" +"GO:0035239","tube morphogenesis",6,1,1.03,273,"0.6808","0.5853","0.5853" +"GO:0035295","tube development",6,1,1.03,274,"0.6808","0.5853","0.5853" +"GO:0000003","reproduction",6,0,1.03,442,"1.0000","0.5853","0.5853" +"GO:0032879","regulation of localization",11,1,1.88,358,"0.8801","0.5873","0.5873" +"GO:0044242","cellular lipid catabolic process",4,1,0.69,197,"0.5311","0.5895","0.5895" +"GO:0016310","phosphorylation",20,4,3.43,162,"0.4588","0.5908","0.5908" +"GO:0006725","cellular aromatic compound metabolic pro...",44,10,7.54,44,"0.1875","0.5945","0.5945" +"GO:0030149","sphingolipid catabolic process",3,1,0.51,136,"0.4325","0.5959","0.5959" +"GO:0046466","membrane lipid catabolic process",3,1,0.51,137,"0.4325","0.5959","0.5959" +"GO:0033554","cellular response to stress",8,1,1.37,317,"0.7836","0.5980","0.5980" +"GO:0048523","negative regulation of cellular process",22,3,3.77,307,"0.7678","0.6041","0.6041" +"GO:0045595","regulation of cell differentiation",11,2,1.88,232,"0.5915","0.6065","0.6065" +"GO:0048878","chemical homeostasis",3,0,0.51,443,"1.0000","0.6155","0.6155" +"GO:0050801","ion homeostasis",3,0,0.51,444,"1.0000","0.6155","0.6155" +"GO:0019538","protein metabolic process",52,10,8.91,99,"0.3926","0.6160","0.6160" +"GO:0034641","cellular nitrogen compound metabolic pro...",55,11,9.42,79,"0.3211","0.6166","0.6166" +"GO:0010628","positive regulation of gene expression",6,1,1.03,275,"0.6808","0.6271","0.6271" +"GO:0045893","positive regulation of transcription, DN...",6,1,1.03,276,"0.6808","0.6271","0.6271" +"GO:0045944","positive regulation of transcription by ...",6,1,1.03,277,"0.6808","0.6271","0.6271" +"GO:0051254","positive regulation of RNA metabolic pro...",6,1,1.03,278,"0.6808","0.6271","0.6271" +"GO:1902680","positive regulation of RNA biosynthetic ...",6,1,1.03,279,"0.6808","0.6271","0.6271" +"GO:1903508","positive regulation of nucleic acid-temp...",6,1,1.03,280,"0.6808","0.6271","0.6271" +"GO:1901565","organonitrogen compound catabolic proces...",11,2,1.88,233,"0.5915","0.6342","0.6342" +"GO:0044282","small molecule catabolic process",4,1,0.69,198,"0.5311","0.6348","0.6348" +"GO:0051260","protein homooligomerization",4,0,0.69,445,"1.0000","0.6348","0.6348" +"GO:0010256","endomembrane system organization",3,0,0.51,446,"1.0000","0.6351","0.6351" +"GO:0009056","catabolic process",22,3,3.77,308,"0.7678","0.6445","0.6445" +"GO:0046483","heterocycle metabolic process",45,10,7.71,57,"0.2098","0.6456","0.6456" +"GO:1901360","organic cyclic compound metabolic proces...",45,10,7.71,58,"0.2098","0.6456","0.6456" +"GO:0003333","amino acid transmembrane transport",4,1,0.69,199,"0.5311","0.6461","0.6461" +"GO:0006865","amino acid transport",4,1,0.69,200,"0.5311","0.6461","0.6461" +"GO:0015849","organic acid transport",4,1,0.69,201,"0.5311","0.6461","0.6461" +"GO:0046942","carboxylic acid transport",4,1,0.69,202,"0.5311","0.6461","0.6461" +"GO:1903825","organic acid transmembrane transport",4,1,0.69,203,"0.5311","0.6461","0.6461" +"GO:1905039","carboxylic acid transmembrane transport",4,1,0.69,204,"0.5311","0.6461","0.6461" +"GO:0006403","RNA localization",4,1,0.69,205,"0.5311","0.6461","0.6461" +"GO:0010562","positive regulation of phosphorus metabo...",3,1,0.51,138,"0.4325","0.6546","0.6546" +"GO:0010564","regulation of cell cycle process",3,1,0.51,139,"0.4325","0.6546","0.6546" +"GO:0045937","positive regulation of phosphate metabol...",3,1,0.51,140,"0.4325","0.6546","0.6546" +"GO:0051961","negative regulation of nervous system de...",3,1,0.51,141,"0.4325","0.6546","0.6546" +"GO:0048585","negative regulation of response to stimu...",8,2,1.37,110,"0.4112","0.6625","0.6625" +"GO:0005975","carbohydrate metabolic process",7,0,1.2,447,"1.0000","0.6690","0.6690" +"GO:0034220","ion transmembrane transport",10,1,1.71,346,"0.8539","0.6709","0.6709" +"GO:1901566","organonitrogen compound biosynthetic pro...",13,1,2.23,374,"0.9196","0.6713","0.6713" +"GO:0006139","nucleobase-containing compound metabolic...",42,9,7.19,64,"0.2693","0.6740","0.6740" +"GO:0008283","cell proliferation",5,1,0.86,250,"0.6129","0.6791","0.6791" +"GO:0018193","peptidyl-amino acid modification",5,1,0.86,251,"0.6129","0.6791","0.6791" +"GO:0055086","nucleobase-containing small molecule met...",5,0,0.86,448,"1.0000","0.6791","0.6791" +"GO:0006464","cellular protein modification process",32,6,5.48,165,"0.4802","0.6792","0.6792" +"GO:0036211","protein modification process",32,6,5.48,166,"0.4802","0.6792","0.6792" +"GO:0006914","autophagy",4,1,0.69,206,"0.5311","0.6798","0.6798" +"GO:0031329","regulation of cellular catabolic process",4,1,0.69,207,"0.5311","0.6798","0.6798" +"GO:0061919","process utilizing autophagic mechanism",4,1,0.69,208,"0.5311","0.6798","0.6798" +"GO:0065009","regulation of molecular function",13,1,2.23,375,"0.9196","0.6824","0.6824" +"GO:0045596","negative regulation of cell differentiat...",4,1,0.69,209,"0.5311","0.6910","0.6910" +"GO:0048863","stem cell differentiation",4,1,0.69,210,"0.5311","0.6910","0.6910" +"GO:0009612","response to mechanical stimulus",4,0,0.69,449,"1.0000","0.6910","0.6910" +"GO:0016055","Wnt signaling pathway",4,0,0.69,450,"1.0000","0.6910","0.6910" +"GO:0050877","nervous system process",4,0,0.69,451,"1.0000","0.6910","0.6910" +"GO:0198738","cell-cell signaling by wnt",4,0,0.69,452,"1.0000","0.6910","0.6910" +"GO:1905114","cell surface receptor signaling pathway ...",4,0,0.69,453,"1.0000","0.6910","0.6910" +"GO:0032940","secretion by cell",3,1,0.51,142,"0.4325","0.6933","0.6933" +"GO:0030258","lipid modification",3,0,0.51,454,"1.0000","0.6933","0.6933" +"GO:0046486","glycerolipid metabolic process",3,0,0.51,455,"1.0000","0.6933","0.6933" +"GO:0044271","cellular nitrogen compound biosynthetic ...",44,5,7.54,373,"0.9185","0.6962","0.6962" +"GO:0033043","regulation of organelle organization",5,0,0.86,456,"1.0000","0.6965","0.6965" +"GO:0090304","nucleic acid metabolic process",38,8,6.51,78,"0.3101","0.6965","0.6965" +"GO:0000278","mitotic cell cycle",4,1,0.69,211,"0.5311","0.7020","0.7020" +"GO:0006643","membrane lipid metabolic process",4,1,0.69,212,"0.5311","0.7020","0.7020" +"GO:0006644","phospholipid metabolic process",4,1,0.69,213,"0.5311","0.7020","0.7020" +"GO:0006665","sphingolipid metabolic process",4,1,0.69,214,"0.5311","0.7020","0.7020" +"GO:0097164","ammonium ion metabolic process",4,1,0.69,215,"0.5311","0.7020","0.7020" +"GO:0021953","central nervous system neuron differenti...",3,1,0.51,143,"0.4325","0.7028","0.7028" +"GO:0060341","regulation of cellular localization",3,1,0.51,144,"0.4325","0.7028","0.7028" +"GO:0060548","negative regulation of cell death",3,1,0.51,145,"0.4325","0.7028","0.7028" +"GO:0006950","response to stress",19,3,3.25,268,"0.6667","0.7114","0.7114" +"GO:0001568","blood vessel development",3,1,0.51,146,"0.4325","0.7123","0.7123" +"GO:0001944","vasculature development",3,1,0.51,147,"0.4325","0.7123","0.7123" +"GO:0002683","negative regulation of immune system pro...",3,1,0.51,148,"0.4325","0.7123","0.7123" +"GO:0002694","regulation of leukocyte activation",3,1,0.51,149,"0.4325","0.7123","0.7123" +"GO:0042110","T cell activation",3,1,0.51,150,"0.4325","0.7123","0.7123" +"GO:0042127","regulation of cell proliferation",3,1,0.51,151,"0.4325","0.7123","0.7123" +"GO:0046649","lymphocyte activation",3,1,0.51,152,"0.4325","0.7123","0.7123" +"GO:0048514","blood vessel morphogenesis",3,1,0.51,153,"0.4325","0.7123","0.7123" +"GO:0050863","regulation of T cell activation",3,1,0.51,154,"0.4325","0.7123","0.7123" +"GO:0050865","regulation of cell activation",3,1,0.51,155,"0.4325","0.7123","0.7123" +"GO:0051249","regulation of lymphocyte activation",3,1,0.51,156,"0.4325","0.7123","0.7123" +"GO:0072358","cardiovascular system development",3,1,0.51,157,"0.4325","0.7123","0.7123" +"GO:0019637","organophosphate metabolic process",9,1,1.54,337,"0.8221","0.7128","0.7128" +"GO:0001775","cell activation",5,1,0.86,252,"0.6129","0.7187","0.7187" +"GO:0010467","gene expression",43,7,7.37,265,"0.6422","0.7216","0.7216" +"GO:0031401","positive regulation of protein modificat...",5,1,0.86,253,"0.6129","0.7236","0.7236" +"GO:0032270","positive regulation of cellular protein ...",5,1,0.86,254,"0.6129","0.7236","0.7236" +"GO:0051247","positive regulation of protein metabolic...",5,1,0.86,255,"0.6129","0.7236","0.7236" +"GO:0007417","central nervous system development",9,1,1.54,338,"0.8221","0.7293","0.7293" +"GO:0031323","regulation of cellular metabolic process",36,5,6.17,321,"0.7864","0.7313","0.7313" +"GO:0006915","apoptotic process",4,1,0.69,216,"0.5311","0.7348","0.7348" +"GO:0042981","regulation of apoptotic process",4,1,0.69,217,"0.5311","0.7348","0.7348" +"GO:0043067","regulation of programmed cell death",4,1,0.69,218,"0.5311","0.7348","0.7348" +"GO:0072359","circulatory system development",4,1,0.69,219,"0.5311","0.7348","0.7348" +"GO:0034404","nucleobase-containing small molecule bio...",4,0,0.69,457,"1.0000","0.7348","0.7348" +"GO:0016070","RNA metabolic process",35,7,6,97,"0.3892","0.7369","0.7369" +"GO:0044267","cellular protein metabolic process",43,7,7.37,266,"0.6422","0.7390","0.7390" +"GO:0043412","macromolecule modification",33,6,5.65,167,"0.5149","0.7391","0.7391" +"GO:0048518","positive regulation of biological proces...",27,4,4.62,290,"0.7200","0.7426","0.7426" +"GO:0061024","membrane organization",5,1,0.86,256,"0.6129","0.7477","0.7477" +"GO:0042221","response to chemical",19,2,3.25,351,"0.8731","0.7488","0.7488" +"GO:0009894","regulation of catabolic process",5,1,0.86,257,"0.6129","0.7501","0.7501" +"GO:0044238","primary metabolic process",110,20,18.84,100,"0.4066","0.7542","0.7542" +"GO:0007420","brain development",8,1,1.37,318,"0.7836","0.7564","0.7564" +"GO:0060322","head development",8,1,1.37,319,"0.7836","0.7564","0.7564" +"GO:0003006","developmental process involved in reprod...",3,0,0.51,458,"1.0000","0.7588","0.7588" +"GO:0007600","sensory perception",3,0,0.51,459,"1.0000","0.7588","0.7588" +"GO:0007623","circadian rhythm",3,0,0.51,460,"1.0000","0.7588","0.7588" +"GO:0009791","post-embryonic development",3,0,0.51,461,"1.0000","0.7588","0.7588" +"GO:0010720","positive regulation of cell development",3,0,0.51,462,"1.0000","0.7588","0.7588" +"GO:0010721","negative regulation of cell development",3,0,0.51,463,"1.0000","0.7588","0.7588" +"GO:0016358","dendrite development",3,0,0.51,464,"1.0000","0.7588","0.7588" +"GO:0030900","forebrain development",3,0,0.51,465,"1.0000","0.7588","0.7588" +"GO:0045666","positive regulation of neuron differenti...",3,0,0.51,466,"1.0000","0.7588","0.7588" +"GO:0048511","rhythmic process",3,0,0.51,467,"1.0000","0.7588","0.7588" +"GO:0050769","positive regulation of neurogenesis",3,0,0.51,468,"1.0000","0.7588","0.7588" +"GO:0051606","detection of stimulus",3,0,0.51,469,"1.0000","0.7588","0.7588" +"GO:0051962","positive regulation of nervous system de...",3,0,0.51,470,"1.0000","0.7588","0.7588" +"GO:0060070","canonical Wnt signaling pathway",3,0,0.51,471,"1.0000","0.7588","0.7588" +"GO:0007166","cell surface receptor signaling pathway",9,1,1.54,339,"0.8221","0.7617","0.7617" +"GO:0015672","monovalent inorganic cation transport",9,0,1.54,472,"1.0000","0.7617","0.7617" +"GO:0043085","positive regulation of catalytic activit...",4,0,0.69,473,"1.0000","0.7667","0.7667" +"GO:0043087","regulation of GTPase activity",4,0,0.69,474,"1.0000","0.7667","0.7667" +"GO:0019725","cellular homeostasis",3,1,0.51,158,"0.4325","0.7679","0.7679" +"GO:0045454","cell redox homeostasis",3,1,0.51,159,"0.4325","0.7679","0.7679" +"GO:0006629","lipid metabolic process",13,1,2.23,376,"0.9196","0.7714","0.7714" +"GO:0009059","macromolecule biosynthetic process",41,5,7.02,361,"0.8803","0.7718","0.7718" +"GO:0050790","regulation of catalytic activity",10,1,1.71,347,"0.8539","0.7719","0.7719" +"GO:0051649","establishment of localization in cell",18,5,3.08,42,"0.1742","0.0144","0.7742" +"GO:0010604","positive regulation of macromolecule met...",11,2,1.88,234,"0.5915","0.7768","0.7768" +"GO:0006813","potassium ion transport",5,0,0.86,475,"1.0000","0.7783","0.7783" +"GO:0009605","response to external stimulus",11,1,1.88,359,"0.8801","0.7800","0.7800" +"GO:1901575","organic substance catabolic process",16,2,2.74,324,"0.7980","0.7866","0.7866" +"GO:0010941","regulation of cell death",5,1,0.86,258,"0.6129","0.7875","0.7875" +"GO:0046434","organophosphate catabolic process",6,1,1.03,281,"0.6808","0.7881","0.7881" +"GO:0009116","nucleoside metabolic process",3,0,0.51,476,"1.0000","0.7945","0.7945" +"GO:0009895","negative regulation of catabolic process",3,0,0.51,477,"1.0000","0.7945","0.7945" +"GO:0031330","negative regulation of cellular cataboli...",3,0,0.51,478,"1.0000","0.7945","0.7945" +"GO:1901137","carbohydrate derivative biosynthetic pro...",3,0,0.51,479,"1.0000","0.7945","0.7945" +"GO:1901657","glycosyl compound metabolic process",3,0,0.51,480,"1.0000","0.7945","0.7945" +"GO:0019222","regulation of metabolic process",39,6,6.68,289,"0.7017","0.7999","0.7999" +"GO:0051173","positive regulation of nitrogen compound...",10,2,1.71,225,"0.5359","0.8013","0.8013" +"GO:0023052","signaling",44,7,7.54,269,"0.6701","0.8059","0.8059" +"GO:0046903","secretion",4,1,0.69,220,"0.5311","0.8073","0.8073" +"GO:0071704","organic substance metabolic process",113,20,19.36,164,"0.4801","0.8078","0.8078" +"GO:0050794","regulation of cellular process",80,11,13.7,363,"0.8857","0.8111","0.8111" +"GO:0051259","protein complex oligomerization",5,0,0.86,481,"1.0000","0.8121","0.8121" +"GO:0032880","regulation of protein localization",4,1,0.69,221,"0.5311","0.8171","0.8171" +"GO:0034645","cellular macromolecule biosynthetic proc...",39,5,6.68,343,"0.8477","0.8205","0.8205" +"GO:0009889","regulation of biosynthetic process",29,3,4.97,372,"0.9115","0.8256","0.8256" +"GO:0045321","leukocyte activation",4,1,0.69,222,"0.5311","0.8268","0.8268" +"GO:0060255","regulation of macromolecule metabolic pr...",36,5,6.17,322,"0.7864","0.8310","0.8310" +"GO:0010468","regulation of gene expression",28,4,4.8,303,"0.7490","0.8389","0.8389" +"GO:0010556","regulation of macromolecule biosynthetic...",28,3,4.8,366,"0.8974","0.8389","0.8389" +"GO:0031326","regulation of cellular biosynthetic proc...",28,3,4.8,367,"0.8974","0.8389","0.8389" +"GO:2000112","regulation of cellular macromolecule bio...",28,3,4.8,368,"0.8974","0.8389","0.8389" +"GO:0048522","positive regulation of cellular process",22,3,3.77,309,"0.7678","0.8436","0.8436" +"GO:0016477","cell migration",6,0,1.03,482,"1.0000","0.8476","0.8476" +"GO:0048870","cell motility",6,0,1.03,483,"1.0000","0.8476","0.8476" +"GO:0051674","localization of cell",6,0,1.03,484,"1.0000","0.8476","0.8476" +"GO:0043170","macromolecule metabolic process",89,16,15.25,163,"0.4600","0.8503","0.8503" +"GO:0016311","dephosphorylation",8,0,1.37,485,"1.0000","0.8547","0.8547" +"GO:0008219","cell death",6,1,1.03,282,"0.6808","0.8587","0.8587" +"GO:0044093","positive regulation of molecular functio...",6,0,1.03,486,"1.0000","0.8587","0.8587" +"GO:0051336","regulation of hydrolase activity",6,0,1.03,487,"1.0000","0.8587","0.8587" +"GO:0019219","regulation of nucleobase-containing comp...",25,3,4.28,341,"0.8434","0.8636","0.8636" +"GO:0007049","cell cycle",10,1,1.71,348,"0.8539","0.8645","0.8645" +"GO:0051094","positive regulation of developmental pro...",10,1,1.71,349,"0.8539","0.8645","0.8645" +"GO:0042493","response to drug",5,0,0.86,488,"1.0000","0.8680","0.8680" +"GO:0006355","regulation of transcription, DNA-templat...",24,3,4.11,330,"0.8208","0.8693","0.8693" +"GO:0051252","regulation of RNA metabolic process",24,3,4.11,331,"0.8208","0.8693","0.8693" +"GO:1903506","regulation of nucleic acid-templated tra...",24,3,4.11,332,"0.8208","0.8693","0.8693" +"GO:2001141","regulation of RNA biosynthetic process",24,3,4.11,333,"0.8208","0.8693","0.8693" +"GO:0050896","response to stimulus",60,7,10.28,382,"0.9403","0.8721","0.8721" +"GO:0045597","positive regulation of cell differentiat...",6,1,1.03,283,"0.6808","0.8798","0.8798" +"GO:0051130","positive regulation of cellular componen...",6,0,1.03,489,"1.0000","0.8798","0.8798" +"GO:0012501","programmed cell death",5,1,0.86,259,"0.6129","0.8813","0.8813" +"GO:0009628","response to abiotic stimulus",5,0,0.86,490,"1.0000","0.8813","0.8813" +"GO:0009058","biosynthetic process",51,5,8.74,385,"0.9698","0.8832","0.8832" +"GO:1901576","organic substance biosynthetic process",51,5,8.74,386,"0.9698","0.8832","0.8832" +"GO:0019438","aromatic compound biosynthetic process",35,4,6,364,"0.8939","0.8836","0.8836" +"GO:0065007","biological regulation",86,12,14.73,362,"0.8843","0.8862","0.8862" +"GO:0051641","cellular localization",24,6,4.11,56,"0.2070","0.0342","0.8881" +"GO:0022402","cell cycle process",6,1,1.03,284,"0.6808","0.8899","0.8899" +"GO:0051726","regulation of cell cycle",6,1,1.03,285,"0.6808","0.8899","0.8899" +"GO:0044260","cellular macromolecule metabolic process",72,11,12.33,304,"0.7563","0.8907","0.8907" +"GO:0002376","immune system process",8,1,1.37,320,"0.7836","0.8910","0.8910" +"GO:0044255","cellular lipid metabolic process",11,1,1.88,360,"0.8801","0.8942","0.8942" +"GO:0034654","nucleobase-containing compound biosynthe...",34,4,5.82,353,"0.8789","0.8952","0.8952" +"GO:0002682","regulation of immune system process",5,1,0.86,260,"0.6129","0.8975","0.8975" +"GO:0050789","regulation of biological process",84,11,14.39,378,"0.9270","0.9038","0.9038" +"GO:0007155","cell adhesion",7,0,1.2,491,"1.0000","0.9044","0.9044" +"GO:0022610","biological adhesion",7,0,1.2,492,"1.0000","0.9044","0.9044" +"GO:0040011","locomotion",7,0,1.2,493,"1.0000","0.9044","0.9044" +"GO:0051171","regulation of nitrogen compound metaboli...",34,4,5.82,354,"0.8789","0.9066","0.9066" +"GO:0006351","transcription, DNA-templated",30,4,5.14,326,"0.8005","0.9088","0.9088" +"GO:0032774","RNA biosynthetic process",30,4,5.14,327,"0.8005","0.9088","0.9088" +"GO:0097659","nucleic acid-templated transcription",30,4,5.14,328,"0.8005","0.9088","0.9088" +"GO:0006793","phosphorus metabolic process",30,5,5.14,261,"0.6156","0.9131","0.9131" +"GO:0006796","phosphate-containing compound metabolic ...",30,5,5.14,262,"0.6156","0.9131","0.9131" +"GO:0098609","cell-cell adhesion",6,0,1.03,494,"1.0000","0.9179","0.9179" +"GO:0043547","positive regulation of GTPase activity",3,0,0.51,495,"1.0000","0.9217","0.9217" +"GO:0051345","positive regulation of hydrolase activit...",3,0,0.51,496,"1.0000","0.9217","0.9217" +"GO:0080090","regulation of primary metabolic process",35,4,6,365,"0.8939","0.9237","0.9237" +"GO:0051716","cellular response to stimulus",54,7,9.25,352,"0.8762","0.9257","0.9257" +"GO:1901615","organic hydroxy compound metabolic proce...",3,0,0.51,497,"1.0000","0.9276","0.9276" +"GO:0051270","regulation of cellular component movemen...",5,0,0.86,498,"1.0000","0.9314","0.9314" +"GO:0007165","signal transduction",42,6,7.19,310,"0.7762","0.9330","0.9330" +"GO:0044249","cellular biosynthetic process",48,5,8.22,383,"0.9530","0.9360","0.9360" +"GO:0006470","protein dephosphorylation",3,0,0.51,499,"1.0000","0.9441","0.9441" +"GO:0030334","regulation of cell migration",4,0,0.69,500,"1.0000","0.9450","0.9450" +"GO:0040012","regulation of locomotion",4,0,0.69,501,"1.0000","0.9450","0.9450" +"GO:2000145","regulation of cell motility",4,0,0.69,502,"1.0000","0.9450","0.9450" +"GO:0007154","cell communication",44,6,7.54,329,"0.8181","0.9504","0.9504" +"GO:0070647","protein modification by small protein co...",4,0,0.69,503,"1.0000","0.9752","0.9752" +"GO:0016567","protein ubiquitination",3,0,0.51,504,"1.0000","0.9814","0.9814" +"GO:0032446","protein modification by small protein co...",3,0,0.51,505,"1.0000","0.9814","0.9814" +"GO:0006511","ubiquitin-dependent protein catabolic pr...",4,0,0.69,506,"1.0000","0.9827","0.9827" +"GO:0019941","modification-dependent protein catabolic...",4,0,0.69,507,"1.0000","0.9827","0.9827" +"GO:0043632","modification-dependent macromolecule cat...",4,0,0.69,508,"1.0000","0.9827","0.9827" +"GO:0044257","cellular protein catabolic process",4,0,0.69,509,"1.0000","0.9827","0.9827" +"GO:0044265","cellular macromolecule catabolic process",4,0,0.69,510,"1.0000","0.9827","0.9827" +"GO:0051603","proteolysis involved in cellular protein...",4,0,0.69,511,"1.0000","0.9827","0.9827" +"GO:0018130","heterocycle biosynthetic process",36,4,6.17,370,"0.9073","0.9835","0.9835" +"GO:1901362","organic cyclic compound biosynthetic pro...",36,4,6.17,371,"0.9073","0.9835","0.9835" +"GO:0032787","monocarboxylic acid metabolic process",3,0,0.51,512,"1.0000","0.9895","0.9895" +"GO:0009057","macromolecule catabolic process",5,0,0.86,513,"1.0000","0.9921","0.9921" +"GO:0030163","protein catabolic process",5,0,0.86,514,"1.0000","0.9921","0.9921" +"GO:0044283","small molecule biosynthetic process",6,0,1.03,515,"1.0000","0.9976","0.9976" +"GO:0008150","biological_process",216,37,37,516,"1.0000","1.0000","1.0000" diff --git a/GO_enrichment_microbiome_output/contrast_young_males_downregulated.csv b/GO_enrichment_microbiome_output/contrast_young_males_downregulated.csv index d16b507..8b118d4 100644 --- a/GO_enrichment_microbiome_output/contrast_young_males_downregulated.csv +++ b/GO_enrichment_microbiome_output/contrast_young_males_downregulated.csv @@ -4,3 +4,692 @@ "GO:0051641","cellular localization",28,23,16.96,1,"0.0096","0.0118","0.0118" "GO:0006511","ubiquitin-dependent protein catabolic pr...",5,5,3.03,38,"0.0797","0.0164","0.0164" "GO:0019941","modification-dependent protein catabolic...",5,5,3.03,39,"0.0797","0.0164","0.0164" +"GO:0043632","modification-dependent macromolecule cat...",5,5,3.03,40,"0.0797","0.0164","0.0164" +"GO:0044257","cellular protein catabolic process",5,5,3.03,41,"0.0797","0.0164","0.0164" +"GO:0051603","proteolysis involved in cellular protein...",5,5,3.03,42,"0.0797","0.0164","0.0164" +"GO:0016043","cellular component organization",44,33,26.66,5,"0.0227","0.0250","0.0250" +"GO:0071840","cellular component organization or bioge...",44,33,26.66,6,"0.0227","0.0250","0.0250" +"GO:1901135","carbohydrate derivative metabolic proces...",15,13,9.09,7,"0.0267","0.0279","0.0279" +"GO:0070647","protein modification by small protein co...",8,8,4.85,2,"0.0170","0.0290","0.0290" +"GO:1901700","response to oxygen-containing compound",8,8,4.85,3,"0.0170","0.0290","0.0290" +"GO:0006351","transcription, DNA-templated",40,27,24.23,147,"0.2149","0.0332","0.0332" +"GO:0032774","RNA biosynthetic process",40,27,24.23,148,"0.2149","0.0332","0.0332" +"GO:0097659","nucleic acid-templated transcription",40,27,24.23,149,"0.2149","0.0332","0.0332" +"GO:0009059","macromolecule biosynthetic process",58,38,35.14,215,"0.2385","0.0335","0.0335" +"GO:1901576","organic substance biosynthetic process",75,50,45.44,80,"0.1297","0.0383","0.0383" +"GO:0006793","phosphorus metabolic process",46,34,27.87,10,"0.0294","0.0384","0.0384" +"GO:0006796","phosphate-containing compound metabolic ...",45,33,27.26,14,"0.0384","0.0426","0.0426" +"GO:0044260","cellular macromolecule metabolic process",106,71,64.22,30,"0.0550","0.0480","0.0480" +"GO:0034645","cellular macromolecule biosynthetic proc...",57,37,34.53,246,"0.2760","0.0492","0.0492" +"GO:0018345","protein palmitoylation",3,3,1.82,150,"0.2208","0.0493","0.0493" +"GO:0034654","nucleobase-containing compound biosynthe...",47,33,28.47,57,"0.0922","0.0520","0.0520" +"GO:0044249","cellular biosynthetic process",74,49,44.83,116,"0.1535","0.0546","0.0546" +"GO:0010243","response to organonitrogen compound",6,6,3.64,21,"0.0477","0.0555","0.0555" +"GO:1901698","response to nitrogen compound",6,6,3.64,22,"0.0477","0.0555","0.0555" +"GO:0007005","mitochondrion organization",4,4,2.42,84,"0.1328","0.0565","0.0565" +"GO:0034613","cellular protein localization",14,12,8.48,15,"0.0397","0.0630","0.0630" +"GO:0070727","cellular macromolecule localization",14,12,8.48,16,"0.0397","0.0630","0.0630" +"GO:0006464","cellular protein modification process",53,38,32.11,17,"0.0442","0.0642","0.0642" +"GO:0036211","protein modification process",53,38,32.11,18,"0.0442","0.0642","0.0642" +"GO:0006508","proteolysis",12,10,7.27,53,"0.0850","0.0647","0.0647" +"GO:0055086","nucleobase-containing small molecule met...",11,10,6.66,11,"0.0304","0.0710","0.0710" +"GO:0016567","protein ubiquitination",6,6,3.64,23,"0.0477","0.0717","0.0717" +"GO:0032446","protein modification by small protein co...",6,6,3.64,24,"0.0477","0.0717","0.0717" +"GO:1901701","cellular response to oxygen-containing c...",6,6,3.64,25,"0.0477","0.0717","0.0717" +"GO:0019438","aromatic compound biosynthetic process",48,33,29.08,82,"0.1326","0.0754","0.0754" +"GO:0008104","protein localization",19,16,11.51,4,"0.0220","0.0799","0.0799" +"GO:0009968","negative regulation of signal transducti...",6,6,3.64,26,"0.0477","0.0844","0.0844" +"GO:0010648","negative regulation of cell communicatio...",6,6,3.64,27,"0.0477","0.0844","0.0844" +"GO:0023057","negative regulation of signaling",6,6,3.64,28,"0.0477","0.0844","0.0844" +"GO:0060341","regulation of cellular localization",6,6,3.64,29,"0.0477","0.0844","0.0844" +"GO:0006950","response to stress",25,20,15.15,8,"0.0275","0.0906","0.0906" +"GO:0090407","organophosphate biosynthetic process",10,8,6.06,130,"0.1721","0.0915","0.0915" +"GO:0006486","protein glycosylation",4,4,2.42,85,"0.1328","0.0921","0.0921" +"GO:0009101","glycoprotein biosynthetic process",4,4,2.42,86,"0.1328","0.0921","0.0921" +"GO:0043413","macromolecule glycosylation",4,4,2.42,87,"0.1328","0.0921","0.0921" +"GO:0070085","glycosylation",4,4,2.42,88,"0.1328","0.0921","0.0921" +"GO:0009058","biosynthetic process",78,51,47.26,143,"0.1873","0.0939","0.0939" +"GO:0072657","protein localization to membrane",3,3,1.82,151,"0.2208","0.0968","0.0968" +"GO:0030030","cell projection organization",13,10,7.88,136,"0.1734","0.0980","0.0980" +"GO:0120036","plasma membrane bounded cell projection ...",13,10,7.88,137,"0.1734","0.0980","0.0980" +"GO:0065009","regulation of molecular function",11,10,6.66,12,"0.0304","0.0987","0.0987" +"GO:0019725","cellular homeostasis",7,7,4.24,9,"0.0285","0.0987","0.0987" +"GO:0006366","transcription by RNA polymerase II",9,8,5.45,32,"0.0720","0.0991","0.0991" +"GO:0044238","primary metabolic process",150,97,90.88,52,"0.0813","0.0469","0.0998" +"GO:1901362","organic cyclic compound biosynthetic pro...",51,35,30.9,74,"0.1257","0.1042","0.1042" +"GO:0051649","establishment of localization in cell",19,15,11.51,31,"0.0695","0.1054","0.1054" +"GO:0018130","heterocycle biosynthetic process",49,33,29.69,140,"0.1824","0.1060","0.1060" +"GO:0009100","glycoprotein metabolic process",5,5,3.03,43,"0.0797","0.1075","0.1075" +"GO:0043412","macromolecule modification",57,41,34.53,13,"0.0331","0.1083","0.1083" +"GO:0031326","regulation of cellular biosynthetic proc...",33,22,19.99,248,"0.2862","0.1093","0.1093" +"GO:0009611","response to wounding",4,4,2.42,89,"0.1328","0.1096","0.1096" +"GO:0048468","cell development",13,9,7.88,298,"0.3655","0.1100","0.1100" +"GO:0043170","macromolecule metabolic process",124,81,75.12,56,"0.0907","0.0449","0.1109" +"GO:0001933","negative regulation of protein phosphory...",5,5,3.03,44,"0.0797","0.1121","0.1121" +"GO:0005975","carbohydrate metabolic process",5,5,3.03,45,"0.0797","0.1121","0.1121" +"GO:0009628","response to abiotic stimulus",5,5,3.03,46,"0.0797","0.1121","0.1121" +"GO:0042326","negative regulation of phosphorylation",5,5,3.03,47,"0.0797","0.1121","0.1121" +"GO:0044093","positive regulation of molecular functio...",5,5,3.03,48,"0.0797","0.1121","0.1121" +"GO:0007420","brain development",8,7,4.85,61,"0.1091","0.1163","0.1163" +"GO:0060322","head development",8,7,4.85,62,"0.1091","0.1163","0.1163" +"GO:0032879","regulation of localization",9,8,5.45,33,"0.0720","0.1196","0.1196" +"GO:1901137","carbohydrate derivative biosynthetic pro...",9,7,5.45,216,"0.2388","0.1227","0.1227" +"GO:0032501","multicellular organismal process",35,25,21.2,69,"0.1100","0.1239","0.1239" +"GO:0048731","system development",28,20,16.96,115,"0.1501","0.1246","0.1246" +"GO:0030182","neuron differentiation",12,9,7.27,213,"0.2325","0.1297","0.1297" +"GO:0030154","cell differentiation",20,14,12.12,244,"0.2587","0.1298","0.1298" +"GO:0044265","cellular macromolecule catabolic process",7,6,4.24,119,"0.1630","0.1320","0.1320" +"GO:0016197","endosomal transport",5,5,3.03,49,"0.0797","0.1327","0.1327" +"GO:0044271","cellular nitrogen compound biosynthetic ...",56,36,33.93,259,"0.3167","0.1350","0.1350" +"GO:0050790","regulation of catalytic activity",10,9,6.06,19,"0.0470","0.1382","0.1382" +"GO:0022607","cellular component assembly",16,12,9.69,128,"0.1711","0.1392","0.1392" +"GO:0071702","organic substance transport",18,12,10.91,302,"0.3893","0.1410","0.1410" +"GO:0016482","cytosolic transport",4,4,2.42,90,"0.1328","0.1435","0.1435" +"GO:0044085","cellular component biogenesis",17,13,10.3,77,"0.1285","0.1493","0.1493" +"GO:0006753","nucleoside phosphate metabolic process",9,8,5.45,34,"0.0720","0.1495","0.1495" +"GO:0006468","protein phosphorylation",27,20,16.36,59,"0.0943","0.1507","0.1507" +"GO:0009165","nucleotide biosynthetic process",5,5,3.03,50,"0.0797","0.1512","0.1512" +"GO:1901293","nucleoside phosphate biosynthetic proces...",5,5,3.03,51,"0.0797","0.1512","0.1512" +"GO:0000278","mitotic cell cycle",8,7,4.85,63,"0.1091","0.1513","0.1513" +"GO:0006357","regulation of transcription by RNA polym...",8,7,4.85,64,"0.1091","0.1513","0.1513" +"GO:0098655","cation transmembrane transport",8,7,4.85,65,"0.1091","0.1513","0.1513" +"GO:0006807","nitrogen compound metabolic process",138,90,83.61,37,"0.0724","0.0710","0.1522" +"GO:0007389","pattern specification process",4,3,2.42,343,"0.4847","0.1541","0.1541" +"GO:0006996","organelle organization",28,21,16.96,36,"0.0720","0.1560","0.1560" +"GO:0010556","regulation of macromolecule biosynthetic...",32,21,19.39,269,"0.3376","0.1585","0.1585" +"GO:0019219","regulation of nucleobase-containing comp...",32,21,19.39,270,"0.3376","0.1585","0.1585" +"GO:2000112","regulation of cellular macromolecule bio...",32,21,19.39,271,"0.3376","0.1585","0.1585" +"GO:0010468","regulation of gene expression",36,23,21.81,313,"0.4040","0.1587","0.1587" +"GO:0007399","nervous system development",19,13,11.51,260,"0.3199","0.1589","0.1589" +"GO:0009889","regulation of biosynthetic process",34,23,20.6,242,"0.2397","0.1589","0.1589" +"GO:0003008","system process",6,5,3.64,222,"0.2396","0.1594","0.1594" +"GO:0016310","phosphorylation",30,22,18.18,58,"0.0922","0.1633","0.1633" +"GO:0072521","purine-containing compound metabolic pro...",4,4,2.42,91,"0.1328","0.1654","0.1654" +"GO:0019637","organophosphate metabolic process",17,13,10.3,78,"0.1285","0.1670","0.1670" +"GO:0015031","protein transport",10,8,6.06,131,"0.1721","0.1704","0.1704" +"GO:0015833","peptide transport",10,8,6.06,132,"0.1721","0.1704","0.1704" +"GO:0042886","amide transport",10,8,6.06,133,"0.1721","0.1704","0.1704" +"GO:0045184","establishment of protein localization",10,8,6.06,134,"0.1721","0.1704","0.1704" +"GO:0051704","multi-organism process",10,7,6.06,309,"0.3944","0.1704","0.1704" +"GO:0048513","animal organ development",23,17,13.93,73,"0.1252","0.1714","0.1714" +"GO:0050793","regulation of developmental process",15,11,9.09,211,"0.2242","0.1726","0.1726" +"GO:0001101","response to acid chemical",4,4,2.42,92,"0.1328","0.1748","0.1748" +"GO:0006469","negative regulation of protein kinase ac...",4,4,2.42,93,"0.1328","0.1748","0.1748" +"GO:0006979","response to oxidative stress",4,4,2.42,94,"0.1328","0.1748","0.1748" +"GO:0007169","transmembrane receptor protein tyrosine ...",4,4,2.42,95,"0.1328","0.1748","0.1748" +"GO:0010035","response to inorganic substance",4,4,2.42,96,"0.1328","0.1748","0.1748" +"GO:0033673","negative regulation of kinase activity",4,4,2.42,97,"0.1328","0.1748","0.1748" +"GO:0043549","regulation of kinase activity",4,4,2.42,98,"0.1328","0.1748","0.1748" +"GO:0045859","regulation of protein kinase activity",4,4,2.42,99,"0.1328","0.1748","0.1748" +"GO:0045935","positive regulation of nucleobase-contai...",4,4,2.42,100,"0.1328","0.1748","0.1748" +"GO:0048878","chemical homeostasis",4,4,2.42,101,"0.1328","0.1748","0.1748" +"GO:0050801","ion homeostasis",4,4,2.42,102,"0.1328","0.1748","0.1748" +"GO:0051338","regulation of transferase activity",4,4,2.42,103,"0.1328","0.1748","0.1748" +"GO:0051348","negative regulation of transferase activ...",4,4,2.42,104,"0.1328","0.1748","0.1748" +"GO:0055080","cation homeostasis",4,4,2.42,105,"0.1328","0.1748","0.1748" +"GO:0098771","inorganic ion homeostasis",4,4,2.42,106,"0.1328","0.1748","0.1748" +"GO:0099173","postsynapse organization",4,4,2.42,107,"0.1328","0.1748","0.1748" +"GO:0071705","nitrogen compound transport",16,12,9.69,129,"0.1711","0.1767","0.1767" +"GO:0033036","macromolecule localization",22,16,13.33,117,"0.1617","0.1774","0.1774" +"GO:0006814","sodium ion transport",3,3,1.82,152,"0.2208","0.1786","0.1786" +"GO:0009725","response to hormone",7,6,4.24,120,"0.1630","0.1853","0.1853" +"GO:0044267","cellular protein metabolic process",62,42,37.56,72,"0.1218","0.1854","0.1854" +"GO:0071704","organic substance metabolic process",157,101,95.12,55,"0.0893","0.0997","0.1862" +"GO:0006497","protein lipidation",4,3,2.42,344,"0.4847","0.1871","0.1871" +"GO:0042157","lipoprotein metabolic process",4,3,2.42,345,"0.4847","0.1871","0.1871" +"GO:0042158","lipoprotein biosynthetic process",4,3,2.42,346,"0.4847","0.1871","0.1871" +"GO:0045664","regulation of neuron differentiation",6,5,3.64,223,"0.2396","0.1888","0.1888" +"GO:0050767","regulation of neurogenesis",6,5,3.64,224,"0.2396","0.1888","0.1888" +"GO:0051960","regulation of nervous system development",6,5,3.64,225,"0.2396","0.1888","0.1888" +"GO:0060284","regulation of cell development",6,5,3.64,226,"0.2396","0.1888","0.1888" +"GO:0042060","wound healing",3,3,1.82,153,"0.2208","0.1916","0.1916" +"GO:0055085","transmembrane transport",32,23,19.39,70,"0.1143","0.1916","0.1916" +"GO:0044092","negative regulation of molecular functio...",9,8,5.45,35,"0.0720","0.1923","0.1923" +"GO:0016070","RNA metabolic process",49,31,29.69,312,"0.3992","0.1968","0.1968" +"GO:0010646","regulation of cell communication",14,11,8.48,75,"0.1271","0.1971","0.1971" +"GO:0023051","regulation of signaling",14,11,8.48,76,"0.1271","0.1971","0.1971" +"GO:1901566","organonitrogen compound biosynthetic pro...",23,15,13.93,314,"0.4056","0.2001","0.2001" +"GO:0032502","developmental process",36,25,21.81,118,"0.1626","0.2012","0.2012" +"GO:0008610","lipid biosynthetic process",12,8,7.27,335,"0.4530","0.2020","0.2020" +"GO:0046907","intracellular transport",17,13,10.3,79,"0.1285","0.2023","0.2023" +"GO:0032870","cellular response to hormone stimulus",5,4,3.03,273,"0.3453","0.2043","0.2043" +"GO:0034622","cellular protein-containing complex asse...",10,6,6.06,421,"0.6498","0.2059","0.2059" +"GO:0008152","metabolic process",180,113,109.05,142,"0.1844","0.1277","0.2105" +"GO:0009117","nucleotide metabolic process",8,7,4.85,66,"0.1091","0.2144","0.2144" +"GO:0050877","nervous system process",5,4,3.03,274,"0.3453","0.2177","0.2177" +"GO:0044237","cellular metabolic process",150,95,90.88,141,"0.1840","0.2181","0.2181" +"GO:0034220","ion transmembrane transport",12,10,7.27,54,"0.0850","0.2196","0.2196" +"GO:0048699","generation of neurons",14,10,8.48,249,"0.2889","0.2223","0.2223" +"GO:0006355","regulation of transcription, DNA-templat...",31,20,18.78,305,"0.3936","0.2238","0.2238" +"GO:0051252","regulation of RNA metabolic process",31,20,18.78,306,"0.3936","0.2238","0.2238" +"GO:1903506","regulation of nucleic acid-templated tra...",31,20,18.78,307,"0.3936","0.2238","0.2238" +"GO:2001141","regulation of RNA biosynthetic process",31,20,18.78,308,"0.3936","0.2238","0.2238" +"GO:0009605","response to external stimulus",13,10,7.88,138,"0.1734","0.2272","0.2272" +"GO:0031401","positive regulation of protein modificat...",7,6,4.24,121,"0.1630","0.2283","0.2283" +"GO:0032270","positive regulation of cellular protein ...",7,6,4.24,122,"0.1630","0.2283","0.2283" +"GO:0042493","response to drug",7,6,4.24,123,"0.1630","0.2283","0.2283" +"GO:0051247","positive regulation of protein metabolic...",7,6,4.24,124,"0.1630","0.2283","0.2283" +"GO:0007275","multicellular organism development",32,22,19.39,146,"0.2092","0.2293","0.2293" +"GO:0042147","retrograde transport, endosome to Golgi",3,3,1.82,154,"0.2208","0.2344","0.2344" +"GO:0051640","organelle localization",3,3,1.82,155,"0.2208","0.2361","0.2361" +"GO:0043434","response to peptide hormone",3,3,1.82,156,"0.2208","0.2395","0.2395" +"GO:0072330","monocarboxylic acid biosynthetic process",3,3,1.82,157,"0.2208","0.2395","0.2395" +"GO:1901652","response to peptide",3,3,1.82,158,"0.2208","0.2395","0.2395" +"GO:0048646","anatomical structure formation involved ...",9,7,5.45,217,"0.2388","0.2429","0.2429" +"GO:0048856","anatomical structure development",35,24,21.2,144,"0.1985","0.2432","0.2432" +"GO:0048869","cellular developmental process",21,14,12.72,297,"0.3641","0.2497","0.2497" +"GO:0006139","nucleobase-containing compound metabolic...",67,45,40.59,81,"0.1301","0.2500","0.2500" +"GO:0006629","lipid metabolic process",20,12,12.12,418,"0.6200","0.2573","0.2573" +"GO:0048585","negative regulation of response to stimu...",7,6,4.24,125,"0.1630","0.2604","0.2604" +"GO:0006163","purine nucleotide metabolic process",3,3,1.82,159,"0.2208","0.2606","0.2606" +"GO:0009123","nucleoside monophosphate metabolic proce...",3,3,1.82,160,"0.2208","0.2606","0.2606" +"GO:0009150","purine ribonucleotide metabolic process",3,3,1.82,161,"0.2208","0.2606","0.2606" +"GO:0009161","ribonucleoside monophosphate metabolic p...",3,3,1.82,162,"0.2208","0.2606","0.2606" +"GO:0009259","ribonucleotide metabolic process",3,3,1.82,163,"0.2208","0.2606","0.2606" +"GO:0019693","ribose phosphate metabolic process",3,3,1.82,164,"0.2208","0.2606","0.2606" +"GO:0001654","eye development",4,4,2.42,108,"0.1328","0.2639","0.2639" +"GO:0002790","peptide secretion",4,4,2.42,109,"0.1328","0.2639","0.2639" +"GO:0009306","protein secretion",4,4,2.42,110,"0.1328","0.2639","0.2639" +"GO:0010256","endomembrane system organization",4,4,2.42,111,"0.1328","0.2639","0.2639" +"GO:0048880","sensory system development",4,4,2.42,112,"0.1328","0.2639","0.2639" +"GO:0150063","visual system development",4,4,2.42,113,"0.1328","0.2639","0.2639" +"GO:0043086","negative regulation of catalytic activit...",8,7,4.85,67,"0.1091","0.2653","0.2653" +"GO:0045454","cell redox homeostasis",4,4,2.42,114,"0.1328","0.2702","0.2702" +"GO:0000302","response to reactive oxygen species",3,3,1.82,165,"0.2208","0.2716","0.2716" +"GO:0009620","response to fungus",3,3,1.82,166,"0.2208","0.2716","0.2716" +"GO:0009636","response to toxic substance",3,3,1.82,167,"0.2208","0.2716","0.2716" +"GO:0009791","post-embryonic development",3,3,1.82,168,"0.2208","0.2716","0.2716" +"GO:0010557","positive regulation of macromolecule bio...",3,3,1.82,169,"0.2208","0.2716","0.2716" +"GO:0010720","positive regulation of cell development",3,3,1.82,170,"0.2208","0.2716","0.2716" +"GO:0010959","regulation of metal ion transport",3,3,1.82,171,"0.2208","0.2716","0.2716" +"GO:0018209","peptidyl-serine modification",3,3,1.82,172,"0.2208","0.2716","0.2716" +"GO:0031328","positive regulation of cellular biosynth...",3,3,1.82,173,"0.2208","0.2716","0.2716" +"GO:0031396","regulation of protein ubiquitination",3,3,1.82,174,"0.2208","0.2716","0.2716" +"GO:0034248","regulation of cellular amide metabolic p...",3,3,1.82,175,"0.2208","0.2716","0.2716" +"GO:0034976","response to endoplasmic reticulum stress",3,3,1.82,176,"0.2208","0.2716","0.2716" +"GO:0035966","response to topologically incorrect prot...",3,3,1.82,177,"0.2208","0.2716","0.2716" +"GO:0035967","cellular response to topologically incor...",3,3,1.82,178,"0.2208","0.2716","0.2716" +"GO:0043085","positive regulation of catalytic activit...",3,3,1.82,179,"0.2208","0.2716","0.2716" +"GO:0043269","regulation of ion transport",3,3,1.82,180,"0.2208","0.2716","0.2716" +"GO:0043393","regulation of protein binding",3,3,1.82,181,"0.2208","0.2716","0.2716" +"GO:0045666","positive regulation of neuron differenti...",3,3,1.82,182,"0.2208","0.2716","0.2716" +"GO:0045893","positive regulation of transcription, DN...",3,3,1.82,183,"0.2208","0.2716","0.2716" +"GO:0045944","positive regulation of transcription by ...",3,3,1.82,184,"0.2208","0.2716","0.2716" +"GO:0050769","positive regulation of neurogenesis",3,3,1.82,185,"0.2208","0.2716","0.2716" +"GO:0050832","defense response to fungus",3,3,1.82,186,"0.2208","0.2716","0.2716" +"GO:0051098","regulation of binding",3,3,1.82,187,"0.2208","0.2716","0.2716" +"GO:0051235","maintenance of location",3,3,1.82,188,"0.2208","0.2716","0.2716" +"GO:0051254","positive regulation of RNA metabolic pro...",3,3,1.82,189,"0.2208","0.2716","0.2716" +"GO:0051924","regulation of calcium ion transport",3,3,1.82,190,"0.2208","0.2716","0.2716" +"GO:0051962","positive regulation of nervous system de...",3,3,1.82,191,"0.2208","0.2716","0.2716" +"GO:0055082","cellular chemical homeostasis",3,3,1.82,192,"0.2208","0.2716","0.2716" +"GO:0071229","cellular response to acid chemical",3,3,1.82,193,"0.2208","0.2716","0.2716" +"GO:0097061","dendritic spine organization",3,3,1.82,194,"0.2208","0.2716","0.2716" +"GO:0097190","apoptotic signaling pathway",3,3,1.82,195,"0.2208","0.2716","0.2716" +"GO:0106027","neuron projection organization",3,3,1.82,196,"0.2208","0.2716","0.2716" +"GO:1902532","negative regulation of intracellular sig...",3,3,1.82,197,"0.2208","0.2716","0.2716" +"GO:1902680","positive regulation of RNA biosynthetic ...",3,3,1.82,198,"0.2208","0.2716","0.2716" +"GO:1903320","regulation of protein modification by sm...",3,3,1.82,199,"0.2208","0.2716","0.2716" +"GO:1903508","positive regulation of nucleic acid-temp...",3,3,1.82,200,"0.2208","0.2716","0.2716" +"GO:0046486","glycerolipid metabolic process",5,4,3.03,275,"0.3453","0.2717","0.2717" +"GO:0009966","regulation of signal transduction",13,10,7.88,139,"0.1734","0.2729","0.2729" +"GO:0009653","anatomical structure morphogenesis",17,11,10.3,341,"0.4656","0.2898","0.2898" +"GO:0001932","regulation of protein phosphorylation",6,5,3.64,227,"0.2396","0.2903","0.2903" +"GO:0032989","cellular component morphogenesis",9,6,5.45,382,"0.4966","0.2911","0.2911" +"GO:1903827","regulation of cellular protein localizat...",3,3,1.82,201,"0.2208","0.2945","0.2945" +"GO:0042592","homeostatic process",12,9,7.27,214,"0.2325","0.2961","0.2961" +"GO:0044255","cellular lipid metabolic process",19,11,11.51,515,"0.6921","0.2983","0.2983" +"GO:0006733","oxidoreduction coenzyme metabolic proces...",3,3,1.82,202,"0.2208","0.3063","0.3063" +"GO:0019362","pyridine nucleotide metabolic process",3,3,1.82,203,"0.2208","0.3063","0.3063" +"GO:0019674","NAD metabolic process",3,3,1.82,204,"0.2208","0.3063","0.3063" +"GO:0046496","nicotinamide nucleotide metabolic proces...",3,3,1.82,205,"0.2208","0.3063","0.3063" +"GO:0072524","pyridine-containing compound metabolic p...",3,3,1.82,206,"0.2208","0.3063","0.3063" +"GO:0008654","phospholipid biosynthetic process",5,3,3.03,517,"0.6939","0.3093","0.3093" +"GO:0007417","central nervous system development",9,7,5.45,218,"0.2388","0.3119","0.3119" +"GO:0009108","coenzyme biosynthetic process",4,3,2.42,347,"0.4847","0.3175","0.3175" +"GO:0051188","cofactor biosynthetic process",4,3,2.42,348,"0.4847","0.3175","0.3175" +"GO:0006644","phospholipid metabolic process",7,4,4.24,542,"0.7237","0.3215","0.3215" +"GO:0006820","anion transport",7,4,4.24,543,"0.7237","0.3215","0.3215" +"GO:0015711","organic anion transport",7,4,4.24,544,"0.7237","0.3215","0.3215" +"GO:0010975","regulation of neuron projection developm...",4,3,2.42,349,"0.4847","0.3318","0.3318" +"GO:0050803","regulation of synapse structure or activ...",4,3,2.42,350,"0.4847","0.3318","0.3318" +"GO:0050807","regulation of synapse organization",4,3,2.42,351,"0.4847","0.3318","0.3318" +"GO:0019538","protein metabolic process",71,48,43.01,60,"0.1022","0.1507","0.3327" +"GO:0043933","protein-containing complex subunit organ...",12,8,7.27,336,"0.4530","0.3332","0.3332" +"GO:0065003","protein-containing complex assembly",12,8,7.27,337,"0.4530","0.3332","0.3332" +"GO:0080090","regulation of primary metabolic process",43,28,26.05,258,"0.3137","0.3368","0.3368" +"GO:0009719","response to endogenous stimulus",9,7,5.45,219,"0.2388","0.3384","0.3384" +"GO:0006915","apoptotic process",6,5,3.64,228,"0.2396","0.3392","0.3392" +"GO:0007167","enzyme linked receptor protein signaling...",6,5,3.64,229,"0.2396","0.3392","0.3392" +"GO:0008219","cell death",6,5,3.64,230,"0.2396","0.3392","0.3392" +"GO:0009607","response to biotic stimulus",6,5,3.64,231,"0.2396","0.3392","0.3392" +"GO:0012501","programmed cell death",6,5,3.64,232,"0.2396","0.3392","0.3392" +"GO:0033993","response to lipid",6,5,3.64,233,"0.2396","0.3392","0.3392" +"GO:0043207","response to external biotic stimulus",6,5,3.64,234,"0.2396","0.3392","0.3392" +"GO:0051707","response to other organism",6,5,3.64,235,"0.2396","0.3392","0.3392" +"GO:0098542","defense response to other organism",6,5,3.64,236,"0.2396","0.3392","0.3392" +"GO:0098660","inorganic ion transmembrane transport",6,5,3.64,237,"0.2396","0.3392","0.3392" +"GO:0098662","inorganic cation transmembrane transport",6,5,3.64,238,"0.2396","0.3392","0.3392" +"GO:0009987","cellular process",209,130,126.62,145,"0.2009","0.3395","0.3395" +"GO:0022008","neurogenesis",15,10,9.09,315,"0.4184","0.3407","0.3407" +"GO:0051093","negative regulation of developmental pro...",3,3,1.82,207,"0.2208","0.3435","0.3435" +"GO:0006952","defense response",7,5,4.24,319,"0.4312","0.3507","0.3507" +"GO:0006886","intracellular protein transport",6,4,3.64,395,"0.5565","0.3514","0.3514" +"GO:0006650","glycerophospholipid metabolic process",4,3,2.42,352,"0.4847","0.3540","0.3540" +"GO:0006928","movement of cell or subcellular componen...",11,6,6.66,563,"0.7705","0.3569","0.3569" +"GO:0007276","gamete generation",5,3,3.03,518,"0.6939","0.3581","0.3581" +"GO:0019953","sexual reproduction",5,3,3.03,519,"0.6939","0.3581","0.3581" +"GO:0044703","multi-organism reproductive process",5,3,3.03,520,"0.6939","0.3581","0.3581" +"GO:2000026","regulation of multicellular organismal d...",12,8,7.27,338,"0.4530","0.3593","0.3593" +"GO:0010563","negative regulation of phosphorus metabo...",7,6,4.24,126,"0.1630","0.3621","0.3621" +"GO:0045936","negative regulation of phosphate metabol...",7,6,4.24,127,"0.1630","0.3621","0.3621" +"GO:0006725","cellular aromatic compound metabolic pro...",71,46,43.01,243,"0.2424","0.3680","0.3680" +"GO:0043010","camera-type eye development",3,3,1.82,208,"0.2208","0.3695","0.3695" +"GO:0048732","gland development",3,3,1.82,209,"0.2208","0.3695","0.3695" +"GO:0060041","retina development in camera-type eye",3,3,1.82,210,"0.2208","0.3695","0.3695" +"GO:0031175","neuron projection development",8,5,4.85,413,"0.6087","0.3760","0.3760" +"GO:0048666","neuron development",8,5,4.85,414,"0.6087","0.3760","0.3760" +"GO:0032880","regulation of protein localization",6,5,3.64,239,"0.2396","0.3763","0.3763" +"GO:0015849","organic acid transport",6,4,3.64,396,"0.5565","0.3795","0.3795" +"GO:0046942","carboxylic acid transport",6,4,3.64,397,"0.5565","0.3795","0.3795" +"GO:0071310","cellular response to organic substance",11,8,6.66,253,"0.3060","0.3815","0.3815" +"GO:0065008","regulation of biological quality",22,15,13.33,252,"0.3010","0.3845","0.3845" +"GO:0043543","protein acylation",5,3,3.03,521,"0.6939","0.3892","0.3892" +"GO:0010033","response to organic substance",14,10,8.48,250,"0.2889","0.3935","0.3935" +"GO:0006643","membrane lipid metabolic process",4,2,2.42,568,"0.8292","0.4004","0.4004" +"GO:0000226","microtubule cytoskeleton organization",3,2,1.82,426,"0.6569","0.4034","0.4034" +"GO:0007281","germ cell development",3,2,1.82,427,"0.6569","0.4034","0.4034" +"GO:0007283","spermatogenesis",3,2,1.82,428,"0.6569","0.4034","0.4034" +"GO:0007292","female gamete generation",3,2,1.82,429,"0.6569","0.4034","0.4034" +"GO:0007611","learning or memory",3,2,1.82,430,"0.6569","0.4034","0.4034" +"GO:0031532","actin cytoskeleton reorganization",3,2,1.82,431,"0.6569","0.4034","0.4034" +"GO:0048232","male gamete generation",3,2,1.82,432,"0.6569","0.4034","0.4034" +"GO:0050890","cognition",3,2,1.82,433,"0.6569","0.4034","0.4034" +"GO:0051239","regulation of multicellular organismal p...",14,9,8.48,389,"0.5033","0.4065","0.4065" +"GO:0050896","response to stimulus",69,42,41.8,394,"0.5363","0.4075","0.4075" +"GO:1901564","organonitrogen compound metabolic proces...",86,57,52.1,71,"0.1204","0.3094","0.4124" +"GO:0080134","regulation of response to stress",5,4,3.03,276,"0.3453","0.4197","0.4197" +"GO:0031323","regulation of cellular metabolic process",42,27,25.45,295,"0.3617","0.4214","0.4214" +"GO:0051171","regulation of nitrogen compound metaboli...",42,27,25.45,296,"0.3617","0.4214","0.4214" +"GO:0051094","positive regulation of developmental pro...",7,5,4.24,320,"0.4312","0.4251","0.4251" +"GO:0031347","regulation of defense response",3,2,1.82,434,"0.6569","0.4267","0.4267" +"GO:0045087","innate immune response",3,2,1.82,435,"0.6569","0.4267","0.4267" +"GO:0045088","regulation of innate immune response",3,2,1.82,436,"0.6569","0.4267","0.4267" +"GO:0003333","amino acid transmembrane transport",5,4,3.03,277,"0.3453","0.4288","0.4288" +"GO:0006865","amino acid transport",5,4,3.03,278,"0.3453","0.4288","0.4288" +"GO:0098656","anion transmembrane transport",5,4,3.03,279,"0.3453","0.4288","0.4288" +"GO:1903825","organic acid transmembrane transport",5,4,3.03,280,"0.3453","0.4288","0.4288" +"GO:1905039","carboxylic acid transmembrane transport",5,4,3.03,281,"0.3453","0.4288","0.4288" +"GO:1901360","organic cyclic compound metabolic proces...",74,48,44.83,212,"0.2295","0.4290","0.4290" +"GO:0006396","RNA processing",7,3,4.24,614,"0.9121","0.4345","0.4345" +"GO:0010467","gene expression",59,35,35.74,420,"0.6477","0.4373","0.4373" +"GO:0001558","regulation of cell growth",3,2,1.82,437,"0.6569","0.4386","0.4386" +"GO:0010769","regulation of cell morphogenesis involve...",3,2,1.82,438,"0.6569","0.4386","0.4386" +"GO:0040008","regulation of growth",3,2,1.82,439,"0.6569","0.4386","0.4386" +"GO:0022412","cellular process involved in reproductio...",4,2,2.42,569,"0.8292","0.4411","0.4411" +"GO:0048523","negative regulation of cellular process",20,14,12.12,245,"0.2587","0.4456","0.4456" +"GO:0045595","regulation of cell differentiation",11,8,6.66,254,"0.3060","0.4494","0.4494" +"GO:0065007","biological regulation",107,67,64.82,268,"0.3362","0.4496","0.4496" +"GO:0019220","regulation of phosphate metabolic proces...",9,7,5.45,220,"0.2388","0.4525","0.4525" +"GO:0051174","regulation of phosphorus metabolic proce...",9,7,5.45,221,"0.2388","0.4525","0.4525" +"GO:0007010","cytoskeleton organization",10,7,6.06,310,"0.3944","0.4599","0.4599" +"GO:0045017","glycerolipid biosynthetic process",3,2,1.82,440,"0.6569","0.4602","0.4602" +"GO:0046474","glycerophospholipid biosynthetic process",3,2,1.82,441,"0.6569","0.4602","0.4602" +"GO:0051173","positive regulation of nitrogen compound...",8,6,4.85,264,"0.3247","0.4718","0.4718" +"GO:0007018","microtubule-based movement",4,2,2.42,570,"0.8292","0.4748","0.4748" +"GO:0090304","nucleic acid metabolic process",56,35,33.93,332,"0.4328","0.4762","0.4762" +"GO:0009072","aromatic amino acid family metabolic pro...",3,2,1.82,442,"0.6569","0.4773","0.4773" +"GO:0000902","cell morphogenesis",7,4,4.24,545,"0.7237","0.4808","0.4808" +"GO:0031344","regulation of cell projection organizati...",7,5,4.24,321,"0.4312","0.4808","0.4808" +"GO:0120035","regulation of plasma membrane bounded ce...",7,5,4.24,322,"0.4312","0.4808","0.4808" +"GO:0071103","DNA conformation change",3,2,1.82,443,"0.6569","0.4823","0.4823" +"GO:0042221","response to chemical",19,13,11.51,261,"0.3199","0.4850","0.4850" +"GO:0048583","regulation of response to stimulus",19,13,11.51,262,"0.3199","0.4850","0.4850" +"GO:0051726","regulation of cell cycle",6,5,3.64,240,"0.2396","0.4872","0.4872" +"GO:0009888","tissue development",11,8,6.66,255,"0.3060","0.4910","0.4910" +"GO:0006816","calcium ion transport",5,4,3.03,282,"0.3453","0.4930","0.4930" +"GO:0010941","regulation of cell death",5,4,3.03,283,"0.3453","0.4930","0.4930" +"GO:0042981","regulation of apoptotic process",5,4,3.03,284,"0.3453","0.4930","0.4930" +"GO:0043066","negative regulation of apoptotic process",5,4,3.03,285,"0.3453","0.4930","0.4930" +"GO:0043067","regulation of programmed cell death",5,4,3.03,286,"0.3453","0.4930","0.4930" +"GO:0043069","negative regulation of programmed cell d...",5,4,3.03,287,"0.3453","0.4930","0.4930" +"GO:0051049","regulation of transport",5,4,3.03,288,"0.3453","0.4930","0.4930" +"GO:0060548","negative regulation of cell death",5,4,3.03,289,"0.3453","0.4930","0.4930" +"GO:0070838","divalent metal ion transport",5,4,3.03,290,"0.3453","0.4930","0.4930" +"GO:0072359","circulatory system development",5,4,3.03,291,"0.3453","0.4930","0.4930" +"GO:0072511","divalent inorganic cation transport",5,4,3.03,292,"0.3453","0.4930","0.4930" +"GO:0032940","secretion by cell",6,5,3.64,241,"0.2396","0.4978","0.4978" +"GO:0007155","cell adhesion",9,5,5.45,560,"0.7488","0.4984","0.4984" +"GO:0022610","biological adhesion",9,5,5.45,561,"0.7488","0.4984","0.4984" +"GO:0030029","actin filament-based process",9,6,5.45,383,"0.4966","0.4984","0.4984" +"GO:0030036","actin cytoskeleton organization",9,6,5.45,384,"0.4966","0.4984","0.4984" +"GO:0009617","response to bacterium",4,3,2.42,353,"0.4847","0.5005","0.5005" +"GO:0009991","response to extracellular stimulus",4,3,2.42,354,"0.4847","0.5005","0.5005" +"GO:0031667","response to nutrient levels",4,3,2.42,355,"0.4847","0.5005","0.5005" +"GO:0042742","defense response to bacterium",4,3,2.42,356,"0.4847","0.5005","0.5005" +"GO:0006811","ion transport",24,15,14.54,392,"0.5122","0.5026","0.5026" +"GO:0007017","microtubule-based process",9,4,5.45,612,"0.9107","0.5042","0.5042" +"GO:0006664","glycolipid metabolic process",3,1,1.82,641,"0.9398","0.5046","0.5046" +"GO:0009247","glycolipid biosynthetic process",3,1,1.82,642,"0.9398","0.5046","0.5046" +"GO:0046467","membrane lipid biosynthetic process",3,1,1.82,643,"0.9398","0.5046","0.5046" +"GO:1903509","liposaccharide metabolic process",3,1,1.82,644,"0.9398","0.5046","0.5046" +"GO:0031647","regulation of protein stability",3,2,1.82,444,"0.6569","0.5071","0.5071" +"GO:0050789","regulation of biological process",103,63,62.4,381,"0.4909","0.5098","0.5098" +"GO:0015672","monovalent inorganic cation transport",9,6,5.45,385,"0.4966","0.5115","0.5115" +"GO:0051179","localization",70,45,42.41,247,"0.2778","0.5134","0.5134" +"GO:0007049","cell cycle",13,9,7.88,299,"0.3655","0.5143","0.5143" +"GO:0006812","cation transport",18,12,10.91,303,"0.3893","0.5205","0.5205" +"GO:0046483","heterocycle metabolic process",71,45,43.01,272,"0.3391","0.5232","0.5232" +"GO:0051128","regulation of cellular component organiz...",17,11,10.3,342,"0.4656","0.5250","0.5250" +"GO:0007166","cell surface receptor signaling pathway",15,10,9.09,316,"0.4184","0.5257","0.5257" +"GO:0045597","positive regulation of cell differentiat...",5,4,3.03,293,"0.3453","0.5320","0.5320" +"GO:0000003","reproduction",8,4,4.85,607,"0.8387","0.5397","0.5397" +"GO:0002682","regulation of immune system process",8,5,4.85,415,"0.6087","0.5397","0.5397" +"GO:0051240","positive regulation of multicellular org...",8,5,4.85,416,"0.6087","0.5397","0.5397" +"GO:0048519","negative regulation of biological proces...",27,18,16.36,263,"0.3215","0.5421","0.5421" +"GO:0007267","cell-cell signaling",3,2,1.82,445,"0.6569","0.5425","0.5425" +"GO:0022402","cell cycle process",6,4,3.64,398,"0.5565","0.5444","0.5444" +"GO:1903047","mitotic cell cycle process",4,3,2.42,357,"0.4847","0.5487","0.5487" +"GO:0032787","monocarboxylic acid metabolic process",7,5,4.24,323,"0.4312","0.5639","0.5639" +"GO:0006813","potassium ion transport",3,1,1.82,645,"0.9398","0.5706","0.5706" +"GO:0006413","translational initiation",3,2,1.82,446,"0.6569","0.5782","0.5782" +"GO:0006955","immune response",7,5,4.24,324,"0.4312","0.5842","0.5842" +"GO:0016477","cell migration",7,4,4.24,546,"0.7237","0.5842","0.5842" +"GO:0022414","reproductive process",7,3,4.24,615,"0.9121","0.5842","0.5842" +"GO:0032504","multicellular organism reproduction",7,4,4.24,547,"0.7237","0.5842","0.5842" +"GO:0040011","locomotion",7,4,4.24,548,"0.7237","0.5842","0.5842" +"GO:0042325","regulation of phosphorylation",7,5,4.24,325,"0.4312","0.5842","0.5842" +"GO:0044087","regulation of cellular component biogene...",7,4,4.24,549,"0.7237","0.5842","0.5842" +"GO:0046903","secretion",7,5,4.24,326,"0.4312","0.5842","0.5842" +"GO:0048870","cell motility",7,4,4.24,550,"0.7237","0.5842","0.5842" +"GO:0051674","localization of cell",7,4,4.24,551,"0.7237","0.5842","0.5842" +"GO:0097435","supramolecular fiber organization",7,4,4.24,552,"0.7237","0.5842","0.5842" +"GO:0098609","cell-cell adhesion",7,3,4.24,616,"0.9121","0.5842","0.5842" +"GO:0006732","coenzyme metabolic process",6,4,3.64,399,"0.5565","0.5844","0.5844" +"GO:0006259","DNA metabolic process",10,7,6.06,311,"0.3944","0.5884","0.5884" +"GO:0031503","protein-containing complex localization",3,1,1.82,646,"0.9398","0.5962","0.5962" +"GO:0071496","cellular response to external stimulus",3,2,1.82,447,"0.6569","0.5962","0.5962" +"GO:0051716","cellular response to stimulus",58,33,35.14,564,"0.7883","0.6015","0.6015" +"GO:0019222","regulation of metabolic process",48,30,29.08,334,"0.4487","0.6051","0.6051" +"GO:0000904","cell morphogenesis involved in different...",6,3,3.64,595,"0.8313","0.6063","0.6063" +"GO:0022603","regulation of anatomical structure morph...",6,4,3.64,400,"0.5565","0.6063","0.6063" +"GO:0032990","cell part morphogenesis",6,3,3.64,596,"0.8313","0.6063","0.6063" +"GO:0048667","cell morphogenesis involved in neuron di...",6,3,3.64,597,"0.8313","0.6063","0.6063" +"GO:0048812","neuron projection morphogenesis",6,3,3.64,598,"0.8313","0.6063","0.6063" +"GO:0048858","cell projection morphogenesis",6,3,3.64,599,"0.8313","0.6063","0.6063" +"GO:0050808","synapse organization",6,4,3.64,401,"0.5565","0.6063","0.6063" +"GO:0061564","axon development",6,3,3.64,600,"0.8313","0.6063","0.6063" +"GO:0120039","plasma membrane bounded cell projection ...",6,3,3.64,601,"0.8313","0.6063","0.6063" +"GO:0009755","hormone-mediated signaling pathway",3,2,1.82,448,"0.6569","0.6065","0.6065" +"GO:0060255","regulation of macromolecule metabolic pr...",44,27,26.66,393,"0.5243","0.6215","0.6215" +"GO:0070887","cellular response to chemical stimulus",13,8,7.88,412,"0.5931","0.6243","0.6243" +"GO:0009451","RNA modification",4,3,2.42,358,"0.4847","0.6243","0.6243" +"GO:0032259","methylation",4,2,2.42,571,"0.8292","0.6243","0.6243" +"GO:0034470","ncRNA processing",4,2,2.42,572,"0.8292","0.6243","0.6243" +"GO:0034660","ncRNA metabolic process",4,2,2.42,573,"0.8292","0.6243","0.6243" +"GO:0043414","macromolecule methylation",4,2,2.42,574,"0.8292","0.6243","0.6243" +"GO:0007154","cell communication",47,28,28.47,419,"0.6278","0.6291","0.6291" +"GO:0001775","cell activation",6,4,3.64,402,"0.5565","0.6319","0.6319" +"GO:0016311","dephosphorylation",6,4,3.64,403,"0.5565","0.6319","0.6319" +"GO:0032535","regulation of cellular component size",6,2,3.64,685,"0.9633","0.6319","0.6319" +"GO:0048609","multicellular organismal reproductive pr...",6,3,3.64,602,"0.8313","0.6319","0.6319" +"GO:0050776","regulation of immune response",6,4,3.64,404,"0.5565","0.6319","0.6319" +"GO:0090066","regulation of anatomical structure size",6,2,3.64,686,"0.9633","0.6319","0.6319" +"GO:0006325","chromatin organization",8,4,4.85,608,"0.8387","0.6348","0.6348" +"GO:0048729","tissue morphogenesis",7,5,4.24,327,"0.4312","0.6350","0.6350" +"GO:0060429","epithelium development",7,5,4.24,328,"0.4312","0.6350","0.6350" +"GO:0071495","cellular response to endogenous stimulus",7,5,4.24,329,"0.4312","0.6350","0.6350" +"GO:1902531","regulation of intracellular signal trans...",7,5,4.24,330,"0.4312","0.6350","0.6350" +"GO:0050794","regulation of cellular process",95,58,57.55,391,"0.5068","0.6359","0.6359" +"GO:0014070","response to organic cyclic compound",4,3,2.42,359,"0.4847","0.6377","0.6377" +"GO:0016053","organic acid biosynthetic process",4,3,2.42,360,"0.4847","0.6377","0.6377" +"GO:0046394","carboxylic acid biosynthetic process",4,3,2.42,361,"0.4847","0.6377","0.6377" +"GO:0033554","cellular response to stress",14,10,8.48,251,"0.2889","0.6397","0.6397" +"GO:0034641","cellular nitrogen compound metabolic pro...",79,49,47.86,331,"0.4324","0.6409","0.6409" +"GO:0051336","regulation of hydrolase activity",5,4,3.03,294,"0.3453","0.6415","0.6415" +"GO:0006403","RNA localization",3,1,1.82,647,"0.9398","0.6476","0.6476" +"GO:0006405","RNA export from nucleus",3,1,1.82,648,"0.9398","0.6476","0.6476" +"GO:0015931","nucleobase-containing compound transport",3,1,1.82,649,"0.9398","0.6476","0.6476" +"GO:0050657","nucleic acid transport",3,1,1.82,650,"0.9398","0.6476","0.6476" +"GO:0050658","RNA transport",3,1,1.82,651,"0.9398","0.6476","0.6476" +"GO:0051168","nuclear export",3,1,1.82,652,"0.9398","0.6476","0.6476" +"GO:0051236","establishment of RNA localization",3,1,1.82,653,"0.9398","0.6476","0.6476" +"GO:0031324","negative regulation of cellular metaboli...",11,8,6.66,256,"0.3060","0.6543","0.6543" +"GO:0051172","negative regulation of nitrogen compound...",11,8,6.66,257,"0.3060","0.6543","0.6543" +"GO:0007186","G protein-coupled receptor signaling pat...",10,4,6.06,678,"0.9526","0.6567","0.6567" +"GO:0031400","negative regulation of protein modificat...",8,6,4.85,265,"0.3247","0.6601","0.6601" +"GO:0032269","negative regulation of cellular protein ...",8,6,4.85,266,"0.3247","0.6601","0.6601" +"GO:0051248","negative regulation of protein metabolic...",8,6,4.85,267,"0.3247","0.6601","0.6601" +"GO:0031056","regulation of histone modification",3,2,1.82,449,"0.6569","0.6603","0.6603" +"GO:0031058","positive regulation of histone modificat...",3,2,1.82,450,"0.6569","0.6603","0.6603" +"GO:0033044","regulation of chromosome organization",3,2,1.82,451,"0.6569","0.6603","0.6603" +"GO:1902275","regulation of chromatin organization",3,2,1.82,452,"0.6569","0.6603","0.6603" +"GO:1905269","positive regulation of chromatin organiz...",3,2,1.82,453,"0.6569","0.6603","0.6603" +"GO:2001252","positive regulation of chromosome organi...",3,2,1.82,454,"0.6569","0.6603","0.6603" +"GO:0003006","developmental process involved in reprod...",4,2,2.42,575,"0.8292","0.6687","0.6687" +"GO:0031325","positive regulation of cellular metaboli...",9,6,5.45,386,"0.4966","0.6711","0.6711" +"GO:0006913","nucleocytoplasmic transport",5,3,3.03,522,"0.6939","0.6792","0.6792" +"GO:0051169","nuclear transport",5,3,3.03,523,"0.6939","0.6792","0.6792" +"GO:0016071","mRNA metabolic process",3,1,1.82,654,"0.9398","0.6807","0.6807" +"GO:0051186","cofactor metabolic process",8,5,4.85,417,"0.6087","0.6821","0.6821" +"GO:0007015","actin filament organization",5,2,3.03,622,"0.9193","0.6831","0.6831" +"GO:0007409","axonogenesis",5,2,3.03,623,"0.9193","0.6831","0.6831" +"GO:0007610","behavior",5,3,3.03,524,"0.6939","0.6831","0.6831" +"GO:0008064","regulation of actin polymerization or de...",5,2,3.03,624,"0.9193","0.6831","0.6831" +"GO:0008154","actin polymerization or depolymerization",5,2,3.03,625,"0.9193","0.6831","0.6831" +"GO:0016049","cell growth",5,3,3.03,525,"0.6939","0.6831","0.6831" +"GO:0030041","actin filament polymerization",5,2,3.03,626,"0.9193","0.6831","0.6831" +"GO:0030832","regulation of actin filament length",5,2,3.03,627,"0.9193","0.6831","0.6831" +"GO:0030833","regulation of actin filament polymerizat...",5,2,3.03,628,"0.9193","0.6831","0.6831" +"GO:0032271","regulation of protein polymerization",5,2,3.03,629,"0.9193","0.6831","0.6831" +"GO:0032956","regulation of actin cytoskeleton organiz...",5,2,3.03,630,"0.9193","0.6831","0.6831" +"GO:0032970","regulation of actin filament-based proce...",5,2,3.03,631,"0.9193","0.6831","0.6831" +"GO:0043254","regulation of protein complex assembly",5,2,3.03,632,"0.9193","0.6831","0.6831" +"GO:0045321","leukocyte activation",5,3,3.03,526,"0.6939","0.6831","0.6831" +"GO:0051258","protein polymerization",5,2,3.03,633,"0.9193","0.6831","0.6831" +"GO:0051493","regulation of cytoskeleton organization",5,2,3.03,634,"0.9193","0.6831","0.6831" +"GO:0061061","muscle structure development",5,3,3.03,527,"0.6939","0.6831","0.6831" +"GO:0110053","regulation of actin filament organizatio...",5,2,3.03,635,"0.9193","0.6831","0.6831" +"GO:1902903","regulation of supramolecular fiber organ...",5,2,3.03,636,"0.9193","0.6831","0.6831" +"GO:0010638","positive regulation of organelle organiz...",7,4,4.24,553,"0.7237","0.6871","0.6871" +"GO:0007165","signal transduction",44,26,26.66,425,"0.6539","0.6895","0.6895" +"GO:0009891","positive regulation of biosynthetic proc...",4,3,2.42,362,"0.4847","0.6907","0.6907" +"GO:0010628","positive regulation of gene expression",4,3,2.42,363,"0.4847","0.6907","0.6907" +"GO:0030031","cell projection assembly",4,3,2.42,364,"0.4847","0.6907","0.6907" +"GO:0046578","regulation of Ras protein signal transdu...",4,3,2.42,365,"0.4847","0.6907","0.6907" +"GO:0051056","regulation of small GTPase mediated sign...",4,3,2.42,366,"0.4847","0.6907","0.6907" +"GO:0051241","negative regulation of multicellular org...",4,3,2.42,367,"0.4847","0.6907","0.6907" +"GO:0061024","membrane organization",4,3,2.42,368,"0.4847","0.6907","0.6907" +"GO:0070588","calcium ion transmembrane transport",4,3,2.42,369,"0.4847","0.6907","0.6907" +"GO:0071396","cellular response to lipid",4,3,2.42,370,"0.4847","0.6907","0.6907" +"GO:0120031","plasma membrane bounded cell projection ...",4,3,2.42,371,"0.4847","0.6907","0.6907" +"GO:0001510","RNA methylation",3,2,1.82,455,"0.6569","0.7033","0.7033" +"GO:0006399","tRNA metabolic process",3,1,1.82,655,"0.9398","0.7033","0.7033" +"GO:0008033","tRNA processing",3,1,1.82,656,"0.9398","0.7033","0.7033" +"GO:0034655","nucleobase-containing compound catabolic...",4,2,2.42,576,"0.8292","0.7037","0.7037" +"GO:0033043","regulation of organelle organization",9,5,5.45,562,"0.7488","0.7079","0.7079" +"GO:0006631","fatty acid metabolic process",5,3,3.03,528,"0.6939","0.7085","0.7085" +"GO:1901565","organonitrogen compound catabolic proces...",10,8,6.06,135,"0.1721","0.0973","0.7103" +"GO:0030001","metal ion transport",14,9,8.48,390,"0.5033","0.7162","0.7162" +"GO:0007178","transmembrane receptor protein serine/th...",3,2,1.82,456,"0.6569","0.7182","0.7182" +"GO:0002684","positive regulation of immune system pro...",4,3,2.42,372,"0.4847","0.7253","0.7253" +"GO:0030334","regulation of cell migration",4,3,2.42,373,"0.4847","0.7253","0.7253" +"GO:0040012","regulation of locomotion",4,3,2.42,374,"0.4847","0.7253","0.7253" +"GO:0042110","T cell activation",4,3,2.42,375,"0.4847","0.7253","0.7253" +"GO:0046649","lymphocyte activation",4,3,2.42,376,"0.4847","0.7253","0.7253" +"GO:0051270","regulation of cellular component movemen...",4,3,2.42,377,"0.4847","0.7253","0.7253" +"GO:2000145","regulation of cell motility",4,3,2.42,378,"0.4847","0.7253","0.7253" +"GO:0018193","peptidyl-amino acid modification",9,6,5.45,387,"0.4966","0.7295","0.7295" +"GO:0051276","chromosome organization",10,6,6.06,422,"0.6498","0.7346","0.7346" +"GO:0002376","immune system process",12,6,7.27,610,"0.8572","0.7377","0.7377" +"GO:0006470","protein dephosphorylation",4,3,2.42,379,"0.4847","0.7380","0.7380" +"GO:0022604","regulation of cell morphogenesis",4,2,2.42,577,"0.8292","0.7380","0.7380" +"GO:0030838","positive regulation of actin filament po...",4,2,2.42,578,"0.8292","0.7380","0.7380" +"GO:0031334","positive regulation of protein complex a...",4,2,2.42,579,"0.8292","0.7380","0.7380" +"GO:0032273","positive regulation of protein polymeriz...",4,2,2.42,580,"0.8292","0.7380","0.7380" +"GO:0044089","positive regulation of cellular componen...",4,2,2.42,581,"0.8292","0.7380","0.7380" +"GO:0051346","negative regulation of hydrolase activit...",4,3,2.42,380,"0.4847","0.7380","0.7380" +"GO:0051495","positive regulation of cytoskeleton orga...",4,2,2.42,582,"0.8292","0.7380","0.7380" +"GO:0060560","developmental growth involved in morphog...",4,2,2.42,583,"0.8292","0.7380","0.7380" +"GO:1902905","positive regulation of supramolecular fi...",4,2,2.42,584,"0.8292","0.7380","0.7380" +"GO:0000075","cell cycle checkpoint",3,2,1.82,457,"0.6569","0.7403","0.7403" +"GO:0007346","regulation of mitotic cell cycle",3,2,1.82,458,"0.6569","0.7403","0.7403" +"GO:0031570","DNA integrity checkpoint",3,2,1.82,459,"0.6569","0.7403","0.7403" +"GO:0045786","negative regulation of cell cycle",3,2,1.82,460,"0.6569","0.7403","0.7403" +"GO:0051234","establishment of localization",62,39,37.56,304,"0.3930","0.7534","0.7534" +"GO:0009892","negative regulation of metabolic process",13,9,7.88,300,"0.3655","0.7567","0.7567" +"GO:0032268","regulation of cellular protein metabolic...",13,9,7.88,301,"0.3655","0.7567","0.7567" +"GO:0042127","regulation of cell proliferation",3,2,1.82,461,"0.6569","0.7596","0.7596" +"GO:0009057","macromolecule catabolic process",8,7,4.85,68,"0.1091","0.0782","0.7656" +"GO:0034314","Arp2/3 complex-mediated actin nucleation",3,1,1.82,657,"0.9398","0.7667","0.7667" +"GO:0045010","actin nucleation",3,1,1.82,658,"0.9398","0.7667","0.7667" +"GO:0006914","autophagy",3,1,1.82,659,"0.9398","0.7762","0.7762" +"GO:0061919","process utilizing autophagic mechanism",3,1,1.82,660,"0.9398","0.7762","0.7762" +"GO:0023052","signaling",46,27,27.87,514,"0.6767","0.7771","0.7771" +"GO:1901605","alpha-amino acid metabolic process",5,1,3.03,692,"0.9910","0.7799","0.7799" +"GO:0002252","immune effector process",3,2,1.82,462,"0.6569","0.7969","0.7969" +"GO:0002520","immune system development",3,1,1.82,661,"0.9398","0.7969","0.7969" +"GO:0002694","regulation of leukocyte activation",3,2,1.82,463,"0.6569","0.7969","0.7969" +"GO:0006909","phagocytosis",3,2,1.82,464,"0.6569","0.7969","0.7969" +"GO:0007159","leukocyte cell-cell adhesion",3,2,1.82,465,"0.6569","0.7969","0.7969" +"GO:0007163","establishment or maintenance of cell pol...",3,2,1.82,466,"0.6569","0.7969","0.7969" +"GO:0007507","heart development",3,2,1.82,467,"0.6569","0.7969","0.7969" +"GO:0010562","positive regulation of phosphorus metabo...",3,2,1.82,468,"0.6569","0.7969","0.7969" +"GO:0010921","regulation of phosphatase activity",3,2,1.82,469,"0.6569","0.7969","0.7969" +"GO:0010923","negative regulation of phosphatase activ...",3,2,1.82,470,"0.6569","0.7969","0.7969" +"GO:0016331","morphogenesis of embryonic epithelium",3,2,1.82,471,"0.6569","0.7969","0.7969" +"GO:0022407","regulation of cell-cell adhesion",3,2,1.82,472,"0.6569","0.7969","0.7969" +"GO:0030097","hemopoiesis",3,1,1.82,662,"0.9398","0.7969","0.7969" +"GO:0030155","regulation of cell adhesion",3,2,1.82,473,"0.6569","0.7969","0.7969" +"GO:0030335","positive regulation of cell migration",3,2,1.82,474,"0.6569","0.7969","0.7969" +"GO:0031346","positive regulation of cell projection o...",3,2,1.82,475,"0.6569","0.7969","0.7969" +"GO:0032101","regulation of response to external stimu...",3,2,1.82,476,"0.6569","0.7969","0.7969" +"GO:0032515","negative regulation of phosphoprotein ph...",3,2,1.82,477,"0.6569","0.7969","0.7969" +"GO:0032943","mononuclear cell proliferation",3,2,1.82,478,"0.6569","0.7969","0.7969" +"GO:0035148","tube formation",3,2,1.82,479,"0.6569","0.7969","0.7969" +"GO:0035303","regulation of dephosphorylation",3,2,1.82,480,"0.6569","0.7969","0.7969" +"GO:0035304","regulation of protein dephosphorylation",3,2,1.82,481,"0.6569","0.7969","0.7969" +"GO:0035305","negative regulation of dephosphorylation",3,2,1.82,482,"0.6569","0.7969","0.7969" +"GO:0035308","negative regulation of protein dephospho...",3,2,1.82,483,"0.6569","0.7969","0.7969" +"GO:0040017","positive regulation of locomotion",3,2,1.82,484,"0.6569","0.7969","0.7969" +"GO:0042098","T cell proliferation",3,2,1.82,485,"0.6569","0.7969","0.7969" +"GO:0042327","positive regulation of phosphorylation",3,2,1.82,486,"0.6569","0.7969","0.7969" +"GO:0043666","regulation of phosphoprotein phosphatase...",3,2,1.82,487,"0.6569","0.7969","0.7969" +"GO:0045937","positive regulation of phosphate metabol...",3,2,1.82,488,"0.6569","0.7969","0.7969" +"GO:0046651","lymphocyte proliferation",3,2,1.82,489,"0.6569","0.7969","0.7969" +"GO:0048534","hematopoietic or lymphoid organ developm...",3,1,1.82,663,"0.9398","0.7969","0.7969" +"GO:0048588","developmental cell growth",3,1,1.82,664,"0.9398","0.7969","0.7969" +"GO:0048872","homeostasis of number of cells",3,1,1.82,665,"0.9398","0.7969","0.7969" +"GO:0050778","positive regulation of immune response",3,2,1.82,490,"0.6569","0.7969","0.7969" +"GO:0050863","regulation of T cell activation",3,2,1.82,491,"0.6569","0.7969","0.7969" +"GO:0050865","regulation of cell activation",3,2,1.82,492,"0.6569","0.7969","0.7969" +"GO:0050900","leukocyte migration",3,1,1.82,666,"0.9398","0.7969","0.7969" +"GO:0051050","positive regulation of transport",3,2,1.82,493,"0.6569","0.7969","0.7969" +"GO:0051249","regulation of lymphocyte activation",3,2,1.82,494,"0.6569","0.7969","0.7969" +"GO:0051272","positive regulation of cellular componen...",3,2,1.82,495,"0.6569","0.7969","0.7969" +"GO:0060491","regulation of cell projection assembly",3,2,1.82,496,"0.6569","0.7969","0.7969" +"GO:0070661","leukocyte proliferation",3,2,1.82,497,"0.6569","0.7969","0.7969" +"GO:0120032","regulation of plasma membrane bounded ce...",3,2,1.82,498,"0.6569","0.7969","0.7969" +"GO:1903037","regulation of leukocyte cell-cell adhesi...",3,2,1.82,499,"0.6569","0.7969","0.7969" +"GO:2000147","positive regulation of cell motility",3,2,1.82,500,"0.6569","0.7969","0.7969" +"GO:0001894","tissue homeostasis",3,2,1.82,501,"0.6569","0.8060","0.8060" +"GO:0048871","multicellular organismal homeostasis",3,2,1.82,502,"0.6569","0.8060","0.8060" +"GO:0060249","anatomical structure homeostasis",3,2,1.82,503,"0.6569","0.8060","0.8060" +"GO:0010605","negative regulation of macromolecule met...",12,8,7.27,339,"0.4530","0.8092","0.8092" +"GO:0002009","morphogenesis of an epithelium",6,4,3.64,405,"0.5565","0.8123","0.8123" +"GO:0035239","tube morphogenesis",6,4,3.64,406,"0.5565","0.8123","0.8123" +"GO:0035295","tube development",6,4,3.64,407,"0.5565","0.8123","0.8123" +"GO:0007264","small GTPase mediated signal transductio...",6,3,3.64,603,"0.8313","0.8186","0.8186" +"GO:0006810","transport",61,38,36.96,333,"0.4381","0.8213","0.8213" +"GO:0044248","cellular catabolic process",19,11,11.51,516,"0.6921","0.8253","0.8253" +"GO:0006520","cellular amino acid metabolic process",6,2,3.64,687,"0.9633","0.8309","0.8309" +"GO:0016054","organic acid catabolic process",6,2,3.64,688,"0.9633","0.8309","0.8309" +"GO:0046395","carboxylic acid catabolic process",6,2,3.64,689,"0.9633","0.8309","0.8309" +"GO:0051130","positive regulation of cellular componen...",10,6,6.06,423,"0.6498","0.8343","0.8343" +"GO:0051246","regulation of protein metabolic process",15,10,9.09,317,"0.4184","0.8348","0.8348" +"GO:0007265","Ras protein signal transduction",5,3,3.03,529,"0.6939","0.8469","0.8469" +"GO:0016192","vesicle-mediated transport",15,10,9.09,318,"0.4184","0.8492","0.8492" +"GO:0051129","negative regulation of cellular componen...",4,2,2.42,585,"0.8292","0.8589","0.8589" +"GO:0008283","cell proliferation",7,4,4.24,554,"0.7237","0.8633","0.8633" +"GO:0031399","regulation of protein modification proce...",12,8,7.27,340,"0.4530","0.8669","0.8669" +"GO:0019439","aromatic compound catabolic process",7,3,4.24,617,"0.9121","0.8685","0.8685" +"GO:0044270","cellular nitrogen compound catabolic pro...",7,3,4.24,618,"0.9121","0.8685","0.8685" +"GO:0044282","small molecule catabolic process",7,3,4.24,619,"0.9121","0.8685","0.8685" +"GO:0046700","heterocycle catabolic process",7,3,4.24,620,"0.9121","0.8685","0.8685" +"GO:0006694","steroid biosynthetic process",3,2,1.82,504,"0.6569","0.8691","0.8691" +"GO:0008202","steroid metabolic process",3,2,1.82,505,"0.6569","0.8691","0.8691" +"GO:0010817","regulation of hormone levels",3,2,1.82,506,"0.6569","0.8691","0.8691" +"GO:0006412","translation",8,3,4.85,681,"0.9561","0.8694","0.8694" +"GO:0043043","peptide biosynthetic process",8,3,4.85,682,"0.9561","0.8694","0.8694" +"GO:0006281","DNA repair",5,3,3.03,530,"0.6939","0.8718","0.8718" +"GO:0016569","covalent chromatin modification",5,2,3.03,637,"0.9193","0.8718","0.8718" +"GO:0016570","histone modification",5,2,3.03,638,"0.9193","0.8718","0.8718" +"GO:0044283","small molecule biosynthetic process",7,4,4.24,555,"0.7237","0.8897","0.8897" +"GO:0035556","intracellular signal transduction",16,9,9.69,559,"0.7381","0.8906","0.8906" +"GO:0043604","amide biosynthetic process",9,4,5.45,613,"0.9107","0.8923","0.8923" +"GO:1901361","organic cyclic compound catabolic proces...",8,3,4.85,683,"0.9561","0.8970","0.8970" +"GO:0006974","cellular response to DNA damage stimulus",9,6,5.45,388,"0.4966","0.8995","0.8995" +"GO:0006352","DNA-templated transcription, initiation",4,2,2.42,586,"0.8292","0.9013","0.9013" +"GO:0000122","negative regulation of transcription by ...",3,2,1.82,507,"0.6569","0.9023","0.9023" +"GO:0007266","Rho protein signal transduction",3,2,1.82,508,"0.6569","0.9023","0.9023" +"GO:0009967","positive regulation of signal transducti...",3,2,1.82,509,"0.6569","0.9023","0.9023" +"GO:0010647","positive regulation of cell communicatio...",3,2,1.82,510,"0.6569","0.9023","0.9023" +"GO:0023056","positive regulation of signaling",3,2,1.82,511,"0.6569","0.9023","0.9023" +"GO:0035023","regulation of Rho protein signal transdu...",3,2,1.82,512,"0.6569","0.9023","0.9023" +"GO:1902533","positive regulation of intracellular sig...",3,2,1.82,513,"0.6569","0.9023","0.9023" +"GO:0006518","peptide metabolic process",10,4,6.06,679,"0.9526","0.9106","0.9106" +"GO:0009890","negative regulation of biosynthetic proc...",6,4,3.64,408,"0.5565","0.9125","0.9125" +"GO:0044281","small molecule metabolic process",28,17,16.96,410,"0.5792","0.9147","0.9147" +"GO:0010604","positive regulation of macromolecule met...",10,6,6.06,424,"0.6498","0.9197","0.9197" +"GO:0006091","generation of precursor metabolites and ...",4,2,2.42,587,"0.8292","0.9295","0.9295" +"GO:0035601","protein deacylation",4,2,2.42,588,"0.8292","0.9295","0.9295" +"GO:0098732","macromolecule deacylation",4,2,2.42,589,"0.8292","0.9295","0.9295" +"GO:0043603","cellular amide metabolic process",12,5,7.27,676,"0.9513","0.9380","0.9380" +"GO:0007423","sensory organ development",6,4,3.64,409,"0.5565","0.9388","0.9388" +"GO:0006575","cellular modified amino acid metabolic p...",4,2,2.42,590,"0.8292","0.9467","0.9467" +"GO:0048584","positive regulation of response to stimu...",7,4,4.24,556,"0.7237","0.9514","0.9514" +"GO:0009792","embryo development ending in birth or eg...",5,3,3.03,531,"0.6939","0.9598","0.9598" +"GO:0048598","embryonic morphogenesis",5,3,3.03,532,"0.6939","0.9598","0.9598" +"GO:1901575","organic substance catabolic process",18,11,10.91,411,"0.5856","0.7068","0.9633" +"GO:0009790","embryo development",7,4,4.24,557,"0.7237","0.9639","0.9639" +"GO:0040007","growth",7,3,4.24,621,"0.9121","0.9639","0.9639" +"GO:0060562","epithelial tube morphogenesis",4,2,2.42,591,"0.8292","0.9775","0.9775" +"GO:0031929","TOR signaling",3,1,1.82,667,"0.9398","0.9795","0.9795" +"GO:0006457","protein folding",4,2,2.42,592,"0.8292","0.9819","0.9819" +"GO:0009887","animal organ morphogenesis",7,4,4.24,558,"0.7237","0.9826","0.9826" +"GO:0006082","organic acid metabolic process",15,8,9.09,565,"0.8068","0.9835","0.9835" +"GO:0019752","carboxylic acid metabolic process",15,8,9.09,566,"0.8068","0.9835","0.9835" +"GO:0043436","oxoacid metabolic process",15,8,9.09,567,"0.8068","0.9835","0.9835" +"GO:0009056","catabolic process",21,12,12.72,541,"0.7178","0.7947","0.9849" +"GO:0030258","lipid modification",4,2,2.42,593,"0.8292","0.9913","0.9913" +"GO:0048518","positive regulation of biological proces...",28,15,16.96,609,"0.8427","0.9926","0.9926" +"GO:0009062","fatty acid catabolic process",3,1,1.82,668,"0.9398","0.9935","0.9935" +"GO:0019395","fatty acid oxidation",3,1,1.82,669,"0.9398","0.9935","0.9935" +"GO:0034440","lipid oxidation",3,1,1.82,670,"0.9398","0.9935","0.9935" +"GO:0044242","cellular lipid catabolic process",3,1,1.82,671,"0.9398","0.9935","0.9935" +"GO:0072329","monocarboxylic acid catabolic process",3,1,1.82,672,"0.9398","0.9935","0.9935" +"GO:0048522","positive regulation of cellular process",20,9,12.12,680,"0.9558","0.9948","0.9948" +"GO:0043009","chordate embryonic development",4,2,2.42,594,"0.8292","0.9954","0.9954" +"GO:0009064","glutamine family amino acid metabolic pr...",3,0,1.82,693,"1.0000","0.9960","0.9960" +"GO:0010558","negative regulation of macromolecule bio...",5,3,3.03,533,"0.6939","0.9961","0.9961" +"GO:0031327","negative regulation of cellular biosynth...",5,3,3.03,534,"0.6939","0.9961","0.9961" +"GO:0045892","negative regulation of transcription, DN...",5,3,3.03,535,"0.6939","0.9961","0.9961" +"GO:0045934","negative regulation of nucleobase-contai...",5,3,3.03,536,"0.6939","0.9961","0.9961" +"GO:0051253","negative regulation of RNA metabolic pro...",5,3,3.03,537,"0.6939","0.9961","0.9961" +"GO:1902679","negative regulation of RNA biosynthetic ...",5,3,3.03,538,"0.6939","0.9961","0.9961" +"GO:1903507","negative regulation of nucleic acid-temp...",5,3,3.03,539,"0.6939","0.9961","0.9961" +"GO:2000113","negative regulation of cellular macromol...",5,3,3.03,540,"0.6939","0.9961","0.9961" +"GO:0009893","positive regulation of metabolic process",12,6,7.27,611,"0.8572","0.9970","0.9970" +"GO:0010629","negative regulation of gene expression",6,3,3.64,604,"0.8313","0.9974","0.9974" +"GO:1901615","organic hydroxy compound metabolic proce...",5,2,3.03,639,"0.9193","0.9978","0.9978" +"GO:0055114","oxidation-reduction process",16,7,9.69,677,"0.9524","0.9982","0.9982" +"GO:0006066","alcohol metabolic process",4,1,2.42,690,"0.9767","0.9983","0.9983" +"GO:0016042","lipid catabolic process",4,1,2.42,691,"0.9767","0.9983","0.9983" +"GO:0006897","endocytosis",6,3,3.64,605,"0.8313","0.9985","0.9985" +"GO:0098657","import into cell",6,3,3.64,606,"0.8313","0.9985","0.9985" +"GO:0006476","protein deacetylation",3,1,1.82,673,"0.9398","0.9987","0.9987" +"GO:0006720","isoprenoid metabolic process",3,1,1.82,674,"0.9398","0.9987","0.9987" +"GO:0090311","regulation of protein deacetylation",3,1,1.82,675,"0.9398","0.9987","0.9987" +"GO:0048589","developmental growth",5,2,3.03,640,"0.9193","0.9988","0.9988" +"GO:0017144","drug metabolic process",8,3,4.85,684,"0.9561","0.9998","0.9998" +"GO:0008150","biological_process",274,166,166,694,"1.0000","1.0000","1.0000" diff --git a/GO_enrichment_microbiome_output/contrast_young_males_upregulated.csv b/GO_enrichment_microbiome_output/contrast_young_males_upregulated.csv index ccc9eeb..f36a0a2 100644 --- a/GO_enrichment_microbiome_output/contrast_young_males_upregulated.csv +++ b/GO_enrichment_microbiome_output/contrast_young_males_upregulated.csv @@ -4,3 +4,442 @@ "GO:0044267","cellular protein metabolic process",36,17,12.82,6,"0.080","0.044","0.044" "GO:0043085","positive regulation of catalytic activit...",3,3,1.07,4,"0.044","0.061","0.061" "GO:0051338","regulation of transferase activity",3,3,1.07,5,"0.044","0.061","0.061" +"GO:0051276","chromosome organization",8,6,2.85,2,"0.025","0.071","0.071" +"GO:0043412","macromolecule modification",25,12,8.9,8,"0.124","0.074","0.074" +"GO:0065007","biological regulation",76,26,27.06,115,"0.680","0.075","0.075" +"GO:0009166","nucleotide catabolic process",3,2,1.07,29,"0.289","0.084","0.084" +"GO:0034404","nucleobase-containing small molecule bio...",3,2,1.07,30,"0.289","0.084","0.084" +"GO:1901292","nucleoside phosphate catabolic process",3,2,1.07,31,"0.289","0.084","0.084" +"GO:0006464","cellular protein modification process",24,11,8.55,12,"0.187","0.087","0.087" +"GO:0036211","protein modification process",24,11,8.55,13,"0.187","0.087","0.087" +"GO:0071704","organic substance metabolic process",109,37,38.81,215,"0.751","0.101","0.101" +"GO:0007165","signal transduction",29,10,10.33,106,"0.630","0.114","0.114" +"GO:0006468","protein phosphorylation",15,7,5.34,24,"0.254","0.115","0.115" +"GO:0017144","drug metabolic process",4,2,1.42,58,"0.448","0.122","0.122" +"GO:0044238","primary metabolic process",103,34,36.68,255,"0.823","0.138","0.138" +"GO:0032269","negative regulation of cellular protein ...",5,2,1.78,84,"0.585","0.139","0.139" +"GO:0051248","negative regulation of protein metabolic...",5,2,1.78,85,"0.585","0.139","0.139" +"GO:0019538","protein metabolic process",45,19,16.02,16,"0.191","0.152","0.152" +"GO:0050789","regulation of biological process",71,24,25.28,137,"0.706","0.161","0.161" +"GO:0006753","nucleoside phosphate metabolic process",4,3,1.42,9,"0.130","0.164","0.164" +"GO:0009117","nucleotide metabolic process",4,3,1.42,10,"0.130","0.164","0.164" +"GO:0019439","aromatic compound catabolic process",4,2,1.42,59,"0.448","0.164","0.164" +"GO:0034655","nucleobase-containing compound catabolic...",4,2,1.42,60,"0.448","0.164","0.164" +"GO:0044270","cellular nitrogen compound catabolic pro...",4,2,1.42,61,"0.448","0.164","0.164" +"GO:0046700","heterocycle catabolic process",4,2,1.42,62,"0.448","0.164","0.164" +"GO:1901361","organic cyclic compound catabolic proces...",4,2,1.42,63,"0.448","0.164","0.164" +"GO:1901135","carbohydrate derivative metabolic proces...",5,3,1.78,18,"0.242","0.165","0.165" +"GO:0016310","phosphorylation",19,9,6.77,15,"0.190","0.169","0.169" +"GO:0006793","phosphorus metabolic process",30,12,10.68,42,"0.364","0.171","0.171" +"GO:0006796","phosphate-containing compound metabolic ...",30,12,10.68,43,"0.364","0.171","0.171" +"GO:0034613","cellular protein localization",10,5,3.56,25,"0.258","0.202","0.202" +"GO:0045184","establishment of protein localization",10,5,3.56,26,"0.258","0.202","0.202" +"GO:0070727","cellular macromolecule localization",10,5,3.56,27,"0.258","0.202","0.202" +"GO:0007154","cell communication",30,10,10.68,118,"0.683","0.204","0.204" +"GO:0023052","signaling",30,10,10.68,119,"0.683","0.204","0.204" +"GO:0031400","negative regulation of protein modificat...",4,2,1.42,64,"0.448","0.207","0.207" +"GO:0043086","negative regulation of catalytic activit...",3,2,1.07,32,"0.289","0.209","0.209" +"GO:0044092","negative regulation of molecular functio...",3,2,1.07,33,"0.289","0.209","0.209" +"GO:0007186","G protein-coupled receptor signaling pat...",6,3,2.14,44,"0.364","0.210","0.210" +"GO:0071705","nitrogen compound transport",12,6,4.27,17,"0.220","0.213","0.213" +"GO:0009628","response to abiotic stimulus",7,2,2.49,227,"0.781","0.215","0.215" +"GO:0050794","regulation of cellular process",69,23,24.57,210,"0.738","0.221","0.221" +"GO:0050790","regulation of catalytic activity",6,4,2.14,7,"0.121","0.230","0.230" +"GO:0071702","organic substance transport",14,7,4.99,14,"0.189","0.243","0.243" +"GO:0055085","transmembrane transport",31,12,11.04,54,"0.420","0.243","0.243" +"GO:1901565","organonitrogen compound catabolic proces...",7,2,2.49,228,"0.781","0.243","0.243" +"GO:0044283","small molecule biosynthetic process",5,2,1.78,86,"0.585","0.244","0.244" +"GO:0055086","nucleobase-containing small molecule met...",5,3,1.78,19,"0.242","0.244","0.244" +"GO:0030029","actin filament-based process",3,2,1.07,34,"0.289","0.251","0.251" +"GO:0006897","endocytosis",4,3,1.42,11,"0.130","0.256","0.256" +"GO:0044237","cellular metabolic process",94,31,33.47,246,"0.808","0.261","0.261" +"GO:1901564","organonitrogen compound metabolic proces...",56,22,19.94,40,"0.303","0.262","0.262" +"GO:0006970","response to osmotic stress",3,1,1.07,140,"0.735","0.263","0.263" +"GO:0009651","response to salt stress",3,1,1.07,141,"0.735","0.263","0.263" +"GO:0055080","cation homeostasis",3,1,1.07,142,"0.735","0.270","0.270" +"GO:0098771","inorganic ion homeostasis",3,1,1.07,143,"0.735","0.270","0.270" +"GO:0044260","cellular macromolecule metabolic process",67,25,23.86,53,"0.419","0.280","0.280" +"GO:0002376","immune system process",5,3,1.78,20,"0.242","0.282","0.282" +"GO:0008104","protein localization",14,6,4.99,48,"0.375","0.286","0.286" +"GO:0030163","protein catabolic process",4,1,1.42,257,"0.831","0.289","0.289" +"GO:0098656","anion transmembrane transport",5,3,1.78,21,"0.242","0.292","0.292" +"GO:0035556","intracellular signal transduction",10,4,3.56,74,"0.504","0.301","0.301" +"GO:0031503","protein-containing complex localization",3,2,1.07,35,"0.289","0.304","0.304" +"GO:0001933","negative regulation of protein phosphory...",3,1,1.07,144,"0.735","0.309","0.309" +"GO:0009611","response to wounding",3,1,1.07,145,"0.735","0.309","0.309" +"GO:0010563","negative regulation of phosphorus metabo...",3,1,1.07,146,"0.735","0.309","0.309" +"GO:0042326","negative regulation of phosphorylation",3,1,1.07,147,"0.735","0.309","0.309" +"GO:0045936","negative regulation of phosphate metabol...",3,1,1.07,148,"0.735","0.309","0.309" +"GO:0048585","negative regulation of response to stimu...",3,0,1.07,371,"1.000","0.309","0.309" +"GO:0015031","protein transport",9,4,3.2,49,"0.405","0.310","0.310" +"GO:0015833","peptide transport",9,4,3.2,50,"0.405","0.310","0.310" +"GO:0042886","amide transport",9,4,3.2,51,"0.405","0.310","0.310" +"GO:0043170","macromolecule metabolic process",83,29,29.56,105,"0.622","0.312","0.312" +"GO:0050896","response to stimulus",54,20,19.23,72,"0.461","0.313","0.313" +"GO:0006886","intracellular protein transport",6,3,2.14,45,"0.364","0.317","0.317" +"GO:0046434","organophosphate catabolic process",6,3,2.14,46,"0.364","0.319","0.319" +"GO:0008152","metabolic process",127,42,45.22,298,"0.868","0.325","0.325" +"GO:0051716","cellular response to stimulus",42,15,14.96,83,"0.561","0.328","0.328" +"GO:0006807","nitrogen compound metabolic process",91,32,32.4,103,"0.604","0.331","0.331" +"GO:0030001","metal ion transport",10,5,3.56,28,"0.258","0.339","0.339" +"GO:1901566","organonitrogen compound biosynthetic pro...",12,5,4.27,55,"0.434","0.347","0.347" +"GO:0015711","organic anion transport",3,2,1.07,36,"0.289","0.354","0.354" +"GO:0006820","anion transport",8,4,2.85,41,"0.304","0.359","0.359" +"GO:0009987","cellular process",136,48,48.43,104,"0.615","0.360","0.360" +"GO:0098662","inorganic cation transmembrane transport",3,2,1.07,37,"0.289","0.372","0.372" +"GO:0006511","ubiquitin-dependent protein catabolic pr...",3,1,1.07,149,"0.735","0.396","0.396" +"GO:0019941","modification-dependent protein catabolic...",3,1,1.07,150,"0.735","0.396","0.396" +"GO:0043632","modification-dependent macromolecule cat...",3,1,1.07,151,"0.735","0.396","0.396" +"GO:0044257","cellular protein catabolic process",3,1,1.07,152,"0.735","0.396","0.396" +"GO:0051603","proteolysis involved in cellular protein...",3,1,1.07,153,"0.735","0.396","0.396" +"GO:0001932","regulation of protein phosphorylation",6,2,2.14,121,"0.696","0.398","0.398" +"GO:0042325","regulation of phosphorylation",6,2,2.14,122,"0.696","0.398","0.398" +"GO:0048513","animal organ development",13,5,4.63,79,"0.520","0.399","0.399" +"GO:0045444","fat cell differentiation",3,0,1.07,372,"1.000","0.405","0.405" +"GO:0044248","cellular catabolic process",14,5,4.99,100,"0.601","0.422","0.422" +"GO:0042592","homeostatic process",14,5,4.99,101,"0.601","0.439","0.439" +"GO:0010605","negative regulation of macromolecule met...",10,4,3.56,75,"0.504","0.440","0.440" +"GO:0051172","negative regulation of nitrogen compound...",10,4,3.56,76,"0.504","0.440","0.440" +"GO:0006260","DNA replication",3,2,1.07,38,"0.289","0.446","0.446" +"GO:0006261","DNA-dependent DNA replication",3,2,1.07,39,"0.289","0.446","0.446" +"GO:0009889","regulation of biosynthetic process",27,9,9.61,114,"0.680","0.449","0.449" +"GO:0015698","inorganic anion transport",5,2,1.78,87,"0.585","0.453","0.453" +"GO:0044093","positive regulation of molecular functio...",5,3,1.78,22,"0.242","0.453","0.453" +"GO:0048878","chemical homeostasis",5,2,1.78,88,"0.585","0.453","0.453" +"GO:0033036","macromolecule localization",16,6,5.7,81,"0.534","0.455","0.455" +"GO:0007010","cytoskeleton organization",4,2,1.42,65,"0.448","0.457","0.457" +"GO:1901575","organic substance catabolic process",13,5,4.63,80,"0.520","0.469","0.469" +"GO:0009058","biosynthetic process",48,16,17.09,135,"0.706","0.477","0.477" +"GO:1901576","organic substance biosynthetic process",48,16,17.09,136,"0.706","0.477","0.477" +"GO:0005975","carbohydrate metabolic process",11,2,3.92,349,"0.949","0.501","0.501" +"GO:0098657","import into cell",5,3,1.78,23,"0.242","0.504","0.504" +"GO:0006810","transport",62,23,22.08,57,"0.444","0.507","0.507" +"GO:0044249","cellular biosynthetic process",45,14,16.02,248,"0.813","0.510","0.510" +"GO:0045934","negative regulation of nucleobase-contai...",6,2,2.14,123,"0.696","0.517","0.517" +"GO:0048856","anatomical structure development",25,8,8.9,138,"0.730","0.519","0.519" +"GO:0009653","anatomical structure morphogenesis",10,3,3.56,216,"0.758","0.523","0.523" +"GO:0032268","regulation of cellular protein metabolic...",10,4,3.56,77,"0.504","0.532","0.532" +"GO:0010556","regulation of macromolecule biosynthetic...",26,8,9.26,223,"0.777","0.538","0.538" +"GO:0031326","regulation of cellular biosynthetic proc...",26,8,9.26,224,"0.777","0.538","0.538" +"GO:2000112","regulation of cellular macromolecule bio...",26,8,9.26,225,"0.777","0.538","0.538" +"GO:0000902","cell morphogenesis",4,2,1.42,66,"0.448","0.538","0.538" +"GO:0006508","proteolysis",12,4,4.27,110,"0.676","0.541","0.541" +"GO:0000165","MAPK cascade",4,1,1.42,258,"0.831","0.544","0.544" +"GO:0023014","signal transduction by protein phosphory...",4,1,1.42,259,"0.831","0.544","0.544" +"GO:0043408","regulation of MAPK cascade",4,1,1.42,260,"0.831","0.544","0.544" +"GO:0006643","membrane lipid metabolic process",3,1,1.07,154,"0.735","0.552","0.552" +"GO:0006665","sphingolipid metabolic process",3,1,1.07,155,"0.735","0.552","0.552" +"GO:0016042","lipid catabolic process",3,1,1.07,156,"0.735","0.552","0.552" +"GO:0030149","sphingolipid catabolic process",3,1,1.07,157,"0.735","0.552","0.552" +"GO:0044242","cellular lipid catabolic process",3,1,1.07,158,"0.735","0.552","0.552" +"GO:0046466","membrane lipid catabolic process",3,1,1.07,159,"0.735","0.552","0.552" +"GO:0016311","dephosphorylation",7,2,2.49,229,"0.781","0.553","0.553" +"GO:0009056","catabolic process",17,5,6.05,245,"0.792","0.555","0.555" +"GO:0001775","cell activation",3,1,1.07,160,"0.735","0.559","0.559" +"GO:0003006","developmental process involved in reprod...",3,1,1.07,161,"0.735","0.559","0.559" +"GO:0009612","response to mechanical stimulus",3,1,1.07,162,"0.735","0.559","0.559" +"GO:0032504","multicellular organism reproduction",3,1,1.07,163,"0.735","0.559","0.559" +"GO:0032990","cell part morphogenesis",3,1,1.07,164,"0.735","0.559","0.559" +"GO:0043010","camera-type eye development",3,1,1.07,165,"0.735","0.559","0.559" +"GO:0048609","multicellular organismal reproductive pr...",3,1,1.07,166,"0.735","0.559","0.559" +"GO:0060041","retina development in camera-type eye",3,1,1.07,167,"0.735","0.559","0.559" +"GO:0098609","cell-cell adhesion",3,1,1.07,168,"0.735","0.559","0.559" +"GO:0099173","postsynapse organization",3,1,1.07,169,"0.735","0.559","0.559" +"GO:0051234","establishment of localization",64,24,22.79,52,"0.410","0.560","0.560" +"GO:0006812","cation transport",15,6,5.34,71,"0.456","0.562","0.562" +"GO:0006979","response to oxidative stress",6,2,2.14,124,"0.696","0.566","0.566" +"GO:0051186","cofactor metabolic process",3,1,1.07,170,"0.735","0.570","0.570" +"GO:0051188","cofactor biosynthetic process",3,1,1.07,171,"0.735","0.570","0.570" +"GO:1901362","organic cyclic compound biosynthetic pro...",33,10,11.75,249,"0.813","0.571","0.571" +"GO:1901615","organic hydroxy compound metabolic proce...",3,0,1.07,373,"1.000","0.573","0.573" +"GO:0031324","negative regulation of cellular metaboli...",12,4,4.27,111,"0.676","0.574","0.574" +"GO:0019725","cellular homeostasis",6,2,2.14,125,"0.696","0.576","0.576" +"GO:0010638","positive regulation of organelle organiz...",4,2,1.42,67,"0.448","0.583","0.583" +"GO:0051179","localization",65,24,23.15,70,"0.454","0.587","0.587" +"GO:0009059","macromolecule biosynthetic process",36,12,12.82,120,"0.690","0.597","0.597" +"GO:0060255","regulation of macromolecule metabolic pr...",36,11,12.82,247,"0.812","0.600","0.600" +"GO:0008610","lipid biosynthetic process",5,1,1.78,307,"0.892","0.610","0.610" +"GO:0051704","multi-organism process",5,2,1.78,89,"0.585","0.610","0.610" +"GO:0002262","myeloid cell homeostasis",3,1,1.07,172,"0.735","0.611","0.611" +"GO:0002520","immune system development",3,1,1.07,173,"0.735","0.611","0.611" +"GO:0030097","hemopoiesis",3,1,1.07,174,"0.735","0.611","0.611" +"GO:0030099","myeloid cell differentiation",3,1,1.07,175,"0.735","0.611","0.611" +"GO:0030218","erythrocyte differentiation",3,1,1.07,176,"0.735","0.611","0.611" +"GO:0034101","erythrocyte homeostasis",3,1,1.07,177,"0.735","0.611","0.611" +"GO:0048534","hematopoietic or lymphoid organ developm...",3,1,1.07,178,"0.735","0.611","0.611" +"GO:0048821","erythrocyte development",3,1,1.07,179,"0.735","0.611","0.611" +"GO:0048872","homeostasis of number of cells",3,1,1.07,180,"0.735","0.611","0.611" +"GO:0061515","myeloid cell development",3,1,1.07,181,"0.735","0.611","0.611" +"GO:0009890","negative regulation of biosynthetic proc...",7,2,2.49,230,"0.781","0.615","0.615" +"GO:0010558","negative regulation of macromolecule bio...",7,2,2.49,231,"0.781","0.615","0.615" +"GO:0031327","negative regulation of cellular biosynth...",7,2,2.49,232,"0.781","0.615","0.615" +"GO:2000113","negative regulation of cellular macromol...",7,2,2.49,233,"0.781","0.615","0.615" +"GO:0033554","cellular response to stress",7,2,2.49,234,"0.781","0.617","0.617" +"GO:0019637","organophosphate metabolic process",12,5,4.27,56,"0.434","0.618","0.618" +"GO:0018130","heterocycle biosynthetic process",32,10,11.4,217,"0.775","0.619","0.619" +"GO:0019438","aromatic compound biosynthetic process",32,10,11.4,218,"0.775","0.619","0.619" +"GO:0007275","multicellular organism development",24,7,8.55,254,"0.823","0.622","0.622" +"GO:0009892","negative regulation of metabolic process",13,4,4.63,213,"0.745","0.633","0.633" +"GO:0098660","inorganic ion transmembrane transport",4,2,1.42,68,"0.448","0.633","0.633" +"GO:0001934","positive regulation of protein phosphory...",3,1,1.07,182,"0.735","0.635","0.635" +"GO:0007264","small GTPase mediated signal transductio...",3,1,1.07,183,"0.735","0.635","0.635" +"GO:0007265","Ras protein signal transduction",3,1,1.07,184,"0.735","0.635","0.635" +"GO:0042327","positive regulation of phosphorylation",3,1,1.07,185,"0.735","0.635","0.635" +"GO:0046578","regulation of Ras protein signal transdu...",3,1,1.07,186,"0.735","0.635","0.635" +"GO:0051056","regulation of small GTPase mediated sign...",3,1,1.07,187,"0.735","0.635","0.635" +"GO:0051129","negative regulation of cellular componen...",3,1,1.07,188,"0.735","0.635","0.635" +"GO:0048731","system development",20,6,7.12,244,"0.785","0.635","0.635" +"GO:0006950","response to stress",18,6,6.41,109,"0.674","0.643","0.643" +"GO:1901700","response to oxygen-containing compound",5,1,1.78,308,"0.892","0.650","0.650" +"GO:0010035","response to inorganic substance",5,0,1.78,374,"1.000","0.650","0.650" +"GO:0032502","developmental process",29,8,10.33,301,"0.883","0.651","0.651" +"GO:0019222","regulation of metabolic process",38,12,13.53,221,"0.776","0.652","0.652" +"GO:0000003","reproduction",4,1,1.42,261,"0.831","0.660","0.660" +"GO:0001654","eye development",4,1,1.42,262,"0.831","0.660","0.660" +"GO:0022414","reproductive process",4,1,1.42,263,"0.831","0.660","0.660" +"GO:0031175","neuron projection development",4,1,1.42,264,"0.831","0.660","0.660" +"GO:0048880","sensory system development",4,1,1.42,265,"0.831","0.660","0.660" +"GO:0050808","synapse organization",4,1,1.42,266,"0.831","0.660","0.660" +"GO:0051301","cell division",4,1,1.42,267,"0.831","0.660","0.660" +"GO:0150063","visual system development",4,1,1.42,268,"0.831","0.660","0.660" +"GO:0046907","intracellular transport",13,3,4.63,329,"0.903","0.662","0.662" +"GO:0034645","cellular macromolecule biosynthetic proc...",35,11,12.46,219,"0.775","0.664","0.664" +"GO:0044262","cellular carbohydrate metabolic process",4,1,1.42,269,"0.831","0.672","0.672" +"GO:0090407","organophosphate biosynthetic process",4,1,1.42,270,"0.831","0.672","0.672" +"GO:0006259","DNA metabolic process",6,3,2.14,47,"0.364","0.676","0.676" +"GO:0044281","small molecule metabolic process",14,5,4.99,102,"0.601","0.679","0.679" +"GO:0080090","regulation of primary metabolic process",35,11,12.46,220,"0.775","0.685","0.685" +"GO:0050801","ion homeostasis",4,1,1.42,271,"0.831","0.690","0.690" +"GO:0009057","macromolecule catabolic process",5,1,1.78,309,"0.892","0.690","0.690" +"GO:1901360","organic cyclic compound metabolic proces...",44,14,15.67,226,"0.778","0.691","0.691" +"GO:0006725","cellular aromatic compound metabolic pro...",43,14,15.31,211,"0.740","0.694","0.694" +"GO:0046483","heterocycle metabolic process",43,14,15.31,212,"0.740","0.694","0.694" +"GO:0031399","regulation of protein modification proce...",8,3,2.85,96,"0.590","0.694","0.694" +"GO:0044087","regulation of cellular component biogene...",8,2,2.85,289,"0.845","0.694","0.694" +"GO:0016192","vesicle-mediated transport",16,4,5.7,302,"0.886","0.695","0.695" +"GO:0006366","transcription by RNA polymerase II",9,3,3.2,116,"0.682","0.698","0.698" +"GO:0044271","cellular nitrogen compound biosynthetic ...",40,12,14.24,288,"0.844","0.701","0.701" +"GO:0032501","multicellular organismal process",27,7,9.61,332,"0.913","0.705","0.705" +"GO:0051246","regulation of protein metabolic process",12,4,4.27,112,"0.676","0.705","0.705" +"GO:0065008","regulation of biological quality",23,6,8.19,327,"0.895","0.708","0.708" +"GO:0042493","response to drug",4,1,1.42,272,"0.831","0.710","0.710" +"GO:0010038","response to metal ion",4,0,1.42,375,"1.000","0.710","0.710" +"GO:0010243","response to organonitrogen compound",4,0,1.42,376,"1.000","0.710","0.710" +"GO:1901698","response to nitrogen compound",4,0,1.42,377,"1.000","0.710","0.710" +"GO:1902531","regulation of intracellular signal trans...",7,2,2.49,235,"0.781","0.711","0.711" +"GO:0006629","lipid metabolic process",11,3,3.92,252,"0.819","0.713","0.713" +"GO:0009790","embryo development",5,1,1.78,310,"0.892","0.716","0.716" +"GO:0009888","tissue development",5,2,1.78,90,"0.585","0.716","0.716" +"GO:0007155","cell adhesion",5,2,1.78,91,"0.585","0.729","0.729" +"GO:0007423","sensory organ development",5,1,1.78,311,"0.892","0.729","0.729" +"GO:0022610","biological adhesion",5,2,1.78,92,"0.585","0.729","0.729" +"GO:0032989","cellular component morphogenesis",5,2,1.78,93,"0.585","0.729","0.729" +"GO:0019220","regulation of phosphate metabolic proces...",7,2,2.49,236,"0.781","0.733","0.733" +"GO:0051174","regulation of phosphorus metabolic proce...",7,2,2.49,237,"0.781","0.733","0.733" +"GO:0048468","cell development",13,4,4.63,214,"0.745","0.736","0.736" +"GO:0009636","response to toxic substance",3,1,1.07,189,"0.735","0.742","0.742" +"GO:1901701","cellular response to oxygen-containing c...",3,1,1.07,190,"0.735","0.742","0.742" +"GO:0042221","response to chemical",17,2,6.05,370,"0.996","0.754","0.754" +"GO:0007049","cell cycle",9,3,3.2,117,"0.682","0.763","0.763" +"GO:0034220","ion transmembrane transport",12,4,4.27,113,"0.676","0.765","0.765" +"GO:0051171","regulation of nitrogen compound metaboli...",34,10,12.11,296,"0.847","0.769","0.769" +"GO:0034641","cellular nitrogen compound metabolic pro...",54,17,19.23,251,"0.817","0.769","0.769" +"GO:0097164","ammonium ion metabolic process",6,1,2.14,338,"0.932","0.770","0.770" +"GO:0006974","cellular response to DNA damage stimulus",4,2,1.42,69,"0.448","0.772","0.772" +"GO:0006518","peptide metabolic process",8,3,2.85,97,"0.590","0.773","0.773" +"GO:0034654","nucleobase-containing compound biosynthe...",30,9,10.68,250,"0.815","0.775","0.775" +"GO:0007420","brain development",6,2,2.14,126,"0.696","0.779","0.779" +"GO:0007610","behavior",6,1,2.14,339,"0.932","0.779","0.779" +"GO:0030030","cell projection organization",6,2,2.14,127,"0.696","0.779","0.779" +"GO:0048666","neuron development",6,2,2.14,128,"0.696","0.779","0.779" +"GO:0051726","regulation of cell cycle",6,2,2.14,129,"0.696","0.779","0.779" +"GO:0060322","head development",6,2,2.14,130,"0.696","0.779","0.779" +"GO:0120036","plasma membrane bounded cell projection ...",6,2,2.14,131,"0.696","0.779","0.779" +"GO:0007166","cell surface receptor signaling pathway",7,3,2.49,73,"0.482","0.788","0.788" +"GO:0000122","negative regulation of transcription by ...",5,1,1.78,312,"0.892","0.791","0.791" +"GO:0045892","negative regulation of transcription, DN...",5,1,1.78,313,"0.892","0.791","0.791" +"GO:0051253","negative regulation of RNA metabolic pro...",5,1,1.78,314,"0.892","0.791","0.791" +"GO:1902679","negative regulation of RNA biosynthetic ...",5,1,1.78,315,"0.892","0.791","0.791" +"GO:1903507","negative regulation of nucleic acid-temp...",5,1,1.78,316,"0.892","0.791","0.791" +"GO:0065009","regulation of molecular function",10,4,3.56,78,"0.504","0.794","0.794" +"GO:0006644","phospholipid metabolic process",6,2,2.14,132,"0.696","0.796","0.796" +"GO:0033043","regulation of organelle organization",5,2,1.78,94,"0.585","0.803","0.803" +"GO:0055114","oxidation-reduction process",8,2,2.85,290,"0.845","0.807","0.807" +"GO:0043603","cellular amide metabolic process",11,4,3.92,98,"0.595","0.810","0.810" +"GO:0000278","mitotic cell cycle",7,1,2.49,355,"0.957","0.816","0.816" +"GO:0009605","response to external stimulus",7,2,2.49,238,"0.781","0.816","0.816" +"GO:1903047","mitotic cell cycle process",7,1,2.49,356,"0.957","0.816","0.816" +"GO:0045454","cell redox homeostasis",4,0,1.42,378,"1.000","0.820","0.820" +"GO:0006351","transcription, DNA-templated",26,6,9.26,352,"0.954","0.821","0.821" +"GO:0032774","RNA biosynthetic process",26,6,9.26,353,"0.954","0.821","0.821" +"GO:0097659","nucleic acid-templated transcription",26,6,9.26,354,"0.954","0.821","0.821" +"GO:0051239","regulation of multicellular organismal p...",9,0,3.2,379,"1.000","0.821","0.821" +"GO:0051128","regulation of cellular component organiz...",11,4,3.92,99,"0.595","0.824","0.824" +"GO:0006357","regulation of transcription by RNA polym...",7,2,2.49,239,"0.781","0.826","0.826" +"GO:0006412","translation",6,2,2.14,133,"0.696","0.826","0.826" +"GO:0098655","cation transmembrane transport",5,2,1.78,95,"0.585","0.826","0.826" +"GO:0030900","forebrain development",3,1,1.07,191,"0.735","0.832","0.832" +"GO:0045787","positive regulation of cell cycle",3,1,1.07,192,"0.735","0.832","0.832" +"GO:0090068","positive regulation of cell cycle proces...",3,1,1.07,193,"0.735","0.832","0.832" +"GO:0032940","secretion by cell",3,1,1.07,194,"0.735","0.837","0.837" +"GO:0046903","secretion",3,1,1.07,195,"0.735","0.837","0.837" +"GO:0010562","positive regulation of phosphorus metabo...",4,1,1.42,273,"0.831","0.840","0.840" +"GO:0031401","positive regulation of protein modificat...",4,1,1.42,274,"0.831","0.840","0.840" +"GO:0032270","positive regulation of cellular protein ...",4,1,1.42,275,"0.831","0.840","0.840" +"GO:0045937","positive regulation of phosphate metabol...",4,1,1.42,276,"0.831","0.840","0.840" +"GO:0051247","positive regulation of protein metabolic...",4,1,1.42,277,"0.831","0.840","0.840" +"GO:0030182","neuron differentiation",8,2,2.85,291,"0.845","0.840","0.840" +"GO:0010629","negative regulation of gene expression",6,1,2.14,340,"0.932","0.842","0.842" +"GO:0006928","movement of cell or subcellular componen...",6,1,2.14,341,"0.932","0.844","0.844" +"GO:0007417","central nervous system development",8,2,2.85,292,"0.845","0.845","0.845" +"GO:0022402","cell cycle process",8,2,2.85,293,"0.845","0.845","0.845" +"GO:0031323","regulation of cellular metabolic process",35,10,12.46,300,"0.876","0.845","0.845" +"GO:0048523","negative regulation of cellular process",18,5,6.41,286,"0.837","0.850","0.850" +"GO:0044265","cellular macromolecule catabolic process",4,1,1.42,278,"0.831","0.852","0.852" +"GO:0030154","cell differentiation",18,5,6.41,287,"0.837","0.858","0.858" +"GO:0050793","regulation of developmental process",7,1,2.49,357,"0.957","0.859","0.859" +"GO:0006470","protein dephosphorylation",3,0,1.07,380,"1.000","0.865","0.865" +"GO:0006355","regulation of transcription, DNA-templat...",22,5,7.83,345,"0.946","0.866","0.866" +"GO:1903506","regulation of nucleic acid-templated tra...",22,5,7.83,346,"0.946","0.866","0.866" +"GO:2001141","regulation of RNA biosynthetic process",22,5,7.83,347,"0.946","0.866","0.866" +"GO:0022008","neurogenesis",9,2,3.2,303,"0.892","0.868","0.868" +"GO:0048699","generation of neurons",9,2,3.2,304,"0.892","0.868","0.868" +"GO:0010468","regulation of gene expression",25,6,8.9,344,"0.939","0.869","0.869" +"GO:0019219","regulation of nucleobase-containing comp...",25,7,8.9,297,"0.859","0.869","0.869" +"GO:0006811","ion transport",29,10,10.33,107,"0.630","0.869","0.869" +"GO:0048583","regulation of response to stimulus",14,3,4.99,337,"0.930","0.869","0.869" +"GO:0048869","cellular developmental process",19,5,6.77,299,"0.874","0.875","0.875" +"GO:0010608","posttranscriptional regulation of gene e...",3,1,1.07,196,"0.735","0.875","0.875" +"GO:0045595","regulation of cell differentiation",6,1,2.14,342,"0.932","0.878","0.878" +"GO:2000026","regulation of multicellular organismal d...",6,0,2.14,381,"1.000","0.878","0.878" +"GO:0034622","cellular protein-containing complex asse...",3,1,1.07,197,"0.735","0.883","0.883" +"GO:0044089","positive regulation of cellular componen...",3,1,1.07,198,"0.735","0.883","0.883" +"GO:0006139","nucleobase-containing compound metabolic...",41,13,14.6,222,"0.777","0.887","0.887" +"GO:0009966","regulation of signal transduction",12,2,4.27,361,"0.965","0.888","0.888" +"GO:0010646","regulation of cell communication",12,2,4.27,362,"0.965","0.888","0.888" +"GO:0023051","regulation of signaling",12,2,4.27,363,"0.965","0.888","0.888" +"GO:0048519","negative regulation of biological proces...",20,5,7.12,331,"0.904","0.890","0.890" +"GO:0051093","negative regulation of developmental pro...",4,1,1.42,279,"0.831","0.894","0.894" +"GO:0051241","negative regulation of multicellular org...",4,0,1.42,382,"1.000","0.894","0.894" +"GO:0051049","regulation of transport",5,1,1.78,317,"0.892","0.898","0.898" +"GO:0060284","regulation of cell development",5,1,1.78,318,"0.892","0.898","0.898" +"GO:0007267","cell-cell signaling",5,0,1.78,383,"1.000","0.898","0.898" +"GO:0051094","positive regulation of developmental pro...",5,0,1.78,384,"1.000","0.898","0.898" +"GO:0051960","regulation of nervous system development",5,0,1.78,385,"1.000","0.898","0.898" +"GO:0061024","membrane organization",5,0,1.78,386,"1.000","0.898","0.898" +"GO:0043604","amide biosynthetic process",8,2,2.85,294,"0.845","0.902","0.902" +"GO:0010256","endomembrane system organization",4,0,1.42,387,"1.000","0.902","0.902" +"GO:0007018","microtubule-based movement",3,0,1.07,388,"1.000","0.907","0.907" +"GO:0009967","positive regulation of signal transducti...",9,1,3.2,365,"0.983","0.916","0.916" +"GO:0010647","positive regulation of cell communicatio...",9,1,3.2,366,"0.983","0.916","0.916" +"GO:0023056","positive regulation of signaling",9,1,3.2,367,"0.983","0.916","0.916" +"GO:0048584","positive regulation of response to stimu...",9,1,3.2,368,"0.983","0.916","0.916" +"GO:0045664","regulation of neuron differentiation",4,0,1.42,389,"1.000","0.918","0.918" +"GO:0050767","regulation of neurogenesis",4,0,1.42,390,"1.000","0.918","0.918" +"GO:0051240","positive regulation of multicellular org...",4,0,1.42,391,"1.000","0.918","0.918" +"GO:0002682","regulation of immune system process",3,1,1.07,199,"0.735","0.920","0.920" +"GO:0045596","negative regulation of cell differentiat...",3,1,1.07,200,"0.735","0.920","0.920" +"GO:0048863","stem cell differentiation",3,1,1.07,201,"0.735","0.920","0.920" +"GO:0051270","regulation of cellular component movemen...",3,1,1.07,202,"0.735","0.920","0.920" +"GO:0045597","positive regulation of cell differentiat...",3,0,1.07,392,"1.000","0.920","0.920" +"GO:0006813","potassium ion transport",4,1,1.42,280,"0.831","0.922","0.922" +"GO:0009894","regulation of catabolic process",4,0,1.42,393,"1.000","0.927","0.927" +"GO:0031344","regulation of cell projection organizati...",3,1,1.07,203,"0.735","0.930","0.930" +"GO:0120035","regulation of plasma membrane bounded ce...",3,1,1.07,204,"0.735","0.930","0.930" +"GO:0007416","synapse assembly",3,0,1.07,394,"1.000","0.938","0.938" +"GO:0022898","regulation of transmembrane transporter ...",3,0,1.07,395,"1.000","0.938","0.938" +"GO:0032409","regulation of transporter activity",3,0,1.07,396,"1.000","0.938","0.938" +"GO:0032412","regulation of ion transmembrane transpor...",3,0,1.07,397,"1.000","0.938","0.938" +"GO:0034762","regulation of transmembrane transport",3,0,1.07,398,"1.000","0.938","0.938" +"GO:0034765","regulation of ion transmembrane transpor...",3,0,1.07,399,"1.000","0.938","0.938" +"GO:0042391","regulation of membrane potential",3,0,1.07,400,"1.000","0.938","0.938" +"GO:0043269","regulation of ion transport",3,0,1.07,401,"1.000","0.938","0.938" +"GO:0050803","regulation of synapse structure or activ...",3,0,1.07,402,"1.000","0.938","0.938" +"GO:0050807","regulation of synapse organization",3,0,1.07,403,"1.000","0.938","0.938" +"GO:0051050","positive regulation of transport",3,0,1.07,404,"1.000","0.938","0.938" +"GO:1904062","regulation of cation transmembrane trans...",3,0,1.07,405,"1.000","0.938","0.938" +"GO:2001257","regulation of cation channel activity",3,0,1.07,406,"1.000","0.938","0.938" +"GO:0007017","microtubule-based process",4,0,1.42,407,"1.000","0.939","0.939" +"GO:0007399","nervous system development",15,3,5.34,350,"0.950","0.944","0.944" +"GO:0051649","establishment of localization in cell",16,3,5.7,360,"0.965","0.946","0.946" +"GO:0016070","RNA metabolic process",30,7,10.68,359,"0.961","0.951","0.951" +"GO:0044255","cellular lipid metabolic process",8,2,2.85,295,"0.845","0.955","0.955" +"GO:0043043","peptide biosynthetic process",7,2,2.49,240,"0.781","0.960","0.960" +"GO:0010467","gene expression",36,9,12.82,351,"0.954","0.961","0.961" +"GO:0090304","nucleic acid metabolic process",36,10,12.82,328,"0.900","0.961","0.961" +"GO:1902533","positive regulation of intracellular sig...",4,1,1.42,281,"0.831","0.963","0.963" +"GO:0015672","monovalent inorganic cation transport",7,2,2.49,241,"0.781","0.972","0.972" +"GO:0051252","regulation of RNA metabolic process",23,5,8.19,358,"0.960","0.974","0.974" +"GO:0051641","cellular localization",21,6,7.48,256,"0.829","0.975","0.975" +"GO:0000375","RNA splicing, via transesterification re...",4,1,1.42,282,"0.831","0.976","0.976" +"GO:0000377","RNA splicing, via transesterification re...",4,1,1.42,283,"0.831","0.976","0.976" +"GO:0000398","mRNA splicing, via spliceosome",4,1,1.42,284,"0.831","0.976","0.976" +"GO:0051260","protein homooligomerization",3,1,1.07,205,"0.735","0.978","0.978" +"GO:0006996","organelle organization",22,8,7.83,82,"0.555","0.978","0.978" +"GO:0006814","sodium ion transport",4,0,1.42,408,"1.000","0.981","0.981" +"GO:0009725","response to hormone",6,0,2.14,409,"1.000","0.982","0.982" +"GO:0044085","cellular component biogenesis",13,3,4.63,330,"0.903","0.984","0.984" +"GO:0051259","protein complex oligomerization",4,1,1.42,285,"0.831","0.984","0.984" +"GO:0006396","RNA processing",5,1,1.78,319,"0.892","0.985","0.985" +"GO:0006397","mRNA processing",5,1,1.78,320,"0.892","0.985","0.985" +"GO:0008380","RNA splicing",5,1,1.78,321,"0.892","0.985","0.985" +"GO:0022607","cellular component assembly",11,3,3.92,253,"0.819","0.986","0.986" +"GO:0051130","positive regulation of cellular componen...",6,2,2.14,134,"0.696","0.987","0.987" +"GO:0009891","positive regulation of biosynthetic proc...",5,1,1.78,322,"0.892","0.988","0.988" +"GO:0010557","positive regulation of macromolecule bio...",5,1,1.78,323,"0.892","0.988","0.988" +"GO:0031328","positive regulation of cellular biosynth...",5,1,1.78,324,"0.892","0.988","0.988" +"GO:0045935","positive regulation of nucleobase-contai...",5,1,1.78,325,"0.892","0.988","0.988" +"GO:0051640","organelle localization",3,1,1.07,206,"0.735","0.990","0.990" +"GO:0043933","protein-containing complex subunit organ...",7,2,2.49,242,"0.781","0.991","0.991" +"GO:0065003","protein-containing complex assembly",7,2,2.49,243,"0.781","0.991","0.991" +"GO:0006281","DNA repair",3,1,1.07,207,"0.735","0.993","0.993" +"GO:0071840","cellular component organization or bioge...",31,10,11.04,139,"0.731","0.993","0.993" +"GO:0016043","cellular component organization",29,10,10.33,108,"0.630","0.993","0.993" +"GO:0009893","positive regulation of metabolic process",10,2,3.56,333,"0.925","0.994","0.994" +"GO:0031325","positive regulation of cellular metaboli...",10,2,3.56,334,"0.925","0.994","0.994" +"GO:0051173","positive regulation of nitrogen compound...",10,2,3.56,335,"0.925","0.994","0.994" +"GO:0048518","positive regulation of biological proces...",22,5,7.83,348,"0.946","0.995","0.995" +"GO:0048522","positive regulation of cellular process",21,5,7.48,336,"0.928","0.996","0.996" +"GO:0010033","response to organic substance",9,1,3.2,369,"0.983","0.996","0.996" +"GO:0010604","positive regulation of macromolecule met...",9,2,3.2,305,"0.892","0.996","0.996" +"GO:0032879","regulation of localization",9,2,3.2,306,"0.892","0.996","0.996" +"GO:0070887","cellular response to chemical stimulus",8,1,2.85,364,"0.973","0.996","0.996" +"GO:0009719","response to endogenous stimulus",7,0,2.49,410,"1.000","0.997","0.997" +"GO:0006650","glycerophospholipid metabolic process",3,1,1.07,208,"0.735","0.997","0.997" +"GO:0046486","glycerolipid metabolic process",3,1,1.07,209,"0.735","0.997","0.997" +"GO:0016071","mRNA metabolic process",6,1,2.14,343,"0.932","0.997","0.997" +"GO:0010564","regulation of cell cycle process",5,1,1.78,326,"0.892","0.998","0.998" +"GO:0014070","response to organic cyclic compound",5,0,1.78,411,"1.000","0.998","0.998" +"GO:0033993","response to lipid",5,0,1.78,412,"1.000","0.998","0.998" +"GO:0071310","cellular response to organic substance",5,0,1.78,413,"1.000","0.998","0.998" +"GO:0071495","cellular response to endogenous stimulus",5,0,1.78,414,"1.000","0.998","0.998" +"GO:0007346","regulation of mitotic cell cycle",4,0,1.42,415,"1.000","0.998","0.998" +"GO:0010628","positive regulation of gene expression",4,0,1.42,416,"1.000","0.998","0.998" +"GO:0032870","cellular response to hormone stimulus",4,0,1.42,417,"1.000","0.998","0.998" +"GO:0045893","positive regulation of transcription, DN...",4,0,1.42,418,"1.000","0.998","0.998" +"GO:0045944","positive regulation of transcription by ...",4,0,1.42,419,"1.000","0.998","0.998" +"GO:0048545","response to steroid hormone",4,0,1.42,420,"1.000","0.998","0.998" +"GO:0051254","positive regulation of RNA metabolic pro...",4,0,1.42,421,"1.000","0.998","0.998" +"GO:1902680","positive regulation of RNA biosynthetic ...",4,0,1.42,422,"1.000","0.998","0.998" +"GO:1903508","positive regulation of nucleic acid-temp...",4,0,1.42,423,"1.000","0.998","0.998" +"GO:0000280","nuclear division",3,0,1.07,424,"1.000","0.999","0.999" +"GO:0009895","negative regulation of catabolic process",3,0,1.07,425,"1.000","0.999","0.999" +"GO:0031329","regulation of cellular catabolic process",3,0,1.07,426,"1.000","0.999","0.999" +"GO:0031330","negative regulation of cellular cataboli...",3,0,1.07,427,"1.000","0.999","0.999" +"GO:0031960","response to corticosteroid",3,0,1.07,428,"1.000","0.999","0.999" +"GO:0048285","organelle fission",3,0,1.07,429,"1.000","0.999","0.999" +"GO:0060341","regulation of cellular localization",3,0,1.07,430,"1.000","0.999","0.999" +"GO:0071383","cellular response to steroid hormone sti...",3,0,1.07,431,"1.000","0.999","0.999" +"GO:0071396","cellular response to lipid",3,0,1.07,432,"1.000","0.999","0.999" +"GO:0071407","cellular response to organic cyclic comp...",3,0,1.07,433,"1.000","0.999","0.999" +"GO:0140014","mitotic nuclear division",3,0,1.07,434,"1.000","0.999","0.999" +"GO:0003008","system process",6,0,2.14,435,"1.000","1.000","1.000" +"GO:0008283","cell proliferation",4,0,1.42,436,"1.000","1.000","1.000" +"GO:0050877","nervous system process",4,0,1.42,437,"1.000","1.000","1.000" +"GO:0001701","in utero embryonic development",3,0,1.07,438,"1.000","1.000","1.000" +"GO:0009791","post-embryonic development",3,0,1.07,439,"1.000","1.000","1.000" +"GO:0009792","embryo development ending in birth or eg...",3,0,1.07,440,"1.000","1.000","1.000" +"GO:0040007","growth",3,0,1.07,441,"1.000","1.000","1.000" +"GO:0043009","chordate embryonic development",3,0,1.07,442,"1.000","1.000","1.000" +"GO:0048589","developmental growth",3,0,1.07,443,"1.000","1.000","1.000" +"GO:0008150","biological_process",205,73,73,444,"1.000","1.000","1.000" diff --git a/GO_enrichment_microbiome_output/contrast_young_phoretic_downregulated.csv b/GO_enrichment_microbiome_output/contrast_young_phoretic_downregulated.csv index a566b5f..7f71339 100644 --- a/GO_enrichment_microbiome_output/contrast_young_phoretic_downregulated.csv +++ b/GO_enrichment_microbiome_output/contrast_young_phoretic_downregulated.csv @@ -4,3 +4,441 @@ "GO:0036211","protein modification process",24,9,8.44,139,"0.482","0.0108","0.0108" "GO:0016310","phosphorylation",16,8,5.63,13,"0.152","0.0235","0.0235" "GO:0044283","small molecule biosynthetic process",6,5,2.11,1,"0.021","0.0302","0.0302" +"GO:0031399","regulation of protein modification proce...",10,5,3.52,35,"0.247","0.0371","0.0371" +"GO:0032268","regulation of cellular protein metabolic...",10,5,3.52,36,"0.247","0.0371","0.0371" +"GO:0006468","protein phosphorylation",15,7,5.27,34,"0.241","0.0430","0.0430" +"GO:0043412","macromolecule modification",26,9,9.14,197,"0.606","0.0460","0.0460" +"GO:0018193","peptidyl-amino acid modification",6,1,2.11,394,"0.929","0.0481","0.0481" +"GO:1901564","organonitrogen compound metabolic proces...",49,19,17.23,74,"0.326","0.0539","0.0539" +"GO:0065008","regulation of biological quality",19,9,6.68,14,"0.177","0.0576","0.0576" +"GO:0050808","synapse organization",5,3,1.76,19,"0.235","0.0800","0.0800" +"GO:0031401","positive regulation of protein modificat...",5,2,1.76,154,"0.577","0.0809","0.0809" +"GO:0032270","positive regulation of cellular protein ...",5,2,1.76,155,"0.577","0.0809","0.0809" +"GO:0051247","positive regulation of protein metabolic...",5,2,1.76,156,"0.577","0.0809","0.0809" +"GO:0019538","protein metabolic process",43,16,15.12,129,"0.441","0.0917","0.0917" +"GO:0050803","regulation of synapse structure or activ...",3,2,1.05,39,"0.283","0.0952","0.0952" +"GO:0050807","regulation of synapse organization",3,2,1.05,40,"0.283","0.0952","0.0952" +"GO:0001932","regulation of protein phosphorylation",8,5,2.81,5,"0.103","0.1001","0.1001" +"GO:0019220","regulation of phosphate metabolic proces...",8,5,2.81,6,"0.103","0.1001","0.1001" +"GO:0042325","regulation of phosphorylation",8,5,2.81,7,"0.103","0.1001","0.1001" +"GO:0051174","regulation of phosphorus metabolic proce...",8,5,2.81,8,"0.103","0.1001","0.1001" +"GO:0017144","drug metabolic process",4,3,1.41,11,"0.126","0.1003","0.1003" +"GO:0051246","regulation of protein metabolic process",11,5,3.87,75,"0.332","0.1013","0.1013" +"GO:0009628","response to abiotic stimulus",3,2,1.05,41,"0.283","0.1020","0.1020" +"GO:0006732","coenzyme metabolic process",3,2,1.05,42,"0.283","0.1034","0.1034" +"GO:0009108","coenzyme biosynthetic process",3,2,1.05,43,"0.283","0.1034","0.1034" +"GO:0051186","cofactor metabolic process",3,2,1.05,44,"0.283","0.1034","0.1034" +"GO:0051188","cofactor biosynthetic process",3,2,1.05,45,"0.283","0.1034","0.1034" +"GO:0032502","developmental process",25,11,8.79,18,"0.219","0.1150","0.1150" +"GO:0009893","positive regulation of metabolic process",11,4,3.87,186,"0.583","0.1187","0.1187" +"GO:0022008","neurogenesis",11,5,3.87,76,"0.332","0.1204","0.1204" +"GO:0030154","cell differentiation",14,6,4.92,90,"0.361","0.1213","0.1213" +"GO:0044267","cellular protein metabolic process",33,11,11.6,207,"0.668","0.1232","0.1232" +"GO:0048878","chemical homeostasis",3,2,1.05,46,"0.283","0.1246","0.1246" +"GO:0055082","cellular chemical homeostasis",3,2,1.05,47,"0.283","0.1246","0.1246" +"GO:0006508","proteolysis",12,7,4.22,3,"0.079","0.1312","0.1312" +"GO:0044281","small molecule metabolic process",14,7,4.92,15,"0.178","0.1323","0.1323" +"GO:0006082","organic acid metabolic process",5,3,1.76,20,"0.235","0.1331","0.1331" +"GO:0019752","carboxylic acid metabolic process",5,3,1.76,21,"0.235","0.1331","0.1331" +"GO:0043436","oxoacid metabolic process",5,3,1.76,22,"0.235","0.1331","0.1331" +"GO:0044237","cellular metabolic process",88,31,30.95,152,"0.555","0.1402","0.1402" +"GO:0048856","anatomical structure development",24,10,8.44,72,"0.309","0.1411","0.1411" +"GO:0007010","cytoskeleton organization",6,3,2.11,79,"0.355","0.1434","0.1434" +"GO:0032990","cell part morphogenesis",6,3,2.11,80,"0.355","0.1434","0.1434" +"GO:0048812","neuron projection morphogenesis",6,3,2.11,81,"0.355","0.1434","0.1434" +"GO:0048858","cell projection morphogenesis",6,3,2.11,82,"0.355","0.1434","0.1434" +"GO:0120039","plasma membrane bounded cell projection ...",6,3,2.11,83,"0.355","0.1434","0.1434" +"GO:0000910","cytokinesis",3,2,1.05,48,"0.283","0.1453","0.1453" +"GO:0006807","nitrogen compound metabolic process",83,29,29.19,188,"0.584","0.1553","0.1553" +"GO:0051239","regulation of multicellular organismal p...",10,5,3.52,37,"0.247","0.1595","0.1595" +"GO:0044260","cellular macromolecule metabolic process",64,19,22.51,391,"0.904","0.1633","0.1633" +"GO:1901615","organic hydroxy compound metabolic proce...",3,2,1.05,49,"0.283","0.1645","0.1645" +"GO:0032269","negative regulation of cellular protein ...",7,3,2.46,130,"0.472","0.1652","0.1652" +"GO:0034220","ion transmembrane transport",7,2,2.46,324,"0.774","0.1652","0.1652" +"GO:0051248","negative regulation of protein metabolic...",7,3,2.46,131,"0.472","0.1652","0.1652" +"GO:0007275","multicellular organism development",23,9,8.09,98,"0.417","0.1723","0.1723" +"GO:0032501","multicellular organismal process",23,9,8.09,99,"0.417","0.1723","0.1723" +"GO:0044238","primary metabolic process",94,32,33.05,217,"0.686","0.1726","0.1726" +"GO:0010604","positive regulation of macromolecule met...",10,3,3.52,314,"0.749","0.1825","0.1825" +"GO:0031325","positive regulation of cellular metaboli...",10,4,3.52,140,"0.492","0.1825","0.1825" +"GO:0044248","cellular catabolic process",12,7,4.22,4,"0.079","0.1914","0.1914" +"GO:1901565","organonitrogen compound catabolic proces...",4,3,1.41,12,"0.126","0.1939","0.1939" +"GO:0007346","regulation of mitotic cell cycle",3,2,1.05,50,"0.283","0.1942","0.1942" +"GO:1904029","regulation of cyclin-dependent protein k...",3,2,1.05,51,"0.283","0.1942","0.1942" +"GO:0019725","cellular homeostasis",6,3,2.11,84,"0.355","0.1956","0.1956" +"GO:0007409","axonogenesis",4,2,1.41,101,"0.440","0.1979","0.1979" +"GO:0015672","monovalent inorganic cation transport",6,4,2.11,9,"0.115","0.2121","0.2121" +"GO:0048869","cellular developmental process",16,7,5.63,73,"0.310","0.2123","0.2123" +"GO:0051726","regulation of cell cycle",6,3,2.11,85,"0.355","0.2156","0.2156" +"GO:0051960","regulation of nervous system development",6,3,2.11,86,"0.355","0.2156","0.2156" +"GO:0043543","protein acylation",3,0,1.05,411,"1.000","0.2176","0.2176" +"GO:0006793","phosphorus metabolic process",23,8,8.09,195,"0.602","0.2217","0.2217" +"GO:0006796","phosphate-containing compound metabolic ...",23,8,8.09,196,"0.602","0.2217","0.2217" +"GO:0010975","regulation of neuron projection developm...",3,1,1.05,243,"0.730","0.2250","0.2250" +"GO:0007399","nervous system development",13,5,4.57,151,"0.506","0.2251","0.2251" +"GO:0006996","organelle organization",18,5,6.33,353,"0.829","0.2282","0.2282" +"GO:0042592","homeostatic process",10,4,3.52,141,"0.492","0.2323","0.2323" +"GO:0008152","metabolic process",115,41,40.44,149,"0.494","0.2334","0.2334" +"GO:0019439","aromatic compound catabolic process",5,3,1.76,23,"0.235","0.2360","0.2360" +"GO:0044270","cellular nitrogen compound catabolic pro...",5,3,1.76,24,"0.235","0.2360","0.2360" +"GO:0046700","heterocycle catabolic process",5,3,1.76,25,"0.235","0.2360","0.2360" +"GO:0071704","organic substance metabolic process",97,33,34.11,240,"0.692","0.2459","0.2459" +"GO:0071103","DNA conformation change",3,1,1.05,244,"0.730","0.2561","0.2561" +"GO:1901362","organic cyclic compound biosynthetic pro...",34,12,11.96,153,"0.567","0.2595","0.2595" +"GO:0030182","neuron differentiation",10,4,3.52,142,"0.492","0.2618","0.2618" +"GO:0048699","generation of neurons",10,4,3.52,143,"0.492","0.2618","0.2618" +"GO:0031400","negative regulation of protein modificat...",6,2,2.11,218,"0.688","0.2635","0.2635" +"GO:0030030","cell projection organization",9,3,3.16,211,"0.672","0.2679","0.2679" +"GO:0120036","plasma membrane bounded cell projection ...",9,3,3.16,212,"0.672","0.2679","0.2679" +"GO:0032535","regulation of cellular component size",4,2,1.41,102,"0.440","0.2682","0.2682" +"GO:0090066","regulation of anatomical structure size",4,2,1.41,103,"0.440","0.2682","0.2682" +"GO:0006259","DNA metabolic process",5,1,1.76,378,"0.889","0.2694","0.2694" +"GO:0006352","DNA-templated transcription, initiation",3,2,1.05,52,"0.283","0.2727","0.2727" +"GO:0051173","positive regulation of nitrogen compound...",9,3,3.16,213,"0.672","0.2745","0.2745" +"GO:1901566","organonitrogen compound biosynthetic pro...",10,4,3.52,144,"0.492","0.2806","0.2806" +"GO:0044249","cellular biosynthetic process",44,15,15.47,199,"0.635","0.2840","0.2840" +"GO:1901576","organic substance biosynthetic process",44,15,15.47,200,"0.635","0.2840","0.2840" +"GO:1901360","organic cyclic compound metabolic proces...",47,17,16.53,150,"0.500","0.2878","0.2878" +"GO:0006950","response to stress",10,4,3.52,145,"0.492","0.2936","0.2936" +"GO:0000902","cell morphogenesis",8,3,2.81,181,"0.579","0.2936","0.2936" +"GO:0031175","neuron projection development",8,3,2.81,182,"0.579","0.2936","0.2936" +"GO:0048666","neuron development",8,3,2.81,183,"0.579","0.2936","0.2936" +"GO:0006325","chromatin organization",5,2,1.76,157,"0.577","0.2940","0.2940" +"GO:0048667","cell morphogenesis involved in neuron di...",5,2,1.76,158,"0.577","0.2940","0.2940" +"GO:0061564","axon development",5,2,1.76,159,"0.577","0.2940","0.2940" +"GO:0009056","catabolic process",13,7,4.57,10,"0.124","0.2950","0.2950" +"GO:0055114","oxidation-reduction process",6,3,2.11,87,"0.355","0.2961","0.2961" +"GO:0048731","system development",20,6,7.03,323,"0.774","0.2998","0.2998" +"GO:0032259","methylation",3,2,1.05,53,"0.283","0.3077","0.3077" +"GO:0050790","regulation of catalytic activity",8,3,2.81,184,"0.579","0.3122","0.3122" +"GO:0051276","chromosome organization",8,2,2.81,358,"0.839","0.3122","0.3122" +"GO:0065009","regulation of molecular function",8,3,2.81,185,"0.579","0.3122","0.3122" +"GO:0006629","lipid metabolic process",9,4,3.16,92,"0.394","0.3160","0.3160" +"GO:0000278","mitotic cell cycle",7,3,2.46,132,"0.472","0.3188","0.3188" +"GO:0006820","anion transport",7,2,2.46,325,"0.774","0.3188","0.3188" +"GO:0008610","lipid biosynthetic process",6,3,2.11,88,"0.355","0.3220","0.3220" +"GO:0033036","macromolecule localization",15,5,5.27,202,"0.661","0.3224","0.3224" +"GO:0009987","cellular process",132,49,46.42,32,"0.236","0.2549","0.3236" +"GO:0006469","negative regulation of protein kinase ac...",4,2,1.41,104,"0.440","0.3246","0.3246" +"GO:0022603","regulation of anatomical structure morph...",4,2,1.41,105,"0.440","0.3246","0.3246" +"GO:0033673","negative regulation of kinase activity",4,2,1.41,106,"0.440","0.3246","0.3246" +"GO:0043549","regulation of kinase activity",4,2,1.41,107,"0.440","0.3246","0.3246" +"GO:0045859","regulation of protein kinase activity",4,2,1.41,108,"0.440","0.3246","0.3246" +"GO:0051338","regulation of transferase activity",4,2,1.41,109,"0.440","0.3246","0.3246" +"GO:0051348","negative regulation of transferase activ...",4,2,1.41,110,"0.440","0.3246","0.3246" +"GO:0009653","anatomical structure morphogenesis",14,4,4.92,331,"0.794","0.3257","0.3257" +"GO:0048598","embryonic morphogenesis",3,0,1.05,412,"1.000","0.3261","0.3261" +"GO:0048729","tissue morphogenesis",3,0,1.05,413,"1.000","0.3261","0.3261" +"GO:0018130","heterocycle biosynthetic process",33,11,11.6,208,"0.668","0.3303","0.3303" +"GO:0019438","aromatic compound biosynthetic process",33,11,11.6,209,"0.668","0.3303","0.3303" +"GO:0051649","establishment of localization in cell",12,5,4.22,100,"0.420","0.3327","0.3327" +"GO:0006366","transcription by RNA polymerase II",9,2,3.16,374,"0.887","0.3381","0.3381" +"GO:0055086","nucleobase-containing small molecule met...",4,2,1.41,111,"0.440","0.3466","0.3466" +"GO:0051641","cellular localization",20,7,7.03,193,"0.597","0.3505","0.3505" +"GO:0006725","cellular aromatic compound metabolic pro...",46,16,16.18,190,"0.592","0.3549","0.3549" +"GO:0046483","heterocycle metabolic process",46,16,16.18,191,"0.592","0.3549","0.3549" +"GO:0044271","cellular nitrogen compound biosynthetic ...",38,12,13.36,316,"0.760","0.3613","0.3613" +"GO:0051704","multi-organism process",7,3,2.46,133,"0.472","0.3632","0.3632" +"GO:2000026","regulation of multicellular organismal d...",8,4,2.81,68,"0.294","0.3636","0.3636" +"GO:0015711","organic anion transport",4,1,1.41,338,"0.826","0.3637","0.3637" +"GO:0098656","anion transmembrane transport",4,2,1.41,112,"0.440","0.3637","0.3637" +"GO:0048518","positive regulation of biological proces...",22,7,7.74,241,"0.717","0.3678","0.3678" +"GO:0043170","macromolecule metabolic process",79,25,27.78,365,"0.848","0.3683","0.3683" +"GO:0022607","cellular component assembly",9,4,3.16,93,"0.394","0.3706","0.3706" +"GO:0032989","cellular component morphogenesis",9,3,3.16,214,"0.672","0.3706","0.3706" +"GO:0044085","cellular component biogenesis",9,4,3.16,94,"0.394","0.3706","0.3706" +"GO:0007276","gamete generation",4,2,1.41,113,"0.440","0.3753","0.3753" +"GO:0019953","sexual reproduction",4,2,1.41,114,"0.440","0.3753","0.3753" +"GO:0022412","cellular process involved in reproductio...",4,2,1.41,115,"0.440","0.3753","0.3753" +"GO:0022414","reproductive process",4,2,1.41,116,"0.440","0.3753","0.3753" +"GO:0032504","multicellular organism reproduction",4,2,1.41,117,"0.440","0.3753","0.3753" +"GO:0044703","multi-organism reproductive process",4,2,1.41,118,"0.440","0.3753","0.3753" +"GO:0048609","multicellular organismal reproductive pr...",4,2,1.41,119,"0.440","0.3753","0.3753" +"GO:0098609","cell-cell adhesion",4,2,1.41,120,"0.440","0.3753","0.3753" +"GO:0048513","animal organ development",13,2,4.57,410,"0.975","0.3764","0.3764" +"GO:0006812","cation transport",7,4,2.46,16,"0.198","0.3787","0.3787" +"GO:0030001","metal ion transport",7,4,2.46,17,"0.198","0.3787","0.3787" +"GO:0000904","cell morphogenesis involved in different...",6,2,2.11,219,"0.688","0.3822","0.3822" +"GO:0006913","nucleocytoplasmic transport",5,3,1.76,26,"0.235","0.3883","0.3883" +"GO:0051169","nuclear transport",5,3,1.76,27,"0.235","0.3883","0.3883" +"GO:1901361","organic cyclic compound catabolic proces...",6,3,2.11,89,"0.355","0.3920","0.3920" +"GO:0010605","negative regulation of macromolecule met...",11,4,3.87,187,"0.583","0.3927","0.3927" +"GO:0016192","vesicle-mediated transport",8,4,2.81,69,"0.294","0.3929","0.3929" +"GO:0030029","actin filament-based process",5,2,1.76,160,"0.577","0.3937","0.3937" +"GO:0030036","actin cytoskeleton organization",5,2,1.76,161,"0.577","0.3937","0.3937" +"GO:0051235","maintenance of location",4,2,1.41,121,"0.440","0.3990","0.3990" +"GO:0000003","reproduction",5,3,1.76,28,"0.235","0.4018","0.4018" +"GO:0009057","macromolecule catabolic process",5,3,1.76,29,"0.235","0.4018","0.4018" +"GO:0044265","cellular macromolecule catabolic process",5,3,1.76,30,"0.235","0.4018","0.4018" +"GO:0009059","macromolecule biosynthetic process",35,10,12.31,369,"0.866","0.4045","0.4045" +"GO:0034645","cellular macromolecule biosynthetic proc...",35,10,12.31,370,"0.866","0.4045","0.4045" +"GO:0006974","cellular response to DNA damage stimulus",3,1,1.05,245,"0.730","0.4056","0.4056" +"GO:0044087","regulation of cellular component biogene...",5,2,1.76,162,"0.577","0.4072","0.4072" +"GO:0051301","cell division",5,2,1.76,163,"0.577","0.4072","0.4072" +"GO:0001933","negative regulation of protein phosphory...",5,2,1.76,164,"0.577","0.4099","0.4099" +"GO:0006457","protein folding",5,2,1.76,165,"0.577","0.4099","0.4099" +"GO:0010563","negative regulation of phosphorus metabo...",5,2,1.76,166,"0.577","0.4099","0.4099" +"GO:0042326","negative regulation of phosphorylation",5,2,1.76,167,"0.577","0.4099","0.4099" +"GO:0045664","regulation of neuron differentiation",5,2,1.76,168,"0.577","0.4099","0.4099" +"GO:0045936","negative regulation of phosphate metabol...",5,2,1.76,169,"0.577","0.4099","0.4099" +"GO:0050767","regulation of neurogenesis",5,2,1.76,170,"0.577","0.4099","0.4099" +"GO:0034654","nucleobase-containing compound biosynthe...",32,10,11.25,317,"0.760","0.4124","0.4124" +"GO:0048468","cell development",12,4,4.22,205,"0.664","0.4151","0.4151" +"GO:0071705","nitrogen compound transport",12,4,4.22,206,"0.664","0.4151","0.4151" +"GO:0090407","organophosphate biosynthetic process",3,1,1.05,246,"0.730","0.4161","0.4161" +"GO:0034641","cellular nitrogen compound metabolic pro...",50,17,17.58,201,"0.644","0.4178","0.4178" +"GO:0043086","negative regulation of catalytic activit...",6,2,2.11,220,"0.688","0.4218","0.4218" +"GO:0044092","negative regulation of molecular functio...",6,2,2.11,221,"0.688","0.4218","0.4218" +"GO:0046907","intracellular transport",11,5,3.87,77,"0.332","0.4225","0.4225" +"GO:0009790","embryo development",6,1,2.11,395,"0.929","0.4269","0.4269" +"GO:0007155","cell adhesion",7,2,2.46,326,"0.774","0.4270","0.4270" +"GO:0022610","biological adhesion",7,2,2.46,327,"0.774","0.4270","0.4270" +"GO:0071702","organic substance transport",15,5,5.27,203,"0.661","0.4277","0.4277" +"GO:0048522","positive regulation of cellular process",20,7,7.03,194,"0.597","0.4312","0.4312" +"GO:0016567","protein ubiquitination",4,2,1.41,122,"0.440","0.4357","0.4357" +"GO:0032446","protein modification by small protein co...",4,2,1.41,123,"0.440","0.4357","0.4357" +"GO:0070647","protein modification by small protein co...",4,2,1.41,124,"0.440","0.4357","0.4357" +"GO:0006357","regulation of transcription by RNA polym...",8,2,2.81,359,"0.839","0.4366","0.4366" +"GO:1901575","organic substance catabolic process",10,5,3.52,38,"0.247","0.4369","0.4369" +"GO:0006511","ubiquitin-dependent protein catabolic pr...",3,2,1.05,54,"0.283","0.4447","0.4447" +"GO:0009894","regulation of catabolic process",3,2,1.05,55,"0.283","0.4447","0.4447" +"GO:0019941","modification-dependent protein catabolic...",3,2,1.05,56,"0.283","0.4447","0.4447" +"GO:0030163","protein catabolic process",3,2,1.05,57,"0.283","0.4447","0.4447" +"GO:0031329","regulation of cellular catabolic process",3,2,1.05,58,"0.283","0.4447","0.4447" +"GO:0034404","nucleobase-containing small molecule bio...",3,2,1.05,59,"0.283","0.4447","0.4447" +"GO:0043632","modification-dependent macromolecule cat...",3,2,1.05,60,"0.283","0.4447","0.4447" +"GO:0044257","cellular protein catabolic process",3,2,1.05,61,"0.283","0.4447","0.4447" +"GO:0051603","proteolysis involved in cellular protein...",3,2,1.05,62,"0.283","0.4447","0.4447" +"GO:1901137","carbohydrate derivative biosynthetic pro...",3,2,1.05,63,"0.283","0.4447","0.4447" +"GO:0031344","regulation of cell projection organizati...",4,1,1.41,339,"0.826","0.4483","0.4483" +"GO:0051129","negative regulation of cellular componen...",4,1,1.41,340,"0.826","0.4483","0.4483" +"GO:0120035","regulation of plasma membrane bounded ce...",4,1,1.41,341,"0.826","0.4483","0.4483" +"GO:0048523","negative regulation of cellular process",17,6,5.98,192,"0.592","0.4492","0.4492" +"GO:0006915","apoptotic process",3,2,1.05,64,"0.283","0.4593","0.4593" +"GO:0008219","cell death",3,2,1.05,65,"0.283","0.4593","0.4593" +"GO:0012501","programmed cell death",3,2,1.05,66,"0.283","0.4593","0.4593" +"GO:0044255","cellular lipid metabolic process",7,3,2.46,134,"0.472","0.4605","0.4605" +"GO:0050793","regulation of developmental process",9,4,3.16,95,"0.394","0.4615","0.4615" +"GO:0006351","transcription, DNA-templated",29,9,10.2,320,"0.762","0.4625","0.4625" +"GO:0032774","RNA biosynthetic process",29,9,10.2,321,"0.762","0.4625","0.4625" +"GO:0097659","nucleic acid-templated transcription",29,9,10.2,322,"0.762","0.4625","0.4625" +"GO:0009892","negative regulation of metabolic process",13,4,4.57,313,"0.735","0.4673","0.4673" +"GO:0003333","amino acid transmembrane transport",3,1,1.05,247,"0.730","0.4703","0.4703" +"GO:0006865","amino acid transport",3,1,1.05,248,"0.730","0.4703","0.4703" +"GO:0015849","organic acid transport",3,1,1.05,249,"0.730","0.4703","0.4703" +"GO:0046942","carboxylic acid transport",3,1,1.05,250,"0.730","0.4703","0.4703" +"GO:0098655","cation transmembrane transport",3,1,1.05,251,"0.730","0.4703","0.4703" +"GO:1903825","organic acid transmembrane transport",3,1,1.05,252,"0.730","0.4703","0.4703" +"GO:1905039","carboxylic acid transmembrane transport",3,1,1.05,253,"0.730","0.4703","0.4703" +"GO:0042493","response to drug",3,0,1.05,414,"1.000","0.4703","0.4703" +"GO:0007186","G protein-coupled receptor signaling pat...",8,4,2.81,70,"0.294","0.4775","0.4775" +"GO:0008104","protein localization",12,3,4.22,368,"0.860","0.4783","0.4783" +"GO:0035239","tube morphogenesis",4,2,1.41,125,"0.440","0.4932","0.4932" +"GO:0035295","tube development",4,2,1.41,126,"0.440","0.4932","0.4932" +"GO:0006811","ion transport",15,5,5.27,204,"0.661","0.4939","0.4939" +"GO:0009058","biosynthetic process",46,15,16.18,242,"0.723","0.4958","0.4958" +"GO:0034622","cellular protein-containing complex asse...",6,2,2.11,222,"0.688","0.5056","0.5056" +"GO:0048519","negative regulation of biological proces...",20,8,7.03,97,"0.401","0.5093","0.5093" +"GO:0006139","nucleobase-containing compound metabolic...",44,14,15.47,319,"0.761","0.5122","0.5122" +"GO:0051128","regulation of cellular component organiz...",11,3,3.87,334,"0.811","0.5151","0.5151" +"GO:1903047","mitotic cell cycle process",6,2,2.11,223,"0.688","0.5218","0.5218" +"GO:0016043","cellular component organization",28,7,9.85,392,"0.928","0.5234","0.5234" +"GO:0071840","cellular component organization or bioge...",28,7,9.85,393,"0.928","0.5234","0.5234" +"GO:0015698","inorganic anion transport",3,1,1.05,254,"0.730","0.5305","0.5305" +"GO:0051172","negative regulation of nitrogen compound...",10,3,3.52,315,"0.749","0.5326","0.5326" +"GO:0007166","cell surface receptor signaling pathway",6,2,2.11,224,"0.688","0.5382","0.5382" +"GO:0034655","nucleobase-containing compound catabolic...",4,2,1.41,127,"0.440","0.5394","0.5394" +"GO:0006520","cellular amino acid metabolic process",3,1,1.05,255,"0.730","0.5420","0.5420" +"GO:0019222","regulation of metabolic process",33,11,11.6,210,"0.668","0.5439","0.5439" +"GO:0006518","peptide metabolic process",6,2,2.11,225,"0.688","0.5491","0.5491" +"GO:0043603","cellular amide metabolic process",6,2,2.11,226,"0.688","0.5491","0.5491" +"GO:0010769","regulation of cell morphogenesis involve...",3,1,1.05,256,"0.730","0.5497","0.5497" +"GO:0022604","regulation of cell morphogenesis",3,1,1.05,257,"0.730","0.5497","0.5497" +"GO:0051336","regulation of hydrolase activity",3,1,1.05,258,"0.730","0.5497","0.5497" +"GO:0044093","positive regulation of molecular functio...",3,0,1.05,415,"1.000","0.5497","0.5497" +"GO:0033554","cellular response to stress",5,2,1.76,171,"0.577","0.5513","0.5513" +"GO:0007610","behavior",4,1,1.41,342,"0.826","0.5661","0.5661" +"GO:0016070","RNA metabolic process",36,11,12.66,333,"0.799","0.5756","0.5756" +"GO:0007165","signal transduction",28,12,9.85,33,"0.236","0.5804","0.5804" +"GO:0005975","carbohydrate metabolic process",7,2,2.46,328,"0.774","0.5836","0.5836" +"GO:0043933","protein-containing complex subunit organ...",7,3,2.46,135,"0.472","0.5836","0.5836" +"GO:0065003","protein-containing complex assembly",7,3,2.46,136,"0.472","0.5836","0.5836" +"GO:0009966","regulation of signal transduction",9,4,3.16,96,"0.394","0.5841","0.5841" +"GO:0099173","postsynapse organization",3,1,1.05,259,"0.730","0.6039","0.6039" +"GO:0008283","cell proliferation",6,1,2.11,396,"0.929","0.6043","0.6043" +"GO:0071310","cellular response to organic substance",6,2,2.11,227,"0.688","0.6043","0.6043" +"GO:0006412","translation",5,1,1.76,379,"0.889","0.6085","0.6085" +"GO:0043043","peptide biosynthetic process",5,1,1.76,380,"0.889","0.6085","0.6085" +"GO:0043604","amide biosynthetic process",5,1,1.76,381,"0.889","0.6085","0.6085" +"GO:0006955","immune response",4,1,1.41,343,"0.826","0.6132","0.6132" +"GO:0051241","negative regulation of multicellular org...",4,1,1.41,344,"0.826","0.6132","0.6132" +"GO:1901700","response to oxygen-containing compound",4,1,1.41,345,"0.826","0.6132","0.6132" +"GO:0009887","animal organ morphogenesis",4,0,1.41,416,"1.000","0.6132","0.6132" +"GO:0001654","eye development",3,1,1.05,260,"0.730","0.6233","0.6233" +"GO:0003006","developmental process involved in reprod...",3,1,1.05,261,"0.730","0.6233","0.6233" +"GO:0006897","endocytosis",3,1,1.05,262,"0.730","0.6233","0.6233" +"GO:0007281","germ cell development",3,1,1.05,263,"0.730","0.6233","0.6233" +"GO:0007283","spermatogenesis",3,1,1.05,264,"0.730","0.6233","0.6233" +"GO:0007623","circadian rhythm",3,1,1.05,265,"0.730","0.6233","0.6233" +"GO:0009611","response to wounding",3,1,1.05,266,"0.730","0.6233","0.6233" +"GO:0043010","camera-type eye development",3,1,1.05,267,"0.730","0.6233","0.6233" +"GO:0043393","regulation of protein binding",3,1,1.05,268,"0.730","0.6233","0.6233" +"GO:0048232","male gamete generation",3,1,1.05,269,"0.730","0.6233","0.6233" +"GO:0048511","rhythmic process",3,1,1.05,270,"0.730","0.6233","0.6233" +"GO:0048880","sensory system development",3,1,1.05,271,"0.730","0.6233","0.6233" +"GO:0051098","regulation of binding",3,1,1.05,272,"0.730","0.6233","0.6233" +"GO:0060041","retina development in camera-type eye",3,1,1.05,273,"0.730","0.6233","0.6233" +"GO:0098657","import into cell",3,1,1.05,274,"0.730","0.6233","0.6233" +"GO:0150063","visual system development",3,1,1.05,275,"0.730","0.6233","0.6233" +"GO:0006753","nucleoside phosphate metabolic process",3,1,1.05,276,"0.730","0.6271","0.6271" +"GO:0009117","nucleotide metabolic process",3,1,1.05,277,"0.730","0.6271","0.6271" +"GO:0061024","membrane organization",3,1,1.05,278,"0.730","0.6388","0.6388" +"GO:0045944","positive regulation of transcription by ...",4,2,1.41,128,"0.440","0.6402","0.6402" +"GO:0060255","regulation of macromolecule metabolic pr...",32,10,11.25,318,"0.760","0.6420","0.6420" +"GO:0045454","cell redox homeostasis",3,1,1.05,279,"0.730","0.6503","0.6503" +"GO:0090304","nucleic acid metabolic process",40,12,14.07,356,"0.832","0.6522","0.6522" +"GO:0007417","central nervous system development",6,2,2.11,228,"0.688","0.6540","0.6540" +"GO:0007420","brain development",6,2,2.11,229,"0.688","0.6540","0.6540" +"GO:0045595","regulation of cell differentiation",6,2,2.11,230,"0.688","0.6540","0.6540" +"GO:0060284","regulation of cell development",6,2,2.11,231,"0.688","0.6540","0.6540" +"GO:0060322","head development",6,2,2.11,232,"0.688","0.6540","0.6540" +"GO:0023052","signaling",29,12,10.2,67,"0.287","0.6635","0.6635" +"GO:0010033","response to organic substance",9,3,3.16,215,"0.672","0.6682","0.6682" +"GO:0065007","biological regulation",72,26,25.32,137,"0.476","0.6732","0.6732" +"GO:0034660","ncRNA metabolic process",3,0,1.05,417,"1.000","0.6773","0.6773" +"GO:0010646","regulation of cell communication",10,4,3.52,146,"0.492","0.6793","0.6793" +"GO:0023051","regulation of signaling",10,4,3.52,147,"0.492","0.6793","0.6793" +"GO:0048583","regulation of response to stimulus",10,4,3.52,148,"0.492","0.6793","0.6793" +"GO:0034613","cellular protein localization",9,2,3.16,375,"0.887","0.6795","0.6795" +"GO:0045184","establishment of protein localization",9,2,3.16,376,"0.887","0.6795","0.6795" +"GO:0070727","cellular macromolecule localization",9,2,3.16,377,"0.887","0.6795","0.6795" +"GO:0044262","cellular carbohydrate metabolic process",3,1,1.05,280,"0.730","0.6811","0.6811" +"GO:0051130","positive regulation of cellular componen...",5,1,1.76,382,"0.889","0.6837","0.6837" +"GO:0010467","gene expression",42,12,14.77,373,"0.887","0.6872","0.6872" +"GO:0007049","cell cycle",11,3,3.87,335,"0.811","0.6961","0.6961" +"GO:0015031","protein transport",8,2,2.81,360,"0.839","0.7013","0.7013" +"GO:0015833","peptide transport",8,2,2.81,361,"0.839","0.7013","0.7013" +"GO:0022402","cell cycle process",8,2,2.81,362,"0.839","0.7013","0.7013" +"GO:0042886","amide transport",8,2,2.81,363,"0.839","0.7013","0.7013" +"GO:0009967","positive regulation of signal transducti...",6,2,2.11,233,"0.688","0.7031","0.7031" +"GO:0010647","positive regulation of cell communicatio...",6,2,2.11,234,"0.688","0.7031","0.7031" +"GO:0023056","positive regulation of signaling",6,2,2.11,235,"0.688","0.7031","0.7031" +"GO:0048584","positive regulation of response to stimu...",6,2,2.11,236,"0.688","0.7031","0.7031" +"GO:0051171","regulation of nitrogen compound metaboli...",29,8,10.2,371,"0.875","0.7046","0.7046" +"GO:0080090","regulation of primary metabolic process",29,8,10.2,372,"0.875","0.7046","0.7046" +"GO:0007015","actin filament organization",3,1,1.05,281,"0.730","0.7151","0.7151" +"GO:0008064","regulation of actin polymerization or de...",3,1,1.05,282,"0.730","0.7151","0.7151" +"GO:0008154","actin polymerization or depolymerization",3,1,1.05,283,"0.730","0.7151","0.7151" +"GO:0010638","positive regulation of organelle organiz...",3,1,1.05,284,"0.730","0.7151","0.7151" +"GO:0030041","actin filament polymerization",3,1,1.05,285,"0.730","0.7151","0.7151" +"GO:0030832","regulation of actin filament length",3,1,1.05,286,"0.730","0.7151","0.7151" +"GO:0030833","regulation of actin filament polymerizat...",3,1,1.05,287,"0.730","0.7151","0.7151" +"GO:0032271","regulation of protein polymerization",3,1,1.05,288,"0.730","0.7151","0.7151" +"GO:0032956","regulation of actin cytoskeleton organiz...",3,1,1.05,289,"0.730","0.7151","0.7151" +"GO:0032970","regulation of actin filament-based proce...",3,1,1.05,290,"0.730","0.7151","0.7151" +"GO:0043254","regulation of protein complex assembly",3,1,1.05,291,"0.730","0.7151","0.7151" +"GO:0051258","protein polymerization",3,1,1.05,292,"0.730","0.7151","0.7151" +"GO:0051493","regulation of cytoskeleton organization",3,1,1.05,293,"0.730","0.7151","0.7151" +"GO:0110053","regulation of actin filament organizatio...",3,1,1.05,294,"0.730","0.7151","0.7151" +"GO:1902903","regulation of supramolecular fiber organ...",3,1,1.05,295,"0.730","0.7151","0.7151" +"GO:0009719","response to endogenous stimulus",4,1,1.41,346,"0.826","0.7196","0.7196" +"GO:0010564","regulation of cell cycle process",3,1,1.05,296,"0.730","0.7263","0.7263" +"GO:0051093","negative regulation of developmental pro...",3,1,1.05,297,"0.730","0.7263","0.7263" +"GO:0051716","cellular response to stimulus",36,14,12.66,91,"0.368","0.7323","0.7323" +"GO:0001775","cell activation",4,1,1.41,347,"0.826","0.7326","0.7326" +"GO:0033043","regulation of organelle organization",4,1,1.41,348,"0.826","0.7390","0.7390" +"GO:0097435","supramolecular fiber organization",4,1,1.41,349,"0.826","0.7390","0.7390" +"GO:0031323","regulation of cellular metabolic process",31,9,10.9,357,"0.839","0.7402","0.7402" +"GO:0007154","cell communication",30,12,10.55,78,"0.341","0.7419","0.7419" +"GO:0051240","positive regulation of multicellular org...",5,2,1.76,172,"0.577","0.7478","0.7478" +"GO:0003008","system process",5,0,1.76,418,"1.000","0.7478","0.7478" +"GO:0050877","nervous system process",5,0,1.76,419,"1.000","0.7478","0.7478" +"GO:1902531","regulation of intracellular signal trans...",4,1,1.41,350,"0.826","0.7517","0.7517" +"GO:1902533","positive regulation of intracellular sig...",4,1,1.41,351,"0.826","0.7517","0.7517" +"GO:0009891","positive regulation of biosynthetic proc...",6,2,2.11,237,"0.688","0.7559","0.7559" +"GO:0010628","positive regulation of gene expression",6,2,2.11,238,"0.688","0.7559","0.7559" +"GO:0031324","negative regulation of cellular metaboli...",11,3,3.87,336,"0.811","0.7576","0.7576" +"GO:0002376","immune system process",7,1,2.46,404,"0.955","0.7598","0.7598" +"GO:0043009","chordate embryonic development",3,0,1.05,420,"1.000","0.7629","0.7629" +"GO:0040011","locomotion",6,2,2.11,239,"0.688","0.7661","0.7661" +"GO:0009888","tissue development",6,0,2.11,421,"1.000","0.7661","0.7661" +"GO:1901135","carbohydrate derivative metabolic proces...",5,2,1.76,173,"0.577","0.7675","0.7675" +"GO:0009792","embryo development ending in birth or eg...",4,0,1.41,422,"1.000","0.7704","0.7704" +"GO:0050896","response to stimulus",43,15,15.12,189,"0.586","0.7806","0.7806" +"GO:0007423","sensory organ development",5,1,1.76,383,"0.889","0.8055","0.8055" +"GO:0031929","TOR signaling",3,0,1.05,423,"1.000","0.8082","0.8082" +"GO:0048646","anatomical structure formation involved ...",7,2,2.46,329,"0.774","0.8084","0.8084" +"GO:0070887","cellular response to chemical stimulus",7,2,2.46,330,"0.774","0.8084","0.8084" +"GO:0006886","intracellular protein transport",5,1,1.76,384,"0.889","0.8107","0.8107" +"GO:0007267","cell-cell signaling",3,1,1.05,298,"0.730","0.8216","0.8216" +"GO:0051049","regulation of transport",3,0,1.05,424,"1.000","0.8378","0.8378" +"GO:0071495","cellular response to endogenous stimulus",3,1,1.05,299,"0.730","0.8410","0.8410" +"GO:1901701","cellular response to oxygen-containing c...",3,1,1.05,300,"0.730","0.8410","0.8410" +"GO:0031503","protein-containing complex localization",4,0,1.41,425,"1.000","0.8463","0.8463" +"GO:0032940","secretion by cell",3,1,1.05,301,"0.730","0.8534","0.8534" +"GO:0046903","secretion",3,1,1.05,302,"0.730","0.8534","0.8534" +"GO:0072359","circulatory system development",3,1,1.05,303,"0.730","0.8534","0.8534" +"GO:0010035","response to inorganic substance",3,0,1.05,426,"1.000","0.8534","0.8534" +"GO:0010468","regulation of gene expression",25,7,8.79,366,"0.850","0.8623","0.8623" +"GO:0042221","response to chemical",11,3,3.87,337,"0.811","0.8643","0.8643" +"GO:0006928","movement of cell or subcellular componen...",8,4,2.81,71,"0.294","0.1346","0.8656" +"GO:0055085","transmembrane transport",18,5,6.33,354,"0.829","0.8743","0.8743" +"GO:0016477","cell migration",5,1,1.76,385,"0.889","0.8766","0.8766" +"GO:0048870","cell motility",5,1,1.76,386,"0.889","0.8766","0.8766" +"GO:0051674","localization of cell",5,1,1.76,387,"0.889","0.8766","0.8766" +"GO:0006403","RNA localization",3,1,1.05,304,"0.730","0.8829","0.8829" +"GO:0006405","RNA export from nucleus",3,1,1.05,305,"0.730","0.8829","0.8829" +"GO:0015931","nucleobase-containing compound transport",3,1,1.05,306,"0.730","0.8829","0.8829" +"GO:0050657","nucleic acid transport",3,1,1.05,307,"0.730","0.8829","0.8829" +"GO:0050658","RNA transport",3,1,1.05,308,"0.730","0.8829","0.8829" +"GO:0051168","nuclear export",3,1,1.05,309,"0.730","0.8829","0.8829" +"GO:0051236","establishment of RNA localization",3,1,1.05,310,"0.730","0.8829","0.8829" +"GO:0050789","regulation of biological process",68,23,23.91,216,"0.674","0.8862","0.8862" +"GO:0000122","negative regulation of transcription by ...",3,0,1.05,427,"1.000","0.8885","0.8885" +"GO:0051094","positive regulation of developmental pro...",4,1,1.41,352,"0.826","0.8921","0.8921" +"GO:0010629","negative regulation of gene expression",5,1,1.76,388,"0.889","0.8982","0.8982" +"GO:0010557","positive regulation of macromolecule bio...",5,2,1.76,174,"0.577","0.9063","0.9063" +"GO:0031328","positive regulation of cellular biosynth...",5,2,1.76,175,"0.577","0.9063","0.9063" +"GO:0045893","positive regulation of transcription, DN...",5,2,1.76,176,"0.577","0.9063","0.9063" +"GO:0045935","positive regulation of nucleobase-contai...",5,2,1.76,177,"0.577","0.9063","0.9063" +"GO:0051254","positive regulation of RNA metabolic pro...",5,2,1.76,178,"0.577","0.9063","0.9063" +"GO:1902680","positive regulation of RNA biosynthetic ...",5,2,1.76,179,"0.577","0.9063","0.9063" +"GO:1903508","positive regulation of nucleic acid-temp...",5,2,1.76,180,"0.577","0.9063","0.9063" +"GO:0006355","regulation of transcription, DNA-templat...",22,5,7.74,397,"0.943","0.9176","0.9176" +"GO:0009889","regulation of biosynthetic process",22,5,7.74,398,"0.943","0.9176","0.9176" +"GO:0010556","regulation of macromolecule biosynthetic...",22,5,7.74,399,"0.943","0.9176","0.9176" +"GO:0031326","regulation of cellular biosynthetic proc...",22,5,7.74,400,"0.943","0.9176","0.9176" +"GO:1903506","regulation of nucleic acid-templated tra...",22,5,7.74,401,"0.943","0.9176","0.9176" +"GO:2000112","regulation of cellular macromolecule bio...",22,5,7.74,402,"0.943","0.9176","0.9176" +"GO:2001141","regulation of RNA biosynthetic process",22,5,7.74,403,"0.943","0.9176","0.9176" +"GO:0009605","response to external stimulus",8,2,2.81,364,"0.839","0.9211","0.9211" +"GO:0050794","regulation of cellular process",64,22,22.51,198,"0.626","0.9247","0.9247" +"GO:0006397","mRNA processing",3,1,1.05,311,"0.730","0.9312","0.9312" +"GO:0016071","mRNA metabolic process",3,1,1.05,312,"0.730","0.9312","0.9312" +"GO:0032879","regulation of localization",7,1,2.46,405,"0.955","0.9387","0.9387" +"GO:0051179","localization",47,14,16.53,367,"0.859","0.9406","0.9406" +"GO:0051234","establishment of localization",43,13,15.12,355,"0.831","0.9471","0.9471" +"GO:0019637","organophosphate metabolic process",7,1,2.46,406,"0.955","0.9482","0.9482" +"GO:0006810","transport",42,13,14.77,332,"0.797","0.9486","0.9486" +"GO:0016311","dephosphorylation",5,1,1.76,389,"0.889","0.9631","0.9631" +"GO:0006396","RNA processing",5,1,1.76,390,"0.889","0.9718","0.9718" +"GO:0009890","negative regulation of biosynthetic proc...",4,0,1.41,428,"1.000","0.9780","0.9780" +"GO:0010558","negative regulation of macromolecule bio...",4,0,1.41,429,"1.000","0.9780","0.9780" +"GO:0031327","negative regulation of cellular biosynth...",4,0,1.41,430,"1.000","0.9780","0.9780" +"GO:0045892","negative regulation of transcription, DN...",4,0,1.41,431,"1.000","0.9780","0.9780" +"GO:0045934","negative regulation of nucleobase-contai...",4,0,1.41,432,"1.000","0.9780","0.9780" +"GO:0051253","negative regulation of RNA metabolic pro...",4,0,1.41,433,"1.000","0.9780","0.9780" +"GO:1902679","negative regulation of RNA biosynthetic ...",4,0,1.41,434,"1.000","0.9780","0.9780" +"GO:1903507","negative regulation of nucleic acid-temp...",4,0,1.41,435,"1.000","0.9780","0.9780" +"GO:2000113","negative regulation of cellular macromol...",4,0,1.41,436,"1.000","0.9780","0.9780" +"GO:0019219","regulation of nucleobase-containing comp...",23,5,8.09,407,"0.957","0.9870","0.9870" +"GO:0051252","regulation of RNA metabolic process",23,5,8.09,408,"0.957","0.9870","0.9870" +"GO:0007017","microtubule-based process",5,3,1.76,31,"0.235","0.0800","0.9875" +"GO:0002682","regulation of immune system process",3,0,1.05,437,"1.000","0.9883","0.9883" +"GO:0030334","regulation of cell migration",3,0,1.05,438,"1.000","0.9883","0.9883" +"GO:0040012","regulation of locomotion",3,0,1.05,439,"1.000","0.9883","0.9883" +"GO:0051270","regulation of cellular component movemen...",3,0,1.05,440,"1.000","0.9883","0.9883" +"GO:0061061","muscle structure development",3,0,1.05,441,"1.000","0.9883","0.9883" +"GO:2000145","regulation of cell motility",3,0,1.05,442,"1.000","0.9883","0.9883" +"GO:0035556","intracellular signal transduction",8,1,2.81,409,"0.971","0.9929","0.9929" +"GO:0008150","biological_process",182,64,64,443,"1.000","1.0000","1.0000" diff --git a/GO_enrichment_microbiome_output/contrast_young_phoretic_upregulated.csv b/GO_enrichment_microbiome_output/contrast_young_phoretic_upregulated.csv index f7f79d8..3090bdb 100644 --- a/GO_enrichment_microbiome_output/contrast_young_phoretic_upregulated.csv +++ b/GO_enrichment_microbiome_output/contrast_young_phoretic_upregulated.csv @@ -4,3 +4,576 @@ "GO:0006366","transcription by RNA polymerase II",8,6,3.35,11,"0.059","0.030","0.030" "GO:0030001","metal ion transport",12,8,5.03,13,"0.069","0.041","0.041" "GO:0098655","cation transmembrane transport",7,6,2.93,3,"0.022","0.041","0.041" +"GO:0042493","response to drug",6,5,2.52,9,"0.048","0.043","0.043" +"GO:0006814","sodium ion transport",3,3,1.26,15,"0.072","0.046","0.046" +"GO:0006816","calcium ion transport",4,4,1.68,4,"0.030","0.047","0.047" +"GO:0070838","divalent metal ion transport",4,4,1.68,5,"0.030","0.047","0.047" +"GO:0072511","divalent inorganic cation transport",4,4,1.68,6,"0.030","0.047","0.047" +"GO:0098662","inorganic cation transmembrane transport",4,4,1.68,7,"0.030","0.047","0.047" +"GO:0006417","regulation of translation",3,3,1.26,16,"0.072","0.052","0.052" +"GO:0034248","regulation of cellular amide metabolic p...",3,3,1.26,17,"0.072","0.052","0.052" +"GO:0001933","negative regulation of protein phosphory...",3,3,1.26,18,"0.072","0.064","0.064" +"GO:0007568","aging",3,3,1.26,19,"0.072","0.064","0.064" +"GO:0009636","response to toxic substance",3,3,1.26,20,"0.072","0.064","0.064" +"GO:0042326","negative regulation of phosphorylation",3,3,1.26,21,"0.072","0.064","0.064" +"GO:0043409","negative regulation of MAPK cascade",3,3,1.26,22,"0.072","0.064","0.064" +"GO:0045444","fat cell differentiation",3,3,1.26,23,"0.072","0.075","0.075" +"GO:0044271","cellular nitrogen compound biosynthetic ...",37,21,15.51,8,"0.033","0.079","0.079" +"GO:0006812","cation transport",19,11,7.96,36,"0.108","0.085","0.085" +"GO:0001568","blood vessel development",3,3,1.26,24,"0.072","0.088","0.088" +"GO:0001944","vasculature development",3,3,1.26,25,"0.072","0.088","0.088" +"GO:0044057","regulation of system process",3,3,1.26,26,"0.072","0.088","0.088" +"GO:0048514","blood vessel morphogenesis",3,3,1.26,27,"0.072","0.088","0.088" +"GO:0072358","cardiovascular system development",3,3,1.26,28,"0.072","0.088","0.088" +"GO:1901566","organonitrogen compound biosynthetic pro...",12,8,5.03,14,"0.069","0.096","0.096" +"GO:0070588","calcium ion transmembrane transport",3,3,1.26,29,"0.072","0.103","0.103" +"GO:0043933","protein-containing complex subunit organ...",8,3,3.35,351,"0.728","0.110","0.110" +"GO:0065003","protein-containing complex assembly",8,3,3.35,352,"0.728","0.110","0.110" +"GO:0044249","cellular biosynthetic process",45,24,18.86,10,"0.056","0.111","0.111" +"GO:0009719","response to endogenous stimulus",7,5,2.93,37,"0.112","0.115","0.115" +"GO:0043170","macromolecule metabolic process",82,40,34.37,12,"0.067","0.116","0.116" +"GO:0070887","cellular response to chemical stimulus",10,6,4.19,58,"0.194","0.127","0.127" +"GO:0006357","regulation of transcription by RNA polym...",6,4,2.52,93,"0.203","0.133","0.133" +"GO:0002262","myeloid cell homeostasis",3,2,1.26,163,"0.379","0.137","0.137" +"GO:0030099","myeloid cell differentiation",3,2,1.26,164,"0.379","0.137","0.137" +"GO:0030218","erythrocyte differentiation",3,2,1.26,165,"0.379","0.137","0.137" +"GO:0034101","erythrocyte homeostasis",3,2,1.26,166,"0.379","0.137","0.137" +"GO:0055085","transmembrane transport",30,16,12.58,41,"0.120","0.140","0.140" +"GO:0010629","negative regulation of gene expression",7,5,2.93,38,"0.112","0.143","0.143" +"GO:0034641","cellular nitrogen compound metabolic pro...",55,28,23.06,30,"0.077","0.147","0.147" +"GO:0043604","amide biosynthetic process",7,5,2.93,39,"0.112","0.168","0.168" +"GO:0098660","inorganic ion transmembrane transport",5,4,2.1,33,"0.100","0.177","0.177" +"GO:0048513","animal organ development",18,10,7.55,48,"0.164","0.183","0.183" +"GO:0006725","cellular aromatic compound metabolic pro...",44,22,18.44,45,"0.145","0.190","0.190" +"GO:0006412","translation",6,4,2.52,94,"0.203","0.195","0.195" +"GO:0043043","peptide biosynthetic process",6,4,2.52,95,"0.203","0.195","0.195" +"GO:0071310","cellular response to organic substance",6,4,2.52,96,"0.203","0.195","0.195" +"GO:0071396","cellular response to lipid",6,4,2.52,97,"0.203","0.195","0.195" +"GO:0071495","cellular response to endogenous stimulus",6,4,2.52,98,"0.203","0.195","0.195" +"GO:0002520","immune system development",4,3,1.68,60,"0.200","0.196","0.196" +"GO:0010608","posttranscriptional regulation of gene e...",4,3,1.68,61,"0.200","0.196","0.196" +"GO:0018193","peptidyl-amino acid modification",4,3,1.68,62,"0.200","0.196","0.196" +"GO:0030097","hemopoiesis",4,3,1.68,63,"0.200","0.196","0.196" +"GO:0048534","hematopoietic or lymphoid organ developm...",4,3,1.68,64,"0.200","0.196","0.196" +"GO:0048872","homeostasis of number of cells",4,3,1.68,65,"0.200","0.196","0.196" +"GO:0048878","chemical homeostasis",4,3,1.68,66,"0.200","0.196","0.196" +"GO:0050801","ion homeostasis",4,3,1.68,67,"0.200","0.196","0.196" +"GO:0015672","monovalent inorganic cation transport",6,3,2.52,236,"0.496","0.204","0.204" +"GO:0009059","macromolecule biosynthetic process",38,20,15.93,31,"0.096","0.204","0.204" +"GO:0019438","aromatic compound biosynthetic process",30,16,12.58,42,"0.120","0.219","0.219" +"GO:0003008","system process",8,5,3.35,84,"0.200","0.222","0.222" +"GO:0007420","brain development",8,5,3.35,85,"0.200","0.222","0.222" +"GO:0060322","head development",8,5,3.35,86,"0.200","0.222","0.222" +"GO:0009755","hormone-mediated signaling pathway",3,2,1.26,167,"0.379","0.225","0.225" +"GO:0043401","steroid hormone mediated signaling pathw...",3,2,1.26,168,"0.379","0.225","0.225" +"GO:0033993","response to lipid",8,5,3.35,87,"0.200","0.230","0.230" +"GO:0032870","cellular response to hormone stimulus",5,3,2.1,140,"0.350","0.231","0.231" +"GO:0071383","cellular response to steroid hormone sti...",5,3,2.1,141,"0.350","0.231","0.231" +"GO:0071407","cellular response to organic cyclic comp...",5,3,2.1,142,"0.350","0.231","0.231" +"GO:0001101","response to acid chemical",4,3,1.68,68,"0.200","0.234","0.234" +"GO:0007346","regulation of mitotic cell cycle",4,3,1.68,69,"0.200","0.234","0.234" +"GO:0010035","response to inorganic substance",4,3,1.68,70,"0.200","0.234","0.234" +"GO:0032504","multicellular organism reproduction",4,3,1.68,71,"0.200","0.234","0.234" +"GO:0048609","multicellular organismal reproductive pr...",4,3,1.68,72,"0.200","0.234","0.234" +"GO:1902532","negative regulation of intracellular sig...",4,3,1.68,73,"0.200","0.234","0.234" +"GO:0098657","import into cell",8,5,3.35,88,"0.200","0.242","0.242" +"GO:0032940","secretion by cell",4,3,1.68,74,"0.200","0.242","0.242" +"GO:0034762","regulation of transmembrane transport",4,3,1.68,75,"0.200","0.242","0.242" +"GO:0034765","regulation of ion transmembrane transpor...",4,3,1.68,76,"0.200","0.242","0.242" +"GO:0043269","regulation of ion transport",4,3,1.68,77,"0.200","0.242","0.242" +"GO:1904062","regulation of cation transmembrane trans...",4,3,1.68,78,"0.200","0.242","0.242" +"GO:0009725","response to hormone",6,4,2.52,99,"0.203","0.242","0.242" +"GO:0014070","response to organic cyclic compound",6,4,2.52,100,"0.203","0.242","0.242" +"GO:0048545","response to steroid hormone",6,4,2.52,101,"0.203","0.242","0.242" +"GO:0044260","cellular macromolecule metabolic process",69,32,28.92,108,"0.218","0.247","0.247" +"GO:0006139","nucleobase-containing compound metabolic...",41,20,17.19,106,"0.205","0.251","0.251" +"GO:0046483","heterocycle metabolic process",45,22,18.86,52,"0.182","0.257","0.257" +"GO:1901360","organic cyclic compound metabolic proces...",45,22,18.86,53,"0.182","0.257","0.257" +"GO:0030900","forebrain development",4,3,1.68,79,"0.200","0.268","0.268" +"GO:0045596","negative regulation of cell differentiat...",4,3,1.68,80,"0.200","0.268","0.268" +"GO:0051093","negative regulation of developmental pro...",4,3,1.68,81,"0.200","0.268","0.268" +"GO:0009792","embryo development ending in birth or eg...",4,2,1.68,253,"0.559","0.273","0.273" +"GO:0034622","cellular protein-containing complex asse...",4,1,1.68,486,"0.889","0.273","0.273" +"GO:0043009","chordate embryonic development",4,2,1.68,254,"0.559","0.273","0.273" +"GO:0072359","circulatory system development",4,3,1.68,82,"0.200","0.273","0.273" +"GO:0005975","carbohydrate metabolic process",6,3,2.52,237,"0.496","0.274","0.274" +"GO:0034645","cellular macromolecule biosynthetic proc...",36,18,15.09,54,"0.184","0.274","0.274" +"GO:0006261","DNA-dependent DNA replication",3,2,1.26,169,"0.379","0.276","0.276" +"GO:0009890","negative regulation of biosynthetic proc...",8,5,3.35,89,"0.200","0.279","0.279" +"GO:0010558","negative regulation of macromolecule bio...",8,5,3.35,90,"0.200","0.279","0.279" +"GO:0031327","negative regulation of cellular biosynth...",8,5,3.35,91,"0.200","0.279","0.279" +"GO:2000113","negative regulation of cellular macromol...",8,5,3.35,92,"0.200","0.279","0.279" +"GO:0034220","ion transmembrane transport",12,6,5.03,217,"0.384","0.283","0.283" +"GO:0003006","developmental process involved in reprod...",5,3,2.1,143,"0.350","0.284","0.284" +"GO:0008610","lipid biosynthetic process",5,3,2.1,144,"0.350","0.284","0.284" +"GO:0045892","negative regulation of transcription, DN...",6,4,2.52,102,"0.203","0.286","0.286" +"GO:0051253","negative regulation of RNA metabolic pro...",6,4,2.52,103,"0.203","0.286","0.286" +"GO:1902679","negative regulation of RNA biosynthetic ...",6,4,2.52,104,"0.203","0.286","0.286" +"GO:1903507","negative regulation of nucleic acid-temp...",6,4,2.52,105,"0.203","0.286","0.286" +"GO:0018130","heterocycle biosynthetic process",31,16,12.99,46,"0.160","0.287","0.287" +"GO:1901362","organic cyclic compound biosynthetic pro...",31,16,12.99,47,"0.160","0.287","0.287" +"GO:0010467","gene expression",36,19,15.09,34,"0.102","0.289","0.289" +"GO:0006979","response to oxidative stress",6,2,2.52,372,"0.799","0.297","0.297" +"GO:0044085","cellular component biogenesis",14,5,5.87,371,"0.777","0.298","0.298" +"GO:0043010","camera-type eye development",3,2,1.26,170,"0.379","0.300","0.300" +"GO:0060041","retina development in camera-type eye",3,2,1.26,171,"0.379","0.300","0.300" +"GO:0032880","regulation of protein localization",5,2,2.1,319,"0.698","0.309","0.309" +"GO:0065007","biological regulation",72,35,30.18,32,"0.098","0.310","0.310" +"GO:0010468","regulation of gene expression",24,13,10.06,44,"0.141","0.310","0.310" +"GO:0051130","positive regulation of cellular componen...",8,3,3.35,353,"0.728","0.317","0.317" +"GO:0090304","nucleic acid metabolic process",38,19,15.93,50,"0.173","0.325","0.325" +"GO:0002694","regulation of leukocyte activation",4,2,1.68,255,"0.559","0.330","0.330" +"GO:0042110","T cell activation",4,2,1.68,256,"0.559","0.330","0.330" +"GO:0046649","lymphocyte activation",4,2,1.68,257,"0.559","0.330","0.330" +"GO:0050863","regulation of T cell activation",4,2,1.68,258,"0.559","0.330","0.330" +"GO:0050865","regulation of cell activation",4,2,1.68,259,"0.559","0.330","0.330" +"GO:0051249","regulation of lymphocyte activation",4,2,1.68,260,"0.559","0.330","0.330" +"GO:0050789","regulation of biological process",70,34,29.34,35,"0.105","0.330","0.330" +"GO:0000278","mitotic cell cycle",5,3,2.1,145,"0.350","0.331","0.331" +"GO:0010638","positive regulation of organelle organiz...",5,2,2.1,320,"0.698","0.331","0.331" +"GO:0006813","potassium ion transport",4,2,1.68,261,"0.559","0.340","0.340" +"GO:0051259","protein complex oligomerization",4,2,1.68,262,"0.559","0.340","0.340" +"GO:0050794","regulation of cellular process",68,33,28.51,40,"0.113","0.350","0.350" +"GO:0044267","cellular protein metabolic process",38,16,15.93,292,"0.560","0.351","0.351" +"GO:0006518","peptide metabolic process",7,4,2.93,126,"0.325","0.352","0.352" +"GO:0009790","embryo development",7,4,2.93,127,"0.325","0.352","0.352" +"GO:0007186","G protein-coupled receptor signaling pat...",4,3,1.68,83,"0.200","0.355","0.355" +"GO:0009889","regulation of biosynthetic process",27,14,11.32,51,"0.180","0.359","0.359" +"GO:0006807","nitrogen compound metabolic process",92,42,38.57,59,"0.198","0.359","0.359" +"GO:0019222","regulation of metabolic process",37,18,15.51,109,"0.230","0.360","0.360" +"GO:0000003","reproduction",7,4,2.93,128,"0.325","0.361","0.361" +"GO:0007610","behavior",7,4,2.93,129,"0.325","0.361","0.361" +"GO:0022414","reproductive process",7,4,2.93,130,"0.325","0.361","0.361" +"GO:0060548","negative regulation of cell death",5,2,2.1,321,"0.698","0.366","0.366" +"GO:0016070","RNA metabolic process",30,16,12.58,43,"0.120","0.366","0.366" +"GO:0009605","response to external stimulus",9,4,3.77,293,"0.567","0.378","0.378" +"GO:0001701","in utero embryonic development",3,1,1.26,387,"0.806","0.379","0.379" +"GO:0001776","leukocyte homeostasis",3,2,1.26,172,"0.379","0.379","0.379" +"GO:0002260","lymphocyte homeostasis",3,2,1.26,173,"0.379","0.379","0.379" +"GO:0032943","mononuclear cell proliferation",3,2,1.26,174,"0.379","0.379","0.379" +"GO:0032944","regulation of mononuclear cell prolifera...",3,2,1.26,175,"0.379","0.379","0.379" +"GO:0032970","regulation of actin filament-based proce...",3,2,1.26,176,"0.379","0.379","0.379" +"GO:0042098","T cell proliferation",3,2,1.26,177,"0.379","0.379","0.379" +"GO:0042129","regulation of T cell proliferation",3,2,1.26,178,"0.379","0.379","0.379" +"GO:0046651","lymphocyte proliferation",3,2,1.26,179,"0.379","0.379","0.379" +"GO:0050670","regulation of lymphocyte proliferation",3,2,1.26,180,"0.379","0.379","0.379" +"GO:0051258","protein polymerization",3,1,1.26,388,"0.806","0.379","0.379" +"GO:0070661","leukocyte proliferation",3,2,1.26,181,"0.379","0.379","0.379" +"GO:0070663","regulation of leukocyte proliferation",3,2,1.26,182,"0.379","0.379","0.379" +"GO:0097435","supramolecular fiber organization",3,1,1.26,389,"0.806","0.379","0.379" +"GO:1903706","regulation of hemopoiesis",3,2,1.26,183,"0.379","0.379","0.379" +"GO:0030029","actin filament-based process",4,2,1.68,263,"0.559","0.382","0.382" +"GO:0006811","ion transport",29,13,12.16,226,"0.441","0.383","0.383" +"GO:0006810","transport",58,24,24.31,300,"0.600","0.385","0.385" +"GO:0032269","negative regulation of cellular protein ...",7,4,2.93,131,"0.325","0.386","0.386" +"GO:0051248","negative regulation of protein metabolic...",7,4,2.93,132,"0.325","0.386","0.386" +"GO:0000122","negative regulation of transcription by ...",5,3,2.1,146,"0.350","0.387","0.387" +"GO:0006955","immune response",3,1,1.26,390,"0.806","0.389","0.389" +"GO:0050776","regulation of immune response",3,1,1.26,391,"0.806","0.389","0.389" +"GO:0006396","RNA processing",7,4,2.93,133,"0.325","0.390","0.390" +"GO:0016049","cell growth",4,2,1.68,264,"0.559","0.393","0.393" +"GO:0022603","regulation of anatomical structure morph...",4,2,1.68,265,"0.559","0.393","0.393" +"GO:0043066","negative regulation of apoptotic process",4,2,1.68,266,"0.559","0.393","0.393" +"GO:0043069","negative regulation of programmed cell d...",4,2,1.68,267,"0.559","0.393","0.393" +"GO:0071704","organic substance metabolic process",107,47,44.85,125,"0.317","0.398","0.398" +"GO:0006351","transcription, DNA-templated",25,13,10.48,55,"0.190","0.400","0.400" +"GO:0032774","RNA biosynthetic process",25,13,10.48,56,"0.190","0.400","0.400" +"GO:0097659","nucleic acid-templated transcription",25,13,10.48,57,"0.190","0.400","0.400" +"GO:0060255","regulation of macromolecule metabolic pr...",35,17,14.67,111,"0.244","0.401","0.401" +"GO:0080090","regulation of primary metabolic process",35,17,14.67,112,"0.244","0.401","0.401" +"GO:0065008","regulation of biological quality",18,10,7.55,49,"0.164","0.403","0.403" +"GO:0001654","eye development",5,3,2.1,147,"0.350","0.405","0.405" +"GO:0048880","sensory system development",5,3,2.1,148,"0.350","0.405","0.405" +"GO:0150063","visual system development",5,3,2.1,149,"0.350","0.405","0.405" +"GO:0007417","central nervous system development",11,6,4.61,123,"0.285","0.405","0.405" +"GO:1903047","mitotic cell cycle process",4,2,1.68,268,"0.559","0.415","0.415" +"GO:0007154","cell communication",32,16,13.41,107,"0.207","0.424","0.424" +"GO:0060341","regulation of cellular localization",6,2,2.52,373,"0.799","0.426","0.426" +"GO:0002684","positive regulation of immune system pro...",3,1,1.26,392,"0.806","0.437","0.437" +"GO:0007159","leukocyte cell-cell adhesion",3,1,1.26,393,"0.806","0.437","0.437" +"GO:0022407","regulation of cell-cell adhesion",3,1,1.26,394,"0.806","0.437","0.437" +"GO:0030155","regulation of cell adhesion",3,1,1.26,395,"0.806","0.437","0.437" +"GO:0030335","positive regulation of cell migration",3,1,1.26,396,"0.806","0.437","0.437" +"GO:0040017","positive regulation of locomotion",3,1,1.26,397,"0.806","0.437","0.437" +"GO:0051272","positive regulation of cellular componen...",3,1,1.26,398,"0.806","0.437","0.437" +"GO:1903037","regulation of leukocyte cell-cell adhesi...",3,1,1.26,399,"0.806","0.437","0.437" +"GO:2000147","positive regulation of cell motility",3,1,1.26,400,"0.806","0.437","0.437" +"GO:0006281","DNA repair",4,1,1.68,487,"0.889","0.438","0.438" +"GO:0006897","endocytosis",7,4,2.93,134,"0.325","0.439","0.439" +"GO:0009967","positive regulation of signal transducti...",7,4,2.93,135,"0.325","0.439","0.439" +"GO:0010647","positive regulation of cell communicatio...",7,4,2.93,136,"0.325","0.439","0.439" +"GO:0023056","positive regulation of signaling",7,4,2.93,137,"0.325","0.439","0.439" +"GO:0000075","cell cycle checkpoint",3,2,1.26,184,"0.379","0.447","0.447" +"GO:0006413","translational initiation",3,2,1.26,185,"0.379","0.447","0.447" +"GO:0031570","DNA integrity checkpoint",3,2,1.26,186,"0.379","0.447","0.447" +"GO:0048592","eye morphogenesis",3,2,1.26,187,"0.379","0.447","0.447" +"GO:0051260","protein homooligomerization",3,1,1.26,401,"0.806","0.447","0.447" +"GO:0055080","cation homeostasis",3,2,1.26,188,"0.379","0.447","0.447" +"GO:0090596","sensory organ morphogenesis",3,2,1.26,189,"0.379","0.447","0.447" +"GO:0098771","inorganic ion homeostasis",3,2,1.26,190,"0.379","0.447","0.447" +"GO:1901701","cellular response to oxygen-containing c...",3,2,1.26,191,"0.379","0.447","0.447" +"GO:0006325","chromatin organization",4,2,1.68,269,"0.559","0.449","0.449" +"GO:0034654","nucleobase-containing compound biosynthe...",28,14,11.74,110,"0.232","0.449","0.449" +"GO:1901135","carbohydrate derivative metabolic proces...",5,2,2.1,322,"0.698","0.451","0.451" +"GO:0000165","MAPK cascade",5,3,2.1,150,"0.350","0.469","0.469" +"GO:0001932","regulation of protein phosphorylation",5,3,2.1,151,"0.350","0.469","0.469" +"GO:0010563","negative regulation of phosphorus metabo...",5,3,2.1,152,"0.350","0.469","0.469" +"GO:0023014","signal transduction by protein phosphory...",5,3,2.1,153,"0.350","0.469","0.469" +"GO:0043408","regulation of MAPK cascade",5,3,2.1,154,"0.350","0.469","0.469" +"GO:0045936","negative regulation of phosphate metabol...",5,3,2.1,155,"0.350","0.469","0.469" +"GO:1901700","response to oxygen-containing compound",5,3,2.1,156,"0.350","0.469","0.469" +"GO:0009612","response to mechanical stimulus",4,2,1.68,270,"0.559","0.478","0.478" +"GO:0090407","organophosphate biosynthetic process",4,2,1.68,271,"0.559","0.478","0.478" +"GO:0007010","cytoskeleton organization",5,1,2.1,525,"0.936","0.479","0.479" +"GO:0019538","protein metabolic process",42,18,17.61,245,"0.513","0.480","0.480" +"GO:0046903","secretion",5,3,2.1,157,"0.350","0.482","0.482" +"GO:0051050","positive regulation of transport",5,3,2.1,158,"0.350","0.482","0.482" +"GO:0045934","negative regulation of nucleobase-contai...",7,4,2.93,138,"0.325","0.486","0.486" +"GO:0030031","cell projection assembly",3,1,1.26,402,"0.806","0.487","0.487" +"GO:0030036","actin cytoskeleton organization",3,1,1.26,403,"0.806","0.487","0.487" +"GO:0060491","regulation of cell projection assembly",3,1,1.26,404,"0.806","0.487","0.487" +"GO:0120031","plasma membrane bounded cell projection ...",3,1,1.26,405,"0.806","0.487","0.487" +"GO:0120032","regulation of plasma membrane bounded ce...",3,1,1.26,406,"0.806","0.487","0.487" +"GO:0031344","regulation of cell projection organizati...",5,2,2.1,323,"0.698","0.493","0.493" +"GO:0061024","membrane organization",5,2,2.1,324,"0.698","0.493","0.493" +"GO:0120035","regulation of plasma membrane bounded ce...",5,2,2.1,325,"0.698","0.493","0.493" +"GO:0006260","DNA replication",4,2,1.68,272,"0.559","0.496","0.496" +"GO:0098656","anion transmembrane transport",4,1,1.68,488,"0.889","0.496","0.496" +"GO:0010556","regulation of macromolecule biosynthetic...",26,13,10.9,113,"0.246","0.497","0.497" +"GO:0031326","regulation of cellular biosynthetic proc...",26,13,10.9,114,"0.246","0.497","0.497" +"GO:2000112","regulation of cellular macromolecule bio...",26,13,10.9,115,"0.246","0.497","0.497" +"GO:0010038","response to metal ion",3,2,1.26,192,"0.379","0.498","0.498" +"GO:0010243","response to organonitrogen compound",3,2,1.26,193,"0.379","0.498","0.498" +"GO:0031960","response to corticosteroid",3,2,1.26,194,"0.379","0.498","0.498" +"GO:0045787","positive regulation of cell cycle",3,2,1.26,195,"0.379","0.498","0.498" +"GO:0045931","positive regulation of mitotic cell cycl...",3,2,1.26,196,"0.379","0.498","0.498" +"GO:0060560","developmental growth involved in morphog...",3,1,1.26,407,"0.806","0.498","0.498" +"GO:1901698","response to nitrogen compound",3,2,1.26,197,"0.379","0.498","0.498" +"GO:0051234","establishment of localization",60,24,25.15,318,"0.697","0.498","0.498" +"GO:0022607","cellular component assembly",11,3,4.61,520,"0.911","0.503","0.503" +"GO:0051128","regulation of cellular component organiz...",11,4,4.61,366,"0.754","0.503","0.503" +"GO:0007268","chemical synaptic transmission",3,2,1.26,198,"0.379","0.508","0.508" +"GO:0010469","regulation of signaling receptor activit...",3,2,1.26,199,"0.379","0.508","0.508" +"GO:0010975","regulation of neuron projection developm...",3,2,1.26,200,"0.379","0.508","0.508" +"GO:0022898","regulation of transmembrane transporter ...",3,2,1.26,201,"0.379","0.508","0.508" +"GO:0032409","regulation of transporter activity",3,2,1.26,202,"0.379","0.508","0.508" +"GO:0032412","regulation of ion transmembrane transpor...",3,2,1.26,203,"0.379","0.508","0.508" +"GO:0042391","regulation of membrane potential",3,2,1.26,204,"0.379","0.508","0.508" +"GO:0050803","regulation of synapse structure or activ...",3,2,1.26,205,"0.379","0.508","0.508" +"GO:0050804","modulation of chemical synaptic transmis...",3,2,1.26,206,"0.379","0.508","0.508" +"GO:0050806","positive regulation of synaptic transmis...",3,2,1.26,207,"0.379","0.508","0.508" +"GO:0050807","regulation of synapse organization",3,2,1.26,208,"0.379","0.508","0.508" +"GO:0098916","anterograde trans-synaptic signaling",3,2,1.26,209,"0.379","0.508","0.508" +"GO:0099173","postsynapse organization",3,2,1.26,210,"0.379","0.508","0.508" +"GO:0099177","regulation of trans-synaptic signaling",3,2,1.26,211,"0.379","0.508","0.508" +"GO:0099536","synaptic signaling",3,2,1.26,212,"0.379","0.508","0.508" +"GO:0099537","trans-synaptic signaling",3,2,1.26,213,"0.379","0.508","0.508" +"GO:2001257","regulation of cation channel activity",3,2,1.26,214,"0.379","0.508","0.508" +"GO:0031400","negative regulation of protein modificat...",6,3,2.52,238,"0.496","0.513","0.513" +"GO:0000375","RNA splicing, via transesterification re...",3,1,1.26,408,"0.806","0.519","0.519" +"GO:0000377","RNA splicing, via transesterification re...",3,1,1.26,409,"0.806","0.519","0.519" +"GO:0000398","mRNA splicing, via spliceosome",3,1,1.26,410,"0.806","0.519","0.519" +"GO:0010564","regulation of cell cycle process",3,1,1.26,411,"0.806","0.519","0.519" +"GO:0023052","signaling",33,16,13.83,116,"0.259","0.520","0.520" +"GO:0019725","cellular homeostasis",5,3,2.1,159,"0.350","0.520","0.520" +"GO:0071840","cellular component organization or bioge...",30,9,12.58,545,"0.951","0.521","0.521" +"GO:0055086","nucleobase-containing small molecule met...",4,1,1.68,489,"0.889","0.526","0.526" +"GO:0051171","regulation of nitrogen compound metaboli...",34,16,14.25,124,"0.315","0.532","0.532" +"GO:0048731","system development",23,11,9.64,139,"0.347","0.535","0.535" +"GO:0010033","response to organic substance",10,5,4.19,222,"0.414","0.537","0.537" +"GO:0021537","telencephalon development",3,2,1.26,215,"0.379","0.540","0.540" +"GO:0021543","pallium development",3,2,1.26,216,"0.379","0.540","0.540" +"GO:0044238","primary metabolic process",102,44,42.76,223,"0.415","0.549","0.549" +"GO:0070997","neuron death",3,1,1.26,412,"0.806","0.550","0.550" +"GO:1901214","regulation of neuron death",3,1,1.26,413,"0.806","0.550","0.550" +"GO:0007165","signal transduction",31,15,12.99,118,"0.274","0.552","0.552" +"GO:0042592","homeostatic process",13,7,5.45,117,"0.269","0.554","0.554" +"GO:0048585","negative regulation of response to stimu...",8,3,3.35,354,"0.728","0.554","0.554" +"GO:0010605","negative regulation of macromolecule met...",12,6,5.03,218,"0.384","0.556","0.556" +"GO:0051172","negative regulation of nitrogen compound...",12,6,5.03,219,"0.384","0.556","0.556" +"GO:0016197","endosomal transport",4,1,1.68,490,"0.889","0.557","0.557" +"GO:0097164","ammonium ion metabolic process",6,3,2.52,239,"0.496","0.558","0.558" +"GO:0048523","negative regulation of cellular process",20,9,8.38,229,"0.474","0.566","0.566" +"GO:0044089","positive regulation of cellular componen...",4,2,1.68,273,"0.559","0.569","0.569" +"GO:0050808","synapse organization",4,2,1.68,274,"0.559","0.569","0.569" +"GO:0051704","multi-organism process",4,2,1.68,275,"0.559","0.569","0.569" +"GO:0003002","regionalization",3,1,1.26,414,"0.806","0.572","0.572" +"GO:0007389","pattern specification process",3,1,1.26,415,"0.806","0.572","0.572" +"GO:0006464","cellular protein modification process",30,12,12.58,311,"0.665","0.572","0.572" +"GO:0036211","protein modification process",30,12,12.58,312,"0.665","0.572","0.572" +"GO:0016071","mRNA metabolic process",5,2,2.1,326,"0.698","0.572","0.572" +"GO:0009968","negative regulation of signal transducti...",7,3,2.93,303,"0.624","0.574","0.574" +"GO:0010648","negative regulation of cell communicatio...",7,3,2.93,304,"0.624","0.574","0.574" +"GO:0023057","negative regulation of signaling",7,3,2.93,305,"0.624","0.574","0.574" +"GO:0035239","tube morphogenesis",5,3,2.1,160,"0.350","0.578","0.578" +"GO:0035295","tube development",5,3,2.1,161,"0.350","0.578","0.578" +"GO:0008654","phospholipid biosynthetic process",3,1,1.26,416,"0.806","0.582","0.582" +"GO:0007423","sensory organ development",6,3,2.52,240,"0.496","0.588","0.588" +"GO:0045454","cell redox homeostasis",4,2,1.68,276,"0.559","0.594","0.594" +"GO:0006355","regulation of transcription, DNA-templat...",22,11,9.22,119,"0.277","0.603","0.603" +"GO:0051252","regulation of RNA metabolic process",22,11,9.22,120,"0.277","0.603","0.603" +"GO:1903506","regulation of nucleic acid-templated tra...",22,11,9.22,121,"0.277","0.603","0.603" +"GO:2001141","regulation of RNA biosynthetic process",22,11,9.22,122,"0.277","0.603","0.603" +"GO:0002682","regulation of immune system process",6,2,2.52,374,"0.799","0.603","0.603" +"GO:0051246","regulation of protein metabolic process",13,6,5.45,230,"0.483","0.610","0.610" +"GO:0006753","nucleoside phosphate metabolic process",3,1,1.26,417,"0.806","0.614","0.614" +"GO:0009117","nucleotide metabolic process",3,1,1.26,418,"0.806","0.614","0.614" +"GO:0034655","nucleobase-containing compound catabolic...",3,1,1.26,419,"0.806","0.614","0.614" +"GO:0043412","macromolecule modification",32,14,13.41,234,"0.484","0.629","0.629" +"GO:0006996","organelle organization",19,5,7.96,546,"0.958","0.631","0.631" +"GO:0016043","cellular component organization",28,7,11.74,558,"0.987","0.631","0.631" +"GO:0048468","cell development",13,6,5.45,231,"0.483","0.633","0.633" +"GO:0042221","response to chemical",21,10,8.8,162,"0.369","0.640","0.640" +"GO:0051239","regulation of multicellular organismal p...",12,6,5.03,220,"0.384","0.644","0.644" +"GO:0050896","response to stimulus",56,23,23.47,302,"0.621","0.645","0.645" +"GO:0000226","microtubule cytoskeleton organization",3,1,1.26,420,"0.806","0.646","0.646" +"GO:0044087","regulation of cellular component biogene...",9,4,3.77,294,"0.567","0.649","0.649" +"GO:0072657","protein localization to membrane",3,1,1.26,421,"0.806","0.657","0.657" +"GO:0043086","negative regulation of catalytic activit...",5,2,2.1,327,"0.698","0.658","0.658" +"GO:0044092","negative regulation of molecular functio...",5,2,2.1,328,"0.698","0.658","0.658" +"GO:0008152","metabolic process",124,52,51.98,252,"0.558","0.666","0.666" +"GO:0008283","cell proliferation",5,2,2.1,329,"0.698","0.666","0.666" +"GO:0006259","DNA metabolic process",8,3,3.35,355,"0.728","0.669","0.669" +"GO:0002376","immune system process",8,3,3.35,356,"0.728","0.673","0.673" +"GO:0009888","tissue development",8,3,3.35,357,"0.728","0.673","0.673" +"GO:0051179","localization",63,24,26.41,466,"0.816","0.674","0.674" +"GO:1901564","organonitrogen compound metabolic proces...",55,23,23.06,299,"0.569","0.678","0.678" +"GO:0032268","regulation of cellular protein metabolic...",11,5,4.61,246,"0.521","0.690","0.690" +"GO:0042325","regulation of phosphorylation",6,3,2.52,241,"0.496","0.694","0.694" +"GO:0048519","negative regulation of biological proces...",22,10,9.22,227,"0.446","0.694","0.694" +"GO:0007275","multicellular organism development",25,11,10.48,235,"0.493","0.696","0.696" +"GO:0008104","protein localization",15,5,6.29,472,"0.834","0.699","0.699" +"GO:0009892","negative regulation of metabolic process",13,6,5.45,232,"0.483","0.701","0.701" +"GO:0031324","negative regulation of cellular metaboli...",13,6,5.45,233,"0.483","0.701","0.701" +"GO:0007267","cell-cell signaling",6,3,2.52,242,"0.496","0.709","0.709" +"GO:0051049","regulation of transport",6,3,2.52,243,"0.496","0.709","0.709" +"GO:0042060","wound healing",3,1,1.26,422,"0.806","0.709","0.709" +"GO:0048568","embryonic organ development",3,1,1.26,423,"0.806","0.709","0.709" +"GO:0070647","protein modification by small protein co...",3,1,1.26,424,"0.806","0.709","0.709" +"GO:0034613","cellular protein localization",11,4,4.61,367,"0.754","0.710","0.710" +"GO:0055114","oxidation-reduction process",13,4,5.45,481,"0.873","0.714","0.714" +"GO:0006470","protein dephosphorylation",4,1,1.68,491,"0.889","0.717","0.717" +"GO:0051346","negative regulation of hydrolase activit...",4,2,1.68,277,"0.559","0.717","0.717" +"GO:0019439","aromatic compound catabolic process",4,1,1.68,492,"0.889","0.723","0.723" +"GO:0044270","cellular nitrogen compound catabolic pro...",4,1,1.68,493,"0.889","0.723","0.723" +"GO:0044283","small molecule biosynthetic process",4,2,1.68,278,"0.559","0.723","0.723" +"GO:0046700","heterocycle catabolic process",4,1,1.68,494,"0.889","0.723","0.723" +"GO:1901361","organic cyclic compound catabolic proces...",4,1,1.68,495,"0.889","0.723","0.723" +"GO:0022402","cell cycle process",6,2,2.52,375,"0.799","0.724","0.724" +"GO:0033043","regulation of organelle organization",6,2,2.52,376,"0.799","0.724","0.724" +"GO:0051276","chromosome organization",6,2,2.52,377,"0.799","0.724","0.724" +"GO:0009653","anatomical structure morphogenesis",13,5,5.45,349,"0.705","0.725","0.725" +"GO:0006952","defense response",4,2,1.68,279,"0.559","0.728","0.728" +"GO:0010628","positive regulation of gene expression",4,2,1.68,280,"0.559","0.728","0.728" +"GO:0042127","regulation of cell proliferation",4,2,1.68,281,"0.559","0.728","0.728" +"GO:0045786","negative regulation of cell cycle",4,2,1.68,282,"0.559","0.728","0.728" +"GO:0045893","positive regulation of transcription, DN...",4,2,1.68,283,"0.559","0.728","0.728" +"GO:0045944","positive regulation of transcription by ...",4,2,1.68,284,"0.559","0.728","0.728" +"GO:0051241","negative regulation of multicellular org...",4,2,1.68,285,"0.559","0.728","0.728" +"GO:0051254","positive regulation of RNA metabolic pro...",4,2,1.68,286,"0.559","0.728","0.728" +"GO:1902680","positive regulation of RNA biosynthetic ...",4,2,1.68,287,"0.559","0.728","0.728" +"GO:1903508","positive regulation of nucleic acid-temp...",4,2,1.68,288,"0.559","0.728","0.728" +"GO:0048856","anatomical structure development",27,12,11.32,228,"0.466","0.732","0.732" +"GO:0006820","anion transport",6,2,2.52,378,"0.799","0.738","0.738" +"GO:0030154","cell differentiation",21,9,8.8,249,"0.552","0.740","0.740" +"GO:0048869","cellular developmental process",21,9,8.8,250,"0.552","0.740","0.740" +"GO:0051716","cellular response to stimulus",45,20,18.86,221,"0.412","0.743","0.743" +"GO:0001775","cell activation",5,2,2.1,330,"0.698","0.747","0.747" +"GO:0045321","leukocyte activation",5,2,2.1,331,"0.698","0.747","0.747" +"GO:0051270","regulation of cellular component movemen...",5,2,2.1,332,"0.698","0.747","0.747" +"GO:0032501","multicellular organismal process",28,11,11.74,315,"0.693","0.748","0.748" +"GO:0045165","cell fate commitment",3,1,1.26,425,"0.806","0.750","0.750" +"GO:0048608","reproductive structure development",3,1,1.26,426,"0.806","0.750","0.750" +"GO:0061458","reproductive system development",3,1,1.26,427,"0.806","0.750","0.750" +"GO:0072089","stem cell proliferation",3,1,1.26,428,"0.806","0.750","0.750" +"GO:0006886","intracellular protein transport",6,2,2.52,379,"0.799","0.767","0.767" +"GO:0008219","cell death",6,2,2.52,380,"0.799","0.767","0.767" +"GO:0010941","regulation of cell death",6,2,2.52,381,"0.799","0.767","0.767" +"GO:0051649","establishment of localization in cell",16,5,6.71,485,"0.879","0.768","0.768" +"GO:0006468","protein phosphorylation",17,8,7.13,224,"0.420","0.772","0.772" +"GO:0040007","growth",9,4,3.77,295,"0.567","0.775","0.775" +"GO:0051173","positive regulation of nitrogen compound...",9,4,3.77,296,"0.567","0.775","0.775" +"GO:0032502","developmental process",30,13,12.58,244,"0.509","0.778","0.778" +"GO:0035303","regulation of dephosphorylation",3,0,1.26,561,"1.000","0.780","0.780" +"GO:0035304","regulation of protein dephosphorylation",3,0,1.26,562,"1.000","0.780","0.780" +"GO:0009611","response to wounding",4,2,1.68,289,"0.559","0.786","0.786" +"GO:1902533","positive regulation of intracellular sig...",4,2,1.68,290,"0.559","0.786","0.786" +"GO:0051338","regulation of transferase activity",3,1,1.26,429,"0.806","0.789","0.789" +"GO:0051347","positive regulation of transferase activ...",3,1,1.26,430,"0.806","0.789","0.789" +"GO:0048584","positive regulation of response to stimu...",9,4,3.77,297,"0.567","0.792","0.792" +"GO:0050877","nervous system process",5,2,2.1,333,"0.698","0.793","0.793" +"GO:0046434","organophosphate catabolic process",5,1,2.1,526,"0.936","0.795","0.795" +"GO:0016358","dendrite development",4,2,1.68,291,"0.559","0.797","0.797" +"GO:0019219","regulation of nucleobase-containing comp...",24,11,10.06,225,"0.420","0.804","0.804" +"GO:0009628","response to abiotic stimulus",7,3,2.93,306,"0.624","0.806","0.806" +"GO:0031325","positive regulation of cellular metaboli...",9,3,3.77,460,"0.809","0.809","0.809" +"GO:0016477","cell migration",5,1,2.1,527,"0.936","0.810","0.810" +"GO:0040011","locomotion",5,1,2.1,528,"0.936","0.810","0.810" +"GO:0048870","cell motility",5,1,2.1,529,"0.936","0.810","0.810" +"GO:0051674","localization of cell",5,1,2.1,530,"0.936","0.810","0.810" +"GO:0044237","cellular metabolic process",100,41,41.92,309,"0.659","0.810","0.810" +"GO:0007155","cell adhesion",7,2,2.93,475,"0.870","0.812","0.812" +"GO:0022610","biological adhesion",7,2,2.93,476,"0.870","0.812","0.812" +"GO:0030030","cell projection organization",7,2,2.93,477,"0.870","0.812","0.812" +"GO:0120036","plasma membrane bounded cell projection ...",7,2,2.93,478,"0.870","0.812","0.812" +"GO:0006915","apoptotic process",5,2,2.1,334,"0.698","0.822","0.822" +"GO:0012501","programmed cell death",5,2,2.1,335,"0.698","0.822","0.822" +"GO:0042981","regulation of apoptotic process",5,2,2.1,336,"0.698","0.822","0.822" +"GO:0043067","regulation of programmed cell death",5,2,2.1,337,"0.698","0.822","0.822" +"GO:0048646","anatomical structure formation involved ...",5,2,2.1,338,"0.698","0.822","0.822" +"GO:0043603","cellular amide metabolic process",11,5,4.61,247,"0.521","0.825","0.825" +"GO:0016311","dephosphorylation",7,1,2.93,557,"0.979","0.830","0.830" +"GO:0015031","protein transport",8,3,3.35,358,"0.728","0.833","0.833" +"GO:0015833","peptide transport",8,3,3.35,359,"0.728","0.833","0.833" +"GO:0042886","amide transport",8,3,3.35,360,"0.728","0.833","0.833" +"GO:0045184","establishment of protein localization",8,3,3.35,361,"0.728","0.833","0.833" +"GO:0051641","cellular localization",20,6,8.38,524,"0.918","0.840","0.840" +"GO:0009891","positive regulation of biosynthetic proc...",5,2,2.1,339,"0.698","0.840","0.840" +"GO:0010557","positive regulation of macromolecule bio...",5,2,2.1,340,"0.698","0.840","0.840" +"GO:0031328","positive regulation of cellular biosynth...",5,2,2.1,341,"0.698","0.840","0.840" +"GO:0045935","positive regulation of nucleobase-contai...",5,2,2.1,342,"0.698","0.840","0.840" +"GO:0009987","cellular process",138,56,57.85,370,"0.770","0.845","0.845" +"GO:0007017","microtubule-based process",6,1,2.52,549,"0.964","0.858","0.858" +"GO:0071705","nitrogen compound transport",11,4,4.61,368,"0.754","0.859","0.859" +"GO:0006974","cellular response to DNA damage stimulus",7,2,2.93,479,"0.870","0.861","0.861" +"GO:0051726","regulation of cell cycle",7,3,2.93,307,"0.624","0.864","0.864" +"GO:0006950","response to stress",23,6,9.64,553,"0.971","0.867","0.867" +"GO:0006397","mRNA processing",4,1,1.68,496,"0.889","0.869","0.869" +"GO:0008380","RNA splicing",4,1,1.68,497,"0.889","0.869","0.869" +"GO:0048666","neuron development",7,3,2.93,308,"0.624","0.877","0.877" +"GO:0006793","phosphorus metabolic process",33,12,13.83,467,"0.816","0.879","0.879" +"GO:0006796","phosphate-containing compound metabolic ...",33,12,13.83,468,"0.816","0.879","0.879" +"GO:0031323","regulation of cellular metabolic process",33,14,13.83,248,"0.548","0.879","0.879" +"GO:0009894","regulation of catabolic process",3,1,1.26,431,"0.806","0.885","0.885" +"GO:0030334","regulation of cell migration",4,1,1.68,498,"0.889","0.891","0.891" +"GO:0040012","regulation of locomotion",4,1,1.68,499,"0.889","0.891","0.891" +"GO:2000145","regulation of cell motility",4,1,1.68,500,"0.889","0.891","0.891" +"GO:0098609","cell-cell adhesion",6,2,2.52,382,"0.799","0.892","0.892" +"GO:0051094","positive regulation of developmental pro...",9,4,3.77,298,"0.567","0.897","0.897" +"GO:0016310","phosphorylation",21,8,8.8,350,"0.726","0.902","0.902" +"GO:0006629","lipid metabolic process",13,3,5.45,547,"0.961","0.903","0.903" +"GO:0009887","animal organ morphogenesis",5,2,2.1,343,"0.698","0.908","0.908" +"GO:0019637","organophosphate metabolic process",12,3,5.03,539,"0.941","0.910","0.910" +"GO:0044255","cellular lipid metabolic process",12,2,5.03,559,"0.988","0.910","0.910" +"GO:0007264","small GTPase mediated signal transductio...",6,1,2.52,550,"0.964","0.913","0.913" +"GO:0007265","Ras protein signal transduction",6,1,2.52,551,"0.964","0.913","0.913" +"GO:0051129","negative regulation of cellular componen...",3,1,1.26,432,"0.806","0.914","0.914" +"GO:0048518","positive regulation of biological proces...",21,9,8.8,251,"0.552","0.918","0.918" +"GO:0006643","membrane lipid metabolic process",5,1,2.1,531,"0.936","0.919","0.919" +"GO:0032879","regulation of localization",10,3,4.19,473,"0.868","0.921","0.921" +"GO:0031399","regulation of protein modification proce...",9,3,3.77,461,"0.809","0.922","0.922" +"GO:0044281","small molecule metabolic process",14,4,5.87,521,"0.911","0.926","0.926" +"GO:0046578","regulation of Ras protein signal transdu...",5,1,2.1,532,"0.936","0.927","0.927" +"GO:0051056","regulation of small GTPase mediated sign...",5,1,2.1,533,"0.936","0.927","0.927" +"GO:0015711","organic anion transport",4,1,1.68,501,"0.889","0.928","0.928" +"GO:0009893","positive regulation of metabolic process",11,4,4.61,369,"0.754","0.931","0.931" +"GO:0002009","morphogenesis of an epithelium",4,1,1.68,502,"0.889","0.931","0.931" +"GO:0043085","positive regulation of catalytic activit...",4,1,1.68,503,"0.889","0.931","0.931" +"GO:0048729","tissue morphogenesis",4,1,1.68,504,"0.889","0.931","0.931" +"GO:0060429","epithelium development",4,1,1.68,505,"0.889","0.931","0.931" +"GO:0006665","sphingolipid metabolic process",4,1,1.68,506,"0.889","0.935","0.935" +"GO:0016042","lipid catabolic process",4,1,1.68,507,"0.889","0.935","0.935" +"GO:0044242","cellular lipid catabolic process",4,1,1.68,508,"0.889","0.935","0.935" +"GO:0007399","nervous system development",18,7,7.55,316,"0.696","0.937","0.937" +"GO:0000902","cell morphogenesis",4,1,1.68,509,"0.889","0.938","0.938" +"GO:0045597","positive regulation of cell differentiat...",6,2,2.52,383,"0.799","0.940","0.940" +"GO:0006644","phospholipid metabolic process",8,1,3.35,560,"0.988","0.941","0.941" +"GO:0016192","vesicle-mediated transport",16,6,6.71,365,"0.735","0.941","0.941" +"GO:0007266","Rho protein signal transduction",4,1,1.68,510,"0.889","0.942","0.942" +"GO:0035023","regulation of Rho protein signal transdu...",4,1,1.68,511,"0.889","0.942","0.942" +"GO:0050793","regulation of developmental process",12,5,5.03,301,"0.620","0.943","0.943" +"GO:0015849","organic acid transport",3,1,1.26,433,"0.806","0.945","0.945" +"GO:0046942","carboxylic acid transport",3,1,1.26,434,"0.806","0.945","0.945" +"GO:0045595","regulation of cell differentiation",10,4,4.19,313,"0.669","0.946","0.946" +"GO:0046907","intracellular transport",12,3,5.03,540,"0.941","0.949","0.949" +"GO:0070727","cellular macromolecule localization",12,4,5.03,469,"0.821","0.949","0.949" +"GO:0030149","sphingolipid catabolic process",3,1,1.26,435,"0.806","0.951","0.951" +"GO:0046466","membrane lipid catabolic process",3,1,1.26,436,"0.806","0.951","0.951" +"GO:0048522","positive regulation of cellular process",18,7,7.55,317,"0.696","0.952","0.952" +"GO:0048583","regulation of response to stimulus",17,4,7.13,554,"0.972","0.955","0.955" +"GO:0031175","neuron projection development",5,2,2.1,344,"0.698","0.955","0.955" +"GO:0045664","regulation of neuron differentiation",5,2,2.1,345,"0.698","0.955","0.955" +"GO:0050767","regulation of neurogenesis",5,2,2.1,346,"0.698","0.955","0.955" +"GO:0051960","regulation of nervous system development",5,2,2.1,347,"0.698","0.955","0.955" +"GO:0060284","regulation of cell development",5,2,2.1,348,"0.698","0.955","0.955" +"GO:0035556","intracellular signal transduction",15,6,6.29,310,"0.661","0.958","0.958" +"GO:0030163","protein catabolic process",4,1,1.68,512,"0.889","0.960","0.960" +"GO:0048589","developmental growth",7,2,2.93,480,"0.870","0.961","0.961" +"GO:0019220","regulation of phosphate metabolic proces...",8,3,3.35,362,"0.728","0.964","0.964" +"GO:0051174","regulation of phosphorus metabolic proce...",8,3,3.35,363,"0.728","0.964","0.964" +"GO:0009966","regulation of signal transduction",13,4,5.45,482,"0.873","0.966","0.966" +"GO:0010646","regulation of cell communication",13,4,5.45,483,"0.873","0.966","0.966" +"GO:0023051","regulation of signaling",13,4,5.45,484,"0.873","0.966","0.966" +"GO:2000026","regulation of multicellular organismal d...",10,4,4.19,314,"0.669","0.966","0.966" +"GO:0022008","neurogenesis",12,3,5.03,541,"0.941","0.969","0.969" +"GO:0048699","generation of neurons",12,3,5.03,542,"0.941","0.969","0.969" +"GO:0065009","regulation of molecular function",12,4,5.03,470,"0.821","0.969","0.969" +"GO:0017144","drug metabolic process",6,2,2.52,384,"0.799","0.969","0.969" +"GO:0006650","glycerophospholipid metabolic process",4,0,1.68,563,"1.000","0.970","0.970" +"GO:0046486","glycerolipid metabolic process",4,0,1.68,564,"1.000","0.970","0.970" +"GO:0006928","movement of cell or subcellular componen...",8,2,3.35,522,"0.917","0.973","0.973" +"GO:0051240","positive regulation of multicellular org...",8,3,3.35,364,"0.728","0.973","0.973" +"GO:1902531","regulation of intracellular signal trans...",10,3,4.19,474,"0.868","0.974","0.974" +"GO:0000904","cell morphogenesis involved in different...",3,1,1.26,437,"0.806","0.974","0.974" +"GO:0001764","neuron migration",3,1,1.26,438,"0.806","0.974","0.974" +"GO:0007409","axonogenesis",3,1,1.26,439,"0.806","0.974","0.974" +"GO:0008284","positive regulation of cell proliferatio...",3,1,1.26,440,"0.806","0.974","0.974" +"GO:0048598","embryonic morphogenesis",3,1,1.26,441,"0.806","0.974","0.974" +"GO:0048667","cell morphogenesis involved in neuron di...",3,1,1.26,442,"0.806","0.974","0.974" +"GO:0048812","neuron projection morphogenesis",3,1,1.26,443,"0.806","0.974","0.974" +"GO:0048858","cell projection morphogenesis",3,1,1.26,444,"0.806","0.974","0.974" +"GO:0060562","epithelial tube morphogenesis",3,1,1.26,445,"0.806","0.974","0.974" +"GO:0061564","axon development",3,1,1.26,446,"0.806","0.974","0.974" +"GO:0120039","plasma membrane bounded cell projection ...",3,1,1.26,447,"0.806","0.974","0.974" +"GO:0033036","macromolecule localization",18,5,7.55,538,"0.939","0.975","0.975" +"GO:0007166","cell surface receptor signaling pathway",9,3,3.77,462,"0.809","0.977","0.977" +"GO:0010604","positive regulation of macromolecule met...",9,3,3.77,463,"0.809","0.977","0.977" +"GO:0030182","neuron differentiation",9,3,3.77,464,"0.809","0.977","0.977" +"GO:0050790","regulation of catalytic activity",9,2,3.77,543,"0.948","0.977","0.977" +"GO:0071702","organic substance transport",12,4,5.03,471,"0.821","0.977","0.977" +"GO:1901615","organic hydroxy compound metabolic proce...",3,1,1.26,448,"0.806","0.978","0.978" +"GO:0030258","lipid modification",3,0,1.26,565,"1.000","0.978","0.978" +"GO:0046488","phosphatidylinositol metabolic process",3,0,1.26,566,"1.000","0.978","0.978" +"GO:0006082","organic acid metabolic process",4,0,1.68,567,"1.000","0.979","0.979" +"GO:0019752","carboxylic acid metabolic process",4,0,1.68,568,"1.000","0.979","0.979" +"GO:0043436","oxoacid metabolic process",4,0,1.68,569,"1.000","0.979","0.979" +"GO:0009791","post-embryonic development",4,1,1.68,513,"0.889","0.979","0.979" +"GO:0051336","regulation of hydrolase activity",6,2,2.52,385,"0.799","0.980","0.980" +"GO:1901575","organic substance catabolic process",13,3,5.45,548,"0.961","0.981","0.981" +"GO:0032989","cellular component morphogenesis",5,1,2.1,534,"0.936","0.983","0.983" +"GO:0051186","cofactor metabolic process",3,1,1.26,449,"0.806","0.985","0.985" +"GO:0044282","small molecule catabolic process",3,0,1.26,570,"1.000","0.985","0.985" +"GO:0044093","positive regulation of molecular functio...",6,2,2.52,386,"0.799","0.985","0.985" +"GO:0032990","cell part morphogenesis",4,1,1.68,514,"0.889","0.987","0.987" +"GO:0044248","cellular catabolic process",14,3,5.87,556,"0.975","0.987","0.987" +"GO:0010562","positive regulation of phosphorus metabo...",5,1,2.1,535,"0.936","0.987","0.987" +"GO:0045937","positive regulation of phosphate metabol...",5,1,2.1,536,"0.936","0.987","0.987" +"GO:0031401","positive regulation of protein modificat...",4,1,1.68,515,"0.889","0.990","0.990" +"GO:0032270","positive regulation of cellular protein ...",4,1,1.68,516,"0.889","0.990","0.990" +"GO:0042327","positive regulation of phosphorylation",4,1,1.68,517,"0.889","0.990","0.990" +"GO:0051247","positive regulation of protein metabolic...",4,1,1.68,518,"0.889","0.990","0.990" +"GO:0010720","positive regulation of cell development",3,1,1.26,450,"0.806","0.990","0.990" +"GO:0016055","Wnt signaling pathway",3,1,1.26,451,"0.806","0.990","0.990" +"GO:0045666","positive regulation of neuron differenti...",3,1,1.26,452,"0.806","0.990","0.990" +"GO:0050769","positive regulation of neurogenesis",3,1,1.26,453,"0.806","0.990","0.990" +"GO:0051962","positive regulation of nervous system de...",3,1,1.26,454,"0.806","0.990","0.990" +"GO:0198738","cell-cell signaling by wnt",3,1,1.26,455,"0.806","0.990","0.990" +"GO:1905114","cell surface receptor signaling pathway ...",3,1,1.26,456,"0.806","0.990","0.990" +"GO:0001934","positive regulation of protein phosphory...",3,1,1.26,457,"0.806","0.992","0.992" +"GO:0043410","positive regulation of MAPK cascade",3,1,1.26,458,"0.806","0.992","0.992" +"GO:0051640","organelle localization",4,1,1.68,519,"0.889","0.993","0.993" +"GO:0006508","proteolysis",8,2,3.35,523,"0.917","0.994","0.994" +"GO:0009607","response to biotic stimulus",3,1,1.26,459,"0.806","0.994","0.994" +"GO:0009056","catabolic process",17,4,7.13,555,"0.972","0.996","0.996" +"GO:0033554","cellular response to stress",10,2,4.19,552,"0.968","0.996","0.996" +"GO:1901565","organonitrogen compound catabolic proces...",9,2,3.77,544,"0.948","0.998","0.998" +"GO:0009057","macromolecule catabolic process",5,1,2.1,537,"0.936","0.999","0.999" +"GO:0044265","cellular macromolecule catabolic process",4,0,1.68,571,"1.000","0.999","0.999" +"GO:0006511","ubiquitin-dependent protein catabolic pr...",3,0,1.26,572,"1.000","0.999","0.999" +"GO:0010256","endomembrane system organization",3,0,1.26,573,"1.000","0.999","0.999" +"GO:0019941","modification-dependent protein catabolic...",3,0,1.26,574,"1.000","0.999","0.999" +"GO:0043632","modification-dependent macromolecule cat...",3,0,1.26,575,"1.000","0.999","0.999" +"GO:0044257","cellular protein catabolic process",3,0,1.26,576,"1.000","0.999","0.999" +"GO:0051603","proteolysis involved in cellular protein...",3,0,1.26,577,"1.000","0.999","0.999" +"GO:0007049","cell cycle",9,3,3.77,465,"0.809","1.000","1.000" +"GO:0008150","biological_process",198,83,83,578,"1.000","1.000","1.000" diff --git a/GO_enrichment_output/contrast_arresting_prelaying_downregulated.csv b/GO_enrichment_output/contrast_arresting_prelaying_downregulated.csv index bf08398..7f97b49 100644 --- a/GO_enrichment_output/contrast_arresting_prelaying_downregulated.csv +++ b/GO_enrichment_output/contrast_arresting_prelaying_downregulated.csv @@ -1,6 +1,1097 @@ "GO.ID","Term","Annotated","Significant","Expected","Rank in classicFisher","classicFisher","classicKS","elimKS" "GO:0055114","oxidation-reduction process",179,106,77.5,1,"6.1e-06","6.5e-06","2.1e-06" "GO:0055085","transmembrane transport",262,142,113.44,2,"0.00011","6.9e-05","6.9e-05" -"GO:0044242","cellular lipid catabolic process",15,12,6.49,7,"0.00420","0.00073","0.00073" -"GO:0002026","regulation of the force of heart contrac...",9,8,3.9,18,"0.00675","0.00124","0.00124" -"GO:0070527","platelet aggregation",9,8,3.9,19,"0.00675","0.00124","0.00124" +"GO:0044242","cellular lipid catabolic process",15,12,6.49,5,"0.00420","0.00073","0.00073" +"GO:0007596","blood coagulation",11,9,4.76,13,"0.01084","0.00167","0.00167" +"GO:0045214","sarcomere organization",11,9,4.76,14,"0.01084","0.00167","0.00167" +"GO:0001738","morphogenesis of a polarized epithelium",10,8,4.33,23,"0.02091","0.00440","0.00440" +"GO:0006631","fatty acid metabolic process",24,16,10.39,22,"0.01747","0.00495","0.00495" +"GO:0008016","regulation of heart contraction",17,13,7.36,8,"0.00565","0.00499","0.00499" +"GO:0006820","anion transport",39,25,16.89,10,"0.00672","0.00502","0.00502" +"GO:0044281","small molecule metabolic process",251,125,108.68,21,"0.01662","0.00199","0.00654" +"GO:0045333","cellular respiration",25,12,10.82,208,"0.38908","0.00766","0.00766" +"GO:0042445","hormone metabolic process",19,10,8.23,151,"0.27521","0.00936","0.00936" +"GO:0009612","response to mechanical stimulus",21,12,9.09,90,"0.14357","0.01486","0.01486" +"GO:0001894","tissue homeostasis",18,11,7.79,71,"0.09864","0.01506","0.01506" +"GO:0009308","amine metabolic process",12,8,5.2,65,"0.08972","0.01666","0.01666" +"GO:0044106","cellular amine metabolic process",12,8,5.2,66,"0.08972","0.01666","0.01666" +"GO:0006082","organic acid metabolic process",107,60,46.33,6,"0.00441","0.00228","0.01684" +"GO:0043436","oxoacid metabolic process",107,60,46.33,7,"0.00441","0.00228","0.01684" +"GO:0019752","carboxylic acid metabolic process",106,59,45.9,9,"0.00591","0.00305","0.01942" +"GO:0006874","cellular calcium ion homeostasis",18,12,7.79,38,"0.03881","0.02025","0.02025" +"GO:0072503","cellular divalent inorganic cation homeo...",18,12,7.79,39,"0.03881","0.02025","0.02025" +"GO:0060249","anatomical structure homeostasis",23,12,9.96,147,"0.25589","0.02045","0.02045" +"GO:0098656","anion transmembrane transport",16,12,6.93,12,"0.01021","0.02298","0.02298" +"GO:0051091","positive regulation of DNA-binding trans...",14,9,6.06,70,"0.09412","0.02463","0.02463" +"GO:0009116","nucleoside metabolic process",15,10,6.49,46,"0.05861","0.02477","0.02477" +"GO:1901657","glycosyl compound metabolic process",15,10,6.49,47,"0.05861","0.02477","0.02477" +"GO:0007164","establishment of tissue polarity",10,7,4.33,62,"0.08308","0.02904","0.02904" +"GO:0043010","camera-type eye development",32,17,13.86,109,"0.17085","0.02925","0.02925" +"GO:0015711","organic anion transport",26,16,11.26,42,"0.04624","0.02993","0.02993" +"GO:0006720","isoprenoid metabolic process",18,10,7.79,120,"0.20689","0.03243","0.03243" +"GO:0009581","detection of external stimulus",19,12,8.23,50,"0.06463","0.03277","0.03277" +"GO:0009582","detection of abiotic stimulus",19,12,8.23,51,"0.06463","0.03277","0.03277" +"GO:0015849","organic acid transport",22,13,9.53,80,"0.09975","0.03409","0.03409" +"GO:0046942","carboxylic acid transport",22,13,9.53,81,"0.09975","0.03409","0.03409" +"GO:0048871","multicellular organismal homeostasis",19,11,8.23,96,"0.14541","0.03468","0.03468" +"GO:0034754","cellular hormone metabolic process",10,6,4.33,134,"0.22608","0.03504","0.03504" +"GO:0009060","aerobic respiration",14,7,6.06,212,"0.40232","0.03553","0.03553" +"GO:0006875","cellular metal ion homeostasis",21,14,9.09,28,"0.02595","0.03585","0.03585" +"GO:0017144","drug metabolic process",115,58,49.79,59,"0.06880","0.03676","0.03676" +"GO:0055074","calcium ion homeostasis",19,12,8.23,52,"0.06463","0.03749","0.03749" +"GO:0006979","response to oxidative stress",38,20,16.45,105,"0.15723","0.04069","0.04069" +"GO:0016241","regulation of macroautophagy",10,5,4.33,252,"0.45126","0.04220","0.04220" +"GO:0015698","inorganic anion transport",12,9,5.2,30,"0.02677","0.04355","0.04355" +"GO:0051090","regulation of DNA-binding transcription ...",15,9,6.49,103,"0.14738","0.04563","0.04563" +"GO:0051602","response to electrical stimulus",10,6,4.33,135,"0.22608","0.04614","0.04614" +"GO:1901135","carbohydrate derivative metabolic proces...",174,85,75.34,61,"0.07279","0.04681","0.04681" +"GO:0072593","reactive oxygen species metabolic proces...",11,7,4.76,94,"0.14489","0.04863","0.04863" +"GO:0051606","detection of stimulus",21,13,9.09,53,"0.06647","0.04897","0.04897" +"GO:0019637","organophosphate metabolic process",146,69,63.21,111,"0.18067","0.05107","0.05107" +"GO:0006030","chitin metabolic process",31,19,13.42,34,"0.03247","0.05583","0.05583" +"GO:0022900","electron transport chain",14,8,6.06,123,"0.21738","0.05686","0.05686" +"GO:0034762","regulation of transmembrane transport",25,14,10.82,87,"0.13896","0.05816","0.05816" +"GO:0097164","ammonium ion metabolic process",17,9,7.36,160,"0.28588","0.05965","0.05965" +"GO:0006022","aminoglycan metabolic process",34,21,14.72,24,"0.02239","0.06021","0.06021" +"GO:0099173","postsynapse organization",12,8,5.2,67,"0.08972","0.06067","0.06067" +"GO:0005996","monosaccharide metabolic process",20,11,8.66,117,"0.20151","0.06134","0.06134" +"GO:1901071","glucosamine-containing compound metaboli...",34,21,14.72,25,"0.02239","0.06166","0.06166" +"GO:0005975","carbohydrate metabolic process",84,45,36.37,36,"0.03460","0.06233","0.06233" +"GO:0072507","divalent inorganic cation homeostasis",20,13,8.66,40,"0.04138","0.06378","0.06378" +"GO:0006099","tricarboxylic acid cycle",12,6,5.2,222,"0.42489","0.06402","0.06402" +"GO:0016053","organic acid biosynthetic process",33,19,14.29,56,"0.06869","0.06534","0.06534" +"GO:0046394","carboxylic acid biosynthetic process",33,19,14.29,57,"0.06869","0.06534","0.06534" +"GO:0042133","neurotransmitter metabolic process",12,7,5.2,128,"0.22213","0.06840","0.06840" +"GO:0034220","ion transmembrane transport",99,52,42.86,37,"0.03718","0.06939","0.06939" +"GO:1903825","organic acid transmembrane transport",14,10,6.06,31,"0.03163","0.07093","0.07093" +"GO:1905039","carboxylic acid transmembrane transport",14,10,6.06,32,"0.03163","0.07093","0.07093" +"GO:0030258","lipid modification",17,10,7.36,99,"0.14676","0.07317","0.07317" +"GO:0006040","amino sugar metabolic process",35,21,15.15,35,"0.03361","0.07862","0.07862" +"GO:1905330","regulation of morphogenesis of an epithe...",10,7,4.33,63,"0.08308","0.08421","0.08421" +"GO:0009072","aromatic amino acid family metabolic pro...",12,6,5.2,223,"0.42489","0.08432","0.08432" +"GO:0009108","coenzyme biosynthetic process",36,19,15.59,107,"0.16164","0.09142","0.09142" +"GO:0006469","negative regulation of protein kinase ac...",16,8,6.93,202,"0.38253","0.09180","0.09180" +"GO:0055065","metal ion homeostasis",23,14,9.96,54,"0.06772","0.09243","0.09243" +"GO:0019216","regulation of lipid metabolic process",14,7,6.06,213,"0.40232","0.09362","0.09362" +"GO:0003333","amino acid transmembrane transport",11,8,4.76,43,"0.04775","0.09397","0.09397" +"GO:0071214","cellular response to abiotic stimulus",17,9,7.36,161,"0.28588","0.09540","0.09540" +"GO:0104004","cellular response to environmental stimu...",17,9,7.36,162,"0.28588","0.09540","0.09540" +"GO:0046434","organophosphate catabolic process",20,12,8.66,75,"0.09951","0.09762","0.09762" +"GO:0033993","response to lipid",54,28,23.38,83,"0.12639","0.10234","0.10234" +"GO:1902904","negative regulation of supramolecular fi...",14,10,6.06,33,"0.03163","0.10251","0.10251" +"GO:0022904","respiratory electron transport chain",12,6,5.2,224,"0.42489","0.10273","0.10273" +"GO:0044272","sulfur compound biosynthetic process",13,8,5.63,100,"0.14694","0.10310","0.10310" +"GO:0014902","myotube differentiation",12,7,5.2,129,"0.22213","0.10904","0.10904" +"GO:0055086","nucleobase-containing small molecule met...",103,46,44.6,239,"0.42552","0.11479","0.11479" +"GO:0060048","cardiac muscle contraction",12,8,5.2,68,"0.08972","0.12199","0.12199" +"GO:0055082","cellular chemical homeostasis",26,15,11.26,74,"0.09893","0.12295","0.12295" +"GO:0072350","tricarboxylic acid metabolic process",14,7,6.06,214,"0.40232","0.12296","0.12296" +"GO:0007568","aging",27,16,11.69,60,"0.06896","0.12427","0.12427" +"GO:0034765","regulation of ion transmembrane transpor...",20,10,8.66,189,"0.34891","0.12452","0.12452" +"GO:0006629","lipid metabolic process",146,80,63.21,4,"0.00258","0.00354","0.12476" +"GO:0061640","cytoskeleton-dependent cytokinesis",11,6,4.76,176,"0.32351","0.12551","0.12551" +"GO:1901606","alpha-amino acid catabolic process",10,7,4.33,64,"0.08308","0.12756","0.12756" +"GO:0060041","retina development in camera-type eye",23,12,9.96,148,"0.25589","0.12839","0.12839" +"GO:0006865","amino acid transport",12,8,5.2,69,"0.08972","0.13037","0.13037" +"GO:1901617","organic hydroxy compound biosynthetic pr...",21,10,9.09,234,"0.42497","0.13210","0.13210" +"GO:0072330","monocarboxylic acid biosynthetic process",20,12,8.66,76,"0.09951","0.13238","0.13238" +"GO:0033673","negative regulation of kinase activity",17,8,7.36,273,"0.46843","0.13270","0.13270" +"GO:0006873","cellular ion homeostasis",24,14,10.39,77,"0.09952","0.13592","0.13592" +"GO:0030003","cellular cation homeostasis",24,14,10.39,78,"0.09952","0.13592","0.13592" +"GO:0048593","camera-type eye morphogenesis",14,8,6.06,124,"0.21738","0.13776","0.13776" +"GO:0015980","energy derivation by oxidation of organi...",33,17,14.29,122,"0.21623","0.00780","0.14197" +"GO:0006732","coenzyme metabolic process",49,24,21.22,145,"0.25186","0.14393","0.14393" +"GO:0016052","carbohydrate catabolic process",15,8,6.49,166,"0.29738","0.14457","0.14457" +"GO:1904062","regulation of cation transmembrane trans...",19,9,8.23,245,"0.44557","0.14476","0.14476" +"GO:0016358","dendrite development",19,8,8.23,363,"0.62817","0.14803","0.14803" +"GO:0007286","spermatid development",17,11,7.36,48,"0.06208","0.14895","0.14895" +"GO:0048515","spermatid differentiation",17,11,7.36,49,"0.06208","0.14895","0.14895" +"GO:0010975","regulation of neuron projection developm...",28,12,12.12,346,"0.59112","0.14989","0.14989" +"GO:0016051","carbohydrate biosynthetic process",18,11,7.79,72,"0.09864","0.15261","0.15261" +"GO:0007186","G protein-coupled receptor signaling pat...",89,40,38.53,221,"0.41496","0.15747","0.15747" +"GO:0051188","cofactor biosynthetic process",43,22,18.62,112,"0.18499","0.15881","0.15881" +"GO:0072524","pyridine-containing compound metabolic p...",24,12,10.39,175,"0.32092","0.15890","0.15890" +"GO:0051494","negative regulation of cytoskeleton orga...",13,9,5.63,45,"0.05395","0.16530","0.16530" +"GO:0006101","citrate metabolic process",13,6,5.63,300,"0.52350","0.16667","0.16667" +"GO:0043648","dicarboxylic acid metabolic process",10,6,4.33,136,"0.22608","0.17053","0.17053" +"GO:0072525","pyridine-containing compound biosyntheti...",19,10,8.23,152,"0.27521","0.17161","0.17161" +"GO:0006066","alcohol metabolic process",23,11,9.96,219,"0.40625","0.17187","0.17187" +"GO:0006090","pyruvate metabolic process",14,8,6.06,125,"0.21738","0.17605","0.17605" +"GO:0009166","nucleotide catabolic process",14,7,6.06,215,"0.40232","0.17605","0.17605" +"GO:1901292","nucleoside phosphate catabolic process",14,7,6.06,216,"0.40232","0.17605","0.17605" +"GO:0008202","steroid metabolic process",24,14,10.39,79,"0.09952","0.17967","0.17967" +"GO:0016054","organic acid catabolic process",19,11,8.23,97,"0.14541","0.18080","0.18080" +"GO:0046395","carboxylic acid catabolic process",19,11,8.23,98,"0.14541","0.18080","0.18080" +"GO:0050801","ion homeostasis",37,19,16.02,119,"0.20291","0.18343","0.18343" +"GO:0042773","ATP synthesis coupled electron transport",10,4,4.33,423,"0.69705","0.18367","0.18367" +"GO:0035148","tube formation",12,5,5.2,384,"0.65259","0.18484","0.18484" +"GO:0006753","nucleoside phosphate metabolic process",92,38,39.83,418,"0.69056","0.18614","0.18614" +"GO:0016999","antibiotic metabolic process",16,7,6.93,334,"0.58095","0.18696","0.18696" +"GO:0007623","circadian rhythm",13,6,5.63,301,"0.52350","0.18790","0.18790" +"GO:0009117","nucleotide metabolic process",91,38,39.4,392,"0.65771","0.19133","0.19133" +"GO:0019318","hexose metabolic process",16,9,6.93,121,"0.21223","0.19421","0.19421" +"GO:0022898","regulation of transmembrane transporter ...",17,7,7.36,394,"0.65972","0.19519","0.19519" +"GO:0032409","regulation of transporter activity",17,7,7.36,395,"0.65972","0.19519","0.19519" +"GO:0032412","regulation of ion transmembrane transpor...",17,7,7.36,396,"0.65972","0.19519","0.19519" +"GO:0032787","monocarboxylic acid metabolic process",43,27,18.62,11,"0.00738","0.00369","0.19711" +"GO:0090407","organophosphate biosynthetic process",87,41,37.67,149,"0.26533","0.19817","0.19817" +"GO:0046486","glycerolipid metabolic process",38,20,16.45,106,"0.15723","0.19837","0.19837" +"GO:0071396","cellular response to lipid",37,18,16.02,170,"0.30863","0.20317","0.20317" +"GO:0006793","phosphorus metabolic process",354,151,153.27,361,"0.62609","0.20558","0.20558" +"GO:0120036","plasma membrane bounded cell projection ...",99,38,42.86,606,"0.86724","0.20824","0.20824" +"GO:0055080","cation homeostasis",31,17,13.42,84,"0.13094","0.20845","0.20845" +"GO:0098771","inorganic ion homeostasis",31,17,13.42,85,"0.13094","0.20845","0.20845" +"GO:0006941","striated muscle contraction",13,8,5.63,101,"0.14694","0.21078","0.21078" +"GO:2000027","regulation of animal organ morphogenesis",11,6,4.76,177,"0.32351","0.21127","0.21127" +"GO:0009063","cellular amino acid catabolic process",13,8,5.63,102,"0.14694","0.21285","0.21285" +"GO:0009123","nucleoside monophosphate metabolic proce...",46,18,19.92,502,"0.76506","0.21310","0.21310" +"GO:0009161","ribonucleoside monophosphate metabolic p...",46,18,19.92,503,"0.76506","0.21310","0.21310" +"GO:0001933","negative regulation of protein phosphory...",28,13,12.12,242,"0.43941","0.21330","0.21330" +"GO:0006796","phosphate-containing compound metabolic ...",352,151,152.41,345,"0.58745","0.21335","0.21335" +"GO:0051668","localization within membrane",10,6,4.33,137,"0.22608","0.21358","0.21358" +"GO:0006766","vitamin metabolic process",11,7,4.76,95,"0.14489","0.21500","0.21500" +"GO:0044283","small molecule biosynthetic process",60,27,25.98,244,"0.44312","0.21682","0.21682" +"GO:0007601","visual perception",11,6,4.76,178,"0.32351","0.22119","0.22119" +"GO:0050953","sensory perception of light stimulus",11,6,4.76,179,"0.32351","0.22119","0.22119" +"GO:0032984","protein-containing complex disassembly",15,7,6.49,285,"0.49414","0.22148","0.22148" +"GO:0031109","microtubule polymerization or depolymeri...",10,6,4.33,138,"0.22608","0.22407","0.22407" +"GO:2001257","regulation of cation channel activity",16,7,6.93,335,"0.58095","0.22634","0.22634" +"GO:0051186","cofactor metabolic process",68,32,29.44,169,"0.30338","0.22701","0.22701" +"GO:0007420","brain development",51,20,22.08,506,"0.76864","0.22844","0.22844" +"GO:0007417","central nervous system development",67,25,29.01,607,"0.87079","0.22859","0.22859" +"GO:0007409","axonogenesis",28,12,12.12,347,"0.59112","0.23012","0.23012" +"GO:0050773","regulation of dendrite development",16,8,6.93,203,"0.38253","0.23044","0.23044" +"GO:0006119","oxidative phosphorylation",13,5,5.63,471,"0.73327","0.23135","0.23135" +"GO:0030111","regulation of Wnt signaling pathway",13,4,5.63,643,"0.88558","0.23345","0.23345" +"GO:0006650","glycerophospholipid metabolic process",34,18,14.72,108,"0.16618","0.23579","0.23579" +"GO:0008652","cellular amino acid biosynthetic process",12,6,5.2,225,"0.42489","0.23770","0.23770" +"GO:1901607","alpha-amino acid biosynthetic process",12,6,5.2,226,"0.42489","0.23770","0.23770" +"GO:0009141","nucleoside triphosphate metabolic proces...",42,15,18.18,615,"0.87723","0.23886","0.23886" +"GO:0009144","purine nucleoside triphosphate metabolic...",42,15,18.18,616,"0.87723","0.23886","0.23886" +"GO:0051348","negative regulation of transferase activ...",19,9,8.23,246,"0.44557","0.23896","0.23896" +"GO:0006081","cellular aldehyde metabolic process",14,7,6.06,217,"0.40232","0.24030","0.24030" +"GO:0070838","divalent metal ion transport",21,12,9.09,91,"0.14357","0.24162","0.24162" +"GO:0072511","divalent inorganic cation transport",21,12,9.09,92,"0.14357","0.24162","0.24162" +"GO:0010506","regulation of autophagy",16,7,6.93,336,"0.58095","0.24322","0.24322" +"GO:0030030","cell projection organization",103,39,44.6,660,"0.89308","0.24710","0.24710" +"GO:0009165","nucleotide biosynthetic process",61,27,26.41,281,"0.48852","0.24778","0.24778" +"GO:1901293","nucleoside phosphate biosynthetic proces...",61,27,26.41,282,"0.48852","0.24778","0.24778" +"GO:1901615","organic hydroxy compound metabolic proce...",43,21,18.62,157,"0.27810","0.24917","0.24917" +"GO:0006643","membrane lipid metabolic process",17,9,7.36,163,"0.28588","0.25063","0.25063" +"GO:0098609","cell-cell adhesion",57,28,24.68,127,"0.22199","0.25346","0.25346" +"GO:0046165","alcohol biosynthetic process",10,4,4.33,424,"0.69705","0.25349","0.25349" +"GO:0000281","mitotic cytokinesis",10,5,4.33,253,"0.45126","0.25465","0.25465" +"GO:0006816","calcium ion transport",20,11,8.66,118,"0.20151","0.25571","0.25571" +"GO:1902115","regulation of organelle assembly",15,8,6.49,167,"0.29738","0.25643","0.25643" +"GO:0042326","negative regulation of phosphorylation",29,13,12.56,291,"0.50510","0.25950","0.25950" +"GO:0042391","regulation of membrane potential",15,7,6.49,286,"0.49414","0.26218","0.26218" +"GO:0006644","phospholipid metabolic process",44,23,19.05,93,"0.14478","0.26333","0.26333" +"GO:0072521","purine-containing compound metabolic pro...",70,29,30.31,410,"0.66943","0.26406","0.26406" +"GO:0019362","pyridine nucleotide metabolic process",21,10,9.09,235,"0.42497","0.26550","0.26550" +"GO:0046496","nicotinamide nucleotide metabolic proces...",21,10,9.09,236,"0.42497","0.26550","0.26550" +"GO:0001654","eye development",49,23,21.22,191,"0.35228","0.26806","0.26806" +"GO:0048880","sensory system development",49,23,21.22,192,"0.35228","0.26806","0.26806" +"GO:0150063","visual system development",49,23,21.22,193,"0.35228","0.26806","0.26806" +"GO:0006486","protein glycosylation",32,16,13.86,154,"0.27588","0.27153","0.27153" +"GO:0043413","macromolecule glycosylation",32,16,13.86,155,"0.27588","0.27153","0.27153" +"GO:0070085","glycosylation",32,16,13.86,156,"0.27588","0.27153","0.27153" +"GO:0009628","response to abiotic stimulus",73,36,31.61,110,"0.17488","0.27200","0.27200" +"GO:0048878","chemical homeostasis",49,24,21.22,146,"0.25186","0.27366","0.27366" +"GO:0061564","axon development",35,15,15.15,343,"0.58594","0.27614","0.27614" +"GO:0060042","retina morphogenesis in camera-type eye",12,7,5.2,130,"0.22213","0.27616","0.27616" +"GO:0010035","response to inorganic substance",25,13,10.82,144,"0.24708","0.27686","0.27686" +"GO:0035966","response to topologically incorrect prot...",12,7,5.2,131,"0.22213","0.27839","0.27839" +"GO:0009199","ribonucleoside triphosphate metabolic pr...",41,15,17.75,588,"0.84962","0.27955","0.27955" +"GO:0009205","purine ribonucleoside triphosphate metab...",41,15,17.75,589,"0.84962","0.27955","0.27955" +"GO:0070588","calcium ion transmembrane transport",13,7,5.63,171,"0.30985","0.28310","0.28310" +"GO:0060322","head development",53,21,22.95,488,"0.75259","0.29034","0.29034" +"GO:0006605","protein targeting",16,8,6.93,204,"0.38253","0.29054","0.29054" +"GO:0006164","purine nucleotide biosynthetic process",45,20,19.48,288,"0.49540","0.29241","0.29241" +"GO:0072522","purine-containing compound biosynthetic ...",45,20,19.48,289,"0.49540","0.29241","0.29241" +"GO:0031589","cell-substrate adhesion",11,5,4.76,320,"0.55772","0.29324","0.29324" +"GO:0019359","nicotinamide nucleotide biosynthetic pro...",16,8,6.93,205,"0.38253","0.29463","0.29463" +"GO:0019363","pyridine nucleotide biosynthetic process",16,8,6.93,206,"0.38253","0.29463","0.29463" +"GO:0034404","nucleobase-containing small molecule bio...",16,7,6.93,337,"0.58095","0.29463","0.29463" +"GO:0043086","negative regulation of catalytic activit...",34,15,14.72,308,"0.52761","0.29651","0.29651" +"GO:1901137","carbohydrate derivative biosynthetic pro...",88,39,38.1,272,"0.46341","0.30010","0.30010" +"GO:0032989","cellular component morphogenesis",86,37,37.24,325,"0.56298","0.19354","0.30024" +"GO:0006091","generation of precursor metabolites and ...",46,24,19.92,89,"0.14088","0.00952","0.30073" +"GO:0035051","cardiocyte differentiation",12,6,5.2,227,"0.42489","0.30494","0.30494" +"GO:0045445","myoblast differentiation",12,7,5.2,132,"0.22213","0.30494","0.30494" +"GO:0045661","regulation of myoblast differentiation",12,7,5.2,133,"0.22213","0.30494","0.30494" +"GO:0048511","rhythmic process",18,8,7.79,318,"0.55128","0.30779","0.30779" +"GO:0051270","regulation of cellular component movemen...",30,13,12.99,326,"0.56867","0.30797","0.30797" +"GO:0009408","response to heat",17,7,7.36,397,"0.65972","0.31118","0.31118" +"GO:0046677","response to antibiotic",17,9,7.36,164,"0.28588","0.31118","0.31118" +"GO:0001505","regulation of neurotransmitter levels",28,14,12.12,165,"0.29691","0.31390","0.31390" +"GO:0009260","ribonucleotide biosynthetic process",43,19,18.62,294,"0.51188","0.31568","0.31568" +"GO:0046390","ribose phosphate biosynthetic process",43,19,18.62,295,"0.51188","0.31568","0.31568" +"GO:0044255","cellular lipid metabolic process",96,53,41.57,17,"0.01100","0.00169","0.32371" +"GO:0046034","ATP metabolic process",40,15,17.32,553,"0.81748","0.32521","0.32521" +"GO:0009152","purine ribonucleotide biosynthetic proce...",42,19,18.18,269,"0.45794","0.32795","0.32795" +"GO:0048545","response to steroid hormone",29,13,12.56,292,"0.50510","0.33107","0.33107" +"GO:0000902","cell morphogenesis",64,26,27.71,451,"0.71270","0.33202","0.33202" +"GO:0009126","purine nucleoside monophosphate metaboli...",43,17,18.62,483,"0.74324","0.33541","0.33541" +"GO:0009167","purine ribonucleoside monophosphate meta...",43,17,18.62,484,"0.74324","0.33541","0.33541" +"GO:0009611","response to wounding",30,18,12.99,44,"0.04779","0.04261","0.33555" +"GO:0060828","regulation of canonical Wnt signaling pa...",11,2,4.76,891,"0.98190","0.33677","0.33677" +"GO:0006163","purine nucleotide metabolic process",68,27,29.44,504,"0.76671","0.33742","0.33742" +"GO:0019693","ribose phosphate metabolic process",68,28,29.44,416,"0.68367","0.33742","0.33742" +"GO:0010563","negative regulation of phosphorus metabo...",34,14,14.72,404,"0.66224","0.33911","0.33911" +"GO:0045936","negative regulation of phosphate metabol...",34,14,14.72,405,"0.66224","0.33911","0.33911" +"GO:0007005","mitochondrion organization",31,13,13.42,370,"0.62874","0.33930","0.33930" +"GO:0007626","locomotory behavior",11,4,4.76,508,"0.77667","0.34174","0.34174" +"GO:1901605","alpha-amino acid metabolic process",25,14,10.82,88,"0.13896","0.34555","0.34555" +"GO:0006936","muscle contraction",24,13,10.39,114,"0.19086","0.34897","0.34897" +"GO:0042461","photoreceptor cell development",10,6,4.33,139,"0.22608","0.34993","0.34993" +"GO:0042462","eye photoreceptor cell development",10,6,4.33,140,"0.22608","0.34993","0.34993" +"GO:0098742","cell-cell adhesion via plasma-membrane a...",20,8,8.66,439,"0.69719","0.35158","0.35158" +"GO:0032970","regulation of actin filament-based proce...",31,17,13.42,86,"0.13094","0.35378","0.35378" +"GO:0006508","proteolysis",138,58,59.75,390,"0.65379","0.35737","0.35737" +"GO:0044282","small molecule catabolic process",27,14,11.69,142,"0.23876","0.35750","0.35750" +"GO:0007423","sensory organ development",62,27,26.84,314,"0.53341","0.35818","0.35818" +"GO:0032990","cell part morphogenesis",46,20,19.92,315,"0.54721","0.35883","0.35883" +"GO:0042493","response to drug",43,21,18.62,158,"0.27810","0.35950","0.35950" +"GO:0009416","response to light stimulus",18,9,7.79,198,"0.36487","0.36202","0.36202" +"GO:0007610","behavior",53,24,22.95,241,"0.43620","0.36360","0.36360" +"GO:0031400","negative regulation of protein modificat...",38,15,16.45,479,"0.73878","0.36413","0.36413" +"GO:0009259","ribonucleotide metabolic process",64,26,27.71,452,"0.71270","0.36461","0.36461" +"GO:0048812","neuron projection morphogenesis",43,19,18.62,296,"0.51188","0.36536","0.36536" +"GO:0048858","cell projection morphogenesis",43,19,18.62,297,"0.51188","0.36536","0.36536" +"GO:0120039","plasma membrane bounded cell projection ...",43,19,18.62,298,"0.51188","0.36536","0.36536" +"GO:0000910","cytokinesis",15,7,6.49,287,"0.49414","0.36577","0.36577" +"GO:0048738","cardiac muscle tissue development",17,8,7.36,274,"0.46843","0.36605","0.36605" +"GO:0072657","protein localization to membrane",23,9,9.96,465,"0.72885","0.36746","0.36746" +"GO:0033365","protein localization to organelle",35,14,15.15,454,"0.71311","0.36819","0.36819" +"GO:0048771","tissue remodeling",14,7,6.06,218,"0.40232","0.36920","0.36920" +"GO:0009101","glycoprotein biosynthetic process",33,16,14.29,187,"0.33203","0.37015","0.37015" +"GO:0006733","oxidoreduction coenzyme metabolic proces...",23,10,9.96,329,"0.57301","0.37230","0.37230" +"GO:0031099","regeneration",10,5,4.33,254,"0.45126","0.37622","0.37622" +"GO:0007155","cell adhesion",91,42,39.4,185,"0.32402","0.37716","0.37716" +"GO:0022610","biological adhesion",91,42,39.4,186,"0.32402","0.37716","0.37716" +"GO:0009100","glycoprotein metabolic process",38,17,16.45,283,"0.49094","0.37852","0.37852" +"GO:0006096","glycolytic process",10,5,4.33,255,"0.45126","0.37911","0.37911" +"GO:0006165","nucleoside diphosphate phosphorylation",10,5,4.33,256,"0.45126","0.37911","0.37911" +"GO:0006757","ATP generation from ADP",10,5,4.33,257,"0.45126","0.37911","0.37911" +"GO:0009135","purine nucleoside diphosphate metabolic ...",10,5,4.33,258,"0.45126","0.37911","0.37911" +"GO:0009179","purine ribonucleoside diphosphate metabo...",10,5,4.33,259,"0.45126","0.37911","0.37911" +"GO:0009185","ribonucleoside diphosphate metabolic pro...",10,5,4.33,260,"0.45126","0.37911","0.37911" +"GO:0042866","pyruvate biosynthetic process",10,5,4.33,261,"0.45126","0.37911","0.37911" +"GO:0046031","ADP metabolic process",10,5,4.33,262,"0.45126","0.37911","0.37911" +"GO:0046939","nucleotide phosphorylation",10,5,4.33,263,"0.45126","0.37911","0.37911" +"GO:0009605","response to external stimulus",119,51,51.52,332,"0.57561","0.37987","0.37987" +"GO:0006811","ion transport",189,95,81.83,29,"0.02648","0.06884","0.38624" +"GO:0043434","response to peptide hormone",12,6,5.2,228,"0.42489","0.38792","0.38792" +"GO:0030334","regulation of cell migration",24,9,10.39,523,"0.78184","0.39073","0.39073" +"GO:0008610","lipid biosynthetic process",56,28,24.25,113,"0.18691","0.39206","0.39206" +"GO:0009124","nucleoside monophosphate biosynthetic pr...",31,13,13.42,371,"0.62874","0.39916","0.39916" +"GO:0009156","ribonucleoside monophosphate biosyntheti...",31,13,13.42,372,"0.62874","0.39916","0.39916" +"GO:0009266","response to temperature stimulus",19,8,8.23,364,"0.62817","0.39984","0.39984" +"GO:0009150","purine ribonucleotide metabolic process",63,26,27.28,412,"0.67486","0.40030","0.40030" +"GO:0009636","response to toxic substance",23,11,9.96,220,"0.40625","0.40088","0.40088" +"GO:0072359","circulatory system development",53,17,22.95,831,"0.96631","0.40110","0.40110" +"GO:0050804","modulation of chemical synaptic transmis...",24,11,10.39,279,"0.47845","0.40216","0.40216" +"GO:0099177","regulation of trans-synaptic signaling",24,11,10.39,280,"0.47845","0.40216","0.40216" +"GO:0007612","learning",12,1,5.2,1031,"0.99892","0.40375","0.40375" +"GO:0022411","cellular component disassembly",18,7,7.79,461,"0.72872","0.40999","0.40999" +"GO:0001932","regulation of protein phosphorylation",54,19,23.38,682,"0.91360","0.41118","0.41118" +"GO:0016042","lipid catabolic process",21,16,9.09,3,"0.00221","0.00087","0.41516" +"GO:0031344","regulation of cell projection organizati...",42,16,18.18,542,"0.79991","0.41531","0.41531" +"GO:0120035","regulation of plasma membrane bounded ce...",42,16,18.18,543,"0.79991","0.41531","0.41531" +"GO:0043281","regulation of cysteine-type endopeptidas...",10,5,4.33,264,"0.45126","0.41698","0.41698" +"GO:0046474","glycerophospholipid biosynthetic process",15,8,6.49,168,"0.29738","0.42004","0.42004" +"GO:0045861","negative regulation of proteolysis",12,6,5.2,229,"0.42489","0.42642","0.42642" +"GO:0071407","cellular response to organic cyclic comp...",28,12,12.12,348,"0.59112","0.42769","0.42769" +"GO:2000145","regulation of cell motility",26,10,11.26,489,"0.75605","0.42998","0.42998" +"GO:0007507","heart development",40,11,17.32,918,"0.98753","0.43096","0.43096" +"GO:0016477","cell migration",40,15,17.32,554,"0.81748","0.43096","0.43096" +"GO:0006790","sulfur compound metabolic process",27,14,11.69,143,"0.23876","0.43260","0.43260" +"GO:0051248","negative regulation of protein metabolic...",55,21,23.81,558,"0.81896","0.43273","0.43273" +"GO:0014070","response to organic cyclic compound",46,21,19.92,240,"0.42805","0.43279","0.43279" +"GO:0000302","response to reactive oxygen species",13,6,5.63,302,"0.52350","0.43452","0.43452" +"GO:0052547","regulation of peptidase activity",14,6,6.06,355,"0.61438","0.43553","0.43553" +"GO:0009127","purine nucleoside monophosphate biosynth...",29,12,12.56,381,"0.65183","0.43732","0.43732" +"GO:0009168","purine ribonucleoside monophosphate bios...",29,12,12.56,382,"0.65183","0.43732","0.43732" +"GO:0065009","regulation of molecular function",119,50,51.52,380,"0.64839","0.44437","0.44437" +"GO:0009790","embryo development",74,23,32.04,938,"0.98949","0.44640","0.44640" +"GO:0071417","cellular response to organonitrogen comp...",14,5,6.06,533,"0.79933","0.45251","0.45251" +"GO:0040012","regulation of locomotion",31,13,13.42,373,"0.62874","0.45263","0.45263" +"GO:0001754","eye photoreceptor cell differentiation",12,6,5.2,230,"0.42489","0.45288","0.45288" +"GO:0046530","photoreceptor cell differentiation",12,6,5.2,231,"0.42489","0.45288","0.45288" +"GO:0048666","neuron development",84,34,36.37,481,"0.73912","0.45550","0.45550" +"GO:0040011","locomotion",73,29,31.61,507,"0.77131","0.45879","0.45879" +"GO:0006520","cellular amino acid metabolic process",43,21,18.62,159,"0.27810","0.45915","0.45915" +"GO:0050877","nervous system process",50,15,21.65,895,"0.98195","0.45930","0.45930" +"GO:1901654","response to ketone",11,6,4.76,180,"0.32351","0.46033","0.46033" +"GO:0033108","mitochondrial respiratory chain complex ...",10,4,4.33,425,"0.69705","0.46189","0.46189" +"GO:0006575","cellular modified amino acid metabolic p...",11,6,4.76,181,"0.32351","0.46228","0.46228" +"GO:0006836","neurotransmitter transport",23,10,9.96,330,"0.57301","0.46362","0.46362" +"GO:0006869","lipid transport",25,12,10.82,209,"0.38908","0.46524","0.46524" +"GO:0031175","neuron projection development",64,26,27.71,453,"0.71270","0.46851","0.46851" +"GO:0042157","lipoprotein metabolic process",10,4,4.33,426,"0.69705","0.46902","0.46902" +"GO:0046488","phosphatidylinositol metabolic process",20,9,8.66,307,"0.52465","0.46956","0.46956" +"GO:0006928","movement of cell or subcellular componen...",89,33,38.53,678,"0.90673","0.47332","0.47332" +"GO:0009617","response to bacterium",24,9,10.39,524,"0.78184","0.47390","0.47390" +"GO:0012501","programmed cell death",65,29,28.14,271,"0.46182","0.47574","0.47574" +"GO:0043588","skin development",11,3,4.76,690,"0.91971","0.47727","0.47727" +"GO:0003008","system process",88,36,38.1,457,"0.71473","0.30287","0.47923" +"GO:0007411","axon guidance",14,4,6.06,710,"0.92008","0.48187","0.48187" +"GO:0097485","neuron projection guidance",14,4,6.06,711,"0.92008","0.48187","0.48187" +"GO:0042325","regulation of phosphorylation",60,22,25.98,639,"0.88204","0.48459","0.48459" +"GO:0032271","regulation of protein polymerization",22,11,9.53,188,"0.33434","0.48608","0.48608" +"GO:0072358","cardiovascular system development",20,6,8.66,717,"0.92643","0.48881","0.48881" +"GO:0031503","protein-containing complex localization",11,3,4.76,691,"0.91971","0.49012","0.49012" +"GO:0044262","cellular carbohydrate metabolic process",17,8,7.36,275,"0.46843","0.49147","0.49147" +"GO:0032269","negative regulation of cellular protein ...",52,20,22.51,546,"0.80270","0.49179","0.49179" +"GO:0043254","regulation of protein complex assembly",25,12,10.82,210,"0.38908","0.49261","0.49261" +"GO:0045666","positive regulation of neuron differenti...",17,8,7.36,276,"0.46843","0.49407","0.49407" +"GO:0000904","cell morphogenesis involved in different...",45,16,19.48,649,"0.88773","0.49643","0.49643" +"GO:0060541","respiratory system development",19,5,8.23,787,"0.96178","0.49758","0.49758" +"GO:0048667","cell morphogenesis involved in neuron di...",36,14,15.59,496,"0.75895","0.49897","0.49897" +"GO:0006754","ATP biosynthetic process",26,10,11.26,490,"0.75605","0.50071","0.50071" +"GO:0009142","nucleoside triphosphate biosynthetic pro...",26,10,11.26,491,"0.75605","0.50071","0.50071" +"GO:0009145","purine nucleoside triphosphate biosynthe...",26,10,11.26,492,"0.75605","0.50071","0.50071" +"GO:0009201","ribonucleoside triphosphate biosynthetic...",26,10,11.26,493,"0.75605","0.50071","0.50071" +"GO:0009206","purine ribonucleoside triphosphate biosy...",26,10,11.26,494,"0.75605","0.50071","0.50071" +"GO:0043903","regulation of symbiosis, encompassing mu...",10,6,4.33,141,"0.22608","0.50110","0.50110" +"GO:0001775","cell activation",36,15,15.59,376,"0.64107","0.50335","0.50335" +"GO:0030335","positive regulation of cell migration",10,3,4.33,619,"0.88070","0.50434","0.50434" +"GO:0016482","cytosolic transport",13,5,5.63,472,"0.73327","0.50666","0.50666" +"GO:0001944","vasculature development",19,6,8.23,667,"0.89928","0.50677","0.50677" +"GO:0007600","sensory perception",26,11,11.26,358,"0.61502","0.50849","0.50849" +"GO:0019933","cAMP-mediated signaling",10,3,4.33,620,"0.88070","0.51084","0.51084" +"GO:0019935","cyclic-nucleotide-mediated signaling",10,3,4.33,621,"0.88070","0.51084","0.51084" +"GO:0021537","telencephalon development",10,4,4.33,427,"0.69705","0.51084","0.51084" +"GO:1990778","protein localization to cell periphery",12,4,5.2,574,"0.83872","0.51222","0.51222" +"GO:0001525","angiogenesis",11,3,4.76,692,"0.91971","0.51563","0.51563" +"GO:0060070","canonical Wnt signaling pathway",13,3,5.63,816,"0.96505","0.51595","0.51595" +"GO:0016197","endosomal transport",22,6,9.53,795,"0.96212","0.51917","0.51917" +"GO:1901700","response to oxygen-containing compound",67,32,29.01,150,"0.26563","0.52067","0.52067" +"GO:0007368","determination of left/right symmetry",10,2,4.33,843,"0.97059","0.52309","0.52309" +"GO:0009799","specification of symmetry",10,2,4.33,844,"0.97059","0.52309","0.52309" +"GO:0009855","determination of bilateral symmetry",10,2,4.33,845,"0.97059","0.52309","0.52309" +"GO:0009896","positive regulation of catabolic process",20,7,8.66,566,"0.83594","0.52333","0.52333" +"GO:0048562","embryonic organ morphogenesis",20,2,8.66,1070,"0.99982","0.52333","0.52333" +"GO:0051783","regulation of nuclear division",10,4,4.33,428,"0.69705","0.52391","0.52391" +"GO:1903311","regulation of mRNA metabolic process",10,4,4.33,429,"0.69705","0.52391","0.52391" +"GO:0070507","regulation of microtubule cytoskeleton o...",11,6,4.76,182,"0.32351","0.52545","0.52545" +"GO:0051338","regulation of transferase activity",31,10,13.42,716,"0.92566","0.52718","0.52718" +"GO:1903522","regulation of blood circulation",18,13,7.79,18,"0.01233","0.01149","0.52990" +"GO:0042060","wound healing",25,15,10.82,55,"0.06853","0.05901","0.53045" +"GO:0007611","learning or memory",15,2,6.49,1002,"0.99755","0.53515","0.53515" +"GO:0045664","regulation of neuron differentiation",42,16,18.18,544,"0.79991","0.53544","0.53544" +"GO:0007416","synapse assembly",10,3,4.33,622,"0.88070","0.53705","0.53705" +"GO:0006909","phagocytosis",14,5,6.06,534,"0.79933","0.53743","0.53743" +"GO:0019220","regulation of phosphate metabolic proces...",67,24,29.01,686,"0.91696","0.53840","0.53840" +"GO:0051174","regulation of phosphorus metabolic proce...",67,24,29.01,687,"0.91696","0.53840","0.53840" +"GO:0016310","phosphorylation",209,84,90.49,584,"0.84700","0.53860","0.53860" +"GO:0042330","taxis",24,9,10.39,525,"0.78184","0.54215","0.54215" +"GO:0001568","blood vessel development",17,5,7.36,714,"0.92273","0.54465","0.54465" +"GO:0071900","regulation of protein serine/threonine k...",17,2,7.36,1037,"0.99912","0.54465","0.54465" +"GO:0048731","system development",255,106,110.41,485,"0.74418","0.55324","0.55324" +"GO:0048870","cell motility",44,16,19.05,600,"0.86268","0.55327","0.55327" +"GO:0051674","localization of cell",44,16,19.05,601,"0.86268","0.55327","0.55327" +"GO:0008544","epidermis development",12,4,5.2,575,"0.83872","0.55547","0.55547" +"GO:0009132","nucleoside diphosphate metabolic process",11,5,4.76,321,"0.55772","0.55706","0.55706" +"GO:0009314","response to radiation",21,10,9.09,237,"0.42497","0.55764","0.55764" +"GO:0008284","positive regulation of cell proliferatio...",18,5,7.79,746,"0.94533","0.55862","0.55862" +"GO:0031331","positive regulation of cellular cataboli...",14,6,6.06,356,"0.61438","0.55938","0.55938" +"GO:0030900","forebrain development",18,6,7.79,602,"0.86394","0.56085","0.56085" +"GO:0048469","cell maturation",15,2,6.49,1003,"0.99755","0.56217","0.56217" +"GO:0048468","cell development",154,65,66.68,378,"0.64193","0.35279","0.56339" +"GO:0003012","muscle system process",29,14,12.56,195,"0.35855","0.56423","0.56423" +"GO:0048514","blood vessel morphogenesis",16,4,6.93,799,"0.96252","0.56461","0.56461" +"GO:2001233","regulation of apoptotic signaling pathwa...",20,6,8.66,718,"0.92643","0.56602","0.56602" +"GO:0006935","chemotaxis",23,9,9.96,466,"0.72885","0.56683","0.56683" +"GO:0072594","establishment of protein localization to...",17,7,7.36,398,"0.65972","0.56730","0.56730" +"GO:0010941","regulation of cell death",56,21,24.25,583,"0.84690","0.56736","0.56736" +"GO:1901652","response to peptide",13,6,5.63,303,"0.52350","0.56906","0.56906" +"GO:0048513","animal organ development",181,77,78.37,354,"0.61375","0.56962","0.56962" +"GO:0001655","urogenital system development",17,7,7.36,399,"0.65972","0.57266","0.57266" +"GO:0006954","inflammatory response",13,5,5.63,473,"0.73327","0.57372","0.57372" +"GO:0010817","regulation of hormone levels",36,14,15.59,497,"0.75895","0.31607","0.57622" +"GO:0043269","regulation of ion transport",28,13,12.12,243,"0.43941","0.57796","0.57796" +"GO:2000147","positive regulation of cell motility",11,3,4.76,693,"0.91971","0.57860","0.57860" +"GO:0030198","extracellular matrix organization",10,3,4.33,623,"0.88070","0.58263","0.58263" +"GO:0043062","extracellular structure organization",10,3,4.33,624,"0.88070","0.58263","0.58263" +"GO:0009991","response to extracellular stimulus",21,6,9.09,760,"0.94691","0.58558","0.58558" +"GO:0008219","cell death",72,31,31.17,324,"0.56266","0.58570","0.58570" +"GO:0051259","protein complex oligomerization",22,9,9.53,407,"0.66787","0.58578","0.58578" +"GO:0009792","embryo development ending in birth or eg...",42,9,18.18,1040,"0.99922","0.58578","0.58578" +"GO:0045944","positive regulation of transcription by ...",42,17,18.18,442,"0.69979","0.58578","0.58578" +"GO:0010876","lipid localization",29,14,12.56,196,"0.35855","0.58699","0.58699" +"GO:0048568","embryonic organ development",30,4,12.99,1078,"0.99992","0.58877","0.58877" +"GO:0050767","regulation of neurogenesis",45,16,19.48,650,"0.88773","0.58913","0.58913" +"GO:0009952","anterior/posterior pattern specification",11,1,4.76,1010,"0.99809","0.59194","0.59194" +"GO:0006357","regulation of transcription by RNA polym...",84,34,36.37,482,"0.73912","0.59218","0.59218" +"GO:0033865","nucleoside bisphosphate metabolic proces...",13,7,5.63,172,"0.30985","0.59624","0.59624" +"GO:0033875","ribonucleoside bisphosphate metabolic pr...",13,7,5.63,173,"0.30985","0.59624","0.59624" +"GO:0034032","purine nucleoside bisphosphate metabolic...",13,7,5.63,174,"0.30985","0.59624","0.59624" +"GO:0007517","muscle organ development",34,14,14.72,406,"0.66224","0.59802","0.59802" +"GO:0008152","metabolic process",1459,641,631.71,126,"0.22161","0.08512","0.59838" +"GO:0031667","response to nutrient levels",20,6,8.66,719,"0.92643","0.60083","0.60083" +"GO:0044092","negative regulation of molecular functio...",39,16,16.89,411,"0.67193","0.60238","0.60238" +"GO:0007268","chemical synaptic transmission",34,15,14.72,309,"0.52761","0.60330","0.60330" +"GO:0098916","anterograde trans-synaptic signaling",34,15,14.72,310,"0.52761","0.60330","0.60330" +"GO:0099536","synaptic signaling",34,15,14.72,311,"0.52761","0.60330","0.60330" +"GO:0099537","trans-synaptic signaling",34,15,14.72,312,"0.52761","0.60330","0.60330" +"GO:0043549","regulation of kinase activity",27,9,11.69,661,"0.89498","0.60341","0.60341" +"GO:0097191","extrinsic apoptotic signaling pathway",12,5,5.2,385,"0.65259","0.60409","0.60409" +"GO:0051648","vesicle localization",15,5,6.49,591,"0.85172","0.60640","0.60640" +"GO:0050803","regulation of synapse structure or activ...",14,5,6.06,535,"0.79933","0.60726","0.60726" +"GO:0098655","cation transmembrane transport",65,27,28.14,403,"0.65996","0.61314","0.61314" +"GO:0072001","renal system development",16,7,6.93,338,"0.58095","0.61590","0.61590" +"GO:0003007","heart morphogenesis",15,2,6.49,1004,"0.99755","0.61595","0.61595" +"GO:0016311","dephosphorylation",42,15,18.18,617,"0.87723","0.61634","0.61634" +"GO:0050808","synapse organization",23,10,9.96,331,"0.57301","0.61663","0.61663" +"GO:0042147","retrograde transport, endosome to Golgi",11,4,4.76,509,"0.77667","0.61914","0.61914" +"GO:0051640","organelle localization",31,6,13.42,1028,"0.99877","0.61924","0.61924" +"GO:0016236","macroautophagy",15,5,6.49,592,"0.85172","0.61935","0.61935" +"GO:0006493","protein O-linked glycosylation",10,4,4.33,430,"0.69705","0.62014","0.62014" +"GO:0045859","regulation of protein kinase activity",26,8,11.26,728,"0.93488","0.62380","0.62380" +"GO:0006915","apoptotic process",61,26,26.41,349,"0.59215","0.62827","0.62827" +"GO:0006694","steroid biosynthetic process",19,9,8.23,247,"0.44557","0.62893","0.62893" +"GO:0034329","cell junction assembly",11,4,4.76,510,"0.77667","0.62963","0.62963" +"GO:0034330","cell junction organization",11,4,4.76,511,"0.77667","0.62963","0.62963" +"GO:0050790","regulation of catalytic activity",83,31,35.94,653,"0.89059","0.63011","0.63011" +"GO:0051094","positive regulation of developmental pro...",65,30,28.14,197,"0.36357","0.63100","0.63100" +"GO:0009653","anatomical structure morphogenesis",170,70,73.61,486,"0.74485","0.48612","0.63138" +"GO:0048646","anatomical structure formation involved ...",66,25,28.58,585,"0.84798","0.43510","0.63169" +"GO:0043409","negative regulation of MAPK cascade",12,3,5.2,751,"0.94671","0.63362","0.63362" +"GO:0016331","morphogenesis of embryonic epithelium",14,3,6.06,872,"0.97732","0.63630","0.63630" +"GO:0010038","response to metal ion",17,7,7.36,400,"0.65972","0.63729","0.63729" +"GO:0098660","inorganic ion transmembrane transport",56,23,24.25,415,"0.68145","0.63784","0.63784" +"GO:0030099","myeloid cell differentiation",14,3,6.06,873,"0.97732","0.63827","0.63827" +"GO:0051960","regulation of nervous system development",48,17,20.78,665,"0.89722","0.63898","0.63898" +"GO:0051046","regulation of secretion",25,7,10.82,806,"0.96312","0.63943","0.63943" +"GO:0050878","regulation of body fluid levels",15,9,6.49,104,"0.14738","0.04563","0.64089" +"GO:0043067","regulation of programmed cell death",48,18,20.78,564,"0.83293","0.64151","0.64151" +"GO:0048592","eye morphogenesis",26,12,11.26,270,"0.45816","0.64410","0.64410" +"GO:0051235","maintenance of location",19,9,8.23,248,"0.44557","0.64429","0.64429" +"GO:0000165","MAPK cascade",27,7,11.69,887,"0.98116","0.64462","0.64462" +"GO:0023014","signal transduction by protein phosphory...",27,7,11.69,888,"0.98116","0.64462","0.64462" +"GO:0051272","positive regulation of cellular componen...",12,4,5.2,576,"0.83872","0.64592","0.64592" +"GO:0051962","positive regulation of nervous system de...",25,11,10.82,316,"0.54866","0.64628","0.64628" +"GO:0045017","glycerolipid biosynthetic process",16,8,6.93,207,"0.38253","0.65146","0.65146" +"GO:0006812","cation transport",119,51,51.52,333,"0.57561","0.65372","0.65372" +"GO:0001822","kidney development",13,6,5.63,304,"0.52350","0.65395","0.65395" +"GO:0010639","negative regulation of organelle organiz...",19,10,8.23,153,"0.27521","0.65731","0.65731" +"GO:0006366","transcription by RNA polymerase II",89,35,38.53,549,"0.81032","0.65742","0.65742" +"GO:0015893","drug transport",11,6,4.76,183,"0.32351","0.65782","0.65782" +"GO:0001101","response to acid chemical",22,10,9.53,290,"0.50050","0.66160","0.66160" +"GO:0071383","cellular response to steroid hormone sti...",22,9,9.53,408,"0.66787","0.66160","0.66160" +"GO:0030308","negative regulation of cell growth",10,3,4.33,625,"0.88070","0.66168","0.66168" +"GO:0042592","homeostatic process",91,38,39.4,393,"0.65771","0.66232","0.66232" +"GO:0040017","positive regulation of locomotion",15,5,6.49,593,"0.85172","0.66551","0.66551" +"GO:0052548","regulation of endopeptidase activity",12,5,5.2,386,"0.65259","0.66604","0.66604" +"GO:2000116","regulation of cysteine-type endopeptidas...",12,5,5.2,387,"0.65259","0.66604","0.66604" +"GO:0030162","regulation of proteolysis",27,11,11.69,413,"0.67616","0.66688","0.66688" +"GO:0006914","autophagy",31,9,13.42,826,"0.96613","0.66709","0.66709" +"GO:0061919","process utilizing autophagic mechanism",31,9,13.42,827,"0.96613","0.66709","0.66709" +"GO:0051346","negative regulation of hydrolase activit...",16,6,6.93,499,"0.76270","0.66744","0.66744" +"GO:0042742","defense response to bacterium",13,4,5.63,644,"0.88558","0.66861","0.66861" +"GO:0051301","cell division",24,9,10.39,526,"0.78184","0.67018","0.67018" +"GO:0097479","synaptic vesicle localization",14,5,6.06,536,"0.79933","0.67022","0.67022" +"GO:0006637","acyl-CoA metabolic process",10,5,4.33,265,"0.45126","0.67076","0.67076" +"GO:0035383","thioester metabolic process",10,5,4.33,266,"0.45126","0.67076","0.67076" +"GO:0097190","apoptotic signaling pathway",25,10,10.82,445,"0.70181","0.67148","0.67148" +"GO:0009914","hormone transport",11,2,4.76,892,"0.98190","0.67216","0.67216" +"GO:0006937","regulation of muscle contraction",11,6,4.76,184,"0.32351","0.67561","0.67561" +"GO:0048872","homeostasis of number of cells",12,2,5.2,928,"0.98893","0.68078","0.68078" +"GO:0043408","regulation of MAPK cascade",23,5,9.96,951,"0.99172","0.68304","0.68304" +"GO:0006839","mitochondrial transport",19,9,8.23,249,"0.44557","0.68427","0.68427" +"GO:0032886","regulation of microtubule-based process",12,6,5.2,232,"0.42489","0.68527","0.68527" +"GO:0097305","response to alcohol",18,9,7.79,199,"0.36487","0.68753","0.68753" +"GO:0051050","positive regulation of transport",47,20,20.35,351,"0.59726","0.68809","0.68809" +"GO:0060284","regulation of cell development",52,19,22.51,608,"0.87260","0.69031","0.69031" +"GO:0010976","positive regulation of neuron projection...",11,5,4.76,322,"0.55772","0.69031","0.69031" +"GO:1901699","cellular response to nitrogen compound",15,5,6.49,594,"0.85172","0.69103","0.69103" +"GO:0006470","protein dephosphorylation",28,10,12.12,582,"0.84296","0.69300","0.69300" +"GO:0007389","pattern specification process",36,7,15.59,1045,"0.99937","0.69393","0.69393" +"GO:0043270","positive regulation of ion transport",10,5,4.33,267,"0.45126","0.69699","0.69699" +"GO:0046879","hormone secretion",10,2,4.33,846,"0.97059","0.69699","0.69699" +"GO:0046883","regulation of hormone secretion",10,2,4.33,847,"0.97059","0.69699","0.69699" +"GO:0001666","response to hypoxia",10,4,4.33,431,"0.69705","0.70024","0.70024" +"GO:0036293","response to decreased oxygen levels",10,4,4.33,432,"0.69705","0.70024","0.70024" +"GO:0070482","response to oxygen levels",10,4,4.33,433,"0.69705","0.70024","0.70024" +"GO:1903829","positive regulation of cellular protein ...",12,5,5.2,388,"0.65259","0.70062","0.70062" +"GO:0035690","cellular response to drug",11,4,4.76,512,"0.77667","0.70305","0.70305" +"GO:0050890","cognition",17,2,7.36,1038,"0.99912","0.70631","0.70631" +"GO:0099003","vesicle-mediated transport in synapse",18,6,7.79,603,"0.86394","0.70771","0.70771" +"GO:0043009","chordate embryonic development",35,6,15.15,1067,"0.99977","0.70914","0.70914" +"GO:0043207","response to external biotic stimulus",36,13,15.59,596,"0.85256","0.70933","0.70933" +"GO:0051707","response to other organism",36,13,15.59,597,"0.85256","0.70933","0.70933" +"GO:0007154","cell communication",450,180,194.84,765,"0.94838","0.71099","0.71099" +"GO:0006468","protein phosphorylation",167,65,72.31,666,"0.89762","0.71354","0.71354" +"GO:0098542","defense response to other organism",24,7,10.39,766,"0.94914","0.71933","0.71933" +"GO:0009187","cyclic nucleotide metabolic process",11,4,4.76,513,"0.77667","0.71998","0.71998" +"GO:0009190","cyclic nucleotide biosynthetic process",11,4,4.76,514,"0.77667","0.71998","0.71998" +"GO:0032879","regulation of localization",127,48,54.99,685,"0.91676","0.72131","0.72131" +"GO:0008654","phospholipid biosynthetic process",19,9,8.23,250,"0.44557","0.72153","0.72153" +"GO:0090066","regulation of anatomical structure size",30,13,12.99,327,"0.56867","0.72402","0.72402" +"GO:0043902","positive regulation of multi-organism pr...",10,5,4.33,268,"0.45126","0.72604","0.72604" +"GO:0044770","cell cycle phase transition",10,3,4.33,626,"0.88070","0.72604","0.72604" +"GO:0007399","nervous system development",166,62,71.87,774,"0.95487","0.72686","0.72686" +"GO:0045597","positive regulation of cell differentiat...",50,21,21.65,362,"0.62756","0.72712","0.72712" +"GO:0048193","Golgi vesicle transport",17,4,7.36,865,"0.97477","0.72780","0.72780" +"GO:0034599","cellular response to oxidative stress",13,6,5.63,305,"0.52350","0.72810","0.72810" +"GO:1903530","regulation of secretion by cell",21,6,9.09,761,"0.94691","0.72856","0.72856" +"GO:2000026","regulation of multicellular organismal d...",95,38,41.13,520,"0.77818","0.72981","0.72981" +"GO:0044782","cilium organization",28,9,12.12,689,"0.91962","0.73275","0.73275" +"GO:0022414","reproductive process",87,32,37.67,684,"0.91398","0.73307","0.73307" +"GO:0051258","protein polymerization",25,11,10.82,317,"0.54866","0.73322","0.73322" +"GO:0007346","regulation of mitotic cell cycle",19,6,8.23,668,"0.89928","0.73359","0.73359" +"GO:0006952","defense response",55,18,23.81,785,"0.96052","0.74293","0.74293" +"GO:0022407","regulation of cell-cell adhesion",10,4,4.33,434,"0.69705","0.74506","0.74506" +"GO:0009725","response to hormone",54,23,23.38,350,"0.59434","0.74519","0.74519" +"GO:0006417","regulation of translation",15,6,6.49,419,"0.69454","0.74676","0.74676" +"GO:0098662","inorganic cation transmembrane transport",54,21,23.38,531,"0.78754","0.74710","0.74710" +"GO:0032502","developmental process",338,147,146.34,284,"0.49188","0.57997","0.74846" +"GO:0050807","regulation of synapse organization",12,4,5.2,577,"0.83872","0.74978","0.74978" +"GO:0034655","nucleobase-containing compound catabolic...",27,10,11.69,547,"0.80304","0.75265","0.75265" +"GO:0040008","regulation of growth",31,9,13.42,828,"0.96613","0.75512","0.75512" +"GO:0007165","signal transduction",409,162,177.09,778,"0.95715","0.75592","0.75592" +"GO:0046903","secretion",53,14,22.95,995,"0.99669","0.75600","0.75600" +"GO:0042594","response to starvation",11,3,4.76,694,"0.91971","0.75647","0.75647" +"GO:0071496","cellular response to external stimulus",11,3,4.76,695,"0.91971","0.75647","0.75647" +"GO:0023052","signaling",443,176,191.81,782,"0.95935","0.76011","0.76011" +"GO:0031325","positive regulation of cellular metaboli...",109,38,47.19,862,"0.97349","0.76153","0.76153" +"GO:0006457","protein folding",20,7,8.66,567,"0.83594","0.76404","0.76404" +"GO:0007283","spermatogenesis",29,12,12.56,383,"0.65183","0.76710","0.76710" +"GO:0044093","positive regulation of molecular functio...",62,24,26.84,548,"0.80711","0.76721","0.76721" +"GO:0043065","positive regulation of apoptotic process",19,8,8.23,365,"0.62817","0.76733","0.76733" +"GO:0043068","positive regulation of programmed cell d...",19,8,8.23,366,"0.62817","0.76733","0.76733" +"GO:0021700","developmental maturation",17,2,7.36,1039,"0.99912","0.77105","0.77105" +"GO:0051098","regulation of binding",13,5,5.63,474,"0.73327","0.77387","0.77387" +"GO:0051704","multi-organism process",122,48,52.82,581,"0.84119","0.77679","0.77679" +"GO:0032386","regulation of intracellular transport",16,7,6.93,339,"0.58095","0.77825","0.77825" +"GO:0007519","skeletal muscle tissue development",18,6,7.79,604,"0.86394","0.77891","0.77891" +"GO:0140014","mitotic nuclear division",14,5,6.06,537,"0.79933","0.78097","0.78097" +"GO:0043401","steroid hormone mediated signaling pathw...",17,7,7.36,401,"0.65972","0.78201","0.78201" +"GO:0032273","positive regulation of protein polymeriz...",17,8,7.36,277,"0.46843","0.78236","0.78236" +"GO:0090596","sensory organ morphogenesis",30,12,12.99,448,"0.70728","0.78488","0.78488" +"GO:0051047","positive regulation of secretion",18,5,7.79,747,"0.94533","0.78555","0.78555" +"GO:1902903","regulation of supramolecular fiber organ...",27,13,11.69,200,"0.37325","0.78559","0.78559" +"GO:1902533","positive regulation of intracellular sig...",31,7,13.42,974,"0.99555","0.78703","0.78703" +"GO:0044703","multi-organism reproductive process",61,21,26.41,738,"0.94051","0.78830","0.78830" +"GO:0001501","skeletal system development",19,3,8.23,1006,"0.99768","0.78957","0.78957" +"GO:0031324","negative regulation of cellular metaboli...",95,33,41.13,835,"0.96708","0.78962","0.78962" +"GO:0060491","regulation of cell projection assembly",19,5,8.23,788,"0.96178","0.79022","0.79022" +"GO:0120032","regulation of plasma membrane bounded ce...",19,5,8.23,789,"0.96178","0.79022","0.79022" +"GO:0022603","regulation of anatomical structure morph...",42,17,18.18,443,"0.69979","0.79267","0.79267" +"GO:0034248","regulation of cellular amide metabolic p...",17,7,7.36,402,"0.65972","0.79396","0.79396" +"GO:0031346","positive regulation of cell projection o...",15,6,6.49,420,"0.69454","0.79423","0.79423" +"GO:0051650","establishment of vesicle localization",12,4,5.2,578,"0.83872","0.79463","0.79463" +"GO:0010942","positive regulation of cell death",21,9,9.09,352,"0.59940","0.79726","0.79726" +"GO:0042981","regulation of apoptotic process",47,17,20.35,609,"0.87445","0.79995","0.79995" +"GO:0007033","vacuole organization",11,4,4.76,515,"0.77667","0.80216","0.80216" +"GO:0031032","actomyosin structure organization",22,14,9.53,41,"0.04342","0.03876","0.80369" +"GO:0009894","regulation of catabolic process",40,15,17.32,555,"0.81748","0.80457","0.80457" +"GO:0035239","tube morphogenesis",40,12,17.32,853,"0.97141","0.80457","0.80457" +"GO:0060271","cilium assembly",26,8,11.26,729,"0.93488","0.80498","0.80498" +"GO:0030833","regulation of actin filament polymerizat...",15,6,6.49,421,"0.69454","0.80564","0.80564" +"GO:1903706","regulation of hemopoiesis",12,2,5.2,929,"0.98893","0.80590","0.80590" +"GO:0048729","tissue morphogenesis",49,18,21.22,599,"0.86087","0.59181","0.80610" +"GO:0007169","transmembrane receptor protein tyrosine ...",22,6,9.53,796,"0.96212","0.80682","0.80682" +"GO:0030155","regulation of cell adhesion",16,5,6.93,654,"0.89218","0.80706","0.80706" +"GO:1903532","positive regulation of secretion by cell",16,5,6.93,655,"0.89218","0.80706","0.80706" +"GO:0048732","gland development",12,2,5.2,930,"0.98893","0.80749","0.80749" +"GO:0015931","nucleobase-containing compound transport",11,5,4.76,323,"0.55772","0.80855","0.80855" +"GO:0098657","import into cell",40,16,17.32,458,"0.71906","0.80969","0.80969" +"GO:0048489","synaptic vesicle transport",11,4,4.76,516,"0.77667","0.81007","0.81007" +"GO:0097480","establishment of synaptic vesicle locali...",11,4,4.76,517,"0.77667","0.81007","0.81007" +"GO:0010959","regulation of metal ion transport",14,6,6.06,357,"0.61438","0.81109","0.81109" +"GO:0007548","sex differentiation",13,6,5.63,306,"0.52350","0.81127","0.81127" +"GO:0019953","sexual reproduction",58,20,25.11,733,"0.93532","0.81169","0.81169" +"GO:0019932","second-messenger-mediated signaling",15,4,6.49,742,"0.94494","0.81274","0.81274" +"GO:0032880","regulation of protein localization",37,12,16.02,734,"0.93651","0.81282","0.81282" +"GO:0048232","male gamete generation",30,12,12.99,449,"0.70728","0.81511","0.81511" +"GO:0030182","neuron differentiation",95,36,41.13,641,"0.88363","0.81692","0.81692" +"GO:0000003","reproduction",92,34,39.83,683,"0.91386","0.81732","0.81732" +"GO:0050806","positive regulation of synaptic transmis...",11,4,4.76,518,"0.77667","0.81774","0.81774" +"GO:0002694","regulation of leukocyte activation",15,4,6.49,743,"0.94494","0.81801","0.81801" +"GO:0050865","regulation of cell activation",15,4,6.49,744,"0.94494","0.81801","0.81801" +"GO:0045165","cell fate commitment",18,4,7.79,901,"0.98318","0.81877","0.81877" +"GO:0022604","regulation of cell morphogenesis",20,7,8.66,568,"0.83594","0.81879","0.81879" +"GO:0044087","regulation of cellular component biogene...",57,24,24.68,360,"0.62309","0.81919","0.81919" +"GO:0022412","cellular process involved in reproductio...",35,15,15.15,344,"0.58594","0.82059","0.82059" +"GO:0006813","potassium ion transport",20,6,8.66,720,"0.92643","0.82131","0.82131" +"GO:0003013","circulatory system process",19,13,8.23,26,"0.02375","0.02352","0.82153" +"GO:0008015","blood circulation",19,13,8.23,27,"0.02375","0.02352","0.82153" +"GO:0031328","positive regulation of cellular biosynth...",58,18,25.11,882,"0.98086","0.82289","0.82289" +"GO:0019439","aromatic compound catabolic process",36,15,15.59,377,"0.64107","0.82571","0.82571" +"GO:0045935","positive regulation of nucleobase-contai...",58,19,25.11,811,"0.96352","0.82632","0.82632" +"GO:0051254","positive regulation of RNA metabolic pro...",58,19,25.11,812,"0.96352","0.82632","0.82632" +"GO:0030031","cell projection assembly",37,10,16.02,914,"0.98713","0.82898","0.82898" +"GO:0120031","plasma membrane bounded cell projection ...",37,10,16.02,915,"0.98713","0.82898","0.82898" +"GO:1901564","organonitrogen compound metabolic proces...",701,290,303.51,672,"0.89992","0.82900","0.82900" +"GO:0006887","exocytosis",26,4,11.26,1051,"0.99949","0.83192","0.83192" +"GO:0010564","regulation of cell cycle process",25,8,10.82,680,"0.91318","0.83209","0.83209" +"GO:0048598","embryonic morphogenesis",38,8,16.45,1033,"0.99895","0.83223","0.83223" +"GO:0044419","interspecies interaction between organis...",19,8,8.23,367,"0.62817","0.83394","0.83394" +"GO:0051336","regulation of hydrolase activity",48,18,20.78,565,"0.83293","0.83481","0.83481" +"GO:0060538","skeletal muscle organ development",19,6,8.23,669,"0.89928","0.83604","0.83604" +"GO:0030001","metal ion transport",71,31,30.74,299,"0.52131","0.83795","0.83795" +"GO:0044270","cellular nitrogen compound catabolic pro...",35,13,15.15,556,"0.81876","0.83968","0.83968" +"GO:0046700","heterocycle catabolic process",35,14,15.15,455,"0.71311","0.83968","0.83968" +"GO:0008088","axo-dendritic transport",10,4,4.33,435,"0.69705","0.84034","0.84034" +"GO:0051249","regulation of lymphocyte activation",13,3,5.63,817,"0.96505","0.84035","0.84035" +"GO:0010562","positive regulation of phosphorus metabo...",28,8,12.12,814,"0.96451","0.84109","0.84109" +"GO:0045937","positive regulation of phosphate metabol...",28,8,12.12,815,"0.96451","0.84109","0.84109" +"GO:0051239","regulation of multicellular organismal p...",147,61,63.65,447,"0.70499","0.67103","0.84174" +"GO:0090257","regulation of muscle system process",12,6,5.2,233,"0.42489","0.84216","0.84216" +"GO:0060341","regulation of cellular localization",38,15,16.45,480,"0.73878","0.84334","0.84334" +"GO:0000226","microtubule cytoskeleton organization",28,11,12.12,470,"0.73119","0.84337","0.84337" +"GO:0045596","negative regulation of cell differentiat...",36,11,15.59,783,"0.95979","0.84406","0.84406" +"GO:0010769","regulation of cell morphogenesis involve...",14,5,6.06,538,"0.79933","0.84421","0.84421" +"GO:0031399","regulation of protein modification proce...",75,25,32.47,854,"0.97178","0.84538","0.84538" +"GO:0008064","regulation of actin polymerization or de...",16,7,6.93,340,"0.58095","0.84577","0.84577" +"GO:0030041","actin filament polymerization",16,6,6.93,500,"0.76270","0.84577","0.84577" +"GO:0030832","regulation of actin filament length",16,7,6.93,341,"0.58095","0.84577","0.84577" +"GO:0001817","regulation of cytokine production",22,9,9.53,409,"0.66787","0.84667","0.84667" +"GO:0010608","posttranscriptional regulation of gene e...",22,7,9.53,675,"0.90636","0.84667","0.84667" +"GO:0051222","positive regulation of protein transport",14,5,6.06,539,"0.79933","0.84854","0.84854" +"GO:1904951","positive regulation of establishment of ...",14,5,6.06,540,"0.79933","0.84854","0.84854" +"GO:0051347","positive regulation of transferase activ...",14,2,6.06,977,"0.99593","0.85012","0.85012" +"GO:0007166","cell surface receptor signaling pathway",119,45,51.52,679,"0.90956","0.85045","0.85045" +"GO:0048856","anatomical structure development",316,134,136.82,391,"0.65687","0.74667","0.85102" +"GO:0031329","regulation of cellular catabolic process",32,13,13.86,417,"0.68430","0.85105","0.85105" +"GO:0010557","positive regulation of macromolecule bio...",56,18,24.25,838,"0.96878","0.85170","0.85170" +"GO:0007163","establishment or maintenance of cell pol...",12,5,5.2,389,"0.65259","0.85173","0.85173" +"GO:0006897","endocytosis",35,12,15.15,663,"0.89658","0.85269","0.85269" +"GO:0044403","symbiont process",18,7,7.79,462,"0.72872","0.85414","0.85414" +"GO:0042692","muscle cell differentiation",29,13,12.56,293,"0.50510","0.19049","0.85452" +"GO:0042127","regulation of cell proliferation",43,14,18.62,749,"0.94581","0.85516","0.85516" +"GO:0019751","polyol metabolic process",10,3,4.33,627,"0.88070","0.85704","0.85704" +"GO:0022008","neurogenesis",110,42,47.63,648,"0.88695","0.85712","0.85712" +"GO:0051240","positive regulation of multicellular org...",65,21,28.14,869,"0.97519","0.85719","0.85719" +"GO:0043085","positive regulation of catalytic activit...",37,11,16.02,841,"0.96964","0.85777","0.85777" +"GO:1901701","cellular response to oxygen-containing c...",42,18,18.18,342,"0.58250","0.85844","0.85844" +"GO:0015985","energy coupled proton transport, down el...",13,4,5.63,645,"0.88558","0.85906","0.85906" +"GO:0015986","ATP synthesis coupled proton transport",13,4,5.63,646,"0.88558","0.85906","0.85906" +"GO:1901566","organonitrogen compound biosynthetic pro...",191,82,82.7,328,"0.57134","0.85959","0.85959" +"GO:0042327","positive regulation of phosphorylation",27,8,11.69,771,"0.95169","0.85966","0.85966" +"GO:0009887","animal organ morphogenesis",73,27,31.61,652,"0.89050","0.86009","0.86009" +"GO:0002520","immune system development",25,7,10.82,807,"0.96312","0.86022","0.86022" +"GO:0030855","epithelial cell differentiation",25,6,10.82,912,"0.98703","0.86022","0.86022" +"GO:0048534","hematopoietic or lymphoid organ developm...",25,7,10.82,808,"0.96312","0.86022","0.86022" +"GO:0002790","peptide secretion",11,3,4.76,696,"0.91971","0.86325","0.86325" +"GO:0009306","protein secretion",11,3,4.76,697,"0.91971","0.86325","0.86325" +"GO:0042110","T cell activation",11,3,4.76,698,"0.91971","0.86325","0.86325" +"GO:0051656","establishment of organelle localization",18,4,7.79,902,"0.98318","0.86472","0.86472" +"GO:1903046","meiotic cell cycle process",10,2,4.33,848,"0.97059","0.86545","0.86545" +"GO:0051173","positive regulation of nitrogen compound...",100,33,43.3,923,"0.98785","0.86586","0.86586" +"GO:0006402","mRNA catabolic process",10,3,4.33,628,"0.88070","0.86609","0.86609" +"GO:0051049","regulation of transport",84,30,36.37,737,"0.93939","0.86635","0.86635" +"GO:0001816","cytokine production",23,9,9.96,467,"0.72885","0.86651","0.86651" +"GO:0010720","positive regulation of cell development",25,10,10.82,446,"0.70181","0.86796","0.86796" +"GO:0044057","regulation of system process",33,19,14.29,58,"0.06869","0.09537","0.86905" +"GO:0051146","striated muscle cell differentiation",27,13,11.69,201,"0.37325","0.10944","0.86969" +"GO:1901361","organic cyclic compound catabolic proces...",38,16,16.45,359,"0.62074","0.86970","0.86970" +"GO:0007017","microtubule-based process",57,18,24.68,870,"0.97548","0.87000","0.87000" +"GO:0033674","positive regulation of kinase activity",12,2,5.2,931,"0.98893","0.87017","0.87017" +"GO:0045860","positive regulation of protein kinase ac...",12,2,5.2,932,"0.98893","0.87017","0.87017" +"GO:0009607","response to biotic stimulus",37,13,16.02,638,"0.88125","0.87019","0.87019" +"GO:0031334","positive regulation of protein complex a...",18,8,7.79,319,"0.55128","0.87070","0.87070" +"GO:0045665","negative regulation of neuron differenti...",12,3,5.2,752,"0.94671","0.87201","0.87201" +"GO:0048705","skeletal system morphogenesis",11,1,4.76,1011,"0.99809","0.87258","0.87258" +"GO:0048699","generation of neurons",107,41,46.33,618,"0.87824","0.87259","0.87259" +"GO:0030097","hemopoiesis",24,7,10.39,767,"0.94914","0.87303","0.87303" +"GO:0043603","cellular amide metabolic process",83,30,35.94,722,"0.92774","0.87454","0.87454" +"GO:0002791","regulation of peptide secretion",10,2,4.33,849,"0.97059","0.87492","0.87492" +"GO:0050708","regulation of protein secretion",10,2,4.33,850,"0.97059","0.87492","0.87492" +"GO:0001701","in utero embryonic development",16,2,6.93,1022,"0.99853","0.87570","0.87570" +"GO:0007275","multicellular organism development",291,119,125.99,563,"0.82853","0.87576","0.87576" +"GO:0016055","Wnt signaling pathway",22,7,9.53,676,"0.90636","0.87836","0.87836" +"GO:0010243","response to organonitrogen compound",40,16,17.32,459,"0.71906","0.88388","0.88388" +"GO:0007281","germ cell development",33,14,14.29,353,"0.60681","0.88560","0.88560" +"GO:0060537","muscle tissue development",32,12,13.86,545,"0.80043","0.88824","0.88824" +"GO:0007276","gamete generation",48,16,20.78,740,"0.94160","0.88872","0.88872" +"GO:0071804","cellular potassium ion transport",12,4,5.2,579,"0.83872","0.88896","0.88896" +"GO:0071805","potassium ion transmembrane transport",12,4,5.2,580,"0.83872","0.88896","0.88896" +"GO:1901575","organic substance catabolic process",119,53,51.52,238,"0.42502","0.44673","0.88939" +"GO:0032940","secretion by cell",44,11,19.05,985,"0.99655","0.88962","0.88962" +"GO:0045595","regulation of cell differentiation",89,35,38.53,550,"0.81032","0.88970","0.88970" +"GO:0034097","response to cytokine",21,7,9.09,610,"0.87522","0.88976","0.88976" +"GO:0198738","cell-cell signaling by wnt",23,7,9.96,724,"0.93059","0.89000","0.89000" +"GO:0010648","negative regulation of cell communicatio...",62,15,26.84,1052,"0.99953","0.89123","0.89123" +"GO:0023057","negative regulation of signaling",62,15,26.84,1053,"0.99953","0.89123","0.89123" +"GO:0010629","negative regulation of gene expression",64,14,27.71,1077,"0.99992","0.89174","0.89174" +"GO:0051260","protein homooligomerization",16,5,6.93,656,"0.89218","0.89241","0.89241" +"GO:0045893","positive regulation of transcription, DN...",53,17,22.95,832,"0.96631","0.89272","0.89272" +"GO:1902680","positive regulation of RNA biosynthetic ...",53,17,22.95,833,"0.96631","0.89272","0.89272" +"GO:1903508","positive regulation of nucleic acid-temp...",53,17,22.95,834,"0.96631","0.89272","0.89272" +"GO:0061024","membrane organization",41,15,17.75,590,"0.84962","0.89424","0.89424" +"GO:0014706","striated muscle tissue development",30,11,12.99,561,"0.82161","0.89493","0.89493" +"GO:0001934","positive regulation of protein phosphory...",25,7,10.82,809,"0.96312","0.89570","0.89570" +"GO:1902600","proton transmembrane transport",24,7,10.39,768,"0.94914","0.89572","0.89572" +"GO:0048863","stem cell differentiation",15,2,6.49,1005,"0.99755","0.89695","0.89695" +"GO:0035023","regulation of Rho protein signal transdu...",15,6,6.49,422,"0.69454","0.89742","0.89742" +"GO:0060548","negative regulation of cell death",37,11,16.02,842,"0.96964","0.89840","0.89840" +"GO:0051223","regulation of protein transport",19,5,8.23,790,"0.96178","0.89980","0.89980" +"GO:0070201","regulation of establishment of protein l...",19,5,8.23,791,"0.96178","0.89980","0.89980" +"GO:0090087","regulation of peptide transport",19,5,8.23,792,"0.96178","0.89980","0.89980" +"GO:0009056","catabolic process",146,60,63.21,478,"0.73851","0.52075","0.90014" +"GO:0043069","negative regulation of programmed cell d...",33,10,14.29,775,"0.95710","0.90027","0.90027" +"GO:0002009","morphogenesis of an epithelium",44,17,19.05,527,"0.78242","0.69960","0.90035" +"GO:0060562","epithelial tube morphogenesis",24,3,10.39,1069,"0.99979","0.90061","0.90061" +"GO:0007444","imaginal disc development",10,1,4.33,987,"0.99662","0.90163","0.90163" +"GO:0010927","cellular component assembly involved in ...",22,13,9.53,82,"0.09975","0.09275","0.90228" +"GO:0048749","compound eye development",10,4,4.33,436,"0.69705","0.90275","0.90275" +"GO:0036503","ERAD pathway",11,3,4.76,699,"0.91971","0.90306","0.90306" +"GO:0060429","epithelium development",66,24,28.58,673,"0.90042","0.70626","0.90374" +"GO:0043604","amide biosynthetic process",63,22,27.28,727,"0.93303","0.90397","0.90397" +"GO:0060627","regulation of vesicle-mediated transport",29,7,12.56,946,"0.99071","0.90405","0.90405" +"GO:0003002","regionalization",27,5,11.69,1020,"0.99842","0.90432","0.90432" +"GO:0030239","myofibril assembly",18,11,7.79,73,"0.09864","0.01884","0.90471" +"GO:0010256","endomembrane system organization",23,6,9.96,861,"0.97325","0.90473","0.90473" +"GO:0071345","cellular response to cytokine stimulus",18,6,7.79,605,"0.86394","0.90485","0.90485" +"GO:0051093","negative regulation of developmental pro...",44,12,19.05,947,"0.99114","0.90601","0.90601" +"GO:0003015","heart process",18,13,7.79,19,"0.01233","0.01149","0.90642" +"GO:0060047","heart contraction",18,13,7.79,20,"0.01233","0.01149","0.90642" +"GO:0006401","RNA catabolic process",11,3,4.76,700,"0.91971","0.90709","0.90709" +"GO:0010631","epithelial cell migration",11,3,4.76,701,"0.91971","0.90709","0.90709" +"GO:0051128","regulation of cellular component organiz...",118,40,51.09,917,"0.98719","0.90727","0.90727" +"GO:0050793","regulation of developmental process",124,51,53.69,460,"0.72288","0.90754","0.90754" +"GO:0048609","multicellular organismal reproductive pr...",62,20,26.84,860,"0.97321","0.90791","0.90791" +"GO:0009968","negative regulation of signal transducti...",60,14,25.98,1062,"0.99967","0.90849","0.90849" +"GO:0055001","muscle cell development",22,12,9.53,115,"0.19615","0.03876","0.90866" +"GO:0055002","striated muscle cell development",22,12,9.53,116,"0.19615","0.03876","0.90866" +"GO:0007269","neurotransmitter secretion",11,3,4.76,702,"0.91971","0.90877","0.90877" +"GO:0099643","signal release from synapse",11,3,4.76,703,"0.91971","0.90877","0.90877" +"GO:1903827","regulation of cellular protein localizat...",17,6,7.36,557,"0.81887","0.90993","0.90993" +"GO:1905114","cell surface receptor signaling pathway ...",25,8,10.82,681,"0.91318","0.91028","0.91028" +"GO:1903047","mitotic cell cycle process",34,11,14.72,726,"0.93129","0.91253","0.91253" +"GO:0050769","positive regulation of neurogenesis",23,9,9.96,468,"0.72885","0.91310","0.91310" +"GO:0006950","response to stress",194,81,84,444,"0.70099","0.95917","0.91330" +"GO:0045926","negative regulation of growth",13,3,5.63,818,"0.96505","0.91365","0.91365" +"GO:0043066","negative regulation of apoptotic process",31,9,13.42,829,"0.96613","0.91436","0.91436" +"GO:0048608","reproductive structure development",19,7,8.23,528,"0.78737","0.91475","0.91475" +"GO:0000209","protein polyubiquitination",16,5,6.93,657,"0.89218","0.91503","0.91503" +"GO:0070647","protein modification by small protein co...",54,15,23.38,967,"0.99415","0.91581","0.91581" +"GO:0051172","negative regulation of nitrogen compound...",92,30,39.83,919,"0.98761","0.91622","0.91622" +"GO:0001667","ameboidal-type cell migration",14,4,6.06,712,"0.92008","0.91759","0.91759" +"GO:0044248","cellular catabolic process",127,51,54.99,532,"0.79543","0.50832","0.91789" +"GO:0051241","negative regulation of multicellular org...",43,8,18.62,1071,"0.99986","0.91896","0.91896" +"GO:0048584","positive regulation of response to stimu...",86,30,37.24,780,"0.95802","0.92005","0.92005" +"GO:0035295","tube development",46,14,19.92,868,"0.97484","0.92155","0.92155" +"GO:0030029","actin filament-based process",67,31,29.01,194,"0.35300","0.29128","0.92194" +"GO:0007034","vacuolar transport",13,5,5.63,475,"0.73327","0.92253","0.92253" +"GO:0050896","response to stimulus",642,268,277.97,573,"0.83685","0.88717","0.92257" +"GO:0007369","gastrulation",10,3,4.33,629,"0.88070","0.92308","0.92308" +"GO:0061061","muscle structure development",55,21,23.81,559,"0.81896","0.57135","0.92419" +"GO:0051253","negative regulation of RNA metabolic pro...",44,9,19.05,1058,"0.99964","0.92489","0.92489" +"GO:1902679","negative regulation of RNA biosynthetic ...",44,9,19.05,1059,"0.99964","0.92489","0.92489" +"GO:1903507","negative regulation of nucleic acid-temp...",44,9,19.05,1060,"0.99964","0.92489","0.92489" +"GO:0007267","cell-cell signaling",66,25,28.58,586,"0.84798","0.92495","0.92495" +"GO:0080135","regulation of cellular response to stres...",27,9,11.69,662,"0.89498","0.92511","0.92511" +"GO:0042176","regulation of protein catabolic process",14,4,6.06,713,"0.92008","0.92531","0.92531" +"GO:0010970","transport along microtubule",18,7,7.79,463,"0.72872","0.92591","0.92591" +"GO:0099111","microtubule-based transport",18,7,7.79,464,"0.72872","0.92591","0.92591" +"GO:0043547","positive regulation of GTPase activity",13,3,5.63,819,"0.96505","0.92634","0.92634" +"GO:0032446","protein modification by small protein co...",47,13,20.35,949,"0.99146","0.92653","0.92653" +"GO:0045892","negative regulation of transcription, DN...",43,9,18.62,1050,"0.99947","0.92657","0.92657" +"GO:0043412","macromolecule modification",344,125,148.94,1016,"0.99814","0.92774","0.92774" +"GO:0048869","cellular developmental process",213,82,92.22,739,"0.94074","0.85504","0.92796" +"GO:0007167","enzyme linked receptor protein signaling...",36,11,15.59,784,"0.95979","0.92942","0.92942" +"GO:1901565","organonitrogen compound catabolic proces...",69,26,29.88,598,"0.86000","0.92974","0.92974" +"GO:0010628","positive regulation of gene expression",66,19,28.58,971,"0.99518","0.93067","0.93067" +"GO:0051345","positive regulation of hydrolase activit...",23,9,9.96,469,"0.72885","0.93078","0.93078" +"GO:0032101","regulation of response to external stimu...",19,6,8.23,670,"0.89928","0.93092","0.93092" +"GO:0016567","protein ubiquitination",44,13,19.05,879,"0.97962","0.93114","0.93114" +"GO:1901698","response to nitrogen compound",41,16,17.75,498,"0.76177","0.93127","0.93127" +"GO:0016032","viral process",14,5,6.06,541,"0.79933","0.93187","0.93187" +"GO:0030154","cell differentiation",204,79,88.33,721,"0.92758","0.85932","0.93264" +"GO:0032504","multicellular organism reproduction",66,22,28.58,813,"0.96411","0.93299","0.93299" +"GO:0009719","response to endogenous stimulus",66,27,28.58,441,"0.69810","0.93310","0.93310" +"GO:0043161","proteasome-mediated ubiquitin-dependent ...",15,5,6.49,595,"0.85172","0.93315","0.93315" +"GO:0008154","actin polymerization or depolymerization",19,7,8.23,529,"0.78737","0.93315","0.93315" +"GO:0110053","regulation of actin filament organizatio...",19,8,8.23,368,"0.62817","0.93315","0.93315" +"GO:0016570","histone modification",24,5,10.39,969,"0.99447","0.93323","0.93323" +"GO:0045786","negative regulation of cell cycle",21,4,9.09,972,"0.99526","0.93326","0.93326" +"GO:0009891","positive regulation of biosynthetic proc...",63,20,27.28,876,"0.97885","0.93380","0.93380" +"GO:0042221","response to chemical",205,77,88.76,825,"0.96548","0.93445","0.93445" +"GO:0019725","cellular homeostasis",44,18,19.05,414,"0.68100","0.93468","0.93468" +"GO:0034660","ncRNA metabolic process",39,3,16.89,1091,"1.00000","0.93516","0.93516" +"GO:0040029","regulation of gene expression, epigeneti...",12,3,5.2,753,"0.94671","0.93568","0.93568" +"GO:0051726","regulation of cell cycle",53,15,22.95,954,"0.99217","0.93581","0.93581" +"GO:0090132","epithelium migration",12,3,5.2,754,"0.94671","0.93662","0.93662" +"GO:0009892","negative regulation of metabolic process",110,35,47.63,975,"0.99564","0.93672","0.93672" +"GO:0090130","tissue migration",13,3,5.63,820,"0.96505","0.93731","0.93731" +"GO:0007219","Notch signaling pathway",11,1,4.76,1012,"0.99809","0.93750","0.93750" +"GO:0043410","positive regulation of MAPK cascade",11,2,4.76,893,"0.98190","0.93750","0.93750" +"GO:0022613","ribonucleoprotein complex biogenesis",13,2,5.63,958,"0.99327","0.93909","0.93909" +"GO:0048638","regulation of developmental growth",13,5,5.63,476,"0.73327","0.93997","0.93997" +"GO:0046649","lymphocyte activation",16,3,6.93,943,"0.99069","0.94001","0.94001" +"GO:0016458","gene silencing",11,2,4.76,894,"0.98190","0.94090","0.94090" +"GO:0008380","RNA splicing",20,4,8.66,956,"0.99271","0.94162","0.94162" +"GO:0006464","cellular protein modification process",324,124,140.28,877,"0.97919","0.94187","0.94187" +"GO:0036211","protein modification process",324,124,140.28,878,"0.97919","0.94187","0.94187" +"GO:0007018","microtubule-based movement",29,10,12.56,613,"0.87626","0.94200","0.94200" +"GO:0009888","tissue development",114,47,49.36,450,"0.70928","0.89977","0.94298" +"GO:0006955","immune response",41,10,17.75,986,"0.99657","0.94299","0.94299" +"GO:0022402","cell cycle process",68,21,29.44,924,"0.98790","0.94340","0.94340" +"GO:0032501","multicellular organismal process",350,149,151.54,375,"0.63850","0.70628","0.94351" +"GO:0061458","reproductive system development",20,7,8.66,569,"0.83594","0.94414","0.94414" +"GO:0008283","cell proliferation",53,15,22.95,955,"0.99217","0.94425","0.94425" +"GO:0030705","cytoskeleton-dependent intracellular tra...",19,8,8.23,369,"0.62817","0.94486","0.94486" +"GO:0009451","RNA modification",18,1,7.79,1081,"0.99997","0.94619","0.94619" +"GO:0050673","epithelial cell proliferation",14,3,6.06,874,"0.97732","0.94633","0.94633" +"GO:0032535","regulation of cellular component size",25,9,10.82,562,"0.82685","0.94680","0.94680" +"GO:0051493","regulation of cytoskeleton organization",31,13,13.42,374,"0.62874","0.94687","0.94687" +"GO:0008285","negative regulation of cell proliferatio...",19,4,8.23,927,"0.98888","0.94688","0.94688" +"GO:2001234","negative regulation of apoptotic signali...",13,3,5.63,821,"0.96505","0.94689","0.94689" +"GO:0003006","developmental process involved in reprod...",55,21,23.81,560,"0.81896","0.94781","0.94781" +"GO:0071229","cellular response to acid chemical",10,3,4.33,630,"0.88070","0.94787","0.94787" +"GO:0000122","negative regulation of transcription by ...",30,6,12.99,1017,"0.99814","0.94847","0.94847" +"GO:0009967","positive regulation of signal transducti...",64,21,27.71,839,"0.96885","0.94878","0.94878" +"GO:0045137","development of primary sexual characteri...",10,4,4.33,437,"0.69705","0.94914","0.94914" +"GO:0001503","ossification",12,1,5.2,1032,"0.99892","0.94926","0.94926" +"GO:0006412","translation",52,15,22.51,939,"0.98959","0.94928","0.94928" +"GO:0022607","cellular component assembly",170,60,73.61,926,"0.98887","0.88496","0.94983" +"GO:0072331","signal transduction by p53 class mediato...",10,3,4.33,631,"0.88070","0.95123","0.95123" +"GO:0009057","macromolecule catabolic process",58,18,25.11,883,"0.98086","0.95128","0.95128" +"GO:0000375","RNA splicing, via transesterification re...",16,4,6.93,800,"0.96252","0.95309","0.95309" +"GO:0000377","RNA splicing, via transesterification re...",16,4,6.93,801,"0.96252","0.95309","0.95309" +"GO:0000398","mRNA splicing, via spliceosome",16,4,6.93,802,"0.96252","0.95309","0.95309" +"GO:0006399","tRNA metabolic process",24,2,10.39,1084,"0.99998","0.95378","0.95378" +"GO:0031401","positive regulation of protein modificat...",37,10,16.02,916,"0.98713","0.95505","0.95505" +"GO:0007178","transmembrane receptor protein serine/th...",16,5,6.93,658,"0.89218","0.95513","0.95513" +"GO:0051169","nuclear transport",16,4,6.93,803,"0.96252","0.95513","0.95513" +"GO:0018130","heterocycle biosynthetic process",355,141,153.7,736,"0.93830","0.95523","0.95523" +"GO:0034470","ncRNA processing",26,0,11.26,1093,"1.00000","0.95654","0.95654" +"GO:0043043","peptide biosynthetic process",54,16,23.38,913,"0.98704","0.95681","0.95681" +"GO:0019058","viral life cycle",11,4,4.76,519,"0.77667","0.95682","0.95682" +"GO:0031929","TOR signaling",10,0,4.33,1094,"1.00000","0.95686","0.95686" +"GO:0034976","response to endoplasmic reticulum stress",17,4,7.36,866,"0.97477","0.95698","0.95698" +"GO:0006479","protein methylation",11,3,4.76,704,"0.91971","0.95712","0.95712" +"GO:0008213","protein alkylation",11,3,4.76,705,"0.91971","0.95712","0.95712" +"GO:0009791","post-embryonic development",20,8,8.66,440,"0.69719","0.95736","0.95736" +"GO:0031647","regulation of protein stability",10,3,4.33,632,"0.88070","0.95764","0.95764" +"GO:0006913","nucleocytoplasmic transport",15,4,6.49,745,"0.94494","0.95789","0.95789" +"GO:0019098","reproductive behavior",11,3,4.76,706,"0.91971","0.95881","0.95881" +"GO:0019438","aromatic compound biosynthetic process",348,137,150.67,772,"0.95235","0.95884","0.95884" +"GO:0002252","immune effector process",21,6,9.09,762,"0.94691","0.95970","0.95970" +"GO:0044271","cellular nitrogen compound biosynthetic ...",409,159,177.09,880,"0.97987","0.95972","0.95972" +"GO:0015672","monovalent inorganic cation transport",62,19,26.84,910,"0.98612","0.96048","0.96048" +"GO:0009893","positive regulation of metabolic process",123,41,53.26,953,"0.99205","0.96067","0.96067" +"GO:0099504","synaptic vesicle cycle",16,5,6.93,659,"0.89218","0.96105","0.96105" +"GO:0044085","cellular component biogenesis",177,62,76.64,952,"0.99200","0.90292","0.96136" +"GO:0007266","Rho protein signal transduction",16,6,6.93,501,"0.76270","0.96158","0.96158" +"GO:0043087","regulation of GTPase activity",19,5,8.23,793,"0.96178","0.96230","0.96230" +"GO:0002376","immune system process",91,29,39.4,948,"0.99143","0.96258","0.96258" +"GO:0048585","negative regulation of response to stimu...",73,20,31.61,1021,"0.99852","0.96305","0.96305" +"GO:0051321","meiotic cell cycle",13,2,5.63,959,"0.99327","0.96344","0.96344" +"GO:0097193","intrinsic apoptotic signaling pathway",13,5,5.63,477,"0.73327","0.96344","0.96344" +"GO:0000278","mitotic cell cycle",43,14,18.62,750,"0.94581","0.96422","0.96422" +"GO:2000241","regulation of reproductive process",13,3,5.63,822,"0.96505","0.96538","0.96538" +"GO:0043900","regulation of multi-organism process",20,7,8.66,570,"0.83594","0.96549","0.96549" +"GO:0000280","nuclear division",20,5,8.66,863,"0.97357","0.96574","0.96574" +"GO:0034654","nucleobase-containing compound biosynthe...",333,131,144.18,770,"0.94944","0.96623","0.96623" +"GO:0051129","negative regulation of cellular componen...",35,14,15.15,456,"0.71311","0.96636","0.96636" +"GO:0010605","negative regulation of macromolecule met...",103,30,44.6,1036,"0.99912","0.96644","0.96644" +"GO:0048736","appendage development",16,1,6.93,1074,"0.99989","0.96646","0.96646" +"GO:0016192","vesicle-mediated transport",124,33,53.69,1082,"0.99997","0.96648","0.96648" +"GO:0010647","positive regulation of cell communicatio...",72,25,31.17,763,"0.94782","0.96652","0.96652" +"GO:0023056","positive regulation of signaling",72,25,31.17,764,"0.94782","0.96652","0.96652" +"GO:0010498","proteasomal protein catabolic process",21,7,9.09,611,"0.87522","0.96686","0.96686" +"GO:0002683","negative regulation of immune system pro...",19,5,8.23,794,"0.96178","0.96720","0.96720" +"GO:0002064","epithelial cell development",16,4,6.93,804,"0.96252","0.96739","0.96739" +"GO:0071704","organic substance metabolic process",1222,509,529.09,781,"0.95857","0.87607","0.96781" +"GO:0045087","innate immune response",19,6,8.23,671,"0.89928","0.96844","0.96844" +"GO:0032956","regulation of actin cytoskeleton organiz...",21,8,9.09,495,"0.75736","0.96855","0.96855" +"GO:0033044","regulation of chromosome organization",11,3,4.76,707,"0.91971","0.96900","0.96900" +"GO:0043543","protein acylation",11,3,4.76,708,"0.91971","0.96900","0.96900" +"GO:0008033","tRNA processing",16,0,6.93,1095,"1.00000","0.96905","0.96905" +"GO:0001510","RNA methylation",10,1,4.33,988,"0.99662","0.96984","0.96984" +"GO:0045862","positive regulation of proteolysis",10,4,4.33,438,"0.69705","0.96984","0.96984" +"GO:0007292","female gamete generation",20,3,8.66,1023,"0.99856","0.97054","0.97054" +"GO:0010721","negative regulation of cell development",17,3,7.36,963,"0.99410","0.97063","0.97063" +"GO:0071559","response to transforming growth factor b...",10,1,4.33,989,"0.99662","0.97179","0.97179" +"GO:0071560","cellular response to transforming growth...",10,1,4.33,990,"0.99662","0.97179","0.97179" +"GO:2001242","regulation of intrinsic apoptotic signal...",10,3,4.33,633,"0.88070","0.97179","0.97179" +"GO:0070371","ERK1 and ERK2 cascade",11,1,4.76,1013,"0.99809","0.97211","0.97211" +"GO:0080134","regulation of response to stress",48,15,20.78,840,"0.96951","0.97235","0.97235" +"GO:0035107","appendage morphogenesis",13,1,5.63,1046,"0.99939","0.97270","0.97270" +"GO:0050768","negative regulation of neurogenesis",15,3,6.49,908,"0.98541","0.97356","0.97356" +"GO:0071840","cellular component organization or bioge...",372,122,161.07,1088,"1.00000","0.96826","0.97570" +"GO:0023061","signal release",18,5,7.79,748,"0.94533","0.97576","0.97576" +"GO:0070925","organelle assembly",68,27,29.44,505,"0.76671","0.59659","0.97680" +"GO:0006518","peptide metabolic process",61,19,26.41,897,"0.98216","0.97707","0.97707" +"GO:0016043","cellular component organization",365,121,158.03,1086,"0.99999","0.97533","0.97720" +"GO:0051179","localization",620,273,268.44,190,"0.34995","0.21126","0.97761" +"GO:0010604","positive regulation of macromolecule met...",106,33,45.9,998,"0.99681","0.97764","0.97764" +"GO:0006396","RNA processing",63,14,27.28,1073,"0.99988","0.97770","0.97770" +"GO:0034613","cellular protein localization",111,40,48.06,773,"0.95451","0.97813","0.97813" +"GO:0032870","cellular response to hormone stimulus",35,12,15.15,664,"0.89658","0.97927","0.97927" +"GO:0051961","negative regulation of nervous system de...",17,3,7.36,964,"0.99410","0.97927","0.97927" +"GO:0001558","regulation of cell growth",17,3,7.36,965,"0.99410","0.98007","0.98007" +"GO:0048285","organelle fission",22,5,9.53,920,"0.98771","0.98012","0.98012" +"GO:0016050","vesicle organization",16,3,6.93,944,"0.99069","0.98049","0.98049" +"GO:0070848","response to growth factor",22,6,9.53,797,"0.96212","0.98067","0.98067" +"GO:0071310","cellular response to organic substance",83,30,35.94,723,"0.92774","0.98080","0.98080" +"GO:0006814","sodium ion transport",22,7,9.53,677,"0.90636","0.98092","0.98092" +"GO:0033554","cellular response to stress",91,27,39.4,1007,"0.99770","0.98131","0.98131" +"GO:0048477","oogenesis",18,3,7.79,980,"0.99629","0.98311","0.98311" +"GO:0009890","negative regulation of biosynthetic proc...",52,13,22.51,1018,"0.99823","0.98330","0.98330" +"GO:1901362","organic cyclic compound biosynthetic pro...",371,149,160.63,688,"0.91769","0.98349","0.98349" +"GO:0031327","negative regulation of cellular biosynth...",51,12,22.08,1035,"0.99911","0.98362","0.98362" +"GO:0009058","biosynthetic process",560,236,242.46,487,"0.75238","0.98375","0.98375" +"GO:0010558","negative regulation of macromolecule bio...",50,11,21.65,1055,"0.99958","0.98395","0.98395" +"GO:2000113","negative regulation of cellular macromol...",48,10,20.78,1064,"0.99973","0.98460","0.98460" +"GO:0016070","RNA metabolic process",347,119,150.24,1076,"0.99992","0.98474","0.98474" +"GO:0045934","negative regulation of nucleobase-contai...",47,10,20.35,1056,"0.99961","0.98493","0.98493" +"GO:0033036","macromolecule localization",185,66,80.1,925,"0.98854","0.98527","0.98527" +"GO:0006807","nitrogen compound metabolic process",1029,405,445.53,1066,"0.99974","0.98530","0.98530" +"GO:0009755","hormone-mediated signaling pathway",20,7,8.66,571,"0.83594","0.98540","0.98540" +"GO:0006352","DNA-templated transcription, initiation",13,3,5.63,823,"0.96505","0.98627","0.98627" +"GO:0006725","cellular aromatic compound metabolic pro...",511,185,221.25,1075,"0.99991","0.98631","0.98631" +"GO:0046483","heterocycle metabolic process",510,184,220.82,1079,"0.99993","0.98644","0.98644" +"GO:0070727","cellular macromolecule localization",112,40,48.49,786,"0.96158","0.98690","0.98690" +"GO:0034504","protein localization to nucleus",12,2,5.2,933,"0.98893","0.98733","0.98733" +"GO:0016071","mRNA metabolic process",37,12,16.02,735,"0.93651","0.98734","0.98734" +"GO:0006511","ubiquitin-dependent protein catabolic pr...",26,8,11.26,730,"0.93488","0.98750","0.98750" +"GO:0019941","modification-dependent protein catabolic...",26,8,11.26,731,"0.93488","0.98750","0.98750" +"GO:0043632","modification-dependent macromolecule cat...",26,8,11.26,732,"0.93488","0.98750","0.98750" +"GO:0051247","positive regulation of protein metabolic...",52,15,22.51,940,"0.98959","0.98752","0.98752" +"GO:0045321","leukocyte activation",27,7,11.69,889,"0.98116","0.98756","0.98756" +"GO:0044265","cellular macromolecule catabolic process",47,13,20.35,950,"0.99146","0.98779","0.98779" +"GO:0008104","protein localization",154,52,66.68,970,"0.99507","0.98790","0.98790" +"GO:0071702","organic substance transport",150,55,64.95,810,"0.96323","0.98823","0.98823" +"GO:0006351","transcription, DNA-templated",271,102,117.34,884,"0.98104","0.98851","0.98851" +"GO:0032774","RNA biosynthetic process",271,102,117.34,885,"0.98104","0.98851","0.98851" +"GO:0097659","nucleic acid-templated transcription",271,102,117.34,886,"0.98104","0.98851","0.98851" +"GO:0034641","cellular nitrogen compound metabolic pro...",566,204,245.06,1083,"0.99998","0.98868","0.98868" +"GO:0019219","regulation of nucleobase-containing comp...",267,101,115.6,871,"0.97682","0.98870","0.98870" +"GO:0051130","positive regulation of cellular componen...",60,22,25.98,640,"0.88204","0.98875","0.98875" +"GO:0051252","regulation of RNA metabolic process",264,99,114.3,896,"0.98195","0.98884","0.98884" +"GO:0002684","positive regulation of immune system pro...",22,5,9.53,921,"0.98771","0.98903","0.98903" +"GO:0002253","activation of immune response",12,2,5.2,934,"0.98893","0.98912","0.98912" +"GO:0070887","cellular response to chemical stimulus",108,38,46.76,837,"0.96823","0.98918","0.98918" +"GO:0006355","regulation of transcription, DNA-templat...",256,97,110.84,857,"0.97297","0.98922","0.98922" +"GO:1903506","regulation of nucleic acid-templated tra...",256,97,110.84,858,"0.97297","0.98922","0.98922" +"GO:2001141","regulation of RNA biosynthetic process",256,97,110.84,859,"0.97297","0.98922","0.98922" +"GO:0046907","intracellular transport",134,44,58.02,976,"0.99584","0.98956","0.98956" +"GO:0006139","nucleobase-containing compound metabolic...",482,171,208.69,1080,"0.99996","0.98990","0.98990" +"GO:0030100","regulation of endocytosis",17,4,7.36,867,"0.97477","0.99004","0.99004" +"GO:0010467","gene expression",398,130,172.32,1090,"1.00000","0.99052","0.99052" +"GO:1901360","organic cyclic compound metabolic proces...",535,200,231.64,1044,"0.99935","0.99060","0.99060" +"GO:0071705","nitrogen compound transport",120,41,51.96,909,"0.98565","0.99070","0.99070" +"GO:1901576","organic substance biosynthetic process",540,222,233.8,651,"0.88913","0.99086","0.99086" +"GO:0000819","sister chromatid segregation",10,3,4.33,634,"0.88070","0.99096","0.99096" +"GO:0007059","chromosome segregation",10,3,4.33,635,"0.88070","0.99096","0.99096" +"GO:0098813","nuclear chromosome segregation",10,3,4.33,636,"0.88070","0.99096","0.99096" +"GO:0006974","cellular response to DNA damage stimulus",44,10,19.05,1030,"0.99881","0.99111","0.99111" +"GO:0002065","columnar/cuboidal epithelial cell differ...",13,2,5.63,960,"0.99327","0.99161","0.99161" +"GO:0006397","mRNA processing",24,8,10.39,642,"0.88555","0.99182","0.99182" +"GO:0065008","regulation of biological quality",202,82,87.46,551,"0.81204","0.94499","0.99183" +"GO:0015988","energy coupled proton transmembrane tran...",12,3,5.2,755,"0.94671","0.99240","0.99240" +"GO:0015991","ATP hydrolysis coupled proton transport",12,3,5.2,756,"0.94671","0.99240","0.99240" +"GO:0090662","ATP hydrolysis coupled transmembrane tra...",12,3,5.2,757,"0.94671","0.99240","0.99240" +"GO:0099131","ATP hydrolysis coupled ion transmembrane...",12,3,5.2,758,"0.94671","0.99240","0.99240" +"GO:0099132","ATP hydrolysis coupled cation transmembr...",12,3,5.2,759,"0.94671","0.99240","0.99240" +"GO:0045184","establishment of protein localization",99,28,42.86,1049,"0.99943","0.99240","0.99240" +"GO:0042886","amide transport",97,27,42,1054,"0.99954","0.99256","0.99256" +"GO:0015833","peptide transport",96,26,41.57,1065,"0.99973","0.99264","0.99264" +"GO:0015031","protein transport",95,26,41.13,1061,"0.99964","0.99272","0.99272" +"GO:0043414","macromolecule methylation",23,4,9.96,1009,"0.99803","0.99295","0.99295" +"GO:1902532","negative regulation of intracellular sig...",31,6,13.42,1029,"0.99877","0.99321","0.99321" +"GO:0010033","response to organic substance",129,47,55.85,779,"0.95726","0.99334","0.99334" +"GO:0010646","regulation of cell communication",170,58,73.61,973,"0.99554","0.99355","0.99355" +"GO:0007015","actin filament organization",30,10,12.99,674,"0.90358","0.99379","0.99379" +"GO:0046578","regulation of Ras protein signal transdu...",21,7,9.09,612,"0.87522","0.99385","0.99385" +"GO:0090304","nucleic acid metabolic process",380,126,164.53,1087,"1.00000","0.99385","0.99385" +"GO:0048583","regulation of response to stimulus",188,61,81.4,1048,"0.99942","0.99470","0.99470" +"GO:0007049","cell cycle",94,25,40.7,1068,"0.99979","0.99470","0.99470" +"GO:0023051","regulation of signaling",175,59,75.77,999,"0.99719","0.99485","0.99485" +"GO:0044089","positive regulation of cellular componen...",34,13,14.72,521,"0.77951","0.99491","0.99491" +"GO:0044237","cellular metabolic process",1113,449,481.9,1001,"0.99753","0.96205","0.99506" +"GO:0007010","cytoskeleton organization",100,42,43.3,379,"0.64317","0.56448","0.99511" +"GO:0018193","peptidyl-amino acid modification",45,17,19.48,552,"0.81728","0.99515","0.99515" +"GO:0006886","intracellular protein transport",64,20,27.71,903,"0.98339","0.99515","0.99515" +"GO:0032268","regulation of cellular protein metabolic...",106,35,45.9,941,"0.98962","0.99520","0.99520" +"GO:0006281","DNA repair",22,5,9.53,922,"0.98771","0.99559","0.99559" +"GO:0030036","actin cytoskeleton organization",63,28,27.28,278,"0.47495","0.36706","0.99617" +"GO:0044257","cellular protein catabolic process",33,10,14.29,776,"0.95710","0.99643","0.99643" +"GO:0051603","proteolysis involved in cellular protein...",33,10,14.29,777,"0.95710","0.99643","0.99643" +"GO:0033043","regulation of organelle organization",66,25,28.58,587,"0.84798","0.99656","0.99656" +"GO:0030163","protein catabolic process",45,13,19.48,906,"0.98465","0.99673","0.99673" +"GO:0048519","negative regulation of biological proces...",229,84,99.15,911,"0.98651","0.99701","0.99701" +"GO:0006996","organelle organization",246,85,106.51,1026,"0.99875","0.99595","0.99702" +"GO:0045088","regulation of innate immune response",14,3,6.06,875,"0.97732","0.99711","0.99711" +"GO:0051276","chromosome organization",61,16,26.41,1019,"0.99831","0.99715","0.99715" +"GO:0044238","primary metabolic process",1127,463,487.96,905,"0.98388","0.96565","0.99721" +"GO:0044249","cellular biosynthetic process",522,215,226.01,614,"0.87628","0.99721","0.99721" +"GO:0051056","regulation of small GTPase mediated sign...",23,7,9.96,725,"0.93059","0.99748","0.99748" +"GO:1902531","regulation of intracellular signal trans...",87,23,37.67,1063,"0.99970","0.99782","0.99782" +"GO:0006325","chromatin organization",45,13,19.48,907,"0.98465","0.99791","0.99791" +"GO:0032259","methylation",25,5,10.82,982,"0.99633","0.99797","0.99797" +"GO:0040007","growth",53,14,22.95,996,"0.99669","0.99816","0.99816" +"GO:0032270","positive regulation of cellular protein ...",49,14,21.22,936,"0.98905","0.99856","0.99856" +"GO:0019538","protein metabolic process",493,183,213.46,1041,"0.99929","0.99864","0.99864" +"GO:0009966","regulation of signal transduction",145,45,62.78,1043,"0.99934","0.99866","0.99866" +"GO:0006810","transport",542,238,234.67,211,"0.38916","0.26999","0.99872" +"GO:0016569","covalent chromatin modification",27,6,11.69,962,"0.99391","0.99876","0.99876" +"GO:0031347","regulation of defense response",20,4,8.66,957,"0.99271","0.99877","0.99877" +"GO:0048589","developmental growth",36,10,15.59,899,"0.98240","0.99886","0.99886" +"GO:0045444","fat cell differentiation",13,3,5.63,824,"0.96505","0.99889","0.99889" +"GO:0010468","regulation of gene expression",288,104,124.7,993,"0.99666","0.99890","0.99890" +"GO:0048518","positive regulation of biological proces...",288,109,124.7,881,"0.98066","0.99898","0.99898" +"GO:0045055","regulated exocytosis",11,1,4.76,1014,"0.99809","0.99901","0.99901" +"GO:0051246","regulation of protein metabolic process",113,36,48.93,978,"0.99596","0.99921","0.99921" +"GO:0018205","peptidyl-lysine modification",17,3,7.36,966,"0.99410","0.99922","0.99922" +"GO:0009059","macromolecule biosynthetic process",384,146,166.26,942,"0.99065","0.99931","0.99931" +"GO:0034645","cellular macromolecule biosynthetic proc...",380,143,164.53,961,"0.99391","0.99932","0.99932" +"GO:0019222","regulation of metabolic process",379,140,164.1,1000,"0.99748","0.99932","0.99932" +"GO:0090287","regulation of cellular response to growt...",11,3,4.76,709,"0.91971","0.99935","0.99935" +"GO:0006259","DNA metabolic process",47,11,20.35,1027,"0.99877","0.99935","0.99935" +"GO:0031323","regulation of cellular metabolic process",361,134,156.3,979,"0.99599","0.99936","0.99936" +"GO:0080090","regulation of primary metabolic process",351,131,151.97,968,"0.99421","0.99938","0.99938" +"GO:0050778","positive regulation of immune response",16,3,6.93,945,"0.99069","0.99938","0.99938" +"GO:0060255","regulation of macromolecule metabolic pr...",350,129,151.54,994,"0.99667","0.99938","0.99938" +"GO:0051234","establishment of localization",550,240,238.13,251,"0.44599","0.36443","0.99938" +"GO:0051171","regulation of nitrogen compound metaboli...",342,126,148.08,984,"0.99637","0.99940","0.99940" +"GO:0043170","macromolecule metabolic process",864,325,374.09,1085,"0.99999","0.99948","0.99948" +"GO:0009889","regulation of biosynthetic process",285,109,123.4,855,"0.97189","0.99951","0.99951" +"GO:0031326","regulation of cellular biosynthetic proc...",279,105,120.8,900,"0.98257","0.99952","0.99952" +"GO:0010556","regulation of macromolecule biosynthetic...",274,103,118.63,898,"0.98236","0.99953","0.99953" +"GO:2000112","regulation of cellular macromolecule bio...",272,102,117.77,904,"0.98339","0.99954","0.99954" +"GO:0048522","positive regulation of cellular process",244,91,105.65,890,"0.98121","0.99959","0.99959" +"GO:0044260","cellular macromolecule metabolic process",676,243,292.69,1089,"1.00000","0.99964","0.99964" +"GO:0048523","negative regulation of cellular process",197,74,85.3,805,"0.96255","0.99968","0.99968" +"GO:0051641","cellular localization",192,64,83.13,1024,"0.99873","0.99968","0.99968" +"GO:0031349","positive regulation of defense response",10,1,4.33,991,"0.99662","0.99976","0.99976" +"GO:0051649","establishment of localization in cell",149,47,64.51,1034,"0.99910","0.99976","0.99976" +"GO:0006260","DNA replication",17,5,7.36,715,"0.92273","0.99977","0.99977" +"GO:0065007","biological regulation",895,351,387.51,1042,"0.99931","0.99982","0.99977" +"GO:0044267","cellular protein metabolic process",403,142,174.49,1072,"0.99988","0.99982","0.99982" +"GO:0043933","protein-containing complex subunit organ...",90,31,38.97,836,"0.96802","0.99986","0.99986" +"GO:0065003","protein-containing complex assembly",83,28,35.94,856,"0.97265","0.99987","0.99987" +"GO:0034622","cellular protein-containing complex asse...",61,20,26.41,830,"0.96629","0.99991","0.99991" +"GO:0002682","regulation of immune system process",53,14,22.95,997,"0.99669","0.99992","0.99992" +"GO:0016049","cell growth",24,4,10.39,1025,"0.99874","0.99992","0.99992" +"GO:0071495","cellular response to endogenous stimulus",48,16,20.78,741,"0.94160","0.99993","0.99993" +"GO:0097435","supramolecular fiber organization",55,24,23.81,313,"0.53202","0.57958","0.99993" +"GO:0035556","intracellular signal transduction",161,53,69.71,1008,"0.99795","0.99993","0.99993" +"GO:0045454","cell redox homeostasis",18,3,7.79,981,"0.99629","0.99994","0.99994" +"GO:0007264","small GTPase mediated signal transductio...",39,12,16.89,798,"0.96239","0.99994","0.99994" +"GO:0010638","positive regulation of organelle organiz...",34,13,14.72,522,"0.77951","0.99995","0.99995" +"GO:0050776","regulation of immune response",25,5,10.82,983,"0.99633","0.99996","0.99996" +"GO:0007265","Ras protein signal transduction",24,7,10.39,769,"0.94914","0.99996","0.99996" +"GO:0051495","positive regulation of cytoskeleton orga...",20,7,8.66,572,"0.83594","0.99997","0.99997" +"GO:0071363","cellular response to growth factor stimu...",20,5,8.66,864,"0.97357","0.99997","0.99997" +"GO:1902905","positive regulation of supramolecular fi...",19,7,8.23,530,"0.78737","0.99997","0.99997" +"GO:0051051","negative regulation of transport",13,4,5.63,647,"0.88558","0.99998","0.99998" +"GO:0060560","developmental growth involved in morphog...",12,2,5.2,935,"0.98893","0.99998","0.99998" +"GO:0002764","immune response-regulating signaling pat...",11,1,4.76,1015,"0.99809","0.99998","0.99998" +"GO:0002066","columnar/cuboidal epithelial cell develo...",10,2,4.33,851,"0.97059","0.99998","0.99998" +"GO:0002757","immune response-activating signal transd...",10,1,4.33,992,"0.99662","0.99998","0.99998" +"GO:0030838","positive regulation of actin filament po...",10,3,4.33,637,"0.88070","0.99998","0.99998" +"GO:0048588","developmental cell growth",10,2,4.33,852,"0.97059","0.99998","0.99998" +"GO:0007599","hemostasis",11,9,4.76,15,"0.01084","0.00167","1.00000" +"GO:0008150","biological_process",2305,998,998,1096,"1.00000","1.00000","1.00000" +"GO:0009987","cellular process",1642,646,710.94,1092,"1.00000","0.99919","1.00000" +"GO:0050789","regulation of biological process",849,331,367.59,1047,"0.99940","1.00000","1.00000" +"GO:0050794","regulation of cellular process",817,316,353.74,1057,"0.99962","1.00000","1.00000" +"GO:0050817","coagulation",11,9,4.76,16,"0.01084","0.00167","1.00000" +"GO:0051716","cellular response to stimulus",518,202,224.28,937,"0.98929","1.00000","1.00000" diff --git a/GO_enrichment_output/contrast_arresting_prelaying_upregulated.csv b/GO_enrichment_output/contrast_arresting_prelaying_upregulated.csv index 2232c14..629a3e4 100644 --- a/GO_enrichment_output/contrast_arresting_prelaying_upregulated.csv +++ b/GO_enrichment_output/contrast_arresting_prelaying_upregulated.csv @@ -4,3 +4,2944 @@ "GO:0006364","rRNA processing",46,27,19.39,18,"0.0167","0.00317","0.0032" "GO:0006396","RNA processing",219,112,92.31,2,"0.0032","0.00015","0.0039" "GO:0030968","endoplasmic reticulum unfolded protein r...",9,7,3.79,54,"0.0339","0.00482","0.0048" +"GO:0033044","regulation of chromosome organization",30,14,12.65,567,"0.3724","0.00687","0.0069" +"GO:0043161","proteasome-mediated ubiquitin-dependent ...",42,25,17.7,20,"0.0167","0.00902","0.0090" +"GO:0051092","positive regulation of NF-kappaB transcr...",5,5,2.11,14,"0.0132","0.01014","0.0101" +"GO:0036297","interstrand cross-link repair",5,5,2.11,15,"0.0132","0.01055","0.0105" +"GO:0006260","DNA replication",65,34,27.4,86,"0.0612","0.01055","0.0105" +"GO:0000387","spliceosomal snRNP assembly",8,7,3.37,13,"0.0118","0.01059","0.0106" +"GO:0002429","immune response-activating cell surface ...",10,8,4.22,22,"0.0174","0.01300","0.0130" +"GO:0002768","immune response-regulating cell surface ...",10,8,4.22,23,"0.0174","0.01300","0.0130" +"GO:1903825","organic acid transmembrane transport",14,9,5.9,122,"0.0801","0.01305","0.0131" +"GO:1905039","carboxylic acid transmembrane transport",14,9,5.9,123,"0.0801","0.01305","0.0131" +"GO:1905897","regulation of response to endoplasmic re...",11,9,4.64,9,"0.0088","0.01332","0.0133" +"GO:1905330","regulation of morphogenesis of an epithe...",7,5,2.95,174,"0.1183","0.01453","0.0145" +"GO:0030041","actin filament polymerization",14,10,5.9,35,"0.0259","0.01488","0.0149" +"GO:0030833","regulation of actin filament polymerizat...",14,10,5.9,36,"0.0259","0.01488","0.0149" +"GO:1903573","negative regulation of response to endop...",9,7,3.79,55,"0.0339","0.01497","0.0150" +"GO:0006289","nucleotide-excision repair",14,10,5.9,37,"0.0259","0.01637","0.0164" +"GO:0000413","protein peptidyl-prolyl isomerization",12,8,5.06,112,"0.0771","0.01705","0.0171" +"GO:0018208","peptidyl-proline modification",12,8,5.06,113,"0.0771","0.01705","0.0171" +"GO:0006970","response to osmotic stress",8,4,3.37,778,"0.4562","0.01717","0.0172" +"GO:0008154","actin polymerization or depolymerization",16,11,6.74,38,"0.0288","0.01804","0.0180" +"GO:0051016","barbed-end actin filament capping",3,3,1.26,98,"0.0748","0.01804","0.0180" +"GO:0051693","actin filament capping",3,3,1.26,99,"0.0748","0.01804","0.0180" +"GO:0007062","sister chromatid cohesion",12,8,5.06,114,"0.0771","0.01872","0.0187" +"GO:0035456","response to interferon-beta",4,4,1.69,44,"0.0315","0.01874","0.0187" +"GO:0035458","cellular response to interferon-beta",4,4,1.69,45,"0.0315","0.01874","0.0187" +"GO:1901214","regulation of neuron death",16,11,6.74,39,"0.0288","0.01880","0.0188" +"GO:0003333","amino acid transmembrane transport",12,8,5.06,115,"0.0771","0.01908","0.0191" +"GO:0006865","amino acid transport",12,8,5.06,116,"0.0771","0.01908","0.0191" +"GO:0030838","positive regulation of actin filament po...",10,7,4.22,93,"0.0722","0.01918","0.0192" +"GO:0006282","regulation of DNA repair",7,5,2.95,175,"0.1183","0.02248","0.0225" +"GO:0070059","intrinsic apoptotic signaling pathway in...",6,5,2.53,76,"0.0516","0.02311","0.0231" +"GO:0000462","maturation of SSU-rRNA from tricistronic...",5,4,2.11,141,"0.1044","0.02311","0.0231" +"GO:0090502","RNA phosphodiester bond hydrolysis, endo...",5,4,2.11,142,"0.1044","0.02311","0.0231" +"GO:0090100","positive regulation of transmembrane rec...",4,4,1.69,46,"0.0315","0.02322","0.0232" +"GO:0006030","chitin metabolic process",10,7,4.22,94,"0.0722","0.02326","0.0233" +"GO:0051258","protein polymerization",27,17,11.38,26,"0.0231","0.02344","0.0234" +"GO:0051276","chromosome organization",171,80,72.08,173,"0.1179","0.00558","0.0244" +"GO:0000079","regulation of cyclin-dependent protein s...",5,4,2.11,143,"0.1044","0.02504","0.0250" +"GO:0070647","protein modification by small protein co...",112,57,47.21,58,"0.0354","0.02748","0.0275" +"GO:0016579","protein deubiquitination",34,20,14.33,61,"0.0362","0.02778","0.0278" +"GO:0008064","regulation of actin polymerization or de...",15,10,6.32,67,"0.0487","0.02827","0.0283" +"GO:0030832","regulation of actin filament length",15,10,6.32,68,"0.0487","0.02827","0.0283" +"GO:0006310","DNA recombination",29,15,12.22,251,"0.1942","0.02907","0.0291" +"GO:0035372","protein localization to microtubule",3,3,1.26,100,"0.0748","0.03017","0.0302" +"GO:0015849","organic acid transport",23,12,9.69,374,"0.2210","0.03098","0.0310" +"GO:0046942","carboxylic acid transport",23,12,9.69,375,"0.2210","0.03098","0.0310" +"GO:1902275","regulation of chromatin organization",19,8,8.01,1131,"0.5888","0.03153","0.0315" +"GO:0007059","chromosome segregation",34,18,14.33,217,"0.1344","0.03201","0.0320" +"GO:0070997","neuron death",17,12,7.17,19,"0.0167","0.03383","0.0338" +"GO:0018196","peptidyl-asparagine modification",8,6,3.37,87,"0.0642","0.03535","0.0353" +"GO:0018279","protein N-linked glycosylation via aspar...",8,6,3.37,88,"0.0642","0.03535","0.0353" +"GO:0048754","branching morphogenesis of an epithelial...",7,5,2.95,176,"0.1183","0.03719","0.0372" +"GO:0007049","cell cycle",158,77,66.6,71,"0.0507","0.03747","0.0375" +"GO:0000723","telomere maintenance",9,6,3.79,193,"0.1249","0.03851","0.0385" +"GO:0032200","telomere organization",9,6,3.79,194,"0.1249","0.03851","0.0385" +"GO:0032271","regulation of protein polymerization",18,12,7.59,40,"0.0312","0.03886","0.0389" +"GO:0090092","regulation of transmembrane receptor pro...",13,10,5.48,12,"0.0118","0.03897","0.0390" +"GO:0034314","Arp2/3 complex-mediated actin nucleation",6,4,2.53,342,"0.2100","0.04199","0.0420" +"GO:0000819","sister chromatid segregation",25,13,10.54,370,"0.2115","0.04201","0.0420" +"GO:0007249","I-kappaB kinase/NF-kappaB signaling",4,3,1.69,268,"0.2047","0.04232","0.0423" +"GO:0043122","regulation of I-kappaB kinase/NF-kappaB ...",4,3,1.69,269,"0.2047","0.04232","0.0423" +"GO:0043123","positive regulation of I-kappaB kinase/N...",4,3,1.69,270,"0.2047","0.04232","0.0423" +"GO:0006040","amino sugar metabolic process",11,7,4.64,208,"0.1277","0.04238","0.0424" +"GO:1901071","glucosamine-containing compound metaboli...",11,7,4.64,209,"0.1277","0.04238","0.0424" +"GO:0000469","cleavage involved in rRNA processing",8,5,3.37,330,"0.2084","0.04588","0.0459" +"GO:0045010","actin nucleation",9,6,3.79,195,"0.1249","0.04769","0.0477" +"GO:0050851","antigen receptor-mediated signaling path...",7,5,2.95,177,"0.1183","0.04801","0.0480" +"GO:0050852","T cell receptor signaling pathway",7,5,2.95,178,"0.1183","0.04801","0.0480" +"GO:1903522","regulation of blood circulation",7,6,2.95,32,"0.0249","0.05037","0.0504" +"GO:0070534","protein K63-linked ubiquitination",11,7,4.64,210,"0.1277","0.05318","0.0532" +"GO:0008033","tRNA processing",46,26,19.39,53,"0.0337","0.05461","0.0546" +"GO:0009219","pyrimidine deoxyribonucleotide metabolic...",3,3,1.26,101,"0.0748","0.05523","0.0552" +"GO:0002253","activation of immune response",18,12,7.59,41,"0.0312","0.05583","0.0558" +"GO:0009651","response to salt stress",5,2,2.11,1335,"0.6994","0.05603","0.0560" +"GO:0010950","positive regulation of endopeptidase act...",3,3,1.26,102,"0.0748","0.05692","0.0569" +"GO:0010952","positive regulation of peptidase activit...",3,3,1.26,103,"0.0748","0.05692","0.0569" +"GO:1904292","regulation of ERAD pathway",5,4,2.11,144,"0.1044","0.05803","0.0580" +"GO:0051170","import into nucleus",19,13,8.01,24,"0.0186","0.05871","0.0587" +"GO:0030511","positive regulation of transforming grow...",3,3,1.26,104,"0.0748","0.05954","0.0595" +"GO:1903846","positive regulation of cellular response...",3,3,1.26,105,"0.0748","0.05954","0.0595" +"GO:2001251","negative regulation of chromosome organi...",16,6,6.74,1526,"0.7327","0.05984","0.0598" +"GO:0017038","protein import",30,19,12.65,17,"0.0153","0.05996","0.0600" +"GO:0032273","positive regulation of protein polymeriz...",14,9,5.9,124,"0.0801","0.06100","0.0610" +"GO:0071702","organic substance transport",209,93,88.1,400,"0.2599","0.06103","0.0610" +"GO:0030042","actin filament depolymerization",5,4,2.11,145,"0.1044","0.06111","0.0611" +"GO:0000002","mitochondrial genome maintenance",3,3,1.26,106,"0.0748","0.06116","0.0612" +"GO:0070646","protein modification by small protein re...",36,20,15.17,92,"0.0717","0.06160","0.0616" +"GO:0097191","extrinsic apoptotic signaling pathway",5,4,2.11,146,"0.1044","0.06230","0.0623" +"GO:1902235","regulation of endoplasmic reticulum stre...",5,4,2.11,147,"0.1044","0.06230","0.0623" +"GO:2001236","regulation of extrinsic apoptotic signal...",5,4,2.11,148,"0.1044","0.06230","0.0623" +"GO:0022613","ribonucleoprotein complex biogenesis",100,53,42.15,21,"0.0169","0.00220","0.0624" +"GO:0030490","maturation of SSU-rRNA",6,4,2.53,343,"0.2100","0.06269","0.0627" +"GO:0045088","regulation of innate immune response",17,11,7.17,73,"0.0511","0.06361","0.0636" +"GO:0006301","postreplication repair",9,5,3.79,455,"0.3128","0.06393","0.0639" +"GO:0044837","actomyosin contractile ring organization",5,4,2.11,149,"0.1044","0.06547","0.0655" +"GO:0021575","hindbrain morphogenesis",4,4,1.69,47,"0.0315","0.06554","0.0655" +"GO:0021587","cerebellum morphogenesis",4,4,1.69,48,"0.0315","0.06554","0.0655" +"GO:0021680","cerebellar Purkinje cell layer developme...",4,4,1.69,49,"0.0315","0.06554","0.0655" +"GO:0021695","cerebellar cortex development",4,4,1.69,50,"0.0315","0.06554","0.0655" +"GO:0017015","regulation of transforming growth factor...",7,6,2.95,33,"0.0249","0.06576","0.0658" +"GO:1903844","regulation of cellular response to trans...",7,6,2.95,34,"0.0249","0.06576","0.0658" +"GO:0045739","positive regulation of DNA repair",5,3,2.11,517,"0.3551","0.06662","0.0666" +"GO:0007064","mitotic sister chromatid cohesion",5,4,2.11,150,"0.1044","0.06697","0.0670" +"GO:1904029","regulation of cyclin-dependent protein k...",6,4,2.53,344,"0.2100","0.06757","0.0676" +"GO:0045089","positive regulation of innate immune res...",15,10,6.32,69,"0.0487","0.06825","0.0682" +"GO:0006511","ubiquitin-dependent protein catabolic pr...",83,46,34.99,10,"0.0092","0.00248","0.0687" +"GO:0019941","modification-dependent protein catabolic...",83,46,34.99,11,"0.0092","0.00248","0.0687" +"GO:0043543","protein acylation",36,21,15.17,60,"0.0360","0.06982","0.0698" +"GO:0010638","positive regulation of organelle organiz...",54,22,22.76,1254,"0.6348","0.07106","0.0711" +"GO:0098656","anion transmembrane transport",21,10,8.85,574,"0.3832","0.07130","0.0713" +"GO:0010992","ubiquitin recycling",5,4,2.11,151,"0.1044","0.07177","0.0718" +"GO:0010994","free ubiquitin chain polymerization",5,4,2.11,152,"0.1044","0.07177","0.0718" +"GO:0090311","regulation of protein deacetylation",5,2,2.11,1336,"0.6994","0.07317","0.0732" +"GO:0044257","cellular protein catabolic process",93,49,39.2,28,"0.0241","0.01566","0.0734" +"GO:0051603","proteolysis involved in cellular protein...",93,49,39.2,29,"0.0241","0.01566","0.0734" +"GO:0072009","nephron epithelium development",6,4,2.53,345,"0.2100","0.07415","0.0741" +"GO:0072073","kidney epithelium development",6,4,2.53,346,"0.2100","0.07415","0.0741" +"GO:0050776","regulation of immune response",35,21,14.75,31,"0.0245","0.07458","0.0746" +"GO:1903827","regulation of cellular protein localizat...",35,17,14.75,412,"0.2720","0.07558","0.0756" +"GO:0010224","response to UV-B",3,3,1.26,107,"0.0748","0.07569","0.0757" +"GO:0030834","regulation of actin filament depolymeriz...",4,3,1.69,271,"0.2047","0.07570","0.0757" +"GO:0030835","negative regulation of actin filament de...",4,3,1.69,272,"0.2047","0.07570","0.0757" +"GO:0022622","root system development",7,4,2.95,479,"0.3323","0.07574","0.0757" +"GO:0045444","fat cell differentiation",7,4,2.95,480,"0.3323","0.07574","0.0757" +"GO:0048364","root development",7,4,2.95,481,"0.3323","0.07574","0.0757" +"GO:0036503","ERAD pathway",18,11,7.59,131,"0.0824","0.07743","0.0774" +"GO:1901215","negative regulation of neuron death",14,9,5.9,125,"0.0801","0.07751","0.0775" +"GO:0110053","regulation of actin filament organizatio...",17,10,7.17,202,"0.1255","0.07776","0.0778" +"GO:0006298","mismatch repair",6,5,2.53,77,"0.0516","0.07836","0.0784" +"GO:0032970","regulation of actin filament-based proce...",24,15,10.12,57,"0.0352","0.07842","0.0784" +"GO:0043412","macromolecule modification",535,244,225.51,63,"0.0399","0.07857","0.0786" +"GO:0000478","endonucleolytic cleavage involved in rRN...",4,3,1.69,273,"0.2047","0.07875","0.0787" +"GO:0000479","endonucleolytic cleavage of tricistronic...",4,3,1.69,274,"0.2047","0.07875","0.0787" +"GO:0016570","histone modification",72,34,30.35,381,"0.2223","0.07913","0.0791" +"GO:0031145","anaphase-promoting complex-dependent cat...",8,5,3.37,331,"0.2084","0.07920","0.0792" +"GO:0098813","nuclear chromosome segregation",30,14,12.65,568,"0.3724","0.08015","0.0802" +"GO:0090175","regulation of establishment of planar po...",4,3,1.69,275,"0.2047","0.08110","0.0811" +"GO:0035601","protein deacylation",13,7,5.48,416,"0.2803","0.08114","0.0811" +"GO:0098732","macromolecule deacylation",13,7,5.48,417,"0.2803","0.08114","0.0811" +"GO:0061138","morphogenesis of a branching epithelium",8,5,3.37,332,"0.2084","0.08180","0.0818" +"GO:2001022","positive regulation of response to DNA d...",8,5,3.37,333,"0.2084","0.08180","0.0818" +"GO:0018095","protein polyglutamylation",3,2,1.26,577,"0.3832","0.08343","0.0834" +"GO:0018200","peptidyl-glutamic acid modification",3,2,1.26,578,"0.3832","0.08343","0.0834" +"GO:0044265","cellular macromolecule catabolic process",134,65,56.48,109,"0.0757","0.02948","0.0840" +"GO:0016569","covalent chromatin modification",75,36,31.61,235,"0.1782","0.08469","0.0847" +"GO:0009084","glutamine family amino acid biosynthetic...",4,3,1.69,276,"0.2047","0.08570","0.0857" +"GO:0045666","positive regulation of neuron differenti...",10,7,4.22,95,"0.0722","0.08596","0.0860" +"GO:0007018","microtubule-based movement",35,19,14.75,140,"0.0990","0.08722","0.0872" +"GO:0002757","immune response-activating signal transd...",17,11,7.17,74,"0.0511","0.08730","0.0873" +"GO:0002764","immune response-regulating signaling pat...",17,11,7.17,75,"0.0511","0.08730","0.0873" +"GO:0006325","chromatin organization",118,55,49.74,240,"0.1819","0.08939","0.0894" +"GO:0045087","innate immune response",26,16,10.96,59,"0.0358","0.09075","0.0907" +"GO:0071218","cellular response to misfolded protein",5,3,2.11,518,"0.3551","0.09097","0.0910" +"GO:0042274","ribosomal small subunit biogenesis",12,6,5.06,730,"0.3929","0.09395","0.0940" +"GO:0042254","ribosome biogenesis",75,43,31.61,4,"0.0052","0.00153","0.0940" +"GO:2001020","regulation of response to DNA damage sti...",17,10,7.17,203,"0.1255","0.09441","0.0944" +"GO:0060173","limb development",5,4,2.11,153,"0.1044","0.09445","0.0945" +"GO:0051495","positive regulation of cytoskeleton orga...",19,11,8.01,189,"0.1232","0.09509","0.0951" +"GO:0006415","translational termination",11,6,4.64,439,"0.2957","0.09679","0.0968" +"GO:0043044","ATP-dependent chromatin remodeling",5,1,2.11,2431,"0.9354","0.09804","0.0980" +"GO:0016074","snoRNA metabolic process",4,3,1.69,277,"0.2047","0.09825","0.0982" +"GO:0015711","organic anion transport",30,13,12.65,931,"0.5176","0.09861","0.0986" +"GO:0043523","regulation of neuron apoptotic process",12,7,5.06,253,"0.1984","0.09904","0.0990" +"GO:0009615","response to virus",8,5,3.37,334,"0.2084","0.09933","0.0993" +"GO:0003015","heart process",6,5,2.53,78,"0.0516","0.09994","0.0999" +"GO:0008016","regulation of heart contraction",6,5,2.53,79,"0.0516","0.09994","0.0999" +"GO:0060047","heart contraction",6,5,2.53,80,"0.0516","0.09994","0.0999" +"GO:0044057","regulation of system process",13,9,5.48,66,"0.0452","0.10045","0.1005" +"GO:0006606","protein import into nucleus",18,12,7.59,42,"0.0312","0.10062","0.1006" +"GO:0031334","positive regulation of protein complex a...",18,11,7.59,132,"0.0824","0.10062","0.1006" +"GO:0051301","cell division",30,17,12.65,111,"0.0768","0.10112","0.1011" +"GO:0045454","cell redox homeostasis",21,13,8.85,83,"0.0537","0.10165","0.1016" +"GO:0070861","regulation of protein exit from endoplas...",4,3,1.69,278,"0.2047","0.10263","0.1026" +"GO:0070862","negative regulation of protein exit from...",4,3,1.69,279,"0.2047","0.10263","0.1026" +"GO:1904152","regulation of retrograde protein transpo...",4,3,1.69,280,"0.2047","0.10263","0.1026" +"GO:1904153","negative regulation of retrograde protei...",4,3,1.69,281,"0.2047","0.10263","0.1026" +"GO:1904293","negative regulation of ERAD pathway",4,3,1.69,282,"0.2047","0.10263","0.1026" +"GO:0046777","protein autophosphorylation",12,8,5.06,117,"0.0771","0.10267","0.1027" +"GO:0006465","signal peptide processing",4,3,1.69,283,"0.2047","0.10295","0.1030" +"GO:0031167","rRNA methylation",6,3,2.53,863,"0.5003","0.10514","0.1051" +"GO:0010976","positive regulation of neuron projection...",8,6,3.37,89,"0.0642","0.10517","0.1052" +"GO:0006546","glycine catabolic process",3,2,1.26,579,"0.3832","0.10559","0.1056" +"GO:0009071","serine family amino acid catabolic proce...",3,2,1.26,580,"0.3832","0.10559","0.1056" +"GO:0042135","neurotransmitter catabolic process",3,2,1.26,581,"0.3832","0.10559","0.1056" +"GO:0007017","microtubule-based process",75,37,31.61,192,"0.1236","0.10606","0.1061" +"GO:0031056","regulation of histone modification",14,6,5.9,1118,"0.5802","0.10706","0.1071" +"GO:0072527","pyrimidine-containing compound metabolic...",12,8,5.06,118,"0.0771","0.10774","0.1077" +"GO:0000154","rRNA modification",10,5,4.22,750,"0.4216","0.10830","0.1083" +"GO:0050778","positive regulation of immune response",32,19,13.49,62,"0.0364","0.10914","0.1091" +"GO:0071804","cellular potassium ion transport",4,3,1.69,284,"0.2047","0.10949","0.1095" +"GO:0071805","potassium ion transmembrane transport",4,3,1.69,285,"0.2047","0.10949","0.1095" +"GO:0051788","response to misfolded protein",6,3,2.53,864,"0.5003","0.10959","0.1096" +"GO:1905392","plant organ morphogenesis",6,3,2.53,865,"0.5003","0.10959","0.1096" +"GO:0006941","striated muscle contraction",3,3,1.26,108,"0.0748","0.11154","0.1115" +"GO:0090305","nucleic acid phosphodiester bond hydroly...",22,11,9.27,432,"0.2951","0.11167","0.1117" +"GO:0008380","RNA splicing",68,33,28.66,229,"0.1699","0.11208","0.1121" +"GO:0070972","protein localization to endoplasmic reti...",9,6,3.79,196,"0.1249","0.11238","0.1124" +"GO:0071900","regulation of protein serine/threonine k...",16,8,6.74,511,"0.3470","0.11249","0.1125" +"GO:0032956","regulation of actin cytoskeleton organiz...",22,13,9.27,128,"0.0818","0.11313","0.1131" +"GO:0006476","protein deacetylation",10,5,4.22,751,"0.4216","0.11420","0.1142" +"GO:0099402","plant organ development",10,5,4.22,752,"0.4216","0.11420","0.1142" +"GO:0033157","regulation of intracellular protein tran...",21,7,8.85,2052,"0.8519","0.11441","0.1144" +"GO:0016322","neuron remodeling",5,4,2.11,154,"0.1044","0.11449","0.1145" +"GO:0042551","neuron maturation",5,4,2.11,155,"0.1044","0.11449","0.1145" +"GO:0072080","nephron tubule development",5,3,2.11,519,"0.3551","0.11449","0.1145" +"GO:0060688","regulation of morphogenesis of a branchi...",4,3,1.69,286,"0.2047","0.11461","0.1146" +"GO:0036065","fucosylation",4,3,1.69,287,"0.2047","0.11706","0.1171" +"GO:0009314","response to radiation",31,15,13.07,452,"0.2980","0.11891","0.1189" +"GO:0032507","maintenance of protein location in cell",4,3,1.69,288,"0.2047","0.11991","0.1199" +"GO:0051651","maintenance of location in cell",4,3,1.69,289,"0.2047","0.11991","0.1199" +"GO:0030330","DNA damage response, signal transduction...",7,5,2.95,179,"0.1183","0.11995","0.1200" +"GO:0042770","signal transduction in response to DNA d...",7,5,2.95,180,"0.1183","0.11995","0.1200" +"GO:0009987","cellular process",2186,917,921.42,1316,"0.6813","0.01973","0.1206" +"GO:0018193","peptidyl-amino acid modification",98,44,41.31,472,"0.3226","0.12068","0.1207" +"GO:0044380","protein localization to cytoskeleton",4,3,1.69,290,"0.2047","0.12099","0.1210" +"GO:0072698","protein localization to microtubule cyto...",4,3,1.69,291,"0.2047","0.12099","0.1210" +"GO:0048507","meristem development",5,3,2.11,520,"0.3551","0.12163","0.1216" +"GO:0032147","activation of protein kinase activity",4,3,1.69,292,"0.2047","0.12391","0.1239" +"GO:0032268","regulation of cellular protein metabolic...",135,63,56.9,225,"0.1586","0.12403","0.1240" +"GO:0007015","actin filament organization",27,14,11.38,260,"0.2026","0.12437","0.1244" +"GO:0000375","RNA splicing, via transesterification re...",54,26,22.76,378,"0.2222","0.12549","0.1255" +"GO:0000377","RNA splicing, via transesterification re...",54,26,22.76,379,"0.2222","0.12549","0.1255" +"GO:0000398","mRNA splicing, via spliceosome",54,26,22.76,380,"0.2222","0.12549","0.1255" +"GO:0022402","cell cycle process",119,57,50.16,170,"0.1147","0.12564","0.1256" +"GO:0002224","toll-like receptor signaling pathway",6,4,2.53,347,"0.2100","0.12607","0.1261" +"GO:0000209","protein polyubiquitination",27,15,11.38,166,"0.1115","0.12889","0.1289" +"GO:0030433","ubiquitin-dependent ERAD pathway",16,9,6.74,241,"0.1858","0.12989","0.1299" +"GO:0009798","axis specification",15,7,6.32,815,"0.4577","0.13008","0.1301" +"GO:0000278","mitotic cell cycle",81,41,34.14,96,"0.0739","0.13021","0.1302" +"GO:0051091","positive regulation of DNA-binding trans...",8,6,3.37,90,"0.0642","0.13343","0.1334" +"GO:0010720","positive regulation of cell development",16,9,6.74,242,"0.1858","0.13455","0.1345" +"GO:0006955","immune response",50,28,21.08,52,"0.0324","0.13601","0.1360" +"GO:0006266","DNA ligation",4,3,1.69,293,"0.2047","0.13652","0.1365" +"GO:0051103","DNA ligation involved in DNA repair",4,3,1.69,294,"0.2047","0.13652","0.1365" +"GO:0043632","modification-dependent macromolecule cat...",86,46,36.25,25,"0.0206","0.00671","0.1367" +"GO:0043254","regulation of protein complex assembly",24,14,10.12,126,"0.0809","0.13822","0.1382" +"GO:0006400","tRNA modification",24,14,10.12,127,"0.0809","0.13888","0.1389" +"GO:0000460","maturation of 5.8S rRNA",10,6,4.22,263,"0.2040","0.13954","0.1395" +"GO:0016567","protein ubiquitination",75,38,31.61,130,"0.0820","0.13962","0.1396" +"GO:0002218","activation of innate immune response",11,6,4.64,440,"0.2957","0.14004","0.1400" +"GO:0002758","innate immune response-activating signal...",11,6,4.64,441,"0.2957","0.14004","0.1400" +"GO:0006464","cellular protein modification process",485,218,204.43,136,"0.0930","0.14117","0.1412" +"GO:0036211","protein modification process",485,218,204.43,137,"0.0930","0.14117","0.1412" +"GO:0006348","chromatin silencing at telomere",6,3,2.53,866,"0.5003","0.14336","0.1434" +"GO:0006259","DNA metabolic process",174,91,73.34,3,"0.0034","0.00070","0.1442" +"GO:0031349","positive regulation of defense response",18,11,7.59,133,"0.0824","0.14456","0.1446" +"GO:0002684","positive regulation of immune system pro...",37,21,15.6,72,"0.0510","0.14499","0.1450" +"GO:0007566","embryo implantation",4,3,1.69,295,"0.2047","0.14628","0.1463" +"GO:0072331","signal transduction by p53 class mediato...",11,7,4.64,211,"0.1277","0.14667","0.1467" +"GO:0071705","nitrogen compound transport",182,82,76.72,383,"0.2282","0.14681","0.1468" +"GO:0001763","morphogenesis of a branching structure",9,5,3.79,456,"0.3128","0.14751","0.1475" +"GO:2001235","positive regulation of apoptotic signali...",9,5,3.79,457,"0.3128","0.14751","0.1475" +"GO:0006302","double-strand break repair",17,9,7.17,392,"0.2537","0.14820","0.1482" +"GO:0090066","regulation of anatomical structure size",30,14,12.65,569,"0.3724","0.14900","0.1490" +"GO:0080134","regulation of response to stress",80,40,33.72,135,"0.0926","0.14938","0.1494" +"GO:0006413","translational initiation",19,10,8.01,389,"0.2420","0.14940","0.1494" +"GO:1902914","regulation of protein polyubiquitination",6,4,2.53,348,"0.2100","0.14949","0.1495" +"GO:1902916","positive regulation of protein polyubiqu...",6,4,2.53,349,"0.2100","0.14949","0.1495" +"GO:0001756","somitogenesis",7,4,2.95,482,"0.3323","0.14995","0.1499" +"GO:0061053","somite development",7,4,2.95,483,"0.3323","0.14995","0.1499" +"GO:0006417","regulation of translation",28,14,11.8,395,"0.2554","0.15058","0.1506" +"GO:0071695","anatomical structure maturation",8,4,3.37,779,"0.4562","0.15075","0.1508" +"GO:0001895","retina homeostasis",4,1,1.69,2200,"0.8882","0.15092","0.1509" +"GO:0021700","developmental maturation",16,8,6.74,512,"0.3470","0.15181","0.1518" +"GO:0090287","regulation of cellular response to growt...",15,10,6.32,70,"0.0487","0.15206","0.1521" +"GO:0009733","response to auxin",3,2,1.26,582,"0.3832","0.15208","0.1521" +"GO:0009735","response to cytokinin",3,2,1.26,583,"0.3832","0.15208","0.1521" +"GO:0035567","non-canonical Wnt signaling pathway",3,2,1.26,584,"0.3832","0.15208","0.1521" +"GO:0060071","Wnt signaling pathway, planar cell polar...",3,2,1.26,585,"0.3832","0.15208","0.1521" +"GO:0006022","aminoglycan metabolic process",15,7,6.32,816,"0.4577","0.15318","0.1532" +"GO:0070266","necroptotic process",3,2,1.26,586,"0.3832","0.15320","0.1532" +"GO:0001932","regulation of protein phosphorylation",45,20,18.97,768,"0.4328","0.15336","0.1534" +"GO:0009451","RNA modification",48,25,20.23,161,"0.1047","0.15421","0.1542" +"GO:1903828","negative regulation of cellular protein ...",10,6,4.22,264,"0.2040","0.15534","0.1553" +"GO:0007605","sensory perception of sound",5,3,2.11,521,"0.3551","0.15606","0.1561" +"GO:2001233","regulation of apoptotic signaling pathwa...",18,10,7.59,237,"0.1795","0.15613","0.1561" +"GO:0031347","regulation of defense response",21,12,8.85,185,"0.1205","0.15660","0.1566" +"GO:0090501","RNA phosphodiester bond hydrolysis",17,8,7.17,761,"0.4299","0.15693","0.1569" +"GO:0048585","negative regulation of response to stimu...",68,34,28.66,171,"0.1149","0.15807","0.1581" +"GO:0010015","root morphogenesis",5,2,2.11,1337,"0.6994","0.15852","0.1585" +"GO:0010053","root epidermal cell differentiation",5,2,2.11,1338,"0.6994","0.15852","0.1585" +"GO:0045598","regulation of fat cell differentiation",5,3,2.11,522,"0.3551","0.15852","0.1585" +"GO:0090558","plant epidermis development",5,2,2.11,1339,"0.6994","0.15852","0.1585" +"GO:0090627","plant epidermal cell differentiation",5,2,2.11,1340,"0.6994","0.15852","0.1585" +"GO:0051402","neuron apoptotic process",13,8,5.48,214,"0.1282","0.16004","0.1600" +"GO:0006265","DNA topological change",6,4,2.53,350,"0.2100","0.16051","0.1605" +"GO:0001934","positive regulation of protein phosphory...",26,12,10.96,746,"0.4110","0.16118","0.1612" +"GO:0030326","embryonic limb morphogenesis",3,2,1.26,587,"0.3832","0.16132","0.1613" +"GO:0035113","embryonic appendage morphogenesis",3,2,1.26,588,"0.3832","0.16132","0.1613" +"GO:0016575","histone deacetylation",9,4,3.79,1084,"0.5709","0.16164","0.1616" +"GO:0006515","protein quality control for misfolded or...",6,3,2.53,867,"0.5003","0.16180","0.1618" +"GO:1902236","negative regulation of endoplasmic retic...",4,3,1.69,296,"0.2047","0.16233","0.1623" +"GO:2001237","negative regulation of extrinsic apoptot...",4,3,1.69,297,"0.2047","0.16233","0.1623" +"GO:0009555","pollen development",6,3,2.53,868,"0.5003","0.16271","0.1627" +"GO:0032506","cytokinetic process",6,4,2.53,351,"0.2100","0.16271","0.1627" +"GO:1902680","positive regulation of RNA biosynthetic ...",57,28,24.03,230,"0.1730","0.16292","0.1629" +"GO:0110020","regulation of actomyosin structure organ...",6,4,2.53,352,"0.2100","0.16308","0.1631" +"GO:0032446","protein modification by small protein co...",83,41,34.99,163,"0.1070","0.16342","0.1634" +"GO:0097190","apoptotic signaling pathway",23,13,9.69,172,"0.1176","0.16489","0.1649" +"GO:0050803","regulation of synapse structure or activ...",14,7,5.9,556,"0.3684","0.16492","0.1649" +"GO:0050807","regulation of synapse organization",14,7,5.9,557,"0.3684","0.16492","0.1649" +"GO:0090257","regulation of muscle system process",7,4,2.95,484,"0.3323","0.16536","0.1654" +"GO:0000027","ribosomal large subunit assembly",6,4,2.53,353,"0.2100","0.16699","0.1670" +"GO:0002221","pattern recognition receptor signaling p...",10,6,4.22,265,"0.2040","0.16755","0.1675" +"GO:0051052","regulation of DNA metabolic process",23,12,9.69,376,"0.2210","0.16781","0.1678" +"GO:0030032","lamellipodium assembly",3,2,1.26,589,"0.3832","0.16802","0.1680" +"GO:0032233","positive regulation of actin filament bu...",3,2,1.26,590,"0.3832","0.16802","0.1680" +"GO:0046632","alpha-beta T cell differentiation",3,2,1.26,591,"0.3832","0.16802","0.1680" +"GO:0051496","positive regulation of stress fiber asse...",3,2,1.26,592,"0.3832","0.16802","0.1680" +"GO:0071901","negative regulation of protein serine/th...",3,2,1.26,593,"0.3832","0.16802","0.1680" +"GO:0097061","dendritic spine organization",3,2,1.26,594,"0.3832","0.16802","0.1680" +"GO:0097581","lamellipodium organization",3,2,1.26,595,"0.3832","0.16802","0.1680" +"GO:0106027","neuron projection organization",3,2,1.26,596,"0.3832","0.16802","0.1680" +"GO:0035265","organ growth",6,3,2.53,869,"0.5003","0.16850","0.1685" +"GO:0006448","regulation of translational elongation",5,2,2.11,1341,"0.6994","0.16916","0.1692" +"GO:0045859","regulation of protein kinase activity",26,11,10.96,1083,"0.5685","0.17036","0.1704" +"GO:1901264","carbohydrate derivative transport",6,2,2.53,1631,"0.7990","0.17077","0.1708" +"GO:1905475","regulation of protein localization to me...",5,4,2.11,156,"0.1044","0.17093","0.1709" +"GO:0006270","DNA replication initiation",10,4,4.22,1284,"0.6705","0.17152","0.1715" +"GO:0043170","macromolecule metabolic process",1521,649,641.12,427,"0.2834","0.01659","0.1720" +"GO:0034470","ncRNA processing",98,54,41.31,6,"0.0058","0.00571","0.1729" +"GO:0050769","positive regulation of neurogenesis",14,8,5.9,247,"0.1922","0.17311","0.1731" +"GO:0034720","histone H3-K4 demethylation",4,2,1.69,971,"0.5617","0.17339","0.1734" +"GO:2000027","regulation of animal organ morphogenesis",13,7,5.48,418,"0.2803","0.17349","0.1735" +"GO:0006869","lipid transport",24,9,10.12,1543,"0.7465","0.17359","0.1736" +"GO:0030837","negative regulation of actin filament po...",5,4,2.11,157,"0.1044","0.17430","0.1743" +"GO:0032272","negative regulation of protein polymeriz...",5,4,2.11,158,"0.1044","0.17430","0.1743" +"GO:0043094","cellular metabolic compound salvage",4,2,1.69,972,"0.5617","0.17481","0.1748" +"GO:0043101","purine-containing compound salvage",4,2,1.69,973,"0.5617","0.17481","0.1748" +"GO:0000726","non-recombinational repair",5,3,2.11,523,"0.3551","0.17483","0.1748" +"GO:0006303","double-strand break repair via nonhomolo...",5,3,2.11,524,"0.3551","0.17483","0.1748" +"GO:0043631","RNA polyadenylation",7,5,2.95,181,"0.1183","0.17613","0.1761" +"GO:0002756","MyD88-independent toll-like receptor sig...",4,3,1.69,298,"0.2047","0.17672","0.1767" +"GO:0038093","Fc receptor signaling pathway",4,2,1.69,974,"0.5617","0.17672","0.1767" +"GO:0042078","germ-line stem cell division",4,3,1.69,299,"0.2047","0.17672","0.1767" +"GO:0045466","R7 cell differentiation",4,3,1.69,300,"0.2047","0.17672","0.1767" +"GO:0097039","protein linear polyubiquitination",4,3,1.69,301,"0.2047","0.17672","0.1767" +"GO:0098728","germline stem cell asymmetric division",4,3,1.69,302,"0.2047","0.17672","0.1767" +"GO:0002682","regulation of immune system process",47,25,19.81,129,"0.0819","0.17762","0.1776" +"GO:0016072","rRNA metabolic process",51,31,21.5,5,"0.0052","0.00088","0.1793" +"GO:0031330","negative regulation of cellular cataboli...",15,8,6.32,405,"0.2664","0.18134","0.1813" +"GO:0045039","protein import into mitochondrial inner ...",4,2,1.69,975,"0.5617","0.18253","0.1825" +"GO:0043090","amino acid import",3,2,1.26,597,"0.3832","0.18271","0.1827" +"GO:0006275","regulation of DNA replication",6,4,2.53,354,"0.2100","0.18450","0.1845" +"GO:0034660","ncRNA metabolic process",134,71,56.48,7,"0.0062","0.00908","0.1853" +"GO:0002097","tRNA wobble base modification",6,4,2.53,355,"0.2100","0.18531","0.1853" +"GO:0002098","tRNA wobble uridine modification",6,4,2.53,356,"0.2100","0.18531","0.1853" +"GO:0035266","meristem growth",4,3,1.69,303,"0.2047","0.18548","0.1855" +"GO:0032387","negative regulation of intracellular tra...",6,4,2.53,357,"0.2100","0.18551","0.1855" +"GO:0051224","negative regulation of protein transport",6,4,2.53,358,"0.2100","0.18551","0.1855" +"GO:0033036","macromolecule localization",253,115,106.64,221,"0.1470","0.18574","0.1857" +"GO:0051726","regulation of cell cycle",85,40,35.83,329,"0.2059","0.18583","0.1858" +"GO:0000466","maturation of 5.8S rRNA from tricistroni...",8,4,3.37,780,"0.4562","0.18599","0.1860" +"GO:0015740","C4-dicarboxylate transport",3,2,1.26,598,"0.3832","0.18627","0.1863" +"GO:0006284","base-excision repair",3,2,1.26,599,"0.3832","0.18656","0.1866" +"GO:0043524","negative regulation of neuron apoptotic ...",11,6,4.64,442,"0.2957","0.18710","0.1871" +"GO:0046530","photoreceptor cell differentiation",17,10,7.17,204,"0.1255","0.18742","0.1874" +"GO:0048749","compound eye development",17,10,7.17,205,"0.1255","0.18742","0.1874" +"GO:0006220","pyrimidine nucleotide metabolic process",9,6,3.79,197,"0.1249","0.18840","0.1884" +"GO:0033365","protein localization to organelle",79,40,33.3,110,"0.0765","0.18880","0.1888" +"GO:0006457","protein folding",63,31,26.56,222,"0.1543","0.19030","0.1903" +"GO:0006399","tRNA metabolic process",78,39,32.88,139,"0.0960","0.19045","0.1905" +"GO:1901799","negative regulation of proteasomal prote...",6,4,2.53,359,"0.2100","0.19062","0.1906" +"GO:0034248","regulation of cellular amide metabolic p...",29,14,12.22,454,"0.3125","0.19062","0.1906" +"GO:0034250","positive regulation of cellular amide me...",6,3,2.53,870,"0.5003","0.19103","0.1910" +"GO:0045727","positive regulation of translation",6,3,2.53,871,"0.5003","0.19103","0.1910" +"GO:0007091","metaphase/anaphase transition of mitotic...",6,3,2.53,872,"0.5003","0.19165","0.1916" +"GO:0010965","regulation of mitotic sister chromatid s...",6,3,2.53,873,"0.5003","0.19165","0.1916" +"GO:0030071","regulation of mitotic metaphase/anaphase...",6,3,2.53,874,"0.5003","0.19165","0.1916" +"GO:0033046","negative regulation of sister chromatid ...",6,3,2.53,875,"0.5003","0.19165","0.1916" +"GO:0044784","metaphase/anaphase transition of cell cy...",6,3,2.53,876,"0.5003","0.19165","0.1916" +"GO:0051985","negative regulation of chromosome segreg...",6,3,2.53,877,"0.5003","0.19165","0.1916" +"GO:1902099","regulation of metaphase/anaphase transit...",6,3,2.53,878,"0.5003","0.19165","0.1916" +"GO:1905818","regulation of chromosome separation",6,3,2.53,879,"0.5003","0.19165","0.1916" +"GO:0051254","positive regulation of RNA metabolic pro...",66,32,27.82,234,"0.1764","0.19281","0.1928" +"GO:1902905","positive regulation of supramolecular fi...",17,10,7.17,206,"0.1255","0.19287","0.1929" +"GO:0000075","cell cycle checkpoint",25,11,10.54,920,"0.5019","0.19436","0.1944" +"GO:0072594","establishment of protein localization to...",60,29,25.29,252,"0.1977","0.19531","0.1953" +"GO:0031398","positive regulation of protein ubiquitin...",19,11,8.01,190,"0.1232","0.19539","0.1954" +"GO:1903322","positive regulation of protein modificat...",19,11,8.01,191,"0.1232","0.19539","0.1954" +"GO:0022618","ribonucleoprotein complex assembly",37,18,15.6,401,"0.2603","0.19684","0.1968" +"GO:0071826","ribonucleoprotein complex subunit organi...",37,18,15.6,402,"0.2603","0.19684","0.1968" +"GO:0001657","ureteric bud development",3,2,1.26,600,"0.3832","0.19709","0.1971" +"GO:0001658","branching involved in ureteric bud morph...",3,2,1.26,601,"0.3832","0.19709","0.1971" +"GO:0001823","mesonephros development",3,2,1.26,602,"0.3832","0.19709","0.1971" +"GO:0060675","ureteric bud morphogenesis",3,2,1.26,603,"0.3832","0.19709","0.1971" +"GO:0061333","renal tubule morphogenesis",3,2,1.26,604,"0.3832","0.19709","0.1971" +"GO:0072028","nephron morphogenesis",3,2,1.26,605,"0.3832","0.19709","0.1971" +"GO:0072078","nephron tubule morphogenesis",3,2,1.26,606,"0.3832","0.19709","0.1971" +"GO:0072088","nephron epithelium morphogenesis",3,2,1.26,607,"0.3832","0.19709","0.1971" +"GO:0072163","mesonephric epithelium development",3,2,1.26,608,"0.3832","0.19709","0.1971" +"GO:0072164","mesonephric tubule development",3,2,1.26,609,"0.3832","0.19709","0.1971" +"GO:0072171","mesonephric tubule morphogenesis",3,2,1.26,610,"0.3832","0.19709","0.1971" +"GO:0045931","positive regulation of mitotic cell cycl...",9,6,3.79,198,"0.1249","0.19757","0.1976" +"GO:0006304","DNA modification",3,2,1.26,611,"0.3832","0.19769","0.1977" +"GO:0031126","snoRNA 3'-end processing",3,2,1.26,612,"0.3832","0.19769","0.1977" +"GO:0043144","snoRNA processing",3,2,1.26,613,"0.3832","0.19769","0.1977" +"GO:0009116","nucleoside metabolic process",14,8,5.9,248,"0.1922","0.20235","0.2024" +"GO:0006807","nitrogen compound metabolic process",1623,692,684.11,425,"0.2811","0.02057","0.2025" +"GO:0040018","positive regulation of multicellular org...",3,2,1.26,614,"0.3832","0.20266","0.2027" +"GO:1902626","assembly of large subunit precursor of p...",3,2,1.26,615,"0.3832","0.20266","0.2027" +"GO:0042737","drug catabolic process",4,3,1.69,304,"0.2047","0.20445","0.2044" +"GO:0009394","2'-deoxyribonucleotide metabolic process",4,3,1.69,305,"0.2047","0.20551","0.2055" +"GO:0019692","deoxyribose phosphate metabolic process",4,3,1.69,306,"0.2047","0.20551","0.2055" +"GO:0006835","dicarboxylic acid transport",6,3,2.53,880,"0.5003","0.20630","0.2063" +"GO:0051181","cofactor transport",6,3,2.53,881,"0.5003","0.20630","0.2063" +"GO:0031063","regulation of histone deacetylation",3,1,1.26,1703,"0.8066","0.20850","0.2085" +"GO:0090312","positive regulation of protein deacetyla...",3,1,1.26,1704,"0.8066","0.20850","0.2085" +"GO:0009968","negative regulation of signal transducti...",53,27,22.34,186,"0.1217","0.20932","0.2093" +"GO:0010648","negative regulation of cell communicatio...",53,27,22.34,187,"0.1217","0.20932","0.2093" +"GO:0023057","negative regulation of signaling",53,27,22.34,188,"0.1217","0.20932","0.2093" +"GO:0016319","mushroom body development",3,1,1.26,1705,"0.8066","0.21036","0.2104" +"GO:0048736","appendage development",15,8,6.32,406,"0.2664","0.21074","0.2107" +"GO:0008637","apoptotic mitochondrial changes",4,3,1.69,307,"0.2047","0.21087","0.2109" +"GO:0021987","cerebral cortex development",4,3,1.69,308,"0.2047","0.21087","0.2109" +"GO:0031396","regulation of protein ubiquitination",26,14,10.96,223,"0.1554","0.21101","0.2110" +"GO:0051438","regulation of ubiquitin-protein transfer...",7,4,2.95,485,"0.3323","0.21294","0.2129" +"GO:0006936","muscle contraction",7,5,2.95,182,"0.1183","0.21563","0.2156" +"GO:0006333","chromatin assembly or disassembly",13,4,5.48,2151,"0.8685","0.21593","0.2159" +"GO:0034502","protein localization to chromosome",3,2,1.26,616,"0.3832","0.21714","0.2171" +"GO:0003012","muscle system process",11,6,4.64,443,"0.2957","0.21772","0.2177" +"GO:0045893","positive regulation of transcription, DN...",56,27,23.6,372,"0.2137","0.21789","0.2179" +"GO:1903508","positive regulation of nucleic acid-temp...",56,27,23.6,373,"0.2137","0.21789","0.2179" +"GO:0031346","positive regulation of cell projection o...",13,8,5.48,215,"0.1282","0.21831","0.2183" +"GO:0006471","protein ADP-ribosylation",4,3,1.69,309,"0.2047","0.21854","0.2185" +"GO:0065002","intracellular protein transmembrane tran...",13,8,5.48,216,"0.1282","0.21892","0.2189" +"GO:0035108","limb morphogenesis",4,3,1.69,310,"0.2047","0.21910","0.2191" +"GO:0044260","cellular macromolecule metabolic process",1203,502,507.08,1283,"0.6678","0.08179","0.2205" +"GO:0072384","organelle transport along microtubule",6,4,2.53,360,"0.2100","0.22056","0.2206" +"GO:0000724","double-strand break repair via homologou...",8,4,3.37,781,"0.4562","0.22107","0.2211" +"GO:0000725","recombinational repair",8,4,3.37,782,"0.4562","0.22107","0.2211" +"GO:0000070","mitotic sister chromatid segregation",18,9,7.59,474,"0.3279","0.22143","0.2214" +"GO:0021549","cerebellum development",12,8,5.06,119,"0.0771","0.22199","0.2220" +"GO:0022037","metencephalon development",12,8,5.06,120,"0.0771","0.22199","0.2220" +"GO:0051592","response to calcium ion",7,3,2.95,1174,"0.6262","0.22213","0.2221" +"GO:0010212","response to ionizing radiation",9,5,3.79,458,"0.3128","0.22324","0.2232" +"GO:0030282","bone mineralization",3,2,1.26,617,"0.3832","0.22325","0.2233" +"GO:0000077","DNA damage checkpoint",11,6,4.64,444,"0.2957","0.22421","0.2242" +"GO:0048229","gametophyte development",8,4,3.37,783,"0.4562","0.22424","0.2242" +"GO:0000447","endonucleolytic cleavage in ITS1 to sepa...",3,2,1.26,618,"0.3832","0.22521","0.2252" +"GO:0051607","defense response to virus",7,4,2.95,486,"0.3323","0.22543","0.2254" +"GO:0070125","mitochondrial translational elongation",3,2,1.26,619,"0.3832","0.22717","0.2272" +"GO:0070126","mitochondrial translational termination",3,2,1.26,620,"0.3832","0.22717","0.2272" +"GO:0006937","regulation of muscle contraction",4,3,1.69,311,"0.2047","0.22810","0.2281" +"GO:0042278","purine nucleoside metabolic process",8,5,3.37,335,"0.2084","0.22907","0.2291" +"GO:0032418","lysosome localization",4,2,1.69,976,"0.5617","0.22925","0.2292" +"GO:0047496","vesicle transport along microtubule",3,2,1.26,621,"0.3832","0.22931","0.2293" +"GO:0072383","plus-end-directed vesicle transport alon...",3,2,1.26,622,"0.3832","0.22931","0.2293" +"GO:0072386","plus-end-directed organelle transport al...",3,2,1.26,623,"0.3832","0.22931","0.2293" +"GO:0099518","vesicle cytoskeletal trafficking",3,2,1.26,624,"0.3832","0.22931","0.2293" +"GO:0035282","segmentation",16,8,6.74,513,"0.3470","0.23006","0.2301" +"GO:0072523","purine-containing compound catabolic pro...",4,3,1.69,312,"0.2047","0.23039","0.2304" +"GO:0006952","defense response",46,24,19.39,164,"0.1084","0.23085","0.2308" +"GO:0030510","regulation of BMP signaling pathway",7,5,2.95,183,"0.1183","0.23137","0.2314" +"GO:0003002","regionalization",27,12,11.38,832,"0.4774","0.23177","0.2318" +"GO:0006913","nucleocytoplasmic transport",41,20,17.28,388,"0.2388","0.23233","0.2323" +"GO:0072006","nephron development",7,4,2.95,487,"0.3323","0.23279","0.2328" +"GO:0051493","regulation of cytoskeleton organization",30,16,12.65,219,"0.1445","0.23289","0.2329" +"GO:0051338","regulation of transferase activity",42,17,17.7,1257,"0.6448","0.23464","0.2346" +"GO:0051225","spindle assembly",7,4,2.95,488,"0.3323","0.23608","0.2361" +"GO:0018242","protein O-linked glycosylation via serin...",4,2,1.69,977,"0.5617","0.23618","0.2362" +"GO:0042113","B cell activation",4,3,1.69,313,"0.2047","0.23618","0.2362" +"GO:0006820","anion transport",38,14,16.02,1625,"0.7966","0.23631","0.2363" +"GO:0051099","positive regulation of binding",10,6,4.22,266,"0.2040","0.23683","0.2368" +"GO:0007052","mitotic spindle organization",5,3,2.11,525,"0.3551","0.24032","0.2403" +"GO:1903708","positive regulation of hemopoiesis",5,3,2.11,526,"0.3551","0.24032","0.2403" +"GO:2000765","regulation of cytoplasmic translation",4,2,1.69,978,"0.5617","0.24147","0.2415" +"GO:0006513","protein monoubiquitination",16,9,6.74,243,"0.1858","0.24175","0.2418" +"GO:0045494","photoreceptor cell maintenance",3,1,1.26,1706,"0.8066","0.24227","0.2423" +"GO:1901797","negative regulation of signal transducti...",5,3,2.11,527,"0.3551","0.24230","0.2423" +"GO:2001021","negative regulation of response to DNA d...",5,3,2.11,528,"0.3551","0.24230","0.2423" +"GO:0030317","flagellated sperm motility",5,2,2.11,1342,"0.6994","0.24310","0.2431" +"GO:0097722","sperm motility",5,2,2.11,1343,"0.6994","0.24310","0.2431" +"GO:0051962","positive regulation of nervous system de...",15,8,6.32,407,"0.2664","0.24382","0.2438" +"GO:0006013","mannose metabolic process",3,2,1.26,625,"0.3832","0.24433","0.2443" +"GO:0042461","photoreceptor cell development",12,7,5.06,254,"0.1984","0.24440","0.2444" +"GO:0006974","cellular response to DNA damage stimulus",132,70,55.64,8,"0.0064","0.00093","0.2450" +"GO:0005975","carbohydrate metabolic process",52,17,21.92,2516,"0.9394","0.24500","0.2450" +"GO:0046822","regulation of nucleocytoplasmic transpor...",5,2,2.11,1344,"0.6994","0.24577","0.2458" +"GO:0090317","negative regulation of intracellular pro...",5,3,2.11,529,"0.3551","0.24577","0.2458" +"GO:0071417","cellular response to organonitrogen comp...",11,4,4.64,1548,"0.7527","0.24644","0.2464" +"GO:0060249","anatomical structure homeostasis",23,11,9.69,551,"0.3631","0.24717","0.2472" +"GO:0030183","B cell differentiation",3,2,1.26,626,"0.3832","0.24761","0.2476" +"GO:0042255","ribosome assembly",12,6,5.06,731,"0.3929","0.25031","0.2503" +"GO:0000966","RNA 5'-end processing",3,2,1.26,627,"0.3832","0.25075","0.2508" +"GO:0034471","ncRNA 5'-end processing",3,2,1.26,628,"0.3832","0.25075","0.2508" +"GO:0014902","myotube differentiation",4,2,1.69,979,"0.5617","0.25168","0.2517" +"GO:1903047","mitotic cell cycle process",69,33,29.08,258,"0.1991","0.25181","0.2518" +"GO:0007178","transmembrane receptor protein serine/th...",25,14,10.54,168,"0.1146","0.25182","0.2518" +"GO:0007365","periodic partitioning",3,2,1.26,629,"0.3832","0.25215","0.2522" +"GO:0007367","segment polarity determination",3,2,1.26,630,"0.3832","0.25215","0.2522" +"GO:0090481","pyrimidine nucleotide-sugar transmembran...",3,0,1.26,2749,"1.0000","0.25215","0.2522" +"GO:0007094","mitotic spindle assembly checkpoint",5,2,2.11,1345,"0.6994","0.25253","0.2525" +"GO:0031577","spindle checkpoint",5,2,2.11,1346,"0.6994","0.25253","0.2525" +"GO:0033048","negative regulation of mitotic sister ch...",5,2,2.11,1347,"0.6994","0.25253","0.2525" +"GO:0045839","negative regulation of mitotic nuclear d...",5,2,2.11,1348,"0.6994","0.25253","0.2525" +"GO:0045841","negative regulation of mitotic metaphase...",5,2,2.11,1349,"0.6994","0.25253","0.2525" +"GO:0051784","negative regulation of nuclear division",5,2,2.11,1350,"0.6994","0.25253","0.2525" +"GO:0071173","spindle assembly checkpoint",5,2,2.11,1351,"0.6994","0.25253","0.2525" +"GO:0071174","mitotic spindle checkpoint",5,2,2.11,1352,"0.6994","0.25253","0.2525" +"GO:1902100","negative regulation of metaphase/anaphas...",5,2,2.11,1353,"0.6994","0.25253","0.2525" +"GO:1905819","negative regulation of chromosome separa...",5,2,2.11,1354,"0.6994","0.25253","0.2525" +"GO:2000816","negative regulation of mitotic sister ch...",5,2,2.11,1355,"0.6994","0.25253","0.2525" +"GO:0009952","anterior/posterior pattern specification",13,7,5.48,419,"0.2803","0.25333","0.2533" +"GO:0017144","drug metabolic process",50,18,21.08,2047,"0.8495","0.25361","0.2536" +"GO:0030509","BMP signaling pathway",9,6,3.79,199,"0.1249","0.25440","0.2544" +"GO:0071772","response to BMP",9,6,3.79,200,"0.1249","0.25440","0.2544" +"GO:0071773","cellular response to BMP stimulus",9,6,3.79,201,"0.1249","0.25440","0.2544" +"GO:0031214","biomineral tissue development",4,2,1.69,980,"0.5617","0.25534","0.2553" +"GO:0001510","RNA methylation",16,8,6.74,514,"0.3470","0.25628","0.2563" +"GO:0050922","negative regulation of chemotaxis",3,2,1.26,631,"0.3832","0.25925","0.2592" +"GO:0060326","cell chemotaxis",3,2,1.26,632,"0.3832","0.25925","0.2592" +"GO:0050804","modulation of chemical synaptic transmis...",9,3,3.79,1938,"0.8069","0.26037","0.2604" +"GO:0099177","regulation of trans-synaptic signaling",9,3,3.79,1939,"0.8069","0.26037","0.2604" +"GO:0010243","response to organonitrogen compound",45,19,18.97,963,"0.5535","0.26044","0.2604" +"GO:0070076","histone lysine demethylation",10,4,4.22,1285,"0.6705","0.26208","0.2621" +"GO:1905268","negative regulation of chromatin organiz...",10,3,4.22,2078,"0.8654","0.26208","0.2621" +"GO:0006855","drug transmembrane transport",6,3,2.53,882,"0.5003","0.26283","0.2628" +"GO:0032436","positive regulation of proteasomal ubiqu...",8,5,3.37,336,"0.2084","0.26296","0.2630" +"GO:2000060","positive regulation of ubiquitin-depende...",8,5,3.37,337,"0.2084","0.26296","0.2630" +"GO:0045184","establishment of protein localization",172,77,72.5,404,"0.2611","0.26314","0.2631" +"GO:0051443","positive regulation of ubiquitin-protein...",5,3,2.11,530,"0.3551","0.26428","0.2643" +"GO:0000394","RNA splicing, via endonucleolytic cleava...",4,3,1.69,314,"0.2047","0.26465","0.2647" +"GO:0006388","tRNA splicing, via endonucleolytic cleav...",4,3,1.69,315,"0.2047","0.26465","0.2647" +"GO:0006397","mRNA processing",79,35,33.3,725,"0.3887","0.26471","0.2647" +"GO:0044267","cellular protein metabolic process",720,297,303.49,1525,"0.7301","0.21381","0.2658" +"GO:0031529","ruffle organization",4,2,1.69,981,"0.5617","0.26654","0.2665" +"GO:0030534","adult behavior",7,4,2.95,489,"0.3323","0.26674","0.2667" +"GO:0035305","negative regulation of dephosphorylation",3,2,1.26,633,"0.3832","0.26682","0.2668" +"GO:0120034","positive regulation of plasma membrane b...",5,3,2.11,531,"0.3551","0.26780","0.2678" +"GO:0061136","regulation of proteasomal protein catabo...",20,11,8.43,232,"0.1732","0.26785","0.2679" +"GO:0035150","regulation of tube size",5,3,2.11,532,"0.3551","0.26837","0.2684" +"GO:0007346","regulation of mitotic cell cycle",35,17,14.75,413,"0.2720","0.26985","0.2698" +"GO:0006366","transcription by RNA polymerase II",133,57,56.06,828,"0.4668","0.27097","0.2710" +"GO:0034504","protein localization to nucleus",25,14,10.54,169,"0.1146","0.27203","0.2720" +"GO:0002220","innate immune response activating cell s...",3,1,1.26,1707,"0.8066","0.27269","0.2727" +"GO:0002223","stimulatory C-type lectin receptor signa...",3,1,1.26,1708,"0.8066","0.27269","0.2727" +"GO:0038095","Fc-epsilon receptor signaling pathway",3,1,1.26,1709,"0.8066","0.27269","0.2727" +"GO:0045676","regulation of R7 cell differentiation",3,2,1.26,634,"0.3832","0.27269","0.2727" +"GO:0046532","regulation of photoreceptor cell differe...",3,2,1.26,635,"0.3832","0.27269","0.2727" +"GO:0048132","female germ-line stem cell asymmetric di...",3,2,1.26,636,"0.3832","0.27269","0.2727" +"GO:0110116","regulation of compound eye photoreceptor...",3,2,1.26,637,"0.3832","0.27269","0.2727" +"GO:0006984","ER-nucleus signaling pathway",4,3,1.69,316,"0.2047","0.27417","0.2742" +"GO:0031938","regulation of chromatin silencing at tel...",4,2,1.69,982,"0.5617","0.27417","0.2742" +"GO:0045047","protein targeting to ER",7,4,2.95,490,"0.3323","0.27420","0.2742" +"GO:0072599","establishment of protein localization to...",7,4,2.95,491,"0.3323","0.27420","0.2742" +"GO:1990823","response to leukemia inhibitory factor",8,3,3.37,1490,"0.7282","0.27462","0.2746" +"GO:1990830","cellular response to leukemia inhibitory...",8,3,3.37,1491,"0.7282","0.27462","0.2746" +"GO:0007623","circadian rhythm",11,5,4.64,937,"0.5265","0.27485","0.2749" +"GO:0001737","establishment of imaginal disc-derived w...",4,2,1.69,983,"0.5617","0.27546","0.2755" +"GO:0035088","establishment or maintenance of apical/b...",4,2,1.69,984,"0.5617","0.27546","0.2755" +"GO:0035316","non-sensory hair organization",4,2,1.69,985,"0.5617","0.27546","0.2755" +"GO:0035317","imaginal disc-derived wing hair organiza...",4,2,1.69,986,"0.5617","0.27546","0.2755" +"GO:0045197","establishment or maintenance of epitheli...",4,2,1.69,987,"0.5617","0.27546","0.2755" +"GO:0045646","regulation of erythrocyte differentiatio...",4,3,1.69,317,"0.2047","0.27546","0.2755" +"GO:0061245","establishment or maintenance of bipolar ...",4,2,1.69,988,"0.5617","0.27546","0.2755" +"GO:0002115","store-operated calcium entry",3,2,1.26,638,"0.3832","0.27547","0.2755" +"GO:0045860","positive regulation of protein kinase ac...",13,6,5.48,848,"0.4894","0.27573","0.2757" +"GO:0031057","negative regulation of histone modificat...",5,1,2.11,2432,"0.9354","0.27637","0.2764" +"GO:0031060","regulation of histone methylation",5,2,2.11,1356,"0.6994","0.27637","0.2764" +"GO:0070936","protein K48-linked ubiquitination",12,7,5.06,255,"0.1984","0.27672","0.2767" +"GO:0010876","lipid localization",31,11,13.07,2015,"0.8257","0.27680","0.2768" +"GO:0016073","snRNA metabolic process",10,4,4.22,1286,"0.6705","0.27716","0.2772" +"GO:0022612","gland morphogenesis",3,2,1.26,639,"0.3832","0.27789","0.2779" +"GO:0003013","circulatory system process",11,7,4.64,212,"0.1277","0.27826","0.2783" +"GO:0008015","blood circulation",11,7,4.64,213,"0.1277","0.27826","0.2783" +"GO:0034728","nucleosome organization",12,3,5.06,2499,"0.9375","0.28122","0.2812" +"GO:0097193","intrinsic apoptotic signaling pathway",16,9,6.74,244,"0.1858","0.28168","0.2817" +"GO:0010557","positive regulation of macromolecule bio...",65,30,27.4,438,"0.2952","0.28338","0.2834" +"GO:0007093","mitotic cell cycle checkpoint",16,6,6.74,1527,"0.7327","0.28430","0.2843" +"GO:0080135","regulation of cellular response to stres...",57,28,24.03,231,"0.1730","0.28548","0.2855" +"GO:0040014","regulation of multicellular organism gro...",5,2,2.11,1357,"0.6994","0.28657","0.2866" +"GO:0007032","endosome organization",3,2,1.26,640,"0.3832","0.28694","0.2869" +"GO:0007051","spindle organization",10,5,4.22,753,"0.4216","0.28729","0.2873" +"GO:0042327","positive regulation of phosphorylation",31,13,13.07,1114,"0.5784","0.28740","0.2874" +"GO:0035264","multicellular organism growth",10,4,4.22,1287,"0.6705","0.28854","0.2885" +"GO:0015748","organophosphate ester transport",6,3,2.53,883,"0.5003","0.28912","0.2891" +"GO:0006378","mRNA polyadenylation",5,3,2.11,533,"0.3551","0.28953","0.2895" +"GO:0001745","compound eye morphogenesis",16,9,6.74,245,"0.1858","0.29226","0.2923" +"GO:0009147","pyrimidine nucleoside triphosphate metab...",4,3,1.69,318,"0.2047","0.29249","0.2925" +"GO:0007612","learning",5,3,2.11,534,"0.3551","0.29385","0.2939" +"GO:0000463","maturation of LSU-rRNA from tricistronic...",5,2,2.11,1358,"0.6994","0.29565","0.2956" +"GO:0000470","maturation of LSU-rRNA",5,2,2.11,1359,"0.6994","0.29565","0.2956" +"GO:0033045","regulation of sister chromatid segregati...",9,5,3.79,459,"0.3128","0.29630","0.2963" +"GO:0051983","regulation of chromosome segregation",9,5,3.79,460,"0.3128","0.29630","0.2963" +"GO:0043966","histone H3 acetylation",6,4,2.53,361,"0.2100","0.29676","0.2968" +"GO:0006839","mitochondrial transport",37,14,15.6,1581,"0.7572","0.29729","0.2973" +"GO:1901879","regulation of protein depolymerization",6,3,2.53,884,"0.5003","0.29731","0.2973" +"GO:1901880","negative regulation of protein depolymer...",6,3,2.53,885,"0.5003","0.29731","0.2973" +"GO:0010822","positive regulation of mitochondrion org...",13,3,5.48,2571,"0.9582","0.29779","0.2978" +"GO:0032786","positive regulation of DNA-templated tra...",3,1,1.26,1710,"0.8066","0.29830","0.2983" +"GO:0031297","replication fork processing",3,2,1.26,641,"0.3832","0.29849","0.2985" +"GO:0045005","DNA-dependent DNA replication maintenanc...",3,2,1.26,642,"0.3832","0.29849","0.2985" +"GO:0060191","regulation of lipase activity",3,2,1.26,643,"0.3832","0.29908","0.2991" +"GO:0006213","pyrimidine nucleoside metabolic process",4,3,1.69,319,"0.2047","0.30056","0.3006" +"GO:0046131","pyrimidine ribonucleoside metabolic proc...",4,3,1.69,320,"0.2047","0.30056","0.3006" +"GO:0051246","regulation of protein metabolic process",146,66,61.54,390,"0.2470","0.30191","0.3019" +"GO:0071216","cellular response to biotic stimulus",6,4,2.53,362,"0.2100","0.30228","0.3023" +"GO:0072089","stem cell proliferation",6,3,2.53,886,"0.5003","0.30228","0.3023" +"GO:0007224","smoothened signaling pathway",4,3,1.69,321,"0.2047","0.30260","0.3026" +"GO:0042273","ribosomal large subunit biogenesis",14,7,5.9,558,"0.3684","0.30299","0.3030" +"GO:0006544","glycine metabolic process",5,2,2.11,1360,"0.6994","0.30321","0.3032" +"GO:0009069","serine family amino acid metabolic proce...",5,2,2.11,1361,"0.6994","0.30321","0.3032" +"GO:0032011","ARF protein signal transduction",3,2,1.26,644,"0.3832","0.30497","0.3050" +"GO:0032012","regulation of ARF protein signal transdu...",3,2,1.26,645,"0.3832","0.30497","0.3050" +"GO:0032069","regulation of nuclease activity",3,2,1.26,646,"0.3832","0.30615","0.3062" +"GO:0032075","positive regulation of nuclease activity",3,2,1.26,647,"0.3832","0.30615","0.3062" +"GO:0045639","positive regulation of myeloid cell diff...",3,2,1.26,648,"0.3832","0.30615","0.3062" +"GO:0045648","positive regulation of erythrocyte diffe...",3,2,1.26,649,"0.3832","0.30615","0.3062" +"GO:0046902","regulation of mitochondrial membrane per...",3,2,1.26,650,"0.3832","0.30615","0.3062" +"GO:0097201","negative regulation of transcription fro...",3,2,1.26,651,"0.3832","0.30615","0.3062" +"GO:0097300","programmed necrotic cell death",4,2,1.69,989,"0.5617","0.30739","0.3074" +"GO:0048469","cell maturation",12,5,5.06,1151,"0.6219","0.30754","0.3075" +"GO:0006473","protein acetylation",24,13,10.12,227,"0.1611","0.30773","0.3077" +"GO:0090342","regulation of cell aging",3,2,1.26,652,"0.3832","0.30793","0.3079" +"GO:0090398","cellular senescence",3,2,1.26,653,"0.3832","0.30793","0.3079" +"GO:2000772","regulation of cellular senescence",3,2,1.26,654,"0.3832","0.30793","0.3079" +"GO:0015780","nucleotide-sugar transmembrane transport",4,0,1.69,2750,"1.0000","0.30807","0.3081" +"GO:0031399","regulation of protein modification proce...",86,38,36.25,726,"0.3889","0.30842","0.3084" +"GO:0001754","eye photoreceptor cell differentiation",14,8,5.9,249,"0.1922","0.30849","0.3085" +"GO:1901989","positive regulation of cell cycle phase ...",4,3,1.69,322,"0.2047","0.30876","0.3088" +"GO:0032270","positive regulation of cellular protein ...",72,35,30.35,224,"0.1577","0.30877","0.3088" +"GO:0032880","regulation of protein localization",54,23,22.76,936,"0.5262","0.31061","0.3106" +"GO:0048813","dendrite morphogenesis",7,3,2.95,1175,"0.6262","0.31179","0.3118" +"GO:0050878","regulation of body fluid levels",5,2,2.11,1362,"0.6994","0.31244","0.3124" +"GO:0051054","positive regulation of DNA metabolic pro...",15,6,6.32,1270,"0.6619","0.31367","0.3137" +"GO:0070979","protein K11-linked ubiquitination",9,3,3.79,1940,"0.8069","0.31375","0.3138" +"GO:0051169","nuclear transport",42,20,17.7,428,"0.2842","0.31634","0.3163" +"GO:0006996","organelle organization",395,173,166.5,394,"0.2540","0.10529","0.3170" +"GO:0045597","positive regulation of cell differentiat...",28,14,11.8,396,"0.2554","0.31704","0.3170" +"GO:0000910","cytokinesis",13,7,5.48,420,"0.2803","0.31735","0.3173" +"GO:1901653","cellular response to peptide",8,2,3.37,2367,"0.9147","0.31735","0.3174" +"GO:0032231","regulation of actin filament bundle asse...",4,2,1.69,990,"0.5617","0.31779","0.3178" +"GO:0043516","regulation of DNA damage response, signa...",4,2,1.69,991,"0.5617","0.31779","0.3178" +"GO:0043518","negative regulation of DNA damage respon...",4,2,1.69,992,"0.5617","0.31779","0.3178" +"GO:0046631","alpha-beta T cell activation",4,2,1.69,993,"0.5617","0.31779","0.3178" +"GO:0051492","regulation of stress fiber assembly",4,2,1.69,994,"0.5617","0.31779","0.3178" +"GO:2001244","positive regulation of intrinsic apoptot...",4,2,1.69,995,"0.5617","0.31779","0.3178" +"GO:0007416","synapse assembly",12,5,5.06,1152,"0.6219","0.31877","0.3188" +"GO:0051304","chromosome separation",8,4,3.37,784,"0.4562","0.31934","0.3193" +"GO:0045935","positive regulation of nucleobase-contai...",79,36,33.3,453,"0.3041","0.32027","0.3203" +"GO:0031401","positive regulation of protein modificat...",50,25,21.08,226,"0.1611","0.32090","0.3209" +"GO:0001959","regulation of cytokine-mediated signalin...",6,4,2.53,363,"0.2100","0.32122","0.3212" +"GO:0001961","positive regulation of cytokine-mediated...",6,4,2.53,364,"0.2100","0.32122","0.3212" +"GO:0060759","regulation of response to cytokine stimu...",6,4,2.53,365,"0.2100","0.32122","0.3212" +"GO:0060760","positive regulation of response to cytok...",6,4,2.53,366,"0.2100","0.32122","0.3212" +"GO:0034404","nucleobase-containing small molecule bio...",17,8,7.17,762,"0.4299","0.32257","0.3226" +"GO:0043949","regulation of cAMP-mediated signaling",4,2,1.69,996,"0.5617","0.32271","0.3227" +"GO:0043951","negative regulation of cAMP-mediated sig...",4,2,1.69,997,"0.5617","0.32271","0.3227" +"GO:0009119","ribonucleoside metabolic process",10,6,4.22,267,"0.2040","0.32276","0.3228" +"GO:0001751","compound eye photoreceptor cell differen...",12,7,5.06,256,"0.1984","0.32366","0.3237" +"GO:1900180","regulation of protein localization to nu...",4,2,1.69,998,"0.5617","0.32554","0.3255" +"GO:0035315","hair cell differentiation",5,2,2.11,1363,"0.6994","0.32561","0.3256" +"GO:0032434","regulation of proteasomal ubiquitin-depe...",13,7,5.48,421,"0.2803","0.32586","0.3259" +"GO:1901987","regulation of cell cycle phase transitio...",21,10,8.85,575,"0.3832","0.32607","0.3261" +"GO:0051223","regulation of protein transport",30,10,12.65,2187,"0.8798","0.32642","0.3264" +"GO:0040019","positive regulation of embryonic develop...",5,3,2.11,535,"0.3551","0.32736","0.3274" +"GO:0044237","cellular metabolic process",1631,679,687.49,1584,"0.7600","0.08372","0.3277" +"GO:0006221","pyrimidine nucleotide biosynthetic proce...",6,4,2.53,367,"0.2100","0.32904","0.3290" +"GO:0030970","retrograde protein transport, ER to cyto...",5,3,2.11,536,"0.3551","0.32911","0.3291" +"GO:1903513","endoplasmic reticulum to cytosol transpo...",5,3,2.11,537,"0.3551","0.32911","0.3291" +"GO:0002084","protein depalmitoylation",3,2,1.26,655,"0.3832","0.32917","0.3292" +"GO:0036010","protein localization to endosome",3,2,1.26,656,"0.3832","0.32917","0.3292" +"GO:0042159","lipoprotein catabolic process",3,2,1.26,657,"0.3832","0.32917","0.3292" +"GO:0098734","macromolecule depalmitoylation",3,2,1.26,658,"0.3832","0.32917","0.3292" +"GO:0072528","pyrimidine-containing compound biosynthe...",8,5,3.37,338,"0.2084","0.33138","0.3314" +"GO:1902475","L-alpha-amino acid transmembrane transpo...",5,3,2.11,538,"0.3551","0.33151","0.3315" +"GO:1903320","regulation of protein modification by sm...",27,14,11.38,261,"0.2026","0.33175","0.3318" +"GO:0051641","cellular localization",262,121,110.44,138,"0.0931","0.33272","0.3327" +"GO:0006928","movement of cell or subcellular componen...",97,45,40.89,382,"0.2241","0.33311","0.3331" +"GO:0032465","regulation of cytokinesis",3,2,1.26,659,"0.3832","0.33330","0.3333" +"GO:1901657","glycosyl compound metabolic process",15,8,6.32,408,"0.2664","0.33407","0.3341" +"GO:0001818","negative regulation of cytokine producti...",4,1,1.69,2201,"0.8882","0.33411","0.3341" +"GO:0032479","regulation of type I interferon producti...",4,2,1.69,999,"0.5617","0.33411","0.3341" +"GO:0032606","type I interferon production",4,2,1.69,1000,"0.5617","0.33411","0.3341" +"GO:0001837","epithelial to mesenchymal transition",3,2,1.26,660,"0.3832","0.33413","0.3341" +"GO:0071242","cellular response to ammonium ion",3,2,1.26,661,"0.3832","0.33413","0.3341" +"GO:0019673","GDP-mannose metabolic process",3,2,1.26,662,"0.3832","0.33538","0.3354" +"GO:0051247","positive regulation of protein metabolic...",75,36,31.61,236,"0.1782","0.33559","0.3356" +"GO:0006997","nucleus organization",13,7,5.48,422,"0.2803","0.33560","0.3356" +"GO:1903051","negative regulation of proteolysis invol...",7,4,2.95,492,"0.3323","0.33818","0.3382" +"GO:1903363","negative regulation of cellular protein ...",7,4,2.95,493,"0.3323","0.33818","0.3382" +"GO:0031589","cell-substrate adhesion",12,6,5.06,732,"0.3929","0.33940","0.3394" +"GO:0006898","receptor-mediated endocytosis",8,3,3.37,1492,"0.7282","0.33954","0.3395" +"GO:0034622","cellular protein-containing complex asse...",110,47,46.37,845,"0.4876","0.34086","0.3409" +"GO:0061326","renal tubule development",6,3,2.53,887,"0.5003","0.34260","0.3426" +"GO:0051347","positive regulation of transferase activ...",23,9,9.69,1323,"0.6903","0.34317","0.3432" +"GO:0045787","positive regulation of cell cycle",17,9,7.17,393,"0.2537","0.34397","0.3440" +"GO:0051051","negative regulation of transport",12,7,5.06,257,"0.1984","0.34403","0.3440" +"GO:0060341","regulation of cellular localization",50,22,21.08,772,"0.4484","0.34455","0.3445" +"GO:0002182","cytoplasmic translational elongation",3,1,1.26,1711,"0.8066","0.34460","0.3446" +"GO:0017182","peptidyl-diphthamide metabolic process",3,1,1.26,1712,"0.8066","0.34460","0.3446" +"GO:0017183","peptidyl-diphthamide biosynthetic proces...",3,1,1.26,1713,"0.8066","0.34460","0.3446" +"GO:0018202","peptidyl-histidine modification",3,1,1.26,1714,"0.8066","0.34460","0.3446" +"GO:1900247","regulation of cytoplasmic translational ...",3,1,1.26,1715,"0.8066","0.34460","0.3446" +"GO:0034340","response to type I interferon",3,2,1.26,663,"0.3832","0.34482","0.3448" +"GO:0060337","type I interferon signaling pathway",3,2,1.26,664,"0.3832","0.34482","0.3448" +"GO:0060338","regulation of type I interferon-mediated...",3,2,1.26,665,"0.3832","0.34482","0.3448" +"GO:0060340","positive regulation of type I interferon...",3,2,1.26,666,"0.3832","0.34482","0.3448" +"GO:0071357","cellular response to type I interferon",3,2,1.26,667,"0.3832","0.34482","0.3448" +"GO:0035519","protein K29-linked ubiquitination",4,2,1.69,1001,"0.5617","0.34500","0.3450" +"GO:0000280","nuclear division",40,19,16.86,451,"0.2967","0.34522","0.3452" +"GO:0010821","regulation of mitochondrion organization",16,5,6.74,2181,"0.8739","0.34559","0.3456" +"GO:0001736","establishment of planar polarity",12,6,5.06,733,"0.3929","0.34573","0.3457" +"GO:0001738","morphogenesis of a polarized epithelium",12,6,5.06,734,"0.3929","0.34573","0.3457" +"GO:0007164","establishment of tissue polarity",12,6,5.06,735,"0.3929","0.34573","0.3457" +"GO:0007166","cell surface receptor signaling pathway",107,50,45.1,246,"0.1896","0.34669","0.3467" +"GO:0009607","response to biotic stimulus",28,12,11.8,954,"0.5422","0.34669","0.3467" +"GO:0031058","positive regulation of histone modificat...",9,5,3.79,461,"0.3128","0.34702","0.3470" +"GO:1905269","positive regulation of chromatin organiz...",9,5,3.79,462,"0.3128","0.34702","0.3470" +"GO:0002685","regulation of leukocyte migration",5,3,2.11,539,"0.3551","0.34725","0.3473" +"GO:1901652","response to peptide",12,3,5.06,2500,"0.9375","0.34785","0.3479" +"GO:0090068","positive regulation of cell cycle proces...",12,6,5.06,736,"0.3929","0.34870","0.3487" +"GO:0070727","cellular macromolecule localization",182,84,76.72,220,"0.1460","0.35056","0.3506" +"GO:0072347","response to anesthetic",7,4,2.95,494,"0.3323","0.35091","0.3509" +"GO:0034446","substrate adhesion-dependent cell spread...",6,3,2.53,888,"0.5003","0.35099","0.3510" +"GO:0006487","protein N-linked glycosylation",18,10,7.59,238,"0.1795","0.35117","0.3512" +"GO:0032535","regulation of cellular component size",25,11,10.54,921,"0.5019","0.35214","0.3521" +"GO:1903050","regulation of proteolysis involved in ce...",21,11,8.85,385,"0.2311","0.35267","0.3527" +"GO:0007635","chemosensory behavior",3,2,1.26,668,"0.3832","0.35311","0.3531" +"GO:0008306","associative learning",3,2,1.26,669,"0.3832","0.35311","0.3531" +"GO:0006165","nucleoside diphosphate phosphorylation",5,2,2.11,1364,"0.6994","0.35336","0.3534" +"GO:0009145","purine nucleoside triphosphate biosynthe...",5,2,2.11,1365,"0.6994","0.35336","0.3534" +"GO:0009206","purine ribonucleoside triphosphate biosy...",5,2,2.11,1366,"0.6994","0.35336","0.3534" +"GO:0007007","inner mitochondrial membrane organizatio...",6,2,2.53,1632,"0.7990","0.35341","0.3534" +"GO:0090151","establishment of protein localization to...",6,3,2.53,889,"0.5003","0.35341","0.3534" +"GO:0009628","response to abiotic stimulus",90,39,37.94,773,"0.4493","0.35386","0.3539" +"GO:2001252","positive regulation of chromosome organi...",13,7,5.48,423,"0.2803","0.35410","0.3541" +"GO:0000281","mitotic cytokinesis",5,3,2.11,540,"0.3551","0.35469","0.3547" +"GO:0007350","blastoderm segmentation",6,3,2.53,890,"0.5003","0.35523","0.3552" +"GO:0010830","regulation of myotube differentiation",3,1,1.26,1716,"0.8066","0.35546","0.3555" +"GO:0032608","interferon-beta production",3,2,1.26,670,"0.3832","0.35546","0.3555" +"GO:0032648","regulation of interferon-beta production",3,2,1.26,671,"0.3832","0.35546","0.3555" +"GO:0006357","regulation of transcription by RNA polym...",107,46,45.1,827,"0.4664","0.35718","0.3572" +"GO:0009416","response to light stimulus",19,7,8.01,1573,"0.7565","0.35845","0.3584" +"GO:0071840","cellular component organization or bioge...",599,266,252.49,167,"0.1118","0.03562","0.3585" +"GO:0000731","DNA synthesis involved in DNA repair",4,2,1.69,1002,"0.5617","0.35906","0.3591" +"GO:0019985","translesion synthesis",4,2,1.69,1003,"0.5617","0.35906","0.3591" +"GO:0042476","odontogenesis",3,1,1.26,1717,"0.8066","0.35934","0.3593" +"GO:0070167","regulation of biomineral tissue developm...",3,1,1.26,1718,"0.8066","0.35934","0.3593" +"GO:0000245","spliceosomal complex assembly",7,3,2.95,1176,"0.6262","0.35976","0.3598" +"GO:0006613","cotranslational protein targeting to mem...",6,3,2.53,891,"0.5003","0.36010","0.3601" +"GO:0006614","SRP-dependent cotranslational protein ta...",6,3,2.53,892,"0.5003","0.36010","0.3601" +"GO:0006261","DNA-dependent DNA replication",30,14,12.65,570,"0.3724","0.36044","0.3604" +"GO:0016266","O-glycan processing",6,3,2.53,893,"0.5003","0.36194","0.3619" +"GO:0018210","peptidyl-threonine modification",6,3,2.53,894,"0.5003","0.36194","0.3619" +"GO:0030902","hindbrain development",15,9,6.32,207,"0.1273","0.36330","0.3633" +"GO:0045862","positive regulation of proteolysis",21,11,8.85,386,"0.2311","0.36354","0.3635" +"GO:0045930","negative regulation of mitotic cell cycl...",19,7,8.01,1574,"0.7565","0.36362","0.3636" +"GO:0071214","cellular response to abiotic stimulus",12,5,5.06,1153,"0.6219","0.36377","0.3638" +"GO:0104004","cellular response to environmental stimu...",12,5,5.06,1154,"0.6219","0.36377","0.3638" +"GO:0008593","regulation of Notch signaling pathway",10,4,4.22,1288,"0.6705","0.36387","0.3639" +"GO:0010639","negative regulation of organelle organiz...",27,12,11.38,833,"0.4774","0.36436","0.3644" +"GO:0008652","cellular amino acid biosynthetic process",7,4,2.95,495,"0.3323","0.36473","0.3647" +"GO:1901607","alpha-amino acid biosynthetic process",7,4,2.95,496,"0.3323","0.36473","0.3647" +"GO:1902903","regulation of supramolecular fiber organ...",27,14,11.38,262,"0.2026","0.36531","0.3653" +"GO:0035107","appendage morphogenesis",14,7,5.9,559,"0.3684","0.36551","0.3655" +"GO:0008333","endosome to lysosome transport",6,4,2.53,368,"0.2100","0.36563","0.3656" +"GO:0048285","organelle fission",46,21,19.39,554,"0.3667","0.36638","0.3664" +"GO:0071375","cellular response to peptide hormone sti...",7,2,2.95,2109,"0.8681","0.36645","0.3664" +"GO:0009410","response to xenobiotic stimulus",7,3,2.95,1177,"0.6262","0.36773","0.3677" +"GO:0055085","transmembrane transport",169,73,71.24,749,"0.4181","0.36816","0.3682" +"GO:0015031","protein transport",158,71,66.6,397,"0.2580","0.36837","0.3684" +"GO:0015833","peptide transport",158,71,66.6,398,"0.2580","0.36837","0.3684" +"GO:0042886","amide transport",158,71,66.6,399,"0.2580","0.36837","0.3684" +"GO:0051306","mitotic sister chromatid separation",7,3,2.95,1178,"0.6262","0.36845","0.3684" +"GO:0008334","histone mRNA metabolic process",4,2,1.69,1004,"0.5617","0.36884","0.3688" +"GO:0030307","positive regulation of cell growth",4,2,1.69,1005,"0.5617","0.36884","0.3688" +"GO:0045927","positive regulation of growth",11,4,4.64,1549,"0.7527","0.36892","0.3689" +"GO:0009411","response to UV",8,4,3.37,785,"0.4562","0.36895","0.3690" +"GO:0097178","ruffle assembly",3,2,1.26,672,"0.3832","0.37109","0.3711" +"GO:1900027","regulation of ruffle assembly",3,2,1.26,673,"0.3832","0.37109","0.3711" +"GO:0061640","cytoskeleton-dependent cytokinesis",10,5,4.22,754,"0.4216","0.37298","0.3730" +"GO:0007389","pattern specification process",37,16,15.6,923,"0.5094","0.37378","0.3738" +"GO:0040039","inductive cell migration",3,1,1.26,1719,"0.8066","0.37505","0.3750" +"GO:0043065","positive regulation of apoptotic process",21,11,8.85,387,"0.2311","0.37557","0.3756" +"GO:0002478","antigen processing and presentation of e...",4,2,1.69,1006,"0.5617","0.37569","0.3757" +"GO:0019882","antigen processing and presentation",4,2,1.69,1007,"0.5617","0.37569","0.3757" +"GO:0019884","antigen processing and presentation of e...",4,2,1.69,1008,"0.5617","0.37569","0.3757" +"GO:0048002","antigen processing and presentation of p...",4,2,1.69,1009,"0.5617","0.37569","0.3757" +"GO:0006024","glycosaminoglycan biosynthetic process",4,0,1.69,2751,"1.0000","0.37722","0.3772" +"GO:0006029","proteoglycan metabolic process",4,0,1.69,2752,"1.0000","0.37722","0.3772" +"GO:0030166","proteoglycan biosynthetic process",4,0,1.69,2753,"1.0000","0.37722","0.3772" +"GO:0030203","glycosaminoglycan metabolic process",4,0,1.69,2754,"1.0000","0.37722","0.3772" +"GO:0030466","chromatin silencing at silent mating-typ...",3,2,1.26,674,"0.3832","0.37903","0.3790" +"GO:0031939","negative regulation of chromatin silenci...",3,2,1.26,675,"0.3832","0.37903","0.3790" +"GO:0061186","negative regulation of chromatin silenci...",3,2,1.26,676,"0.3832","0.37903","0.3790" +"GO:0090054","regulation of chromatin silencing at sil...",3,2,1.26,677,"0.3832","0.37903","0.3790" +"GO:0010228","vegetative to reproductive phase transit...",3,0,1.26,2755,"1.0000","0.37903","0.3790" +"GO:0000266","mitochondrial fission",5,2,2.11,1367,"0.6994","0.37971","0.3797" +"GO:0043434","response to peptide hormone",11,3,4.64,2327,"0.9077","0.37998","0.3800" +"GO:0001817","regulation of cytokine production",16,6,6.74,1528,"0.7327","0.38023","0.3802" +"GO:0007179","transforming growth factor beta receptor...",14,8,5.9,250,"0.1922","0.38040","0.3804" +"GO:0006269","DNA replication, synthesis of RNA primer",3,2,1.26,678,"0.3832","0.38058","0.3806" +"GO:1901800","positive regulation of proteasomal prote...",11,6,4.64,445,"0.2957","0.38149","0.3815" +"GO:1903052","positive regulation of proteolysis invol...",11,6,4.64,446,"0.2957","0.38149","0.3815" +"GO:1903364","positive regulation of cellular protein ...",11,6,4.64,447,"0.2957","0.38149","0.3815" +"GO:1903829","positive regulation of cellular protein ...",19,7,8.01,1575,"0.7565","0.38166","0.3817" +"GO:0008104","protein localization",218,101,91.89,165,"0.1095","0.38233","0.3823" +"GO:0006813","potassium ion transport",11,6,4.64,448,"0.2957","0.38242","0.3824" +"GO:0009072","aromatic amino acid family metabolic pro...",5,2,2.11,1368,"0.6994","0.38367","0.3837" +"GO:0032386","regulation of intracellular transport",29,9,12.22,2393,"0.9225","0.38385","0.3839" +"GO:0006367","transcription initiation from RNA polyme...",12,6,5.06,737,"0.3929","0.38450","0.3845" +"GO:1901698","response to nitrogen compound",50,20,21.08,1311,"0.6733","0.38493","0.3849" +"GO:0006368","transcription elongation from RNA polyme...",13,6,5.48,849,"0.4894","0.38765","0.3876" +"GO:0070050","neuron cellular homeostasis",3,2,1.26,679,"0.3832","0.38861","0.3886" +"GO:0006826","iron ion transport",4,1,1.69,2202,"0.8882","0.38880","0.3888" +"GO:0071345","cellular response to cytokine stimulus",26,13,10.96,410,"0.2676","0.38899","0.3890" +"GO:0006414","translational elongation",16,6,6.74,1529,"0.7327","0.38953","0.3895" +"GO:0019827","stem cell population maintenance",13,6,5.48,850,"0.4894","0.39024","0.3902" +"GO:0098727","maintenance of cell number",13,6,5.48,851,"0.4894","0.39024","0.3902" +"GO:0048167","regulation of synaptic plasticity",3,1,1.26,1720,"0.8066","0.39176","0.3918" +"GO:1905477","positive regulation of protein localizat...",3,2,1.26,680,"0.3832","0.39176","0.3918" +"GO:0043624","cellular protein complex disassembly",25,13,10.54,371,"0.2115","0.39293","0.3929" +"GO:0060284","regulation of cell development",39,18,16.44,550,"0.3619","0.39324","0.3932" +"GO:0017145","stem cell division",9,5,3.79,463,"0.3128","0.39346","0.3935" +"GO:0030447","filamentous growth",3,1,1.26,1721,"0.8066","0.39379","0.3938" +"GO:0043207","response to external biotic stimulus",25,10,10.54,1265,"0.6599","0.39647","0.3965" +"GO:0051707","response to other organism",25,10,10.54,1266,"0.6599","0.39647","0.3965" +"GO:2001242","regulation of intrinsic apoptotic signal...",13,7,5.48,424,"0.2803","0.39752","0.3975" +"GO:0009737","response to abscisic acid",5,2,2.11,1369,"0.6994","0.39796","0.3980" +"GO:0046907","intracellular transport",192,87,80.93,259,"0.1991","0.39806","0.3981" +"GO:0002687","positive regulation of leukocyte migrati...",3,2,1.26,681,"0.3832","0.39809","0.3981" +"GO:0050890","cognition",11,5,4.64,938,"0.5265","0.39817","0.3982" +"GO:0051302","regulation of cell division",6,4,2.53,369,"0.2100","0.39996","0.4000" +"GO:1901655","cellular response to ketone",5,2,2.11,1370,"0.6994","0.40131","0.4013" +"GO:0009101","glycoprotein biosynthetic process",51,21,21.5,1144,"0.6096","0.40288","0.4029" +"GO:0000916","actomyosin contractile ring contraction",3,2,1.26,682,"0.3832","0.40423","0.4042" +"GO:0009553","embryo sac development",3,2,1.26,683,"0.3832","0.40423","0.4042" +"GO:0036213","contractile ring contraction",3,2,1.26,684,"0.3832","0.40423","0.4042" +"GO:0055114","oxidation-reduction process",103,45,43.42,745,"0.4110","0.40466","0.4047" +"GO:0051963","regulation of synapse assembly",6,3,2.53,895,"0.5003","0.40512","0.4051" +"GO:0099173","postsynapse organization",7,3,2.95,1179,"0.6262","0.40703","0.4070" +"GO:0032088","negative regulation of NF-kappaB transcr...",3,1,1.26,1722,"0.8066","0.40813","0.4081" +"GO:0071569","protein ufmylation",3,0,1.26,2756,"1.0000","0.40813","0.4081" +"GO:1990564","protein polyufmylation",3,0,1.26,2757,"1.0000","0.40813","0.4081" +"GO:1990592","protein K69-linked ufmylation",3,0,1.26,2758,"1.0000","0.40813","0.4081" +"GO:0018209","peptidyl-serine modification",9,5,3.79,464,"0.3128","0.40832","0.4083" +"GO:0036265","RNA (guanine-N7)-methylation",3,1,1.26,1723,"0.8066","0.40881","0.4088" +"GO:0006446","regulation of translational initiation",4,2,1.69,1010,"0.5617","0.41005","0.4100" +"GO:0001666","response to hypoxia",13,4,5.48,2152,"0.8685","0.41060","0.4106" +"GO:0036293","response to decreased oxygen levels",13,4,5.48,2153,"0.8685","0.41060","0.4106" +"GO:0070482","response to oxygen levels",13,4,5.48,2154,"0.8685","0.41060","0.4106" +"GO:0030512","negative regulation of transforming grow...",4,3,1.69,323,"0.2047","0.41085","0.4108" +"GO:1903845","negative regulation of cellular response...",4,3,1.69,324,"0.2047","0.41085","0.4108" +"GO:0007446","imaginal disc growth",3,1,1.26,1724,"0.8066","0.41088","0.4109" +"GO:1902850","microtubule cytoskeleton organization in...",9,5,3.79,465,"0.3128","0.41164","0.4116" +"GO:0016071","mRNA metabolic process",110,47,46.37,846,"0.4876","0.41265","0.4127" +"GO:0006482","protein demethylation",12,4,5.06,1983,"0.8181","0.41268","0.4127" +"GO:0008214","protein dealkylation",12,4,5.06,1984,"0.8181","0.41268","0.4127" +"GO:0016577","histone demethylation",12,4,5.06,1985,"0.8181","0.41268","0.4127" +"GO:0070988","demethylation",12,4,5.06,1986,"0.8181","0.41268","0.4127" +"GO:0001503","ossification",9,3,3.79,1941,"0.8069","0.41271","0.4127" +"GO:0006625","protein targeting to peroxisome",4,3,1.69,325,"0.2047","0.41404","0.4140" +"GO:0043574","peroxisomal transport",4,3,1.69,326,"0.2047","0.41404","0.4140" +"GO:0072662","protein localization to peroxisome",4,3,1.69,327,"0.2047","0.41404","0.4140" +"GO:0072663","establishment of protein localization to...",4,3,1.69,328,"0.2047","0.41404","0.4140" +"GO:0007291","sperm individualization",4,1,1.69,2203,"0.8882","0.41564","0.4156" +"GO:0007349","cellularization",4,1,1.69,2204,"0.8882","0.41564","0.4156" +"GO:0001522","pseudouridine synthesis",13,6,5.48,852,"0.4894","0.41626","0.4163" +"GO:0030261","chromosome condensation",7,4,2.95,497,"0.3323","0.41639","0.4164" +"GO:0034613","cellular protein localization",181,83,76.29,228,"0.1668","0.41690","0.4169" +"GO:0044093","positive regulation of molecular functio...",78,34,32.88,771,"0.4403","0.41736","0.4174" +"GO:0046128","purine ribonucleoside metabolic process",7,4,2.95,498,"0.3323","0.41745","0.4174" +"GO:0043414","macromolecule methylation",48,19,20.23,1326,"0.6931","0.41995","0.4199" +"GO:0052548","regulation of endopeptidase activity",9,5,3.79,466,"0.3128","0.42033","0.4203" +"GO:0032869","cellular response to insulin stimulus",6,1,2.53,2582,"0.9627","0.42309","0.4231" +"GO:0034097","response to cytokine",27,13,11.38,476,"0.3280","0.42323","0.4232" +"GO:2000058","regulation of ubiquitin-dependent protei...",14,7,5.9,560,"0.3684","0.42565","0.4257" +"GO:0043933","protein-containing complex subunit organ...",160,65,67.44,1318,"0.6852","0.42662","0.4266" +"GO:0031333","negative regulation of protein complex a...",7,4,2.95,499,"0.3323","0.42721","0.4272" +"GO:0043242","negative regulation of protein complex d...",7,3,2.95,1180,"0.6262","0.42721","0.4272" +"GO:0051179","localization",596,252,251.22,847,"0.4890","0.42763","0.4276" +"GO:0072522","purine-containing compound biosynthetic ...",17,6,7.17,1617,"0.7923","0.42784","0.4278" +"GO:0000018","regulation of DNA recombination",3,1,1.26,1725,"0.8066","0.42829","0.4283" +"GO:0007131","reciprocal meiotic recombination",3,1,1.26,1726,"0.8066","0.42829","0.4283" +"GO:0035825","homologous recombination",3,1,1.26,1727,"0.8066","0.42829","0.4283" +"GO:0045911","positive regulation of DNA recombination",3,1,1.26,1728,"0.8066","0.42829","0.4283" +"GO:0001578","microtubule bundle formation",3,0,1.26,2759,"1.0000","0.42829","0.4283" +"GO:0007288","sperm axoneme assembly",3,0,1.26,2760,"1.0000","0.42829","0.4283" +"GO:0035082","axoneme assembly",3,0,1.26,2761,"1.0000","0.42829","0.4283" +"GO:0021543","pallium development",5,3,2.11,541,"0.3551","0.42869","0.4287" +"GO:0009311","oligosaccharide metabolic process",5,2,2.11,1371,"0.6994","0.42888","0.4289" +"GO:0010604","positive regulation of macromolecule met...",137,62,57.75,391,"0.2520","0.42904","0.4290" +"GO:0042306","regulation of protein import into nucleu...",3,1,1.26,1729,"0.8066","0.43111","0.4311" +"GO:1904589","regulation of protein import",3,1,1.26,1730,"0.8066","0.43111","0.4311" +"GO:1901988","negative regulation of cell cycle phase ...",12,3,5.06,2501,"0.9375","0.43227","0.4323" +"GO:1901991","negative regulation of mitotic cell cycl...",12,3,5.06,2502,"0.9375","0.43227","0.4323" +"GO:0050954","sensory perception of mechanical stimulu...",6,3,2.53,896,"0.5003","0.43269","0.4327" +"GO:0015931","nucleobase-containing compound transport",23,8,9.69,2006,"0.8234","0.43286","0.4329" +"GO:0002237","response to molecule of bacterial origin",7,3,2.95,1181,"0.6262","0.43367","0.4337" +"GO:0032496","response to lipopolysaccharide",7,3,2.95,1182,"0.6262","0.43367","0.4337" +"GO:0043549","regulation of kinase activity",31,12,13.07,1481,"0.7142","0.43399","0.4340" +"GO:0043628","ncRNA 3'-end processing",8,3,3.37,1493,"0.7282","0.43476","0.4348" +"GO:0007339","binding of sperm to zona pellucida",5,3,2.11,542,"0.3551","0.43507","0.4351" +"GO:0009988","cell-cell recognition",5,3,2.11,543,"0.3551","0.43507","0.4351" +"GO:0035036","sperm-egg recognition",5,3,2.11,544,"0.3551","0.43507","0.4351" +"GO:0030718","germ-line stem cell population maintenan...",5,2,2.11,1372,"0.6994","0.43525","0.4352" +"GO:1902117","positive regulation of organelle assembl...",5,1,2.11,2433,"0.9354","0.43525","0.4352" +"GO:0051046","regulation of secretion",11,3,4.64,2328,"0.9077","0.43532","0.4353" +"GO:0009262","deoxyribonucleotide metabolic process",6,3,2.53,897,"0.5003","0.43602","0.4360" +"GO:0045168","cell-cell signaling involved in cell fat...",5,2,2.11,1373,"0.6994","0.43616","0.4362" +"GO:0046331","lateral inhibition",5,2,2.11,1374,"0.6994","0.43616","0.4362" +"GO:0051649","establishment of localization in cell",206,91,86.83,431,"0.2945","0.43636","0.4364" +"GO:0042462","eye photoreceptor cell development",9,5,3.79,467,"0.3128","0.43739","0.4374" +"GO:1901796","regulation of signal transduction by p53...",9,5,3.79,468,"0.3128","0.43739","0.4374" +"GO:0030278","regulation of ossification",7,3,2.95,1183,"0.6262","0.43970","0.4397" +"GO:0032092","positive regulation of protein binding",6,3,2.53,898,"0.5003","0.44104","0.4410" +"GO:0006490","oligosaccharide-lipid intermediate biosy...",7,2,2.95,2110,"0.8681","0.44171","0.4417" +"GO:0030239","myofibril assembly",6,2,2.53,1633,"0.7990","0.44205","0.4420" +"GO:0003407","neural retina development",10,3,4.22,2079,"0.8654","0.44384","0.4438" +"GO:0009225","nucleotide-sugar metabolic process",6,3,2.53,899,"0.5003","0.44406","0.4441" +"GO:0007611","learning or memory",9,4,3.79,1085,"0.5709","0.44547","0.4455" +"GO:0044743","protein transmembrane import into intrac...",18,10,7.59,239,"0.1795","0.44603","0.4460" +"GO:0045786","negative regulation of cell cycle",38,17,16.02,770,"0.4335","0.44656","0.4466" +"GO:0009895","negative regulation of catabolic process",18,8,7.59,924,"0.5115","0.44720","0.4472" +"GO:0048668","collateral sprouting",3,1,1.26,1731,"0.8066","0.44814","0.4481" +"GO:1904263","positive regulation of TORC1 signaling",3,2,1.26,685,"0.3832","0.44838","0.4484" +"GO:0051234","establishment of localization",526,218,221.72,1268,"0.6600","0.44967","0.4497" +"GO:0071219","cellular response to molecule of bacteri...",4,2,1.69,1011,"0.5617","0.45067","0.4507" +"GO:0071222","cellular response to lipopolysaccharide",4,2,1.69,1012,"0.5617","0.45067","0.4507" +"GO:0071806","protein transmembrane transport",20,11,8.43,233,"0.1732","0.45077","0.4508" +"GO:0050808","synapse organization",24,9,10.12,1544,"0.7465","0.45081","0.4508" +"GO:0018345","protein palmitoylation",9,5,3.79,469,"0.3128","0.45126","0.4513" +"GO:0006749","glutathione metabolic process",5,5,2.11,16,"0.0132","0.01171","0.4517" +"GO:0006810","transport",505,211,212.86,1137,"0.5926","0.45203","0.4520" +"GO:0007162","negative regulation of cell adhesion",4,2,1.69,1013,"0.5617","0.45233","0.4523" +"GO:0006323","DNA packaging",17,7,7.17,1167,"0.6235","0.45337","0.4534" +"GO:0030865","cortical cytoskeleton organization",8,4,3.37,786,"0.4562","0.45457","0.4546" +"GO:0030866","cortical actin cytoskeleton organization",8,4,3.37,787,"0.4562","0.45457","0.4546" +"GO:1903312","negative regulation of mRNA metabolic pr...",3,2,1.26,686,"0.3832","0.45483","0.4548" +"GO:0009132","nucleoside diphosphate metabolic process",6,2,2.53,1634,"0.7990","0.45588","0.4559" +"GO:0009142","nucleoside triphosphate biosynthetic pro...",6,3,2.53,900,"0.5003","0.45588","0.4559" +"GO:0009201","ribonucleoside triphosphate biosynthetic...",6,3,2.53,901,"0.5003","0.45588","0.4559" +"GO:0046939","nucleotide phosphorylation",6,2,2.53,1635,"0.7990","0.45588","0.4559" +"GO:0090304","nucleic acid metabolic process",807,364,340.16,27,"0.0240","0.00657","0.4569" +"GO:0071103","DNA conformation change",23,10,9.69,948,"0.5284","0.45803","0.4580" +"GO:0006152","purine nucleoside catabolic process",3,2,1.26,687,"0.3832","0.45843","0.4584" +"GO:0009164","nucleoside catabolic process",3,2,1.26,688,"0.3832","0.45843","0.4584" +"GO:0034656","nucleobase-containing small molecule cat...",3,2,1.26,689,"0.3832","0.45843","0.4584" +"GO:0042454","ribonucleoside catabolic process",3,2,1.26,690,"0.3832","0.45843","0.4584" +"GO:1901068","guanosine-containing compound metabolic ...",3,2,1.26,691,"0.3832","0.45843","0.4584" +"GO:1901658","glycosyl compound catabolic process",3,2,1.26,692,"0.3832","0.45843","0.4584" +"GO:1901990","regulation of mitotic cell cycle phase t...",19,8,8.01,1132,"0.5888","0.45892","0.4589" +"GO:0042451","purine nucleoside biosynthetic process",4,2,1.69,1014,"0.5617","0.45898","0.4590" +"GO:0046129","purine ribonucleoside biosynthetic proce...",4,2,1.69,1015,"0.5617","0.45898","0.4590" +"GO:0033674","positive regulation of kinase activity",15,6,6.32,1271,"0.6619","0.45960","0.4596" +"GO:0009163","nucleoside biosynthetic process",6,3,2.53,902,"0.5003","0.45996","0.4600" +"GO:0042455","ribonucleoside biosynthetic process",6,3,2.53,903,"0.5003","0.45996","0.4600" +"GO:0006469","negative regulation of protein kinase ac...",5,2,2.11,1375,"0.6994","0.46036","0.4604" +"GO:0008344","adult locomotory behavior",5,2,2.11,1376,"0.6994","0.46036","0.4604" +"GO:0048599","oocyte development",5,2,2.11,1377,"0.6994","0.46036","0.4604" +"GO:0050663","cytokine secretion",5,2,2.11,1378,"0.6994","0.46036","0.4604" +"GO:1903533","regulation of protein targeting",11,2,4.64,2648,"0.9783","0.46050","0.4605" +"GO:0009880","embryonic pattern specification",11,5,4.64,939,"0.5265","0.46075","0.4607" +"GO:0010948","negative regulation of cell cycle proces...",17,5,7.17,2345,"0.9079","0.46085","0.4609" +"GO:0090087","regulation of peptide transport",31,10,13.07,2317,"0.9056","0.46103","0.4610" +"GO:0031497","chromatin assembly",10,3,4.22,2080,"0.8654","0.46222","0.4622" +"GO:0007596","blood coagulation",3,1,1.26,1732,"0.8066","0.46253","0.4625" +"GO:0007599","hemostasis",3,1,1.26,1733,"0.8066","0.46253","0.4625" +"GO:0031061","negative regulation of histone methylati...",3,1,1.26,1734,"0.8066","0.46253","0.4625" +"GO:0050817","coagulation",3,1,1.26,1735,"0.8066","0.46253","0.4625" +"GO:0009908","flower development",4,1,1.69,2205,"0.8882","0.46315","0.4632" +"GO:0043687","post-translational protein modification",4,2,1.69,1016,"0.5617","0.46315","0.4632" +"GO:0045116","protein neddylation",4,2,1.69,1017,"0.5617","0.46399","0.4640" +"GO:0015718","monocarboxylic acid transport",10,4,4.22,1289,"0.6705","0.46460","0.4646" +"GO:0051090","regulation of DNA-binding transcription ...",14,7,5.9,561,"0.3684","0.46535","0.4654" +"GO:0042592","homeostatic process",92,42,38.78,415,"0.2784","0.46595","0.4660" +"GO:0071897","DNA biosynthetic process",14,6,5.9,1119,"0.5802","0.46670","0.4667" +"GO:1903362","regulation of cellular protein catabolic...",22,11,9.27,433,"0.2951","0.46813","0.4681" +"GO:0048762","mesenchymal cell differentiation",9,4,3.79,1086,"0.5709","0.46823","0.4682" +"GO:0007552","metamorphosis",13,5,5.48,1468,"0.7047","0.46838","0.4684" +"GO:0007560","imaginal disc morphogenesis",13,5,5.48,1469,"0.7047","0.46838","0.4684" +"GO:0009886","post-embryonic animal morphogenesis",13,5,5.48,1470,"0.7047","0.46838","0.4684" +"GO:0048563","post-embryonic animal organ morphogenesi...",13,5,5.48,1471,"0.7047","0.46838","0.4684" +"GO:0048707","instar larval or pupal morphogenesis",13,5,5.48,1472,"0.7047","0.46838","0.4684" +"GO:0060562","epithelial tube morphogenesis",35,13,14.75,1609,"0.7799","0.46861","0.4686" +"GO:0030514","negative regulation of BMP signaling pat...",4,2,1.69,1018,"0.5617","0.46901","0.4690" +"GO:0030198","extracellular matrix organization",17,7,7.17,1168,"0.6235","0.46930","0.4693" +"GO:1903530","regulation of secretion by cell",10,3,4.22,2081,"0.8654","0.46964","0.4696" +"GO:0045747","positive regulation of Notch signaling p...",7,4,2.95,500,"0.3323","0.47063","0.4706" +"GO:0017148","negative regulation of translation",4,2,1.69,1019,"0.5617","0.47069","0.4707" +"GO:0034249","negative regulation of cellular amide me...",4,2,1.69,1020,"0.5617","0.47069","0.4707" +"GO:0071453","cellular response to oxygen levels",11,3,4.64,2329,"0.9077","0.47112","0.4711" +"GO:0051298","centrosome duplication",3,0,1.26,2762,"1.0000","0.47124","0.4712" +"GO:0016572","histone phosphorylation",3,0,1.26,2763,"1.0000","0.47269","0.4727" +"GO:0033127","regulation of histone phosphorylation",3,0,1.26,2764,"1.0000","0.47269","0.4727" +"GO:0042133","neurotransmitter metabolic process",7,2,2.95,2111,"0.8681","0.47333","0.4733" +"GO:0010562","positive regulation of phosphorus metabo...",34,14,14.33,1146,"0.6109","0.47481","0.4748" +"GO:0045937","positive regulation of phosphate metabol...",34,14,14.33,1147,"0.6109","0.47481","0.4748" +"GO:0006475","internal protein amino acid acetylation",22,11,9.27,434,"0.2951","0.47533","0.4753" +"GO:0016573","histone acetylation",22,11,9.27,435,"0.2951","0.47533","0.4753" +"GO:0018393","internal peptidyl-lysine acetylation",22,11,9.27,436,"0.2951","0.47533","0.4753" +"GO:0018394","peptidyl-lysine acetylation",22,11,9.27,437,"0.2951","0.47533","0.4753" +"GO:0042051","compound eye photoreceptor development",7,4,2.95,501,"0.3323","0.47636","0.4764" +"GO:0009100","glycoprotein metabolic process",55,23,23.18,1112,"0.5720","0.47969","0.4797" +"GO:0015012","heparan sulfate proteoglycan biosyntheti...",3,0,1.26,2765,"1.0000","0.48147","0.4815" +"GO:0030201","heparan sulfate proteoglycan metabolic p...",3,0,1.26,2766,"1.0000","0.48147","0.4815" +"GO:0033047","regulation of mitotic sister chromatid s...",7,3,2.95,1184,"0.6262","0.48276","0.4828" +"GO:0006468","protein phosphorylation",181,77,76.29,844,"0.4858","0.48299","0.4830" +"GO:0035966","response to topologically incorrect prot...",27,16,11.38,85,"0.0542","0.03572","0.4834" +"GO:2001234","negative regulation of apoptotic signali...",11,6,4.64,449,"0.2957","0.48361","0.4836" +"GO:0070509","calcium ion import",3,1,1.26,1736,"0.8066","0.48367","0.4837" +"GO:0043244","regulation of protein complex disassembl...",11,4,4.64,1550,"0.7527","0.48412","0.4841" +"GO:0000041","transition metal ion transport",9,2,3.79,2524,"0.9455","0.48456","0.4846" +"GO:0035967","cellular response to topologically incor...",19,12,8.01,81,"0.0527","0.00909","0.4849" +"GO:0031328","positive regulation of cellular biosynth...",69,30,29.08,814,"0.4567","0.48545","0.4855" +"GO:0072359","circulatory system development",48,19,20.23,1327,"0.6931","0.48648","0.4865" +"GO:0051098","regulation of binding",19,9,8.01,742,"0.4053","0.48661","0.4866" +"GO:0046040","IMP metabolic process",4,2,1.69,1021,"0.5617","0.48760","0.4876" +"GO:0060135","maternal process involved in female preg...",5,0,2.11,2767,"1.0000","0.48843","0.4884" +"GO:0044839","cell cycle G2/M phase transition",14,6,5.9,1120,"0.5802","0.48886","0.4889" +"GO:0051240","positive regulation of multicellular org...",51,21,21.5,1145,"0.6096","0.48898","0.4890" +"GO:0008284","positive regulation of cell proliferatio...",24,10,10.12,1139,"0.5967","0.48935","0.4894" +"GO:0022008","neurogenesis",91,40,38.36,741,"0.4007","0.48996","0.4900" +"GO:0002753","cytoplasmic pattern recognition receptor...",4,2,1.69,1022,"0.5617","0.49015","0.4902" +"GO:0044764","multi-organism cellular process",4,2,1.69,1023,"0.5617","0.49015","0.4902" +"GO:0046434","organophosphate catabolic process",16,6,6.74,1530,"0.7327","0.49118","0.4912" +"GO:0010628","positive regulation of gene expression",80,35,33.72,760,"0.4269","0.49180","0.4918" +"GO:0006403","RNA localization",21,9,8.85,967,"0.5572","0.49307","0.4931" +"GO:0001819","positive regulation of cytokine producti...",12,5,5.06,1155,"0.6219","0.49407","0.4941" +"GO:0015698","inorganic anion transport",7,1,2.95,2654,"0.9784","0.49418","0.4942" +"GO:0009612","response to mechanical stimulus",8,4,3.37,788,"0.4562","0.49512","0.4951" +"GO:0050708","regulation of protein secretion",8,3,3.37,1494,"0.7282","0.49512","0.4951" +"GO:0010770","positive regulation of cell morphogenesi...",4,2,1.69,1024,"0.5617","0.49612","0.4961" +"GO:0033627","cell adhesion mediated by integrin",4,2,1.69,1025,"0.5617","0.49783","0.4978" +"GO:0042325","regulation of phosphorylation",56,23,23.6,1148,"0.6161","0.49814","0.4981" +"GO:0090101","negative regulation of transmembrane rec...",8,5,3.37,339,"0.2084","0.49875","0.4987" +"GO:0090288","negative regulation of cellular response...",8,5,3.37,340,"0.2084","0.49875","0.4987" +"GO:0060541","respiratory system development",15,6,6.32,1272,"0.6619","0.50062","0.5006" +"GO:0070265","necrotic cell death",5,2,2.11,1379,"0.6994","0.50084","0.5008" +"GO:0071557","histone H3-K27 demethylation",3,2,1.26,693,"0.3832","0.50089","0.5009" +"GO:0009063","cellular amino acid catabolic process",9,3,3.79,1942,"0.8069","0.50106","0.5011" +"GO:1901606","alpha-amino acid catabolic process",9,3,3.79,1943,"0.8069","0.50106","0.5011" +"GO:0006626","protein targeting to mitochondrion",24,9,10.12,1545,"0.7465","0.50265","0.5027" +"GO:0010564","regulation of cell cycle process",45,19,18.97,964,"0.5535","0.50405","0.5040" +"GO:0036294","cellular response to decreased oxygen le...",10,3,4.22,2082,"0.8654","0.50461","0.5046" +"GO:0071456","cellular response to hypoxia",10,3,4.22,2083,"0.8654","0.50461","0.5046" +"GO:0008299","isoprenoid biosynthetic process",8,2,3.37,2368,"0.9147","0.50603","0.5060" +"GO:0002791","regulation of peptide secretion",9,3,3.79,1944,"0.8069","0.50664","0.5066" +"GO:0030488","tRNA methylation",8,4,3.37,789,"0.4562","0.50724","0.5072" +"GO:0045132","meiotic chromosome segregation",5,2,2.11,1380,"0.6994","0.50756","0.5076" +"GO:0010972","negative regulation of G2/M transition o...",5,0,2.11,2768,"1.0000","0.50756","0.5076" +"GO:1902750","negative regulation of cell cycle G2/M p...",5,0,2.11,2769,"1.0000","0.50756","0.5076" +"GO:1902532","negative regulation of intracellular sig...",25,12,10.54,510,"0.3448","0.50773","0.5077" +"GO:0007420","brain development",35,17,14.75,414,"0.2720","0.50777","0.5078" +"GO:0007006","mitochondrial membrane organization",10,4,4.22,1290,"0.6705","0.50787","0.5079" +"GO:0000578","embryonic axis specification",5,2,2.11,1381,"0.6994","0.50795","0.5079" +"GO:0009948","anterior/posterior axis specification",5,2,2.11,1382,"0.6994","0.50795","0.5079" +"GO:0009312","oligosaccharide biosynthetic process",4,1,1.69,2206,"0.8882","0.50813","0.5081" +"GO:0018243","protein O-linked glycosylation via threo...",4,1,1.69,2207,"0.8882","0.50813","0.5081" +"GO:0010975","regulation of neuron projection developm...",15,7,6.32,817,"0.4577","0.50895","0.5089" +"GO:0007507","heart development",33,13,13.91,1320,"0.6887","0.50983","0.5098" +"GO:0071467","cellular response to pH",3,1,1.26,1737,"0.8066","0.51031","0.5103" +"GO:0045022","early endosome to late endosome transpor...",4,2,1.69,1026,"0.5617","0.51157","0.5116" +"GO:0098927","vesicle-mediated transport between endos...",4,2,1.69,1027,"0.5617","0.51157","0.5116" +"GO:0042052","rhabdomere development",3,2,1.26,694,"0.3832","0.51205","0.5120" +"GO:0055074","calcium ion homeostasis",10,5,4.22,755,"0.4216","0.51278","0.5128" +"GO:0048638","regulation of developmental growth",18,5,7.59,2407,"0.9336","0.51371","0.5137" +"GO:0016043","cellular component organization",540,233,227.62,471,"0.3171","0.19870","0.5141" +"GO:0048008","platelet-derived growth factor receptor ...",4,2,1.69,1028,"0.5617","0.51416","0.5142" +"GO:0048806","genitalia development",4,1,1.69,2208,"0.8882","0.51416","0.5142" +"GO:0071479","cellular response to ionizing radiation",4,2,1.69,1029,"0.5617","0.51416","0.5142" +"GO:0098542","defense response to other organism",19,8,8.01,1133,"0.5888","0.51756","0.5176" +"GO:0016055","Wnt signaling pathway",33,16,13.91,429,"0.2846","0.51844","0.5184" +"GO:1905114","cell surface receptor signaling pathway ...",33,16,13.91,430,"0.2846","0.51844","0.5184" +"GO:0042177","negative regulation of protein catabolic...",9,4,3.79,1087,"0.5709","0.51958","0.5196" +"GO:0072657","protein localization to membrane",36,16,15.17,776,"0.4526","0.52230","0.5223" +"GO:0046578","regulation of Ras protein signal transdu...",19,9,8.01,743,"0.4053","0.52244","0.5224" +"GO:1902749","regulation of cell cycle G2/M phase tran...",11,5,4.64,940,"0.5265","0.52270","0.5227" +"GO:1901292","nucleoside phosphate catabolic process",11,5,4.64,941,"0.5265","0.52283","0.5228" +"GO:0040013","negative regulation of locomotion",11,4,4.64,1551,"0.7527","0.52400","0.5240" +"GO:0051271","negative regulation of cellular componen...",11,4,4.64,1552,"0.7527","0.52400","0.5240" +"GO:2000146","negative regulation of cell motility",11,4,4.64,1553,"0.7527","0.52400","0.5240" +"GO:0006486","protein glycosylation",48,21,20.23,824,"0.4657","0.52446","0.5245" +"GO:0043413","macromolecule glycosylation",48,21,20.23,825,"0.4657","0.52446","0.5245" +"GO:0070085","glycosylation",48,21,20.23,826,"0.4657","0.52446","0.5245" +"GO:0032252","secretory granule localization",3,2,1.26,695,"0.3832","0.52452","0.5245" +"GO:0032253","dense core granule localization",3,2,1.26,696,"0.3832","0.52452","0.5245" +"GO:1901950","dense core granule transport",3,2,1.26,697,"0.3832","0.52452","0.5245" +"GO:1903649","regulation of cytoplasmic transport",3,2,1.26,698,"0.3832","0.52452","0.5245" +"GO:1904809","regulation of dense core granule transpo...",3,2,1.26,699,"0.3832","0.52452","0.5245" +"GO:0030111","regulation of Wnt signaling pathway",21,10,8.85,576,"0.3832","0.52499","0.5250" +"GO:0071277","cellular response to calcium ion",3,1,1.26,1738,"0.8066","0.52527","0.5253" +"GO:0043162","ubiquitin-dependent protein catabolic pr...",6,2,2.53,1636,"0.7990","0.52678","0.5268" +"GO:0006109","regulation of carbohydrate metabolic pro...",10,4,4.22,1291,"0.6705","0.52839","0.5284" +"GO:0015804","neutral amino acid transport",4,2,1.69,1030,"0.5617","0.52887","0.5289" +"GO:0006725","cellular aromatic compound metabolic pro...",892,396,375.99,84,"0.0539","0.00478","0.5296" +"GO:0140014","mitotic nuclear division",24,11,10.12,767,"0.4328","0.53025","0.5302" +"GO:0019220","regulation of phosphate metabolic proces...",63,26,26.56,1143,"0.6049","0.53029","0.5303" +"GO:0048583","regulation of response to stimulus",193,85,81.35,470,"0.3162","0.53099","0.5310" +"GO:0042303","molting cycle",5,3,2.11,545,"0.3551","0.53154","0.5315" +"GO:0045637","regulation of myeloid cell differentiati...",5,3,2.11,546,"0.3551","0.53154","0.5315" +"GO:0007369","gastrulation",18,9,7.59,475,"0.3279","0.53234","0.5323" +"GO:0010171","body morphogenesis",3,0,1.26,2770,"1.0000","0.53279","0.5328" +"GO:0001816","cytokine production",18,7,7.59,1330,"0.6947","0.53357","0.5336" +"GO:0009649","entrainment of circadian clock",3,2,1.26,700,"0.3832","0.53606","0.5361" +"GO:0070201","regulation of establishment of protein l...",33,10,13.91,2522,"0.9434","0.53712","0.5371" +"GO:0048639","positive regulation of developmental gro...",5,2,2.11,1383,"0.6994","0.53777","0.5378" +"GO:0060041","retina development in camera-type eye",16,4,6.74,2559,"0.9544","0.53785","0.5379" +"GO:1990542","mitochondrial transmembrane transport",13,6,5.48,853,"0.4894","0.53849","0.5385" +"GO:0007399","nervous system development",120,53,50.58,548,"0.3570","0.53855","0.5386" +"GO:0006541","glutamine metabolic process",3,1,1.26,1739,"0.8066","0.53932","0.5393" +"GO:0010458","exit from mitosis",3,1,1.26,1740,"0.8066","0.53958","0.5396" +"GO:0009057","macromolecule catabolic process",159,72,67.02,384,"0.2288","0.24076","0.5396" +"GO:0003018","vascular process in circulatory system",4,2,1.69,1031,"0.5617","0.54018","0.5402" +"GO:0060236","regulation of mitotic spindle organizati...",4,2,1.69,1032,"0.5617","0.54018","0.5402" +"GO:0090224","regulation of spindle organization",4,2,1.69,1033,"0.5617","0.54018","0.5402" +"GO:0090307","mitotic spindle assembly",4,2,1.69,1034,"0.5617","0.54018","0.5402" +"GO:0051348","negative regulation of transferase activ...",9,3,3.79,1945,"0.8069","0.54045","0.5404" +"GO:0009891","positive regulation of biosynthetic proc...",70,30,29.51,861,"0.4981","0.54046","0.5405" +"GO:0002683","negative regulation of immune system pro...",7,4,2.95,502,"0.3323","0.54071","0.5407" +"GO:0008643","carbohydrate transport",7,2,2.95,2112,"0.8681","0.54071","0.5407" +"GO:0032868","response to insulin",7,1,2.95,2655,"0.9784","0.54071","0.5407" +"GO:0006379","mRNA cleavage",7,3,2.95,1185,"0.6262","0.54203","0.5420" +"GO:0030162","regulation of proteolysis",37,17,15.6,573,"0.3782","0.54266","0.5427" +"GO:0046700","heterocycle catabolic process",61,25,25.71,1165,"0.6223","0.54268","0.5427" +"GO:1902229","regulation of intrinsic apoptotic signal...",4,2,1.69,1035,"0.5617","0.54280","0.5428" +"GO:0071852","fungal-type cell wall organization or bi...",3,1,1.26,1741,"0.8066","0.54335","0.5434" +"GO:0010942","positive regulation of cell death",27,13,11.38,477,"0.3280","0.54339","0.5434" +"GO:0042391","regulation of membrane potential",7,2,2.95,2113,"0.8681","0.54500","0.5450" +"GO:0043467","regulation of generation of precursor me...",7,2,2.95,2114,"0.8681","0.54500","0.5450" +"GO:0051960","regulation of nervous system development",35,15,14.75,952,"0.5311","0.54522","0.5452" +"GO:0070887","cellular response to chemical stimulus",117,50,49.32,843,"0.4842","0.19377","0.5466" +"GO:0006874","cellular calcium ion homeostasis",9,4,3.79,1088,"0.5709","0.54832","0.5483" +"GO:0006520","cellular amino acid metabolic process",59,25,24.87,953,"0.5365","0.54969","0.5497" +"GO:0001963","synaptic transmission, dopaminergic",3,1,1.26,1742,"0.8066","0.54991","0.5499" +"GO:0003073","regulation of systemic arterial blood pr...",3,1,1.26,1743,"0.8066","0.54991","0.5499" +"GO:0008217","regulation of blood pressure",3,1,1.26,1744,"0.8066","0.54991","0.5499" +"GO:0018958","phenol-containing compound metabolic pro...",3,1,1.26,1745,"0.8066","0.54991","0.5499" +"GO:0051494","negative regulation of cytoskeleton orga...",8,4,3.37,790,"0.4562","0.55147","0.5515" +"GO:0002009","morphogenesis of an epithelium",40,15,16.86,1601,"0.7755","0.55213","0.5521" +"GO:0090351","seedling development",3,1,1.26,1746,"0.8066","0.55294","0.5529" +"GO:0065003","protein-containing complex assembly",133,54,56.06,1313,"0.6763","0.55375","0.5538" +"GO:0098722","asymmetric stem cell division",7,4,2.95,503,"0.3323","0.55526","0.5553" +"GO:0007444","imaginal disc development",16,5,6.74,2182,"0.8739","0.55712","0.5571" +"GO:0006139","nucleobase-containing compound metabolic...",875,390,368.82,65,"0.0434","0.00552","0.5575" +"GO:0051124","synaptic growth at neuromuscular junctio...",8,3,3.37,1495,"0.7282","0.55767","0.5577" +"GO:0060993","kidney morphogenesis",4,2,1.69,1036,"0.5617","0.55767","0.5577" +"GO:0007622","rhythmic behavior",4,2,1.69,1037,"0.5617","0.55767","0.5577" +"GO:0006488","dolichol-linked oligosaccharide biosynth...",5,2,2.11,1384,"0.6994","0.55810","0.5581" +"GO:0019725","cellular homeostasis",51,24,21.5,426,"0.2818","0.55842","0.5584" +"GO:0017004","cytochrome complex assembly",3,1,1.26,1747,"0.8066","0.55851","0.5585" +"GO:0051173","positive regulation of nitrogen compound...",130,57,54.8,572,"0.3769","0.55854","0.5585" +"GO:0016482","cytosolic transport",20,9,8.43,838,"0.4826","0.55986","0.5599" +"GO:0031113","regulation of microtubule polymerization",5,3,2.11,547,"0.3551","0.55987","0.5599" +"GO:0051094","positive regulation of developmental pro...",49,20,20.65,1248,"0.6292","0.56054","0.5605" +"GO:0008285","negative regulation of cell proliferatio...",27,12,11.38,834,"0.4774","0.56149","0.5615" +"GO:0018230","peptidyl-L-cysteine S-palmitoylation",3,2,1.26,701,"0.3832","0.56256","0.5626" +"GO:0018231","peptidyl-S-diacylglycerol-L-cysteine bio...",3,2,1.26,702,"0.3832","0.56256","0.5626" +"GO:1903214","regulation of protein targeting to mitoc...",10,2,4.22,2614,"0.9655","0.56295","0.5629" +"GO:1903749","positive regulation of establishment of ...",10,2,4.22,2615,"0.9655","0.56295","0.5629" +"GO:1903955","positive regulation of protein targeting...",10,2,4.22,2616,"0.9655","0.56295","0.5629" +"GO:0043457","regulation of cellular respiration",4,1,1.69,2209,"0.8882","0.56381","0.5638" +"GO:0061418","regulation of transcription from RNA pol...",6,1,2.53,2583,"0.9627","0.56423","0.5642" +"GO:0003205","cardiac chamber development",6,2,2.53,1637,"0.7990","0.56531","0.5653" +"GO:0003231","cardiac ventricle development",6,2,2.53,1638,"0.7990","0.56531","0.5653" +"GO:0007472","wing disc morphogenesis",11,5,4.64,942,"0.5265","0.56578","0.5658" +"GO:0031122","cytoplasmic microtubule organization",4,2,1.69,1038,"0.5617","0.56645","0.5664" +"GO:0006278","RNA-dependent DNA biosynthetic process",3,1,1.26,1748,"0.8066","0.56686","0.5669" +"GO:0010803","regulation of tumor necrosis factor-medi...",3,2,1.26,703,"0.3832","0.56712","0.5671" +"GO:1903265","positive regulation of tumor necrosis fa...",3,2,1.26,704,"0.3832","0.56712","0.5671" +"GO:0016358","dendrite development",9,3,3.79,1946,"0.8069","0.56777","0.5678" +"GO:0050767","regulation of neurogenesis",32,14,13.49,860,"0.4946","0.56852","0.5685" +"GO:0045448","mitotic cell cycle, embryonic",3,1,1.26,1749,"0.8066","0.57042","0.5704" +"GO:0030901","midbrain development",4,2,1.69,1039,"0.5617","0.57084","0.5708" +"GO:0009301","snRNA transcription",3,1,1.26,1750,"0.8066","0.57270","0.5727" +"GO:0042795","snRNA transcription by RNA polymerase II",3,1,1.26,1751,"0.8066","0.57270","0.5727" +"GO:0098781","ncRNA transcription",3,1,1.26,1752,"0.8066","0.57270","0.5727" +"GO:0010498","proteasomal protein catabolic process",45,26,18.97,30,"0.0241","0.01867","0.5731" +"GO:0010970","transport along microtubule",14,7,5.9,562,"0.3684","0.57319","0.5732" +"GO:0030705","cytoskeleton-dependent intracellular tra...",14,7,5.9,563,"0.3684","0.57319","0.5732" +"GO:0051261","protein depolymerization",14,7,5.9,564,"0.3684","0.57319","0.5732" +"GO:0099111","microtubule-based transport",14,7,5.9,565,"0.3684","0.57319","0.5732" +"GO:0045732","positive regulation of protein catabolic...",13,6,5.48,854,"0.4894","0.57329","0.5733" +"GO:0006241","CTP biosynthetic process",3,2,1.26,705,"0.3832","0.57397","0.5740" +"GO:0009148","pyrimidine nucleoside triphosphate biosy...",3,2,1.26,706,"0.3832","0.57397","0.5740" +"GO:0009208","pyrimidine ribonucleoside triphosphate m...",3,2,1.26,707,"0.3832","0.57397","0.5740" +"GO:0009209","pyrimidine ribonucleoside triphosphate b...",3,2,1.26,708,"0.3832","0.57397","0.5740" +"GO:0009218","pyrimidine ribonucleotide metabolic proc...",3,2,1.26,709,"0.3832","0.57397","0.5740" +"GO:0009220","pyrimidine ribonucleotide biosynthetic p...",3,2,1.26,710,"0.3832","0.57397","0.5740" +"GO:0046036","CTP metabolic process",3,2,1.26,711,"0.3832","0.57397","0.5740" +"GO:0046132","pyrimidine ribonucleoside biosynthetic p...",3,2,1.26,712,"0.3832","0.57397","0.5740" +"GO:0046134","pyrimidine nucleoside biosynthetic proce...",3,2,1.26,713,"0.3832","0.57397","0.5740" +"GO:0010039","response to iron ion",7,2,2.95,2115,"0.8681","0.57518","0.5752" +"GO:0050796","regulation of insulin secretion",4,1,1.69,2210,"0.8882","0.57524","0.5752" +"GO:0002181","cytoplasmic translation",9,3,3.79,1947,"0.8069","0.57701","0.5770" +"GO:0051174","regulation of phosphorus metabolic proce...",64,26,26.98,1259,"0.6452","0.57796","0.5780" +"GO:0006434","seryl-tRNA aminoacylation",3,1,1.26,1753,"0.8066","0.57803","0.5780" +"GO:0007626","locomotory behavior",14,5,5.9,1593,"0.7738","0.57814","0.5781" +"GO:0006479","protein methylation",32,11,13.49,2067,"0.8595","0.57853","0.5785" +"GO:0008213","protein alkylation",32,11,13.49,2068,"0.8595","0.57853","0.5785" +"GO:0019439","aromatic compound catabolic process",60,25,25.29,1116,"0.5802","0.57925","0.5793" +"GO:0044270","cellular nitrogen compound catabolic pro...",60,25,25.29,1117,"0.5802","0.57925","0.5793" +"GO:0006334","nucleosome assembly",9,3,3.79,1948,"0.8069","0.57936","0.5794" +"GO:0034605","cellular response to heat",16,8,6.74,515,"0.3470","0.58002","0.5800" +"GO:0002062","chondrocyte differentiation",4,2,1.69,1040,"0.5617","0.58052","0.5805" +"GO:0018105","peptidyl-serine phosphorylation",4,2,1.69,1041,"0.5617","0.58052","0.5805" +"GO:0033135","regulation of peptidyl-serine phosphoryl...",4,2,1.69,1042,"0.5617","0.58052","0.5805" +"GO:0045214","sarcomere organization",4,1,1.69,2211,"0.8882","0.58052","0.5805" +"GO:0006352","DNA-templated transcription, initiation",27,12,11.38,835,"0.4774","0.58112","0.5811" +"GO:0045995","regulation of embryonic development",8,4,3.37,791,"0.4562","0.58130","0.5813" +"GO:0006998","nuclear envelope organization",4,2,1.69,1043,"0.5617","0.58140","0.5814" +"GO:0044773","mitotic DNA damage checkpoint",4,1,1.69,2212,"0.8882","0.58140","0.5814" +"GO:0044818","mitotic G2/M transition checkpoint",4,0,1.69,2771,"1.0000","0.58140","0.5814" +"GO:0051130","positive regulation of cellular componen...",81,34,34.14,966,"0.5561","0.58250","0.5825" +"GO:1901992","positive regulation of mitotic cell cycl...",3,2,1.26,714,"0.3832","0.58312","0.5831" +"GO:0006188","IMP biosynthetic process",3,1,1.26,1754,"0.8066","0.58363","0.5836" +"GO:0009994","oocyte differentiation",6,2,2.53,1639,"0.7990","0.58363","0.5836" +"GO:0010632","regulation of epithelial cell migration",6,2,2.53,1640,"0.7990","0.58363","0.5836" +"GO:0034332","adherens junction organization",6,3,2.53,904,"0.5003","0.58363","0.5836" +"GO:0034333","adherens junction assembly",6,3,2.53,905,"0.5003","0.58363","0.5836" +"GO:0034767","positive regulation of ion transmembrane...",6,3,2.53,906,"0.5003","0.58363","0.5836" +"GO:0043954","cellular component maintenance",6,2,2.53,1641,"0.7990","0.58363","0.5836" +"GO:1904064","positive regulation of cation transmembr...",6,3,2.53,907,"0.5003","0.58363","0.5836" +"GO:0052547","regulation of peptidase activity",10,5,4.22,756,"0.4216","0.58467","0.5847" +"GO:0048592","eye morphogenesis",28,13,11.8,727,"0.3909","0.58544","0.5854" +"GO:0090596","sensory organ morphogenesis",28,13,11.8,728,"0.3909","0.58544","0.5854" +"GO:0039528","cytoplasmic pattern recognition receptor...",3,1,1.26,1755,"0.8066","0.58591","0.5859" +"GO:0039529","RIG-I signaling pathway",3,1,1.26,1756,"0.8066","0.58591","0.5859" +"GO:0098586","cellular response to virus",3,1,1.26,1757,"0.8066","0.58591","0.5859" +"GO:0032527","protein exit from endoplasmic reticulum",6,3,2.53,908,"0.5003","0.58795","0.5879" +"GO:0051047","positive regulation of secretion",7,1,2.95,2656,"0.9784","0.58951","0.5895" +"GO:1903532","positive regulation of secretion by cell",7,1,2.95,2657,"0.9784","0.58951","0.5895" +"GO:0060322","head development",36,17,15.17,473,"0.3240","0.58981","0.5898" +"GO:2000249","regulation of actin cytoskeleton reorgan...",3,2,1.26,715,"0.3832","0.58998","0.5900" +"GO:0015908","fatty acid transport",6,2,2.53,1642,"0.7990","0.59047","0.5905" +"GO:0015909","long-chain fatty acid transport",6,2,2.53,1643,"0.7990","0.59047","0.5905" +"GO:0032309","icosanoid secretion",6,2,2.53,1644,"0.7990","0.59047","0.5905" +"GO:0046717","acid secretion",6,2,2.53,1645,"0.7990","0.59047","0.5905" +"GO:0050482","arachidonic acid secretion",6,2,2.53,1646,"0.7990","0.59047","0.5905" +"GO:0071715","icosanoid transport",6,2,2.53,1647,"0.7990","0.59047","0.5905" +"GO:1901571","fatty acid derivative transport",6,2,2.53,1648,"0.7990","0.59047","0.5905" +"GO:1903963","arachidonate transport",6,2,2.53,1649,"0.7990","0.59047","0.5905" +"GO:0042398","cellular modified amino acid biosyntheti...",3,2,1.26,716,"0.3832","0.59075","0.5907" +"GO:0006164","purine nucleotide biosynthetic process",14,4,5.9,2319,"0.9064","0.59182","0.5918" +"GO:0009152","purine ribonucleotide biosynthetic proce...",14,4,5.9,2320,"0.9064","0.59182","0.5918" +"GO:0070585","protein localization to mitochondrion",26,10,10.96,1482,"0.7170","0.59186","0.5919" +"GO:0072655","establishment of protein localization to...",26,10,10.96,1483,"0.7170","0.59186","0.5919" +"GO:0031124","mRNA 3'-end processing",8,3,3.37,1496,"0.7282","0.59253","0.5925" +"GO:0045292","mRNA cis splicing, via spliceosome",8,3,3.37,1497,"0.7282","0.59253","0.5925" +"GO:0043984","histone H4-K16 acetylation",4,2,1.69,1044,"0.5617","0.59374","0.5937" +"GO:0042157","lipoprotein metabolic process",22,9,9.27,1246,"0.6270","0.59447","0.5945" +"GO:0006497","protein lipidation",20,9,8.43,839,"0.4826","0.59538","0.5954" +"GO:0042158","lipoprotein biosynthetic process",20,9,8.43,840,"0.4826","0.59538","0.5954" +"GO:0006886","intracellular protein transport",127,56,53.53,549,"0.3573","0.59559","0.5956" +"GO:0007476","imaginal disc-derived wing morphogenesis",10,4,4.22,1292,"0.6705","0.59611","0.5961" +"GO:0035114","imaginal disc-derived appendage morphoge...",10,4,4.22,1293,"0.6705","0.59611","0.5961" +"GO:0035120","post-embryonic appendage morphogenesis",10,4,4.22,1294,"0.6705","0.59611","0.5961" +"GO:0048737","imaginal disc-derived appendage developm...",10,4,4.22,1295,"0.6705","0.59611","0.5961" +"GO:0001894","tissue homeostasis",10,3,4.22,2084,"0.8654","0.59807","0.5981" +"GO:0048367","shoot system development",7,1,2.95,2658,"0.9784","0.59884","0.5988" +"GO:0048640","negative regulation of developmental gro...",7,2,2.95,2116,"0.8681","0.59884","0.5988" +"GO:0006418","tRNA aminoacylation for protein translat...",30,13,12.65,932,"0.5176","0.60277","0.6028" +"GO:0043038","amino acid activation",30,13,12.65,933,"0.5176","0.60277","0.6028" +"GO:0043039","tRNA aminoacylation",30,13,12.65,934,"0.5176","0.60277","0.6028" +"GO:0021915","neural tube development",11,3,4.64,2330,"0.9077","0.60434","0.6043" +"GO:0006954","inflammatory response",8,4,3.37,792,"0.4562","0.60501","0.6050" +"GO:0071902","positive regulation of protein serine/th...",7,3,2.95,1186,"0.6262","0.60535","0.6053" +"GO:0090316","positive regulation of intracellular pro...",13,2,5.48,2700,"0.9916","0.60623","0.6062" +"GO:0033866","nucleoside bisphosphate biosynthetic pro...",3,1,1.26,1758,"0.8066","0.60628","0.6063" +"GO:0034030","ribonucleoside bisphosphate biosynthetic...",3,1,1.26,1759,"0.8066","0.60628","0.6063" +"GO:0034033","purine nucleoside bisphosphate biosynthe...",3,1,1.26,1760,"0.8066","0.60628","0.6063" +"GO:0045886","negative regulation of synaptic growth a...",4,2,1.69,1045,"0.5617","0.60697","0.6070" +"GO:0051964","negative regulation of synapse assembly",4,2,1.69,1046,"0.5617","0.60697","0.6070" +"GO:1904397","negative regulation of neuromuscular jun...",4,2,1.69,1047,"0.5617","0.60697","0.6070" +"GO:1905809","negative regulation of synapse organizat...",4,2,1.69,1048,"0.5617","0.60697","0.6070" +"GO:0010669","epithelial structure maintenance",3,1,1.26,1761,"0.8066","0.60730","0.6073" +"GO:0051149","positive regulation of muscle cell diffe...",3,1,1.26,1762,"0.8066","0.60730","0.6073" +"GO:0051155","positive regulation of striated muscle c...",3,1,1.26,1763,"0.8066","0.60730","0.6073" +"GO:0071711","basement membrane organization",3,1,1.26,1764,"0.8066","0.60730","0.6073" +"GO:1903053","regulation of extracellular matrix organ...",3,2,1.26,717,"0.3832","0.60730","0.6073" +"GO:0090598","male anatomical structure morphogenesis",3,0,1.26,2772,"1.0000","0.60730","0.6073" +"GO:0007398","ectoderm development",3,2,1.26,718,"0.3832","0.60806","0.6081" +"GO:0010668","ectodermal cell differentiation",3,2,1.26,719,"0.3832","0.60806","0.6081" +"GO:0006401","RNA catabolic process",42,17,17.7,1258,"0.6448","0.60908","0.6091" +"GO:0010563","negative regulation of phosphorus metabo...",22,8,9.27,1602,"0.7771","0.61013","0.6101" +"GO:0045936","negative regulation of phosphate metabol...",22,8,9.27,1603,"0.7771","0.61013","0.6101" +"GO:0097306","cellular response to alcohol",7,2,2.95,2117,"0.8681","0.61019","0.6102" +"GO:0072507","divalent inorganic cation homeostasis",12,6,5.06,738,"0.3929","0.61064","0.6106" +"GO:0033043","regulation of organelle organization",93,40,39.2,829,"0.4724","0.11552","0.6114" +"GO:0000028","ribosomal small subunit assembly",3,1,1.26,1765,"0.8066","0.61264","0.6126" +"GO:0007220","Notch receptor processing",4,1,1.69,2213,"0.8882","0.61315","0.6131" +"GO:0042692","muscle cell differentiation",15,5,6.32,2022,"0.8298","0.61380","0.6138" +"GO:0043068","positive regulation of programmed cell d...",23,11,9.69,552,"0.3631","0.61405","0.6140" +"GO:0016574","histone ubiquitination",9,4,3.79,1089,"0.5709","0.61540","0.6154" +"GO:0031570","DNA integrity checkpoint",15,6,6.32,1273,"0.6619","0.61551","0.6155" +"GO:0000956","nuclear-transcribed mRNA catabolic proce...",24,8,10.12,2072,"0.8619","0.61589","0.6159" +"GO:0002376","immune system process",81,38,34.14,377,"0.2210","0.61704","0.6170" +"GO:0033673","negative regulation of kinase activity",7,2,2.95,2118,"0.8681","0.61986","0.6199" +"GO:0007040","lysosome organization",12,6,5.06,739,"0.3929","0.62084","0.6208" +"GO:0080171","lytic vacuole organization",12,6,5.06,740,"0.3929","0.62084","0.6208" +"GO:0000122","negative regulation of transcription by ...",33,11,13.91,2199,"0.8878","0.62119","0.6212" +"GO:0015807","L-amino acid transport",6,3,2.53,909,"0.5003","0.62217","0.6222" +"GO:0035023","regulation of Rho protein signal transdu...",13,6,5.48,855,"0.4894","0.62423","0.6242" +"GO:0071310","cellular response to organic substance",100,44,42.15,724,"0.3887","0.20924","0.6247" +"GO:0048477","oogenesis",26,12,10.96,747,"0.4110","0.62555","0.6255" +"GO:0071363","cellular response to growth factor stimu...",27,13,11.38,478,"0.3280","0.62568","0.6257" +"GO:0030178","negative regulation of Wnt signaling pat...",11,5,4.64,943,"0.5265","0.62724","0.6272" +"GO:0045619","regulation of lymphocyte differentiation",5,2,2.11,1385,"0.6994","0.62823","0.6282" +"GO:0050829","defense response to Gram-negative bacter...",5,2,2.11,1386,"0.6994","0.62823","0.6282" +"GO:0051101","regulation of DNA binding",5,2,2.11,1387,"0.6994","0.62823","0.6282" +"GO:1902105","regulation of leukocyte differentiation",5,2,2.11,1388,"0.6994","0.62823","0.6282" +"GO:0002696","positive regulation of leukocyte activat...",5,2,2.11,1389,"0.6994","0.62941","0.6294" +"GO:0050806","positive regulation of synaptic transmis...",5,2,2.11,1390,"0.6994","0.62941","0.6294" +"GO:0050867","positive regulation of cell activation",5,2,2.11,1391,"0.6994","0.62941","0.6294" +"GO:0051251","positive regulation of lymphocyte activa...",5,2,2.11,1392,"0.6994","0.62941","0.6294" +"GO:0031668","cellular response to extracellular stimu...",15,4,6.32,2415,"0.9343","0.63011","0.6301" +"GO:0031669","cellular response to nutrient levels",15,4,6.32,2416,"0.9343","0.63011","0.6301" +"GO:0071496","cellular response to external stimulus",15,4,6.32,2417,"0.9343","0.63011","0.6301" +"GO:1900024","regulation of substrate adhesion-depende...",5,2,2.11,1393,"0.6994","0.63020","0.6302" +"GO:0001967","suckling behavior",4,2,1.69,1049,"0.5617","0.63078","0.6308" +"GO:0044089","positive regulation of cellular componen...",34,15,14.33,830,"0.4730","0.63083","0.6308" +"GO:0002263","cell activation involved in immune respo...",7,4,2.95,504,"0.3323","0.63203","0.6320" +"GO:0002366","leukocyte activation involved in immune ...",7,4,2.95,505,"0.3323","0.63203","0.6320" +"GO:0050906","detection of stimulus involved in sensor...",3,1,1.26,1766,"0.8066","0.63223","0.6322" +"GO:0050909","sensory perception of taste",3,1,1.26,1767,"0.8066","0.63223","0.6322" +"GO:0032388","positive regulation of intracellular tra...",16,3,6.74,2694,"0.9882","0.63304","0.6330" +"GO:0007041","lysosomal transport",15,8,6.32,409,"0.2664","0.63318","0.6332" +"GO:0006778","porphyrin-containing compound metabolic ...",6,2,2.53,1650,"0.7990","0.63512","0.6351" +"GO:1901605","alpha-amino acid metabolic process",18,7,7.59,1331,"0.6947","0.63577","0.6358" +"GO:0030073","insulin secretion",6,1,2.53,2584,"0.9627","0.63584","0.6358" +"GO:1904950","negative regulation of establishment of ...",8,4,3.37,793,"0.4562","0.63620","0.6362" +"GO:0007297","ovarian follicle cell migration",3,1,1.26,1768,"0.8066","0.63681","0.6368" +"GO:0007298","border follicle cell migration",3,1,1.26,1769,"0.8066","0.63681","0.6368" +"GO:0009260","ribonucleotide biosynthetic process",15,5,6.32,2023,"0.8298","0.63717","0.6372" +"GO:0046390","ribose phosphate biosynthetic process",15,5,6.32,2024,"0.8298","0.63717","0.6372" +"GO:0030029","actin filament-based process",53,24,22.34,566,"0.3701","0.63765","0.6377" +"GO:0010927","cellular component assembly involved in ...",9,2,3.79,2525,"0.9455","0.63818","0.6382" +"GO:0032259","methylation",58,21,24.45,2065,"0.8559","0.64044","0.6404" +"GO:0009226","nucleotide-sugar biosynthetic process",4,1,1.69,2214,"0.8882","0.64134","0.6413" +"GO:0000086","G2/M transition of mitotic cell cycle",12,4,5.06,1987,"0.8181","0.64171","0.6417" +"GO:0031032","actomyosin structure organization",18,8,7.59,925,"0.5115","0.64222","0.6422" +"GO:0034220","ion transmembrane transport",61,23,25.71,1696,"0.7995","0.64234","0.6423" +"GO:0006360","transcription by RNA polymerase I",4,2,1.69,1050,"0.5617","0.64310","0.6431" +"GO:0045664","regulation of neuron differentiation",23,10,9.69,949,"0.5284","0.64363","0.6436" +"GO:0031345","negative regulation of cell projection o...",6,1,2.53,2585,"0.9627","0.64446","0.6445" +"GO:0007569","cell aging",5,2,2.11,1394,"0.6994","0.64476","0.6448" +"GO:0008630","intrinsic apoptotic signaling pathway in...",5,2,2.11,1395,"0.6994","0.64476","0.6448" +"GO:0021537","telencephalon development",6,3,2.53,910,"0.5003","0.64554","0.6455" +"GO:0043393","regulation of protein binding",14,6,5.9,1121,"0.5802","0.64609","0.6461" +"GO:0043433","negative regulation of DNA-binding trans...",4,1,1.69,2215,"0.8882","0.64661","0.6466" +"GO:0048015","phosphatidylinositol-mediated signaling",5,2,2.11,1396,"0.6994","0.64771","0.6477" +"GO:0048017","inositol lipid-mediated signaling",5,2,2.11,1397,"0.6994","0.64771","0.6477" +"GO:0006672","ceramide metabolic process",3,0,1.26,2773,"1.0000","0.64924","0.6492" +"GO:0006687","glycosphingolipid metabolic process",3,0,1.26,2774,"1.0000","0.64924","0.6492" +"GO:0032102","negative regulation of response to exter...",5,2,2.11,1398,"0.6994","0.64987","0.6499" +"GO:0050731","positive regulation of peptidyl-tyrosine...",5,2,2.11,1399,"0.6994","0.64987","0.6499" +"GO:0050920","regulation of chemotaxis",5,2,2.11,1400,"0.6994","0.64987","0.6499" +"GO:0006089","lactate metabolic process",3,1,1.26,1770,"0.8066","0.65076","0.6508" +"GO:0051341","regulation of oxidoreductase activity",3,1,1.26,1771,"0.8066","0.65076","0.6508" +"GO:0007156","homophilic cell adhesion via plasma memb...",6,3,2.53,911,"0.5003","0.65091","0.6509" +"GO:0043281","regulation of cysteine-type endopeptidas...",8,4,3.37,794,"0.4562","0.65112","0.6511" +"GO:2000116","regulation of cysteine-type endopeptidas...",8,4,3.37,795,"0.4562","0.65112","0.6511" +"GO:0007351","tripartite regional subdivision",3,1,1.26,1772,"0.8066","0.65126","0.6513" +"GO:0008595","anterior/posterior axis specification, e...",3,1,1.26,1773,"0.8066","0.65126","0.6513" +"GO:0060828","regulation of canonical Wnt signaling pa...",14,6,5.9,1122,"0.5802","0.65149","0.6515" +"GO:0071478","cellular response to radiation",8,4,3.37,796,"0.4562","0.65237","0.6524" +"GO:0034968","histone lysine methylation",14,4,5.9,2321,"0.9064","0.65290","0.6529" +"GO:1901888","regulation of cell junction assembly",5,2,2.11,1401,"0.6994","0.65301","0.6530" +"GO:0007338","single fertilization",6,3,2.53,912,"0.5003","0.65306","0.6531" +"GO:0008356","asymmetric cell division",8,4,3.37,797,"0.4562","0.65361","0.6536" +"GO:0031344","regulation of cell projection organizati...",29,11,12.22,1540,"0.7405","0.65365","0.6537" +"GO:0120035","regulation of plasma membrane bounded ce...",29,11,12.22,1541,"0.7405","0.65365","0.6537" +"GO:1903034","regulation of response to wounding",4,2,1.69,1051,"0.5617","0.65451","0.6545" +"GO:1901699","cellular response to nitrogen compound",15,5,6.32,2025,"0.8298","0.65478","0.6548" +"GO:0042221","response to chemical",205,86,86.41,962,"0.5519","0.36730","0.6549" +"GO:0016050","vesicle organization",19,9,8.01,744,"0.4053","0.65565","0.6556" +"GO:0007167","enzyme linked receptor protein signaling...",40,18,16.86,748,"0.4154","0.65578","0.6558" +"GO:0048515","spermatid differentiation",20,7,8.43,1972,"0.8088","0.65581","0.6558" +"GO:0010675","regulation of cellular carbohydrate meta...",8,3,3.37,1498,"0.7282","0.65609","0.6561" +"GO:0046834","lipid phosphorylation",4,2,1.69,1052,"0.5617","0.65626","0.6563" +"GO:0046854","phosphatidylinositol phosphorylation",4,2,1.69,1053,"0.5617","0.65626","0.6563" +"GO:0097435","supramolecular fiber organization",50,23,21.08,507,"0.3383","0.65643","0.6564" +"GO:0006814","sodium ion transport",15,5,6.32,2026,"0.8298","0.65761","0.6576" +"GO:0060070","canonical Wnt signaling pathway",18,8,7.59,926,"0.5115","0.65777","0.6578" +"GO:0030149","sphingolipid catabolic process",4,0,1.69,2775,"1.0000","0.65976","0.6598" +"GO:0046466","membrane lipid catabolic process",4,0,1.69,2776,"1.0000","0.65976","0.6598" +"GO:0043200","response to amino acid",3,1,1.26,1774,"0.8066","0.66037","0.6604" +"GO:0046683","response to organophosphorus",3,2,1.26,720,"0.3832","0.66037","0.6604" +"GO:0051899","membrane depolarization",3,1,1.26,1775,"0.8066","0.66037","0.6604" +"GO:0071384","cellular response to corticosteroid stim...",3,1,1.26,1776,"0.8066","0.66037","0.6604" +"GO:0097327","response to antineoplastic agent",3,1,1.26,1777,"0.8066","0.66037","0.6604" +"GO:0060401","cytosolic calcium ion transport",3,1,1.26,1778,"0.8066","0.66062","0.6606" +"GO:0048865","stem cell fate commitment",3,1,1.26,1779,"0.8066","0.66340","0.6634" +"GO:0033013","tetrapyrrole metabolic process",7,2,2.95,2119,"0.8681","0.66439","0.6644" +"GO:0031935","regulation of chromatin silencing",5,2,2.11,1402,"0.6994","0.66476","0.6648" +"GO:0031936","negative regulation of chromatin silenci...",5,2,2.11,1403,"0.6994","0.66476","0.6648" +"GO:0060969","negative regulation of gene silencing",5,2,2.11,1404,"0.6994","0.66476","0.6648" +"GO:0010390","histone monoubiquitination",6,3,2.53,913,"0.5003","0.66486","0.6649" +"GO:0006888","ER to Golgi vesicle-mediated transport",20,7,8.43,1973,"0.8088","0.66523","0.6652" +"GO:0006811","ion transport",133,51,56.06,2043,"0.8416","0.66537","0.6654" +"GO:0007095","mitotic G2 DNA damage checkpoint",3,0,1.26,2777,"1.0000","0.66592","0.6659" +"GO:0031572","G2 DNA damage checkpoint",3,0,1.26,2778,"1.0000","0.66592","0.6659" +"GO:0070192","chromosome organization involved in meio...",3,0,1.26,2779,"1.0000","0.66592","0.6659" +"GO:0007584","response to nutrient",7,2,2.95,2120,"0.8681","0.66604","0.6660" +"GO:1901137","carbohydrate derivative biosynthetic pro...",85,33,35.83,1590,"0.7703","0.66749","0.6675" +"GO:0055001","muscle cell development",9,4,3.79,1090,"0.5709","0.66816","0.6682" +"GO:0006986","response to unfolded protein",19,12,8.01,82,"0.0527","0.10013","0.6685" +"GO:0007618","mating",3,2,1.26,721,"0.3832","0.66919","0.6692" +"GO:0010389","regulation of G2/M transition of mitotic...",9,3,3.79,1949,"0.8069","0.66947","0.6695" +"GO:0009893","positive regulation of metabolic process",154,66,64.91,823,"0.4592","0.66972","0.6697" +"GO:0030098","lymphocyte differentiation",9,3,3.79,1950,"0.8069","0.67063","0.6706" +"GO:0046661","male sex differentiation",8,2,3.37,2369,"0.9147","0.67093","0.6709" +"GO:0009267","cellular response to starvation",14,4,5.9,2322,"0.9064","0.67140","0.6714" +"GO:0007528","neuromuscular junction development",10,3,4.22,2085,"0.8654","0.67182","0.6718" +"GO:0001101","response to acid chemical",12,5,5.06,1156,"0.6219","0.67260","0.6726" +"GO:0016331","morphogenesis of embryonic epithelium",12,4,5.06,1988,"0.8181","0.67260","0.6726" +"GO:0006879","cellular iron ion homeostasis",5,1,2.11,2434,"0.9354","0.67276","0.6728" +"GO:0045185","maintenance of protein location",6,3,2.53,914,"0.5003","0.67377","0.6738" +"GO:0048699","generation of neurons",87,37,36.67,929,"0.5129","0.67481","0.6748" +"GO:0051972","regulation of telomerase activity",4,1,1.69,2216,"0.8882","0.67548","0.6755" +"GO:0006090","pyruvate metabolic process",3,1,1.26,1780,"0.8066","0.67548","0.6755" +"GO:0006096","glycolytic process",3,1,1.26,1781,"0.8066","0.67548","0.6755" +"GO:0006754","ATP biosynthetic process",3,1,1.26,1782,"0.8066","0.67548","0.6755" +"GO:0006757","ATP generation from ADP",3,1,1.26,1783,"0.8066","0.67548","0.6755" +"GO:0010677","negative regulation of cellular carbohyd...",3,1,1.26,1784,"0.8066","0.67548","0.6755" +"GO:0016052","carbohydrate catabolic process",3,1,1.26,1785,"0.8066","0.67548","0.6755" +"GO:0042866","pyruvate biosynthetic process",3,1,1.26,1786,"0.8066","0.67548","0.6755" +"GO:0045912","negative regulation of carbohydrate meta...",3,1,1.26,1787,"0.8066","0.67548","0.6755" +"GO:0045980","negative regulation of nucleotide metabo...",3,1,1.26,1788,"0.8066","0.67548","0.6755" +"GO:0051193","regulation of cofactor metabolic process",3,1,1.26,1789,"0.8066","0.67548","0.6755" +"GO:1900543","negative regulation of purine nucleotide...",3,1,1.26,1790,"0.8066","0.67548","0.6755" +"GO:1903579","negative regulation of ATP metabolic pro...",3,1,1.26,1791,"0.8066","0.67548","0.6755" +"GO:0036445","neuronal stem cell division",3,1,1.26,1792,"0.8066","0.67624","0.6762" +"GO:0048103","somatic stem cell division",3,1,1.26,1793,"0.8066","0.67624","0.6762" +"GO:0055057","neuroblast division",3,1,1.26,1794,"0.8066","0.67624","0.6762" +"GO:0055059","asymmetric neuroblast division",3,1,1.26,1795,"0.8066","0.67624","0.6762" +"GO:0007254","JNK cascade",11,4,4.64,1554,"0.7527","0.67896","0.6790" +"GO:0034641","cellular nitrogen compound metabolic pro...",1053,442,443.85,1113,"0.5739","0.10222","0.6802" +"GO:0044843","cell cycle G1/S phase transition",16,8,6.74,516,"0.3470","0.68042","0.6804" +"GO:0071396","cellular response to lipid",29,9,12.22,2394,"0.9225","0.68052","0.6805" +"GO:0010033","response to organic substance",139,61,58.59,555,"0.3669","0.30292","0.6806" +"GO:0046483","heterocycle metabolic process",892,394,375.99,97,"0.0744","0.01032","0.6821" +"GO:0009048","dosage compensation by inactivation of X...",3,1,1.26,1796,"0.8066","0.68225","0.6823" +"GO:0009268","response to pH",4,1,1.69,2217,"0.8882","0.68243","0.6824" +"GO:0051235","maintenance of location",13,6,5.48,856,"0.4894","0.68337","0.6834" +"GO:0010769","regulation of cell morphogenesis involve...",10,3,4.22,2086,"0.8654","0.68338","0.6834" +"GO:0008406","gonad development",14,5,5.9,1594,"0.7738","0.68374","0.6837" +"GO:0051017","actin filament bundle assembly",10,3,4.22,2087,"0.8654","0.68530","0.6853" +"GO:0043968","histone H2A acetylation",3,1,1.26,1797,"0.8066","0.68551","0.6855" +"GO:0007229","integrin-mediated signaling pathway",7,2,2.95,2121,"0.8681","0.68562","0.6856" +"GO:0030217","T cell differentiation",7,2,2.95,2122,"0.8681","0.68562","0.6856" +"GO:0051272","positive regulation of cellular componen...",17,7,7.17,1169,"0.6235","0.68572","0.6857" +"GO:2000147","positive regulation of cell motility",17,7,7.17,1170,"0.6235","0.68572","0.6857" +"GO:0002793","positive regulation of peptide secretion",5,1,2.11,2435,"0.9354","0.68578","0.6858" +"GO:0046883","regulation of hormone secretion",5,1,2.11,2436,"0.9354","0.68578","0.6858" +"GO:0090276","regulation of peptide hormone secretion",5,1,2.11,2437,"0.9354","0.68578","0.6858" +"GO:0036498","IRE1-mediated unfolded protein response",3,2,1.26,722,"0.3832","0.68726","0.6873" +"GO:0042220","response to cocaine",3,2,1.26,723,"0.3832","0.68726","0.6873" +"GO:0010608","posttranscriptional regulation of gene e...",50,23,21.08,508,"0.3383","0.68774","0.6877" +"GO:0022411","cellular component disassembly",39,15,16.44,1538,"0.7348","0.68945","0.6894" +"GO:2001243","negative regulation of intrinsic apoptot...",10,5,4.22,757,"0.4216","0.69023","0.6902" +"GO:0016255","attachment of GPI anchor to protein",3,1,1.26,1798,"0.8066","0.69050","0.6905" +"GO:0008045","motor neuron axon guidance",5,2,2.11,1405,"0.6994","0.69158","0.6916" +"GO:0048793","pronephros development",5,2,2.11,1406,"0.6994","0.69158","0.6916" +"GO:0034655","nucleobase-containing compound catabolic...",57,24,24.03,965,"0.5540","0.69244","0.6924" +"GO:0048584","positive regulation of response to stimu...",87,38,36.67,759,"0.4255","0.69274","0.6927" +"GO:0042982","amyloid precursor protein metabolic proc...",3,0,1.26,2780,"1.0000","0.69300","0.6930" +"GO:0042987","amyloid precursor protein catabolic proc...",3,0,1.26,2781,"1.0000","0.69300","0.6930" +"GO:0060042","retina morphogenesis in camera-type eye",8,3,3.37,1499,"0.7282","0.69304","0.6930" +"GO:0010771","negative regulation of cell morphogenesi...",5,1,2.11,2438,"0.9354","0.69351","0.6935" +"GO:0030521","androgen receptor signaling pathway",5,1,2.11,2439,"0.9354","0.69351","0.6935" +"GO:0044314","protein K27-linked ubiquitination",5,2,2.11,1407,"0.6994","0.69351","0.6935" +"GO:0048675","axon extension",5,1,2.11,2440,"0.9354","0.69351","0.6935" +"GO:0050770","regulation of axonogenesis",5,1,2.11,2441,"0.9354","0.69351","0.6935" +"GO:0061387","regulation of extent of cell growth",5,1,2.11,2442,"0.9354","0.69351","0.6935" +"GO:0085020","protein K6-linked ubiquitination",5,2,2.11,1408,"0.6994","0.69351","0.6935" +"GO:0090567","reproductive shoot system development",5,1,2.11,2443,"0.9354","0.69351","0.6935" +"GO:0008283","cell proliferation",77,31,32.46,1312,"0.6747","0.69375","0.6937" +"GO:1901565","organonitrogen compound catabolic proces...",140,68,59.01,91,"0.0685","0.03742","0.6943" +"GO:0007264","small GTPase mediated signal transductio...",45,17,18.97,1591,"0.7725","0.69528","0.6953" +"GO:0035220","wing disc development",12,5,5.06,1157,"0.6219","0.69566","0.6957" +"GO:0007005","mitochondrion organization",59,19,24.87,2568,"0.9569","0.69630","0.6963" +"GO:0009790","embryo development",90,36,37.94,1465,"0.7000","0.69638","0.6964" +"GO:0071704","organic substance metabolic process",1763,737,743.12,1467,"0.7031","0.30226","0.6967" +"GO:0015914","phospholipid transport",3,1,1.26,1799,"0.8066","0.69773","0.6977" +"GO:0006353","DNA-templated transcription, termination",4,1,1.69,2218,"0.8882","0.69971","0.6997" +"GO:0006369","termination of RNA polymerase II transcr...",4,1,1.69,2219,"0.8882","0.69971","0.6997" +"GO:0016571","histone methylation",18,6,7.59,2041,"0.8412","0.70168","0.7017" +"GO:1901568","fatty acid derivative metabolic process",6,1,2.53,2586,"0.9627","0.70204","0.7020" +"GO:0044238","primary metabolic process",1709,716,720.36,1260,"0.6508","0.30835","0.7029" +"GO:1902531","regulation of intracellular signal trans...",77,32,32.46,1127,"0.5863","0.70364","0.7036" +"GO:0034219","carbohydrate transmembrane transport",4,1,1.69,2220,"0.8882","0.70400","0.7040" +"GO:0050714","positive regulation of protein secretion",4,1,1.69,2221,"0.8882","0.70400","0.7040" +"GO:0050727","regulation of inflammatory response",4,1,1.69,2222,"0.8882","0.70400","0.7040" +"GO:0002831","regulation of response to biotic stimulu...",4,0,1.69,2782,"1.0000","0.70400","0.7040" +"GO:0051783","regulation of nuclear division",12,4,5.06,1989,"0.8181","0.70411","0.7041" +"GO:0048565","digestive tract development",7,2,2.95,2123,"0.8681","0.70534","0.7053" +"GO:0055123","digestive system development",7,2,2.95,2124,"0.8681","0.70534","0.7053" +"GO:0031102","neuron projection regeneration",3,1,1.26,1800,"0.8066","0.70615","0.7062" +"GO:0031103","axon regeneration",3,1,1.26,1801,"0.8066","0.70615","0.7062" +"GO:0000082","G1/S transition of mitotic cell cycle",15,7,6.32,818,"0.4577","0.70664","0.7066" +"GO:0030900","forebrain development",15,7,6.32,819,"0.4577","0.70664","0.7066" +"GO:0006643","membrane lipid metabolic process",17,4,7.17,2630,"0.9687","0.70709","0.7071" +"GO:0070848","response to growth factor",28,13,11.8,729,"0.3909","0.70768","0.7077" +"GO:0035239","tube morphogenesis",43,15,18.12,2177,"0.8710","0.70804","0.7080" +"GO:0032101","regulation of response to external stimu...",13,5,5.48,1473,"0.7047","0.70815","0.7081" +"GO:0031325","positive regulation of cellular metaboli...",144,61,60.7,928,"0.5120","0.70969","0.7097" +"GO:0001649","osteoblast differentiation",5,1,2.11,2444,"0.9354","0.71023","0.7102" +"GO:0030279","negative regulation of ossification",5,2,2.11,1409,"0.6994","0.71023","0.7102" +"GO:0045667","regulation of osteoblast differentiation",5,1,2.11,2445,"0.9354","0.71023","0.7102" +"GO:0033962","cytoplasmic mRNA processing body assembl...",5,2,2.11,1410,"0.6994","0.71080","0.7108" +"GO:0031099","regeneration",11,4,4.64,1555,"0.7527","0.71135","0.7114" +"GO:0016049","cell growth",27,12,11.38,836,"0.4774","0.71169","0.7117" +"GO:0042067","establishment of ommatidial planar polar...",4,2,1.69,1054,"0.5617","0.71171","0.7117" +"GO:1902806","regulation of cell cycle G1/S phase tran...",4,2,1.69,1055,"0.5617","0.71171","0.7117" +"GO:2000045","regulation of G1/S transition of mitotic...",4,2,1.69,1056,"0.5617","0.71171","0.7117" +"GO:0016070","RNA metabolic process",673,296,283.68,218,"0.1442","0.14555","0.7133" +"GO:0015980","energy derivation by oxidation of organi...",13,3,5.48,2572,"0.9582","0.71384","0.7138" +"GO:0044706","multi-multicellular organism process",13,6,5.48,857,"0.4894","0.71384","0.7138" +"GO:1901360","organic cyclic compound metabolic proces...",906,399,381.89,134,"0.0863","0.01578","0.7140" +"GO:0043410","positive regulation of MAPK cascade",12,4,5.06,1990,"0.8181","0.71449","0.7145" +"GO:0060359","response to ammonium ion",7,4,2.95,506,"0.3323","0.71488","0.7149" +"GO:0030335","positive regulation of cell migration",15,6,6.32,1274,"0.6619","0.71702","0.7170" +"GO:0045926","negative regulation of growth",17,7,7.17,1171,"0.6235","0.71715","0.7171" +"GO:0035075","response to ecdysone",3,1,1.26,1802,"0.8066","0.71724","0.7172" +"GO:0071390","cellular response to ecdysone",3,1,1.26,1803,"0.8066","0.71724","0.7172" +"GO:0034599","cellular response to oxidative stress",20,9,8.43,841,"0.4826","0.71826","0.7183" +"GO:0050900","leukocyte migration",7,3,2.95,1187,"0.6262","0.71842","0.7184" +"GO:0034976","response to endoplasmic reticulum stress",31,17,13.07,162,"0.1052","0.08265","0.7185" +"GO:1990778","protein localization to cell periphery",11,4,4.64,1556,"0.7527","0.71881","0.7188" +"GO:0051648","vesicle localization",15,7,6.32,820,"0.4577","0.71933","0.7193" +"GO:0051650","establishment of vesicle localization",15,7,6.32,821,"0.4577","0.71933","0.7193" +"GO:0006612","protein targeting to membrane",11,4,4.64,1557,"0.7527","0.72009","0.7201" +"GO:0006595","polyamine metabolic process",3,0,1.26,2783,"1.0000","0.72116","0.7212" +"GO:0006596","polyamine biosynthetic process",3,0,1.26,2784,"1.0000","0.72116","0.7212" +"GO:0009309","amine biosynthetic process",3,0,1.26,2785,"1.0000","0.72116","0.7212" +"GO:0042401","cellular biogenic amine biosynthetic pro...",3,0,1.26,2786,"1.0000","0.72116","0.7212" +"GO:0001701","in utero embryonic development",27,6,11.38,2699,"0.9915","0.72131","0.7213" +"GO:0016999","antibiotic metabolic process",8,1,3.37,2690,"0.9876","0.72211","0.7221" +"GO:0035556","intracellular signal transduction",153,63,64.49,1249,"0.6300","0.72246","0.7225" +"GO:0002252","immune effector process",26,13,10.96,411,"0.2676","0.72369","0.7237" +"GO:0007286","spermatid development",19,7,8.01,1576,"0.7565","0.72437","0.7244" +"GO:0071559","response to transforming growth factor b...",17,8,7.17,763,"0.4299","0.72437","0.7244" +"GO:0071560","cellular response to transforming growth...",17,8,7.17,764,"0.4299","0.72437","0.7244" +"GO:0055065","metal ion homeostasis",21,7,8.85,2053,"0.8519","0.72497","0.7250" +"GO:0003008","system process",70,28,29.51,1319,"0.6868","0.72636","0.7264" +"GO:0051168","nuclear export",17,6,7.17,1618,"0.7923","0.72694","0.7269" +"GO:0032943","mononuclear cell proliferation",3,1,1.26,1804,"0.8066","0.72727","0.7273" +"GO:0032944","regulation of mononuclear cell prolifera...",3,1,1.26,1805,"0.8066","0.72727","0.7273" +"GO:0042098","T cell proliferation",3,1,1.26,1806,"0.8066","0.72727","0.7273" +"GO:0042129","regulation of T cell proliferation",3,1,1.26,1807,"0.8066","0.72727","0.7273" +"GO:0046651","lymphocyte proliferation",3,1,1.26,1808,"0.8066","0.72727","0.7273" +"GO:0050670","regulation of lymphocyte proliferation",3,1,1.26,1809,"0.8066","0.72727","0.7273" +"GO:0070661","leukocyte proliferation",3,1,1.26,1810,"0.8066","0.72727","0.7273" +"GO:0070663","regulation of leukocyte proliferation",3,1,1.26,1811,"0.8066","0.72727","0.7273" +"GO:0045017","glycerolipid biosynthetic process",20,6,8.43,2353,"0.9108","0.72738","0.7274" +"GO:0009566","fertilization",9,4,3.79,1091,"0.5709","0.72770","0.7277" +"GO:0002250","adaptive immune response",8,4,3.37,798,"0.4562","0.72809","0.7281" +"GO:0002449","lymphocyte mediated immunity",8,4,3.37,799,"0.4562","0.72809","0.7281" +"GO:0002460","adaptive immune response based on somati...",8,4,3.37,800,"0.4562","0.72809","0.7281" +"GO:0002703","regulation of leukocyte mediated immunit...",8,4,3.37,801,"0.4562","0.72809","0.7281" +"GO:0002705","positive regulation of leukocyte mediate...",8,4,3.37,802,"0.4562","0.72809","0.7281" +"GO:0002706","regulation of lymphocyte mediated immuni...",8,4,3.37,803,"0.4562","0.72809","0.7281" +"GO:0002708","positive regulation of lymphocyte mediat...",8,4,3.37,804,"0.4562","0.72809","0.7281" +"GO:0002819","regulation of adaptive immune response",8,4,3.37,805,"0.4562","0.72809","0.7281" +"GO:0002821","positive regulation of adaptive immune r...",8,4,3.37,806,"0.4562","0.72809","0.7281" +"GO:0002822","regulation of adaptive immune response b...",8,4,3.37,807,"0.4562","0.72809","0.7281" +"GO:0002824","positive regulation of adaptive immune r...",8,4,3.37,808,"0.4562","0.72809","0.7281" +"GO:0008088","axo-dendritic transport",8,4,3.37,809,"0.4562","0.72809","0.7281" +"GO:0050766","positive regulation of phagocytosis",8,4,3.37,810,"0.4562","0.72809","0.7281" +"GO:1903313","positive regulation of mRNA metabolic pr...",8,4,3.37,811,"0.4562","0.72809","0.7281" +"GO:0009166","nucleotide catabolic process",9,4,3.79,1092,"0.5709","0.72840","0.7284" +"GO:0038202","TORC1 signaling",4,2,1.69,1057,"0.5617","0.72868","0.7287" +"GO:1903432","regulation of TORC1 signaling",4,2,1.69,1058,"0.5617","0.72868","0.7287" +"GO:0006402","mRNA catabolic process",35,14,14.75,1279,"0.6640","0.72937","0.7294" +"GO:0009452","7-methylguanosine RNA capping",3,1,1.26,1812,"0.8066","0.72946","0.7295" +"GO:0036260","RNA capping",3,1,1.26,1813,"0.8066","0.72946","0.7295" +"GO:0030150","protein import into mitochondrial matrix",4,2,1.69,1059,"0.5617","0.72952","0.7295" +"GO:0031397","negative regulation of protein ubiquitin...",5,2,2.11,1411,"0.6994","0.72997","0.7300" +"GO:0048511","rhythmic process",21,9,8.85,968,"0.5572","0.73143","0.7314" +"GO:0007219","Notch signaling pathway",14,4,5.9,2323,"0.9064","0.73160","0.7316" +"GO:0008584","male gonad development",5,2,2.11,1412,"0.6994","0.73279","0.7328" +"GO:0046546","development of primary male sexual chara...",5,2,2.11,1413,"0.6994","0.73279","0.7328" +"GO:0001933","negative regulation of protein phosphory...",13,4,5.48,2155,"0.8685","0.73301","0.7330" +"GO:0019933","cAMP-mediated signaling",5,2,2.11,1414,"0.6994","0.73392","0.7339" +"GO:0019935","cyclic-nucleotide-mediated signaling",5,2,2.11,1415,"0.6994","0.73392","0.7339" +"GO:0002275","myeloid cell activation involved in immu...",5,2,2.11,1416,"0.6994","0.73448","0.7345" +"GO:0002283","neutrophil activation involved in immune...",5,2,2.11,1417,"0.6994","0.73448","0.7345" +"GO:0002444","myeloid leukocyte mediated immunity",5,2,2.11,1418,"0.6994","0.73448","0.7345" +"GO:0002446","neutrophil mediated immunity",5,2,2.11,1419,"0.6994","0.73448","0.7345" +"GO:0018198","peptidyl-cysteine modification",5,2,2.11,1420,"0.6994","0.73448","0.7345" +"GO:0036230","granulocyte activation",5,2,2.11,1421,"0.6994","0.73448","0.7345" +"GO:0042119","neutrophil activation",5,2,2.11,1422,"0.6994","0.73448","0.7345" +"GO:0043299","leukocyte degranulation",5,2,2.11,1423,"0.6994","0.73448","0.7345" +"GO:0043312","neutrophil degranulation",5,2,2.11,1424,"0.6994","0.73448","0.7345" +"GO:0007265","Ras protein signal transduction",24,10,10.12,1140,"0.5967","0.73454","0.7345" +"GO:0002244","hematopoietic progenitor cell differenti...",3,1,1.26,1814,"0.8066","0.73456","0.7346" +"GO:0048437","floral organ development",3,1,1.26,1815,"0.8066","0.73456","0.7346" +"GO:0048438","floral whorl development",3,1,1.26,1816,"0.8066","0.73456","0.7346" +"GO:0048443","stamen development",3,1,1.26,1817,"0.8066","0.73456","0.7346" +"GO:0048466","androecium development",3,1,1.26,1818,"0.8066","0.73456","0.7346" +"GO:0048827","phyllome development",3,1,1.26,1819,"0.8066","0.73456","0.7346" +"GO:0000054","ribosomal subunit export from nucleus",3,1,1.26,1820,"0.8066","0.73504","0.7350" +"GO:0000055","ribosomal large subunit export from nucl...",3,1,1.26,1821,"0.8066","0.73504","0.7350" +"GO:0033750","ribosome localization",3,1,1.26,1822,"0.8066","0.73504","0.7350" +"GO:0071428","rRNA-containing ribonucleoprotein comple...",3,1,1.26,1823,"0.8066","0.73504","0.7350" +"GO:0042246","tissue regeneration",6,2,2.53,1651,"0.7990","0.73568","0.7357" +"GO:0006664","glycolipid metabolic process",13,4,5.48,2156,"0.8685","0.73616","0.7362" +"GO:1903509","liposaccharide metabolic process",13,4,5.48,2157,"0.8685","0.73616","0.7362" +"GO:0009967","positive regulation of signal transducti...",58,22,24.45,1612,"0.7850","0.73723","0.7372" +"GO:0045333","cellular respiration",12,3,5.06,2503,"0.9375","0.73794","0.7379" +"GO:0042326","negative regulation of phosphorylation",19,6,8.01,2188,"0.8802","0.73955","0.7396" +"GO:0045165","cell fate commitment",19,7,8.01,1577,"0.7565","0.73955","0.7396" +"GO:0009743","response to carbohydrate",4,1,1.69,2223,"0.8882","0.73959","0.7396" +"GO:0055080","cation homeostasis",22,7,9.27,2194,"0.8867","0.74111","0.7411" +"GO:0098771","inorganic ion homeostasis",22,7,9.27,2195,"0.8867","0.74111","0.7411" +"GO:1901659","glycosyl compound biosynthetic process",7,3,2.95,1188,"0.6262","0.74135","0.7414" +"GO:0040007","growth",70,27,29.51,1587,"0.7685","0.74139","0.7414" +"GO:2000243","positive regulation of reproductive proc...",6,1,2.53,2587,"0.9627","0.74149","0.7415" +"GO:0046330","positive regulation of JNK cascade",5,2,2.11,1425,"0.6994","0.74252","0.7425" +"GO:0034629","cellular protein-containing complex loca...",3,1,1.26,1824,"0.8066","0.74277","0.7428" +"GO:0051146","striated muscle cell differentiation",13,4,5.48,2158,"0.8685","0.74277","0.7428" +"GO:0006821","chloride transport",3,0,1.26,2787,"1.0000","0.74373","0.7437" +"GO:0055002","striated muscle cell development",8,3,3.37,1500,"0.7282","0.74469","0.7447" +"GO:0006690","icosanoid metabolic process",5,0,2.11,2788,"1.0000","0.74476","0.7448" +"GO:0033559","unsaturated fatty acid metabolic process",5,0,2.11,2789,"1.0000","0.74476","0.7448" +"GO:0009247","glycolipid biosynthetic process",9,3,3.79,1951,"0.8069","0.74503","0.7450" +"GO:2000278","regulation of DNA biosynthetic process",5,1,2.11,2446,"0.9354","0.74531","0.7453" +"GO:0046474","glycerophospholipid biosynthetic process",18,5,7.59,2408,"0.9336","0.74605","0.7461" +"GO:0007549","dosage compensation",4,1,1.69,2224,"0.8882","0.74626","0.7463" +"GO:0030516","regulation of axon extension",4,1,1.69,2225,"0.8882","0.74626","0.7463" +"GO:0046328","regulation of JNK cascade",8,3,3.37,1501,"0.7282","0.74704","0.7470" +"GO:0003382","epithelial cell morphogenesis",4,1,1.69,2226,"0.8882","0.74709","0.7471" +"GO:0040017","positive regulation of locomotion",22,8,9.27,1604,"0.7771","0.74734","0.7473" +"GO:0048608","reproductive structure development",38,10,16.02,2686,"0.9864","0.74739","0.7474" +"GO:0040008","regulation of growth",38,14,16.02,1626,"0.7966","0.74766","0.7477" +"GO:0016242","negative regulation of macroautophagy",4,1,1.69,2227,"0.8882","0.74792","0.7479" +"GO:0043243","positive regulation of protein complex d...",4,1,1.69,2228,"0.8882","0.74792","0.7479" +"GO:0097352","autophagosome maturation",4,0,1.69,2790,"1.0000","0.74792","0.7479" +"GO:0015850","organic hydroxy compound transport",8,2,3.37,2370,"0.9147","0.74822","0.7482" +"GO:0032870","cellular response to hormone stimulus",31,11,13.07,2016,"0.8257","0.74854","0.7485" +"GO:0008361","regulation of cell size",9,1,3.79,2704,"0.9928","0.74918","0.7492" +"GO:0030036","actin cytoskeleton organization",52,23,21.92,765,"0.4319","0.74925","0.7492" +"GO:0071824","protein-DNA complex subunit organization",20,5,8.43,2624,"0.9666","0.75062","0.7506" +"GO:0002274","myeloid leukocyte activation",6,2,2.53,1652,"0.7990","0.75065","0.7506" +"GO:0032368","regulation of lipid transport",3,1,1.26,1825,"0.8066","0.75210","0.7521" +"GO:0033273","response to vitamin",3,1,1.26,1826,"0.8066","0.75210","0.7521" +"GO:0061311","cell surface receptor signaling pathway ...",3,1,1.26,1827,"0.8066","0.75210","0.7521" +"GO:0051403","stress-activated MAPK cascade",13,4,5.48,2159,"0.8685","0.75211","0.7521" +"GO:0050801","ion homeostasis",23,8,9.69,2007,"0.8234","0.75282","0.7528" +"GO:0010286","heat acclimation",4,2,1.69,1060,"0.5617","0.75371","0.7537" +"GO:0030163","protein catabolic process",117,56,49.32,184,"0.1187","0.12438","0.7540" +"GO:0046916","cellular transition metal ion homeostasi...",7,1,2.95,2659,"0.9784","0.75421","0.7542" +"GO:0055072","iron ion homeostasis",7,1,2.95,2660,"0.9784","0.75421","0.7542" +"GO:0035306","positive regulation of dephosphorylation",3,1,1.26,1828,"0.8066","0.75472","0.7547" +"GO:0048729","tissue morphogenesis",44,17,18.55,1537,"0.7338","0.75550","0.7555" +"GO:0016477","cell migration",45,17,18.97,1592,"0.7725","0.75577","0.7558" +"GO:0007029","endoplasmic reticulum organization",10,2,4.22,2617,"0.9655","0.75582","0.7558" +"GO:0009791","post-embryonic development",36,11,15.17,2545,"0.9461","0.75618","0.7562" +"GO:0016310","phosphorylation",207,84,87.25,1480,"0.7078","0.75640","0.7564" +"GO:0008654","phospholipid biosynthetic process",27,9,11.38,2178,"0.8712","0.75731","0.7573" +"GO:0048468","cell development",118,50,49.74,930,"0.5163","0.75791","0.7579" +"GO:0006909","phagocytosis",18,8,7.59,927,"0.5115","0.75854","0.7585" +"GO:0061515","myeloid cell development",7,2,2.95,2125,"0.8681","0.75965","0.7596" +"GO:0010810","regulation of cell-substrate adhesion",6,3,2.53,915,"0.5003","0.75972","0.7597" +"GO:0065009","regulation of molecular function",129,51,54.38,1583,"0.7597","0.75981","0.7598" +"GO:0010467","gene expression",841,345,354.49,1630,"0.7987","0.47431","0.7598" +"GO:0198738","cell-cell signaling by wnt",36,16,15.17,777,"0.4526","0.76030","0.7603" +"GO:1903008","organelle disassembly",7,1,2.95,2661,"0.9784","0.76088","0.7609" +"GO:0034329","cell junction assembly",12,5,5.06,1158,"0.6219","0.76091","0.7609" +"GO:0040001","establishment of mitotic spindle localiz...",4,2,1.69,1061,"0.5617","0.76110","0.7611" +"GO:0045668","negative regulation of osteoblast differ...",4,1,1.69,2229,"0.8882","0.76110","0.7611" +"GO:0051293","establishment of spindle localization",4,2,1.69,1062,"0.5617","0.76110","0.7611" +"GO:0051653","spindle localization",4,2,1.69,1063,"0.5617","0.76110","0.7611" +"GO:0035195","gene silencing by miRNA",4,0,1.69,2791,"1.0000","0.76110","0.7611" +"GO:1900407","regulation of cellular response to oxida...",13,6,5.48,858,"0.4894","0.76135","0.7614" +"GO:0007308","oocyte construction",4,1,1.69,2230,"0.8882","0.76273","0.7627" +"GO:0007309","oocyte axis specification",4,1,1.69,2231,"0.8882","0.76273","0.7627" +"GO:0051606","detection of stimulus",7,2,2.95,2126,"0.8681","0.76305","0.7630" +"GO:0001776","leukocyte homeostasis",3,1,1.26,1829,"0.8066","0.76418","0.7642" +"GO:0001954","positive regulation of cell-matrix adhes...",3,1,1.26,1830,"0.8066","0.76418","0.7642" +"GO:0002042","cell migration involved in sprouting ang...",3,1,1.26,1831,"0.8066","0.76418","0.7642" +"GO:0002118","aggressive behavior",3,1,1.26,1832,"0.8066","0.76418","0.7642" +"GO:0002260","lymphocyte homeostasis",3,1,1.26,1833,"0.8066","0.76418","0.7642" +"GO:0007204","positive regulation of cytosolic calcium...",3,1,1.26,1834,"0.8066","0.76418","0.7642" +"GO:0010594","regulation of endothelial cell migration",3,1,1.26,1835,"0.8066","0.76418","0.7642" +"GO:0010811","positive regulation of cell-substrate ad...",3,1,1.26,1836,"0.8066","0.76418","0.7642" +"GO:0043277","apoptotic cell clearance",3,1,1.26,1837,"0.8066","0.76418","0.7642" +"GO:0043535","regulation of blood vessel endothelial c...",3,1,1.26,1838,"0.8066","0.76418","0.7642" +"GO:0043901","negative regulation of multi-organism pr...",3,1,1.26,1839,"0.8066","0.76418","0.7642" +"GO:0046580","negative regulation of Ras protein signa...",3,1,1.26,1840,"0.8066","0.76418","0.7642" +"GO:0051058","negative regulation of small GTPase medi...",3,1,1.26,1841,"0.8066","0.76418","0.7642" +"GO:0051480","regulation of cytosolic calcium ion conc...",3,1,1.26,1842,"0.8066","0.76418","0.7642" +"GO:0061097","regulation of protein tyrosine kinase ac...",3,1,1.26,1843,"0.8066","0.76418","0.7642" +"GO:0070371","ERK1 and ERK2 cascade",3,1,1.26,1844,"0.8066","0.76418","0.7642" +"GO:0070372","regulation of ERK1 and ERK2 cascade",3,1,1.26,1845,"0.8066","0.76418","0.7642" +"GO:0070374","positive regulation of ERK1 and ERK2 cas...",3,1,1.26,1846,"0.8066","0.76418","0.7642" +"GO:0071229","cellular response to acid chemical",3,1,1.26,1847,"0.8066","0.76418","0.7642" +"GO:1900026","positive regulation of substrate adhesio...",3,1,1.26,1848,"0.8066","0.76418","0.7642" +"GO:1901890","positive regulation of cell junction ass...",3,1,1.26,1849,"0.8066","0.76418","0.7642" +"GO:0140013","meiotic nuclear division",15,7,6.32,822,"0.4577","0.76512","0.7651" +"GO:0002521","leukocyte differentiation",10,3,4.22,2088,"0.8654","0.76541","0.7654" +"GO:0042742","defense response to bacterium",10,3,4.22,2089,"0.8654","0.76541","0.7654" +"GO:0061572","actin filament bundle organization",11,3,4.64,2331,"0.9077","0.76570","0.7657" +"GO:0007160","cell-matrix adhesion",7,2,2.95,2127,"0.8681","0.76628","0.7663" +"GO:0009060","aerobic respiration",5,0,2.11,2792,"1.0000","0.76628","0.7663" +"GO:0072350","tricarboxylic acid metabolic process",5,0,2.11,2793,"1.0000","0.76628","0.7663" +"GO:0051640","organelle localization",44,18,18.55,1166,"0.6234","0.76668","0.7667" +"GO:0022407","regulation of cell-cell adhesion",6,2,2.53,1653,"0.7990","0.76739","0.7674" +"GO:0022409","positive regulation of cell-cell adhesio...",6,2,2.53,1654,"0.7990","0.76739","0.7674" +"GO:0071383","cellular response to steroid hormone sti...",20,7,8.43,1974,"0.8088","0.76754","0.7675" +"GO:1901135","carbohydrate derivative metabolic proces...",129,53,54.38,1252,"0.6325","0.76771","0.7677" +"GO:0016180","snRNA processing",8,2,3.37,2371,"0.9147","0.76796","0.7680" +"GO:0030038","contractile actin filament bundle assemb...",8,2,3.37,2372,"0.9147","0.76796","0.7680" +"GO:0043149","stress fiber assembly",8,2,3.37,2373,"0.9147","0.76796","0.7680" +"GO:0001558","regulation of cell growth",21,9,8.85,969,"0.5572","0.76801","0.7680" +"GO:0022603","regulation of anatomical structure morph...",35,12,14.75,2173,"0.8694","0.76842","0.7684" +"GO:0044272","sulfur compound biosynthetic process",7,2,2.95,2128,"0.8681","0.76843","0.7684" +"GO:0002440","production of molecular mediator of immu...",3,1,1.26,1850,"0.8066","0.76864","0.7686" +"GO:0002700","regulation of production of molecular me...",3,1,1.26,1851,"0.8066","0.76864","0.7686" +"GO:0002702","positive regulation of production of mol...",3,1,1.26,1852,"0.8066","0.76864","0.7686" +"GO:0042771","intrinsic apoptotic signaling pathway in...",3,1,1.26,1853,"0.8066","0.76864","0.7686" +"GO:0048146","positive regulation of fibroblast prolif...",3,1,1.26,1854,"0.8066","0.76864","0.7686" +"GO:0050729","positive regulation of inflammatory resp...",3,1,1.26,1855,"0.8066","0.76864","0.7686" +"GO:0071156","regulation of cell cycle arrest",3,1,1.26,1856,"0.8066","0.76864","0.7686" +"GO:0072332","intrinsic apoptotic signaling pathway by...",3,1,1.26,1857,"0.8066","0.76864","0.7686" +"GO:1902165","regulation of intrinsic apoptotic signal...",3,1,1.26,1858,"0.8066","0.76864","0.7686" +"GO:1902166","negative regulation of intrinsic apoptot...",3,1,1.26,1859,"0.8066","0.76864","0.7686" +"GO:1902230","negative regulation of intrinsic apoptot...",3,1,1.26,1860,"0.8066","0.76864","0.7686" +"GO:1902253","regulation of intrinsic apoptotic signal...",3,1,1.26,1861,"0.8066","0.76864","0.7686" +"GO:1902254","negative regulation of intrinsic apoptot...",3,1,1.26,1862,"0.8066","0.76864","0.7686" +"GO:0001516","prostaglandin biosynthetic process",3,0,1.26,2794,"1.0000","0.76864","0.7686" +"GO:0002833","positive regulation of response to bioti...",3,0,1.26,2795,"1.0000","0.76864","0.7686" +"GO:0006636","unsaturated fatty acid biosynthetic proc...",3,0,1.26,2796,"1.0000","0.76864","0.7686" +"GO:0008645","hexose transmembrane transport",3,0,1.26,2797,"1.0000","0.76864","0.7686" +"GO:0010827","regulation of glucose transmembrane tran...",3,0,1.26,2798,"1.0000","0.76864","0.7686" +"GO:0010828","positive regulation of glucose transmemb...",3,0,1.26,2799,"1.0000","0.76864","0.7686" +"GO:0015749","monosaccharide transmembrane transport",3,0,1.26,2800,"1.0000","0.76864","0.7686" +"GO:0046323","glucose import",3,0,1.26,2801,"1.0000","0.76864","0.7686" +"GO:0046324","regulation of glucose import",3,0,1.26,2802,"1.0000","0.76864","0.7686" +"GO:0046326","positive regulation of glucose import",3,0,1.26,2803,"1.0000","0.76864","0.7686" +"GO:0046456","icosanoid biosynthetic process",3,0,1.26,2804,"1.0000","0.76864","0.7686" +"GO:0046457","prostanoid biosynthetic process",3,0,1.26,2805,"1.0000","0.76864","0.7686" +"GO:1901570","fatty acid derivative biosynthetic proce...",3,0,1.26,2806,"1.0000","0.76864","0.7686" +"GO:1904659","glucose transmembrane transport",3,0,1.26,2807,"1.0000","0.76864","0.7686" +"GO:0016051","carbohydrate biosynthetic process",11,2,4.64,2649,"0.9783","0.76963","0.7696" +"GO:0009064","glutamine family amino acid metabolic pr...",8,3,3.37,1502,"0.7282","0.77025","0.7703" +"GO:0048663","neuron fate commitment",5,2,2.11,1426,"0.6994","0.77245","0.7724" +"GO:0014074","response to purine-containing compound",4,2,1.69,1064,"0.5617","0.77248","0.7725" +"GO:0031960","response to corticosteroid",4,1,1.69,2232,"0.8882","0.77248","0.7725" +"GO:0032414","positive regulation of ion transmembrane...",4,2,1.69,1065,"0.5617","0.77248","0.7725" +"GO:0051289","protein homotetramerization",4,1,1.69,2233,"0.8882","0.77248","0.7725" +"GO:0051705","multi-organism behavior",8,3,3.37,1503,"0.7282","0.77254","0.7725" +"GO:0045137","development of primary sexual characteri...",15,5,6.32,2027,"0.8298","0.77288","0.7729" +"GO:0000226","microtubule cytoskeleton organization",39,16,16.44,1149,"0.6173","0.77356","0.7736" +"GO:1902533","positive regulation of intracellular sig...",27,9,11.38,2179,"0.8712","0.77382","0.7738" +"GO:0033209","tumor necrosis factor-mediated signaling...",5,2,2.11,1427,"0.6994","0.77389","0.7739" +"GO:0034612","response to tumor necrosis factor",5,2,2.11,1428,"0.6994","0.77389","0.7739" +"GO:0071356","cellular response to tumor necrosis fact...",5,2,2.11,1429,"0.6994","0.77389","0.7739" +"GO:1901361","organic cyclic compound catabolic proces...",63,25,26.56,1466,"0.7003","0.77470","0.7747" +"GO:0007076","mitotic chromosome condensation",4,2,1.69,1066,"0.5617","0.77489","0.7749" +"GO:0072348","sulfur compound transport",4,1,1.69,2234,"0.8882","0.77489","0.7749" +"GO:0009124","nucleoside monophosphate biosynthetic pr...",8,3,3.37,1504,"0.7282","0.77596","0.7760" +"GO:0006383","transcription by RNA polymerase III",7,3,2.95,1189,"0.6262","0.77637","0.7764" +"GO:0002165","instar larval or pupal development",16,6,6.74,1531,"0.7327","0.77645","0.7764" +"GO:0048569","post-embryonic animal organ development",16,6,6.74,1532,"0.7327","0.77645","0.7764" +"GO:0043405","regulation of MAP kinase activity",9,2,3.79,2526,"0.9455","0.77735","0.7774" +"GO:0009059","macromolecule biosynthetic process",726,283,306.02,2675,"0.9805","0.77787","0.7779" +"GO:0051262","protein tetramerization",7,2,2.95,2129,"0.8681","0.77880","0.7788" +"GO:0001824","blastocyst development",5,2,2.11,1430,"0.6994","0.77946","0.7795" +"GO:0060348","bone development",5,1,2.11,2447,"0.9354","0.77946","0.7795" +"GO:0051056","regulation of small GTPase mediated sign...",23,10,9.69,950,"0.5284","0.78012","0.7801" +"GO:0006338","chromatin remodeling",19,6,8.01,2189,"0.8802","0.78114","0.7811" +"GO:0031098","stress-activated protein kinase signalin...",14,5,5.9,1595,"0.7738","0.78215","0.7821" +"GO:0007565","female pregnancy",12,5,5.06,1159,"0.6219","0.78286","0.7829" +"GO:0016075","rRNA catabolic process",6,3,2.53,916,"0.5003","0.78316","0.7832" +"GO:0034661","ncRNA catabolic process",6,3,2.53,917,"0.5003","0.78316","0.7832" +"GO:0046467","membrane lipid biosynthetic process",12,3,5.06,2504,"0.9375","0.78332","0.7833" +"GO:0048872","homeostasis of number of cells",16,7,6.74,956,"0.5438","0.78446","0.7845" +"GO:1903046","meiotic cell cycle process",20,9,8.43,842,"0.4826","0.78484","0.7848" +"GO:0033865","nucleoside bisphosphate metabolic proces...",5,2,2.11,1431,"0.6994","0.78534","0.7853" +"GO:0033875","ribonucleoside bisphosphate metabolic pr...",5,2,2.11,1432,"0.6994","0.78534","0.7853" +"GO:0034032","purine nucleoside bisphosphate metabolic...",5,2,2.11,1433,"0.6994","0.78534","0.7853" +"GO:0022406","membrane docking",6,2,2.53,1655,"0.7990","0.78543","0.7854" +"GO:0019221","cytokine-mediated signaling pathway",9,4,3.79,1093,"0.5709","0.78587","0.7859" +"GO:0043487","regulation of RNA stability",9,4,3.79,1094,"0.5709","0.78587","0.7859" +"GO:0043488","regulation of mRNA stability",9,4,3.79,1095,"0.5709","0.78587","0.7859" +"GO:0061013","regulation of mRNA catabolic process",9,4,3.79,1096,"0.5709","0.78587","0.7859" +"GO:0010647","positive regulation of cell communicatio...",61,23,25.71,1697,"0.7995","0.78595","0.7859" +"GO:0023056","positive regulation of signaling",61,23,25.71,1698,"0.7995","0.78595","0.7859" +"GO:0032784","regulation of DNA-templated transcriptio...",9,3,3.79,1952,"0.8069","0.78614","0.7861" +"GO:0007548","sex differentiation",21,7,8.85,2054,"0.8519","0.78715","0.7871" +"GO:0018108","peptidyl-tyrosine phosphorylation",6,2,2.53,1656,"0.7990","0.78802","0.7880" +"GO:0050730","regulation of peptidyl-tyrosine phosphor...",6,2,2.53,1657,"0.7990","0.78802","0.7880" +"GO:0009755","hormone-mediated signaling pathway",18,7,7.59,1332,"0.6947","0.78825","0.7883" +"GO:0009135","purine nucleoside diphosphate metabolic ...",4,1,1.69,2235,"0.8882","0.78846","0.7885" +"GO:0009179","purine ribonucleoside diphosphate metabo...",4,1,1.69,2236,"0.8882","0.78846","0.7885" +"GO:0009185","ribonucleoside diphosphate metabolic pro...",4,1,1.69,2237,"0.8882","0.78846","0.7885" +"GO:0019359","nicotinamide nucleotide biosynthetic pro...",4,1,1.69,2238,"0.8882","0.78846","0.7885" +"GO:0019363","pyridine nucleotide biosynthetic process",4,1,1.69,2239,"0.8882","0.78846","0.7885" +"GO:0046031","ADP metabolic process",4,1,1.69,2240,"0.8882","0.78846","0.7885" +"GO:0072525","pyridine-containing compound biosyntheti...",4,1,1.69,2241,"0.8882","0.78846","0.7885" +"GO:0097164","ammonium ion metabolic process",11,3,4.64,2332,"0.9077","0.78860","0.7886" +"GO:0006644","phospholipid metabolic process",50,17,21.08,2350,"0.9082","0.78863","0.7886" +"GO:0007405","neuroblast proliferation",4,1,1.69,2242,"0.8882","0.78925","0.7893" +"GO:0043967","histone H4 acetylation",9,4,3.79,1097,"0.5709","0.78970","0.7897" +"GO:0043928","exonucleolytic nuclear-transcribed mRNA ...",4,2,1.69,1067,"0.5617","0.79004","0.7900" +"GO:0006692","prostanoid metabolic process",4,0,1.69,2808,"1.0000","0.79004","0.7900" +"GO:0006693","prostaglandin metabolic process",4,0,1.69,2809,"1.0000","0.79004","0.7900" +"GO:0030728","ovulation",4,0,1.69,2810,"1.0000","0.79004","0.7900" +"GO:0030182","neuron differentiation",79,33,33.3,1110,"0.5711","0.79009","0.7901" +"GO:0032984","protein-containing complex disassembly",31,13,13.07,1115,"0.5784","0.79054","0.7905" +"GO:0007266","Rho protein signal transduction",15,6,6.32,1275,"0.6619","0.79104","0.7910" +"GO:0000422","autophagy of mitochondrion",6,0,2.53,2811,"1.0000","0.79124","0.7912" +"GO:0061726","mitochondrion disassembly",6,0,2.53,2812,"1.0000","0.79124","0.7912" +"GO:0044085","cellular component biogenesis",273,115,115.07,951,"0.5284","0.25240","0.7917" +"GO:0032874","positive regulation of stress-activated ...",6,2,2.53,1658,"0.7990","0.79253","0.7925" +"GO:0070304","positive regulation of stress-activated ...",6,2,2.53,1659,"0.7990","0.79253","0.7925" +"GO:0010842","retina layer formation",6,2,2.53,1660,"0.7990","0.79317","0.7932" +"GO:0030336","negative regulation of cell migration",10,3,4.22,2090,"0.8654","0.79327","0.7933" +"GO:0048863","stem cell differentiation",17,6,7.17,1619,"0.7923","0.79329","0.7933" +"GO:0044770","cell cycle phase transition",40,17,16.86,955,"0.5429","0.79474","0.7947" +"GO:0006354","DNA-templated transcription, elongation",17,7,7.17,1172,"0.6235","0.79510","0.7951" +"GO:0048278","vesicle docking",5,2,2.11,1434,"0.6994","0.79522","0.7952" +"GO:0140056","organelle localization by membrane tethe...",5,2,2.11,1435,"0.6994","0.79522","0.7952" +"GO:0045595","regulation of cell differentiation",66,26,27.82,1485,"0.7193","0.79591","0.7959" +"GO:0007044","cell-substrate junction assembly",6,2,2.53,1661,"0.7990","0.79605","0.7961" +"GO:0050877","nervous system process",51,19,21.5,1702,"0.8039","0.79629","0.7963" +"GO:0006828","manganese ion transport",3,1,1.26,1863,"0.8066","0.79714","0.7971" +"GO:0043401","steroid hormone mediated signaling pathw...",17,6,7.17,1620,"0.7923","0.79881","0.7988" +"GO:0035329","hippo signaling",7,2,2.95,2130,"0.8681","0.79897","0.7990" +"GO:0019752","carboxylic acid metabolic process",93,27,39.2,2722,"0.9971","0.79900","0.7990" +"GO:0007613","memory",5,2,2.11,1436,"0.6994","0.79906","0.7991" +"GO:0008582","regulation of synaptic growth at neuromu...",5,2,2.11,1437,"0.6994","0.79906","0.7991" +"GO:1904396","regulation of neuromuscular junction dev...",5,2,2.11,1438,"0.6994","0.79906","0.7991" +"GO:0032456","endocytic recycling",8,3,3.37,1505,"0.7282","0.79948","0.7995" +"GO:0072659","protein localization to plasma membrane",10,3,4.22,2091,"0.8654","0.80019","0.8002" +"GO:0006023","aminoglycan biosynthetic process",5,0,2.11,2813,"1.0000","0.80097","0.8010" +"GO:0048588","developmental cell growth",11,3,4.64,2333,"0.9077","0.80101","0.8010" +"GO:0060560","developmental growth involved in morphog...",11,2,4.64,2650,"0.9783","0.80101","0.8010" +"GO:0009127","purine nucleoside monophosphate biosynth...",7,2,2.95,2131,"0.8681","0.80102","0.8010" +"GO:0009156","ribonucleoside monophosphate biosyntheti...",7,2,2.95,2132,"0.8681","0.80102","0.8010" +"GO:0009168","purine ribonucleoside monophosphate bios...",7,2,2.95,2133,"0.8681","0.80102","0.8010" +"GO:0010921","regulation of phosphatase activity",6,2,2.53,1662,"0.7990","0.80146","0.8015" +"GO:0034645","cellular macromolecule biosynthetic proc...",720,281,303.49,2670,"0.9785","0.80180","0.8018" +"GO:0046785","microtubule polymerization",9,4,3.79,1098,"0.5709","0.80184","0.8018" +"GO:0070507","regulation of microtubule cytoskeleton o...",9,4,3.79,1099,"0.5709","0.80184","0.8018" +"GO:0048593","camera-type eye morphogenesis",12,4,5.06,1991,"0.8181","0.80195","0.8019" +"GO:1901136","carbohydrate derivative catabolic proces...",7,3,2.95,1190,"0.6262","0.80220","0.8022" +"GO:0010977","negative regulation of neuron projection...",3,0,1.26,2814,"1.0000","0.80297","0.8030" +"GO:0050771","negative regulation of axonogenesis",3,0,1.26,2815,"1.0000","0.80297","0.8030" +"GO:0060765","regulation of androgen receptor signalin...",3,0,1.26,2816,"1.0000","0.80297","0.8030" +"GO:0006082","organic acid metabolic process",94,27,39.62,2728,"0.9978","0.80304","0.8030" +"GO:0043436","oxoacid metabolic process",94,27,39.62,2729,"0.9978","0.80304","0.8030" +"GO:0031929","TOR signaling",11,3,4.64,2334,"0.9077","0.80359","0.8036" +"GO:0055076","transition metal ion homeostasis",9,1,3.79,2705,"0.9928","0.80364","0.8036" +"GO:0006979","response to oxidative stress",37,12,15.6,2387,"0.9168","0.80377","0.8038" +"GO:0007159","leukocyte cell-cell adhesion",4,1,1.69,2243,"0.8882","0.80409","0.8041" +"GO:0050870","positive regulation of T cell activation",4,1,1.69,2244,"0.8882","0.80409","0.8041" +"GO:1903037","regulation of leukocyte cell-cell adhesi...",4,1,1.69,2245,"0.8882","0.80409","0.8041" +"GO:1903039","positive regulation of leukocyte cell-ce...",4,1,1.69,2246,"0.8882","0.80409","0.8041" +"GO:0010469","regulation of signaling receptor activit...",7,2,2.95,2134,"0.8681","0.80424","0.8042" +"GO:0022900","electron transport chain",7,2,2.95,2135,"0.8681","0.80424","0.8042" +"GO:2000059","negative regulation of ubiquitin-depende...",3,1,1.26,1864,"0.8066","0.80431","0.8043" +"GO:0048512","circadian behavior",3,1,1.26,1865,"0.8066","0.80565","0.8056" +"GO:0051865","protein autoubiquitination",6,1,2.53,2588,"0.9627","0.80682","0.8068" +"GO:0090085","regulation of protein deubiquitination",4,2,1.69,1068,"0.5617","0.80717","0.8072" +"GO:0090086","negative regulation of protein deubiquit...",4,2,1.69,1069,"0.5617","0.80717","0.8072" +"GO:1903644","regulation of chaperone-mediated protein...",4,2,1.69,1070,"0.5617","0.80717","0.8072" +"GO:0051093","negative regulation of developmental pro...",38,14,16.02,1627,"0.7966","0.80727","0.8073" +"GO:0050905","neuromuscular process",4,1,1.69,2247,"0.8882","0.80794","0.8079" +"GO:0007368","determination of left/right symmetry",12,4,5.06,1992,"0.8181","0.80863","0.8086" +"GO:0009799","specification of symmetry",12,4,5.06,1993,"0.8181","0.80863","0.8086" +"GO:0009855","determination of bilateral symmetry",12,4,5.06,1994,"0.8181","0.80863","0.8086" +"GO:0060485","mesenchyme development",12,5,5.06,1160,"0.6219","0.80863","0.8086" +"GO:0018342","protein prenylation",4,1,1.69,2248,"0.8882","0.80871","0.8087" +"GO:0097354","prenylation",4,1,1.69,2249,"0.8882","0.80871","0.8087" +"GO:0006661","phosphatidylinositol biosynthetic proces...",9,2,3.79,2527,"0.9455","0.80916","0.8092" +"GO:0030522","intracellular receptor signaling pathway",16,5,6.74,2183,"0.8739","0.80949","0.8095" +"GO:0090083","regulation of inclusion body assembly",9,4,3.79,1100,"0.5709","0.81019","0.8102" +"GO:0090084","negative regulation of inclusion body as...",9,4,3.79,1101,"0.5709","0.81019","0.8102" +"GO:1903321","negative regulation of protein modificat...",9,4,3.79,1102,"0.5709","0.81019","0.8102" +"GO:0034654","nucleobase-containing compound biosynthe...",455,185,191.79,1600,"0.7753","0.81071","0.8107" +"GO:0034427","nuclear-transcribed mRNA catabolic proce...",3,1,1.26,1866,"0.8066","0.81206","0.8121" +"GO:0050657","nucleic acid transport",17,6,7.17,1621,"0.7923","0.81275","0.8128" +"GO:0050658","RNA transport",17,6,7.17,1622,"0.7923","0.81275","0.8128" +"GO:0051236","establishment of RNA localization",17,6,7.17,1623,"0.7923","0.81275","0.8128" +"GO:0050953","sensory perception of light stimulus",14,3,5.9,2636,"0.9723","0.81305","0.8130" +"GO:0007272","ensheathment of neurons",3,1,1.26,1867,"0.8066","0.81338","0.8134" +"GO:0008366","axon ensheathment",3,1,1.26,1868,"0.8066","0.81338","0.8134" +"GO:0042552","myelination",3,1,1.26,1869,"0.8066","0.81338","0.8134" +"GO:0018022","peptidyl-lysine methylation",18,4,7.59,2671,"0.9787","0.81355","0.8136" +"GO:0043583","ear development",3,1,1.26,1870,"0.8066","0.81404","0.8140" +"GO:0048839","inner ear development",3,1,1.26,1871,"0.8066","0.81404","0.8140" +"GO:0000132","establishment of mitotic spindle orienta...",3,1,1.26,1872,"0.8066","0.81492","0.8149" +"GO:0051294","establishment of spindle orientation",3,1,1.26,1873,"0.8066","0.81492","0.8149" +"GO:0035330","regulation of hippo signaling",3,0,1.26,2817,"1.0000","0.81492","0.8149" +"GO:0060039","pericardium development",3,0,1.26,2818,"1.0000","0.81492","0.8149" +"GO:0099558","maintenance of synapse structure",3,0,1.26,2819,"1.0000","0.81492","0.8149" +"GO:0050795","regulation of behavior",7,3,2.95,1191,"0.6262","0.81567","0.8157" +"GO:0009617","response to bacterium",15,4,6.32,2418,"0.9343","0.81612","0.8161" +"GO:0048666","neuron development",64,27,26.98,960,"0.5460","0.81724","0.8172" +"GO:0006470","protein dephosphorylation",29,12,12.22,1141,"0.6040","0.81752","0.8175" +"GO:0090382","phagosome maturation",3,0,1.26,2820,"1.0000","0.81819","0.8182" +"GO:0048589","developmental growth",48,17,20.23,2074,"0.8649","0.81832","0.8183" +"GO:0030155","regulation of cell adhesion",16,6,6.74,1533,"0.7327","0.81863","0.8186" +"GO:0002699","positive regulation of immune effector p...",11,5,4.64,944,"0.5265","0.81868","0.8187" +"GO:0050764","regulation of phagocytosis",11,5,4.64,945,"0.5265","0.81868","0.8187" +"GO:1900408","negative regulation of cellular response...",11,5,4.64,946,"0.5265","0.81868","0.8187" +"GO:1902883","negative regulation of response to oxida...",11,5,4.64,947,"0.5265","0.81868","0.8187" +"GO:0009141","nucleoside triphosphate metabolic proces...",23,8,9.69,2008,"0.8234","0.81890","0.8189" +"GO:2000113","negative regulation of cellular macromol...",80,32,33.72,1329,"0.6935","0.81898","0.8190" +"GO:0009950","dorsal/ventral axis specification",4,1,1.69,2250,"0.8882","0.81934","0.8193" +"GO:0042633","hair cycle",4,2,1.69,1071,"0.5617","0.81934","0.8193" +"GO:0048546","digestive tract morphogenesis",4,1,1.69,2251,"0.8882","0.81934","0.8193" +"GO:0034330","cell junction organization",13,5,5.48,1474,"0.7047","0.81971","0.8197" +"GO:0048678","response to axon injury",4,1,1.69,2252,"0.8882","0.82009","0.8201" +"GO:0072520","seminiferous tubule development",3,1,1.26,1874,"0.8066","0.82079","0.8208" +"GO:0035459","cargo loading into vesicle",3,0,1.26,2821,"1.0000","0.82079","0.8208" +"GO:0031175","neuron projection development",48,17,20.23,2075,"0.8649","0.82095","0.8209" +"GO:0030177","positive regulation of Wnt signaling pat...",8,2,3.37,2374,"0.9147","0.82111","0.8211" +"GO:0072358","cardiovascular system development",21,7,8.85,2055,"0.8519","0.82216","0.8222" +"GO:0043542","endothelial cell migration",7,3,2.95,1192,"0.6262","0.82222","0.8222" +"GO:0051893","regulation of focal adhesion assembly",4,2,1.69,1072,"0.5617","0.82234","0.8223" +"GO:0090109","regulation of cell-substrate junction as...",4,2,1.69,1073,"0.5617","0.82234","0.8223" +"GO:1903391","regulation of adherens junction organiza...",4,2,1.69,1074,"0.5617","0.82234","0.8223" +"GO:0034260","negative regulation of GTPase activity",4,0,1.69,2822,"1.0000","0.82234","0.8223" +"GO:0051241","negative regulation of multicellular org...",34,12,14.33,2040,"0.8387","0.82371","0.8237" +"GO:0044774","mitotic DNA integrity checkpoint",6,1,2.53,2589,"0.9627","0.82414","0.8241" +"GO:0007601","visual perception",13,2,5.48,2701,"0.9916","0.82521","0.8252" +"GO:0007050","cell cycle arrest",8,4,3.37,812,"0.4562","0.82534","0.8253" +"GO:0022604","regulation of cell morphogenesis",14,3,5.9,2637,"0.9723","0.82573","0.8257" +"GO:0048580","regulation of post-embryonic development",4,0,1.69,2823,"1.0000","0.82607","0.8261" +"GO:0009112","nucleobase metabolic process",5,2,2.11,1439,"0.6994","0.82612","0.8261" +"GO:0046112","nucleobase biosynthetic process",5,2,2.11,1440,"0.6994","0.82612","0.8261" +"GO:0019068","virion assembly",3,0,1.26,2824,"1.0000","0.82661","0.8266" +"GO:0001952","regulation of cell-matrix adhesion",5,2,2.11,1441,"0.6994","0.82695","0.8270" +"GO:0007045","cell-substrate adherens junction assembl...",5,2,2.11,1442,"0.6994","0.82695","0.8270" +"GO:0048041","focal adhesion assembly",5,2,2.11,1443,"0.6994","0.82695","0.8270" +"GO:0006816","calcium ion transport",18,6,7.59,2042,"0.8412","0.82739","0.8274" +"GO:0001654","eye development",43,16,18.12,1614,"0.7921","0.82779","0.8278" +"GO:0048880","sensory system development",43,16,18.12,1615,"0.7921","0.82779","0.8278" +"GO:0150063","visual system development",43,16,18.12,1616,"0.7921","0.82779","0.8278" +"GO:0051646","mitochondrion localization",4,1,1.69,2253,"0.8882","0.82829","0.8283" +"GO:0006505","GPI anchor metabolic process",8,2,3.37,2375,"0.9147","0.82848","0.8285" +"GO:0006506","GPI anchor biosynthetic process",8,2,3.37,2376,"0.9147","0.82848","0.8285" +"GO:1900034","regulation of cellular response to heat",9,4,3.79,1103,"0.5709","0.82850","0.8285" +"GO:0006508","proteolysis",216,96,91.05,403,"0.2608","0.22108","0.8286" +"GO:0016054","organic acid catabolic process",15,3,6.32,2676,"0.9818","0.83051","0.8305" +"GO:0046395","carboxylic acid catabolic process",15,3,6.32,2677,"0.9818","0.83051","0.8305" +"GO:0051568","histone H3-K4 methylation",4,1,1.69,2254,"0.8882","0.83124","0.8312" +"GO:0043062","extracellular structure organization",19,7,8.01,1578,"0.7565","0.83142","0.8314" +"GO:0060255","regulation of macromolecule metabolic pr...",509,208,214.55,1582,"0.7580","0.83197","0.8320" +"GO:0031400","negative regulation of protein modificat...",28,10,11.8,1977,"0.8113","0.83294","0.8329" +"GO:0015672","monovalent inorganic cation transport",29,10,12.22,2045,"0.8486","0.83312","0.8331" +"GO:0001838","embryonic epithelial tube formation",9,2,3.79,2528,"0.9455","0.83329","0.8333" +"GO:0001841","neural tube formation",9,2,3.79,2529,"0.9455","0.83329","0.8333" +"GO:0001843","neural tube closure",9,2,3.79,2530,"0.9455","0.83329","0.8333" +"GO:0014020","primary neural tube formation",9,2,3.79,2531,"0.9455","0.83329","0.8333" +"GO:0034764","positive regulation of transmembrane tra...",9,3,3.79,1953,"0.8069","0.83329","0.8333" +"GO:0060606","tube closure",9,2,3.79,2532,"0.9455","0.83329","0.8333" +"GO:0072175","epithelial tube formation",9,2,3.79,2533,"0.9455","0.83329","0.8333" +"GO:0033014","tetrapyrrole biosynthetic process",6,1,2.53,2590,"0.9627","0.83349","0.8335" +"GO:0032543","mitochondrial translation",12,4,5.06,1995,"0.8181","0.83376","0.8338" +"GO:0140053","mitochondrial gene expression",12,4,5.06,1996,"0.8181","0.83376","0.8338" +"GO:0001501","skeletal system development",15,3,6.32,2678,"0.9818","0.83469","0.8347" +"GO:0003007","heart morphogenesis",15,5,6.32,2028,"0.8298","0.83469","0.8347" +"GO:0048878","chemical homeostasis",33,9,13.91,2641,"0.9750","0.83541","0.8354" +"GO:0014033","neural crest cell differentiation",6,2,2.53,1663,"0.7990","0.83736","0.8374" +"GO:0051147","regulation of muscle cell differentiatio...",6,1,2.53,2591,"0.9627","0.83736","0.8374" +"GO:1901569","fatty acid derivative catabolic process",3,1,1.26,1875,"0.8066","0.83804","0.8380" +"GO:0042182","ketone catabolic process",3,0,1.26,2825,"1.0000","0.83804","0.8380" +"GO:0046148","pigment biosynthetic process",5,1,2.11,2448,"0.9354","0.83810","0.8381" +"GO:0007281","germ cell development",39,16,16.44,1150,"0.6173","0.83839","0.8384" +"GO:0048870","cell motility",53,22,22.34,1135,"0.5905","0.83871","0.8387" +"GO:0051674","localization of cell",53,22,22.34,1136,"0.5905","0.83871","0.8387" +"GO:0030099","myeloid cell differentiation",13,5,5.48,1475,"0.7047","0.83877","0.8388" +"GO:0051053","negative regulation of DNA metabolic pro...",3,1,1.26,1876,"0.8066","0.83908","0.8391" +"GO:1901566","organonitrogen compound biosynthetic pro...",308,106,129.83,2737,"0.9987","0.83953","0.8395" +"GO:0008202","steroid metabolic process",9,2,3.79,2534,"0.9455","0.84044","0.8404" +"GO:0007010","cytoskeleton organization",91,38,38.36,1111,"0.5714","0.84176","0.8418" +"GO:0018205","peptidyl-lysine modification",45,16,18.97,2063,"0.8547","0.84222","0.8422" +"GO:0055086","nucleobase-containing small molecule met...",70,24,29.51,2405,"0.9308","0.84223","0.8422" +"GO:0007169","transmembrane receptor protein tyrosine ...",17,5,7.17,2346,"0.9079","0.84313","0.8431" +"GO:0006779","porphyrin-containing compound biosynthet...",5,1,2.11,2449,"0.9354","0.84374","0.8437" +"GO:0008544","epidermis development",11,4,4.64,1558,"0.7527","0.84396","0.8440" +"GO:0009395","phospholipid catabolic process",5,1,2.11,2450,"0.9354","0.84454","0.8445" +"GO:0046839","phospholipid dephosphorylation",6,2,2.53,1664,"0.7990","0.84471","0.8447" +"GO:0023051","regulation of signaling",150,63,63.23,961,"0.5476","0.84478","0.8448" +"GO:0051253","negative regulation of RNA metabolic pro...",76,31,32.03,1256,"0.6391","0.84488","0.8449" +"GO:0032501","multicellular organismal process",355,135,149.64,2580,"0.9598","0.84493","0.8449" +"GO:0048771","tissue remodeling",4,2,1.69,1075,"0.5617","0.84501","0.8450" +"GO:0032411","positive regulation of transporter activ...",5,2,2.11,1444,"0.6994","0.84533","0.8453" +"GO:0043406","positive regulation of MAP kinase activi...",6,2,2.53,1665,"0.7990","0.84559","0.8456" +"GO:0045055","regulated exocytosis",10,4,4.22,1296,"0.6705","0.84667","0.8467" +"GO:0048522","positive regulation of cellular process",265,105,111.7,2019,"0.8269","0.84708","0.8471" +"GO:0007034","vacuolar transport",25,10,10.54,1267,"0.6599","0.84756","0.8476" +"GO:0006006","glucose metabolic process",7,2,2.95,2136,"0.8681","0.84772","0.8477" +"GO:0010906","regulation of glucose metabolic process",7,2,2.95,2137,"0.8681","0.84772","0.8477" +"GO:0032006","regulation of TOR signaling",10,2,4.22,2618,"0.9655","0.84869","0.8487" +"GO:0015693","magnesium ion transport",3,1,1.26,1877,"0.8066","0.84899","0.8490" +"GO:0065004","protein-DNA complex assembly",17,5,7.17,2347,"0.9079","0.84936","0.8494" +"GO:1902600","proton transmembrane transport",6,1,2.53,2592,"0.9627","0.84993","0.8499" +"GO:0016241","regulation of macroautophagy",9,2,3.79,2535,"0.9455","0.85007","0.8501" +"GO:0008203","cholesterol metabolic process",3,1,1.26,1878,"0.8066","0.85102","0.8510" +"GO:0007610","behavior",42,15,17.7,2044,"0.8435","0.85105","0.8510" +"GO:1902679","negative regulation of RNA biosynthetic ...",75,30,31.61,1321,"0.6901","0.85130","0.8513" +"GO:1903507","negative regulation of nucleic acid-temp...",75,30,31.61,1322,"0.6901","0.85130","0.8513" +"GO:0006904","vesicle docking involved in exocytosis",4,2,1.69,1076,"0.5617","0.85138","0.8514" +"GO:0042981","regulation of apoptotic process",67,30,28.24,571,"0.3743","0.85146","0.8515" +"GO:0045861","negative regulation of proteolysis",18,7,7.59,1333,"0.6947","0.85178","0.8518" +"GO:0034243","regulation of transcription elongation f...",6,2,2.53,1666,"0.7990","0.85194","0.8519" +"GO:0072321","chaperone-mediated protein transport",9,4,3.79,1104,"0.5709","0.85335","0.8533" +"GO:0007141","male meiosis I",4,2,1.69,1077,"0.5617","0.85348","0.8535" +"GO:0010968","regulation of microtubule nucleation",4,2,1.69,1078,"0.5617","0.85348","0.8535" +"GO:0031112","positive regulation of microtubule polym...",4,2,1.69,1079,"0.5617","0.85348","0.8535" +"GO:0031116","positive regulation of microtubule polym...",4,2,1.69,1080,"0.5617","0.85348","0.8535" +"GO:0090063","positive regulation of microtubule nucle...",4,2,1.69,1081,"0.5617","0.85348","0.8535" +"GO:1904427","positive regulation of calcium ion trans...",4,2,1.69,1082,"0.5617","0.85348","0.8535" +"GO:0033500","carbohydrate homeostasis",5,0,2.11,2826,"1.0000","0.85354","0.8535" +"GO:0042593","glucose homeostasis",5,0,2.11,2827,"1.0000","0.85354","0.8535" +"GO:0030518","intracellular steroid hormone receptor s...",12,3,5.06,2505,"0.9375","0.85361","0.8536" +"GO:0043648","dicarboxylic acid metabolic process",3,1,1.26,1879,"0.8066","0.85365","0.8537" +"GO:0035295","tube development",56,20,23.6,2174,"0.8696","0.85390","0.8539" +"GO:0065008","regulation of biological quality",191,74,80.51,2066,"0.8566","0.85446","0.8545" +"GO:0016458","gene silencing",25,11,10.54,922,"0.5019","0.85496","0.8550" +"GO:0051259","protein complex oligomerization",16,5,6.74,2184,"0.8739","0.85499","0.8550" +"GO:1903146","regulation of autophagy of mitochondrion",4,0,1.69,2828,"1.0000","0.85557","0.8556" +"GO:0046488","phosphatidylinositol metabolic process",21,6,8.85,2422,"0.9344","0.85576","0.8558" +"GO:0036314","response to sterol",5,1,2.11,2451,"0.9354","0.85588","0.8559" +"GO:0036315","cellular response to sterol",5,1,2.11,2452,"0.9354","0.85588","0.8559" +"GO:1901362","organic cyclic compound biosynthetic pro...",474,191,199.8,2020,"0.8290","0.85616","0.8562" +"GO:0009581","detection of external stimulus",4,1,1.69,2255,"0.8882","0.85696","0.8570" +"GO:0009582","detection of abiotic stimulus",4,1,1.69,2256,"0.8882","0.85696","0.8570" +"GO:0045892","negative regulation of transcription, DN...",74,29,31.19,1539,"0.7384","0.85769","0.8577" +"GO:0016311","dephosphorylation",43,17,18.12,1325,"0.6911","0.85851","0.8585" +"GO:0009165","nucleotide biosynthetic process",22,8,9.27,1605,"0.7771","0.85871","0.8587" +"GO:1901293","nucleoside phosphate biosynthetic proces...",22,8,9.27,1606,"0.7771","0.85871","0.8587" +"GO:0046686","response to cadmium ion",12,5,5.06,1161,"0.6219","0.85883","0.8588" +"GO:0043248","proteasome assembly",6,2,2.53,1667,"0.7990","0.85988","0.8599" +"GO:0001890","placenta development",11,3,4.64,2335,"0.9077","0.86046","0.8605" +"GO:0050790","regulation of catalytic activity",99,35,41.73,2414,"0.9341","0.86081","0.8608" +"GO:0061458","reproductive system development",40,11,16.86,2683,"0.9819","0.86092","0.8609" +"GO:0006140","regulation of nucleotide metabolic proce...",5,1,2.11,2453,"0.9354","0.86097","0.8610" +"GO:0022904","respiratory electron transport chain",5,1,2.11,2454,"0.9354","0.86097","0.8610" +"GO:0042773","ATP synthesis coupled electron transport",5,1,2.11,2455,"0.9354","0.86097","0.8610" +"GO:0042775","mitochondrial ATP synthesis coupled elec...",5,1,2.11,2456,"0.9354","0.86097","0.8610" +"GO:0062014","negative regulation of small molecule me...",5,1,2.11,2457,"0.9354","0.86097","0.8610" +"GO:1900542","regulation of purine nucleotide metaboli...",5,1,2.11,2458,"0.9354","0.86097","0.8610" +"GO:1903578","regulation of ATP metabolic process",5,1,2.11,2459,"0.9354","0.86097","0.8610" +"GO:0001941","postsynaptic membrane organization",3,1,1.26,1880,"0.8066","0.86104","0.8610" +"GO:0007474","imaginal disc-derived wing vein specific...",3,1,1.26,1881,"0.8066","0.86124","0.8612" +"GO:0022404","molting cycle process",3,1,1.26,1882,"0.8066","0.86124","0.8612" +"GO:0022405","hair cycle process",3,1,1.26,1883,"0.8066","0.86124","0.8612" +"GO:0050679","positive regulation of epithelial cell p...",3,1,1.26,1884,"0.8066","0.86124","0.8612" +"GO:0060795","cell fate commitment involved in formati...",3,1,1.26,1885,"0.8066","0.86124","0.8612" +"GO:0072091","regulation of stem cell proliferation",3,1,1.26,1886,"0.8066","0.86124","0.8612" +"GO:0032091","negative regulation of protein binding",5,2,2.11,1445,"0.6994","0.86128","0.8613" +"GO:0060717","chorion development",5,2,2.11,1446,"0.6994","0.86128","0.8613" +"GO:1903867","extraembryonic membrane development",5,2,2.11,1447,"0.6994","0.86128","0.8613" +"GO:0048871","multicellular organismal homeostasis",13,4,5.48,2160,"0.8685","0.86194","0.8619" +"GO:0043934","sporulation",5,2,2.11,1448,"0.6994","0.86220","0.8622" +"GO:0001775","cell activation",23,8,9.69,2009,"0.8234","0.86316","0.8632" +"GO:0043409","negative regulation of MAPK cascade",5,2,2.11,1449,"0.6994","0.86372","0.8637" +"GO:0050793","regulation of developmental process",111,42,46.79,2049,"0.8504","0.86374","0.8637" +"GO:0006405","RNA export from nucleus",15,5,6.32,2029,"0.8298","0.86476","0.8648" +"GO:0006611","protein export from nucleus",15,5,6.32,2030,"0.8298","0.86476","0.8648" +"GO:0031123","RNA 3'-end processing",15,6,6.32,1276,"0.6619","0.86476","0.8648" +"GO:0098660","inorganic ion transmembrane transport",27,8,11.38,2513,"0.9383","0.86485","0.8649" +"GO:0098662","inorganic cation transmembrane transport",27,8,11.38,2514,"0.9383","0.86485","0.8649" +"GO:0003279","cardiac septum development",4,1,1.69,2257,"0.8882","0.86518","0.8652" +"GO:0035904","aorta development",4,1,1.69,2258,"0.8882","0.86518","0.8652" +"GO:0060840","artery development",4,1,1.69,2259,"0.8882","0.86518","0.8652" +"GO:1905952","regulation of lipid localization",4,1,1.69,2260,"0.8882","0.86518","0.8652" +"GO:0030010","establishment of cell polarity",10,2,4.22,2619,"0.9655","0.86556","0.8656" +"GO:0098742","cell-cell adhesion via plasma-membrane a...",10,3,4.22,2092,"0.8654","0.86620","0.8662" +"GO:0006875","cellular metal ion homeostasis",17,5,7.17,2348,"0.9079","0.86632","0.8663" +"GO:0018195","peptidyl-arginine modification",3,1,1.26,1887,"0.8066","0.86653","0.8665" +"GO:0018216","peptidyl-arginine methylation",3,1,1.26,1888,"0.8066","0.86653","0.8665" +"GO:0046329","negative regulation of JNK cascade",3,1,1.26,1889,"0.8066","0.86653","0.8665" +"GO:0018126","protein hydroxylation",3,0,1.26,2829,"1.0000","0.86653","0.8665" +"GO:0006665","sphingolipid metabolic process",7,0,2.95,2830,"1.0000","0.86745","0.8674" +"GO:0008340","determination of adult lifespan",3,1,1.26,1890,"0.8066","0.86751","0.8675" +"GO:0010631","epithelial cell migration",11,4,4.64,1559,"0.7527","0.86774","0.8677" +"GO:0035148","tube formation",11,3,4.64,2336,"0.9077","0.86774","0.8677" +"GO:0043408","regulation of MAPK cascade",18,5,7.59,2409,"0.9336","0.86785","0.8679" +"GO:0051222","positive regulation of protein transport",18,3,7.59,2711,"0.9951","0.86785","0.8679" +"GO:1904951","positive regulation of establishment of ...",18,3,7.59,2712,"0.9951","0.86785","0.8679" +"GO:0071554","cell wall organization or biogenesis",5,1,2.11,2460,"0.9354","0.86840","0.8684" +"GO:0010507","negative regulation of autophagy",5,1,2.11,2461,"0.9354","0.86885","0.8689" +"GO:0046856","phosphatidylinositol dephosphorylation",5,1,2.11,2462,"0.9354","0.86885","0.8689" +"GO:0051248","negative regulation of protein metabolic...",48,17,20.23,2076,"0.8649","0.86898","0.8690" +"GO:0009408","response to heat",32,13,13.49,1255,"0.6357","0.86929","0.8693" +"GO:0048856","anatomical structure development",316,123,133.2,2316,"0.9027","0.86955","0.8695" +"GO:0001935","endothelial cell proliferation",5,1,2.11,2463,"0.9354","0.86960","0.8696" +"GO:0043534","blood vessel endothelial cell migration",5,1,2.11,2464,"0.9354","0.86960","0.8696" +"GO:0045596","negative regulation of cell differentiat...",29,10,12.22,2046,"0.8486","0.86975","0.8698" +"GO:0042060","wound healing",16,3,6.74,2695,"0.9882","0.87003","0.8700" +"GO:0048514","blood vessel morphogenesis",16,5,6.74,2185,"0.8739","0.87003","0.8700" +"GO:0016246","RNA interference",10,5,4.22,758,"0.4216","0.87024","0.8702" +"GO:0034341","response to interferon-gamma",6,3,2.53,918,"0.5003","0.87039","0.8704" +"GO:0071346","cellular response to interferon-gamma",6,3,2.53,919,"0.5003","0.87039","0.8704" +"GO:0018130","heterocycle biosynthetic process",469,190,197.69,1700,"0.7996","0.87083","0.8708" +"GO:0060968","regulation of gene silencing",7,2,2.95,2138,"0.8681","0.87124","0.8712" +"GO:2000241","regulation of reproductive process",11,2,4.64,2651,"0.9783","0.87208","0.8721" +"GO:0070588","calcium ion transmembrane transport",13,4,5.48,2161,"0.8685","0.87232","0.8723" +"GO:0072503","cellular divalent inorganic cation homeo...",10,4,4.22,1297,"0.6705","0.87255","0.8726" +"GO:0008037","cell recognition",11,4,4.64,1560,"0.7527","0.87258","0.8726" +"GO:0048598","embryonic morphogenesis",52,21,21.92,1262,"0.6538","0.87330","0.8733" +"GO:1901617","organic hydroxy compound biosynthetic pr...",7,1,2.95,2662,"0.9784","0.87363","0.8736" +"GO:0051128","regulation of cellular component organiz...",152,62,64.07,1282,"0.6667","0.73540","0.8737" +"GO:0042026","protein refolding",14,6,5.9,1123,"0.5802","0.87393","0.8739" +"GO:1902882","regulation of response to oxidative stre...",14,6,5.9,1124,"0.5802","0.87393","0.8739" +"GO:0006950","response to stress",290,134,122.24,121,"0.0787","0.11427","0.8749" +"GO:0051321","meiotic cell cycle",21,9,8.85,970,"0.5572","0.87523","0.8752" +"GO:0043112","receptor metabolic process",5,1,2.11,2465,"0.9354","0.87524","0.8752" +"GO:0001936","regulation of endothelial cell prolifera...",3,1,1.26,1891,"0.8066","0.87556","0.8756" +"GO:0009611","response to wounding",20,5,8.43,2625,"0.9666","0.87592","0.8759" +"GO:0002040","sprouting angiogenesis",4,1,1.69,2261,"0.8882","0.87650","0.8765" +"GO:0010634","positive regulation of epithelial cell m...",4,1,1.69,2262,"0.8882","0.87650","0.8765" +"GO:0045580","regulation of T cell differentiation",4,1,1.69,2263,"0.8882","0.87650","0.8765" +"GO:0045766","positive regulation of angiogenesis",4,1,1.69,2264,"0.8882","0.87650","0.8765" +"GO:0060563","neuroepithelial cell differentiation",4,1,1.69,2265,"0.8882","0.87650","0.8765" +"GO:1904018","positive regulation of vasculature devel...",4,1,1.69,2266,"0.8882","0.87650","0.8765" +"GO:0016485","protein processing",14,5,5.9,1596,"0.7738","0.87657","0.8766" +"GO:0007155","cell adhesion",53,18,22.34,2360,"0.9143","0.87658","0.8766" +"GO:0022610","biological adhesion",53,18,22.34,2361,"0.9143","0.87658","0.8766" +"GO:0006895","Golgi to endosome transport",3,1,1.26,1892,"0.8066","0.87670","0.8767" +"GO:0032269","negative regulation of cellular protein ...",45,16,18.97,2064,"0.8547","0.87677","0.8768" +"GO:0051270","regulation of cellular component movemen...",32,12,13.49,1585,"0.7613","0.87681","0.8768" +"GO:0002443","leukocyte mediated immunity",13,6,5.48,859,"0.4894","0.87690","0.8769" +"GO:0033260","nuclear DNA replication",4,1,1.69,2267,"0.8882","0.87715","0.8772" +"GO:0044786","cell cycle DNA replication",4,1,1.69,2268,"0.8882","0.87715","0.8772" +"GO:0090559","regulation of membrane permeability",9,4,3.79,1105,"0.5709","0.87749","0.8775" +"GO:0099003","vesicle-mediated transport in synapse",9,4,3.79,1106,"0.5709","0.87749","0.8775" +"GO:0006575","cellular modified amino acid metabolic p...",11,6,4.64,450,"0.2957","0.10295","0.8776" +"GO:0019438","aromatic compound biosynthetic process",464,188,195.58,1629,"0.7975","0.87844","0.8784" +"GO:0090150","establishment of protein localization to...",23,8,9.69,2010,"0.8234","0.87924","0.8792" +"GO:0006342","chromatin silencing",16,7,6.74,957,"0.5438","0.87926","0.8793" +"GO:0045814","negative regulation of gene expression, ...",16,7,6.74,958,"0.5438","0.87926","0.8793" +"GO:0006605","protein targeting",48,19,20.23,1328,"0.6931","0.87972","0.8797" +"GO:0045321","leukocyte activation",20,6,8.43,2354,"0.9108","0.88001","0.8800" +"GO:0060548","negative regulation of cell death",52,23,21.92,766,"0.4319","0.88043","0.8804" +"GO:0071407","cellular response to organic cyclic comp...",29,9,12.22,2395,"0.9225","0.88072","0.8807" +"GO:0051785","positive regulation of nuclear division",4,1,1.69,2269,"0.8882","0.88105","0.8810" +"GO:0001678","cellular glucose homeostasis",4,0,1.69,2831,"1.0000","0.88105","0.8810" +"GO:0030001","metal ion transport",56,20,23.6,2175,"0.8696","0.88110","0.8811" +"GO:0090114","COPII-coated vesicle budding",7,3,2.95,1193,"0.6262","0.88140","0.8814" +"GO:0071166","ribonucleoprotein complex localization",13,4,5.48,2162,"0.8685","0.88176","0.8818" +"GO:0071426","ribonucleoprotein complex export from nu...",13,4,5.48,2163,"0.8685","0.88176","0.8818" +"GO:0090407","organophosphate biosynthetic process",51,17,21.5,2397,"0.9252","0.88193","0.8819" +"GO:0009887","animal organ morphogenesis",64,24,26.98,1979,"0.8130","0.88248","0.8825" +"GO:0000165","MAPK cascade",22,6,9.27,2547,"0.9523","0.88264","0.8826" +"GO:0023014","signal transduction by protein phosphory...",22,6,9.27,2548,"0.9523","0.88264","0.8826" +"GO:0043009","chordate embryonic development",48,14,20.23,2647,"0.9783","0.88272","0.8827" +"GO:0006915","apoptotic process",90,40,37.94,553,"0.3655","0.88316","0.8832" +"GO:0031532","actin cytoskeleton reorganization",5,2,2.11,1450,"0.6994","0.88407","0.8841" +"GO:0034765","regulation of ion transmembrane transpor...",10,4,4.22,1298,"0.6705","0.88429","0.8843" +"GO:0043270","positive regulation of ion transport",10,4,4.22,1299,"0.6705","0.88429","0.8843" +"GO:1904062","regulation of cation transmembrane trans...",10,4,4.22,1300,"0.6705","0.88429","0.8843" +"GO:0018212","peptidyl-tyrosine modification",7,3,2.95,1194,"0.6262","0.88539","0.8854" +"GO:0045103","intermediate filament-based process",4,1,1.69,2270,"0.8882","0.88616","0.8862" +"GO:0045104","intermediate filament cytoskeleton organ...",4,1,1.69,2271,"0.8882","0.88616","0.8862" +"GO:0021510","spinal cord development",4,0,1.69,2832,"1.0000","0.88616","0.8862" +"GO:0007275","multicellular organism development",293,113,123.5,2385,"0.9162","0.88640","0.8864" +"GO:0009966","regulation of signal transduction",141,58,59.43,1250,"0.6311","0.88669","0.8867" +"GO:0031109","microtubule polymerization or depolymeri...",10,4,4.22,1301,"0.6705","0.88710","0.8871" +"GO:0051924","regulation of calcium ion transport",9,4,3.79,1107,"0.5709","0.88713","0.8871" +"GO:0060710","chorio-allantoic fusion",4,1,1.69,2272,"0.8882","0.88743","0.8874" +"GO:0060715","syncytiotrophoblast cell differentiation...",4,1,1.69,2273,"0.8882","0.88743","0.8874" +"GO:0042127","regulation of cell proliferation",59,22,24.87,1981,"0.8150","0.88850","0.8885" +"GO:0071495","cellular response to endogenous stimulus",60,23,25.29,1589,"0.7686","0.88858","0.8886" +"GO:0006766","vitamin metabolic process",4,1,1.69,2274,"0.8882","0.88869","0.8887" +"GO:0006775","fat-soluble vitamin metabolic process",4,1,1.69,2275,"0.8882","0.88869","0.8887" +"GO:0061448","connective tissue development",8,3,3.37,1506,"0.7282","0.88869","0.8887" +"GO:0043069","negative regulation of programmed cell d...",45,20,18.97,769,"0.4328","0.88876","0.8888" +"GO:0042752","regulation of circadian rhythm",7,3,2.95,1195,"0.6262","0.88933","0.8893" +"GO:0045944","positive regulation of transcription by ...",36,15,15.17,1130,"0.5872","0.88956","0.8896" +"GO:0022607","cellular component assembly",206,79,86.83,2305,"0.8895","0.89028","0.8903" +"GO:0046165","alcohol biosynthetic process",6,1,2.53,2593,"0.9627","0.89069","0.8907" +"GO:1903706","regulation of hemopoiesis",11,4,4.64,1561,"0.7527","0.89092","0.8909" +"GO:0009913","epidermal cell differentiation",8,2,3.37,2377,"0.9147","0.89134","0.8913" +"GO:0009308","amine metabolic process",7,0,2.95,2833,"1.0000","0.89157","0.8916" +"GO:0044106","cellular amine metabolic process",7,0,2.95,2834,"1.0000","0.89157","0.8916" +"GO:0006206","pyrimidine nucleobase metabolic process",3,1,1.26,1893,"0.8066","0.89179","0.8918" +"GO:0006207","'de novo' pyrimidine nucleobase biosynth...",3,1,1.26,1894,"0.8066","0.89179","0.8918" +"GO:0019856","pyrimidine nucleobase biosynthetic proce...",3,1,1.26,1895,"0.8066","0.89179","0.8918" +"GO:0038061","NIK/NF-kappaB signaling",3,0,1.26,2835,"1.0000","0.89233","0.8923" +"GO:0007127","meiosis I",7,3,2.95,1196,"0.6262","0.89251","0.8925" +"GO:0048562","embryonic organ morphogenesis",15,4,6.32,2419,"0.9343","0.89256","0.8926" +"GO:0010646","regulation of cell communication",149,62,62.81,1128,"0.5866","0.89265","0.8926" +"GO:0051239","regulation of multicellular organismal p...",105,41,44.26,1598,"0.7749","0.89370","0.8937" +"GO:0009888","tissue development",105,41,44.26,1599,"0.7749","0.89416","0.8942" +"GO:0009890","negative regulation of biosynthetic proc...",85,34,35.83,1334,"0.6968","0.89417","0.8942" +"GO:0050680","negative regulation of epithelial cell p...",4,1,1.69,2276,"0.8882","0.89428","0.8943" +"GO:0048308","organelle inheritance",4,0,1.69,2836,"1.0000","0.89428","0.8943" +"GO:1902904","negative regulation of supramolecular fi...",14,6,5.9,1125,"0.5802","0.89442","0.8944" +"GO:2001257","regulation of cation channel activity",6,2,2.53,1668,"0.7990","0.89473","0.8947" +"GO:0002262","myeloid cell homeostasis",10,4,4.22,1302,"0.6705","0.89498","0.8950" +"GO:0030218","erythrocyte differentiation",10,4,4.22,1303,"0.6705","0.89498","0.8950" +"GO:0034101","erythrocyte homeostasis",10,4,4.22,1304,"0.6705","0.89498","0.8950" +"GO:0030030","cell projection organization",73,25,30.77,2429,"0.9353","0.89513","0.8951" +"GO:0120036","plasma membrane bounded cell projection ...",73,25,30.77,2430,"0.9353","0.89513","0.8951" +"GO:0043666","regulation of phosphoprotein phosphatase...",3,1,1.26,1896,"0.8066","0.89535","0.8954" +"GO:0019318","hexose metabolic process",12,4,5.06,1997,"0.8181","0.89538","0.8954" +"GO:0007033","vacuole organization",19,8,8.01,1134,"0.5888","0.89559","0.8956" +"GO:0042176","regulation of protein catabolic process",29,12,12.22,1142,"0.6040","0.89585","0.8958" +"GO:0019362","pyridine nucleotide metabolic process",6,1,2.53,2594,"0.9627","0.89598","0.8960" +"GO:0046496","nicotinamide nucleotide metabolic proces...",6,1,2.53,2595,"0.9627","0.89598","0.8960" +"GO:0072524","pyridine-containing compound metabolic p...",6,1,2.53,2596,"0.9627","0.89598","0.8960" +"GO:0001892","embryonic placenta development",8,1,3.37,2691,"0.9876","0.89657","0.8966" +"GO:0051656","establishment of organelle localization",30,13,12.65,935,"0.5176","0.89671","0.8967" +"GO:0019915","lipid storage",6,2,2.53,1669,"0.7990","0.89698","0.8970" +"GO:0015988","energy coupled proton transmembrane tran...",4,1,1.69,2277,"0.8882","0.89734","0.8973" +"GO:0015991","ATP hydrolysis coupled proton transport",4,1,1.69,2278,"0.8882","0.89734","0.8973" +"GO:0090662","ATP hydrolysis coupled transmembrane tra...",4,1,1.69,2279,"0.8882","0.89734","0.8973" +"GO:0099131","ATP hydrolysis coupled ion transmembrane...",4,1,1.69,2280,"0.8882","0.89734","0.8973" +"GO:0099132","ATP hydrolysis coupled cation transmembr...",4,1,1.69,2281,"0.8882","0.89734","0.8973" +"GO:0007140","male meiotic nuclear division",9,4,3.79,1108,"0.5709","0.89736","0.8974" +"GO:0003143","embryonic heart tube morphogenesis",9,2,3.79,2536,"0.9455","0.89746","0.8975" +"GO:0035050","embryonic heart tube development",9,2,3.79,2537,"0.9455","0.89746","0.8975" +"GO:0061371","determination of heart left/right asymme...",9,2,3.79,2538,"0.9455","0.89746","0.8975" +"GO:0051188","cofactor biosynthetic process",24,6,10.12,2642,"0.9755","0.89758","0.8976" +"GO:0001708","cell fate specification",6,1,2.53,2597,"0.9627","0.89772","0.8977" +"GO:0006873","cellular ion homeostasis",18,5,7.59,2410,"0.9336","0.89808","0.8981" +"GO:0030003","cellular cation homeostasis",18,5,7.59,2411,"0.9336","0.89808","0.8981" +"GO:0031327","negative regulation of cellular biosynth...",84,34,35.41,1278,"0.6639","0.89813","0.8981" +"GO:0007031","peroxisome organization",8,4,3.37,813,"0.4562","0.89829","0.8983" +"GO:0051028","mRNA transport",11,4,4.64,1562,"0.7527","0.89907","0.8991" +"GO:0007173","epidermal growth factor receptor signali...",7,3,2.95,1197,"0.6262","0.89921","0.8992" +"GO:0038127","ERBB signaling pathway",7,3,2.95,1198,"0.6262","0.89921","0.8992" +"GO:0042058","regulation of epidermal growth factor re...",7,3,2.95,1199,"0.6262","0.89921","0.8992" +"GO:1901184","regulation of ERBB signaling pathway",7,3,2.95,1200,"0.6262","0.89921","0.8992" +"GO:0051216","cartilage development",6,2,2.53,1670,"0.7990","0.89945","0.8994" +"GO:0032872","regulation of stress-activated MAPK casc...",10,3,4.22,2093,"0.8654","0.90017","0.9002" +"GO:0070302","regulation of stress-activated protein k...",10,3,4.22,2094,"0.8654","0.90017","0.9002" +"GO:0007098","centrosome cycle",6,0,2.53,2837,"1.0000","0.90019","0.9002" +"GO:0031023","microtubule organizing center organizati...",6,0,2.53,2838,"1.0000","0.90019","0.9002" +"GO:0010959","regulation of metal ion transport",10,4,4.22,1305,"0.6705","0.90036","0.9004" +"GO:0070841","inclusion body assembly",10,4,4.22,1306,"0.6705","0.90036","0.9004" +"GO:0044092","negative regulation of molecular functio...",38,12,16.02,2426,"0.9344","0.90092","0.9009" +"GO:0021953","central nervous system neuron differenti...",7,2,2.95,2139,"0.8681","0.90193","0.9019" +"GO:0048738","cardiac muscle tissue development",7,3,2.95,1201,"0.6262","0.90193","0.9019" +"GO:0033554","cellular response to stress",208,100,87.67,64,"0.0425","0.04415","0.9024" +"GO:0006099","tricarboxylic acid cycle",4,0,1.69,2839,"1.0000","0.90274","0.9027" +"GO:0006101","citrate metabolic process",4,0,1.69,2840,"1.0000","0.90274","0.9027" +"GO:0048518","positive regulation of biological proces...",303,125,127.72,1261,"0.6535","0.90377","0.9038" +"GO:0007088","regulation of mitotic nuclear division",10,4,4.22,1307,"0.6705","0.90469","0.9047" +"GO:0050773","regulation of dendrite development",3,1,1.26,1897,"0.8066","0.90471","0.9047" +"GO:0003281","ventricular septum development",3,0,1.26,2841,"1.0000","0.90539","0.9054" +"GO:0007283","spermatogenesis",31,11,13.07,2017,"0.8257","0.90652","0.9065" +"GO:0001505","regulation of neurotransmitter levels",19,5,8.01,2551,"0.9527","0.90740","0.9074" +"GO:0044282","small molecule catabolic process",19,6,8.01,2190,"0.8802","0.90740","0.9074" +"GO:0006406","mRNA export from nucleus",10,3,4.22,2095,"0.8654","0.90784","0.9078" +"GO:0071427","mRNA-containing ribonucleoprotein comple...",10,3,4.22,2096,"0.8654","0.90784","0.9078" +"GO:0006694","steroid biosynthetic process",5,1,2.11,2466,"0.9354","0.90807","0.9081" +"GO:0015918","sterol transport",5,1,2.11,2467,"0.9354","0.90807","0.9081" +"GO:0001947","heart looping",8,1,3.37,2692,"0.9876","0.90835","0.9083" +"GO:0002164","larval development",8,2,3.37,2378,"0.9147","0.90835","0.9083" +"GO:0001570","vasculogenesis",3,1,1.26,1898,"0.8066","0.90842","0.9084" +"GO:0031047","gene silencing by RNA",16,7,6.74,959,"0.5438","0.90881","0.9088" +"GO:0060711","labyrinthine layer development",7,1,2.95,2663,"0.9784","0.90892","0.9089" +"GO:0006119","oxidative phosphorylation",6,1,2.53,2598,"0.9627","0.90932","0.9093" +"GO:0061351","neural precursor cell proliferation",6,1,2.53,2599,"0.9627","0.91003","0.9100" +"GO:0031503","protein-containing complex localization",20,6,8.43,2355,"0.9108","0.91018","0.9102" +"GO:0002066","columnar/cuboidal epithelial cell develo...",17,7,7.17,1173,"0.6235","0.91037","0.9104" +"GO:0032886","regulation of microtubule-based process",11,4,4.64,1563,"0.7527","0.91053","0.9105" +"GO:0010558","negative regulation of macromolecule bio...",82,33,34.56,1315,"0.6786","0.91065","0.9107" +"GO:0005996","monosaccharide metabolic process",13,4,5.48,2164,"0.8685","0.91069","0.9107" +"GO:0032103","positive regulation of response to exter...",7,2,2.95,2140,"0.8681","0.91196","0.9120" +"GO:0033143","regulation of intracellular steroid horm...",7,1,2.95,2664,"0.9784","0.91196","0.9120" +"GO:0048732","gland development",13,3,5.48,2573,"0.9582","0.91243","0.9124" +"GO:0055082","cellular chemical homeostasis",21,5,8.85,2645,"0.9767","0.91245","0.9124" +"GO:0010941","regulation of cell death",83,36,34.99,775,"0.4516","0.91295","0.9129" +"GO:0045109","intermediate filament organization",3,1,1.26,1899,"0.8066","0.91338","0.9134" +"GO:0060632","regulation of microtubule-based movement",3,0,1.26,2842,"1.0000","0.91338","0.9134" +"GO:0046649","lymphocyte activation",14,4,5.9,2324,"0.9064","0.91459","0.9146" +"GO:0035051","cardiocyte differentiation",6,2,2.53,1671,"0.7990","0.91536","0.9154" +"GO:0090263","positive regulation of canonical Wnt sig...",6,1,2.53,2600,"0.9627","0.91536","0.9154" +"GO:2000736","regulation of stem cell differentiation",6,1,2.53,2601,"0.9627","0.91536","0.9154" +"GO:0045665","negative regulation of neuron differenti...",6,0,2.53,2843,"1.0000","0.91536","0.9154" +"GO:0010468","regulation of gene expression",434,172,182.94,2198,"0.8873","0.91595","0.9160" +"GO:0035303","regulation of dephosphorylation",9,3,3.79,1954,"0.8069","0.91770","0.9177" +"GO:0043066","negative regulation of apoptotic process",43,19,18.12,774,"0.4505","0.91822","0.9182" +"GO:0019538","protein metabolic process",837,337,352.81,2366,"0.9145","0.86175","0.9187" +"GO:0033993","response to lipid",47,16,19.81,2314,"0.9017","0.91880","0.9188" +"GO:0048705","skeletal system morphogenesis",7,1,2.95,2665,"0.9784","0.91936","0.9194" +"GO:0033138","positive regulation of peptidyl-serine p...",3,1,1.26,1900,"0.8066","0.91964","0.9196" +"GO:0043588","skin development",6,2,2.53,1672,"0.7990","0.92143","0.9214" +"GO:0008152","metabolic process",1914,800,806.77,1524,"0.7293","0.47510","0.9216" +"GO:0007020","microtubule nucleation",7,3,2.95,1202,"0.6262","0.92244","0.9224" +"GO:0098657","import into cell",40,13,16.86,2392,"0.9219","0.92276","0.9228" +"GO:0042440","pigment metabolic process",7,2,2.95,2141,"0.8681","0.92285","0.9228" +"GO:0051336","regulation of hydrolase activity",53,18,22.34,2362,"0.9143","0.92312","0.9231" +"GO:0007163","establishment or maintenance of cell pol...",15,4,6.32,2420,"0.9343","0.92318","0.9232" +"GO:0007030","Golgi organization",15,5,6.32,2031,"0.8298","0.92332","0.9233" +"GO:0042110","T cell activation",11,2,4.64,2652,"0.9783","0.92334","0.9233" +"GO:0001525","angiogenesis",12,3,5.06,2506,"0.9375","0.92362","0.9236" +"GO:0090130","tissue migration",12,4,5.06,1998,"0.8181","0.92362","0.9236" +"GO:0090132","epithelium migration",12,4,5.06,1999,"0.8181","0.92362","0.9236" +"GO:0002697","regulation of immune effector process",12,5,5.06,1162,"0.6219","0.92393","0.9239" +"GO:1903332","regulation of protein folding",12,5,5.06,1163,"0.6219","0.92393","0.9239" +"GO:1901564","organonitrogen compound metabolic proces...",944,382,397.91,2351,"0.9090","0.72054","0.9243" +"GO:0006493","protein O-linked glycosylation",16,6,6.74,1534,"0.7327","0.92440","0.9244" +"GO:0120009","intermembrane lipid transfer",3,0,1.26,2844,"1.0000","0.92478","0.9248" +"GO:0010259","multicellular organism aging",5,2,2.11,1451,"0.6994","0.92510","0.9251" +"GO:0051153","regulation of striated muscle cell diffe...",5,1,2.11,2468,"0.9354","0.92510","0.9251" +"GO:0055007","cardiac muscle cell differentiation",5,2,2.11,1452,"0.6994","0.92510","0.9251" +"GO:2000145","regulation of cell motility",29,11,12.22,1542,"0.7405","0.92513","0.9251" +"GO:0043462","regulation of ATPase activity",11,3,4.64,2337,"0.9077","0.92544","0.9254" +"GO:0044772","mitotic cell cycle phase transition",35,14,14.75,1280,"0.6640","0.92572","0.9257" +"GO:0016125","sterol metabolic process",4,1,1.69,2282,"0.8882","0.92578","0.9258" +"GO:1902652","secondary alcohol metabolic process",4,1,1.69,2283,"0.8882","0.92578","0.9258" +"GO:0030072","peptide hormone secretion",8,2,3.37,2379,"0.9147","0.92636","0.9264" +"GO:0070925","organelle assembly",55,17,23.18,2632,"0.9691","0.92655","0.9265" +"GO:0006793","phosphorus metabolic process",325,127,136.99,2311,"0.8955","0.92663","0.9266" +"GO:0032502","developmental process",357,135,150.48,2629,"0.9673","0.92673","0.9267" +"GO:0051187","cofactor catabolic process",8,5,3.37,341,"0.2084","0.08294","0.9282" +"GO:0010256","endomembrane system organization",35,10,14.75,2627,"0.9672","0.92835","0.9284" +"GO:0030308","negative regulation of cell growth",13,5,5.48,1476,"0.7047","0.92839","0.9284" +"GO:0050000","chromosome localization",3,0,1.26,2845,"1.0000","0.92843","0.9284" +"GO:0051303","establishment of chromosome localization",3,0,1.26,2846,"1.0000","0.92843","0.9284" +"GO:0051384","response to glucocorticoid",3,0,1.26,2847,"1.0000","0.92843","0.9284" +"GO:2000026","regulation of multicellular organismal d...",70,27,29.51,1588,"0.7685","0.92868","0.9287" +"GO:0048821","erythrocyte development",5,1,2.11,2469,"0.9354","0.92897","0.9290" +"GO:0009266","response to temperature stimulus",35,14,14.75,1281,"0.6640","0.92901","0.9290" +"GO:0019098","reproductive behavior",7,2,2.95,2142,"0.8681","0.92914","0.9291" +"GO:0030260","entry into host cell",3,1,1.26,1901,"0.8066","0.92918","0.9292" +"GO:0044409","entry into host",3,1,1.26,1902,"0.8066","0.92918","0.9292" +"GO:0051806","entry into cell of other organism involv...",3,1,1.26,1903,"0.8066","0.92918","0.9292" +"GO:0051828","entry into other organism involved in sy...",3,1,1.26,1904,"0.8066","0.92918","0.9292" +"GO:0090169","regulation of spindle assembly",3,1,1.26,1905,"0.8066","0.92918","0.9292" +"GO:1901673","regulation of mitotic spindle assembly",3,1,1.26,1906,"0.8066","0.92918","0.9292" +"GO:0051928","positive regulation of calcium ion trans...",7,3,2.95,1203,"0.6262","0.92924","0.9292" +"GO:0006081","cellular aldehyde metabolic process",4,0,1.69,2848,"1.0000","0.92944","0.9294" +"GO:0030097","hemopoiesis",24,7,10.12,2496,"0.9361","0.92984","0.9298" +"GO:0048207","vesicle targeting, rough ER to cis-Golgi",4,1,1.69,2284,"0.8882","0.93047","0.9305" +"GO:0048208","COPII vesicle coating",4,1,1.69,2285,"0.8882","0.93047","0.9305" +"GO:0016239","positive regulation of macroautophagy",4,0,1.69,2849,"1.0000","0.93047","0.9305" +"GO:0043981","histone H4-K5 acetylation",3,1,1.26,1907,"0.8066","0.93052","0.9305" +"GO:0043982","histone H4-K8 acetylation",3,1,1.26,1908,"0.8066","0.93052","0.9305" +"GO:1901615","organic hydroxy compound metabolic proce...",16,4,6.74,2560,"0.9544","0.93069","0.9307" +"GO:0042558","pteridine-containing compound metabolic ...",3,1,1.26,1909,"0.8066","0.93111","0.9311" +"GO:0090090","negative regulation of canonical Wnt sig...",7,2,2.95,2143,"0.8681","0.93186","0.9319" +"GO:0002694","regulation of leukocyte activation",11,3,4.64,2338,"0.9077","0.93233","0.9323" +"GO:0050865","regulation of cell activation",11,3,4.64,2339,"0.9077","0.93233","0.9323" +"GO:0048534","hematopoietic or lymphoid organ developm...",25,7,10.54,2556,"0.9528","0.93293","0.9329" +"GO:0001700","embryonic development via the syncytial ...",8,3,3.37,1507,"0.7282","0.93294","0.9329" +"GO:0072521","purine-containing compound metabolic pro...",37,12,15.6,2388,"0.9168","0.93326","0.9333" +"GO:0008219","cell death",112,48,47.21,831,"0.4755","0.93377","0.9338" +"GO:0045216","cell-cell junction organization",5,1,2.11,2470,"0.9354","0.93411","0.9341" +"GO:0060669","embryonic placenta morphogenesis",5,1,2.11,2471,"0.9354","0.93411","0.9341" +"GO:0060706","cell differentiation involved in embryon...",5,1,2.11,2472,"0.9354","0.93411","0.9341" +"GO:0060713","labyrinthine layer morphogenesis",5,1,2.11,2473,"0.9354","0.93411","0.9341" +"GO:0006812","cation transport",78,26,32.88,2576,"0.9583","0.93442","0.9344" +"GO:0030258","lipid modification",14,4,5.9,2325,"0.9064","0.93452","0.9345" +"GO:0001909","leukocyte mediated cytotoxicity",7,3,2.95,1204,"0.6262","0.93500","0.9350" +"GO:0001910","regulation of leukocyte mediated cytotox...",7,3,2.95,1205,"0.6262","0.93500","0.9350" +"GO:0001912","positive regulation of leukocyte mediate...",7,3,2.95,1206,"0.6262","0.93500","0.9350" +"GO:0001913","T cell mediated cytotoxicity",7,3,2.95,1207,"0.6262","0.93500","0.9350" +"GO:0001914","regulation of T cell mediated cytotoxici...",7,3,2.95,1208,"0.6262","0.93500","0.9350" +"GO:0001916","positive regulation of T cell mediated c...",7,3,2.95,1209,"0.6262","0.93500","0.9350" +"GO:0002456","T cell mediated immunity",7,3,2.95,1210,"0.6262","0.93500","0.9350" +"GO:0002709","regulation of T cell mediated immunity",7,3,2.95,1211,"0.6262","0.93500","0.9350" +"GO:0002711","positive regulation of T cell mediated i...",7,3,2.95,1212,"0.6262","0.93500","0.9350" +"GO:0010045","response to nickel cation",7,3,2.95,1213,"0.6262","0.93500","0.9350" +"GO:0010656","negative regulation of muscle cell apopt...",7,3,2.95,1214,"0.6262","0.93500","0.9350" +"GO:0010657","muscle cell apoptotic process",7,3,2.95,1215,"0.6262","0.93500","0.9350" +"GO:0010658","striated muscle cell apoptotic process",7,3,2.95,1216,"0.6262","0.93500","0.9350" +"GO:0010659","cardiac muscle cell apoptotic process",7,3,2.95,1217,"0.6262","0.93500","0.9350" +"GO:0010660","regulation of muscle cell apoptotic proc...",7,3,2.95,1218,"0.6262","0.93500","0.9350" +"GO:0010662","regulation of striated muscle cell apopt...",7,3,2.95,1219,"0.6262","0.93500","0.9350" +"GO:0010664","negative regulation of striated muscle c...",7,3,2.95,1220,"0.6262","0.93500","0.9350" +"GO:0010665","regulation of cardiac muscle cell apopto...",7,3,2.95,1221,"0.6262","0.93500","0.9350" +"GO:0010667","negative regulation of cardiac muscle ce...",7,3,2.95,1222,"0.6262","0.93500","0.9350" +"GO:0016191","synaptic vesicle uncoating",7,3,2.95,1223,"0.6262","0.93500","0.9350" +"GO:0031110","regulation of microtubule polymerization...",7,3,2.95,1224,"0.6262","0.93500","0.9350" +"GO:0033120","positive regulation of RNA splicing",7,3,2.95,1225,"0.6262","0.93500","0.9350" +"GO:0044849","estrous cycle",7,3,2.95,1226,"0.6262","0.93500","0.9350" +"GO:0048026","positive regulation of mRNA splicing, vi...",7,3,2.95,1227,"0.6262","0.93500","0.9350" +"GO:0048488","synaptic vesicle endocytosis",7,3,2.95,1228,"0.6262","0.93500","0.9350" +"GO:0050685","positive regulation of mRNA processing",7,3,2.95,1229,"0.6262","0.93500","0.9350" +"GO:0061684","chaperone-mediated autophagy",7,3,2.95,1230,"0.6262","0.93500","0.9350" +"GO:0061738","late endosomal microautophagy",7,3,2.95,1231,"0.6262","0.93500","0.9350" +"GO:0061741","chaperone-mediated protein transport inv...",7,3,2.95,1232,"0.6262","0.93500","0.9350" +"GO:0071276","cellular response to cadmium ion",7,3,2.95,1233,"0.6262","0.93500","0.9350" +"GO:0072318","clathrin coat disassembly",7,3,2.95,1234,"0.6262","0.93500","0.9350" +"GO:0072319","vesicle uncoating",7,3,2.95,1235,"0.6262","0.93500","0.9350" +"GO:0097212","lysosomal membrane organization",7,3,2.95,1236,"0.6262","0.93500","0.9350" +"GO:0097213","regulation of lysosomal membrane permeab...",7,3,2.95,1237,"0.6262","0.93500","0.9350" +"GO:0097214","positive regulation of lysosomal membran...",7,3,2.95,1238,"0.6262","0.93500","0.9350" +"GO:0140238","presynaptic endocytosis",7,3,2.95,1239,"0.6262","0.93500","0.9350" +"GO:1903334","positive regulation of protein folding",7,3,2.95,1240,"0.6262","0.93500","0.9350" +"GO:1904592","positive regulation of protein refolding",7,3,2.95,1241,"0.6262","0.93500","0.9350" +"GO:1904764","chaperone-mediated autophagy translocati...",7,3,2.95,1242,"0.6262","0.93500","0.9350" +"GO:1905710","positive regulation of membrane permeabi...",7,3,2.95,1243,"0.6262","0.93500","0.9350" +"GO:1990832","slow axonal transport",7,3,2.95,1244,"0.6262","0.93500","0.9350" +"GO:1990834","response to odorant",7,3,2.95,1245,"0.6262","0.93500","0.9350" +"GO:0006892","post-Golgi vesicle-mediated transport",8,2,3.37,2380,"0.9147","0.93507","0.9351" +"GO:0061564","axon development",34,11,14.33,2358,"0.9113","0.93515","0.9351" +"GO:0007600","sensory perception",34,11,14.33,2359,"0.9113","0.93523","0.9352" +"GO:0007498","mesoderm development",10,3,4.22,2097,"0.8654","0.93535","0.9353" +"GO:0048268","clathrin coat assembly",3,1,1.26,1910,"0.8066","0.93548","0.9355" +"GO:0032509","endosome transport via multivesicular bo...",3,0,1.26,2850,"1.0000","0.93548","0.9355" +"GO:0071985","multivesicular body sorting pathway",3,0,1.26,2851,"1.0000","0.93548","0.9355" +"GO:0030154","cell differentiation",182,75,76.72,1253,"0.6334","0.93563","0.9356" +"GO:0002520","immune system development",26,8,10.96,2389,"0.9184","0.93579","0.9358" +"GO:0007292","female gamete generation",30,12,12.65,1269,"0.6616","0.93610","0.9361" +"GO:0043085","positive regulation of catalytic activit...",61,21,25.71,2384,"0.9153","0.93680","0.9368" +"GO:0007631","feeding behavior",6,2,2.53,1673,"0.7990","0.93766","0.9377" +"GO:0043618","regulation of transcription from RNA pol...",12,4,5.06,2000,"0.8181","0.93812","0.9381" +"GO:0043620","regulation of DNA-templated transcriptio...",12,4,5.06,2001,"0.8181","0.93812","0.9381" +"GO:0051249","regulation of lymphocyte activation",10,3,4.22,2098,"0.8654","0.93831","0.9383" +"GO:0043086","negative regulation of catalytic activit...",26,9,10.96,2038,"0.8366","0.93850","0.9385" +"GO:0032781","positive regulation of ATPase activity",9,3,3.79,1955,"0.8069","0.93861","0.9386" +"GO:0044087","regulation of cellular component biogene...",61,24,25.71,1484,"0.7174","0.93873","0.9387" +"GO:0051701","interaction with host",6,1,2.53,2602,"0.9627","0.93905","0.9391" +"GO:0044281","small molecule metabolic process",187,59,78.82,2742,"0.9992","0.93957","0.9396" +"GO:0015893","drug transport",11,3,4.64,2340,"0.9077","0.94038","0.9404" +"GO:1903169","regulation of calcium ion transmembrane ...",5,2,2.11,1453,"0.6994","0.94047","0.9405" +"GO:0044271","cellular nitrogen compound biosynthetic ...",656,247,276.51,2718,"0.9968","0.94055","0.9406" +"GO:0032774","RNA biosynthetic process",410,166,172.82,1613,"0.7860","0.94077","0.9408" +"GO:0030148","sphingolipid biosynthetic process",3,0,1.26,2852,"1.0000","0.94096","0.9410" +"GO:0006790","sulfur compound metabolic process",22,9,9.27,1247,"0.6270","0.67828","0.9412" +"GO:0033522","histone H2A ubiquitination",5,1,2.11,2474,"0.9354","0.94175","0.9418" +"GO:0035162","embryonic hemopoiesis",5,1,2.11,2475,"0.9354","0.94175","0.9418" +"GO:0048706","embryonic skeletal system development",5,0,2.11,2853,"1.0000","0.94175","0.9418" +"GO:0035518","histone H2A monoubiquitination",3,1,1.26,1911,"0.8066","0.94206","0.9421" +"GO:0012501","programmed cell death",98,42,41.31,837,"0.4820","0.94210","0.9421" +"GO:0048523","negative regulation of cellular process",241,96,101.58,1628,"0.7967","0.94260","0.9426" +"GO:0045934","negative regulation of nucleobase-contai...",82,34,34.56,1138,"0.5933","0.94276","0.9428" +"GO:0045815","positive regulation of gene expression, ...",6,2,2.53,1674,"0.7990","0.94276","0.9428" +"GO:0048645","animal organ formation",4,1,1.69,2286,"0.8882","0.94278","0.9428" +"GO:0002119","nematode larval development",4,0,1.69,2854,"1.0000","0.94278","0.9428" +"GO:0016202","regulation of striated muscle tissue dev...",4,0,1.69,2855,"1.0000","0.94278","0.9428" +"GO:0048634","regulation of muscle organ development",4,0,1.69,2856,"1.0000","0.94278","0.9428" +"GO:1901861","regulation of muscle tissue development",4,0,1.69,2857,"1.0000","0.94278","0.9428" +"GO:0051716","cellular response to stimulus",520,215,219.19,1314,"0.6775","0.75053","0.9429" +"GO:0046890","regulation of lipid biosynthetic process",4,1,1.69,2287,"0.8882","0.94325","0.9433" +"GO:0016126","sterol biosynthetic process",3,0,1.26,2858,"1.0000","0.94382","0.9438" +"GO:1902653","secondary alcohol biosynthetic process",3,0,1.26,2859,"1.0000","0.94382","0.9438" +"GO:0070897","transcription preinitiation complex asse...",6,2,2.53,1675,"0.7990","0.94391","0.9439" +"GO:0033108","mitochondrial respiratory chain complex ...",7,2,2.95,2144,"0.8681","0.94421","0.9442" +"GO:0045785","positive regulation of cell adhesion",9,3,3.79,1956,"0.8069","0.94432","0.9443" +"GO:0010629","negative regulation of gene expression",121,46,51,2048,"0.8500","0.94463","0.9446" +"GO:0043279","response to alkaloid",5,2,2.11,1454,"0.6994","0.94490","0.9449" +"GO:0032008","positive regulation of TOR signaling",7,2,2.95,2145,"0.8681","0.94535","0.9453" +"GO:0051260","protein homooligomerization",11,4,4.64,1564,"0.7527","0.94542","0.9454" +"GO:0006730","one-carbon metabolic process",3,0,1.26,2860,"1.0000","0.94583","0.9458" +"GO:0007478","leg disc morphogenesis",3,1,1.26,1912,"0.8066","0.94649","0.9465" +"GO:0007480","imaginal disc-derived leg morphogenesis",3,1,1.26,1913,"0.8066","0.94649","0.9465" +"GO:0035151","regulation of tube size, open tracheal s...",3,1,1.26,1914,"0.8066","0.94649","0.9465" +"GO:0035159","regulation of tube length, open tracheal...",3,1,1.26,1915,"0.8066","0.94649","0.9465" +"GO:0035218","leg disc development",3,1,1.26,1916,"0.8066","0.94649","0.9465" +"GO:0030856","regulation of epithelial cell differenti...",3,1,1.26,1917,"0.8066","0.94675","0.9468" +"GO:0060996","dendritic spine development",3,0,1.26,2861,"1.0000","0.94675","0.9468" +"GO:0040012","regulation of locomotion",37,13,15.6,2050,"0.8505","0.94687","0.9469" +"GO:0007043","cell-cell junction assembly",4,1,1.69,2288,"0.8882","0.94695","0.9469" +"GO:0035152","regulation of tube architecture, open tr...",4,1,1.69,2289,"0.8882","0.94695","0.9469" +"GO:0008360","regulation of cell shape",4,0,1.69,2862,"1.0000","0.94695","0.9469" +"GO:0009108","coenzyme biosynthetic process",17,4,7.17,2631,"0.9687","0.94703","0.9470" +"GO:0000184","nuclear-transcribed mRNA catabolic proce...",7,1,2.95,2666,"0.9784","0.94725","0.9473" +"GO:0010721","negative regulation of cell development",13,3,5.48,2574,"0.9582","0.94747","0.9475" +"GO:0032785","negative regulation of DNA-templated tra...",3,1,1.26,1918,"0.8066","0.94780","0.9478" +"GO:0034244","negative regulation of transcription elo...",3,1,1.26,1919,"0.8066","0.94780","0.9478" +"GO:0043010","camera-type eye development",23,4,9.69,2724,"0.9972","0.94803","0.9480" +"GO:0006458","'de novo' protein folding",11,4,4.64,1565,"0.7527","0.94810","0.9481" +"GO:0051084","'de novo' posttranslational protein fold...",11,4,4.64,1566,"0.7527","0.94810","0.9481" +"GO:0007450","dorsal/ventral pattern formation, imagin...",3,1,1.26,1920,"0.8066","0.94845","0.9484" +"GO:0031101","fin regeneration",3,1,1.26,1921,"0.8066","0.94845","0.9484" +"GO:0032330","regulation of chondrocyte differentiatio...",3,1,1.26,1922,"0.8066","0.94845","0.9484" +"GO:0048048","embryonic eye morphogenesis",3,1,1.26,1923,"0.8066","0.94845","0.9484" +"GO:0061035","regulation of cartilage development",3,1,1.26,1924,"0.8066","0.94845","0.9484" +"GO:0070193","synaptonemal complex organization",5,1,2.11,2476,"0.9354","0.94896","0.9490" +"GO:0034472","snRNA 3'-end processing",5,1,2.11,2477,"0.9354","0.94946","0.9495" +"GO:0030334","regulation of cell migration",26,9,10.96,2039,"0.8366","0.94959","0.9496" +"GO:0006796","phosphate-containing compound metabolic ...",322,126,135.73,2306,"0.8906","0.94973","0.9497" +"GO:0000291","nuclear-transcribed mRNA catabolic proce...",5,2,2.11,1455,"0.6994","0.95006","0.9501" +"GO:0050863","regulation of T cell activation",8,1,3.37,2693,"0.9876","0.95037","0.9504" +"GO:0001568","blood vessel development",19,5,8.01,2552,"0.9527","0.95119","0.9512" +"GO:0001944","vasculature development",19,5,8.01,2553,"0.9527","0.95119","0.9512" +"GO:0097659","nucleic acid-templated transcription",405,163,170.71,1980,"0.8145","0.95146","0.9515" +"GO:0000288","nuclear-transcribed mRNA catabolic proce...",9,4,3.79,1109,"0.5709","0.95212","0.9521" +"GO:0060491","regulation of cell projection assembly",12,3,5.06,2507,"0.9375","0.95249","0.9525" +"GO:0120032","regulation of plasma membrane bounded ce...",12,3,5.06,2508,"0.9375","0.95249","0.9525" +"GO:0032989","cellular component morphogenesis",64,20,26.98,2640,"0.9738","0.95256","0.9526" +"GO:0006351","transcription, DNA-templated",404,162,170.29,2035,"0.8311","0.95350","0.9535" +"GO:0002064","epithelial cell development",23,9,9.69,1324,"0.6903","0.95381","0.9538" +"GO:0051961","negative regulation of nervous system de...",12,3,5.06,2509,"0.9375","0.95398","0.9540" +"GO:0042180","cellular ketone metabolic process",12,1,5.06,2735,"0.9986","0.95520","0.9552" +"GO:0043604","amide biosynthetic process",189,60,79.67,2741,"0.9991","0.95593","0.9559" +"GO:0010506","regulation of autophagy",17,2,7.17,2738,"0.9988","0.95659","0.9566" +"GO:0040025","vulval development",3,0,1.26,2863,"1.0000","0.95679","0.9568" +"GO:0048731","system development",237,88,99.9,2566,"0.9566","0.95682","0.9568" +"GO:0043043","peptide biosynthetic process",185,58,77.98,2743,"0.9993","0.95691","0.9569" +"GO:0001822","kidney development",20,8,8.43,1263,"0.6596","0.95708","0.9571" +"GO:0030855","epithelial cell differentiation",36,13,15.17,1982,"0.8177","0.95713","0.9571" +"GO:0006412","translation",184,57,77.56,2744,"0.9995","0.95715","0.9572" +"GO:0010605","negative regulation of macromolecule met...",156,58,65.76,2386,"0.9166","0.95756","0.9576" +"GO:1903202","negative regulation of oxidative stress-...",10,4,4.22,1308,"0.6705","0.95867","0.9587" +"GO:0061008","hepaticobiliary system development",6,0,2.53,2864,"1.0000","0.95869","0.9587" +"GO:0098876","vesicle-mediated transport to the plasma...",5,1,2.11,2478,"0.9354","0.95895","0.9590" +"GO:0051345","positive regulation of hydrolase activit...",32,12,13.49,1586,"0.7613","0.95897","0.9590" +"GO:0010038","response to metal ion",26,8,10.96,2390,"0.9184","0.95918","0.9592" +"GO:0007616","long-term memory",3,1,1.26,1925,"0.8066","0.95949","0.9595" +"GO:0010257","NADH dehydrogenase complex assembly",5,1,2.11,2479,"0.9354","0.95985","0.9599" +"GO:0032981","mitochondrial respiratory chain complex ...",5,1,2.11,2480,"0.9354","0.95985","0.9599" +"GO:0007423","sensory organ development",48,17,20.23,2077,"0.8649","0.95989","0.9599" +"GO:0007419","ventral cord development",3,1,1.26,1926,"0.8066","0.95996","0.9600" +"GO:0043297","apical junction assembly",3,1,1.26,1927,"0.8066","0.95996","0.9600" +"GO:0051973","positive regulation of telomerase activi...",3,0,1.26,2865,"1.0000","0.95996","0.9600" +"GO:2000573","positive regulation of DNA biosynthetic ...",3,0,1.26,2866,"1.0000","0.95996","0.9600" +"GO:0042493","response to drug",52,17,21.92,2517,"0.9394","0.96034","0.9603" +"GO:0010951","negative regulation of endopeptidase act...",5,2,2.11,1456,"0.6994","0.96039","0.9604" +"GO:0043154","negative regulation of cysteine-type end...",5,2,2.11,1457,"0.6994","0.96039","0.9604" +"GO:2000117","negative regulation of cysteine-type end...",5,2,2.11,1458,"0.6994","0.96039","0.9604" +"GO:0006091","generation of precursor metabolites and ...",18,5,7.59,2412,"0.9336","0.96050","0.9605" +"GO:0009205","purine ribonucleoside triphosphate metab...",18,5,7.59,2413,"0.9336","0.96050","0.9605" +"GO:0030520","intracellular estrogen receptor signalin...",3,0,1.26,2867,"1.0000","0.96133","0.9613" +"GO:0033146","regulation of intracellular estrogen rec...",3,0,1.26,2868,"1.0000","0.96133","0.9613" +"GO:0030031","cell projection assembly",22,4,9.27,2713,"0.9958","0.96147","0.9615" +"GO:0120031","plasma membrane bounded cell projection ...",22,4,9.27,2714,"0.9958","0.96147","0.9615" +"GO:0071025","RNA surveillance",6,1,2.53,2603,"0.9627","0.96209","0.9621" +"GO:0016973","poly(A)+ mRNA export from nucleus",4,1,1.69,2290,"0.8882","0.96214","0.9621" +"GO:0006733","oxidoreduction coenzyme metabolic proces...",10,2,4.22,2620,"0.9655","0.96255","0.9626" +"GO:0045765","regulation of angiogenesis",6,1,2.53,2604,"0.9627","0.96257","0.9626" +"GO:1901342","regulation of vasculature development",6,1,2.53,2605,"0.9627","0.96257","0.9626" +"GO:0001667","ameboidal-type cell migration",13,4,5.48,2165,"0.8685","0.96263","0.9626" +"GO:0006887","exocytosis",21,8,8.85,1487,"0.7225","0.96304","0.9630" +"GO:0098609","cell-cell adhesion",28,8,11.8,2558,"0.9538","0.96304","0.9630" +"GO:0007268","chemical synaptic transmission",21,7,8.85,2056,"0.8519","0.96308","0.9631" +"GO:0098916","anterograde trans-synaptic signaling",21,7,8.85,2057,"0.8519","0.96308","0.9631" +"GO:0099536","synaptic signaling",21,7,8.85,2058,"0.8519","0.96308","0.9631" +"GO:0099537","trans-synaptic signaling",21,7,8.85,2059,"0.8519","0.96308","0.9631" +"GO:0016053","organic acid biosynthetic process",25,5,10.54,2709,"0.9949","0.96314","0.9631" +"GO:0046394","carboxylic acid biosynthetic process",25,5,10.54,2710,"0.9949","0.96314","0.9631" +"GO:0050673","epithelial cell proliferation",10,2,4.22,2621,"0.9655","0.96316","0.9632" +"GO:1901654","response to ketone",15,5,6.32,2032,"0.8298","0.96327","0.9633" +"GO:0048869","cellular developmental process",189,77,79.67,1317,"0.6845","0.96462","0.9646" +"GO:0048701","embryonic cranial skeleton morphogenesis",3,0,1.26,2869,"1.0000","0.96466","0.9647" +"GO:0048704","embryonic skeletal system morphogenesis",3,0,1.26,2870,"1.0000","0.96466","0.9647" +"GO:0070544","histone H3-K36 demethylation",3,0,1.26,2871,"1.0000","0.96466","0.9647" +"GO:1904888","cranial skeletal system development",3,0,1.26,2872,"1.0000","0.96466","0.9647" +"GO:2000177","regulation of neural precursor cell prol...",3,0,1.26,2873,"1.0000","0.96466","0.9647" +"GO:2000178","negative regulation of neural precursor ...",3,0,1.26,2874,"1.0000","0.96466","0.9647" +"GO:0043067","regulation of programmed cell death",70,30,29.51,862,"0.4981","0.96536","0.9654" +"GO:0001889","liver development",5,0,2.11,2875,"1.0000","0.96547","0.9655" +"GO:0022412","cellular process involved in reproductio...",44,16,18.55,2014,"0.8255","0.96548","0.9655" +"GO:0048513","animal organ development",179,66,75.45,2521,"0.9411","0.96577","0.9658" +"GO:0051703","intraspecies interaction between organis...",6,2,2.53,1676,"0.7990","0.96582","0.9658" +"GO:0019222","regulation of metabolic process",533,213,224.67,2193,"0.8828","0.96635","0.9663" +"GO:0007187","G protein-coupled receptor signaling pat...",3,0,1.26,2876,"1.0000","0.96659","0.9666" +"GO:0007188","adenylate cyclase-modulating G protein-c...",3,0,1.26,2877,"1.0000","0.96659","0.9666" +"GO:0031623","receptor internalization",3,0,1.26,2878,"1.0000","0.96659","0.9666" +"GO:0000904","cell morphogenesis involved in different...",44,13,18.55,2634,"0.9707","0.96671","0.9667" +"GO:0006891","intra-Golgi vesicle-mediated transport",3,1,1.26,1928,"0.8066","0.96690","0.9669" +"GO:0006893","Golgi to plasma membrane transport",4,0,1.69,2879,"1.0000","0.96704","0.9670" +"GO:0006900","vesicle budding from membrane",8,3,3.37,1508,"0.7282","0.96744","0.9674" +"GO:0048194","Golgi vesicle budding",8,3,3.37,1509,"0.7282","0.96744","0.9674" +"GO:0050821","protein stabilization",15,2,6.32,2719,"0.9968","0.96756","0.9676" +"GO:0051129","negative regulation of cellular componen...",52,20,21.92,1546,"0.7522","0.96817","0.9682" +"GO:0071027","nuclear RNA surveillance",5,1,2.11,2481,"0.9354","0.96832","0.9683" +"GO:0016236","macroautophagy",20,5,8.43,2626,"0.9666","0.96847","0.9685" +"GO:0007424","open tracheal system development",6,1,2.53,2606,"0.9627","0.96849","0.9685" +"GO:0030587","sorocarp development",5,2,2.11,1459,"0.6994","0.96856","0.9686" +"GO:0090702","non-reproductive fruiting body developme...",5,2,2.11,1460,"0.6994","0.96856","0.9686" +"GO:0099120","socially cooperative development",5,2,2.11,1461,"0.6994","0.96856","0.9686" +"GO:0006732","coenzyme metabolic process",23,4,9.69,2725,"0.9972","0.96875","0.9687" +"GO:0006783","heme biosynthetic process",3,0,1.26,2880,"1.0000","0.96877","0.9688" +"GO:0042168","heme metabolic process",3,0,1.26,2881,"1.0000","0.96877","0.9688" +"GO:0048232","male gamete generation",35,11,14.75,2400,"0.9306","0.96885","0.9688" +"GO:0070194","synaptonemal complex disassembly",3,1,1.26,1929,"0.8066","0.96908","0.9691" +"GO:1901019","regulation of calcium ion transmembrane ...",3,1,1.26,1930,"0.8066","0.96908","0.9691" +"GO:1901021","positive regulation of calcium ion trans...",3,1,1.26,1931,"0.8066","0.96908","0.9691" +"GO:1901894","regulation of calcium-transporting ATPas...",3,1,1.26,1932,"0.8066","0.96908","0.9691" +"GO:1901896","positive regulation of calcium-transport...",3,1,1.26,1933,"0.8066","0.96908","0.9691" +"GO:0009409","response to cold",3,0,1.26,2882,"1.0000","0.96908","0.9691" +"GO:1903747","regulation of establishment of protein l...",12,2,5.06,2687,"0.9865","0.96949","0.9695" +"GO:0000380","alternative mRNA splicing, via spliceoso...",3,1,1.26,1934,"0.8066","0.97039","0.9704" +"GO:0000381","regulation of alternative mRNA splicing,...",3,1,1.26,1935,"0.8066","0.97039","0.9704" +"GO:0050678","regulation of epithelial cell proliferat...",8,2,3.37,2381,"0.9147","0.97044","0.9704" +"GO:0009150","purine ribonucleotide metabolic process",30,9,12.65,2519,"0.9408","0.97045","0.9704" +"GO:1903201","regulation of oxidative stress-induced c...",11,4,4.64,1567,"0.7527","0.97058","0.9706" +"GO:0046903","secretion",59,19,24.87,2569,"0.9569","0.97061","0.9706" +"GO:0035304","regulation of protein dephosphorylation",6,2,2.53,1677,"0.7990","0.97064","0.9706" +"GO:0022898","regulation of transmembrane transporter ...",9,3,3.79,1957,"0.8069","0.97065","0.9706" +"GO:0032409","regulation of transporter activity",9,3,3.79,1958,"0.8069","0.97065","0.9706" +"GO:0032412","regulation of ion transmembrane transpor...",9,3,3.79,1959,"0.8069","0.97065","0.9706" +"GO:0042059","negative regulation of epidermal growth ...",6,2,2.53,1678,"0.7990","0.97106","0.9711" +"GO:1901185","negative regulation of ERBB signaling pa...",6,2,2.53,1679,"0.7990","0.97106","0.9711" +"GO:1990138","neuron projection extension",6,1,2.53,2607,"0.9627","0.97106","0.9711" +"GO:0043603","cellular amide metabolic process",213,70,89.78,2734,"0.9985","0.97092","0.9714" +"GO:0009144","purine nucleoside triphosphate metabolic...",19,5,8.01,2554,"0.9527","0.97147","0.9715" +"GO:0009199","ribonucleoside triphosphate metabolic pr...",19,6,8.01,2191,"0.8802","0.97147","0.9715" +"GO:0009062","fatty acid catabolic process",6,0,2.53,2883,"1.0000","0.97147","0.9715" +"GO:0072329","monocarboxylic acid catabolic process",6,0,2.53,2884,"1.0000","0.97147","0.9715" +"GO:0043633","polyadenylation-dependent RNA catabolic ...",3,0,1.26,2885,"1.0000","0.97148","0.9715" +"GO:0051604","protein maturation",23,7,9.69,2363,"0.9144","0.97211","0.9721" +"GO:0072593","reactive oxygen species metabolic proces...",4,0,1.69,2886,"1.0000","0.97229","0.9723" +"GO:2000377","regulation of reactive oxygen species me...",4,0,1.69,2887,"1.0000","0.97229","0.9723" +"GO:0001709","cell fate determination",6,1,2.53,2608,"0.9627","0.97230","0.9723" +"GO:0006518","peptide metabolic process",204,68,85.99,2721,"0.9970","0.97223","0.9727" +"GO:0040034","regulation of development, heterochronic",7,1,2.95,2667,"0.9784","0.97279","0.9728" +"GO:0007519","skeletal muscle tissue development",10,4,4.22,1309,"0.6705","0.97291","0.9729" +"GO:0019932","second-messenger-mediated signaling",10,4,4.22,1310,"0.6705","0.97291","0.9729" +"GO:0009719","response to endogenous stimulus",83,32,34.99,1611,"0.7836","0.97317","0.9732" +"GO:0009058","biosynthetic process",853,327,359.55,2723,"0.9972","0.97336","0.9734" +"GO:0034762","regulation of transmembrane transport",13,4,5.48,2166,"0.8685","0.97341","0.9734" +"GO:1901575","organic substance catabolic process",208,91,87.67,509,"0.3390","0.31084","0.9736" +"GO:0051131","chaperone-mediated protein complex assem...",4,1,1.69,2291,"0.8882","0.97394","0.9739" +"GO:0000271","polysaccharide biosynthetic process",4,0,1.69,2888,"1.0000","0.97394","0.9739" +"GO:0016032","viral process",19,4,8.01,2684,"0.9856","0.97426","0.9743" +"GO:0016197","endosomal transport",20,6,8.43,2356,"0.9108","0.97470","0.9747" +"GO:0000902","cell morphogenesis",54,16,22.76,2673,"0.9800","0.97471","0.9747" +"GO:0098655","cation transmembrane transport",35,11,14.75,2401,"0.9306","0.97476","0.9748" +"GO:0008631","intrinsic apoptotic signaling pathway in...",4,1,1.69,2292,"0.8882","0.97491","0.9749" +"GO:0032873","negative regulation of stress-activated ...",4,1,1.69,2293,"0.8882","0.97491","0.9749" +"GO:0070303","negative regulation of stress-activated ...",4,1,1.69,2294,"0.8882","0.97491","0.9749" +"GO:0010421","hydrogen peroxide-mediated programmed ce...",4,0,1.69,2889,"1.0000","0.97491","0.9749" +"GO:0097468","programmed cell death in response to rea...",4,0,1.69,2890,"1.0000","0.97491","0.9749" +"GO:0007606","sensory perception of chemical stimulus",11,4,4.64,1568,"0.7527","0.97499","0.9750" +"GO:1901576","organic substance biosynthetic process",837,320,352.81,2727,"0.9975","0.97544","0.9754" +"GO:0010001","glial cell differentiation",8,3,3.37,1510,"0.7282","0.97559","0.9756" +"GO:0006120","mitochondrial electron transport, NADH t...",3,0,1.26,2891,"1.0000","0.97573","0.9757" +"GO:0042063","gliogenesis",11,4,4.64,1569,"0.7527","0.97585","0.9759" +"GO:0031324","negative regulation of cellular metaboli...",125,49,52.69,1610,"0.7807","0.97596","0.9760" +"GO:0007417","central nervous system development",48,20,20.23,1126,"0.5826","0.97643","0.9764" +"GO:0051704","multi-organism process",115,44,48.47,2036,"0.8313","0.97644","0.9764" +"GO:0044249","cellular biosynthetic process",829,316,349.43,2730,"0.9979","0.97645","0.9765" +"GO:0046545","development of primary female sexual cha...",7,1,2.95,2668,"0.9784","0.97661","0.9766" +"GO:0046660","female sex differentiation",7,1,2.95,2669,"0.9784","0.97661","0.9766" +"GO:0048646","anatomical structure formation involved ...",63,17,26.56,2716,"0.9960","0.97696","0.9770" +"GO:1901661","quinone metabolic process",6,1,2.53,2609,"0.9627","0.97739","0.9774" +"GO:0006897","endocytosis",38,12,16.02,2427,"0.9344","0.97758","0.9776" +"GO:0006163","purine nucleotide metabolic process",31,9,13.07,2563,"0.9552","0.97759","0.9776" +"GO:0009259","ribonucleotide metabolic process",31,10,13.07,2318,"0.9056","0.97759","0.9776" +"GO:0007267","cell-cell signaling",71,28,29.93,1486,"0.7213","0.97859","0.9786" +"GO:0016226","iron-sulfur cluster assembly",6,1,2.53,2610,"0.9627","0.97874","0.9787" +"GO:0031163","metallo-sulfur cluster assembly",6,1,2.53,2611,"0.9627","0.97874","0.9787" +"GO:0009653","anatomical structure morphogenesis",153,56,64.49,2495,"0.9359","0.97951","0.9795" +"GO:0051205","protein insertion into membrane",5,1,2.11,2482,"0.9354","0.97987","0.9799" +"GO:0008585","female gonad development",6,1,2.53,2612,"0.9627","0.97993","0.9799" +"GO:0043269","regulation of ion transport",15,5,6.32,2033,"0.8298","0.98012","0.9801" +"GO:0019216","regulation of lipid metabolic process",12,1,5.06,2736,"0.9986","0.98033","0.9803" +"GO:0009892","negative regulation of metabolic process",164,62,69.13,2307,"0.8937","0.98036","0.9804" +"GO:0050768","negative regulation of neurogenesis",9,1,3.79,2706,"0.9928","0.98045","0.9804" +"GO:0030323","respiratory tube development",7,2,2.95,2146,"0.8681","0.98080","0.9808" +"GO:0030324","lung development",7,2,2.95,2147,"0.8681","0.98080","0.9808" +"GO:0048193","Golgi vesicle transport",41,11,17.28,2688,"0.9865","0.98080","0.9808" +"GO:0048519","negative regulation of biological proces...",288,112,121.4,2309,"0.8943","0.98107","0.9811" +"GO:0048284","organelle fusion",9,2,3.79,2539,"0.9455","0.98110","0.9811" +"GO:0036481","intrinsic apoptotic signaling pathway in...",3,0,1.26,2892,"1.0000","0.98113","0.9811" +"GO:1901298","regulation of hydrogen peroxide-mediated...",3,0,1.26,2893,"1.0000","0.98113","0.9811" +"GO:0042219","cellular modified amino acid catabolic p...",5,4,2.11,159,"0.1044","0.01171","0.9816" +"GO:0044273","sulfur compound catabolic process",5,4,2.11,160,"0.1044","0.01171","0.9816" +"GO:0050789","regulation of biological process",944,383,397.91,2310,"0.8949","0.97930","0.9820" +"GO:0051346","negative regulation of hydrolase activit...",15,4,6.32,2421,"0.9343","0.98203","0.9820" +"GO:0009896","positive regulation of catabolic process",24,7,10.12,2497,"0.9361","0.98220","0.9822" +"GO:0007165","signal transduction",352,139,148.37,2180,"0.8732","0.92280","0.9825" +"GO:0031323","regulation of cellular metabolic process",482,189,203.17,2406,"0.9322","0.98287","0.9829" +"GO:0034698","response to gonadotropin",5,1,2.11,2483,"0.9354","0.98325","0.9833" +"GO:0080090","regulation of primary metabolic process",477,190,201.06,2192,"0.8810","0.98346","0.9835" +"GO:0019236","response to pheromone",3,0,1.26,2894,"1.0000","0.98346","0.9835" +"GO:0036473","cell death in response to oxidative stre...",13,5,5.48,1477,"0.7047","0.98350","0.9835" +"GO:0019693","ribose phosphate metabolic process",32,10,13.49,2398,"0.9266","0.98358","0.9836" +"GO:0023052","signaling",378,152,159.33,1976,"0.8100","0.89281","0.9836" +"GO:1903842","response to arsenite ion",5,2,2.11,1462,"0.6994","0.98360","0.9836" +"GO:0031331","positive regulation of cellular cataboli...",22,7,9.27,2196,"0.8867","0.98368","0.9837" +"GO:0060429","epithelium development",73,26,30.77,2313,"0.8981","0.98382","0.9838" +"GO:0010466","negative regulation of peptidase activit...",6,2,2.53,1680,"0.7990","0.98393","0.9839" +"GO:0050896","response to stimulus",649,265,273.56,1624,"0.7949","0.87425","0.9840" +"GO:0032879","regulation of localization",120,44,50.58,2352,"0.9104","0.98409","0.9841" +"GO:0044403","symbiont process",22,4,9.27,2715,"0.9958","0.98423","0.9842" +"GO:0051171","regulation of nitrogen compound metaboli...",469,188,197.69,2062,"0.8523","0.98439","0.9844" +"GO:0042147","retrograde transport, endosome to Golgi",12,5,5.06,1164,"0.6219","0.98467","0.9847" +"GO:0006743","ubiquinone metabolic process",4,1,1.69,2295,"0.8882","0.98488","0.9849" +"GO:0006744","ubiquinone biosynthetic process",4,1,1.69,2296,"0.8882","0.98488","0.9849" +"GO:0042181","ketone biosynthetic process",4,1,1.69,2297,"0.8882","0.98488","0.9849" +"GO:1901663","quinone biosynthetic process",4,1,1.69,2298,"0.8882","0.98488","0.9849" +"GO:0016192","vesicle-mediated transport",151,50,63.65,2702,"0.9923","0.98488","0.9849" +"GO:0006066","alcohol metabolic process",9,2,3.79,2540,"0.9455","0.98523","0.9852" +"GO:0006635","fatty acid beta-oxidation",3,0,1.26,2895,"1.0000","0.98565","0.9856" +"GO:0019395","fatty acid oxidation",3,0,1.26,2896,"1.0000","0.98565","0.9856" +"GO:0030435","sporulation resulting in formation of a ...",3,0,1.26,2897,"1.0000","0.98565","0.9856" +"GO:0034440","lipid oxidation",3,0,1.26,2898,"1.0000","0.98565","0.9856" +"GO:0006517","protein deglycosylation",3,0,1.26,2899,"1.0000","0.98586","0.9859" +"GO:0048144","fibroblast proliferation",5,1,2.11,2484,"0.9354","0.98596","0.9860" +"GO:0048145","regulation of fibroblast proliferation",5,1,2.11,2485,"0.9354","0.98596","0.9860" +"GO:0007293","germarium-derived egg chamber formation",3,0,1.26,2900,"1.0000","0.98607","0.9861" +"GO:0019722","calcium-mediated signaling",5,2,2.11,1463,"0.6994","0.98639","0.9864" +"GO:0006650","glycerophospholipid metabolic process",32,9,13.49,2623,"0.9663","0.98641","0.9864" +"GO:0044419","interspecies interaction between organis...",23,5,9.69,2696,"0.9889","0.98676","0.9868" +"GO:0044782","cilium organization",17,2,7.17,2739,"0.9988","0.98691","0.9869" +"GO:0002790","peptide secretion",22,6,9.27,2549,"0.9523","0.98715","0.9871" +"GO:0009306","protein secretion",22,6,9.27,2550,"0.9523","0.98715","0.9871" +"GO:0040011","locomotion",84,31,35.41,2073,"0.8649","0.98716","0.9872" +"GO:0044262","cellular carbohydrate metabolic process",14,3,5.9,2638,"0.9723","0.98752","0.9875" +"GO:0065007","biological regulation",1001,399,421.93,2633,"0.9701","0.98635","0.9876" +"GO:0060271","cilium assembly",16,1,6.74,2745,"0.9998","0.98768","0.9877" +"GO:0014070","response to organic cyclic compound",49,16,20.65,2494,"0.9354","0.98781","0.9878" +"GO:1902115","regulation of organelle assembly",15,3,6.32,2679,"0.9818","0.98845","0.9885" +"GO:0006576","cellular biogenic amine metabolic proces...",5,0,2.11,2901,"1.0000","0.98896","0.9890" +"GO:0009605","response to external stimulus",92,35,38.78,2004,"0.8207","0.98907","0.9891" +"GO:0044283","small molecule biosynthetic process",51,14,21.5,2698,"0.9903","0.98930","0.9893" +"GO:0050794","regulation of cellular process",872,351,367.56,2391,"0.9216","0.98704","0.9894" +"GO:0003006","developmental process involved in reprod...",73,24,30.77,2581,"0.9611","0.99046","0.9905" +"GO:0006720","isoprenoid metabolic process",11,2,4.64,2653,"0.9783","0.99057","0.9906" +"GO:0044703","multi-organism reproductive process",67,26,28.24,1547,"0.7526","0.99061","0.9906" +"GO:0051172","negative regulation of nitrogen compound...",119,46,50.16,1978,"0.8115","0.99065","0.9907" +"GO:0051049","regulation of transport",70,22,29.51,2644,"0.9766","0.99086","0.9909" +"GO:0009894","regulation of catabolic process",59,19,24.87,2570,"0.9569","0.99087","0.9909" +"GO:0006753","nucleoside phosphate metabolic process",51,16,21.5,2579,"0.9588","0.99093","0.9909" +"GO:0007447","imaginal disc pattern formation",4,1,1.69,2299,"0.8882","0.99128","0.9913" +"GO:0006638","neutral lipid metabolic process",5,0,2.11,2902,"1.0000","0.99178","0.9918" +"GO:0006639","acylglycerol metabolic process",5,0,2.11,2903,"1.0000","0.99178","0.9918" +"GO:0072001","renal system development",21,8,8.85,1488,"0.7225","0.99180","0.9918" +"GO:1901700","response to oxygen-containing compound",62,21,26.13,2399,"0.9300","0.99193","0.9919" +"GO:0048259","regulation of receptor-mediated endocyto...",3,0,1.26,2904,"1.0000","0.99194","0.9919" +"GO:0031329","regulation of cellular catabolic process",52,18,21.92,2312,"0.8958","0.99197","0.9920" +"GO:0006629","lipid metabolic process",129,39,54.38,2733,"0.9984","0.99199","0.9920" +"GO:0051668","localization within membrane",6,1,2.53,2613,"0.9627","0.99203","0.9920" +"GO:0048568","embryonic organ development",37,11,15.6,2577,"0.9585","0.99206","0.9921" +"GO:0019953","sexual reproduction",61,23,25.71,1699,"0.7995","0.99206","0.9921" +"GO:0019637","organophosphate metabolic process",105,34,44.26,2685,"0.9858","0.99217","0.9922" +"GO:0030707","ovarian follicle cell development",16,6,6.74,1535,"0.7327","0.99217","0.9922" +"GO:0061077","chaperone-mediated protein folding",16,6,6.74,1536,"0.7327","0.99217","0.9922" +"GO:0009792","embryo development ending in birth or eg...",58,18,24.45,2635,"0.9707","0.99229","0.9923" +"GO:0009889","regulation of biosynthetic process",391,157,164.81,2005,"0.8208","0.99247","0.9925" +"GO:0009725","response to hormone",57,21,24.03,2034,"0.8302","0.99259","0.9926" +"GO:0007154","cell communication",387,156,163.12,1701,"0.8012","0.97163","0.9926" +"GO:0031326","regulation of cellular biosynthetic proc...",389,156,163.97,2018,"0.8259","0.99265","0.9927" +"GO:0042594","response to starvation",23,8,9.69,2011,"0.8234","0.99267","0.9927" +"GO:0010817","regulation of hormone levels",12,3,5.06,2510,"0.9375","0.99269","0.9927" +"GO:0000003","reproduction",115,41,48.47,2515,"0.9390","0.99289","0.9929" +"GO:0035268","protein mannosylation",5,1,2.11,2486,"0.9354","0.99298","0.9930" +"GO:0035269","protein O-linked mannosylation",5,1,2.11,2487,"0.9354","0.99298","0.9930" +"GO:0097502","mannosylation",5,1,2.11,2488,"0.9354","0.99298","0.9930" +"GO:0061024","membrane organization",54,16,22.76,2674,"0.9800","0.99298","0.9930" +"GO:0010556","regulation of macromolecule biosynthetic...",385,155,162.28,1937,"0.8066","0.99301","0.9930" +"GO:2001141","regulation of RNA biosynthetic process",346,138,145.84,2037,"0.8343","0.99310","0.9931" +"GO:0007276","gamete generation",53,17,22.34,2546,"0.9513","0.99312","0.9931" +"GO:1903506","regulation of nucleic acid-templated tra...",345,137,145.42,2051,"0.8509","0.99324","0.9932" +"GO:0032940","secretion by cell",52,17,21.92,2518,"0.9394","0.99325","0.9932" +"GO:2000112","regulation of cellular macromolecule bio...",382,153,161.02,2021,"0.8291","0.99327","0.9933" +"GO:0019219","regulation of nucleobase-containing comp...",381,151,160.6,2176,"0.8706","0.99336","0.9934" +"GO:0006355","regulation of transcription, DNA-templat...",344,136,145,2108,"0.8664","0.99338","0.9934" +"GO:0022414","reproductive process",107,40,45.1,2172,"0.8687","0.99341","0.9934" +"GO:0006641","triglyceride metabolic process",4,0,1.69,2905,"1.0000","0.99342","0.9934" +"GO:0000045","autophagosome assembly",6,2,2.53,1681,"0.7990","0.99358","0.9936" +"GO:1905037","autophagosome organization",6,2,2.53,1682,"0.7990","0.99358","0.9936" +"GO:0009117","nucleotide metabolic process",49,15,20.65,2622,"0.9657","0.99364","0.9936" +"GO:0048545","response to steroid hormone",32,11,13.49,2069,"0.8595","0.99379","0.9938" +"GO:1902017","regulation of cilium assembly",8,0,3.37,2906,"1.0000","0.99384","0.9938" +"GO:0044255","cellular lipid metabolic process",97,23,40.89,2748,"1.0000","0.99404","0.9940" +"GO:0006914","autophagy",44,10,18.55,2731,"0.9980","0.99430","0.9943" +"GO:0061919","process utilizing autophagic mechanism",44,10,18.55,2732,"0.9980","0.99430","0.9943" +"GO:0006836","neurotransmitter transport",20,6,8.43,2357,"0.9108","0.99436","0.9944" +"GO:0006622","protein targeting to lysosome",6,2,2.53,1683,"0.7990","0.99443","0.9944" +"GO:0061462","protein localization to lysosome",6,2,2.53,1684,"0.7990","0.99443","0.9944" +"GO:0061740","protein targeting to lysosome involved i...",6,2,2.53,1685,"0.7990","0.99443","0.9944" +"GO:0071211","protein targeting to vacuole involved in...",6,2,2.53,1686,"0.7990","0.99443","0.9944" +"GO:0009914","hormone transport",9,2,3.79,2541,"0.9455","0.99452","0.9945" +"GO:0046879","hormone secretion",9,2,3.79,2542,"0.9455","0.99452","0.9945" +"GO:0032787","monocarboxylic acid metabolic process",26,3,10.96,2747,"0.9999","0.99458","0.9946" +"GO:0051252","regulation of RNA metabolic process",364,143,153.43,2308,"0.8938","0.99459","0.9946" +"GO:0007215","glutamate receptor signaling pathway",4,1,1.69,2300,"0.8882","0.99468","0.9947" +"GO:0051050","positive regulation of transport",41,11,17.28,2689,"0.9865","0.99469","0.9947" +"GO:0010508","positive regulation of autophagy",7,0,2.95,2907,"1.0000","0.99481","0.9948" +"GO:0061061","muscle structure development",39,13,16.44,2315,"0.9022","0.99496","0.9950" +"GO:0006890","retrograde vesicle-mediated transport, G...",7,0,2.95,2908,"1.0000","0.99506","0.9951" +"GO:0045834","positive regulation of lipid metabolic p...",3,0,1.26,2909,"1.0000","0.99506","0.9951" +"GO:0046461","neutral lipid catabolic process",3,0,1.26,2910,"1.0000","0.99506","0.9951" +"GO:0046464","acylglycerol catabolic process",3,0,1.26,2911,"1.0000","0.99506","0.9951" +"GO:0050994","regulation of lipid catabolic process",3,0,1.26,2912,"1.0000","0.99506","0.9951" +"GO:1901701","cellular response to oxygen-containing c...",38,12,16.02,2428,"0.9344","0.99509","0.9951" +"GO:0007186","G protein-coupled receptor signaling pat...",34,8,14.33,2707,"0.9932","0.99520","0.9952" +"GO:0032990","cell part morphogenesis",37,11,15.6,2578,"0.9585","0.99522","0.9952" +"GO:0009953","dorsal/ventral pattern formation",8,2,3.37,2382,"0.9147","0.99533","0.9953" +"GO:0048812","neuron projection morphogenesis",35,11,14.75,2402,"0.9306","0.99548","0.9955" +"GO:0048858","cell projection morphogenesis",35,11,14.75,2403,"0.9306","0.99548","0.9955" +"GO:0120039","plasma membrane bounded cell projection ...",35,11,14.75,2404,"0.9306","0.99548","0.9955" +"GO:0048667","cell morphogenesis involved in neuron di...",33,10,13.91,2523,"0.9434","0.99574","0.9957" +"GO:0033692","cellular polysaccharide biosynthetic pro...",3,0,1.26,2913,"1.0000","0.99578","0.9958" +"GO:0034637","cellular carbohydrate biosynthetic proce...",3,0,1.26,2914,"1.0000","0.99578","0.9958" +"GO:0032504","multicellular organism reproduction",67,22,28.24,2565,"0.9559","0.99593","0.9959" +"GO:0062012","regulation of small molecule metabolic p...",15,3,6.32,2680,"0.9818","0.99595","0.9959" +"GO:0042330","taxis",31,9,13.07,2564,"0.9552","0.99600","0.9960" +"GO:0099172","presynapse organization",3,0,1.26,2915,"1.0000","0.99601","0.9960" +"GO:0099601","regulation of neurotransmitter receptor ...",3,0,1.26,2916,"1.0000","0.99601","0.9960" +"GO:1900449","regulation of glutamate receptor signali...",3,0,1.26,2917,"1.0000","0.99601","0.9960" +"GO:0006631","fatty acid metabolic process",19,0,8.01,2918,"1.0000","0.99605","0.9960" +"GO:0044248","cellular catabolic process",216,90,91.05,1129,"0.5866","0.57099","0.9961" +"GO:0001906","cell killing",8,3,3.37,1511,"0.7282","0.99609","0.9961" +"GO:0007608","sensory perception of smell",8,3,3.37,1512,"0.7282","0.99609","0.9961" +"GO:0031341","regulation of cell killing",8,3,3.37,1513,"0.7282","0.99609","0.9961" +"GO:0031343","positive regulation of cell killing",8,3,3.37,1514,"0.7282","0.99609","0.9961" +"GO:0036465","synaptic vesicle recycling",8,3,3.37,1515,"0.7282","0.99609","0.9961" +"GO:0044788","modulation by host of viral process",8,3,3.37,1516,"0.7282","0.99609","0.9961" +"GO:0044794","positive regulation by host of viral pro...",8,3,3.37,1517,"0.7282","0.99609","0.9961" +"GO:0044827","modulation by host of viral genome repli...",8,3,3.37,1518,"0.7282","0.99609","0.9961" +"GO:0044829","positive regulation by host of viral gen...",8,3,3.37,1519,"0.7282","0.99609","0.9961" +"GO:0051702","interaction with symbiont",8,3,3.37,1520,"0.7282","0.99609","0.9961" +"GO:0051851","modification by host of symbiont morphol...",8,3,3.37,1521,"0.7282","0.99609","0.9961" +"GO:0061083","regulation of protein refolding",8,3,3.37,1522,"0.7282","0.99609","0.9961" +"GO:0061982","meiosis I cell cycle process",8,3,3.37,1523,"0.7282","0.99609","0.9961" +"GO:0048609","multicellular organismal reproductive pr...",64,21,26.98,2557,"0.9530","0.99611","0.9961" +"GO:0007409","axonogenesis",30,9,12.65,2520,"0.9408","0.99613","0.9961" +"GO:0061025","membrane fusion",5,1,2.11,2489,"0.9354","0.99615","0.9962" +"GO:0006935","chemotaxis",29,9,12.22,2396,"0.9225","0.99626","0.9963" +"GO:0072330","monocarboxylic acid biosynthetic process",17,2,7.17,2740,"0.9988","0.99646","0.9965" +"GO:0008610","lipid biosynthetic process",58,15,24.45,2720,"0.9970","0.99649","0.9965" +"GO:0048199","vesicle targeting, to, from or within Go...",6,2,2.53,1687,"0.7990","0.99650","0.9965" +"GO:0040029","regulation of gene expression, epigeneti...",27,11,11.38,1251,"0.6312","0.99652","0.9965" +"GO:0031647","regulation of protein stability",26,5,10.96,2717,"0.9966","0.99665","0.9967" +"GO:0070838","divalent metal ion transport",23,7,9.69,2364,"0.9144","0.99665","0.9967" +"GO:0072511","divalent inorganic cation transport",23,7,9.69,2365,"0.9144","0.99665","0.9967" +"GO:0006903","vesicle targeting",7,2,2.95,2148,"0.8681","0.99674","0.9967" +"GO:0043087","regulation of GTPase activity",23,4,9.69,2726,"0.9972","0.99677","0.9968" +"GO:0009636","response to toxic substance",24,7,10.12,2498,"0.9361","0.99691","0.9969" +"GO:0060627","regulation of vesicle-mediated transport",24,6,10.12,2643,"0.9755","0.99691","0.9969" +"GO:0006906","vesicle fusion",4,1,1.69,2301,"0.8882","0.99692","0.9969" +"GO:0090174","organelle membrane fusion",4,1,1.69,2302,"0.8882","0.99692","0.9969" +"GO:0015696","ammonium transport",5,0,2.11,2919,"1.0000","0.99696","0.9970" +"GO:0001655","urogenital system development",23,8,9.69,2012,"0.8234","0.99704","0.9970" +"GO:0007568","aging",23,8,9.69,2013,"0.8234","0.99704","0.9970" +"GO:0043900","regulation of multi-organism process",23,5,9.69,2697,"0.9889","0.99704","0.9970" +"GO:0006901","vesicle coating",5,1,2.11,2490,"0.9354","0.99708","0.9971" +"GO:0002065","columnar/cuboidal epithelial cell differ...",22,8,9.27,1607,"0.7771","0.99717","0.9972" +"GO:0007517","muscle organ development",22,8,9.27,1608,"0.7771","0.99717","0.9972" +"GO:0009123","nucleoside monophosphate metabolic proce...",22,7,9.27,2197,"0.8867","0.99717","0.9972" +"GO:0001704","formation of primary germ layer",6,2,2.53,1688,"0.7990","0.99720","0.9972" +"GO:0007009","plasma membrane organization",6,0,2.53,2920,"1.0000","0.99720","0.9972" +"GO:0009056","catabolic process",241,99,101.58,1277,"0.6623","0.73570","0.9973" +"GO:0007411","axon guidance",21,7,8.85,2060,"0.8519","0.99730","0.9973" +"GO:0009126","purine nucleoside monophosphate metaboli...",21,6,8.85,2423,"0.9344","0.99730","0.9973" +"GO:0009161","ribonucleoside monophosphate metabolic p...",21,6,8.85,2424,"0.9344","0.99730","0.9973" +"GO:0009167","purine ribonucleoside monophosphate meta...",21,6,8.85,2425,"0.9344","0.99730","0.9973" +"GO:0023061","signal release",21,5,8.85,2646,"0.9767","0.99730","0.9973" +"GO:0097485","neuron projection guidance",21,7,8.85,2061,"0.8519","0.99730","0.9973" +"GO:1903311","regulation of mRNA metabolic process",21,8,8.85,1489,"0.7225","0.99730","0.9973" +"GO:0060537","muscle tissue development",20,8,8.43,1264,"0.6596","0.99743","0.9974" +"GO:0097305","response to alcohol",20,7,8.43,1975,"0.8088","0.99743","0.9974" +"GO:0006633","fatty acid biosynthetic process",12,0,5.06,2921,"1.0000","0.99751","0.9975" +"GO:0014706","striated muscle tissue development",19,7,8.01,1579,"0.7565","0.99756","0.9976" +"GO:0035690","cellular response to drug",19,7,8.01,1580,"0.7565","0.99756","0.9976" +"GO:0046677","response to antibiotic",19,5,8.01,2555,"0.9527","0.99756","0.9976" +"GO:0042136","neurotransmitter biosynthetic process",4,0,1.69,2922,"1.0000","0.99757","0.9976" +"GO:0018991","oviposition",4,0,1.69,2923,"1.0000","0.99767","0.9977" +"GO:0034389","lipid droplet organization",4,0,1.69,2924,"1.0000","0.99767","0.9977" +"GO:0140029","exocytic process",5,2,2.11,1464,"0.6994","0.99767","0.9977" +"GO:0043902","positive regulation of multi-organism pr...",18,4,7.59,2672,"0.9787","0.99769","0.9977" +"GO:0031338","regulation of vesicle fusion",3,0,1.26,2925,"1.0000","0.99769","0.9977" +"GO:0090630","activation of GTPase activity",3,0,1.26,2926,"1.0000","0.99769","0.9977" +"GO:0016042","lipid catabolic process",21,4,8.85,2708,"0.9936","0.99777","0.9978" +"GO:0030100","regulation of endocytosis",17,5,7.17,2349,"0.9079","0.99782","0.9978" +"GO:0043547","positive regulation of GTPase activity",15,3,6.32,2681,"0.9818","0.99790","0.9979" +"GO:0046486","glycerolipid metabolic process",35,10,14.75,2628,"0.9672","0.99790","0.9979" +"GO:0046034","ATP metabolic process",16,4,6.74,2561,"0.9544","0.99795","0.9979" +"GO:0071236","cellular response to antibiotic",16,5,6.74,2186,"0.8739","0.99795","0.9979" +"GO:0097237","cellular response to toxic substance",16,4,6.74,2562,"0.9544","0.99795","0.9979" +"GO:0043903","regulation of symbiosis, encompassing mu...",15,3,6.32,2682,"0.9818","0.99807","0.9981" +"GO:0001707","mesoderm formation",4,1,1.69,2303,"0.8882","0.99814","0.9981" +"GO:0048332","mesoderm morphogenesis",4,1,1.69,2304,"0.8882","0.99814","0.9981" +"GO:0048709","oligodendrocyte differentiation",4,0,1.69,2927,"1.0000","0.99814","0.9981" +"GO:0015695","organic cation transport",3,0,1.26,2928,"1.0000","0.99817","0.9982" +"GO:0042445","hormone metabolic process",3,0,1.26,2929,"1.0000","0.99817","0.9982" +"GO:0014031","mesenchymal cell development",5,1,2.11,2491,"0.9354","0.99819","0.9982" +"GO:0014032","neural crest cell development",5,1,2.11,2492,"0.9354","0.99819","0.9982" +"GO:0048864","stem cell development",5,1,2.11,2493,"0.9354","0.99819","0.9982" +"GO:0000302","response to reactive oxygen species",14,4,5.9,2326,"0.9064","0.99820","0.9982" +"GO:0043484","regulation of RNA splicing",14,5,5.9,1597,"0.7738","0.99820","0.9982" +"GO:0050792","regulation of viral process",14,3,5.9,2639,"0.9723","0.99820","0.9982" +"GO:0035964","COPI-coated vesicle budding",3,0,1.26,2930,"1.0000","0.99825","0.9982" +"GO:0046662","regulation of oviposition",3,0,1.26,2931,"1.0000","0.99825","0.9982" +"GO:0048200","Golgi transport vesicle coating",3,0,1.26,2932,"1.0000","0.99825","0.9982" +"GO:0048205","COPI coating of Golgi vesicle",3,0,1.26,2933,"1.0000","0.99825","0.9982" +"GO:0061355","Wnt protein secretion",3,0,1.26,2934,"1.0000","0.99825","0.9982" +"GO:0044242","cellular lipid catabolic process",16,1,6.74,2746,"0.9998","0.99830","0.9983" +"GO:0016441","posttranscriptional gene silencing",13,5,5.48,1478,"0.7047","0.99833","0.9983" +"GO:0019058","viral life cycle",13,3,5.48,2575,"0.9582","0.99833","0.9983" +"GO:0034614","cellular response to reactive oxygen spe...",13,4,5.48,2167,"0.8685","0.99833","0.9983" +"GO:0035194","posttranscriptional gene silencing by RN...",13,5,5.48,1479,"0.7047","0.99833","0.9983" +"GO:0042542","response to hydrogen peroxide",13,4,5.48,2168,"0.8685","0.99833","0.9983" +"GO:0045807","positive regulation of endocytosis",13,4,5.48,2169,"0.8685","0.99833","0.9983" +"GO:0070301","cellular response to hydrogen peroxide",13,4,5.48,2170,"0.8685","0.99833","0.9983" +"GO:0048524","positive regulation of viral process",12,3,5.06,2511,"0.9375","0.99846","0.9985" +"GO:0050684","regulation of mRNA processing",12,4,5.06,2002,"0.8181","0.99846","0.9985" +"GO:1903900","regulation of viral life cycle",12,3,5.06,2512,"0.9375","0.99846","0.9985" +"GO:0002011","morphogenesis of an epithelial sheet",4,0,1.69,2935,"1.0000","0.99855","0.9986" +"GO:0032355","response to estradiol",11,3,4.64,2341,"0.9077","0.99859","0.9986" +"GO:0036474","cell death in response to hydrogen perox...",11,3,4.64,2342,"0.9077","0.99859","0.9986" +"GO:0048024","regulation of mRNA splicing, via spliceo...",11,4,4.64,1570,"0.7527","0.99859","0.9986" +"GO:0060538","skeletal muscle organ development",11,4,4.64,1571,"0.7527","0.99859","0.9986" +"GO:0099504","synaptic vesicle cycle",11,4,4.64,1572,"0.7527","0.99859","0.9986" +"GO:1901031","regulation of response to reactive oxyge...",11,3,4.64,2343,"0.9077","0.99859","0.9986" +"GO:2001023","regulation of response to drug",11,3,4.64,2344,"0.9077","0.99859","0.9986" +"GO:0000212","meiotic spindle organization",3,0,1.26,2936,"1.0000","0.99860","0.9986" +"GO:0044091","membrane biogenesis",3,0,1.26,2937,"1.0000","0.99860","0.9986" +"GO:0007269","neurotransmitter secretion",10,3,4.22,2099,"0.8654","0.99872","0.9987" +"GO:0019079","viral genome replication",10,3,4.22,2100,"0.8654","0.99872","0.9987" +"GO:0032570","response to progesterone",10,3,4.22,2101,"0.8654","0.99872","0.9987" +"GO:0045069","regulation of viral genome replication",10,3,4.22,2102,"0.8654","0.99872","0.9987" +"GO:0051085","chaperone cofactor-dependent protein ref...",10,3,4.22,2103,"0.8654","0.99872","0.9987" +"GO:0099643","signal release from synapse",10,3,4.22,2104,"0.8654","0.99872","0.9987" +"GO:1903205","regulation of hydrogen peroxide-induced ...",10,3,4.22,2105,"0.8654","0.99872","0.9987" +"GO:1903902","positive regulation of viral life cycle",10,3,4.22,2106,"0.8654","0.99872","0.9987" +"GO:2001038","regulation of cellular response to drug",10,3,4.22,2107,"0.8654","0.99872","0.9987" +"GO:0014823","response to activity",9,3,3.79,1960,"0.8069","0.99885","0.9988" +"GO:0035821","modification of morphology or physiology...",9,3,3.79,1961,"0.8069","0.99885","0.9988" +"GO:0042698","ovulation cycle",9,3,3.79,1962,"0.8069","0.99885","0.9988" +"GO:0045070","positive regulation of viral genome repl...",9,3,3.79,1963,"0.8069","0.99885","0.9988" +"GO:0045471","response to ethanol",9,3,3.79,1964,"0.8069","0.99885","0.9988" +"GO:0051817","modification of morphology or physiology...",9,3,3.79,1965,"0.8069","0.99885","0.9988" +"GO:0061635","regulation of protein complex stability",9,3,3.79,1966,"0.8069","0.99885","0.9988" +"GO:0072665","protein localization to vacuole",9,2,3.79,2543,"0.9455","0.99885","0.9988" +"GO:0072666","establishment of protein localization to...",9,2,3.79,2544,"0.9455","0.99885","0.9988" +"GO:1901032","negative regulation of response to react...",9,3,3.79,1967,"0.8069","0.99885","0.9988" +"GO:1903206","negative regulation of hydrogen peroxide...",9,3,3.79,1968,"0.8069","0.99885","0.9988" +"GO:2001024","negative regulation of response to drug",9,3,3.79,1969,"0.8069","0.99885","0.9988" +"GO:2001039","negative regulation of cellular response...",9,3,3.79,1970,"0.8069","0.99885","0.9988" +"GO:0008038","neuron recognition",8,2,3.37,2383,"0.9147","0.99898","0.9990" +"GO:0006623","protein targeting to vacuole",7,2,2.95,2149,"0.8681","0.99910","0.9991" +"GO:0070828","heterochromatin organization",7,2,2.95,2150,"0.8681","0.99910","0.9991" +"GO:0097428","protein maturation by iron-sulfur cluste...",5,0,2.11,2938,"1.0000","0.99920","0.9992" +"GO:0007413","axonal fasciculation",6,2,2.53,1689,"0.7990","0.99923","0.9992" +"GO:0034401","chromatin organization involved in regul...",6,2,2.53,1690,"0.7990","0.99923","0.9992" +"GO:0046685","response to arsenic-containing substance",6,2,2.53,1691,"0.7990","0.99923","0.9992" +"GO:0046688","response to copper ion",6,2,2.53,1692,"0.7990","0.99923","0.9992" +"GO:0070868","heterochromatin organization involved in...",6,2,2.53,1693,"0.7990","0.99923","0.9992" +"GO:0097549","chromatin organization involved in negat...",6,2,2.53,1694,"0.7990","0.99923","0.9992" +"GO:0106030","neuron projection fasciculation",6,2,2.53,1695,"0.7990","0.99923","0.9992" +"GO:0046503","glycerolipid catabolic process",5,0,2.11,2939,"1.0000","0.99947","0.9995" +"GO:0051186","cofactor metabolic process",43,11,18.12,2703,"0.9926","0.81291","0.9995" +"GO:0002082","regulation of oxidative phosphorylation",3,0,1.26,2940,"1.0000","0.99954","0.9995" +"GO:0010035","response to inorganic substance",34,10,14.33,2567,"0.9568","0.99955","0.9996" +"GO:0008277","regulation of G protein-coupled receptor...",3,1,1.26,1936,"0.8066","0.99958","0.9996" +"GO:0009991","response to extracellular stimulus",32,11,13.49,2070,"0.8595","0.99958","0.9996" +"GO:0031667","response to nutrient levels",32,11,13.49,2071,"0.8595","0.99958","0.9996" +"GO:0005976","polysaccharide metabolic process",5,0,2.11,2941,"1.0000","0.99962","0.9996" +"GO:0046475","glycerophospholipid catabolic process",3,0,1.26,2942,"1.0000","0.99968","0.9997" +"GO:0044264","cellular polysaccharide metabolic proces...",4,0,1.69,2943,"1.0000","0.99969","0.9997" +"GO:0042546","cell wall biogenesis",3,0,1.26,2944,"1.0000","0.99977","0.9998" +"GO:0071241","cellular response to inorganic substance",13,4,5.48,2171,"0.8685","0.99983","0.9998" +"GO:0071248","cellular response to metal ion",12,4,5.06,2003,"0.8181","0.99984","0.9998" +"GO:0051100","negative regulation of binding",9,3,3.79,1971,"0.8069","0.99988","0.9999" +"GO:0043392","negative regulation of DNA binding",3,0,1.26,2945,"1.0000","0.99996","1.0000" +"GO:0008150","biological_process",2752,1160,1160,2946,"1.0000","1.00000","1.0000" +"GO:0034620","cellular response to unfolded protein",9,7,3.79,56,"0.0339","0.00482","1.0000" +"GO:0043171","peptide catabolic process",4,4,1.69,51,"0.0315","0.00245","1.0000" diff --git a/GO_enrichment_output/contrast_emerging_phoretic_downregulated.csv b/GO_enrichment_output/contrast_emerging_phoretic_downregulated.csv index e82080a..cb72a6b 100644 --- a/GO_enrichment_output/contrast_emerging_phoretic_downregulated.csv +++ b/GO_enrichment_output/contrast_emerging_phoretic_downregulated.csv @@ -1,6 +1,1175 @@ "GO.ID","Term","Annotated","Significant","Expected","Rank in classicFisher","classicFisher","classicKS","elimKS" "GO:0009887","animal organ morphogenesis",80,32,18.69,1,"0.00054","0.00067","0.00067" -"GO:0043149","stress fiber assembly",9,5,2.1,81,"0.03697","0.00068","0.00068" -"GO:0007165","signal transduction",439,124,102.56,15,"0.00488","0.00084","0.00256" "GO:0006874","cellular calcium ion homeostasis",15,9,3.5,6,"0.00247","0.00330","0.00330" -"GO:0015698","inorganic anion transport",7,3,1.64,482,"0.21014","0.00353","0.00353" +"GO:0007165","signal transduction",439,124,102.56,14,"0.00488","0.00084","0.00383" +"GO:0120035","regulation of plasma membrane bounded ce...",43,12,10.05,404,"0.29091","0.00394","0.00394" +"GO:0007611","learning or memory",19,9,4.44,42,"0.01832","0.00396","0.00396" +"GO:0006816","calcium ion transport",25,11,5.84,39,"0.01771","0.00463","0.00463" +"GO:0060562","epithelial tube morphogenesis",38,16,8.88,21,"0.00757","0.00550","0.00550" +"GO:0072359","circulatory system development",63,22,14.72,48,"0.02369","0.00555","0.00555" +"GO:0043410","positive regulation of MAPK cascade",16,8,3.74,40,"0.01787","0.00578","0.00578" +"GO:0030838","positive regulation of actin filament po...",10,4,2.34,270,"0.18680","0.00644","0.00644" +"GO:0045860","positive regulation of protein kinase ac...",14,5,3.27,291,"0.21156","0.00683","0.00683" +"GO:0120031","plasma membrane bounded cell projection ...",33,10,7.71,324,"0.22431","0.00723","0.00723" +"GO:0010639","negative regulation of organelle organiz...",26,6,6.07,717,"0.59012","0.00735","0.00735" +"GO:0006796","phosphate-containing compound metabolic ...",330,96,77.1,17,"0.00557","0.00149","0.00780" +"GO:0098660","inorganic ion transmembrane transport",37,16,8.64,16,"0.00555","0.00910","0.00910" +"GO:0051234","establishment of localization",538,140,125.69,93,"0.05535","0.00144","0.00913" +"GO:0051017","actin filament bundle assembly",11,5,2.57,132,"0.08957","0.00975","0.00975" +"GO:0031346","positive regulation of cell projection o...",21,7,4.91,284,"0.20026","0.00982","0.00982" +"GO:0001763","morphogenesis of a branching structure",10,6,2.34,32,"0.01390","0.01031","0.01031" +"GO:0061138","morphogenesis of a branching epithelium",10,6,2.34,33,"0.01390","0.01031","0.01031" +"GO:0016310","phosphorylation",225,66,52.57,38,"0.01761","0.00216","0.01268" +"GO:0010976","positive regulation of neuron projection...",14,5,3.27,292,"0.21156","0.01318","0.01318" +"GO:0030336","negative regulation of cell migration",13,5,3.04,240,"0.16615","0.01395","0.01395" +"GO:0051271","negative regulation of cellular componen...",13,5,3.04,241,"0.16615","0.01395","0.01395" +"GO:2000146","negative regulation of cell motility",13,5,3.04,242,"0.16615","0.01395","0.01395" +"GO:0048568","embryonic organ development",39,16,9.11,24,"0.01013","0.01505","0.01505" +"GO:0016197","endosomal transport",22,9,5.14,84,"0.05030","0.01579","0.01579" +"GO:0042147","retrograde transport, endosome to Golgi",14,6,3.27,121,"0.08441","0.01587","0.01587" +"GO:0007169","transmembrane receptor protein tyrosine ...",25,12,5.84,19,"0.00583","0.01614","0.01614" +"GO:0016482","cytosolic transport",20,9,4.67,52,"0.02658","0.01638","0.01638" +"GO:0098662","inorganic cation transmembrane transport",36,15,8.41,25,"0.01074","0.01904","0.01904" +"GO:0006810","transport",522,136,121.96,94,"0.05688","0.00337","0.01961" +"GO:0007167","enzyme linked receptor protein signaling...",45,16,10.51,79,"0.04241","0.01976","0.01976" +"GO:0016477","cell migration",48,15,11.21,188,"0.12995","0.01990","0.01990" +"GO:2000145","regulation of cell motility",31,9,7.24,393,"0.28674","0.02104","0.02104" +"GO:0016358","dendrite development",21,8,4.91,135,"0.09370","0.02113","0.02113" +"GO:0006644","phospholipid metabolic process",42,13,9.81,233,"0.16084","0.02117","0.02117" +"GO:0007612","learning",14,5,3.27,293,"0.21156","0.02125","0.02125" +"GO:0030334","regulation of cell migration",29,9,6.78,308,"0.21837","0.02150","0.02150" +"GO:0031032","actomyosin structure organization",25,9,5.84,156,"0.10631","0.02188","0.02188" +"GO:0035556","intracellular signal transduction",182,58,42.52,11,"0.00393","0.00288","0.02280" +"GO:0070588","calcium ion transmembrane transport",19,9,4.44,43,"0.01832","0.02308","0.02308" +"GO:0050793","regulation of developmental process",136,41,31.77,64,"0.03677","0.02512","0.02512" +"GO:0032989","cellular component morphogenesis",82,22,19.16,373,"0.26257","0.02516","0.02516" +"GO:0007507","heart development",48,16,11.21,110,"0.07357","0.02604","0.02604" +"GO:0051494","negative regulation of cytoskeleton orga...",10,4,2.34,271,"0.18680","0.02623","0.02623" +"GO:0048598","embryonic morphogenesis",53,16,12.38,228,"0.15299","0.02734","0.02734" +"GO:0040012","regulation of locomotion",40,11,9.35,446,"0.32244","0.02761","0.02761" +"GO:0010631","epithelial cell migration",12,4,2.8,415,"0.30094","0.02799","0.02799" +"GO:0021915","neural tube development",13,4,3.04,460,"0.36085","0.02852","0.02852" +"GO:0006468","protein phosphorylation",199,56,46.49,97,"0.05932","0.00499","0.02868" +"GO:0006470","protein dephosphorylation",31,12,7.24,65,"0.03952","0.02869","0.02869" +"GO:0022604","regulation of cell morphogenesis",21,6,4.91,489,"0.36391","0.02905","0.02905" +"GO:0001525","angiogenesis",13,5,3.04,243,"0.16615","0.02955","0.02955" +"GO:0001667","ameboidal-type cell migration",14,5,3.27,294,"0.21156","0.03217","0.03217" +"GO:0040013","negative regulation of locomotion",14,5,3.27,295,"0.21156","0.03217","0.03217" +"GO:0055001","muscle cell development",19,8,4.44,89,"0.05393","0.03247","0.03247" +"GO:0046486","glycerolipid metabolic process",36,13,8.41,95,"0.05697","0.03270","0.03270" +"GO:0010959","regulation of metal ion transport",14,7,3.27,50,"0.02655","0.03327","0.03327" +"GO:0048870","cell motility",57,16,13.32,336,"0.24023","0.03374","0.03374" +"GO:0051674","localization of cell",57,16,13.32,337,"0.24023","0.03374","0.03374" +"GO:0001503","ossification",12,6,2.8,66,"0.03973","0.03452","0.03452" +"GO:0098742","cell-cell adhesion via plasma-membrane a...",21,5,4.91,693,"0.56537","0.03464","0.03464" +"GO:0032970","regulation of actin filament-based proce...",30,10,7.01,207,"0.14040","0.00341","0.03587" +"GO:0002009","morphogenesis of an epithelium",51,21,11.92,9,"0.00322","0.00082","0.03603" +"GO:0002520","immune system development",27,11,6.31,60,"0.03277","0.03681","0.03681" +"GO:0110053","regulation of actin filament organizatio...",19,8,4.44,90,"0.05393","0.00289","0.03699" +"GO:0040017","positive regulation of locomotion",20,8,4.67,109,"0.07216","0.03774","0.03774" +"GO:0070838","divalent metal ion transport",27,13,6.31,12,"0.00400","0.00156","0.03783" +"GO:0072511","divalent inorganic cation transport",27,13,6.31,13,"0.00400","0.00156","0.03783" +"GO:0009792","embryo development ending in birth or eg...",54,16,12.62,257,"0.17299","0.03793","0.03793" +"GO:0060491","regulation of cell projection assembly",17,4,3.97,707,"0.58735","0.03924","0.03924" +"GO:0120032","regulation of plasma membrane bounded ce...",17,4,3.97,708,"0.58735","0.03924","0.03924" +"GO:0051640","organelle localization",41,14,9.58,112,"0.07606","0.04053","0.04053" +"GO:0051056","regulation of small GTPase mediated sign...",36,14,8.41,49,"0.02605","0.04155","0.04155" +"GO:0009790","embryo development",84,24,19.63,229,"0.15443","0.04175","0.04175" +"GO:0090130","tissue migration",13,4,3.04,461,"0.36085","0.04335","0.04335" +"GO:0090132","epithelium migration",13,4,3.04,462,"0.36085","0.04335","0.04335" +"GO:0042594","response to starvation",12,7,2.8,23,"0.00952","0.04357","0.04357" +"GO:0034097","response to cytokine",22,4,5.14,873,"0.79244","0.04384","0.04384" +"GO:0007264","small GTPase mediated signal transductio...",60,22,14.02,31,"0.01303","0.04461","0.04461" +"GO:0043405","regulation of MAP kinase activity",12,5,2.8,178,"0.12517","0.04464","0.04464" +"GO:0043009","chordate embryonic development",48,15,11.21,189,"0.12995","0.04693","0.04693" +"GO:0006650","glycerophospholipid metabolic process",30,10,7.01,208,"0.14040","0.04809","0.04809" +"GO:0016331","morphogenesis of embryonic epithelium",16,6,3.74,215,"0.14811","0.04861","0.04861" +"GO:0007265","Ras protein signal transduction",34,14,7.94,35,"0.01523","0.04892","0.04892" +"GO:0007178","transmembrane receptor protein serine/th...",24,7,5.61,437,"0.32044","0.04972","0.04972" +"GO:0007613","memory",10,5,2.34,99,"0.06005","0.05075","0.05075" +"GO:0007186","G protein-coupled receptor signaling pat...",80,21,18.69,426,"0.30743","0.05137","0.05137" +"GO:0048514","blood vessel morphogenesis",18,6,4.21,326,"0.22751","0.05230","0.05230" +"GO:0007062","sister chromatid cohesion",12,6,2.8,67,"0.03973","0.05262","0.05262" +"GO:0045165","cell fate commitment",17,8,3.97,54,"0.02700","0.05284","0.05284" +"GO:0003143","embryonic heart tube morphogenesis",12,6,2.8,68,"0.03973","0.05348","0.05348" +"GO:0035050","embryonic heart tube development",12,6,2.8,69,"0.03973","0.05348","0.05348" +"GO:0061371","determination of heart left/right asymme...",12,6,2.8,70,"0.03973","0.05348","0.05348" +"GO:0030154","cell differentiation",205,56,47.89,141,"0.09576","0.05456","0.05456" +"GO:0046578","regulation of Ras protein signal transdu...",31,13,7.24,36,"0.01615","0.05583","0.05583" +"GO:0010769","regulation of cell morphogenesis involve...",15,4,3.5,609,"0.47884","0.05702","0.05702" +"GO:0032535","regulation of cellular component size",22,8,5.14,169,"0.11850","0.00461","0.05773" +"GO:0003007","heart morphogenesis",22,9,5.14,85,"0.05030","0.05911","0.05911" +"GO:0030097","hemopoiesis",26,10,6.07,101,"0.06047","0.05975","0.05975" +"GO:0048534","hematopoietic or lymphoid organ developm...",26,10,6.07,102,"0.06047","0.05975","0.05975" +"GO:0055002","striated muscle cell development",18,7,4.21,147,"0.10345","0.05981","0.05981" +"GO:0007368","determination of left/right symmetry",15,7,3.5,73,"0.04000","0.06008","0.06008" +"GO:0009799","specification of symmetry",15,7,3.5,74,"0.04000","0.06008","0.06008" +"GO:0009855","determination of bilateral symmetry",15,7,3.5,75,"0.04000","0.06008","0.06008" +"GO:0032956","regulation of actin cytoskeleton organiz...",24,9,5.61,125,"0.08481","0.00788","0.06028" +"GO:0006928","movement of cell or subcellular componen...",104,30,24.3,159,"0.11030","0.06110","0.06110" +"GO:0071345","cellular response to cytokine stimulus",21,4,4.91,839,"0.75941","0.06129","0.06129" +"GO:0071900","regulation of protein serine/threonine k...",15,5,3.5,366,"0.26032","0.06407","0.06407" +"GO:0040011","locomotion",93,26,21.73,256,"0.17206","0.06475","0.06475" +"GO:0001841","neural tube formation",10,3,2.34,547,"0.42488","0.06504","0.06504" +"GO:0031667","response to nutrient levels",21,10,4.91,28,"0.01247","0.06599","0.06599" +"GO:0006720","isoprenoid metabolic process",14,6,3.27,122,"0.08441","0.06626","0.06626" +"GO:0030855","epithelial cell differentiation",32,12,7.48,83,"0.05029","0.06711","0.06711" +"GO:0048729","tissue morphogenesis",54,22,12.62,8,"0.00303","0.00106","0.06753" +"GO:0048869","cellular developmental process",212,57,49.53,174,"0.11861","0.07067","0.07067" +"GO:0048646","anatomical structure formation involved ...",70,23,16.35,80,"0.04258","0.07150","0.07150" +"GO:0009952","anterior/posterior pattern specification",14,7,3.27,51,"0.02655","0.07346","0.07346" +"GO:2000026","regulation of multicellular organismal d...",96,28,22.43,158,"0.10753","0.07355","0.07355" +"GO:0048638","regulation of developmental growth",14,4,3.27,536,"0.42057","0.07474","0.07474" +"GO:0051270","regulation of cellular component movemen...",34,9,7.94,512,"0.39727","0.07484","0.07484" +"GO:0070925","organelle assembly",62,19,14.49,160,"0.11287","0.07589","0.07589" +"GO:0043087","regulation of GTPase activity",24,7,5.61,438,"0.32044","0.07634","0.07634" +"GO:0030335","positive regulation of cell migration",14,5,3.27,296,"0.21156","0.07680","0.07680" +"GO:0001944","vasculature development",20,7,4.67,235,"0.16474","0.07736","0.07736" +"GO:0051656","establishment of organelle localization",28,9,6.54,280,"0.18683","0.07744","0.07744" +"GO:0031175","neuron projection development",68,19,15.89,316,"0.22058","0.07785","0.07785" +"GO:0048813","dendrite morphogenesis",12,6,2.8,71,"0.03973","0.07864","0.07864" +"GO:0006813","potassium ion transport",20,7,4.67,236,"0.16474","0.08124","0.08124" +"GO:0001654","eye development",45,15,10.51,118,"0.08164","0.08159","0.08159" +"GO:0048880","sensory system development",45,15,10.51,119,"0.08164","0.08159","0.08159" +"GO:0150063","visual system development",45,15,10.51,120,"0.08164","0.08159","0.08159" +"GO:0051049","regulation of transport",84,20,19.63,646,"0.50440","0.08243","0.08243" +"GO:0055085","transmembrane transport",222,57,51.87,313,"0.21848","0.02026","0.08331" +"GO:0060541","respiratory system development",15,7,3.5,76,"0.04000","0.08335","0.08335" +"GO:0060271","cilium assembly",22,6,5.14,522,"0.41097","0.08518","0.08518" +"GO:0010927","cellular component assembly involved in ...",16,6,3.74,216,"0.14811","0.08551","0.08551" +"GO:0022411","cellular component disassembly",23,6,5.37,589,"0.45766","0.08560","0.08560" +"GO:0022603","regulation of anatomical structure morph...",46,12,10.75,503,"0.38491","0.08616","0.08616" +"GO:0051239","regulation of multicellular organismal p...",148,43,34.58,96,"0.05828","0.08797","0.08797" +"GO:0060485","mesenchyme development",10,4,2.34,272,"0.18680","0.08907","0.08907" +"GO:0030111","regulation of Wnt signaling pathway",20,6,4.67,434,"0.31715","0.08995","0.08995" +"GO:0009991","response to extracellular stimulus",22,10,5.14,41,"0.01820","0.09230","0.09230" +"GO:0000904","cell morphogenesis involved in different...",48,13,11.21,441,"0.32052","0.09253","0.09253" +"GO:0030833","regulation of actin filament polymerizat...",15,6,3.5,161,"0.11402","0.00515","0.09373" +"GO:0043547","positive regulation of GTPase activity",14,5,3.27,297,"0.21156","0.09382","0.09382" +"GO:0032879","regulation of localization",140,32,32.71,720,"0.59235","0.09590","0.09590" +"GO:1902905","positive regulation of supramolecular fi...",22,8,5.14,170,"0.11850","0.00201","0.09909" +"GO:0009165","nucleotide biosynthetic process",22,8,5.14,171,"0.11850","0.09937","0.09937" +"GO:1901293","nucleoside phosphate biosynthetic proces...",22,8,5.14,172,"0.11850","0.09937","0.09937" +"GO:0010506","regulation of autophagy",15,6,3.5,162,"0.11402","0.10127","0.10127" +"GO:0048592","eye morphogenesis",27,10,6.31,113,"0.07676","0.10205","0.10205" +"GO:0060828","regulation of canonical Wnt signaling pa...",14,6,3.27,123,"0.08441","0.10260","0.10260" +"GO:0000819","sister chromatid segregation",19,8,4.44,91,"0.05393","0.10320","0.10320" +"GO:0048871","multicellular organismal homeostasis",14,6,3.27,124,"0.08441","0.10391","0.10391" +"GO:0010975","regulation of neuron projection developm...",28,8,6.54,443,"0.32217","0.10473","0.10473" +"GO:0072331","signal transduction by p53 class mediato...",10,3,2.34,548,"0.42488","0.10496","0.10496" +"GO:0051703","intraspecies interaction between organis...",10,4,2.34,273,"0.18680","0.10551","0.10551" +"GO:0030258","lipid modification",12,4,2.8,416,"0.30094","0.10588","0.10588" +"GO:0044087","regulation of cellular component biogene...",64,18,14.95,314,"0.21960","0.01602","0.10629" +"GO:0001568","blood vessel development",19,6,4.44,381,"0.27143","0.10738","0.10738" +"GO:0048666","neuron development",86,24,20.09,279,"0.18681","0.10754","0.10754" +"GO:0048477","oogenesis",23,9,5.37,104,"0.06615","0.10759","0.10759" +"GO:0031328","positive regulation of cellular biosynth...",65,18,15.19,340,"0.24170","0.10782","0.10782" +"GO:0040008","regulation of growth",32,7,7.48,753,"0.64741","0.10807","0.10807" +"GO:0061061","muscle structure development",56,17,13.08,204,"0.13814","0.10824","0.10824" +"GO:0007389","pattern specification process",39,13,9.11,145,"0.10091","0.11028","0.11028" +"GO:0010628","positive regulation of gene expression",79,21,18.46,391,"0.28506","0.11069","0.11069" +"GO:0008064","regulation of actin polymerization or de...",16,6,3.74,217,"0.14811","0.01424","0.11133" +"GO:0030832","regulation of actin filament length",16,6,3.74,218,"0.14811","0.01424","0.11133" +"GO:0031589","cell-substrate adhesion",14,5,3.27,298,"0.21156","0.11363","0.11363" +"GO:0097435","supramolecular fiber organization",57,20,13.32,57,"0.02874","0.00071","0.11477" +"GO:0006811","ion transport",180,52,42.05,81,"0.04384","0.00910","0.11496" +"GO:0045935","positive regulation of nucleobase-contai...",73,20,17.06,343,"0.24221","0.11591","0.11591" +"GO:0071897","DNA biosynthetic process",10,0,2.34,1162,"1.00000","0.11648","0.11648" +"GO:0007423","sensory organ development",56,17,13.08,205,"0.13814","0.11721","0.11721" +"GO:0098655","cation transmembrane transport",48,16,11.21,111,"0.07357","0.11803","0.11803" +"GO:0001947","heart looping",11,5,2.57,133,"0.08957","0.11865","0.11865" +"GO:0007292","female gamete generation",25,10,5.84,82,"0.04660","0.11935","0.11935" +"GO:0009888","tissue development",113,35,26.4,63,"0.03526","0.00743","0.11994" +"GO:0016042","lipid catabolic process",18,7,4.21,148,"0.10345","0.11997","0.11997" +"GO:0098813","nuclear chromosome segregation",23,8,5.37,212,"0.14642","0.12035","0.12035" +"GO:0001894","tissue homeostasis",11,5,2.57,134,"0.08957","0.12037","0.12037" +"GO:0060429","epithelium development",77,26,17.99,47,"0.02288","0.00409","0.12114" +"GO:0051093","negative regulation of developmental pro...",49,15,11.45,227,"0.14905","0.12117","0.12117" +"GO:0006164","purine nucleotide biosynthetic process",15,6,3.5,163,"0.11402","0.12123","0.12123" +"GO:0009152","purine ribonucleotide biosynthetic proce...",15,6,3.5,164,"0.11402","0.12123","0.12123" +"GO:0009260","ribonucleotide biosynthetic process",15,6,3.5,165,"0.11402","0.12123","0.12123" +"GO:0046390","ribose phosphate biosynthetic process",15,6,3.5,166,"0.11402","0.12123","0.12123" +"GO:0072522","purine-containing compound biosynthetic ...",15,6,3.5,167,"0.11402","0.12123","0.12123" +"GO:0048589","developmental growth",40,10,9.35,595,"0.46381","0.12137","0.12137" +"GO:0045893","positive regulation of transcription, DN...",58,16,13.55,377,"0.26475","0.12180","0.12180" +"GO:1902680","positive regulation of RNA biosynthetic ...",58,16,13.55,378,"0.26475","0.12180","0.12180" +"GO:1903508","positive regulation of nucleic acid-temp...",58,16,13.55,379,"0.26475","0.12180","0.12180" +"GO:0051272","positive regulation of cellular componen...",15,5,3.5,367,"0.26032","0.12239","0.12239" +"GO:2000147","positive regulation of cell motility",15,5,3.5,368,"0.26032","0.12239","0.12239" +"GO:0032984","protein-containing complex disassembly",18,6,4.21,327,"0.22751","0.12315","0.12315" +"GO:0030239","myofibril assembly",13,5,3.04,244,"0.16615","0.12337","0.12337" +"GO:0003002","regionalization",27,10,6.31,114,"0.07676","0.12405","0.12405" +"GO:0046488","phosphatidylinositol metabolic process",17,6,3.97,264,"0.18615","0.12529","0.12529" +"GO:0070936","protein K48-linked ubiquitination",10,2,2.34,801,"0.71767","0.12614","0.12614" +"GO:0032990","cell part morphogenesis",47,13,10.98,408,"0.29117","0.13071","0.13071" +"GO:0048812","neuron projection morphogenesis",47,13,10.98,409,"0.29117","0.13071","0.13071" +"GO:0048858","cell projection morphogenesis",47,13,10.98,410,"0.29117","0.13071","0.13071" +"GO:0120039","plasma membrane bounded cell projection ...",47,13,10.98,411,"0.29117","0.13071","0.13071" +"GO:0044242","cellular lipid catabolic process",12,5,2.8,179,"0.12517","0.13128","0.13128" +"GO:0000902","cell morphogenesis",68,17,15.89,535,"0.42006","0.13172","0.13172" +"GO:0007266","Rho protein signal transduction",24,10,5.61,62,"0.03504","0.13232","0.13232" +"GO:0010557","positive regulation of macromolecule bio...",61,17,14.25,339,"0.24111","0.13455","0.13455" +"GO:0035023","regulation of Rho protein signal transdu...",22,9,5.14,86,"0.05030","0.13637","0.13637" +"GO:0016051","carbohydrate biosynthetic process",11,1,2.57,1055,"0.94683","0.13686","0.13686" +"GO:0051493","regulation of cytoskeleton organization",32,11,7.48,152,"0.10464","0.01089","0.13688" +"GO:0070848","response to growth factor",26,7,6.07,518,"0.40625","0.13740","0.13740" +"GO:0071363","cellular response to growth factor stimu...",26,7,6.07,519,"0.40625","0.13740","0.13740" +"GO:0048562","embryonic organ morphogenesis",24,9,5.61,126,"0.08481","0.14049","0.14049" +"GO:0007498","mesoderm development",12,5,2.8,180,"0.12517","0.14056","0.14056" +"GO:0048732","gland development",14,4,3.27,537,"0.42057","0.14127","0.14127" +"GO:0042330","taxis",33,8,7.71,653,"0.52012","0.14169","0.14169" +"GO:0009891","positive regulation of biosynthetic proc...",69,19,16.12,342,"0.24206","0.14373","0.14373" +"GO:1902904","negative regulation of supramolecular fi...",13,4,3.04,463,"0.36085","0.14470","0.14470" +"GO:0045017","glycerolipid biosynthetic process",17,4,3.97,709,"0.58735","0.14486","0.14486" +"GO:0007623","circadian rhythm",12,4,2.8,417,"0.30094","0.14580","0.14580" +"GO:0034762","regulation of transmembrane transport",25,9,5.84,157,"0.10631","0.14634","0.14634" +"GO:0007154","cell communication",479,138,111.91,3,"0.00114","0.00055","0.14655" +"GO:0050769","positive regulation of neurogenesis",24,7,5.61,439,"0.32044","0.14858","0.14858" +"GO:0006464","cellular protein modification process",423,107,98.83,238,"0.16485","0.05478","0.14866" +"GO:0036211","protein modification process",423,107,98.83,239,"0.16485","0.05478","0.14866" +"GO:0010564","regulation of cell cycle process",28,7,6.54,625,"0.49157","0.14870","0.14870" +"GO:0016055","Wnt signaling pathway",31,7,7.24,724,"0.61107","0.15197","0.15197" +"GO:0002521","leukocyte differentiation",10,5,2.34,100,"0.06005","0.15297","0.15297" +"GO:0048705","skeletal system morphogenesis",13,6,3.04,98,"0.05961","0.15448","0.15448" +"GO:0000003","reproduction",103,27,24.06,385,"0.27669","0.15513","0.15513" +"GO:0016311","dephosphorylation",44,14,10.28,177,"0.12492","0.15615","0.15615" +"GO:0090066","regulation of anatomical structure size",26,8,6.07,353,"0.24616","0.02049","0.15713" +"GO:0048583","regulation of response to stimulus",207,61,48.36,45,"0.02011","0.03846","0.15888" +"GO:0044772","mitotic cell cycle phase transition",16,5,3.74,427,"0.31133","0.15931","0.15931" +"GO:0006820","anion transport",40,10,9.35,596,"0.46381","0.16007","0.16007" +"GO:0001655","urogenital system development",22,6,5.14,523,"0.41097","0.16085","0.16085" +"GO:0023051","regulation of signaling",180,53,42.05,59,"0.02984","0.03287","0.16311" +"GO:0072507","divalent inorganic cation homeostasis",18,11,4.21,2,"0.00064","0.00207","0.16389" +"GO:0051649","establishment of localization in cell",174,45,40.65,333,"0.23473","0.16724","0.16724" +"GO:1905114","cell surface receptor signaling pathway ...",34,7,7.94,793,"0.71377","0.16783","0.16783" +"GO:0016236","macroautophagy",16,6,3.74,219,"0.14811","0.16834","0.16834" +"GO:0010608","posttranscriptional regulation of gene e...",36,9,8.41,606,"0.47210","0.17089","0.17089" +"GO:0050773","regulation of dendrite development",15,4,3.5,610,"0.47884","0.17208","0.17208" +"GO:0001745","compound eye morphogenesis",13,3,3.04,728,"0.61643","0.17650","0.17650" +"GO:0051254","positive regulation of RNA metabolic pro...",65,18,15.19,341,"0.24170","0.17765","0.17765" +"GO:0007034","vacuolar transport",15,2,3.5,982,"0.89780","0.17882","0.17882" +"GO:0051235","maintenance of location",16,3,3.74,842,"0.75982","0.17944","0.17944" +"GO:0001838","embryonic epithelial tube formation",11,3,2.57,626,"0.49333","0.18131","0.18131" +"GO:0072175","epithelial tube formation",11,3,2.57,627,"0.49333","0.18131","0.18131" +"GO:0031047","gene silencing by RNA",12,5,2.8,181,"0.12517","0.18357","0.18357" +"GO:0016192","vesicle-mediated transport",134,37,31.31,203,"0.13796","0.18440","0.18440" +"GO:0072358","cardiovascular system development",22,7,5.14,335,"0.23842","0.18463","0.18463" +"GO:0030178","negative regulation of Wnt signaling pat...",14,5,3.27,299,"0.21156","0.18608","0.18608" +"GO:0048468","cell development",151,38,35.28,449,"0.32494","0.18678","0.18678" +"GO:0010646","regulation of cell communication",176,52,41.12,58,"0.02937","0.03936","0.18971" +"GO:0007015","actin filament organization",33,13,7.71,56,"0.02822","0.00201","0.18996" +"GO:0034220","ion transmembrane transport",88,25,20.56,230,"0.15574","0.04017","0.19015" +"GO:0072001","renal system development",20,5,4.67,650,"0.51740","0.19019","0.19019" +"GO:0007399","nervous system development",162,45,37.85,146,"0.10169","0.19067","0.19067" +"GO:0044782","cilium organization",24,6,5.61,640,"0.50340","0.19086","0.19086" +"GO:0010720","positive regulation of cell development",28,8,6.54,444,"0.32217","0.19107","0.19107" +"GO:0006400","tRNA modification",11,3,2.57,628,"0.49333","0.19246","0.19246" +"GO:0030707","ovarian follicle cell development",10,4,2.34,274,"0.18680","0.19349","0.19349" +"GO:0043254","regulation of protein complex assembly",26,9,6.07,190,"0.13057","0.01536","0.19366" +"GO:0060070","canonical Wnt signaling pathway",18,6,4.21,328,"0.22751","0.19447","0.19447" +"GO:0008284","positive regulation of cell proliferatio...",27,7,6.31,584,"0.44922","0.19507","0.19507" +"GO:0019637","organophosphate metabolic process",90,26,21.03,187,"0.12889","0.19544","0.19544" +"GO:0060560","developmental growth involved in morphog...",11,3,2.57,629,"0.49333","0.19638","0.19638" +"GO:0048749","compound eye development",15,4,3.5,611,"0.47884","0.19710","0.19710" +"GO:0010033","response to organic substance",132,32,30.84,579,"0.43795","0.19915","0.19915" +"GO:0071310","cellular response to organic substance",100,23,23.36,698,"0.57511","0.20452","0.20452" +"GO:0061572","actin filament bundle organization",12,6,2.8,72,"0.03973","0.00382","0.20817" +"GO:0007155","cell adhesion",85,17,19.86,893,"0.80843","0.20873","0.20873" +"GO:0022610","biological adhesion",85,17,19.86,894,"0.80843","0.20873","0.20873" +"GO:0001738","morphogenesis of a polarized epithelium",13,4,3.04,464,"0.36085","0.20944","0.20944" +"GO:0007164","establishment of tissue polarity",13,4,3.04,465,"0.36085","0.20944","0.20944" +"GO:0021700","developmental maturation",19,8,4.44,92,"0.05393","0.20955","0.20955" +"GO:0050673","epithelial cell proliferation",13,3,3.04,729,"0.61643","0.20997","0.20997" +"GO:0006935","chemotaxis",31,8,7.24,580,"0.44167","0.21182","0.21182" +"GO:0022618","ribonucleoprotein complex assembly",12,3,2.8,672,"0.55745","0.21295","0.21295" +"GO:0071826","ribonucleoprotein complex subunit organi...",12,3,2.8,673,"0.55745","0.21295","0.21295" +"GO:0007163","establishment or maintenance of cell pol...",15,3,3.5,795,"0.71761","0.21462","0.21462" +"GO:0046434","organophosphate catabolic process",16,6,3.74,220,"0.14811","0.21509","0.21509" +"GO:0001505","regulation of neurotransmitter levels",23,7,5.37,387,"0.27867","0.21657","0.21657" +"GO:0007269","neurotransmitter secretion",12,5,2.8,182,"0.12517","0.21659","0.21659" +"GO:0099643","signal release from synapse",12,5,2.8,183,"0.12517","0.21659","0.21659" +"GO:0001101","response to acid chemical",13,4,3.04,466,"0.36085","0.21729","0.21729" +"GO:1902903","regulation of supramolecular fiber organ...",28,10,6.54,138,"0.09552","0.01184","0.21789" +"GO:0055065","metal ion homeostasis",23,12,5.37,5,"0.00242","0.00379","0.21914" +"GO:0051668","localization within membrane",10,4,2.34,275,"0.18680","0.21973","0.21973" +"GO:0046474","glycerophospholipid biosynthetic process",15,3,3.5,796,"0.71761","0.22145","0.22145" +"GO:0009314","response to radiation",28,10,6.54,139,"0.09552","0.22176","0.22176" +"GO:0030182","neuron differentiation",105,29,24.53,258,"0.17380","0.22292","0.22292" +"GO:0007166","cell surface receptor signaling pathway",126,33,29.44,361,"0.25069","0.22311","0.22311" +"GO:0001822","kidney development",18,4,4.21,746,"0.63637","0.22482","0.22482" +"GO:0051173","positive regulation of nitrogen compound...",123,31,28.74,457,"0.34436","0.03548","0.22677" +"GO:0045666","positive regulation of neuron differenti...",18,5,4.21,528,"0.41578","0.22910","0.22910" +"GO:0008154","actin polymerization or depolymerization",18,6,4.21,329,"0.22751","0.02249","0.23088" +"GO:0000070","mitotic sister chromatid segregation",12,5,2.8,184,"0.12517","0.23127","0.23127" +"GO:0010604","positive regulation of macromolecule met...",131,34,30.61,380,"0.26589","0.03494","0.23191" +"GO:0051962","positive regulation of nervous system de...",25,7,5.84,476,"0.36315","0.23231","0.23231" +"GO:0030036","actin cytoskeleton organization",62,20,14.49,105,"0.06708","0.05360","0.23276" +"GO:2000113","negative regulation of cellular macromol...",70,18,16.35,479,"0.36330","0.24035","0.24035" +"GO:0051050","positive regulation of transport",52,13,12.15,581,"0.44269","0.24036","0.24036" +"GO:0043543","protein acylation",27,9,6.31,232,"0.15748","0.24050","0.24050" +"GO:0048699","generation of neurons",118,32,27.57,282,"0.18889","0.24085","0.24085" +"GO:0019216","regulation of lipid metabolic process",10,3,2.34,549,"0.42488","0.24213","0.24213" +"GO:0043062","extracellular structure organization",19,5,4.44,598,"0.46734","0.24466","0.24466" +"GO:0007369","gastrulation",14,5,3.27,300,"0.21156","0.24897","0.24897" +"GO:0050803","regulation of synapse structure or activ...",20,4,4.67,820,"0.72245","0.25048","0.25048" +"GO:0050807","regulation of synapse organization",20,4,4.67,821,"0.72245","0.25048","0.25048" +"GO:0043412","macromolecule modification",446,111,104.2,307,"0.21584","0.10236","0.25123" +"GO:1901700","response to oxygen-containing compound",63,17,14.72,398,"0.28935","0.25136","0.25136" +"GO:0006497","protein lipidation",17,5,3.97,480,"0.36348","0.25296","0.25296" +"GO:0042158","lipoprotein biosynthetic process",17,5,3.97,481,"0.36348","0.25296","0.25296" +"GO:0034329","cell junction assembly",14,5,3.27,301,"0.21156","0.25550","0.25550" +"GO:0034330","cell junction organization",14,5,3.27,302,"0.21156","0.25550","0.25550" +"GO:0030029","actin filament-based process",64,20,14.95,130,"0.08936","0.03423","0.25592" +"GO:0022008","neurogenesis",121,33,28.27,260,"0.17466","0.25647","0.25647" +"GO:0002064","epithelial cell development",18,5,4.21,529,"0.41578","0.25663","0.25663" +"GO:0002065","columnar/cuboidal epithelial cell differ...",18,6,4.21,330,"0.22751","0.25663","0.25663" +"GO:0048863","stem cell differentiation",15,4,3.5,612,"0.47884","0.25862","0.25862" +"GO:0006417","regulation of translation",24,5,5.61,780,"0.69276","0.26043","0.26043" +"GO:0034248","regulation of cellular amide metabolic p...",24,5,5.61,781,"0.69276","0.26043","0.26043" +"GO:0032271","regulation of protein polymerization",22,8,5.14,173,"0.11850","0.00829","0.26080" +"GO:0010629","negative regulation of gene expression",98,28,22.9,192,"0.13160","0.26107","0.26107" +"GO:0009966","regulation of signal transduction",155,44,36.21,116,"0.07816","0.04983","0.26122" +"GO:0044706","multi-multicellular organism process",12,5,2.8,185,"0.12517","0.26222","0.26222" +"GO:0008202","steroid metabolic process",16,2,3.74,1004,"0.91751","0.26428","0.26428" +"GO:0044703","multi-organism reproductive process",63,17,14.72,399,"0.28935","0.26529","0.26529" +"GO:0070887","cellular response to chemical stimulus",122,28,28.5,700,"0.58065","0.26644","0.26644" +"GO:0006914","autophagy",37,12,8.64,198,"0.13287","0.26916","0.26916" +"GO:0061919","process utilizing autophagic mechanism",37,12,8.64,199,"0.13287","0.26916","0.26916" +"GO:0042157","lipoprotein metabolic process",20,5,4.67,651,"0.51740","0.26951","0.26951" +"GO:0022414","reproductive process",94,25,21.96,365,"0.25992","0.26955","0.26955" +"GO:0031325","positive regulation of cellular metaboli...",130,35,30.37,281,"0.18826","0.04552","0.27258" +"GO:0006836","neurotransmitter transport",24,6,5.61,641,"0.50340","0.27368","0.27368" +"GO:0001736","establishment of planar polarity",12,3,2.8,674,"0.55745","0.27385","0.27385" +"GO:0051094","positive regulation of developmental pro...",72,20,16.82,317,"0.22132","0.27408","0.27408" +"GO:0044255","cellular lipid metabolic process",87,25,20.33,210,"0.14109","0.27426","0.27426" +"GO:1901701","cellular response to oxygen-containing c...",43,12,10.05,405,"0.29091","0.27520","0.27520" +"GO:0000302","response to reactive oxygen species",12,5,2.8,186,"0.12517","0.27780","0.27780" +"GO:0048519","negative regulation of biological proces...",257,67,60.04,231,"0.15652","0.12800","0.27817" +"GO:0040007","growth",56,12,13.08,778,"0.68615","0.28094","0.28094" +"GO:2001251","negative regulation of chromosome organi...",11,1,2.57,1056,"0.94683","0.28222","0.28222" +"GO:0007041","lysosomal transport",11,2,2.57,853,"0.76752","0.28361","0.28361" +"GO:0043624","cellular protein complex disassembly",11,2,2.57,854,"0.76752","0.28361","0.28361" +"GO:0006897","endocytosis",41,13,9.58,206,"0.13913","0.28400","0.28400" +"GO:0051650","establishment of vesicle localization",15,5,3.5,369,"0.26032","0.28486","0.28486" +"GO:0009416","response to light stimulus",21,6,4.91,490,"0.36391","0.28688","0.28688" +"GO:0031503","protein-containing complex localization",13,5,3.04,245,"0.16615","0.28866","0.28866" +"GO:0051146","striated muscle cell differentiation",23,7,5.37,388,"0.27867","0.28967","0.28967" +"GO:0010558","negative regulation of macromolecule bio...",71,18,16.59,507,"0.38907","0.28995","0.28995" +"GO:0031327","negative regulation of cellular biosynth...",71,18,16.59,508,"0.38907","0.28995","0.28995" +"GO:0030041","actin filament polymerization",16,6,3.74,221,"0.14811","0.01558","0.29314" +"GO:0044770","cell cycle phase transition",18,6,4.21,331,"0.22751","0.29589","0.29589" +"GO:0051276","chromosome organization",120,30,28.04,496,"0.36697","0.29774","0.29774" +"GO:0055074","calcium ion homeostasis",17,10,3.97,4,"0.00173","0.00420","0.29964" +"GO:0014706","striated muscle tissue development",32,9,7.48,447,"0.32289","0.29969","0.29969" +"GO:0051960","regulation of nervous system development",46,13,10.75,374,"0.26268","0.30002","0.30002" +"GO:1903047","mitotic cell cycle process",46,15,10.75,142,"0.09623","0.30228","0.30228" +"GO:0006898","receptor-mediated endocytosis",10,3,2.34,550,"0.42488","0.30503","0.30503" +"GO:0048667","cell morphogenesis involved in neuron di...",39,10,9.11,568,"0.42847","0.30600","0.30600" +"GO:0071103","DNA conformation change",21,7,4.91,285,"0.20026","0.30640","0.30640" +"GO:0030198","extracellular matrix organization",17,4,3.97,710,"0.58735","0.30771","0.30771" +"GO:0098609","cell-cell adhesion",50,10,11.68,851,"0.76521","0.30772","0.30772" +"GO:0048523","negative regulation of cellular process",223,56,52.1,389,"0.28308","0.13281","0.30903" +"GO:0006887","exocytosis",25,8,5.84,287,"0.21060","0.30942","0.30942" +"GO:0048518","positive regulation of biological proces...",315,76,73.59,509,"0.38923","0.04384","0.30945" +"GO:0043270","positive regulation of ion transport",12,4,2.8,418,"0.30094","0.31025","0.31025" +"GO:0015849","organic acid transport",22,5,5.14,721,"0.61078","0.31249","0.31249" +"GO:0046942","carboxylic acid transport",22,5,5.14,722,"0.61078","0.31249","0.31249" +"GO:0001501","skeletal system development",19,7,4.44,193,"0.13234","0.31286","0.31286" +"GO:0007548","sex differentiation",17,6,3.97,265,"0.18615","0.31305","0.31305" +"GO:0007059","chromosome segregation",26,8,6.07,354,"0.24616","0.31475","0.31475" +"GO:0009150","purine ribonucleotide metabolic process",29,9,6.78,309,"0.21837","0.31516","0.31516" +"GO:0009259","ribonucleotide metabolic process",29,9,6.78,310,"0.21837","0.31516","0.31516" +"GO:0007018","microtubule-based movement",34,12,7.94,115,"0.07744","0.31633","0.31633" +"GO:0042063","gliogenesis",12,3,2.8,675,"0.55745","0.31664","0.31664" +"GO:0016458","gene silencing",17,5,3.97,482,"0.36348","0.31744","0.31744" +"GO:0008299","isoprenoid biosynthetic process",10,3,2.34,551,"0.42488","0.31754","0.31754" +"GO:0000082","G1/S transition of mitotic cell cycle",10,4,2.34,276,"0.18680","0.31819","0.31819" +"GO:0044843","cell cycle G1/S phase transition",10,4,2.34,277,"0.18680","0.31819","0.31819" +"GO:0045814","negative regulation of gene expression, ...",10,2,2.34,802,"0.71767","0.31819","0.31819" +"GO:0051261","protein depolymerization",10,2,2.34,803,"0.71767","0.31819","0.31819" +"GO:0034765","regulation of ion transmembrane transpor...",19,7,4.44,194,"0.13234","0.31825","0.31825" +"GO:1904062","regulation of cation transmembrane trans...",19,7,4.44,195,"0.13234","0.31825","0.31825" +"GO:0007017","microtubule-based process",64,20,14.95,131,"0.08936","0.31875","0.31875" +"GO:0007411","axon guidance",19,5,4.44,599,"0.46734","0.32006","0.32006" +"GO:0097485","neuron projection guidance",19,5,4.44,600,"0.46734","0.32006","0.32006" +"GO:0046649","lymphocyte activation",16,5,3.74,428,"0.31133","0.32027","0.32027" +"GO:0007417","central nervous system development",61,14,14.25,701,"0.58133","0.32043","0.32043" +"GO:0032504","multicellular organism reproduction",65,14,15.19,777,"0.68499","0.32288","0.32288" +"GO:0045055","regulated exocytosis",13,5,3.04,246,"0.16615","0.32373","0.32373" +"GO:0009791","post-embryonic development",28,8,6.54,445,"0.32217","0.32473","0.32473" +"GO:0035282","segmentation",13,5,3.04,247,"0.16615","0.32605","0.32605" +"GO:0048569","post-embryonic animal organ development",13,5,3.04,248,"0.16615","0.32605","0.32605" +"GO:0060249","anatomical structure homeostasis",19,7,4.44,196,"0.13234","0.32734","0.32734" +"GO:0051259","protein complex oligomerization",20,7,4.67,237,"0.16474","0.32850","0.32850" +"GO:0045596","negative regulation of cell differentiat...",37,12,8.64,200,"0.13287","0.32963","0.32963" +"GO:0007160","cell-matrix adhesion",10,3,2.34,552,"0.42488","0.32980","0.32980" +"GO:0010001","glial cell differentiation",10,2,2.34,804,"0.71767","0.32980","0.32980" +"GO:0090596","sensory organ morphogenesis",30,10,7.01,209,"0.14040","0.33030","0.33030" +"GO:0035967","cellular response to topologically incor...",13,3,3.04,730,"0.61643","0.33083","0.33083" +"GO:0042692","muscle cell differentiation",25,8,5.84,288,"0.21060","0.33290","0.33290" +"GO:0010605","negative regulation of macromolecule met...",130,34,30.37,360,"0.24942","0.33385","0.33385" +"GO:0051648","vesicle localization",17,5,3.97,483,"0.36348","0.33472","0.33472" +"GO:0015718","monocarboxylic acid transport",10,2,2.34,805,"0.71767","0.33596","0.33596" +"GO:0035295","tube development",52,19,12.15,46,"0.02114","0.00346","0.33738" +"GO:0060322","head development",51,12,11.92,670,"0.54395","0.33746","0.33746" +"GO:0010942","positive regulation of cell death",23,6,5.37,590,"0.45766","0.33838","0.33838" +"GO:0031334","positive regulation of protein complex a...",19,7,4.44,197,"0.13234","0.00600","0.33903" +"GO:0007565","female pregnancy",11,4,2.57,344,"0.24235","0.34171","0.34171" +"GO:0034655","nucleobase-containing compound catabolic...",45,13,10.51,334,"0.23524","0.34306","0.34306" +"GO:0009890","negative regulation of biosynthetic proc...",72,18,16.82,527,"0.41507","0.34436","0.34436" +"GO:0009166","nucleotide catabolic process",11,4,2.57,345,"0.24235","0.34613","0.34613" +"GO:0019693","ribose phosphate metabolic process",30,9,7.01,362,"0.25178","0.35225","0.35225" +"GO:0009892","negative regulation of metabolic process",137,37,32.01,259,"0.17434","0.35231","0.35231" +"GO:0006261","DNA-dependent DNA replication",17,3,3.97,879,"0.79678","0.35261","0.35261" +"GO:0006091","generation of precursor metabolites and ...",25,7,5.84,477,"0.36315","0.35310","0.35310" +"GO:0009117","nucleotide metabolic process",42,13,9.81,234,"0.16084","0.35522","0.35522" +"GO:0198738","cell-cell signaling by wnt",33,7,7.71,776,"0.68168","0.35555","0.35555" +"GO:0045892","negative regulation of transcription, DN...",63,17,14.72,400,"0.28935","0.35583","0.35583" +"GO:1902679","negative regulation of RNA biosynthetic ...",63,17,14.72,401,"0.28935","0.35583","0.35583" +"GO:1903507","negative regulation of nucleic acid-temp...",63,17,14.72,402,"0.28935","0.35583","0.35583" +"GO:0050896","response to stimulus",708,184,165.41,55,"0.02775","0.00597","0.35598" +"GO:0009893","positive regulation of metabolic process",144,37,33.64,386,"0.27722","0.09619","0.35878" +"GO:0051241","negative regulation of multicellular org...",47,13,10.98,412,"0.29117","0.36080","0.36080" +"GO:0042221","response to chemical",213,47,49.76,791,"0.70734","0.36120","0.36120" +"GO:0008285","negative regulation of cell proliferatio...",28,10,6.54,140,"0.09552","0.36263","0.36263" +"GO:0030099","myeloid cell differentiation",15,5,3.5,370,"0.26032","0.36633","0.36633" +"GO:0006325","chromatin organization",85,20,19.86,656,"0.52873","0.36752","0.36752" +"GO:0010970","transport along microtubule",18,7,4.21,149,"0.10345","0.36819","0.36819" +"GO:0030705","cytoskeleton-dependent intracellular tra...",18,7,4.21,150,"0.10345","0.36819","0.36819" +"GO:0099111","microtubule-based transport",18,7,4.21,151,"0.10345","0.36819","0.36819" +"GO:0030534","adult behavior",11,0,2.57,1163,"1.00000","0.36853","0.36853" +"GO:0045807","positive regulation of endocytosis",11,4,2.57,346,"0.24235","0.36988","0.36988" +"GO:0007420","brain development",49,11,11.45,736,"0.61651","0.36998","0.36998" +"GO:0035220","wing disc development",10,4,2.34,278,"0.18680","0.37021","0.37021" +"GO:0045595","regulation of cell differentiation",84,23,19.63,321,"0.22236","0.37055","0.37055" +"GO:0022898","regulation of transmembrane transporter ...",17,6,3.97,266,"0.18615","0.37262","0.37262" +"GO:0032409","regulation of transporter activity",17,6,3.97,267,"0.18615","0.37262","0.37262" +"GO:0032412","regulation of ion transmembrane transpor...",17,6,3.97,268,"0.18615","0.37262","0.37262" +"GO:0035148","tube formation",12,3,2.8,676,"0.55745","0.37302","0.37302" +"GO:0051253","negative regulation of RNA metabolic pro...",64,17,14.95,433,"0.31458","0.37404","0.37404" +"GO:1901698","response to nitrogen compound",39,9,9.11,699,"0.57972","0.37834","0.37834" +"GO:0040029","regulation of gene expression, epigeneti...",15,4,3.5,613,"0.47884","0.37957","0.37957" +"GO:0010243","response to organonitrogen compound",35,7,8.18,833,"0.74362","0.38080","0.38080" +"GO:0007416","synapse assembly",16,4,3.74,660,"0.53467","0.38236","0.38236" +"GO:0007626","locomotory behavior",16,3,3.74,843,"0.75982","0.38236","0.38236" +"GO:0048522","positive regulation of cellular process",269,66,62.85,455,"0.33908","0.05565","0.38287" +"GO:0046903","secretion",68,18,15.89,431,"0.31287","0.38479","0.38479" +"GO:0007517","muscle organ development",34,9,7.94,513,"0.39727","0.38526","0.38526" +"GO:0048736","appendage development",16,6,3.74,222,"0.14811","0.38658","0.38658" +"GO:0048469","cell maturation",13,5,3.04,249,"0.16615","0.38778","0.38778" +"GO:0006513","protein monoubiquitination",13,3,3.04,731,"0.61643","0.38803","0.38803" +"GO:0007179","transforming growth factor beta receptor...",14,4,3.27,538,"0.42057","0.38815","0.38815" +"GO:0006753","nucleoside phosphate metabolic process",43,13,10.05,263,"0.18417","0.38830","0.38830" +"GO:0099173","postsynapse organization",13,2,3.04,933,"0.84464","0.38892","0.38892" +"GO:0009719","response to endogenous stimulus",75,19,17.52,505,"0.38503","0.38921","0.38921" +"GO:0051641","cellular localization",220,53,51.4,546,"0.42235","0.39150","0.39150" +"GO:0051495","positive regulation of cytoskeleton orga...",25,8,5.84,289,"0.21060","0.01637","0.39154" +"GO:0043269","regulation of ion transport",26,8,6.07,355,"0.24616","0.39288","0.39288" +"GO:0006694","steroid biosynthetic process",13,2,3.04,934,"0.84464","0.39377","0.39377" +"GO:0050890","cognition",20,9,4.67,53,"0.02658","0.00251","0.39563" +"GO:0016569","covalent chromatin modification",54,12,12.62,742,"0.63239","0.39592","0.39592" +"GO:0007346","regulation of mitotic cell cycle",19,6,4.44,382,"0.27143","0.39680","0.39680" +"GO:0045597","positive regulation of cell differentiat...",50,14,11.68,375,"0.26374","0.39761","0.39761" +"GO:0051260","protein homooligomerization",15,6,3.5,168,"0.11402","0.39877","0.39877" +"GO:0097305","response to alcohol",18,4,4.21,747,"0.63637","0.40047","0.40047" +"GO:0002443","leukocyte mediated immunity",13,3,3.04,732,"0.61643","0.40084","0.40084" +"GO:0007610","behavior",55,18,12.85,107,"0.07047","0.01740","0.40192" +"GO:0000278","mitotic cell cycle",58,17,13.55,261,"0.17588","0.40311","0.40311" +"GO:0033674","positive regulation of kinase activity",16,6,3.74,223,"0.14811","0.00843","0.40353" +"GO:0002066","columnar/cuboidal epithelial cell develo...",12,4,2.8,419,"0.30094","0.40478","0.40478" +"GO:0048738","cardiac muscle tissue development",16,5,3.74,429,"0.31133","0.40485","0.40485" +"GO:1901292","nucleoside phosphate catabolic process",12,4,2.8,420,"0.30094","0.40518","0.40518" +"GO:0000956","nuclear-transcribed mRNA catabolic proce...",15,5,3.5,371,"0.26032","0.40526","0.40526" +"GO:0050878","regulation of body fluid levels",11,3,2.57,630,"0.49333","0.40548","0.40548" +"GO:0006163","purine nucleotide metabolic process",32,10,7.48,283,"0.19437","0.40577","0.40577" +"GO:0072350","tricarboxylic acid metabolic process",11,3,2.57,631,"0.49333","0.40646","0.40646" +"GO:0010563","negative regulation of phosphorus metabo...",24,6,5.61,642,"0.50340","0.41317","0.41317" +"GO:0045936","negative regulation of phosphate metabol...",24,6,5.61,643,"0.50340","0.41317","0.41317" +"GO:0051240","positive regulation of multicellular org...",80,22,18.69,319,"0.22218","0.41446","0.41446" +"GO:0019827","stem cell population maintenance",11,3,2.57,632,"0.49333","0.41482","0.41482" +"GO:0098727","maintenance of cell number",11,3,2.57,633,"0.49333","0.41482","0.41482" +"GO:0018209","peptidyl-serine modification",11,1,2.57,1057,"0.94683","0.41511","0.41511" +"GO:0042060","wound healing",19,6,4.44,383,"0.27143","0.41517","0.41517" +"GO:0045321","leukocyte activation",27,7,6.31,585,"0.44922","0.41655","0.41655" +"GO:0044419","interspecies interaction between organis...",14,2,3.27,960,"0.87377","0.41666","0.41666" +"GO:0045137","development of primary sexual characteri...",14,5,3.27,303,"0.21156","0.41742","0.41742" +"GO:0051051","negative regulation of transport",13,1,3.04,1097,"0.96887","0.42079","0.42079" +"GO:0050953","sensory perception of light stimulus",11,4,2.57,347,"0.24235","0.42268","0.42268" +"GO:0031324","negative regulation of cellular metaboli...",108,26,25.23,605,"0.46770","0.42394","0.42394" +"GO:1902115","regulation of organelle assembly",16,4,3.74,661,"0.53467","0.42529","0.42529" +"GO:0042461","photoreceptor cell development",13,4,3.04,467,"0.36085","0.42608","0.42608" +"GO:0009798","axis specification",11,4,2.57,348,"0.24235","0.42844","0.42844" +"GO:0045934","negative regulation of nucleobase-contai...",67,17,15.65,511,"0.39326","0.42941","0.42941" +"GO:0006812","cation transport",100,30,23.36,108,"0.07181","0.10150","0.43261" +"GO:0071559","response to transforming growth factor b...",18,5,4.21,530,"0.41578","0.43465","0.43465" +"GO:0071560","cellular response to transforming growth...",18,5,4.21,531,"0.41578","0.43465","0.43465" +"GO:0046530","photoreceptor cell differentiation",15,4,3.5,614,"0.47884","0.43843","0.43843" +"GO:0007281","germ cell development",35,9,8.18,573,"0.43480","0.43890","0.43890" +"GO:0030001","metal ion transport",72,24,16.82,61,"0.03286","0.07219","0.44046" +"GO:0060537","muscle tissue development",34,9,7.94,514,"0.39727","0.44250","0.44250" +"GO:0007409","axonogenesis",29,7,6.78,658,"0.53289","0.44289","0.44289" +"GO:0044403","symbiont process",13,1,3.04,1098,"0.96887","0.44371","0.44371" +"GO:0050808","synapse organization",31,5,7.24,976,"0.88319","0.44421","0.44421" +"GO:0016999","antibiotic metabolic process",13,4,3.04,468,"0.36085","0.44478","0.44478" +"GO:0035239","tube morphogenesis",48,18,11.21,44,"0.01857","0.00467","0.44526" +"GO:0044089","positive regulation of cellular componen...",42,11,9.81,506,"0.38889","0.04036","0.44541" +"GO:0033044","regulation of chromosome organization",20,4,4.67,822,"0.72245","0.44591","0.44591" +"GO:0065007","biological regulation",981,243,229.19,136,"0.09390","0.01592","0.44678" +"GO:0016570","histone modification",50,11,11.68,752,"0.64575","0.44849","0.44849" +"GO:0008654","phospholipid biosynthetic process",19,4,4.44,773,"0.68144","0.44870","0.44870" +"GO:0007010","cytoskeleton organization",99,29,23.13,143,"0.09820","0.08288","0.44901" +"GO:0051345","positive regulation of hydrolase activit...",26,6,6.07,718,"0.59012","0.44909","0.44909" +"GO:0090287","regulation of cellular response to growt...",14,4,3.27,539,"0.42057","0.45008","0.45008" +"GO:0051129","negative regulation of cellular componen...",46,12,10.75,504,"0.38491","0.00850","0.45045" +"GO:0007444","imaginal disc development",12,4,2.8,421,"0.30094","0.45073","0.45073" +"GO:0034404","nucleobase-containing small molecule bio...",13,4,3.04,469,"0.36085","0.45195","0.45195" +"GO:0042326","negative regulation of phosphorylation",20,4,4.67,823,"0.72245","0.45378","0.45378" +"GO:0033993","response to lipid",48,11,11.21,705,"0.58614","0.45448","0.45448" +"GO:0009605","response to external stimulus",106,27,24.77,454,"0.33609","0.45531","0.45531" +"GO:0034764","positive regulation of transmembrane tra...",13,5,3.04,250,"0.16615","0.45534","0.45534" +"GO:2000027","regulation of animal organ morphogenesis",13,4,3.04,470,"0.36085","0.45534","0.45534" +"GO:0035051","cardiocyte differentiation",12,4,2.8,422,"0.30094","0.45666","0.45666" +"GO:0010468","regulation of gene expression",370,83,86.44,785,"0.69924","0.45688","0.45688" +"GO:0032787","monocarboxylic acid metabolic process",22,4,5.14,874,"0.79244","0.45853","0.45853" +"GO:1902531","regulation of intracellular signal trans...",92,27,21.49,155,"0.10594","0.08162","0.45953" +"GO:0022412","cellular process involved in reproductio...",38,10,8.88,510,"0.39301","0.46091","0.46091" +"GO:1901652","response to peptide",12,3,2.8,677,"0.55745","0.46135","0.46135" +"GO:2000112","regulation of cellular macromolecule bio...",334,72,78.03,909,"0.81888","0.46221","0.46221" +"GO:0071495","cellular response to endogenous stimulus",60,15,14.02,570,"0.43077","0.46257","0.46257" +"GO:0003006","developmental process involved in reprod...",60,15,14.02,571,"0.43077","0.46295","0.46295" +"GO:0002165","instar larval or pupal development",11,4,2.57,349,"0.24235","0.46525","0.46525" +"GO:0019953","sexual reproduction",59,15,13.78,517,"0.40213","0.46585","0.46585" +"GO:0045665","negative regulation of neuron differenti...",10,3,2.34,553,"0.42488","0.46687","0.46687" +"GO:0008283","cell proliferation",76,21,17.76,318,"0.22184","0.46785","0.46785" +"GO:0006875","cellular metal ion homeostasis",19,10,4.44,15,"0.00517","0.02016","0.46873" +"GO:0140014","mitotic nuclear division",16,6,3.74,224,"0.14811","0.47073","0.47073" +"GO:0090407","organophosphate biosynthetic process",44,12,10.28,442,"0.32161","0.47087","0.47087" +"GO:2000243","positive regulation of reproductive proc...",10,3,2.34,554,"0.42488","0.47156","0.47156" +"GO:0051047","positive regulation of secretion",20,6,4.67,435,"0.31715","0.47233","0.47233" +"GO:0042127","regulation of cell proliferation",64,18,14.95,315,"0.21960","0.47344","0.47344" +"GO:0030010","establishment of cell polarity",12,3,2.8,678,"0.55745","0.47463","0.47463" +"GO:0099003","vesicle-mediated transport in synapse",16,6,3.74,225,"0.14811","0.47471","0.47471" +"GO:0043065","positive regulation of apoptotic process",18,4,4.21,748,"0.63637","0.47592","0.47592" +"GO:0009612","response to mechanical stimulus",14,4,3.27,540,"0.42057","0.47711","0.47711" +"GO:0051249","regulation of lymphocyte activation",14,4,3.27,541,"0.42057","0.48098","0.48098" +"GO:0051052","regulation of DNA metabolic process",17,4,3.97,711,"0.58735","0.48206","0.48206" +"GO:0000122","negative regulation of transcription by ...",36,9,8.41,607,"0.47210","0.48215","0.48215" +"GO:1902275","regulation of chromatin organization",16,3,3.74,844,"0.75982","0.48457","0.48457" +"GO:0033673","negative regulation of kinase activity",11,2,2.57,855,"0.76752","0.48684","0.48684" +"GO:0050767","regulation of neurogenesis",44,11,10.28,588,"0.45623","0.48715","0.48715" +"GO:0098657","import into cell",44,13,10.28,286,"0.20902","0.48715","0.48715" +"GO:0023052","signaling",472,133,110.27,10,"0.00379","0.00094","0.48738" +"GO:0006323","DNA packaging",17,5,3.97,484,"0.36348","0.48838","0.48838" +"GO:0030522","intracellular receptor signaling pathway",12,2,2.8,895,"0.80953","0.49152","0.49152" +"GO:0044267","cellular protein metabolic process",504,118,117.75,649,"0.50950","0.25015","0.49233" +"GO:0045087","innate immune response",25,6,5.84,671,"0.54769","0.49384","0.49384" +"GO:0002697","regulation of immune effector process",10,2,2.34,806,"0.71767","0.49543","0.49543" +"GO:0006366","transcription by RNA polymerase II",112,23,26.17,887,"0.79777","0.49605","0.49605" +"GO:0009889","regulation of biosynthetic process",345,73,80.6,959,"0.86845","0.49659","0.49659" +"GO:0007005","mitochondrion organization",36,8,8.41,737,"0.62933","0.50034","0.50034" +"GO:0043068","positive regulation of programmed cell d...",19,4,4.44,774,"0.68144","0.50076","0.50076" +"GO:0051336","regulation of hydrolase activity",48,11,11.21,706,"0.58614","0.50121","0.50121" +"GO:0045664","regulation of neuron differentiation",37,9,8.64,647,"0.50886","0.50202","0.50202" +"GO:0006401","RNA catabolic process",30,9,7.01,363,"0.25178","0.50325","0.50325" +"GO:0072521","purine-containing compound metabolic pro...",34,10,7.94,364,"0.25590","0.50398","0.50398" +"GO:0007267","cell-cell signaling",78,19,18.22,594,"0.46105","0.50525","0.50525" +"GO:0042391","regulation of membrane potential",14,5,3.27,304,"0.21156","0.50749","0.50749" +"GO:0008544","epidermis development",13,2,3.04,935,"0.84464","0.50825","0.50825" +"GO:0048872","homeostasis of number of cells",13,2,3.04,936,"0.84464","0.50825","0.50825" +"GO:0051716","cellular response to stimulus",586,157,136.91,34,"0.01419","0.00260","0.51021" +"GO:0043933","protein-containing complex subunit organ...",107,30,25,214,"0.14652","0.20858","0.51089" +"GO:0002682","regulation of immune system process",59,14,13.78,655,"0.52474","0.51143","0.51143" +"GO:0120036","plasma membrane bounded cell projection ...",101,29,23.6,175,"0.12049","0.00873","0.51208" +"GO:0035107","appendage morphogenesis",14,5,3.27,305,"0.21156","0.51319","0.51319" +"GO:0048609","multicellular organismal reproductive pr...",61,14,14.25,702,"0.58133","0.51504","0.51504" +"GO:0071417","cellular response to organonitrogen comp...",11,1,2.57,1058,"0.94683","0.51733","0.51733" +"GO:0072659","protein localization to plasma membrane",13,5,3.04,251,"0.16615","0.51954","0.51954" +"GO:0001558","regulation of cell growth",18,3,4.21,917,"0.82887","0.52092","0.52092" +"GO:0008406","gonad development",12,4,2.8,423,"0.30094","0.52180","0.52180" +"GO:0007568","aging",21,6,4.91,491,"0.36391","0.52203","0.52203" +"GO:0010556","regulation of macromolecule biosynthetic...",336,72,78.5,927,"0.83524","0.52336","0.52336" +"GO:0001701","in utero embryonic development",22,4,5.14,875,"0.79244","0.52374","0.52374" +"GO:0032273","positive regulation of protein polymeriz...",17,6,3.97,269,"0.18615","0.01020","0.52467" +"GO:0006482","protein demethylation",10,0,2.34,1164,"1.00000","0.52496","0.52496" +"GO:0008214","protein dealkylation",10,0,2.34,1165,"1.00000","0.52496","0.52496" +"GO:0016577","histone demethylation",10,0,2.34,1166,"1.00000","0.52496","0.52496" +"GO:0070988","demethylation",10,0,2.34,1167,"1.00000","0.52496","0.52496" +"GO:0060284","regulation of cell development",52,13,12.15,582,"0.44269","0.52955","0.52955" +"GO:0009725","response to hormone",54,15,12.62,376,"0.26441","0.52974","0.52974" +"GO:0016071","mRNA metabolic process",58,15,13.55,497,"0.37366","0.53078","0.53078" +"GO:0016579","protein deubiquitination",21,6,4.91,492,"0.36391","0.53109","0.53109" +"GO:0070646","protein modification by small protein re...",21,6,4.91,493,"0.36391","0.53109","0.53109" +"GO:0023061","signal release",25,8,5.84,290,"0.21060","0.53157","0.53157" +"GO:0006402","mRNA catabolic process",24,8,5.61,262,"0.17722","0.53192","0.53192" +"GO:0016032","viral process",10,1,2.34,1017,"0.93053","0.53565","0.53565" +"GO:0016070","RNA metabolic process",459,92,107.24,1111,"0.97480","0.53714","0.53714" +"GO:0099504","synaptic vesicle cycle",18,6,4.21,332,"0.22751","0.53796","0.53796" +"GO:0046907","intracellular transport",154,38,35.98,499,"0.37703","0.53906","0.53906" +"GO:0006629","lipid metabolic process",126,30,29.44,624,"0.48776","0.54084","0.54084" +"GO:0006099","tricarboxylic acid cycle",10,3,2.34,555,"0.42488","0.54232","0.54232" +"GO:0006101","citrate metabolic process",10,3,2.34,556,"0.42488","0.54232","0.54232" +"GO:0009060","aerobic respiration",10,3,2.34,557,"0.42488","0.54232","0.54232" +"GO:0016049","cell growth",23,5,5.37,754,"0.65331","0.54240","0.54240" +"GO:1903706","regulation of hemopoiesis",11,3,2.57,634,"0.49333","0.54312","0.54312" +"GO:0048513","animal organ development",185,58,43.22,20,"0.00586","0.02102","0.54542" +"GO:0030100","regulation of endocytosis",21,6,4.91,494,"0.36391","0.54559","0.54559" +"GO:0031326","regulation of cellular biosynthetic proc...",340,72,79.44,956,"0.86483","0.54607","0.54607" +"GO:0000226","microtubule cytoskeleton organization",35,10,8.18,397,"0.28886","0.54696","0.54696" +"GO:0042462","eye photoreceptor cell development",10,3,2.34,558,"0.42488","0.55046","0.55046" +"GO:0060627","regulation of vesicle-mediated transport",31,7,7.24,725,"0.61107","0.55286","0.55286" +"GO:0045862","positive regulation of proteolysis",18,3,4.21,918,"0.82887","0.55365","0.55365" +"GO:0097479","synaptic vesicle localization",11,4,2.57,350,"0.24235","0.55696","0.55696" +"GO:0048193","Golgi vesicle transport",25,7,5.84,478,"0.36315","0.55853","0.55853" +"GO:0055086","nucleobase-containing small molecule met...",52,14,12.15,436,"0.31923","0.56089","0.56089" +"GO:0002376","immune system process",103,25,24.06,586,"0.45110","0.56400","0.56400" +"GO:2000241","regulation of reproductive process",17,4,3.97,712,"0.58735","0.56682","0.56682" +"GO:0009581","detection of external stimulus",13,2,3.04,937,"0.84464","0.56852","0.56852" +"GO:0009582","detection of abiotic stimulus",13,2,3.04,938,"0.84464","0.56852","0.56852" +"GO:1990778","protein localization to cell periphery",14,5,3.27,306,"0.21156","0.56929","0.56929" +"GO:0051172","negative regulation of nitrogen compound...",102,22,23.83,790,"0.70670","0.57156","0.57156" +"GO:0048511","rhythmic process",19,5,4.44,601,"0.46734","0.57471","0.57471" +"GO:0060538","skeletal muscle organ development",19,6,4.44,384,"0.27143","0.57471","0.57471" +"GO:0034654","nucleobase-containing compound biosynthe...",372,81,86.91,891,"0.80360","0.57491","0.57491" +"GO:0010638","positive regulation of organelle organiz...",52,13,12.15,583,"0.44269","0.24036","0.57968" +"GO:0006355","regulation of transcription, DNA-templat...",308,67,71.96,870,"0.78386","0.58084","0.58084" +"GO:1903506","regulation of nucleic acid-templated tra...",308,67,71.96,871,"0.78386","0.58084","0.58084" +"GO:2001141","regulation of RNA biosynthetic process",308,67,71.96,872,"0.78386","0.58084","0.58084" +"GO:0051704","multi-organism process",119,29,27.8,572,"0.43156","0.58105","0.58105" +"GO:0009611","response to wounding",24,7,5.61,440,"0.32044","0.58332","0.58332" +"GO:0035966","response to topologically incorrect prot...",16,4,3.74,662,"0.53467","0.58492","0.58492" +"GO:0051726","regulation of cell cycle",58,14,13.55,638,"0.49565","0.58528","0.58528" +"GO:0001754","eye photoreceptor cell differentiation",12,3,2.8,679,"0.55745","0.58707","0.58707" +"GO:0008610","lipid biosynthetic process",54,10,12.62,945,"0.84514","0.58895","0.58895" +"GO:0061564","axon development",38,8,8.88,784,"0.69397","0.59204","0.59204" +"GO:0033043","regulation of organelle organization",88,23,20.56,425,"0.30368","0.10185","0.59413" +"GO:0090092","regulation of transmembrane receptor pro...",11,3,2.57,635,"0.49333","0.59435","0.59435" +"GO:0003008","system process",89,25,20.79,255,"0.17121","0.12062","0.59811" +"GO:0035690","cellular response to drug",15,5,3.5,372,"0.26032","0.59833","0.59833" +"GO:0006979","response to oxidative stress",40,10,9.35,597,"0.46381","0.59997","0.59997" +"GO:0045944","positive regulation of transcription by ...",42,9,9.81,772,"0.67627","0.60034","0.60034" +"GO:0002694","regulation of leukocyte activation",16,4,3.74,663,"0.53467","0.60210","0.60210" +"GO:0050865","regulation of cell activation",16,4,3.74,664,"0.53467","0.60210","0.60210" +"GO:0006310","DNA recombination",27,4,6.31,993,"0.90673","0.60297","0.60297" +"GO:0045787","positive regulation of cell cycle",11,0,2.57,1168,"1.00000","0.60392","0.60392" +"GO:0003015","heart process",13,4,3.04,471,"0.36085","0.60442","0.60442" +"GO:0008016","regulation of heart contraction",13,4,3.04,472,"0.36085","0.60442","0.60442" +"GO:0060047","heart contraction",13,4,3.04,473,"0.36085","0.60442","0.60442" +"GO:0044270","cellular nitrogen compound catabolic pro...",51,13,11.92,526,"0.41182","0.60500","0.60500" +"GO:1901361","organic cyclic compound catabolic proces...",51,14,11.92,407,"0.29108","0.60500","0.60500" +"GO:0030900","forebrain development",17,3,3.97,880,"0.79678","0.60505","0.60505" +"GO:0009628","response to abiotic stimulus",77,20,17.99,452,"0.33282","0.60829","0.60829" +"GO:0006631","fatty acid metabolic process",13,1,3.04,1099,"0.96887","0.60831","0.60831" +"GO:0030308","negative regulation of cell growth",12,3,2.8,680,"0.55745","0.60869","0.60869" +"GO:0015672","monovalent inorganic cation transport",39,11,9.11,403,"0.29018","0.61006","0.61006" +"GO:0006357","regulation of transcription by RNA polym...",101,20,23.6,929,"0.83763","0.61021","0.61021" +"GO:0032269","negative regulation of cellular protein ...",42,6,9.81,1073,"0.95070","0.61052","0.61052" +"GO:0000280","nuclear division",29,9,6.78,311,"0.21837","0.61190","0.61190" +"GO:0007600","sensory perception",29,9,6.78,312,"0.21837","0.61219","0.61219" +"GO:0036503","ERAD pathway",13,1,3.04,1100,"0.96887","0.61510","0.61510" +"GO:0043434","response to peptide hormone",11,2,2.57,856,"0.76752","0.61584","0.61584" +"GO:0032270","positive regulation of cellular protein ...",68,18,15.89,432,"0.31287","0.19708","0.61682" +"GO:1902533","positive regulation of intracellular sig...",31,10,7.24,252,"0.16633","0.05383","0.61696" +"GO:1901362","organic cyclic compound biosynthetic pro...",395,84,92.28,966,"0.87463","0.62068","0.62068" +"GO:0022607","cellular component assembly",179,48,41.82,226,"0.14843","0.03471","0.62253" +"GO:0051961","negative regulation of nervous system de...",17,5,3.97,485,"0.36348","0.62337","0.62337" +"GO:0016050","vesicle organization",18,4,4.21,749,"0.63637","0.62573","0.62573" +"GO:0016573","histone acetylation",14,4,3.27,542,"0.42057","0.62767","0.62767" +"GO:0019932","second-messenger-mediated signaling",14,3,3.27,758,"0.66985","0.63142","0.63142" +"GO:2001257","regulation of cation channel activity",14,4,3.27,543,"0.42057","0.63142","0.63142" +"GO:0065003","protein-containing complex assembly",92,25,21.49,320,"0.22232","0.28766","0.63217" +"GO:0015931","nucleobase-containing compound transport",11,3,2.57,636,"0.49333","0.63292","0.63292" +"GO:0030030","cell projection organization",103,29,24.06,211,"0.14571","0.01477","0.63484" +"GO:0019439","aromatic compound catabolic process",50,13,11.68,500,"0.38105","0.63491","0.63491" +"GO:0046700","heterocycle catabolic process",50,13,11.68,501,"0.38105","0.63491","0.63491" +"GO:0032774","RNA biosynthetic process",338,71,78.97,975,"0.88113","0.63753","0.63753" +"GO:0001666","response to hypoxia",12,1,2.8,1080,"0.95931","0.63976","0.63976" +"GO:0036293","response to decreased oxygen levels",12,1,2.8,1081,"0.95931","0.63976","0.63976" +"GO:0070482","response to oxygen levels",12,1,2.8,1082,"0.95931","0.63976","0.63976" +"GO:0090304","nucleic acid metabolic process",542,107,126.63,1145,"0.99083","0.64011","0.64011" +"GO:0048285","organelle fission",32,9,7.48,448,"0.32289","0.64285","0.64285" +"GO:0042327","positive regulation of phosphorylation",35,12,8.18,137,"0.09394","0.01975","0.64314" +"GO:0002683","negative regulation of immune system pro...",15,4,3.5,615,"0.47884","0.64387","0.64387" +"GO:0031330","negative regulation of cellular cataboli...",14,4,3.27,544,"0.42057","0.64419","0.64419" +"GO:0051348","negative regulation of transferase activ...",12,2,2.8,896,"0.80953","0.64425","0.64425" +"GO:0001817","regulation of cytokine production",25,5,5.84,828,"0.72903","0.64563","0.64563" +"GO:0071214","cellular response to abiotic stimulus",11,4,2.57,351,"0.24235","0.64731","0.64731" +"GO:0104004","cellular response to environmental stimu...",11,4,2.57,352,"0.24235","0.64731","0.64731" +"GO:0019538","protein metabolic process",593,137,138.54,716,"0.58900","0.39822","0.65168" +"GO:0052547","regulation of peptidase activity",10,0,2.34,1169,"1.00000","0.65482","0.65482" +"GO:0051046","regulation of secretion",29,7,6.78,659,"0.53289","0.65496","0.65496" +"GO:0001775","cell activation",33,9,7.71,459,"0.35985","0.65520","0.65520" +"GO:0098656","anion transmembrane transport",18,3,4.21,919,"0.82887","0.65548","0.65548" +"GO:0007519","skeletal muscle tissue development",17,5,3.97,486,"0.36348","0.65599","0.65599" +"GO:1903522","regulation of blood circulation",14,4,3.27,545,"0.42057","0.65623","0.65623" +"GO:0071396","cellular response to lipid",36,8,8.41,738,"0.62933","0.65687","0.65687" +"GO:0019219","regulation of nucleobase-containing comp...",322,68,75.23,955,"0.86399","0.65691","0.65691" +"GO:0006351","transcription, DNA-templated",336,71,78.5,957,"0.86803","0.65805","0.65805" +"GO:0097659","nucleic acid-templated transcription",336,71,78.5,958,"0.86803","0.65805","0.65805" +"GO:0022402","cell cycle process",89,23,20.79,450,"0.32542","0.65811","0.65811" +"GO:0018130","heterocycle biosynthetic process",384,83,89.72,923,"0.82924","0.66083","0.66083" +"GO:0006814","sodium ion transport",19,5,4.44,602,"0.46734","0.66086","0.66086" +"GO:0019362","pyridine nucleotide metabolic process",10,2,2.34,807,"0.71767","0.66119","0.66119" +"GO:0046496","nicotinamide nucleotide metabolic proces...",10,2,2.34,808,"0.71767","0.66119","0.66119" +"GO:0072525","pyridine-containing compound biosyntheti...",10,2,2.34,809,"0.71767","0.66119","0.66119" +"GO:0007601","visual perception",10,3,2.34,559,"0.42488","0.66266","0.66266" +"GO:0001816","cytokine production",26,5,6.07,850,"0.76210","0.66287","0.66287" +"GO:0045786","negative regulation of cell cycle",26,7,6.07,520,"0.40625","0.66287","0.66287" +"GO:0000075","cell cycle checkpoint",11,3,2.57,637,"0.49333","0.66414","0.66414" +"GO:0006950","response to stress",245,61,57.24,414,"0.29865","0.66573","0.66573" +"GO:0015711","organic anion transport",29,6,6.78,786,"0.70355","0.66727","0.66727" +"GO:1901136","carbohydrate derivative catabolic proces...",11,2,2.57,857,"0.76752","0.66910","0.66910" +"GO:0044282","small molecule catabolic process",14,3,3.27,759,"0.66985","0.66974","0.66974" +"GO:0006473","protein acetylation",17,5,3.97,487,"0.36348","0.67076","0.67076" +"GO:0007049","cell cycle",121,29,28.27,608,"0.47273","0.67266","0.67266" +"GO:0001934","positive regulation of protein phosphory...",31,11,7.24,127,"0.08595","0.00721","0.67306" +"GO:0009987","cellular process",1764,407,412.13,831,"0.73975","0.55747","0.67460" +"GO:0003012","muscle system process",21,5,4.91,694,"0.56537","0.67615","0.67615" +"GO:0043618","regulation of transcription from RNA pol...",10,1,2.34,1018,"0.93053","0.67924","0.67924" +"GO:0043620","regulation of DNA-templated transcriptio...",10,1,2.34,1019,"0.93053","0.67924","0.67924" +"GO:1902882","regulation of response to oxidative stre...",10,2,2.34,810,"0.71767","0.67924","0.67924" +"GO:0009636","response to toxic substance",18,3,4.21,920,"0.82887","0.67990","0.67990" +"GO:0050801","ion homeostasis",31,13,7.24,37,"0.01615","0.04575","0.68162" +"GO:0006354","DNA-templated transcription, elongation",12,3,2.8,681,"0.55745","0.68175","0.68175" +"GO:0034599","cellular response to oxidative stress",17,5,3.97,488,"0.36348","0.68259","0.68259" +"GO:0031056","regulation of histone modification",15,3,3.5,797,"0.71761","0.68262","0.68262" +"GO:0044248","cellular catabolic process",165,43,38.55,323,"0.22358","0.68323","0.68323" +"GO:1905330","regulation of morphogenesis of an epithe...",10,3,2.34,560,"0.42488","0.68328","0.68328" +"GO:0048585","negative regulation of response to stimu...",75,20,17.52,392,"0.28627","0.68334","0.68334" +"GO:0055082","cellular chemical homeostasis",23,11,5.37,22,"0.00852","0.04385","0.68346" +"GO:0070647","protein modification by small protein co...",82,21,19.16,458,"0.35366","0.68387","0.68387" +"GO:0050789","regulation of biological process",937,232,218.91,153,"0.10483","0.01393","0.68799" +"GO:0042303","molting cycle",10,2,2.34,811,"0.71767","0.68942","0.68942" +"GO:0071453","cellular response to oxygen levels",10,1,2.34,1020,"0.93053","0.68942","0.68942" +"GO:0070534","protein K63-linked ubiquitination",11,1,2.57,1059,"0.94683","0.69196","0.69196" +"GO:0018022","peptidyl-lysine methylation",18,2,4.21,1051,"0.94670","0.69256","0.69256" +"GO:0034614","cellular response to reactive oxygen spe...",10,3,2.34,561,"0.42488","0.69345","0.69345" +"GO:0071236","cellular response to antibiotic",10,3,2.34,562,"0.42488","0.69345","0.69345" +"GO:0097237","cellular response to toxic substance",10,3,2.34,563,"0.42488","0.69345","0.69345" +"GO:0003333","amino acid transmembrane transport",12,2,2.8,897,"0.80953","0.69457","0.69457" +"GO:0006865","amino acid transport",12,2,2.8,898,"0.80953","0.69457","0.69457" +"GO:0006139","nucleobase-containing compound metabolic...",592,120,138.31,1132,"0.98354","0.69563","0.69563" +"GO:0044260","cellular macromolecule metabolic process",869,193,203.03,951,"0.85659","0.50473","0.69904" +"GO:0016072","rRNA metabolic process",13,2,3.04,939,"0.84464","0.70175","0.70175" +"GO:0006479","protein methylation",27,6,6.31,739,"0.63038","0.70278","0.70278" +"GO:0008213","protein alkylation",27,6,6.31,740,"0.63038","0.70278","0.70278" +"GO:0009108","coenzyme biosynthetic process",17,3,3.97,881,"0.79678","0.70312","0.70312" +"GO:0006508","proteolysis",150,31,35.04,906,"0.81698","0.70583","0.70583" +"GO:0072524","pyridine-containing compound metabolic p...",11,2,2.57,858,"0.76752","0.70664","0.70664" +"GO:1903825","organic acid transmembrane transport",14,2,3.27,961,"0.87377","0.70672","0.70672" +"GO:1905039","carboxylic acid transmembrane transport",14,2,3.27,962,"0.87377","0.70672","0.70672" +"GO:0032870","cellular response to hormone stimulus",37,9,8.64,648,"0.50886","0.70782","0.70782" +"GO:0072330","monocarboxylic acid biosynthetic process",14,2,3.27,963,"0.87377","0.70874","0.70874" +"GO:0022613","ribonucleoprotein complex biogenesis",27,4,6.31,994,"0.90673","0.70893","0.70893" +"GO:1903532","positive regulation of secretion by cell",18,5,4.21,532,"0.41578","0.71050","0.71050" +"GO:1901654","response to ketone",11,2,2.57,859,"0.76752","0.71393","0.71393" +"GO:0140013","meiotic nuclear division",13,2,3.04,940,"0.84464","0.71463","0.71463" +"GO:0007033","vacuole organization",15,4,3.5,616,"0.47884","0.71488","0.71488" +"GO:0034504","protein localization to nucleus",15,3,3.5,798,"0.71761","0.71488","0.71488" +"GO:0050768","negative regulation of neurogenesis",14,3,3.27,760,"0.66985","0.71547","0.71547" +"GO:0009451","RNA modification",20,3,4.67,969,"0.88016","0.71613","0.71613" +"GO:0014070","response to organic cyclic compound",49,12,11.45,622,"0.48122","0.71633","0.71633" +"GO:0071840","cellular component organization or bioge...",466,102,108.87,904,"0.81617","0.50386","0.71639" +"GO:0034660","ncRNA metabolic process",54,8,12.62,1078,"0.95807","0.71712","0.71712" +"GO:0051252","regulation of RNA metabolic process",316,67,73.83,949,"0.85284","0.71777","0.71777" +"GO:0042493","response to drug",46,9,10.75,869,"0.78199","0.71846","0.71846" +"GO:0019438","aromatic compound biosynthetic process",378,81,88.31,947,"0.85037","0.71906","0.71906" +"GO:0010648","negative regulation of cell communicatio...",63,16,14.72,515,"0.39761","0.72170","0.72170" +"GO:0023057","negative regulation of signaling",63,16,14.72,516,"0.39761","0.72170","0.72170" +"GO:0006259","DNA metabolic process",117,21,27.34,1046,"0.94070","0.72204","0.72204" +"GO:0009895","negative regulation of catabolic process",16,4,3.74,665,"0.53467","0.72270","0.72270" +"GO:0043010","camera-type eye development",19,4,4.44,775,"0.68144","0.72306","0.72306" +"GO:0048593","camera-type eye morphogenesis",10,3,2.34,564,"0.42488","0.72469","0.72469" +"GO:0033157","regulation of intracellular protein tran...",16,1,3.74,1133,"0.98606","0.73006","0.73006" +"GO:0006338","chromatin remodeling",12,2,2.8,899,"0.80953","0.73116","0.73116" +"GO:0060041","retina development in camera-type eye",12,2,2.8,900,"0.80953","0.73116","0.73116" +"GO:0009617","response to bacterium",21,5,4.91,695,"0.56537","0.73218","0.73218" +"GO:0019220","regulation of phosphate metabolic proces...",60,19,14.02,128,"0.08596","0.10596","0.73283" +"GO:0006396","RNA processing",100,18,23.36,1010,"0.92504","0.73465","0.73465" +"GO:0055080","cation homeostasis",27,12,6.31,26,"0.01224","0.02770","0.73555" +"GO:0098771","inorganic ion homeostasis",27,12,6.31,27,"0.01224","0.02770","0.73555" +"GO:0051606","detection of stimulus",15,2,3.5,983,"0.89780","0.73575","0.73575" +"GO:0043900","regulation of multi-organism process",22,5,5.14,723,"0.61078","0.73790","0.73790" +"GO:0005975","carbohydrate metabolic process",57,13,13.32,719,"0.59217","0.73862","0.73862" +"GO:0000209","protein polyubiquitination",24,6,5.61,644,"0.50340","0.73944","0.73944" +"GO:0007268","chemical synaptic transmission",35,9,8.18,574,"0.43480","0.74044","0.74044" +"GO:0098916","anterograde trans-synaptic signaling",35,9,8.18,575,"0.43480","0.74044","0.74044" +"GO:0099536","synaptic signaling",35,9,8.18,576,"0.43480","0.74044","0.74044" +"GO:0099537","trans-synaptic signaling",35,9,8.18,577,"0.43480","0.74044","0.74044" +"GO:0006493","protein O-linked glycosylation",16,1,3.74,1134,"0.98606","0.74045","0.74045" +"GO:0031401","positive regulation of protein modificat...",50,15,11.68,254,"0.16959","0.09252","0.74111" +"GO:0010562","positive regulation of phosphorus metabo...",37,12,8.64,201,"0.13287","0.04571","0.74146" +"GO:0045937","positive regulation of phosphate metabol...",37,12,8.64,202,"0.13287","0.04571","0.74146" +"GO:0008380","RNA splicing",29,6,6.78,787,"0.70355","0.74794","0.74794" +"GO:1901360","organic cyclic compound metabolic proces...",627,123,146.49,1160,"0.99629","0.74879","0.74879" +"GO:0065008","regulation of biological quality",195,50,45.56,338,"0.24090","0.16980","0.75020" +"GO:0071704","organic substance metabolic process",1312,288,306.53,1109,"0.96941","0.72694","0.75374" +"GO:0016567","protein ubiquitination",58,15,13.55,498,"0.37366","0.75400","0.75400" +"GO:0003013","circulatory system process",17,4,3.97,713,"0.58735","0.75475","0.75475" +"GO:0008015","blood circulation",17,4,3.97,714,"0.58735","0.75475","0.75475" +"GO:0006475","internal protein amino acid acetylation",15,4,3.5,617,"0.47884","0.76038","0.76038" +"GO:0018393","internal peptidyl-lysine acetylation",15,4,3.5,618,"0.47884","0.76038","0.76038" +"GO:0018394","peptidyl-lysine acetylation",15,4,3.5,619,"0.47884","0.76038","0.76038" +"GO:0006364","rRNA processing",10,1,2.34,1021,"0.93053","0.76179","0.76179" +"GO:0060255","regulation of macromolecule metabolic pr...",431,98,100.7,755,"0.65425","0.45053","0.76289" +"GO:0044085","cellular component biogenesis",194,49,45.32,390,"0.28385","0.07471","0.76389" +"GO:0044238","primary metabolic process",1250,274,292.04,1092,"0.96533","0.73376","0.76395" +"GO:0006733","oxidoreduction coenzyme metabolic proces...",13,2,3.04,941,"0.84464","0.76423","0.76423" +"GO:0009968","negative regulation of signal transducti...",61,15,14.25,593,"0.45941","0.76464","0.76464" +"GO:0051247","positive regulation of protein metabolic...",71,19,16.59,394,"0.28740","0.27567","0.76566" +"GO:0009755","hormone-mediated signaling pathway",19,5,4.44,603,"0.46734","0.76588","0.76588" +"GO:0002768","immune response-regulating cell surface ...",10,1,2.34,1022,"0.93053","0.76756","0.76756" +"GO:0048545","response to steroid hormone",29,6,6.78,788,"0.70355","0.76761","0.76761" +"GO:0045926","negative regulation of growth",16,5,3.74,430,"0.31133","0.76841","0.76841" +"GO:0042742","defense response to bacterium",12,3,2.8,682,"0.55745","0.77001","0.77001" +"GO:0006936","muscle contraction",14,3,3.27,761,"0.66985","0.77097","0.77097" +"GO:0006886","intracellular protein transport",83,19,19.39,704,"0.58488","0.77132","0.77132" +"GO:0030902","hindbrain development",14,3,3.27,762,"0.66985","0.77173","0.77173" +"GO:0034968","histone lysine methylation",13,1,3.04,1101,"0.96887","0.77246","0.77246" +"GO:0051128","regulation of cellular component organiz...",145,37,33.88,413,"0.29366","0.06212","0.77362" +"GO:0051174","regulation of phosphorus metabolic proce...",61,19,14.25,144,"0.09884","0.13342","0.77623" +"GO:1901617","organic hydroxy compound biosynthetic pr...",14,1,3.27,1112,"0.97618","0.77846","0.77846" +"GO:0002252","immune effector process",28,6,6.54,757,"0.66824","0.77933","0.77933" +"GO:0006952","defense response",56,13,13.08,691,"0.56344","0.78107","0.78107" +"GO:0043524","negative regulation of neuron apoptotic ...",10,3,2.34,565,"0.42488","0.78523","0.78523" +"GO:0035601","protein deacylation",12,1,2.8,1083,"0.95931","0.78598","0.78598" +"GO:0098732","macromolecule deacylation",12,1,2.8,1084,"0.95931","0.78598","0.78598" +"GO:0046483","heterocycle metabolic process",607,121,141.82,1147,"0.99182","0.78763","0.78763" +"GO:0006643","membrane lipid metabolic process",15,4,3.5,620,"0.47884","0.79160","0.79160" +"GO:0006664","glycolipid metabolic process",12,3,2.8,683,"0.55745","0.79203","0.79203" +"GO:1903509","liposaccharide metabolic process",12,3,2.8,684,"0.55745","0.79203","0.79203" +"GO:0016043","cellular component organization",454,102,106.07,792,"0.71224","0.40818","0.79203" +"GO:0006403","RNA localization",10,3,2.34,566,"0.42488","0.79245","0.79245" +"GO:0031497","chromatin assembly",12,3,2.8,685,"0.55745","0.79724","0.79724" +"GO:0008152","metabolic process",1469,330,343.21,999,"0.91694","0.69011","0.79815" +"GO:0050877","nervous system process",53,18,12.38,87,"0.05050","0.10407","0.79820" +"GO:0006030","chitin metabolic process",22,3,5.14,1000,"0.91732","0.80255","0.80255" +"GO:0006399","tRNA metabolic process",36,5,8.41,1069,"0.94727","0.80257","0.80257" +"GO:0034470","ncRNA processing",36,6,8.41,967,"0.87922","0.80257","0.80257" +"GO:0009056","catabolic process",187,47,43.69,424,"0.30284","0.80568","0.80568" +"GO:0012501","programmed cell death",88,18,20.56,868,"0.78154","0.80720","0.80720" +"GO:0007276","gamete generation",51,11,11.92,771,"0.67375","0.80808","0.80808" +"GO:0061024","membrane organization",49,10,11.45,832,"0.74131","0.80974","0.80974" +"GO:0009199","ribonucleoside triphosphate metabolic pr...",14,3,3.27,763,"0.66985","0.81046","0.81046" +"GO:0009205","purine ribonucleoside triphosphate metab...",14,3,3.27,764,"0.66985","0.81046","0.81046" +"GO:0046034","ATP metabolic process",14,3,3.27,765,"0.66985","0.81046","0.81046" +"GO:0016053","organic acid biosynthetic process",20,2,4.67,1093,"0.96588","0.81110","0.81110" +"GO:0046394","carboxylic acid biosynthetic process",20,2,4.67,1094,"0.96588","0.81110","0.81110" +"GO:0001933","negative regulation of protein phosphory...",17,1,3.97,1138,"0.98934","0.81113","0.81113" +"GO:0051258","protein polymerization",26,8,6.07,356,"0.24616","0.08487","0.81203" +"GO:0044265","cellular macromolecule catabolic process",92,20,21.49,779,"0.68628","0.81221","0.81221" +"GO:0048878","chemical homeostasis",40,14,9.35,103,"0.06305","0.21368","0.81265" +"GO:0017144","drug metabolic process",62,12,14.49,905,"0.81695","0.81319","0.81319" +"GO:0030162","regulation of proteolysis",28,3,6.54,1110,"0.97468","0.81434","0.81434" +"GO:0006040","amino sugar metabolic process",23,4,5.37,911,"0.82173","0.81470","0.81470" +"GO:1901071","glucosamine-containing compound metaboli...",23,4,5.37,912,"0.82173","0.81470","0.81470" +"GO:0050804","modulation of chemical synaptic transmis...",23,6,5.37,591,"0.45766","0.81517","0.81517" +"GO:0099177","regulation of trans-synaptic signaling",23,6,5.37,592,"0.45766","0.81517","0.81517" +"GO:0006397","mRNA processing",35,7,8.18,834,"0.74362","0.81625","0.81625" +"GO:0061458","reproductive system development",26,7,6.07,521,"0.40625","0.81630","0.81630" +"GO:0002684","positive regulation of immune system pro...",34,7,7.94,794,"0.71377","0.81649","0.81649" +"GO:0008219","cell death",101,24,23.6,639,"0.50146","0.81800","0.81800" +"GO:0016202","regulation of striated muscle tissue dev...",10,2,2.34,812,"0.71767","0.81943","0.81943" +"GO:0048634","regulation of muscle organ development",10,2,2.34,813,"0.71767","0.81943","0.81943" +"GO:1901861","regulation of muscle tissue development",10,2,2.34,814,"0.71767","0.81943","0.81943" +"GO:0006909","phagocytosis",15,4,3.5,621,"0.47884","0.81977","0.81977" +"GO:0032940","secretion by cell",56,14,13.08,578,"0.43655","0.81985","0.81985" +"GO:0032502","developmental process",355,92,82.94,176,"0.12238","0.13303","0.82266" +"GO:0071824","protein-DNA complex subunit organization",16,3,3.74,845,"0.75982","0.82293","0.82293" +"GO:0030433","ubiquitin-dependent ERAD pathway",10,0,2.34,1170,"1.00000","0.82321","0.82321" +"GO:0006725","cellular aromatic compound metabolic pro...",610,121,142.52,1154,"0.99337","0.82441","0.82441" +"GO:0061640","cytoskeleton-dependent cytokinesis",10,1,2.34,1023,"0.93053","0.82695","0.82695" +"GO:0009896","positive regulation of catabolic process",22,6,5.14,524,"0.41097","0.82795","0.82795" +"GO:1901699","cellular response to nitrogen compound",15,3,3.5,799,"0.71761","0.82795","0.82795" +"GO:0051170","import into nucleus",13,3,3.04,733,"0.61643","0.82816","0.82816" +"GO:0016571","histone methylation",16,3,3.74,846,"0.75982","0.82995","0.82995" +"GO:0010821","regulation of mitochondrion organization",13,1,3.04,1102,"0.96887","0.83009","0.83009" +"GO:0032388","positive regulation of intracellular tra...",13,1,3.04,1103,"0.96887","0.83009","0.83009" +"GO:0051248","negative regulation of protein metabolic...",47,7,10.98,1066,"0.94703","0.83025","0.83025" +"GO:0000375","RNA splicing, via transesterification re...",20,3,4.67,970,"0.88016","0.83101","0.83101" +"GO:0000377","RNA splicing, via transesterification re...",20,3,4.67,971,"0.88016","0.83101","0.83101" +"GO:0000398","mRNA splicing, via spliceosome",20,3,4.67,972,"0.88016","0.83101","0.83101" +"GO:0042325","regulation of phosphorylation",54,17,12.62,154,"0.10550","0.07386","0.83274" +"GO:0009144","purine nucleoside triphosphate metabolic...",16,4,3.74,666,"0.53467","0.83395","0.83395" +"GO:0051179","localization",618,155,144.39,191,"0.13134","0.00830","0.83544" +"GO:0031331","positive regulation of cellular cataboli...",18,5,4.21,533,"0.41578","0.83609","0.83609" +"GO:0043170","macromolecule metabolic process",1073,233,250.69,1090,"0.96297","0.76840","0.83712" +"GO:0032886","regulation of microtubule-based process",11,2,2.57,860,"0.76752","0.83757","0.83757" +"GO:0006334","nucleosome assembly",10,3,2.34,567,"0.42488","0.83910","0.83910" +"GO:0048608","reproductive structure development",24,6,5.61,645,"0.50340","0.83921","0.83921" +"GO:0030072","peptide hormone secretion",12,3,2.8,686,"0.55745","0.83953","0.83953" +"GO:0006873","cellular ion homeostasis",21,10,4.91,29,"0.01247","0.05512","0.84055" +"GO:0030003","cellular cation homeostasis",21,10,4.91,30,"0.01247","0.05512","0.84055" +"GO:0010721","negative regulation of cell development",17,3,3.97,882,"0.79678","0.84058","0.84058" +"GO:0048856","anatomical structure development",325,86,75.93,129,"0.08929","0.16918","0.84084" +"GO:0043523","regulation of neuron apoptotic process",13,4,3.04,474,"0.36085","0.84117","0.84117" +"GO:0051402","neuron apoptotic process",13,4,3.04,475,"0.36085","0.84117","0.84117" +"GO:0044057","regulation of system process",27,6,6.31,741,"0.63038","0.84178","0.84178" +"GO:0048771","tissue remodeling",12,3,2.8,687,"0.55745","0.84283","0.84283" +"GO:0030155","regulation of cell adhesion",16,2,3.74,1005,"0.91751","0.84304","0.84304" +"GO:2001020","regulation of response to DNA damage sti...",16,2,3.74,1006,"0.91751","0.84420","0.84420" +"GO:0006022","aminoglycan metabolic process",26,3,6.07,1088,"0.96205","0.84605","0.84605" +"GO:0008033","tRNA processing",21,4,4.91,840,"0.75941","0.84617","0.84617" +"GO:0045089","positive regulation of innate immune res...",14,1,3.27,1113,"0.97618","0.84857","0.84857" +"GO:0046677","response to antibiotic",14,3,3.27,766,"0.66985","0.84902","0.84902" +"GO:0098542","defense response to other organism",23,4,5.37,913,"0.82173","0.84967","0.84967" +"GO:0006869","lipid transport",29,6,6.78,789,"0.70355","0.85094","0.85094" +"GO:0006790","sulfur compound metabolic process",14,3,3.27,767,"0.66985","0.85113","0.85113" +"GO:0006511","ubiquitin-dependent protein catabolic pr...",54,12,12.62,743,"0.63239","0.85151","0.85151" +"GO:0019941","modification-dependent protein catabolic...",54,12,12.62,744,"0.63239","0.85151","0.85151" +"GO:0034622","cellular protein-containing complex asse...",65,17,15.19,456,"0.34040","0.28757","0.85491" +"GO:0006732","coenzyme metabolic process",23,4,5.37,914,"0.82173","0.85562","0.85562" +"GO:1901137","carbohydrate derivative biosynthetic pro...",63,13,14.72,837,"0.74377","0.85594","0.85594" +"GO:0051223","regulation of protein transport",30,3,7.01,1128,"0.98325","0.85645","0.85645" +"GO:0070201","regulation of establishment of protein l...",30,3,7.01,1129,"0.98325","0.85645","0.85645" +"GO:0090087","regulation of peptide transport",30,3,7.01,1130,"0.98325","0.85645","0.85645" +"GO:0006888","ER to Golgi vesicle-mediated transport",14,2,3.27,964,"0.87377","0.85718","0.85718" +"GO:0007275","multicellular organism development",303,81,70.79,117,"0.08012","0.12056","0.85876" +"GO:0043085","positive regulation of catalytic activit...",50,13,11.68,502,"0.38105","0.39761","0.86046" +"GO:0043549","regulation of kinase activity",26,8,6.07,357,"0.24616","0.09426","0.86177" +"GO:0006807","nitrogen compound metabolic process",1157,246,270.31,1152,"0.99240","0.83604","0.86218" +"GO:0043632","modification-dependent macromolecule cat...",56,13,13.08,692,"0.56344","0.86325","0.86325" +"GO:0090316","positive regulation of intracellular pro...",12,1,2.8,1085,"0.95931","0.86354","0.86354" +"GO:0051171","regulation of nitrogen compound metaboli...",401,85,93.69,977,"0.88389","0.58772","0.86712" +"GO:0033554","cellular response to stress",156,36,36.45,696,"0.56776","0.86738","0.86738" +"GO:1901215","negative regulation of neuron death",12,3,2.8,688,"0.55745","0.86872","0.86872" +"GO:0006915","apoptotic process",81,17,18.92,830,"0.73712","0.86929","0.86929" +"GO:1902532","negative regulation of intracellular sig...",29,5,6.78,932,"0.84298","0.86950","0.86950" +"GO:0043161","proteasome-mediated ubiquitin-dependent ...",30,4,7.01,1050,"0.94460","0.87014","0.87014" +"GO:0032446","protein modification by small protein co...",64,15,14.95,669,"0.54393","0.87131","0.87131" +"GO:0009057","macromolecule catabolic process",109,23,25.47,838,"0.75093","0.87198","0.87198" +"GO:0031329","regulation of cellular catabolic process",42,8,9.81,889,"0.80010","0.87222","0.87222" +"GO:1903530","regulation of secretion by cell",24,5,5.61,782,"0.69276","0.87429","0.87429" +"GO:0044091","membrane biogenesis",11,2,2.57,861,"0.76752","0.87454","0.87454" +"GO:0050806","positive regulation of synaptic transmis...",11,1,2.57,1060,"0.94683","0.87454","0.87454" +"GO:0006260","DNA replication",35,6,8.18,953,"0.86122","0.87491","0.87491" +"GO:0002791","regulation of peptide secretion",15,2,3.5,984,"0.89780","0.87562","0.87562" +"GO:0050708","regulation of protein secretion",15,2,3.5,985,"0.89780","0.87562","0.87562" +"GO:0002253","activation of immune response",18,2,4.21,1052,"0.94670","0.87574","0.87574" +"GO:0019222","regulation of metabolic process",455,104,106.3,745,"0.63310","0.67241","0.87617" +"GO:0042592","homeostatic process",84,23,19.63,322,"0.22236","0.56405","0.87931" +"GO:0010876","lipid localization",35,7,8.18,835,"0.74362","0.87936","0.87936" +"GO:0009126","purine nucleoside monophosphate metaboli...",17,3,3.97,883,"0.79678","0.87974","0.87974" +"GO:0009141","nucleoside triphosphate metabolic proces...",17,4,3.97,715,"0.58735","0.87974","0.87974" +"GO:0009161","ribonucleoside monophosphate metabolic p...",17,3,3.97,884,"0.79678","0.87974","0.87974" +"GO:0009167","purine ribonucleoside monophosphate meta...",17,3,3.97,885,"0.79678","0.87974","0.87974" +"GO:0031400","negative regulation of protein modificat...",32,5,7.48,988,"0.89976","0.88077","0.88077" +"GO:0021549","cerebellum development",11,2,2.57,862,"0.76752","0.88091","0.88091" +"GO:0022037","metencephalon development",11,2,2.57,863,"0.76752","0.88091","0.88091" +"GO:0051188","cofactor biosynthetic process",21,4,4.91,841,"0.75941","0.88211","0.88211" +"GO:0006606","protein import into nucleus",12,3,2.8,689,"0.55745","0.88214","0.88214" +"GO:0051130","positive regulation of cellular componen...",81,23,18.92,253,"0.16900","0.16204","0.88302" +"GO:0045445","myoblast differentiation",10,2,2.34,815,"0.71767","0.88329","0.88329" +"GO:0045661","regulation of myoblast differentiation",10,2,2.34,816,"0.71767","0.88329","0.88329" +"GO:0043401","steroid hormone mediated signaling pathw...",18,4,4.21,750,"0.63637","0.88385","0.88385" +"GO:0065004","protein-DNA complex assembly",15,3,3.5,800,"0.71761","0.88508","0.88508" +"GO:0044257","cellular protein catabolic process",60,12,14.02,866,"0.77862","0.88721","0.88721" +"GO:0051603","proteolysis involved in cellular protein...",60,12,14.02,867,"0.77862","0.88721","0.88721" +"GO:0032501","multicellular organismal process",366,99,85.51,78,"0.04164","0.09697","0.88794" +"GO:0006954","inflammatory response",10,1,2.34,1024,"0.93053","0.88802","0.88802" +"GO:0032386","regulation of intracellular transport",23,3,5.37,1040,"0.93166","0.88830","0.88830" +"GO:0042886","amide transport",119,24,27.8,924,"0.83034","0.88865","0.88865" +"GO:0042254","ribosome biogenesis",17,1,3.97,1139,"0.98934","0.89271","0.89271" +"GO:0043902","positive regulation of multi-organism pr...",13,3,3.04,734,"0.61643","0.89469","0.89469" +"GO:0015980","energy derivation by oxidation of organi...",18,4,4.21,751,"0.63637","0.89586","0.89586" +"GO:0010822","positive regulation of mitochondrion org...",11,1,2.57,1061,"0.94683","0.89621","0.89621" +"GO:1903533","regulation of protein targeting",11,1,2.57,1062,"0.94683","0.89621","0.89621" +"GO:1901135","carbohydrate derivative metabolic proces...",117,21,27.34,1047,"0.94070","0.89737","0.89737" +"GO:0009123","nucleoside monophosphate metabolic proce...",18,3,4.21,921,"0.82887","0.89739","0.89739" +"GO:0051222","positive regulation of protein transport",21,3,4.91,991,"0.90029","0.89758","0.89758" +"GO:1904951","positive regulation of establishment of ...",21,3,4.91,992,"0.90029","0.89758","0.89758" +"GO:0051604","protein maturation",10,0,2.34,1171,"1.00000","0.89849","0.89849" +"GO:1901575","organic substance catabolic process",154,36,35.98,657,"0.53160","0.89850","0.89850" +"GO:0050794","regulation of cellular process",887,212,207.23,453,"0.33300","0.04587","0.89909" +"GO:0010467","gene expression",510,102,119.15,1126,"0.98262","0.90086","0.90086" +"GO:0032268","regulation of cellular protein metabolic...",121,26,28.27,826,"0.72563","0.54276","0.90162" +"GO:0019725","cellular homeostasis",44,15,10.28,106,"0.06857","0.32754","0.90206" +"GO:0007283","spermatogenesis",33,6,7.71,908,"0.81860","0.90219","0.90219" +"GO:1903046","meiotic cell cycle process",18,3,4.21,922,"0.82887","0.90439","0.90439" +"GO:0010498","proteasomal protein catabolic process",36,4,8.41,1124,"0.98180","0.90607","0.90607" +"GO:0048232","male gamete generation",34,6,7.94,931,"0.84106","0.90786","0.90786" +"GO:0006996","organelle organization",320,76,74.76,587,"0.45465","0.46113","0.91132" +"GO:0071383","cellular response to steroid hormone sti...",22,4,5.14,876,"0.79244","0.91338","0.91338" +"GO:0080090","regulation of primary metabolic process",406,85,94.85,996,"0.91027","0.74470","0.91381" +"GO:0001819","positive regulation of cytokine producti...",16,2,3.74,1007,"0.91751","0.91461","0.91461" +"GO:0031323","regulation of cellular metabolic process",420,92,98.13,888,"0.79997","0.66312","0.91535" +"GO:0007009","plasma membrane organization",10,2,2.34,817,"0.71767","0.91543","0.91543" +"GO:0009101","glycoprotein biosynthetic process",36,6,8.41,968,"0.87922","0.91590","0.91590" +"GO:0034728","nucleosome organization",12,3,2.8,690,"0.55745","0.91650","0.91650" +"GO:0071702","organic substance transport",170,35,39.72,928,"0.83691","0.91685","0.91685" +"GO:0045859","regulation of protein kinase activity",22,6,5.14,525,"0.41097","0.10363","0.91703" +"GO:0071705","nitrogen compound transport",144,29,33.64,948,"0.85258","0.91707","0.91707" +"GO:0009266","response to temperature stimulus",20,3,4.67,973,"0.88016","0.91722","0.91722" +"GO:0010941","regulation of cell death",71,16,16.59,727,"0.61321","0.91830","0.91830" +"GO:0017038","protein import",16,3,3.74,847,"0.75982","0.91880","0.91880" +"GO:0048731","system development",254,71,59.34,77,"0.04162","0.07971","0.91979" +"GO:0006486","protein glycosylation",34,5,7.94,1012,"0.92688","0.92045","0.92045" +"GO:0043413","macromolecule glycosylation",34,5,7.94,1013,"0.92688","0.92045","0.92045" +"GO:0070085","glycosylation",34,5,7.94,1014,"0.92688","0.92045","0.92045" +"GO:0015833","peptide transport",118,24,27.57,907,"0.81737","0.92091","0.92091" +"GO:0031398","positive regulation of protein ubiquitin...",13,2,3.04,942,"0.84464","0.92228","0.92228" +"GO:1903322","positive regulation of protein modificat...",13,2,3.04,943,"0.84464","0.92228","0.92228" +"GO:0006333","chromatin assembly or disassembly",13,3,3.04,735,"0.61643","0.92569","0.92569" +"GO:0051186","cofactor metabolic process",35,6,8.18,954,"0.86122","0.92644","0.92644" +"GO:0006575","cellular modified amino acid metabolic p...",10,2,2.34,818,"0.71767","0.92716","0.92716" +"GO:1903214","regulation of protein targeting to mitoc...",10,1,2.34,1025,"0.93053","0.92726","0.92726" +"GO:1903747","regulation of establishment of protein l...",10,1,2.34,1026,"0.93053","0.92726","0.92726" +"GO:1903749","positive regulation of establishment of ...",10,1,2.34,1027,"0.93053","0.92726","0.92726" +"GO:1903955","positive regulation of protein targeting...",10,1,2.34,1028,"0.93053","0.92726","0.92726" +"GO:0032259","methylation",42,8,9.81,890,"0.80010","0.92872","0.92872" +"GO:0050790","regulation of catalytic activity",81,21,18.92,451,"0.33033","0.46973","0.92876" +"GO:0034641","cellular nitrogen compound metabolic pro...",653,129,152.56,1158,"0.99597","0.92948","0.92948" +"GO:0006352","DNA-templated transcription, initiation",12,2,2.8,901,"0.80953","0.93045","0.93045" +"GO:0010817","regulation of hormone levels",24,5,5.61,783,"0.69276","0.93116","0.93116" +"GO:0044283","small molecule biosynthetic process",42,6,9.81,1074,"0.95070","0.93183","0.93183" +"GO:1903311","regulation of mRNA metabolic process",14,3,3.27,768,"0.66985","0.93191","0.93191" +"GO:0043086","negative regulation of catalytic activit...",25,5,5.84,829,"0.72903","0.93223","0.93223" +"GO:0051321","meiotic cell cycle",19,3,4.44,950,"0.85651","0.93356","0.93356" +"GO:0044271","cellular nitrogen compound biosynthetic ...",438,90,102.33,1070,"0.94731","0.93454","0.93454" +"GO:0043066","negative regulation of apoptotic process",40,7,9.35,952,"0.85983","0.93557","0.93557" +"GO:0032101","regulation of response to external stimu...",14,2,3.27,965,"0.87377","0.93634","0.93634" +"GO:0030163","protein catabolic process",77,14,17.99,981,"0.89322","0.93749","0.93749" +"GO:0051346","negative regulation of hydrolase activit...",12,2,2.8,902,"0.80953","0.93763","0.93763" +"GO:0009653","anatomical structure morphogenesis",174,50,40.65,88,"0.05193","0.03255","0.93895" +"GO:0006418","tRNA aminoacylation for protein translat...",13,1,3.04,1104,"0.96887","0.93944","0.93944" +"GO:0043038","amino acid activation",13,1,3.04,1105,"0.96887","0.93944","0.93944" +"GO:0043039","tRNA aminoacylation",13,1,3.04,1106,"0.96887","0.93944","0.93944" +"GO:0048515","spermatid differentiation",17,3,3.97,886,"0.79678","0.93984","0.93984" +"GO:0002764","immune response-regulating signaling pat...",18,1,4.21,1148,"0.99185","0.94062","0.94062" +"GO:0045088","regulation of innate immune response",18,2,4.21,1053,"0.94670","0.94062","0.94062" +"GO:0006955","immune response",55,12,12.85,756,"0.65986","0.94105","0.94105" +"GO:0043069","negative regulation of programmed cell d...",42,7,9.81,980,"0.89236","0.94287","0.94287" +"GO:0034976","response to endoplasmic reticulum stress",23,2,5.37,1127,"0.98278","0.94360","0.94360" +"GO:1901605","alpha-amino acid metabolic process",14,0,3.27,1172,"1.00000","0.94370","0.94370" +"GO:0002757","immune response-activating signal transd...",17,1,3.97,1140,"0.98934","0.94385","0.94385" +"GO:0046883","regulation of hormone secretion",10,2,2.34,819,"0.71767","0.94588","0.94588" +"GO:0006520","cellular amino acid metabolic process",35,2,8.18,1161,"0.99901","0.94651","0.94651" +"GO:0070997","neuron death",16,4,3.74,667,"0.53467","0.94701","0.94701" +"GO:1901214","regulation of neuron death",16,4,3.74,668,"0.53467","0.94701","0.94701" +"GO:0018193","peptidyl-amino acid modification",75,10,17.52,1144,"0.99055","0.94702","0.94702" +"GO:0015031","protein transport",117,24,27.34,892,"0.80372","0.94845","0.94845" +"GO:0045184","establishment of protein localization",124,25,28.97,926,"0.83508","0.94922","0.94922" +"GO:0006302","double-strand break repair",10,1,2.34,1029,"0.93053","0.94983","0.94983" +"GO:0072657","protein localization to membrane",31,7,7.24,726,"0.61107","0.95018","0.95018" +"GO:0050821","protein stabilization",12,2,2.8,903,"0.80953","0.95069","0.95069" +"GO:0050776","regulation of immune response",35,7,8.18,836,"0.74362","0.95479","0.95479" +"GO:0051054","positive regulation of DNA metabolic pro...",11,2,2.57,864,"0.76752","0.95592","0.95592" +"GO:0006974","cellular response to DNA damage stimulus",101,20,23.6,930,"0.83763","0.95592","0.95592" +"GO:0009100","glycoprotein metabolic process",42,6,9.81,1075,"0.95070","0.95696","0.95696" +"GO:0051347","positive regulation of transferase activ...",21,6,4.91,495,"0.36391","0.16431","0.95698" +"GO:0009967","positive regulation of signal transducti...",61,14,14.25,703,"0.58133","0.54128","0.95735" +"GO:0060548","negative regulation of cell death",47,7,10.98,1067,"0.94703","0.95796","0.95796" +"GO:0071407","cellular response to organic cyclic comp...",31,6,7.24,852,"0.76627","0.95891","0.95891" +"GO:0016054","organic acid catabolic process",10,1,2.34,1030,"0.93053","0.95952","0.95952" +"GO:0046395","carboxylic acid catabolic process",10,1,2.34,1031,"0.93053","0.95952","0.95952" +"GO:0009894","regulation of catabolic process",48,9,11.21,916,"0.82441","0.96052","0.96052" +"GO:0009914","hormone transport",14,3,3.27,769,"0.66985","0.96110","0.96110" +"GO:0046879","hormone secretion",14,3,3.27,770,"0.66985","0.96110","0.96110" +"GO:0043414","macromolecule methylation",37,7,8.64,878,"0.79655","0.96111","0.96111" +"GO:0010647","positive regulation of cell communicatio...",67,18,15.65,395,"0.28844","0.38869","0.96237" +"GO:0023056","positive regulation of signaling",67,18,15.65,396,"0.28844","0.38869","0.96237" +"GO:1905475","regulation of protein localization to me...",11,2,2.57,865,"0.76752","0.96339","0.96339" +"GO:0009408","response to heat",16,3,3.74,848,"0.75982","0.96391","0.96391" +"GO:0060341","regulation of cellular localization",54,8,12.62,1079,"0.95807","0.96447","0.96447" +"GO:0009607","response to biotic stimulus",33,5,7.71,997,"0.91426","0.96615","0.96615" +"GO:0006839","mitochondrial transport",23,4,5.37,915,"0.82173","0.96617","0.96617" +"GO:0043207","response to external biotic stimulus",32,5,7.48,989,"0.89976","0.96718","0.96718" +"GO:0051707","response to other organism",32,5,7.48,990,"0.89976","0.96718","0.96718" +"GO:0065009","regulation of molecular function",125,30,29.2,604,"0.46753","0.60634","0.96840" +"GO:0055114","oxidation-reduction process",98,15,22.9,1131,"0.98331","0.96867","0.96867" +"GO:0044093","positive regulation of molecular functio...",76,18,17.76,652,"0.51894","0.74893","0.96909" +"GO:0071806","protein transmembrane transport",10,1,2.34,1032,"0.93053","0.97026","0.97026" +"GO:0048584","positive regulation of response to stimu...",89,21,20.79,654,"0.52146","0.43345","0.97106" +"GO:0050778","positive regulation of immune response",28,5,6.54,910,"0.81894","0.97127","0.97127" +"GO:0010256","endomembrane system organization",33,4,7.71,1096,"0.96791","0.97215","0.97215" +"GO:0010035","response to inorganic substance",27,3,6.31,1108,"0.96897","0.97229","0.97229" +"GO:1901565","organonitrogen compound catabolic proces...",100,18,23.36,1011,"0.92504","0.97426","0.97426" +"GO:1903050","regulation of proteolysis involved in ce...",16,1,3.74,1135,"0.98606","0.97501","0.97501" +"GO:1903362","regulation of cellular protein catabolic...",16,1,3.74,1136,"0.98606","0.97501","0.97501" +"GO:0031347","regulation of defense response",24,3,5.61,1048,"0.94368","0.97536","0.97536" +"GO:0007030","Golgi organization",10,1,2.34,1033,"0.93053","0.97616","0.97616" +"GO:0034613","cellular protein localization",135,26,31.54,987,"0.89924","0.97674","0.97674" +"GO:1901615","organic hydroxy compound metabolic proce...",24,3,5.61,1049,"0.94368","0.97717","0.97717" +"GO:0002790","peptide secretion",22,3,5.14,1001,"0.91732","0.97741","0.97741" +"GO:0006457","protein folding",22,2,5.14,1115,"0.97833","0.97741","0.97741" +"GO:0009306","protein secretion",22,3,5.14,1002,"0.91732","0.97741","0.97741" +"GO:0000910","cytokinesis",16,2,3.74,1008,"0.91751","0.97753","0.97753" +"GO:0044281","small molecule metabolic process",149,27,34.81,1076,"0.95495","0.97779","0.97779" +"GO:0051301","cell division",30,7,7.01,697,"0.57282","0.97907","0.97907" +"GO:0010038","response to metal ion",20,3,4.67,974,"0.88016","0.97946","0.97946" +"GO:0042981","regulation of apoptotic process",58,11,13.55,925,"0.83073","0.97983","0.97983" +"GO:1903320","regulation of protein modification by sm...",19,2,4.44,1077,"0.95731","0.98049","0.98049" +"GO:0045454","cell redox homeostasis",15,2,3.5,986,"0.89780","0.98094","0.98094" +"GO:0043067","regulation of programmed cell death",59,11,13.78,946,"0.84751","0.98125","0.98125" +"GO:0031396","regulation of protein ubiquitination",18,2,4.21,1054,"0.94670","0.98151","0.98151" +"GO:0043393","regulation of protein binding",10,1,2.34,1034,"0.93053","0.98179","0.98179" +"GO:0031349","positive regulation of defense response",17,1,3.97,1141,"0.98934","0.98254","0.98254" +"GO:0031647","regulation of protein stability",17,2,3.97,1041,"0.93361","0.98254","0.98254" +"GO:0051098","regulation of binding",17,1,3.97,1142,"0.98934","0.98254","0.98254" +"GO:0045333","cellular respiration",16,3,3.74,849,"0.75982","0.98356","0.98356" +"GO:0044237","cellular metabolic process",1204,266,281.29,1044,"0.93880","0.90593","0.98444" +"GO:0006913","nucleocytoplasmic transport",20,4,4.67,824,"0.72245","0.98647","0.98647" +"GO:0051169","nuclear transport",20,4,4.67,825,"0.72245","0.98647","0.98647" +"GO:0015893","drug transport",13,0,3.04,1173,"1.00000","0.98664","0.98664" +"GO:1903829","positive regulation of cellular protein ...",20,2,4.67,1095,"0.96588","0.98730","0.98730" +"GO:0018205","peptidyl-lysine modification",35,5,8.18,1042,"0.93782","0.98746","0.98746" +"GO:0032880","regulation of protein localization",58,9,13.55,1071,"0.94938","0.98753","0.98753" +"GO:0009058","biosynthetic process",590,115,137.84,1159,"0.99609","0.98793","0.98793" +"GO:0051099","positive regulation of binding",11,1,2.57,1063,"0.94683","0.98870","0.98870" +"GO:0070727","cellular macromolecule localization",136,26,31.77,995,"0.90720","0.98885","0.98885" +"GO:0006066","alcohol metabolic process",11,1,2.57,1064,"0.94683","0.98953","0.98953" +"GO:0097164","ammonium ion metabolic process",10,1,2.34,1035,"0.93053","0.98972","0.98972" +"GO:0097191","extrinsic apoptotic signaling pathway",10,1,2.34,1036,"0.93053","0.98972","0.98972" +"GO:1903827","regulation of cellular protein localizat...",32,3,7.48,1137,"0.98901","0.99318","0.99318" +"GO:0051246","regulation of protein metabolic process",130,28,30.37,827,"0.72633","0.71270","0.99328" +"GO:0001932","regulation of protein phosphorylation",47,12,10.98,534,"0.41705","0.22680","0.99366" +"GO:1901564","organonitrogen compound metabolic proces...",707,158,165.18,877,"0.79272","0.92139","0.99420" +"GO:0044249","cellular biosynthetic process",567,112,132.47,1150,"0.99221","0.99447","0.99447" +"GO:0045732","positive regulation of protein catabolic...",13,2,3.04,944,"0.84464","0.99458","0.99458" +"GO:0042176","regulation of protein catabolic process",22,2,5.14,1116,"0.97833","0.99533","0.99533" +"GO:0051338","regulation of transferase activity",32,8,7.48,623,"0.48126","0.49733","0.99581" +"GO:0051090","regulation of DNA-binding transcription ...",18,1,4.21,1149,"0.99185","0.99618","0.99618" +"GO:0043603","cellular amide metabolic process",76,13,17.76,1016,"0.93049","0.99620","0.99620" +"GO:0034645","cellular macromolecule biosynthetic proc...",472,92,110.27,1143,"0.98973","0.99648","0.99648" +"GO:0051091","positive regulation of DNA-binding trans...",15,1,3.5,1117,"0.98178","0.99682","0.99682" +"GO:0061136","regulation of proteasomal protein catabo...",15,1,3.5,1118,"0.98178","0.99682","0.99682" +"GO:0007286","spermatid development",16,2,3.74,1009,"0.91751","0.99693","0.99693" +"GO:1901576","organic substance biosynthetic process",577,114,134.81,1153,"0.99271","0.99732","0.99732" +"GO:0000165","MAPK cascade",26,8,6.07,358,"0.24616","0.09426","0.99785" +"GO:0023014","signal transduction by protein phosphory...",26,8,6.07,359,"0.24616","0.09426","0.99785" +"GO:2000058","regulation of ubiquitin-dependent protei...",10,1,2.34,1037,"0.93053","0.99788","0.99788" +"GO:0006626","protein targeting to mitochondrion",15,1,3.5,1119,"0.98178","0.99801","0.99801" +"GO:0070585","protein localization to mitochondrion",15,1,3.5,1120,"0.98178","0.99801","0.99801" +"GO:0072655","establishment of protein localization to...",15,1,3.5,1121,"0.98178","0.99801","0.99801" +"GO:0043408","regulation of MAPK cascade",23,8,5.37,213,"0.14642","0.06335","0.99814" +"GO:1901566","organonitrogen compound biosynthetic pro...",156,27,36.45,1114,"0.97715","0.99847","0.99847" +"GO:0033036","macromolecule localization",214,42,50,1015,"0.92718","0.99862","0.99862" +"GO:0008104","protein localization",176,35,41.12,979,"0.89145","0.99889","0.99889" +"GO:0006605","protein targeting",26,4,6.07,978,"0.88974","0.99922","0.99922" +"GO:0006518","peptide metabolic process",65,10,15.19,1086,"0.95992","0.99939","0.99939" +"GO:0009059","macromolecule biosynthetic process",476,92,111.21,1151,"0.99237","0.99944","0.99944" +"GO:0043604","amide biosynthetic process",58,9,13.55,1072,"0.94938","0.99946","0.99946" +"GO:0043043","peptide biosynthetic process",55,8,12.85,1091,"0.96378","0.99948","0.99948" +"GO:0006412","translation",54,7,12.62,1125,"0.98224","0.99949","0.99949" +"GO:0006281","DNA repair",77,13,17.99,1043,"0.93806","0.99953","0.99953" +"GO:0080134","regulation of response to stress",67,11,15.65,1045,"0.93930","0.99960","0.99960" +"GO:0031399","regulation of protein modification proce...",81,20,18.92,569,"0.43039","0.52308","0.99963" +"GO:0033365","protein localization to organelle",47,7,10.98,1068,"0.94703","0.99972","0.99972" +"GO:0080135","regulation of cellular response to stres...",40,4,9.35,1146,"0.99170","0.99976","0.99976" +"GO:0072594","establishment of protein localization to...",32,4,7.48,1087,"0.96140","0.99981","0.99981" +"GO:0097190","apoptotic signaling pathway",26,3,6.07,1089,"0.96205","0.99985","0.99985" +"GO:2001233","regulation of apoptotic signaling pathwa...",22,3,5.14,1003,"0.91732","0.99987","0.99987" +"GO:0044092","negative regulation of molecular functio...",33,5,7.71,998,"0.91426","0.99989","0.99989" +"GO:0007219","Notch signaling pathway",11,1,2.57,1065,"0.94683","0.99990","0.99990" +"GO:0097193","intrinsic apoptotic signaling pathway",15,1,3.5,1122,"0.98178","0.99991","0.99991" +"GO:2001234","negative regulation of apoptotic signali...",15,1,3.5,1123,"0.98178","0.99991","0.99991" +"GO:2001242","regulation of intrinsic apoptotic signal...",13,1,3.04,1107,"0.96887","0.99992","0.99992" +"GO:2001243","negative regulation of intrinsic apoptot...",10,1,2.34,1038,"0.93053","0.99994","0.99994" +"GO:0042110","T cell activation",10,1,2.34,1039,"0.93053","0.99997","0.99997" +"GO:0006082","organic acid metabolic process",72,9,16.82,1155,"0.99382","0.99997","0.99997" +"GO:0019752","carboxylic acid metabolic process",72,9,16.82,1156,"0.99382","0.99997","0.99997" +"GO:0043436","oxoacid metabolic process",72,9,16.82,1157,"0.99382","0.99997","0.99997" +"GO:0006793","phosphorus metabolic process",330,96,77.1,18,"0.00557","0.00149","1.00000" +"GO:0008150","biological_process",2337,546,546,1174,"1.00000","1.00000","1.00000" +"GO:0030031","cell projection assembly",33,10,7.71,325,"0.22431","0.00723","1.00000" +"GO:0031344","regulation of cell projection organizati...",43,12,10.05,406,"0.29091","0.00394","1.00000" +"GO:0072503","cellular divalent inorganic cation homeo...",15,9,3.5,7,"0.00247","0.00330","1.00000" diff --git a/GO_enrichment_output/contrast_emerging_phoretic_upregulated.csv b/GO_enrichment_output/contrast_emerging_phoretic_upregulated.csv index 645b913..142ccfe 100644 --- a/GO_enrichment_output/contrast_emerging_phoretic_upregulated.csv +++ b/GO_enrichment_output/contrast_emerging_phoretic_upregulated.csv @@ -4,3 +4,2924 @@ "GO:1901135","carbohydrate derivative metabolic proces...",187,55,39.28,20,"0.00306","0.00104","0.0030" "GO:0019752","carboxylic acid metabolic process",127,41,26.68,7,"0.00157","0.00026","0.0033" "GO:0018243","protein O-linked glycosylation via threo...",4,4,0.84,16,"0.00193","0.00542","0.0054" +"GO:0034754","cellular hormone metabolic process",6,4,1.26,49,"0.02012","0.00562","0.0056" +"GO:0033692","cellular polysaccharide biosynthetic pro...",7,5,1.47,23,"0.00579","0.00609","0.0061" +"GO:0043648","dicarboxylic acid metabolic process",8,5,1.68,39,"0.01278","0.00617","0.0062" +"GO:0015991","ATP hydrolysis coupled proton transport",13,8,2.73,9,"0.00170","0.00639","0.0064" +"GO:0051603","proteolysis involved in cellular protein...",67,21,14.07,65,"0.02941","0.00757","0.0076" +"GO:0005975","carbohydrate metabolic process",79,29,16.59,3,"0.00082","0.00221","0.0115" +"GO:0009308","amine metabolic process",13,8,2.73,10,"0.00170","0.01164","0.0116" +"GO:0044106","cellular amine metabolic process",13,8,2.73,11,"0.00170","0.01164","0.0116" +"GO:1901071","glucosamine-containing compound metaboli...",22,11,4.62,18,"0.00231","0.01199","0.0120" +"GO:0006081","cellular aldehyde metabolic process",11,6,2.31,41,"0.01467","0.01200","0.0120" +"GO:0005978","glycogen biosynthetic process",6,4,1.26,50,"0.02012","0.01265","0.0126" +"GO:0009250","glucan biosynthetic process",6,4,1.26,51,"0.02012","0.01265","0.0126" +"GO:0006643","membrane lipid metabolic process",19,6,3.99,433,"0.19234","0.01269","0.0127" +"GO:0006760","folic acid-containing compound metabolic...",4,2,0.84,437,"0.19630","0.01308","0.0131" +"GO:0005996","monosaccharide metabolic process",24,8,5.04,209,"0.11108","0.01360","0.0136" +"GO:0031331","positive regulation of cellular cataboli...",19,4,3.99,1216,"0.58845","0.01445","0.0144" +"GO:0016053","organic acid biosynthetic process",38,14,7.98,47,"0.01759","0.01685","0.0169" +"GO:0046394","carboxylic acid biosynthetic process",38,14,7.98,48,"0.01759","0.01685","0.0169" +"GO:0006040","amino sugar metabolic process",23,11,4.83,22,"0.00361","0.01810","0.0181" +"GO:0006511","ubiquitin-dependent protein catabolic pr...",56,17,11.76,130,"0.06243","0.01905","0.0191" +"GO:0019941","modification-dependent protein catabolic...",56,17,11.76,131,"0.06243","0.01905","0.0191" +"GO:0009967","positive regulation of signal transducti...",62,15,13.02,676,"0.31263","0.01999","0.0200" +"GO:0018242","protein O-linked glycosylation via serin...",3,3,0.63,30,"0.00923","0.02002","0.0200" +"GO:0006555","methionine metabolic process",3,3,0.63,31,"0.00923","0.02119","0.0212" +"GO:0009086","methionine biosynthetic process",3,3,0.63,32,"0.00923","0.02119","0.0212" +"GO:0019509","L-methionine salvage from methylthioaden...",3,3,0.63,33,"0.00923","0.02119","0.0212" +"GO:0043102","amino acid salvage",3,3,0.63,34,"0.00923","0.02119","0.0212" +"GO:0071265","L-methionine biosynthetic process",3,3,0.63,35,"0.00923","0.02119","0.0212" +"GO:0071267","L-methionine salvage",3,3,0.63,36,"0.00923","0.02119","0.0212" +"GO:0046486","glycerolipid metabolic process",38,5,7.98,2084,"0.92581","0.02240","0.0224" +"GO:0010508","positive regulation of autophagy",9,2,1.89,1240,"0.59390","0.02358","0.0236" +"GO:0043094","cellular metabolic compound salvage",7,5,1.47,24,"0.00579","0.02406","0.0241" +"GO:0010842","retina layer formation",4,3,0.84,68,"0.03112","0.02435","0.0243" +"GO:0009311","oligosaccharide metabolic process",5,4,1.05,26,"0.00804","0.02496","0.0250" +"GO:0009312","oligosaccharide biosynthetic process",5,4,1.05,27,"0.00804","0.02496","0.0250" +"GO:0045861","negative regulation of proteolysis",22,8,4.62,159,"0.07108","0.02652","0.0265" +"GO:0043632","modification-dependent macromolecule cat...",57,17,11.97,160,"0.07235","0.02713","0.0271" +"GO:1901605","alpha-amino acid metabolic process",29,12,6.09,37,"0.00998","0.02764","0.0276" +"GO:0006613","cotranslational protein targeting to mem...",6,4,1.26,52,"0.02012","0.02788","0.0279" +"GO:0006614","SRP-dependent cotranslational protein ta...",6,4,1.26,53,"0.02012","0.02788","0.0279" +"GO:0045047","protein targeting to ER",6,4,1.26,54,"0.02012","0.02788","0.0279" +"GO:0072599","establishment of protein localization to...",6,4,1.26,55,"0.02012","0.02788","0.0279" +"GO:0007339","binding of sperm to zona pellucida",4,3,0.84,69,"0.03112","0.02887","0.0289" +"GO:0009988","cell-cell recognition",4,3,0.84,70,"0.03112","0.02887","0.0289" +"GO:0035036","sperm-egg recognition",4,3,0.84,71,"0.03112","0.02887","0.0289" +"GO:0048507","meristem development",6,4,1.26,56,"0.02012","0.03011","0.0301" +"GO:0055085","transmembrane transport",210,62,44.11,6,"0.00150","0.00646","0.0309" +"GO:0006520","cellular amino acid metabolic process",67,20,14.07,118,"0.05375","0.03330","0.0333" +"GO:0044255","cellular lipid metabolic process",107,25,22.47,671,"0.30620","0.03552","0.0355" +"GO:0006493","protein O-linked glycosylation",11,7,2.31,19,"0.00260","0.00165","0.0356" +"GO:0007568","aging",30,8,6.3,634,"0.28437","0.03574","0.0357" +"GO:0016266","O-glycan processing",7,4,1.47,97,"0.03923","0.03606","0.0361" +"GO:0019637","organophosphate metabolic process",162,37,34.03,672,"0.30690","0.03832","0.0383" +"GO:0046653","tetrahydrofolate metabolic process",3,1,0.63,957,"0.50718","0.03873","0.0387" +"GO:0033157","regulation of intracellular protein tran...",13,6,2.73,92,"0.03718","0.03941","0.0394" +"GO:0034308","primary alcohol metabolic process",5,3,1.05,144,"0.06574","0.03952","0.0395" +"GO:0006030","chitin metabolic process",19,9,3.99,29,"0.00906","0.04048","0.0405" +"GO:2001251","negative regulation of chromosome organi...",8,1,1.68,1913,"0.84877","0.04105","0.0411" +"GO:0006650","glycerophospholipid metabolic process",36,5,7.56,2021,"0.90190","0.04148","0.0415" +"GO:0006044","N-acetylglucosamine metabolic process",3,2,0.63,274,"0.11371","0.04173","0.0417" +"GO:0009069","serine family amino acid metabolic proce...",7,3,1.47,388,"0.16548","0.04188","0.0419" +"GO:0008652","cellular amino acid biosynthetic process",14,7,2.94,43,"0.01497","0.04190","0.0419" +"GO:1901607","alpha-amino acid biosynthetic process",14,7,2.94,44,"0.01497","0.04190","0.0419" +"GO:0048584","positive regulation of response to stimu...",85,23,17.85,206,"0.10646","0.04310","0.0431" +"GO:0006188","IMP biosynthetic process",4,3,0.84,72,"0.03112","0.04478","0.0448" +"GO:0046040","IMP metabolic process",4,3,0.84,73,"0.03112","0.04478","0.0448" +"GO:0021537","telencephalon development",8,2,1.68,1136,"0.52603","0.04497","0.0450" +"GO:0021543","pallium development",8,2,1.68,1137,"0.52603","0.04497","0.0450" +"GO:0048229","gametophyte development",6,3,1.26,212,"0.11137","0.04543","0.0454" +"GO:0009108","coenzyme biosynthetic process",36,12,7.56,124,"0.05767","0.04586","0.0459" +"GO:0006644","phospholipid metabolic process",52,8,10.92,2008,"0.88349","0.04605","0.0460" +"GO:0000422","autophagy of mitochondrion",7,1,1.47,1834,"0.80843","0.04641","0.0464" +"GO:0061726","mitochondrion disassembly",7,1,1.47,1835,"0.80843","0.04641","0.0464" +"GO:0006638","neutral lipid metabolic process",5,1,1.05,1526,"0.69268","0.04847","0.0485" +"GO:0006639","acylglycerol metabolic process",5,1,1.05,1527,"0.69268","0.04847","0.0485" +"GO:0046503","glycerolipid catabolic process",7,2,1.47,869,"0.45086","0.04870","0.0487" +"GO:0032984","protein-containing complex disassembly",29,8,6.09,563,"0.25121","0.04919","0.0492" +"GO:0055086","nucleobase-containing small molecule met...",122,34,25.62,108,"0.03975","0.05022","0.0502" +"GO:0090307","mitotic spindle assembly",6,4,1.26,57,"0.02012","0.05034","0.0503" +"GO:0005977","glycogen metabolic process",7,4,1.47,98,"0.03923","0.05133","0.0513" +"GO:0006073","cellular glucan metabolic process",7,4,1.47,99,"0.03923","0.05133","0.0513" +"GO:0006112","energy reserve metabolic process",7,4,1.47,100,"0.03923","0.05133","0.0513" +"GO:0044042","glucan metabolic process",7,4,1.47,101,"0.03923","0.05133","0.0513" +"GO:1901566","organonitrogen compound biosynthetic pro...",343,65,72.04,1961,"0.85808","0.04439","0.0522" +"GO:0006497","protein lipidation",12,2,2.52,1681,"0.75316","0.05296","0.0530" +"GO:0042157","lipoprotein metabolic process",12,2,2.52,1682,"0.75316","0.05296","0.0530" +"GO:0042158","lipoprotein biosynthetic process",12,2,2.52,1683,"0.75316","0.05296","0.0530" +"GO:0000278","mitotic cell cycle",67,22,14.07,45,"0.01513","0.05401","0.0540" +"GO:0001523","retinoid metabolic process",6,3,1.26,213,"0.11137","0.05413","0.0541" +"GO:0016101","diterpenoid metabolic process",6,3,1.26,214,"0.11137","0.05413","0.0541" +"GO:0044419","interspecies interaction between organis...",29,8,6.09,564,"0.25121","0.05461","0.0546" +"GO:0010647","positive regulation of cell communicatio...",67,17,14.07,534,"0.22666","0.05507","0.0551" +"GO:0023056","positive regulation of signaling",67,17,14.07,535,"0.22666","0.05507","0.0551" +"GO:1902850","microtubule cytoskeleton organization in...",9,4,1.89,194,"0.09914","0.05758","0.0576" +"GO:0006108","malate metabolic process",3,2,0.63,275,"0.11371","0.05820","0.0582" +"GO:0009896","positive regulation of catabolic process",23,4,4.83,1674,"0.74377","0.05883","0.0588" +"GO:0009584","detection of visible light",5,3,1.05,145,"0.06574","0.05934","0.0593" +"GO:0006665","sphingolipid metabolic process",9,4,1.89,195,"0.09914","0.05975","0.0598" +"GO:0030488","tRNA methylation",8,1,1.68,1914,"0.84877","0.05979","0.0598" +"GO:0010506","regulation of autophagy",18,4,3.78,1186,"0.54205","0.05991","0.0599" +"GO:0006022","aminoglycan metabolic process",23,10,4.83,38,"0.01233","0.06014","0.0601" +"GO:0007088","regulation of mitotic nuclear division",15,6,3.15,161,"0.07435","0.06111","0.0611" +"GO:0051783","regulation of nuclear division",15,6,3.15,162,"0.07435","0.06111","0.0611" +"GO:0072521","purine-containing compound metabolic pro...",74,17,15.54,788,"0.38166","0.06118","0.0612" +"GO:0010389","regulation of G2/M transition of mitotic...",10,5,2.1,104,"0.03960","0.06160","0.0616" +"GO:0046434","organophosphate catabolic process",20,7,4.2,202,"0.10638","0.06269","0.0627" +"GO:0018345","protein palmitoylation",3,1,0.63,958,"0.50718","0.06278","0.0628" +"GO:0022411","cellular component disassembly",35,8,7.35,911,"0.45949","0.06279","0.0628" +"GO:0019058","viral life cycle",18,6,3.78,381,"0.15801","0.06287","0.0629" +"GO:0031347","regulation of defense response",18,8,3.78,58,"0.02130","0.06287","0.0629" +"GO:0016051","carbohydrate biosynthetic process",18,11,3.78,2,"0.00024","0.00178","0.0630" +"GO:0019915","lipid storage",4,2,0.84,438,"0.19630","0.06395","0.0640" +"GO:1905952","regulation of lipid localization",4,2,0.84,439,"0.19630","0.06395","0.0640" +"GO:0097352","autophagosome maturation",4,2,0.84,440,"0.19630","0.06440","0.0644" +"GO:0035266","meristem growth",3,2,0.63,276,"0.11371","0.06547","0.0655" +"GO:0031329","regulation of cellular catabolic process",43,8,9.03,1652,"0.70984","0.06583","0.0658" +"GO:0009070","serine family amino acid biosynthetic pr...",6,3,1.26,215,"0.11137","0.06596","0.0660" +"GO:0006595","polyamine metabolic process",5,3,1.05,146,"0.06574","0.06621","0.0662" +"GO:0006596","polyamine biosynthetic process",5,3,1.05,147,"0.06574","0.06621","0.0662" +"GO:0009309","amine biosynthetic process",5,3,1.05,148,"0.06574","0.06621","0.0662" +"GO:0042401","cellular biogenic amine biosynthetic pro...",5,3,1.05,149,"0.06574","0.06621","0.0662" +"GO:0043248","proteasome assembly",6,3,1.26,216,"0.11137","0.06638","0.0664" +"GO:0006576","cellular biogenic amine metabolic proces...",9,5,1.89,61,"0.02384","0.06667","0.0667" +"GO:0006914","autophagy",39,9,8.19,852,"0.43686","0.06725","0.0673" +"GO:0061919","process utilizing autophagic mechanism",39,9,8.19,853,"0.43686","0.06725","0.0673" +"GO:0097237","cellular response to toxic substance",13,4,2.73,624,"0.28377","0.06816","0.0682" +"GO:0006629","lipid metabolic process",150,40,31.51,117,"0.05238","0.06838","0.0684" +"GO:0042254","ribosome biogenesis",65,12,13.65,1673,"0.74112","0.06854","0.0685" +"GO:1903902","positive regulation of viral life cycle",10,4,2.1,359,"0.13883","0.06876","0.0688" +"GO:0030042","actin filament depolymerization",5,2,1.05,585,"0.28334","0.07040","0.0704" +"GO:0030834","regulation of actin filament depolymeriz...",5,2,1.05,586,"0.28334","0.07040","0.0704" +"GO:0030835","negative regulation of actin filament de...",5,2,1.05,587,"0.28334","0.07040","0.0704" +"GO:0090407","organophosphate biosynthetic process",94,23,19.74,555,"0.23523","0.07069","0.0707" +"GO:0043902","positive regulation of multi-organism pr...",16,5,3.36,538,"0.23230","0.07139","0.0714" +"GO:0051604","protein maturation",19,7,3.99,166,"0.08363","0.07189","0.0719" +"GO:0016239","positive regulation of macroautophagy",6,1,1.26,1701,"0.75735","0.07202","0.0720" +"GO:0007094","mitotic spindle assembly checkpoint",4,1,0.84,1274,"0.61081","0.07333","0.0733" +"GO:0031577","spindle checkpoint",4,1,0.84,1275,"0.61081","0.07333","0.0733" +"GO:0033046","negative regulation of sister chromatid ...",4,1,0.84,1276,"0.61081","0.07333","0.0733" +"GO:0033048","negative regulation of mitotic sister ch...",4,1,0.84,1277,"0.61081","0.07333","0.0733" +"GO:0045839","negative regulation of mitotic nuclear d...",4,1,0.84,1278,"0.61081","0.07333","0.0733" +"GO:0045841","negative regulation of mitotic metaphase...",4,1,0.84,1279,"0.61081","0.07333","0.0733" +"GO:0051784","negative regulation of nuclear division",4,1,0.84,1280,"0.61081","0.07333","0.0733" +"GO:0051985","negative regulation of chromosome segreg...",4,1,0.84,1281,"0.61081","0.07333","0.0733" +"GO:0071173","spindle assembly checkpoint",4,1,0.84,1282,"0.61081","0.07333","0.0733" +"GO:0071174","mitotic spindle checkpoint",4,1,0.84,1283,"0.61081","0.07333","0.0733" +"GO:1902100","negative regulation of metaphase/anaphas...",4,1,0.84,1284,"0.61081","0.07333","0.0733" +"GO:1905819","negative regulation of chromosome separa...",4,1,0.84,1285,"0.61081","0.07333","0.0733" +"GO:2000816","negative regulation of mitotic sister ch...",4,1,0.84,1286,"0.61081","0.07333","0.0733" +"GO:0046677","response to antibiotic",23,6,4.83,704,"0.34954","0.07347","0.0735" +"GO:0044403","symbiont process",28,8,5.88,485,"0.21940","0.07524","0.0752" +"GO:0019318","hexose metabolic process",20,7,4.2,203,"0.10638","0.07575","0.0757" +"GO:0007091","metaphase/anaphase transition of mitotic...",7,2,1.47,870,"0.45086","0.07626","0.0763" +"GO:0010965","regulation of mitotic sister chromatid s...",7,2,1.47,871,"0.45086","0.07626","0.0763" +"GO:0030071","regulation of mitotic metaphase/anaphase...",7,2,1.47,872,"0.45086","0.07626","0.0763" +"GO:0044784","metaphase/anaphase transition of cell cy...",7,2,1.47,873,"0.45086","0.07626","0.0763" +"GO:0051306","mitotic sister chromatid separation",7,2,1.47,874,"0.45086","0.07626","0.0763" +"GO:1902099","regulation of metaphase/anaphase transit...",7,2,1.47,875,"0.45086","0.07626","0.0763" +"GO:1905818","regulation of chromosome separation",7,2,1.47,876,"0.45086","0.07626","0.0763" +"GO:0007444","imaginal disc development",13,6,2.73,93,"0.03718","0.07627","0.0763" +"GO:0009395","phospholipid catabolic process",6,2,1.26,749,"0.36933","0.07663","0.0766" +"GO:0006163","purine nucleotide metabolic process",68,15,14.28,918,"0.46287","0.07864","0.0786" +"GO:0070972","protein localization to endoplasmic reti...",9,4,1.89,196,"0.09914","0.07884","0.0788" +"GO:0007052","mitotic spindle organization",8,4,1.68,134,"0.06567","0.07915","0.0792" +"GO:0006575","cellular modified amino acid metabolic p...",12,5,2.52,172,"0.08619","0.08098","0.0810" +"GO:2001234","negative regulation of apoptotic signali...",10,3,2.1,706,"0.35262","0.08123","0.0812" +"GO:1901990","regulation of mitotic cell cycle phase t...",19,7,3.99,167,"0.08363","0.08261","0.0826" +"GO:0018209","peptidyl-serine modification",4,3,0.84,74,"0.03112","0.08332","0.0833" +"GO:1901214","regulation of neuron death",7,1,1.47,1836,"0.80843","0.08363","0.0836" +"GO:1901215","negative regulation of neuron death",7,1,1.47,1837,"0.80843","0.08363","0.0836" +"GO:0038202","TORC1 signaling",5,2,1.05,588,"0.28334","0.08369","0.0837" +"GO:0050790","regulation of catalytic activity",100,25,21,425,"0.18940","0.08377","0.0838" +"GO:0034401","chromatin organization involved in regul...",4,3,0.84,75,"0.03112","0.08442","0.0844" +"GO:0070868","heterochromatin organization involved in...",4,3,0.84,76,"0.03112","0.08442","0.0844" +"GO:0097549","chromatin organization involved in negat...",4,3,0.84,77,"0.03112","0.08442","0.0844" +"GO:0051261","protein depolymerization",14,5,2.94,376,"0.15181","0.08617","0.0862" +"GO:0006342","chromatin silencing",11,5,2.31,126,"0.06037","0.08655","0.0866" +"GO:0032787","monocarboxylic acid metabolic process",47,14,9.87,191,"0.09817","0.08678","0.0868" +"GO:0015936","coenzyme A metabolic process",3,2,0.63,277,"0.11371","0.08755","0.0876" +"GO:0015937","coenzyme A biosynthetic process",3,2,0.63,278,"0.11371","0.08755","0.0876" +"GO:0000096","sulfur amino acid metabolic process",4,3,0.84,78,"0.03112","0.08780","0.0878" +"GO:0000097","sulfur amino acid biosynthetic process",4,3,0.84,79,"0.03112","0.08780","0.0878" +"GO:0009067","aspartate family amino acid biosynthetic...",4,3,0.84,80,"0.03112","0.08780","0.0878" +"GO:0043624","cellular protein complex disassembly",24,6,5.04,798,"0.39117","0.08844","0.0884" +"GO:0046461","neutral lipid catabolic process",4,1,0.84,1287,"0.61081","0.08888","0.0889" +"GO:0046464","acylglycerol catabolic process",4,1,0.84,1288,"0.61081","0.08888","0.0889" +"GO:0048706","embryonic skeletal system development",6,3,1.26,217,"0.11137","0.08899","0.0890" +"GO:0007603","phototransduction, visible light",3,2,0.63,279,"0.11371","0.08905","0.0890" +"GO:0009642","response to light intensity",3,2,0.63,280,"0.11371","0.08905","0.0890" +"GO:0016056","rhodopsin mediated signaling pathway",3,2,0.63,281,"0.11371","0.08905","0.0890" +"GO:2001238","positive regulation of extrinsic apoptot...",3,2,0.63,282,"0.11371","0.08905","0.0890" +"GO:0032504","multicellular organism reproduction",68,23,14.28,28,"0.00893","0.08955","0.0896" +"GO:0019321","pentose metabolic process",3,0,0.63,2281,"1.00000","0.08980","0.0898" +"GO:0009150","purine ribonucleotide metabolic process",65,13,13.65,1450,"0.62912","0.09089","0.0909" +"GO:0018958","phenol-containing compound metabolic pro...",5,1,1.05,1528,"0.69268","0.09234","0.0923" +"GO:0014823","response to activity",12,5,2.52,173,"0.08619","0.09252","0.0925" +"GO:0048524","positive regulation of viral process",12,4,2.52,543,"0.23240","0.09252","0.0925" +"GO:0060562","epithelial tube morphogenesis",19,4,3.99,1217,"0.58845","0.09314","0.0931" +"GO:0006767","water-soluble vitamin metabolic process",4,1,0.84,1289,"0.61081","0.09330","0.0933" +"GO:0009262","deoxyribonucleotide metabolic process",4,3,0.84,81,"0.03112","0.09337","0.0934" +"GO:0033238","regulation of cellular amine metabolic p...",4,3,0.84,82,"0.03112","0.09397","0.0940" +"GO:0045840","positive regulation of mitotic nuclear d...",4,3,0.84,83,"0.03112","0.09397","0.0940" +"GO:0051785","positive regulation of nuclear division",4,3,0.84,84,"0.03112","0.09397","0.0940" +"GO:0080134","regulation of response to stress",61,17,12.81,342,"0.12218","0.09423","0.0942" +"GO:0016485","protein processing",13,6,2.73,94,"0.03718","0.09436","0.0944" +"GO:0046039","GTP metabolic process",3,0,0.63,2282,"1.00000","0.09496","0.0950" +"GO:1901615","organic hydroxy compound metabolic proce...",35,10,7.35,412,"0.18240","0.09550","0.0955" +"GO:0016032","viral process",24,6,5.04,799,"0.39117","0.09574","0.0957" +"GO:0071236","cellular response to antibiotic",13,3,2.73,1172,"0.53519","0.09808","0.0981" +"GO:0140014","mitotic nuclear division",23,9,4.83,90,"0.03599","0.09907","0.0991" +"GO:0010035","response to inorganic substance",33,7,6.93,1205,"0.55751","0.09950","0.0995" +"GO:0009144","purine nucleoside triphosphate metabolic...",46,7,9.66,1973,"0.87894","0.10078","0.1008" +"GO:0009205","purine ribonucleoside triphosphate metab...",46,7,9.66,1974,"0.87894","0.10078","0.1008" +"GO:0009116","nucleoside metabolic process",24,9,5.04,113,"0.04723","0.10202","0.1020" +"GO:1901657","glycosyl compound metabolic process",24,9,5.04,114,"0.04723","0.10202","0.1020" +"GO:0007346","regulation of mitotic cell cycle",36,12,7.56,125,"0.05767","0.10214","0.1021" +"GO:0006612","protein targeting to membrane",7,4,1.47,102,"0.03923","0.10263","0.1026" +"GO:1903827","regulation of cellular protein localizat...",20,8,4.2,111,"0.04137","0.10325","0.1032" +"GO:0009141","nucleoside triphosphate metabolic proces...",49,9,10.29,1663,"0.73015","0.10329","0.1033" +"GO:0044283","small molecule biosynthetic process",69,21,14.49,110,"0.04015","0.10353","0.1035" +"GO:0070997","neuron death",8,1,1.68,1915,"0.84877","0.10464","0.1046" +"GO:0009555","pollen development",5,2,1.05,589,"0.28334","0.10562","0.1056" +"GO:0046467","membrane lipid biosynthetic process",13,3,2.73,1173,"0.53519","0.10572","0.1057" +"GO:1902749","regulation of cell cycle G2/M phase tran...",11,5,2.31,127,"0.06037","0.10702","0.1070" +"GO:0009583","detection of light stimulus",6,3,1.26,218,"0.11137","0.10712","0.1071" +"GO:0006563","L-serine metabolic process",3,2,0.63,283,"0.11371","0.10742","0.1074" +"GO:0072594","establishment of protein localization to...",45,16,9.45,46,"0.01659","0.10829","0.1083" +"GO:0018193","peptidyl-amino acid modification",71,18,14.91,484,"0.21912","0.03262","0.1083" +"GO:0008340","determination of adult lifespan",7,1,1.47,1838,"0.80843","0.10877","0.1088" +"GO:0009259","ribonucleotide metabolic process",67,13,14.07,1508,"0.67549","0.10880","0.1088" +"GO:0035434","copper ion transmembrane transport",3,1,0.63,959,"0.50718","0.10976","0.1098" +"GO:0042026","protein refolding",13,4,2.73,625,"0.28377","0.10988","0.1099" +"GO:0042542","response to hydrogen peroxide",13,3,2.73,1174,"0.53519","0.10988","0.1099" +"GO:0007338","single fertilization",8,3,1.68,489,"0.22537","0.11241","0.1124" +"GO:0006189","'de novo' IMP biosynthetic process",3,2,0.63,284,"0.11371","0.11274","0.1127" +"GO:0006732","coenzyme metabolic process",49,14,10.29,347,"0.12948","0.11297","0.1130" +"GO:0006556","S-adenosylmethionine biosynthetic proces...",3,2,0.63,285,"0.11371","0.11334","0.1133" +"GO:0046500","S-adenosylmethionine metabolic process",3,2,0.63,286,"0.11371","0.11334","0.1133" +"GO:0071356","cellular response to tumor necrosis fact...",5,3,1.05,150,"0.06574","0.11440","0.1144" +"GO:0044772","mitotic cell cycle phase transition",29,10,6.09,133,"0.06469","0.11583","0.1158" +"GO:0051170","import into nucleus",15,7,3.15,60,"0.02309","0.11649","0.1165" +"GO:0051186","cofactor metabolic process",76,21,15.96,201,"0.10000","0.11670","0.1167" +"GO:0009145","purine nucleoside triphosphate biosynthe...",25,2,5.25,2188,"0.97935","0.12132","0.1213" +"GO:0009206","purine ribonucleoside triphosphate biosy...",25,2,5.25,2189,"0.97935","0.12132","0.1213" +"GO:0046834","lipid phosphorylation",5,0,1.05,2283,"1.00000","0.12133","0.1213" +"GO:0046854","phosphatidylinositol phosphorylation",5,0,1.05,2284,"1.00000","0.12133","0.1213" +"GO:0006801","superoxide metabolic process",3,2,0.63,287,"0.11371","0.12239","0.1224" +"GO:0042737","drug catabolic process",4,1,0.84,1290,"0.61081","0.12289","0.1229" +"GO:0090316","positive regulation of intracellular pro...",8,4,1.68,135,"0.06567","0.12290","0.1229" +"GO:0043900","regulation of multi-organism process",22,6,4.62,673,"0.30832","0.12366","0.1237" +"GO:0072522","purine-containing compound biosynthetic ...",47,10,9.87,1184,"0.53997","0.12437","0.1244" +"GO:1900408","negative regulation of cellular response...",11,3,2.31,817,"0.41598","0.12527","0.1253" +"GO:1902883","negative regulation of response to oxida...",11,3,2.31,818,"0.41598","0.12527","0.1253" +"GO:1903201","regulation of oxidative stress-induced c...",11,3,2.31,819,"0.41598","0.12527","0.1253" +"GO:0009165","nucleotide biosynthetic process",61,17,12.81,343,"0.12218","0.12546","0.1255" +"GO:1901293","nucleoside phosphate biosynthetic proces...",61,17,12.81,344,"0.12218","0.12546","0.1255" +"GO:0001505","regulation of neurotransmitter levels",23,7,4.83,428,"0.19152","0.12591","0.1259" +"GO:0015729","oxaloacetate transport",3,0,0.63,2285,"1.00000","0.12661","0.1266" +"GO:0034659","isopropylmalate transport",3,0,0.63,2286,"1.00000","0.12661","0.1266" +"GO:0006641","triglyceride metabolic process",3,1,0.63,960,"0.50718","0.12727","0.1273" +"GO:0050994","regulation of lipid catabolic process",3,2,0.63,288,"0.11371","0.12727","0.1273" +"GO:0007293","germarium-derived egg chamber formation",3,2,0.63,289,"0.11371","0.12793","0.1279" +"GO:0030713","ovarian follicle cell stalk formation",3,2,0.63,290,"0.11371","0.12793","0.1279" +"GO:0070086","ubiquitin-dependent endocytosis",3,2,0.63,291,"0.11371","0.12793","0.1279" +"GO:0071241","cellular response to inorganic substance",12,3,2.52,922,"0.47717","0.12855","0.1286" +"GO:0016574","histone ubiquitination",5,3,1.05,151,"0.06574","0.12874","0.1287" +"GO:1905392","plant organ morphogenesis",5,2,1.05,590,"0.28334","0.12883","0.1288" +"GO:0045815","positive regulation of gene expression, ...",5,0,1.05,2287,"1.00000","0.12883","0.1288" +"GO:0043903","regulation of symbiosis, encompassing mu...",17,5,3.57,576,"0.27631","0.12910","0.1291" +"GO:2001233","regulation of apoptotic signaling pathwa...",17,5,3.57,577,"0.27631","0.12910","0.1291" +"GO:0006777","Mo-molybdopterin cofactor biosynthetic p...",3,1,0.63,961,"0.50718","0.13061","0.1306" +"GO:0019720","Mo-molybdopterin cofactor metabolic proc...",3,1,0.63,962,"0.50718","0.13061","0.1306" +"GO:0043545","molybdopterin cofactor metabolic process",3,1,0.63,963,"0.50718","0.13061","0.1306" +"GO:0051189","prosthetic group metabolic process",3,1,0.63,964,"0.50718","0.13061","0.1306" +"GO:0006753","nucleoside phosphate metabolic process",101,27,21.21,187,"0.09639","0.13079","0.1308" +"GO:0042558","pteridine-containing compound metabolic ...",7,2,1.47,877,"0.45086","0.13197","0.1320" +"GO:0009072","aromatic amino acid family metabolic pro...",9,4,1.89,197,"0.09914","0.13206","0.1321" +"GO:0042133","neurotransmitter metabolic process",12,4,2.52,544,"0.23240","0.13244","0.1324" +"GO:0006465","signal peptide processing",3,1,0.63,965,"0.50718","0.13436","0.1344" +"GO:0097191","extrinsic apoptotic signaling pathway",8,3,1.68,490,"0.22537","0.13441","0.1344" +"GO:0009117","nucleotide metabolic process",99,26,20.79,341,"0.11986","0.13472","0.1347" +"GO:0043687","post-translational protein modification",5,2,1.05,591,"0.28334","0.13587","0.1359" +"GO:0008038","neuron recognition",7,4,1.47,103,"0.03923","0.13617","0.1362" +"GO:0045814","negative regulation of gene expression, ...",12,5,2.52,174,"0.08619","0.13658","0.1366" +"GO:0045070","positive regulation of viral genome repl...",9,3,1.89,641,"0.28848","0.13684","0.1368" +"GO:0051702","interaction with symbiont",9,4,1.89,198,"0.09914","0.13684","0.1368" +"GO:0051851","modification by host of symbiont morphol...",9,4,1.89,199,"0.09914","0.13684","0.1368" +"GO:1901137","carbohydrate derivative biosynthetic pro...",110,27,23.1,480,"0.20645","0.06149","0.1369" +"GO:0006164","purine nucleotide biosynthetic process",44,10,9.24,867,"0.44783","0.13729","0.1373" +"GO:0097164","ammonium ion metabolic process",18,6,3.78,382,"0.15801","0.13738","0.1374" +"GO:1903432","regulation of TORC1 signaling",4,2,0.84,441,"0.19630","0.13755","0.1375" +"GO:1904263","positive regulation of TORC1 signaling",4,2,0.84,442,"0.19630","0.13755","0.1375" +"GO:0034599","cellular response to oxidative stress",17,4,3.57,942,"0.49311","0.13820","0.1382" +"GO:0090087","regulation of peptide transport",21,8,4.41,122,"0.05496","0.13892","0.1389" +"GO:0009101","glycoprotein biosynthetic process",48,15,10.08,128,"0.06171","0.05457","0.1389" +"GO:0006721","terpenoid metabolic process",7,3,1.47,389,"0.16548","0.13939","0.1394" +"GO:0030163","protein catabolic process",86,27,18.06,40,"0.01431","0.00175","0.1412" +"GO:0043984","histone H4-K16 acetylation",3,2,0.63,292,"0.11371","0.14174","0.1417" +"GO:0051054","positive regulation of DNA metabolic pro...",7,0,1.47,2288,"1.00000","0.14322","0.1432" +"GO:0002526","acute inflammatory response",4,2,0.84,443,"0.19630","0.14393","0.1439" +"GO:0002920","regulation of humoral immune response",4,2,0.84,444,"0.19630","0.14393","0.1439" +"GO:0006959","humoral immune response",4,2,0.84,445,"0.19630","0.14393","0.1439" +"GO:0021987","cerebral cortex development",5,0,1.05,2289,"1.00000","0.14421","0.1442" +"GO:0006458","'de novo' protein folding",10,3,2.1,707,"0.35262","0.14560","0.1456" +"GO:0022613","ribonucleoprotein complex biogenesis",86,14,18.06,2015,"0.89305","0.14588","0.1459" +"GO:0009152","purine ribonucleotide biosynthetic proce...",41,8,8.61,1494,"0.65474","0.14696","0.1470" +"GO:1901565","organonitrogen compound catabolic proces...",110,33,23.1,42,"0.01482","0.00839","0.1481" +"GO:0000027","ribosomal large subunit assembly",6,1,1.26,1702,"0.75735","0.14891","0.1489" +"GO:0018342","protein prenylation",3,0,0.63,2290,"1.00000","0.14942","0.1494" +"GO:0097354","prenylation",3,0,0.63,2291,"1.00000","0.14942","0.1494" +"GO:0001819","positive regulation of cytokine producti...",6,1,1.26,1703,"0.75735","0.14944","0.1494" +"GO:0034612","response to tumor necrosis factor",6,3,1.26,219,"0.11137","0.14944","0.1494" +"GO:1903321","negative regulation of protein modificat...",6,2,1.26,750,"0.36933","0.14944","0.1494" +"GO:2001236","regulation of extrinsic apoptotic signal...",6,3,1.26,220,"0.11137","0.14944","0.1494" +"GO:0002684","positive regulation of immune system pro...",26,10,5.46,85,"0.03125","0.15002","0.1500" +"GO:0019693","ribose phosphate metabolic process",71,14,14.91,1474,"0.65318","0.15016","0.1502" +"GO:0000302","response to reactive oxygen species",16,4,3.36,855,"0.44210","0.15024","0.1502" +"GO:0009735","response to cytokinin",3,2,0.63,293,"0.11371","0.15129","0.1513" +"GO:0048437","floral organ development",3,2,0.63,294,"0.11371","0.15129","0.1513" +"GO:0048438","floral whorl development",3,2,0.63,295,"0.11371","0.15129","0.1513" +"GO:0048443","stamen development",3,2,0.63,296,"0.11371","0.15129","0.1513" +"GO:0048466","androecium development",3,2,0.63,297,"0.11371","0.15129","0.1513" +"GO:0048827","phyllome development",3,2,0.63,298,"0.11371","0.15129","0.1513" +"GO:0009199","ribonucleoside triphosphate metabolic pr...",47,7,9.87,2014,"0.89246","0.15173","0.1517" +"GO:1903008","organelle disassembly",8,1,1.68,1916,"0.84877","0.15188","0.1519" +"GO:0002697","regulation of immune effector process",10,5,2.1,105,"0.03960","0.15365","0.1537" +"GO:0007041","lysosomal transport",10,5,2.1,106,"0.03960","0.15365","0.1537" +"GO:0045454","cell redox homeostasis",24,6,5.04,800,"0.39117","0.15407","0.1541" +"GO:0045494","photoreceptor cell maintenance",4,2,0.84,446,"0.19630","0.15535","0.1553" +"GO:0042255","ribosome assembly",11,3,2.31,820,"0.41598","0.15574","0.1557" +"GO:0034976","response to endoplasmic reticulum stress",26,5,5.46,1499,"0.66485","0.15589","0.1559" +"GO:0006694","steroid biosynthetic process",11,4,2.31,414,"0.18366","0.15641","0.1564" +"GO:2001242","regulation of intrinsic apoptotic signal...",10,3,2.1,708,"0.35262","0.15751","0.1575" +"GO:0036465","synaptic vesicle recycling",7,3,1.47,390,"0.16548","0.15871","0.1587" +"GO:0048488","synaptic vesicle endocytosis",7,3,1.47,391,"0.16548","0.15871","0.1587" +"GO:0140238","presynaptic endocytosis",7,3,1.47,392,"0.16548","0.15871","0.1587" +"GO:0043244","regulation of protein complex disassembl...",11,3,2.31,821,"0.41598","0.15877","0.1588" +"GO:0006605","protein targeting",39,12,8.19,192,"0.09850","0.15924","0.1592" +"GO:0043242","negative regulation of protein complex d...",9,3,1.89,642,"0.28848","0.15928","0.1593" +"GO:0099402","plant organ development",9,3,1.89,643,"0.28848","0.15928","0.1593" +"GO:0009452","7-methylguanosine RNA capping",3,1,0.63,966,"0.50718","0.15934","0.1593" +"GO:0036260","RNA capping",3,1,0.63,967,"0.50718","0.15934","0.1593" +"GO:0032388","positive regulation of intracellular tra...",12,4,2.52,545,"0.23240","0.16131","0.1613" +"GO:0044282","small molecule catabolic process",32,9,6.72,482,"0.21382","0.16150","0.1615" +"GO:0006664","glycolipid metabolic process",10,2,2.1,1476,"0.65422","0.16231","0.1623" +"GO:1903509","liposaccharide metabolic process",10,2,2.1,1477,"0.65422","0.16231","0.1623" +"GO:0031400","negative regulation of protein modificat...",34,9,7.14,572,"0.27363","0.16312","0.1631" +"GO:0001510","RNA methylation",18,3,3.78,1777,"0.76265","0.16357","0.1636" +"GO:0009966","regulation of signal transduction",131,29,27.52,811,"0.40722","0.16385","0.1638" +"GO:0044272","sulfur compound biosynthetic process",17,7,3.57,115,"0.04736","0.16491","0.1649" +"GO:0002009","morphogenesis of an epithelium",31,10,6.51,185,"0.09639","0.16584","0.1658" +"GO:0000086","G2/M transition of mitotic cell cycle",12,5,2.52,175,"0.08619","0.16671","0.1667" +"GO:0006606","protein import into nucleus",13,6,2.73,95,"0.03718","0.16678","0.1668" +"GO:0071248","cellular response to metal ion",11,3,2.31,822,"0.41598","0.16807","0.1681" +"GO:0009132","nucleoside diphosphate metabolic process",10,3,2.1,709,"0.35262","0.16810","0.1681" +"GO:0010259","multicellular organism aging",10,1,2.1,2026,"0.90578","0.16907","0.1691" +"GO:0035821","modification of morphology or physiology...",10,4,2.1,360,"0.13883","0.16907","0.1691" +"GO:0051817","modification of morphology or physiology...",10,4,2.1,361,"0.13883","0.16907","0.1691" +"GO:0070301","cellular response to hydrogen peroxide",10,3,2.1,710,"0.35262","0.16907","0.1691" +"GO:1903202","negative regulation of oxidative stress-...",10,3,2.1,711,"0.35262","0.16907","0.1691" +"GO:2001023","regulation of response to drug",10,3,2.1,712,"0.35262","0.16907","0.1691" +"GO:0051346","negative regulation of hydrolase activit...",20,5,4.2,813,"0.41435","0.16964","0.1696" +"GO:0000079","regulation of cyclin-dependent protein s...",8,4,1.68,136,"0.06567","0.17004","0.1700" +"GO:0043523","regulation of neuron apoptotic process",5,1,1.05,1529,"0.69268","0.17015","0.1702" +"GO:0043524","negative regulation of neuron apoptotic ...",5,1,1.05,1530,"0.69268","0.17015","0.1702" +"GO:0006766","vitamin metabolic process",11,3,2.31,823,"0.41598","0.17049","0.1705" +"GO:0006012","galactose metabolic process",3,2,0.63,299,"0.11371","0.17097","0.1710" +"GO:0030177","positive regulation of Wnt signaling pat...",5,2,1.05,592,"0.28334","0.17111","0.1711" +"GO:0006066","alcohol metabolic process",21,5,4.41,913,"0.46007","0.17138","0.1714" +"GO:0000075","cell cycle checkpoint",18,3,3.78,1778,"0.76265","0.17203","0.1720" +"GO:2001243","negative regulation of intrinsic apoptot...",7,2,1.47,878,"0.45086","0.17285","0.1728" +"GO:0007602","phototransduction",4,2,0.84,447,"0.19630","0.17309","0.1731" +"GO:0006879","cellular iron ion homeostasis",4,1,0.84,1291,"0.61081","0.17333","0.1733" +"GO:0035215","genital disc development",4,1,0.84,1292,"0.61081","0.17333","0.1733" +"GO:0055072","iron ion homeostasis",4,1,0.84,1293,"0.61081","0.17333","0.1733" +"GO:1903146","regulation of autophagy of mitochondrion",4,1,0.84,1294,"0.61081","0.17333","0.1733" +"GO:0072332","intrinsic apoptotic signaling pathway by...",3,2,0.63,300,"0.11371","0.17386","0.1739" +"GO:1901797","negative regulation of signal transducti...",3,2,0.63,301,"0.11371","0.17386","0.1739" +"GO:0033044","regulation of chromosome organization",21,3,4.41,1942,"0.84942","0.17469","0.1747" +"GO:0007276","gamete generation",51,17,10.71,64,"0.02660","0.17676","0.1768" +"GO:0021510","spinal cord development",4,1,0.84,1295,"0.61081","0.17720","0.1772" +"GO:0030837","negative regulation of actin filament po...",4,1,0.84,1296,"0.61081","0.17732","0.1773" +"GO:0032272","negative regulation of protein polymeriz...",4,1,0.84,1297,"0.61081","0.17732","0.1773" +"GO:0051693","actin filament capping",4,1,0.84,1298,"0.61081","0.17732","0.1773" +"GO:0017144","drug metabolic process",104,28,21.84,171,"0.08514","0.17743","0.1774" +"GO:0009814","defense response, incompatible interacti...",3,1,0.63,968,"0.50718","0.17764","0.1776" +"GO:0045471","response to ethanol",10,5,2.1,107,"0.03960","0.17788","0.1779" +"GO:0010498","proteasomal protein catabolic process",31,10,6.51,186,"0.09639","0.17828","0.1783" +"GO:0006684","sphingomyelin metabolic process",4,2,0.84,448,"0.19630","0.18063","0.1806" +"GO:0046034","ATP metabolic process",43,7,9.03,1901,"0.82977","0.18079","0.1808" +"GO:0001736","establishment of planar polarity",8,4,1.68,137,"0.06567","0.18143","0.1814" +"GO:0001738","morphogenesis of a polarized epithelium",8,4,1.68,138,"0.06567","0.18143","0.1814" +"GO:0007164","establishment of tissue polarity",8,4,1.68,139,"0.06567","0.18143","0.1814" +"GO:0009636","response to toxic substance",30,8,6.3,635,"0.28437","0.18167","0.1817" +"GO:0008333","endosome to lysosome transport",3,2,0.63,302,"0.11371","0.18319","0.1832" +"GO:0051402","neuron apoptotic process",6,1,1.26,1704,"0.75735","0.18421","0.1842" +"GO:0050792","regulation of viral process",15,4,3.15,790,"0.38965","0.18431","0.1843" +"GO:0050776","regulation of immune response",26,10,5.46,86,"0.03125","0.18465","0.1846" +"GO:0016241","regulation of macroautophagy",10,2,2.1,1478,"0.65422","0.18525","0.1853" +"GO:0006544","glycine metabolic process",3,1,0.63,969,"0.50718","0.18580","0.1858" +"GO:0042136","neurotransmitter biosynthetic process",3,1,0.63,970,"0.50718","0.18580","0.1858" +"GO:0051028","mRNA transport",10,3,2.1,713,"0.35262","0.18589","0.1859" +"GO:1902533","positive regulation of intracellular sig...",28,7,5.88,782,"0.37116","0.18709","0.1871" +"GO:0030900","forebrain development",17,6,3.57,345,"0.12666","0.18778","0.1878" +"GO:0044743","protein transmembrane import into intrac...",16,5,3.36,539,"0.23230","0.18847","0.1885" +"GO:0044242","cellular lipid catabolic process",20,5,4.2,814,"0.41435","0.18856","0.1886" +"GO:0032352","positive regulation of hormone metabolic...",4,2,0.84,449,"0.19630","0.18866","0.1887" +"GO:0051384","response to glucocorticoid",4,2,0.84,450,"0.19630","0.18866","0.1887" +"GO:0034637","cellular carbohydrate biosynthetic proce...",8,6,1.68,8,"0.00159","0.00293","0.1894" +"GO:0006402","mRNA catabolic process",22,2,4.62,2141,"0.96227","0.18948","0.1895" +"GO:0009066","aspartate family amino acid metabolic pr...",5,3,1.05,152,"0.06574","0.18997","0.1900" +"GO:0006513","protein monoubiquitination",10,4,2.1,362,"0.13883","0.19056","0.1906" +"GO:0033045","regulation of sister chromatid segregati...",8,2,1.68,1138,"0.52603","0.19125","0.1913" +"GO:0033047","regulation of mitotic sister chromatid s...",8,2,1.68,1139,"0.52603","0.19125","0.1913" +"GO:0051304","chromosome separation",8,2,1.68,1140,"0.52603","0.19125","0.1913" +"GO:0051983","regulation of chromosome segregation",8,2,1.68,1141,"0.52603","0.19125","0.1913" +"GO:0001700","embryonic development via the syncytial ...",5,3,1.05,153,"0.06574","0.19262","0.1926" +"GO:0007413","axonal fasciculation",5,3,1.05,154,"0.06574","0.19262","0.1926" +"GO:0070828","heterochromatin organization",5,3,1.05,155,"0.06574","0.19262","0.1926" +"GO:0106030","neuron projection fasciculation",5,3,1.05,156,"0.06574","0.19262","0.1926" +"GO:0009408","response to heat",33,12,6.93,67,"0.03007","0.19298","0.1930" +"GO:0006082","organic acid metabolic process",129,42,27.1,4,"0.00114","0.00023","0.1935" +"GO:0043436","oxoacid metabolic process",129,42,27.1,5,"0.00114","0.00023","0.1935" +"GO:0010942","positive regulation of cell death",24,6,5.04,801,"0.39117","0.19400","0.1940" +"GO:0009743","response to carbohydrate",9,3,1.89,644,"0.28848","0.19503","0.1950" +"GO:0015858","nucleoside transport",3,2,0.63,303,"0.11371","0.19647","0.1965" +"GO:1901642","nucleoside transmembrane transport",3,2,0.63,304,"0.11371","0.19647","0.1965" +"GO:0033522","histone H2A ubiquitination",3,2,0.63,305,"0.11371","0.19829","0.1983" +"GO:0035518","histone H2A monoubiquitination",3,2,0.63,306,"0.11371","0.19829","0.1983" +"GO:0002065","columnar/cuboidal epithelial cell differ...",17,7,3.57,116,"0.04736","0.19899","0.1990" +"GO:0009142","nucleoside triphosphate biosynthetic pro...",26,2,5.46,2202,"0.98315","0.19952","0.1995" +"GO:0009201","ribonucleoside triphosphate biosynthetic...",26,2,5.46,2203,"0.98315","0.19952","0.1995" +"GO:0009147","pyrimidine nucleoside triphosphate metab...",4,1,0.84,1299,"0.61081","0.20022","0.2002" +"GO:0009894","regulation of catabolic process",52,9,10.92,1814,"0.79462","0.20175","0.2017" +"GO:0048512","circadian behavior",3,1,0.63,971,"0.50718","0.20335","0.2034" +"GO:0003007","heart morphogenesis",8,1,1.68,1917,"0.84877","0.20419","0.2042" +"GO:0008643","carbohydrate transport",8,4,1.68,140,"0.06567","0.20419","0.2042" +"GO:0060236","regulation of mitotic spindle organizati...",5,2,1.05,593,"0.28334","0.20526","0.2053" +"GO:0090224","regulation of spindle organization",5,2,1.05,594,"0.28334","0.20526","0.2053" +"GO:0030539","male genitalia development",3,1,0.63,972,"0.50718","0.20709","0.2071" +"GO:0043161","proteasome-mediated ubiquitin-dependent ...",28,9,5.88,331,"0.11379","0.20767","0.2077" +"GO:0007281","germ cell development",37,13,7.77,87,"0.03252","0.20817","0.2082" +"GO:0043086","negative regulation of catalytic activit...",35,7,7.35,1443,"0.62521","0.20882","0.2088" +"GO:0009451","RNA modification",46,9,9.66,1475,"0.65346","0.20910","0.2091" +"GO:0006754","ATP biosynthetic process",23,2,4.83,2163,"0.96909","0.20941","0.2094" +"GO:0006821","chloride transport",4,2,0.84,451,"0.19630","0.20952","0.2095" +"GO:0043243","positive regulation of protein complex d...",3,1,0.63,973,"0.50718","0.21040","0.2104" +"GO:0008637","apoptotic mitochondrial changes",3,0,0.63,2292,"1.00000","0.21088","0.2109" +"GO:0036473","cell death in response to oxidative stre...",13,3,2.73,1175,"0.53519","0.21187","0.2119" +"GO:1900407","regulation of cellular response to oxida...",13,3,2.73,1176,"0.53519","0.21187","0.2119" +"GO:1902882","regulation of response to oxidative stre...",13,3,2.73,1177,"0.53519","0.21187","0.2119" +"GO:0031124","mRNA 3'-end processing",8,4,1.68,141,"0.06567","0.21209","0.2121" +"GO:0045931","positive regulation of mitotic cell cycl...",5,3,1.05,157,"0.06574","0.21234","0.2123" +"GO:0009124","nucleoside monophosphate biosynthetic pr...",30,6,6.3,1444,"0.62610","0.21285","0.2128" +"GO:0009156","ribonucleoside monophosphate biosyntheti...",30,6,6.3,1445,"0.62610","0.21285","0.2128" +"GO:0016226","iron-sulfur cluster assembly",7,2,1.47,879,"0.45086","0.21314","0.2131" +"GO:0031163","metallo-sulfur cluster assembly",7,2,1.47,880,"0.45086","0.21314","0.2131" +"GO:0006406","mRNA export from nucleus",9,3,1.89,645,"0.28848","0.21360","0.2136" +"GO:0071427","mRNA-containing ribonucleoprotein comple...",9,3,1.89,646,"0.28848","0.21360","0.2136" +"GO:0006486","protein glycosylation",46,14,9.66,168,"0.08445","0.08912","0.2138" +"GO:0043413","macromolecule glycosylation",46,14,9.66,169,"0.08445","0.08912","0.2138" +"GO:0070085","glycosylation",46,14,9.66,170,"0.08445","0.08912","0.2138" +"GO:0030707","ovarian follicle cell development",14,6,2.94,120,"0.05384","0.21404","0.2140" +"GO:0051338","regulation of transferase activity",39,8,8.19,1264,"0.59400","0.21460","0.2146" +"GO:0010639","negative regulation of organelle organiz...",21,4,4.41,1504,"0.67242","0.21659","0.2166" +"GO:1901987","regulation of cell cycle phase transitio...",21,7,4.41,349,"0.13209","0.21659","0.2166" +"GO:0009084","glutamine family amino acid biosynthetic...",3,1,0.63,974,"0.50718","0.21664","0.2166" +"GO:0009123","nucleoside monophosphate metabolic proce...",51,11,10.71,1131,"0.51629","0.21713","0.2171" +"GO:0009161","ribonucleoside monophosphate metabolic p...",51,11,10.71,1132,"0.51629","0.21713","0.2171" +"GO:0009126","purine nucleoside monophosphate metaboli...",48,10,10.08,1211,"0.56950","0.21779","0.2178" +"GO:0009167","purine ribonucleoside monophosphate meta...",48,10,10.08,1212,"0.56950","0.21779","0.2178" +"GO:0006457","protein folding",62,14,13.02,849,"0.42896","0.21848","0.2185" +"GO:0001522","pseudouridine synthesis",10,2,2.1,1479,"0.65422","0.21866","0.2187" +"GO:0034470","ncRNA processing",88,14,18.48,2058,"0.91119","0.21940","0.2194" +"GO:0043588","skin development",9,2,1.89,1241,"0.59390","0.21948","0.2195" +"GO:1900180","regulation of protein localization to nu...",3,2,0.63,307,"0.11371","0.22005","0.2201" +"GO:0051084","'de novo' posttranslational protein fold...",9,3,1.89,647,"0.28848","0.22033","0.2203" +"GO:0051085","chaperone cofactor-dependent protein ref...",9,3,1.89,648,"0.28848","0.22033","0.2203" +"GO:0022412","cellular process involved in reproductio...",41,14,8.61,89,"0.03451","0.22054","0.2205" +"GO:0043949","regulation of cAMP-mediated signaling",5,2,1.05,595,"0.28334","0.22238","0.2224" +"GO:0051225","spindle assembly",8,4,1.68,142,"0.06567","0.22372","0.2237" +"GO:1903332","regulation of protein folding",8,4,1.68,143,"0.06567","0.22372","0.2237" +"GO:0009100","glycoprotein metabolic process",51,15,10.71,188,"0.09743","0.09879","0.2252" +"GO:0043473","pigmentation",3,2,0.63,308,"0.11371","0.22549","0.2255" +"GO:0048066","developmental pigmentation",3,2,0.63,309,"0.11371","0.22549","0.2255" +"GO:0006730","one-carbon metabolic process",5,2,1.05,596,"0.28334","0.22622","0.2262" +"GO:0099504","synaptic vesicle cycle",9,3,1.89,649,"0.28848","0.22634","0.2263" +"GO:1902904","negative regulation of supramolecular fi...",16,5,3.36,540,"0.23230","0.22655","0.2265" +"GO:0009260","ribonucleotide biosynthetic process",43,8,9.03,1653,"0.70984","0.22677","0.2268" +"GO:0046390","ribose phosphate biosynthetic process",43,8,9.03,1654,"0.70984","0.22677","0.2268" +"GO:0021915","neural tube development",7,1,1.47,1839,"0.80843","0.22738","0.2274" +"GO:0055076","transition metal ion homeostasis",7,1,1.47,1840,"0.80843","0.22738","0.2274" +"GO:0032269","negative regulation of cellular protein ...",55,15,11.55,386,"0.16156","0.22741","0.2274" +"GO:0044092","negative regulation of molecular functio...",44,10,9.24,868,"0.44783","0.22838","0.2284" +"GO:0009880","embryonic pattern specification",10,4,2.1,363,"0.13883","0.22871","0.2287" +"GO:0035282","segmentation",10,4,2.1,364,"0.13883","0.22871","0.2287" +"GO:0019221","cytokine-mediated signaling pathway",7,2,1.47,881,"0.45086","0.22891","0.2289" +"GO:0009064","glutamine family amino acid metabolic pr...",9,3,1.89,650,"0.28848","0.22894","0.2289" +"GO:0009566","fertilization",9,3,1.89,651,"0.28848","0.22894","0.2289" +"GO:0060429","epithelium development",59,18,12.39,119,"0.05377","0.22897","0.2290" +"GO:0044248","cellular catabolic process",180,46,37.81,164,"0.07477","0.02535","0.2292" +"GO:0009266","response to temperature stimulus",34,12,7.14,96,"0.03791","0.22938","0.2294" +"GO:0050778","positive regulation of immune response",21,8,4.41,123,"0.05496","0.22971","0.2297" +"GO:0019068","virion assembly",6,1,1.26,1705,"0.75735","0.23000","0.2300" +"GO:0016570","histone modification",48,11,10.08,846,"0.42776","0.23003","0.2300" +"GO:0044770","cell cycle phase transition",33,10,6.93,357,"0.13578","0.23055","0.2305" +"GO:0044843","cell cycle G1/S phase transition",12,3,2.52,923,"0.47717","0.23064","0.2306" +"GO:0072525","pyridine-containing compound biosyntheti...",13,5,2.73,335,"0.11682","0.23071","0.2307" +"GO:0031647","regulation of protein stability",20,8,4.2,112,"0.04137","0.23229","0.2323" +"GO:1901564","organonitrogen compound metabolic proces...",943,195,198.07,1460,"0.63710","0.11162","0.2323" +"GO:0006508","proteolysis",205,51,43.06,183,"0.09387","0.02796","0.2331" +"GO:0060968","regulation of gene silencing",5,0,1.05,2293,"1.00000","0.23365","0.2337" +"GO:0099003","vesicle-mediated transport in synapse",11,3,2.31,824,"0.41598","0.23374","0.2337" +"GO:0097190","apoptotic signaling pathway",23,5,4.83,1196,"0.54781","0.23464","0.2346" +"GO:0036503","ERAD pathway",16,4,3.36,856,"0.44210","0.23474","0.2347" +"GO:0007050","cell cycle arrest",10,4,2.1,365,"0.13883","0.23548","0.2355" +"GO:0072527","pyrimidine-containing compound metabolic...",11,3,2.31,825,"0.41598","0.23758","0.2376" +"GO:0030010","establishment of cell polarity",5,2,1.05,597,"0.28334","0.23829","0.2383" +"GO:1904029","regulation of cyclin-dependent protein k...",12,5,2.52,176,"0.08619","0.23832","0.2383" +"GO:0044839","cell cycle G2/M phase transition",13,5,2.73,336,"0.11682","0.23875","0.2388" +"GO:0051188","cofactor biosynthetic process",46,13,9.66,374,"0.15017","0.23894","0.2389" +"GO:0006270","DNA replication initiation",6,0,1.26,2294,"1.00000","0.24013","0.2401" +"GO:0009127","purine nucleoside monophosphate biosynth...",28,5,5.88,1665,"0.73094","0.24035","0.2403" +"GO:0009168","purine ribonucleoside monophosphate bios...",28,5,5.88,1666,"0.73094","0.24035","0.2403" +"GO:0018205","peptidyl-lysine modification",29,7,6.09,812,"0.40932","0.24168","0.2417" +"GO:0051131","chaperone-mediated protein complex assem...",4,0,0.84,2295,"1.00000","0.24261","0.2426" +"GO:0051223","regulation of protein transport",20,7,4.2,204,"0.10638","0.24297","0.2430" +"GO:0009953","dorsal/ventral pattern formation",10,4,2.1,366,"0.13883","0.24353","0.2435" +"GO:0010466","negative regulation of peptidase activit...",10,3,2.1,714,"0.35262","0.24372","0.2437" +"GO:0006900","vesicle budding from membrane",8,2,1.68,1142,"0.52603","0.24490","0.2449" +"GO:0048194","Golgi vesicle budding",8,2,1.68,1143,"0.52603","0.24490","0.2449" +"GO:0009056","catabolic process",202,52,42.43,121,"0.05400","0.01731","0.2460" +"GO:0080135","regulation of cellular response to stres...",44,8,9.24,1672,"0.73512","0.24691","0.2469" +"GO:0008277","regulation of G protein-coupled receptor...",3,1,0.63,975,"0.50718","0.24757","0.2476" +"GO:0048701","embryonic cranial skeleton morphogenesis",3,1,0.63,976,"0.50718","0.24757","0.2476" +"GO:0048704","embryonic skeletal system morphogenesis",3,1,0.63,977,"0.50718","0.24757","0.2476" +"GO:1904888","cranial skeletal system development",3,1,0.63,978,"0.50718","0.24757","0.2476" +"GO:0042733","embryonic digit morphogenesis",3,0,0.63,2296,"1.00000","0.24757","0.2476" +"GO:0030162","regulation of proteolysis",37,10,7.77,556,"0.23524","0.24878","0.2488" +"GO:0010563","negative regulation of phosphorus metabo...",31,7,6.51,938,"0.48491","0.24975","0.2497" +"GO:0045936","negative regulation of phosphate metabol...",31,7,6.51,939,"0.48491","0.24975","0.2497" +"GO:0031396","regulation of protein ubiquitination",17,4,3.57,943,"0.49311","0.25000","0.2500" +"GO:0048729","tissue morphogenesis",37,12,7.77,158,"0.06975","0.25122","0.2512" +"GO:0010286","heat acclimation",4,2,0.84,452,"0.19630","0.25130","0.2513" +"GO:0010968","regulation of microtubule nucleation",4,2,0.84,453,"0.19630","0.25130","0.2513" +"GO:0031112","positive regulation of microtubule polym...",4,2,0.84,454,"0.19630","0.25130","0.2513" +"GO:0031113","regulation of microtubule polymerization",4,2,0.84,455,"0.19630","0.25130","0.2513" +"GO:0031116","positive regulation of microtubule polym...",4,2,0.84,456,"0.19630","0.25130","0.2513" +"GO:0033209","tumor necrosis factor-mediated signaling...",4,2,0.84,457,"0.19630","0.25130","0.2513" +"GO:0090063","positive regulation of microtubule nucle...",4,2,0.84,458,"0.19630","0.25130","0.2513" +"GO:0090169","regulation of spindle assembly",4,2,0.84,459,"0.19630","0.25130","0.2513" +"GO:1901673","regulation of mitotic spindle assembly",4,2,0.84,460,"0.19630","0.25130","0.2513" +"GO:0070201","regulation of establishment of protein l...",22,7,4.62,384,"0.16056","0.25308","0.2531" +"GO:1901700","response to oxygen-containing compound",67,15,14.07,854,"0.43754","0.25376","0.2538" +"GO:0006720","isoprenoid metabolic process",15,5,3.15,426,"0.19054","0.25520","0.2552" +"GO:0032386","regulation of intracellular transport",23,7,4.83,429,"0.19152","0.25580","0.2558" +"GO:0035966","response to topologically incorrect prot...",23,7,4.83,430,"0.19152","0.25580","0.2558" +"GO:0043543","protein acylation",20,4,4.2,1452,"0.63198","0.25612","0.2561" +"GO:0048609","multicellular organismal reproductive pr...",65,20,13.65,109,"0.03996","0.25717","0.2572" +"GO:0046488","phosphatidylinositol metabolic process",24,3,5.04,2054,"0.90720","0.25835","0.2583" +"GO:0065009","regulation of molecular function",121,28,25.41,675,"0.31157","0.25855","0.2585" +"GO:0044788","modulation by host of viral process",8,3,1.68,491,"0.22537","0.25889","0.2589" +"GO:0044794","positive regulation by host of viral pro...",8,3,1.68,492,"0.22537","0.25889","0.2589" +"GO:0044827","modulation by host of viral genome repli...",8,3,1.68,493,"0.22537","0.25889","0.2589" +"GO:0044829","positive regulation by host of viral gen...",8,3,1.68,494,"0.22537","0.25889","0.2589" +"GO:0072321","chaperone-mediated protein transport",8,3,1.68,495,"0.22537","0.25889","0.2589" +"GO:2001024","negative regulation of response to drug",8,3,1.68,496,"0.22537","0.25889","0.2589" +"GO:0051222","positive regulation of protein transport",12,5,2.52,177,"0.08619","0.25986","0.2599" +"GO:1903829","positive regulation of cellular protein ...",12,5,2.52,178,"0.08619","0.25986","0.2599" +"GO:1904951","positive regulation of establishment of ...",12,5,2.52,179,"0.08619","0.25986","0.2599" +"GO:0009119","ribonucleoside metabolic process",10,1,2.1,2027,"0.90578","0.26076","0.2608" +"GO:1903900","regulation of viral life cycle",13,4,2.73,626,"0.28377","0.26174","0.2617" +"GO:0007220","Notch receptor processing",3,1,0.63,979,"0.50718","0.26213","0.2621" +"GO:1903842","response to arsenite ion",3,2,0.63,310,"0.11371","0.26213","0.2621" +"GO:0061077","chaperone-mediated protein folding",19,4,3.99,1218,"0.58845","0.26218","0.2622" +"GO:0010821","regulation of mitochondrion organization",12,4,2.52,546,"0.23240","0.26233","0.2623" +"GO:0000165","MAPK cascade",22,5,4.62,951,"0.50471","0.26370","0.2637" +"GO:0023014","signal transduction by protein phosphory...",22,5,4.62,952,"0.50471","0.26370","0.2637" +"GO:1903214","regulation of protein targeting to mitoc...",7,3,1.47,393,"0.16548","0.26438","0.2644" +"GO:1903533","regulation of protein targeting",7,3,1.47,394,"0.16548","0.26438","0.2644" +"GO:1903749","positive regulation of establishment of ...",7,3,1.47,395,"0.16548","0.26438","0.2644" +"GO:1903955","positive regulation of protein targeting...",7,3,1.47,396,"0.16548","0.26438","0.2644" +"GO:0007622","rhythmic behavior",4,1,0.84,1300,"0.61081","0.26559","0.2656" +"GO:0001906","cell killing",6,3,1.26,221,"0.11137","0.26594","0.2659" +"GO:0001909","leukocyte mediated cytotoxicity",6,3,1.26,222,"0.11137","0.26594","0.2659" +"GO:0001910","regulation of leukocyte mediated cytotox...",6,3,1.26,223,"0.11137","0.26594","0.2659" +"GO:0001912","positive regulation of leukocyte mediate...",6,3,1.26,224,"0.11137","0.26594","0.2659" +"GO:0001913","T cell mediated cytotoxicity",6,3,1.26,225,"0.11137","0.26594","0.2659" +"GO:0001914","regulation of T cell mediated cytotoxici...",6,3,1.26,226,"0.11137","0.26594","0.2659" +"GO:0001916","positive regulation of T cell mediated c...",6,3,1.26,227,"0.11137","0.26594","0.2659" +"GO:0002250","adaptive immune response",6,3,1.26,228,"0.11137","0.26594","0.2659" +"GO:0002449","lymphocyte mediated immunity",6,3,1.26,229,"0.11137","0.26594","0.2659" +"GO:0002456","T cell mediated immunity",6,3,1.26,230,"0.11137","0.26594","0.2659" +"GO:0002460","adaptive immune response based on somati...",6,3,1.26,231,"0.11137","0.26594","0.2659" +"GO:0002703","regulation of leukocyte mediated immunit...",6,3,1.26,232,"0.11137","0.26594","0.2659" +"GO:0002705","positive regulation of leukocyte mediate...",6,3,1.26,233,"0.11137","0.26594","0.2659" +"GO:0002706","regulation of lymphocyte mediated immuni...",6,3,1.26,234,"0.11137","0.26594","0.2659" +"GO:0002708","positive regulation of lymphocyte mediat...",6,3,1.26,235,"0.11137","0.26594","0.2659" +"GO:0002709","regulation of T cell mediated immunity",6,3,1.26,236,"0.11137","0.26594","0.2659" +"GO:0002711","positive regulation of T cell mediated i...",6,3,1.26,237,"0.11137","0.26594","0.2659" +"GO:0002819","regulation of adaptive immune response",6,3,1.26,238,"0.11137","0.26594","0.2659" +"GO:0002821","positive regulation of adaptive immune r...",6,3,1.26,239,"0.11137","0.26594","0.2659" +"GO:0002822","regulation of adaptive immune response b...",6,3,1.26,240,"0.11137","0.26594","0.2659" +"GO:0002824","positive regulation of adaptive immune r...",6,3,1.26,241,"0.11137","0.26594","0.2659" +"GO:0006622","protein targeting to lysosome",6,3,1.26,242,"0.11137","0.26594","0.2659" +"GO:0010045","response to nickel cation",6,3,1.26,243,"0.11137","0.26594","0.2659" +"GO:0016191","synaptic vesicle uncoating",6,3,1.26,244,"0.11137","0.26594","0.2659" +"GO:0031341","regulation of cell killing",6,3,1.26,245,"0.11137","0.26594","0.2659" +"GO:0031343","positive regulation of cell killing",6,3,1.26,246,"0.11137","0.26594","0.2659" +"GO:0033120","positive regulation of RNA splicing",6,3,1.26,247,"0.11137","0.26594","0.2659" +"GO:0044849","estrous cycle",6,3,1.26,248,"0.11137","0.26594","0.2659" +"GO:0048026","positive regulation of mRNA splicing, vi...",6,3,1.26,249,"0.11137","0.26594","0.2659" +"GO:0050685","positive regulation of mRNA processing",6,3,1.26,250,"0.11137","0.26594","0.2659" +"GO:0061083","regulation of protein refolding",6,3,1.26,251,"0.11137","0.26594","0.2659" +"GO:0061462","protein localization to lysosome",6,3,1.26,252,"0.11137","0.26594","0.2659" +"GO:0061684","chaperone-mediated autophagy",6,3,1.26,253,"0.11137","0.26594","0.2659" +"GO:0061738","late endosomal microautophagy",6,3,1.26,254,"0.11137","0.26594","0.2659" +"GO:0061740","protein targeting to lysosome involved i...",6,3,1.26,255,"0.11137","0.26594","0.2659" +"GO:0061741","chaperone-mediated protein transport inv...",6,3,1.26,256,"0.11137","0.26594","0.2659" +"GO:0071211","protein targeting to vacuole involved in...",6,3,1.26,257,"0.11137","0.26594","0.2659" +"GO:0072318","clathrin coat disassembly",6,3,1.26,258,"0.11137","0.26594","0.2659" +"GO:0072319","vesicle uncoating",6,3,1.26,259,"0.11137","0.26594","0.2659" +"GO:0097212","lysosomal membrane organization",6,3,1.26,260,"0.11137","0.26594","0.2659" +"GO:0097213","regulation of lysosomal membrane permeab...",6,3,1.26,261,"0.11137","0.26594","0.2659" +"GO:0097214","positive regulation of lysosomal membran...",6,3,1.26,262,"0.11137","0.26594","0.2659" +"GO:1903334","positive regulation of protein folding",6,3,1.26,263,"0.11137","0.26594","0.2659" +"GO:1904592","positive regulation of protein refolding",6,3,1.26,264,"0.11137","0.26594","0.2659" +"GO:1904764","chaperone-mediated autophagy translocati...",6,3,1.26,265,"0.11137","0.26594","0.2659" +"GO:1905710","positive regulation of membrane permeabi...",6,3,1.26,266,"0.11137","0.26594","0.2659" +"GO:1990832","slow axonal transport",6,3,1.26,267,"0.11137","0.26594","0.2659" +"GO:1990834","response to odorant",6,3,1.26,268,"0.11137","0.26594","0.2659" +"GO:0017038","protein import",24,8,5.04,210,"0.11108","0.26673","0.2667" +"GO:0032147","activation of protein kinase activity",4,1,0.84,1301,"0.61081","0.26816","0.2682" +"GO:0007552","metamorphosis",8,3,1.68,497,"0.22537","0.26823","0.2682" +"GO:0007560","imaginal disc morphogenesis",8,3,1.68,498,"0.22537","0.26823","0.2682" +"GO:0048563","post-embryonic animal organ morphogenesi...",8,3,1.68,499,"0.22537","0.26823","0.2682" +"GO:0048707","instar larval or pupal morphogenesis",8,3,1.68,500,"0.22537","0.26823","0.2682" +"GO:2001252","positive regulation of chromosome organi...",8,2,1.68,1144,"0.52603","0.26823","0.2682" +"GO:0006089","lactate metabolic process",3,1,0.63,980,"0.50718","0.26877","0.2688" +"GO:0006110","regulation of glycolytic process",3,1,0.63,981,"0.50718","0.26877","0.2688" +"GO:0030811","regulation of nucleotide catabolic proce...",3,1,0.63,982,"0.50718","0.26877","0.2688" +"GO:0035773","insulin secretion involved in cellular r...",3,1,0.63,983,"0.50718","0.26877","0.2688" +"GO:0043470","regulation of carbohydrate catabolic pro...",3,1,0.63,984,"0.50718","0.26877","0.2688" +"GO:2001169","regulation of ATP biosynthetic process",3,1,0.63,985,"0.50718","0.26877","0.2688" +"GO:0001947","heart looping",3,0,0.63,2297,"1.00000","0.26877","0.2688" +"GO:0003018","vascular process in circulatory system",3,0,0.63,2298,"1.00000","0.26877","0.2688" +"GO:0003143","embryonic heart tube morphogenesis",3,0,0.63,2299,"1.00000","0.26877","0.2688" +"GO:0003206","cardiac chamber morphogenesis",3,0,0.63,2300,"1.00000","0.26877","0.2688" +"GO:0003208","cardiac ventricle morphogenesis",3,0,0.63,2301,"1.00000","0.26877","0.2688" +"GO:0035296","regulation of tube diameter",3,0,0.63,2302,"1.00000","0.26877","0.2688" +"GO:0042310","vasoconstriction",3,0,0.63,2303,"1.00000","0.26877","0.2688" +"GO:0050880","regulation of blood vessel size",3,0,0.63,2304,"1.00000","0.26877","0.2688" +"GO:0061371","determination of heart left/right asymme...",3,0,0.63,2305,"1.00000","0.26877","0.2688" +"GO:0097746","regulation of blood vessel diameter",3,0,0.63,2306,"1.00000","0.26877","0.2688" +"GO:0097756","negative regulation of blood vessel diam...",3,0,0.63,2307,"1.00000","0.26877","0.2688" +"GO:1900037","regulation of cellular response to hypox...",3,0,0.63,2308,"1.00000","0.26877","0.2688" +"GO:1903523","negative regulation of blood circulation",3,0,0.63,2309,"1.00000","0.26877","0.2688" +"GO:0016074","snoRNA metabolic process",3,2,0.63,311,"0.11371","0.26988","0.2699" +"GO:0008272","sulfate transport",5,0,1.05,2310,"1.00000","0.27314","0.2731" +"GO:0009913","epidermal cell differentiation",4,1,0.84,1302,"0.61081","0.27349","0.2735" +"GO:0010015","root morphogenesis",4,1,0.84,1303,"0.61081","0.27349","0.2735" +"GO:0010053","root epidermal cell differentiation",4,1,0.84,1304,"0.61081","0.27349","0.2735" +"GO:0051788","response to misfolded protein",4,2,0.84,461,"0.19630","0.27349","0.2735" +"GO:0090558","plant epidermis development",4,1,0.84,1305,"0.61081","0.27349","0.2735" +"GO:0090627","plant epidermal cell differentiation",4,1,0.84,1306,"0.61081","0.27349","0.2735" +"GO:0071806","protein transmembrane transport",17,5,3.57,578,"0.27631","0.27370","0.2737" +"GO:0006505","GPI anchor metabolic process",9,1,1.89,1978,"0.88063","0.27430","0.2743" +"GO:0009247","glycolipid biosynthetic process",9,2,1.89,1242,"0.59390","0.27430","0.2743" +"GO:0046475","glycerophospholipid catabolic process",3,1,0.63,986,"0.50718","0.27438","0.2744" +"GO:0009615","response to virus",7,2,1.47,882,"0.45086","0.27463","0.2746" +"GO:0051704","multi-organism process",118,32,24.78,132,"0.06334","0.27617","0.2762" +"GO:0034614","cellular response to reactive oxygen spe...",12,4,2.52,547,"0.23240","0.27659","0.2766" +"GO:0006685","sphingomyelin catabolic process",3,1,0.63,987,"0.50718","0.27721","0.2772" +"GO:0051248","negative regulation of protein metabolic...",56,15,11.76,411,"0.18042","0.27827","0.2783" +"GO:0009845","seed germination",3,2,0.63,312,"0.11371","0.27835","0.2783" +"GO:0010029","regulation of seed germination",3,2,0.63,313,"0.11371","0.27835","0.2783" +"GO:0090351","seedling development",3,2,0.63,314,"0.11371","0.27835","0.2783" +"GO:1900140","regulation of seedling development",3,2,0.63,315,"0.11371","0.27835","0.2783" +"GO:1901136","carbohydrate derivative catabolic proces...",3,2,0.63,316,"0.11371","0.27949","0.2795" +"GO:0015980","energy derivation by oxidation of organi...",28,5,5.88,1667,"0.73094","0.27968","0.2797" +"GO:0002066","columnar/cuboidal epithelial cell develo...",15,6,3.15,163,"0.07435","0.27985","0.2798" +"GO:0021766","hippocampus development",3,2,0.63,317,"0.11371","0.28063","0.2806" +"GO:0033240","positive regulation of cellular amine me...",3,2,0.63,318,"0.11371","0.28063","0.2806" +"GO:0042755","eating behavior",3,2,0.63,319,"0.11371","0.28063","0.2806" +"GO:0043950","positive regulation of cAMP-mediated sig...",3,2,0.63,320,"0.11371","0.28063","0.2806" +"GO:0048240","sperm capacitation",3,2,0.63,321,"0.11371","0.28063","0.2806" +"GO:0051412","response to corticosterone",3,2,0.63,322,"0.11371","0.28063","0.2806" +"GO:0060408","regulation of acetylcholine metabolic pr...",3,2,0.63,323,"0.11371","0.28063","0.2806" +"GO:0060409","positive regulation of acetylcholine met...",3,2,0.63,324,"0.11371","0.28063","0.2806" +"GO:0021675","nerve development",4,0,0.84,2311,"1.00000","0.28120","0.2812" +"GO:0019953","sexual reproduction",60,18,12.6,129,"0.06240","0.28131","0.2813" +"GO:0031397","negative regulation of protein ubiquitin...",4,1,0.84,1307,"0.61081","0.28187","0.2819" +"GO:0043068","positive regulation of programmed cell d...",22,6,4.62,674,"0.30832","0.28225","0.2823" +"GO:0002182","cytoplasmic translational elongation",3,2,0.63,325,"0.11371","0.28292","0.2829" +"GO:0017182","peptidyl-diphthamide metabolic process",3,2,0.63,326,"0.11371","0.28292","0.2829" +"GO:0017183","peptidyl-diphthamide biosynthetic proces...",3,2,0.63,327,"0.11371","0.28292","0.2829" +"GO:0018202","peptidyl-histidine modification",3,2,0.63,328,"0.11371","0.28292","0.2829" +"GO:1900247","regulation of cytoplasmic translational ...",3,2,0.63,329,"0.11371","0.28292","0.2829" +"GO:2000765","regulation of cytoplasmic translation",3,2,0.63,330,"0.11371","0.28292","0.2829" +"GO:0043408","regulation of MAPK cascade",17,4,3.57,944,"0.49311","0.28306","0.2831" +"GO:0033674","positive regulation of kinase activity",10,2,2.1,1480,"0.65422","0.28323","0.2832" +"GO:0045860","positive regulation of protein kinase ac...",10,2,2.1,1481,"0.65422","0.28323","0.2832" +"GO:0016072","rRNA metabolic process",42,7,8.82,1882,"0.81025","0.28627","0.2863" +"GO:0045862","positive regulation of proteolysis",14,4,2.94,684,"0.33655","0.28638","0.2864" +"GO:0051247","positive regulation of protein metabolic...",56,10,11.76,1791,"0.76909","0.28642","0.2864" +"GO:0021700","developmental maturation",14,5,2.94,377,"0.15181","0.28764","0.2876" +"GO:0048469","cell maturation",14,5,2.94,378,"0.15181","0.28764","0.2876" +"GO:2001235","positive regulation of apoptotic signali...",8,3,1.68,501,"0.22537","0.28764","0.2876" +"GO:0009908","flower development",4,2,0.84,462,"0.19630","0.28820","0.2882" +"GO:0010565","regulation of cellular ketone metabolic ...",4,2,0.84,463,"0.19630","0.28820","0.2882" +"GO:0072331","signal transduction by p53 class mediato...",11,4,2.31,415,"0.18366","0.29022","0.2902" +"GO:0036474","cell death in response to hydrogen perox...",8,3,1.68,502,"0.22537","0.29121","0.2912" +"GO:1901031","regulation of response to reactive oxyge...",8,3,1.68,503,"0.22537","0.29121","0.2912" +"GO:1901879","regulation of protein depolymerization",8,2,1.68,1145,"0.52603","0.29121","0.2912" +"GO:1901880","negative regulation of protein depolymer...",8,2,1.68,1146,"0.52603","0.29121","0.2912" +"GO:1903205","regulation of hydrogen peroxide-induced ...",8,3,1.68,504,"0.22537","0.29121","0.2912" +"GO:2001038","regulation of cellular response to drug",8,3,1.68,505,"0.22537","0.29121","0.2912" +"GO:0009081","branched-chain amino acid metabolic proc...",5,2,1.05,598,"0.28334","0.29199","0.2920" +"GO:0016236","macroautophagy",19,3,3.99,1816,"0.79531","0.29227","0.2923" +"GO:0048232","male gamete generation",32,10,6.72,333,"0.11514","0.29311","0.2931" +"GO:0006536","glutamate metabolic process",3,1,0.63,988,"0.50718","0.29339","0.2934" +"GO:0042219","cellular modified amino acid catabolic p...",3,1,0.63,989,"0.50718","0.29339","0.2934" +"GO:0022622","root system development",6,1,1.26,1706,"0.75735","0.29424","0.2942" +"GO:0048364","root development",6,1,1.26,1707,"0.75735","0.29424","0.2942" +"GO:0006611","protein export from nucleus",13,4,2.73,627,"0.28377","0.29450","0.2945" +"GO:0007215","glutamate receptor signaling pathway",4,1,0.84,1308,"0.61081","0.29463","0.2946" +"GO:0045786","negative regulation of cell cycle",32,9,6.72,483,"0.21382","0.29656","0.2966" +"GO:0032436","positive regulation of proteasomal ubiqu...",4,1,0.84,1309,"0.61081","0.29667","0.2967" +"GO:0043123","positive regulation of I-kappaB kinase/N...",4,2,0.84,464,"0.19630","0.29667","0.2967" +"GO:2000060","positive regulation of ubiquitin-depende...",4,1,0.84,1310,"0.61081","0.29667","0.2967" +"GO:0031123","RNA 3'-end processing",12,5,2.52,180,"0.08619","0.29721","0.2972" +"GO:0006473","protein acetylation",15,3,3.15,1461,"0.63930","0.29733","0.2973" +"GO:0006475","internal protein amino acid acetylation",15,3,3.15,1462,"0.63930","0.29733","0.2973" +"GO:0016573","histone acetylation",15,3,3.15,1463,"0.63930","0.29733","0.2973" +"GO:0018393","internal peptidyl-lysine acetylation",15,3,3.15,1464,"0.63930","0.29733","0.2973" +"GO:0018394","peptidyl-lysine acetylation",15,3,3.15,1465,"0.63930","0.29733","0.2973" +"GO:1905897","regulation of response to endoplasmic re...",8,1,1.68,1918,"0.84877","0.29795","0.2980" +"GO:0042278","purine nucleoside metabolic process",9,2,1.89,1243,"0.59390","0.29840","0.2984" +"GO:1902600","proton transmembrane transport",26,8,5.46,385,"0.16096","0.03551","0.2986" +"GO:0032527","protein exit from endoplasmic reticulum",6,2,1.26,751,"0.36933","0.30011","0.3001" +"GO:1901799","negative regulation of proteasomal prote...",6,2,1.26,752,"0.36933","0.30011","0.3001" +"GO:1903051","negative regulation of proteolysis invol...",6,2,1.26,753,"0.36933","0.30011","0.3001" +"GO:1903363","negative regulation of cellular protein ...",6,2,1.26,754,"0.36933","0.30011","0.3001" +"GO:1903573","negative regulation of response to endop...",6,1,1.26,1708,"0.75735","0.30011","0.3001" +"GO:1904292","regulation of ERAD pathway",6,1,1.26,1709,"0.75735","0.30011","0.3001" +"GO:0042273","ribosomal large subunit biogenesis",15,2,3.15,1952,"0.85552","0.30079","0.3008" +"GO:0009581","detection of external stimulus",10,4,2.1,367,"0.13883","0.30200","0.3020" +"GO:0009582","detection of abiotic stimulus",10,4,2.1,368,"0.13883","0.30200","0.3020" +"GO:0015985","energy coupled proton transport, down el...",13,0,2.73,2312,"1.00000","0.30337","0.3034" +"GO:0015986","ATP synthesis coupled proton transport",13,0,2.73,2313,"1.00000","0.30337","0.3034" +"GO:0007020","microtubule nucleation",8,2,1.68,1147,"0.52603","0.30356","0.3036" +"GO:1903047","mitotic cell cycle process",58,16,12.18,372,"0.14051","0.30421","0.3042" +"GO:1902115","regulation of organelle assembly",15,3,3.15,1466,"0.63930","0.30455","0.3045" +"GO:1901698","response to nitrogen compound",52,9,10.92,1815,"0.79462","0.30505","0.3051" +"GO:0042326","negative regulation of phosphorylation",27,5,5.67,1623,"0.69914","0.30508","0.3051" +"GO:0045926","negative regulation of growth",15,2,3.15,1953,"0.85552","0.30509","0.3051" +"GO:0006626","protein targeting to mitochondrion",18,6,3.78,383,"0.15801","0.30553","0.3055" +"GO:0009226","nucleotide-sugar biosynthetic process",4,1,0.84,1311,"0.61081","0.30790","0.3079" +"GO:0006220","pyrimidine nucleotide metabolic process",9,2,1.89,1244,"0.59390","0.30880","0.3088" +"GO:0007186","G protein-coupled receptor signaling pat...",39,8,8.19,1265,"0.59400","0.30952","0.3095" +"GO:0009888","tissue development",105,28,22.05,184,"0.09398","0.31054","0.3105" +"GO:0019079","viral genome replication",12,3,2.52,924,"0.47717","0.31104","0.3110" +"GO:0043549","regulation of kinase activity",30,8,6.3,636,"0.28437","0.31151","0.3115" +"GO:0035220","wing disc development",6,3,1.26,269,"0.11137","0.31161","0.3116" +"GO:1901264","carbohydrate derivative transport",6,3,1.26,270,"0.11137","0.31161","0.3116" +"GO:0019725","cellular homeostasis",51,14,10.71,408,"0.16580","0.31210","0.3121" +"GO:0042594","response to starvation",23,5,4.83,1197,"0.54781","0.31262","0.3126" +"GO:1905268","negative regulation of chromatin organiz...",4,0,0.84,2314,"1.00000","0.31264","0.3126" +"GO:0006165","nucleoside diphosphate phosphorylation",9,2,1.89,1245,"0.59390","0.31302","0.3130" +"GO:0008645","hexose transmembrane transport",3,1,0.63,990,"0.50718","0.31317","0.3132" +"GO:0015749","monosaccharide transmembrane transport",3,1,0.63,991,"0.50718","0.31317","0.3132" +"GO:0034219","carbohydrate transmembrane transport",3,1,0.63,992,"0.50718","0.31317","0.3132" +"GO:0031102","neuron projection regeneration",3,0,0.63,2315,"1.00000","0.31317","0.3132" +"GO:0070570","regulation of neuron projection regenera...",3,0,0.63,2316,"1.00000","0.31317","0.3132" +"GO:0010564","regulation of cell cycle process",43,13,9.03,193,"0.09856","0.31375","0.3138" +"GO:0002244","hematopoietic progenitor cell differenti...",6,2,1.26,755,"0.36933","0.31550","0.3155" +"GO:0031398","positive regulation of protein ubiquitin...",11,3,2.31,826,"0.41598","0.31708","0.3171" +"GO:1903322","positive regulation of protein modificat...",11,3,2.31,827,"0.41598","0.31708","0.3171" +"GO:0016180","snRNA processing",9,4,1.89,200,"0.09914","0.31727","0.3173" +"GO:0019722","calcium-mediated signaling",4,0,0.84,2317,"1.00000","0.31759","0.3176" +"GO:0042078","germ-line stem cell division",4,2,0.84,465,"0.19630","0.31795","0.3179" +"GO:0098728","germline stem cell asymmetric division",4,2,0.84,466,"0.19630","0.31795","0.3179" +"GO:0016042","lipid catabolic process",25,7,5.25,565,"0.25956","0.31860","0.3186" +"GO:0006888","ER to Golgi vesicle-mediated transport",13,2,2.73,1802,"0.79279","0.31878","0.3188" +"GO:0007283","spermatogenesis",28,9,5.88,332,"0.11379","0.31890","0.3189" +"GO:0072348","sulfur compound transport",6,0,1.26,2318,"1.00000","0.31898","0.3190" +"GO:0010941","regulation of cell death",69,16,14.49,783,"0.37212","0.31910","0.3191" +"GO:0009074","aromatic amino acid family catabolic pro...",6,3,1.26,271,"0.11137","0.31942","0.3194" +"GO:0043628","ncRNA 3'-end processing",6,3,1.26,272,"0.11137","0.32030","0.3203" +"GO:0051972","regulation of telomerase activity",5,0,1.05,2319,"1.00000","0.32191","0.3219" +"GO:1901068","guanosine-containing compound metabolic ...",4,0,0.84,2320,"1.00000","0.32205","0.3220" +"GO:0006979","response to oxidative stress",36,7,7.56,1496,"0.65680","0.32274","0.3227" +"GO:0071166","ribonucleoprotein complex localization",12,3,2.52,925,"0.47717","0.32367","0.3237" +"GO:0071426","ribonucleoprotein complex export from nu...",12,3,2.52,926,"0.47717","0.32367","0.3237" +"GO:0017015","regulation of transforming growth factor...",4,1,0.84,1312,"0.61081","0.32402","0.3240" +"GO:1903844","regulation of cellular response to trans...",4,1,0.84,1313,"0.61081","0.32402","0.3240" +"GO:0008219","cell death",85,18,17.85,1166,"0.52830","0.32436","0.3244" +"GO:0016569","covalent chromatin modification",50,11,10.5,940,"0.48709","0.32437","0.3244" +"GO:0034250","positive regulation of cellular amide me...",4,0,0.84,2321,"1.00000","0.32546","0.3255" +"GO:0045727","positive regulation of translation",4,0,0.84,2322,"1.00000","0.32546","0.3255" +"GO:0000956","nuclear-transcribed mRNA catabolic proce...",14,1,2.94,2143,"0.96348","0.32547","0.3255" +"GO:0006091","generation of precursor metabolites and ...",39,6,8.19,1963,"0.85852","0.32655","0.3265" +"GO:0043405","regulation of MAP kinase activity",5,1,1.05,1531,"0.69268","0.32690","0.3269" +"GO:1901575","organic substance catabolic process",175,48,36.76,59,"0.02189","0.01270","0.3272" +"GO:0006915","apoptotic process",72,17,15.12,682,"0.33507","0.32734","0.3273" +"GO:0071900","regulation of protein serine/threonine k...",17,6,3.57,346,"0.12666","0.32929","0.3293" +"GO:0090559","regulation of membrane permeability",8,3,1.68,506,"0.22537","0.32966","0.3297" +"GO:0007031","peroxisome organization",9,3,1.89,652,"0.28848","0.33131","0.3313" +"GO:0019395","fatty acid oxidation",8,3,1.68,507,"0.22537","0.33262","0.3326" +"GO:0034440","lipid oxidation",8,3,1.68,508,"0.22537","0.33262","0.3326" +"GO:0006364","rRNA processing",40,7,8.4,1790,"0.76612","0.33335","0.3333" +"GO:0090263","positive regulation of canonical Wnt sig...",4,2,0.84,467,"0.19630","0.33436","0.3344" +"GO:0006396","RNA processing",183,37,38.44,1459,"0.63691","0.33463","0.3346" +"GO:0043065","positive regulation of apoptotic process",21,6,4.41,567,"0.26802","0.33574","0.3357" +"GO:0071482","cellular response to light stimulus",6,2,1.26,756,"0.36933","0.33581","0.3358" +"GO:0007368","determination of left/right symmetry",6,1,1.26,1710,"0.75735","0.33626","0.3363" +"GO:0009799","specification of symmetry",6,1,1.26,1711,"0.75735","0.33626","0.3363" +"GO:0009855","determination of bilateral symmetry",6,1,1.26,1712,"0.75735","0.33626","0.3363" +"GO:0046916","cellular transition metal ion homeostasi...",6,1,1.26,1713,"0.75735","0.33626","0.3363" +"GO:0030326","embryonic limb morphogenesis",4,0,0.84,2323,"1.00000","0.33637","0.3364" +"GO:0035113","embryonic appendage morphogenesis",4,0,0.84,2324,"1.00000","0.33637","0.3364" +"GO:0033500","carbohydrate homeostasis",9,3,1.89,653,"0.28848","0.33679","0.3368" +"GO:0006446","regulation of translational initiation",4,1,0.84,1314,"0.61081","0.33857","0.3386" +"GO:0052547","regulation of peptidase activity",15,3,3.15,1467,"0.63930","0.33898","0.3390" +"GO:0030148","sphingolipid biosynthetic process",4,1,0.84,1315,"0.61081","0.33950","0.3395" +"GO:1901570","fatty acid derivative biosynthetic proce...",4,1,0.84,1316,"0.61081","0.33950","0.3395" +"GO:0051726","regulation of cell cycle",80,22,16.8,190,"0.09786","0.33991","0.3399" +"GO:0016073","snRNA metabolic process",13,4,2.73,628,"0.28377","0.34065","0.3407" +"GO:0036265","RNA (guanine-N7)-methylation",3,1,0.63,993,"0.50718","0.34068","0.3407" +"GO:0045667","regulation of osteoblast differentiation",3,0,0.63,2325,"1.00000","0.34132","0.3413" +"GO:0045668","negative regulation of osteoblast differ...",3,0,0.63,2326,"1.00000","0.34132","0.3413" +"GO:0022402","cell cycle process",98,26,20.58,208,"0.10903","0.34383","0.3438" +"GO:0032880","regulation of protein localization",33,9,6.93,560,"0.24309","0.34418","0.3442" +"GO:0000082","G1/S transition of mitotic cell cycle",10,3,2.1,715,"0.35262","0.34576","0.3458" +"GO:0000280","nuclear division",32,10,6.72,334,"0.11514","0.34933","0.3493" +"GO:0040008","regulation of growth",38,6,7.98,1910,"0.84050","0.34943","0.3494" +"GO:0090287","regulation of cellular response to growt...",12,2,2.52,1684,"0.75316","0.35107","0.3511" +"GO:0045859","regulation of protein kinase activity",28,8,5.88,486,"0.21940","0.35198","0.3520" +"GO:0072528","pyrimidine-containing compound biosynthe...",8,2,1.68,1148,"0.52603","0.35201","0.3520" +"GO:0072520","seminiferous tubule development",3,1,0.63,994,"0.50718","0.35230","0.3523" +"GO:0002089","lens morphogenesis in camera-type eye",3,0,0.63,2327,"1.00000","0.35230","0.3523" +"GO:0001894","tissue homeostasis",17,5,3.57,579,"0.27631","0.35319","0.3532" +"GO:0051347","positive regulation of transferase activ...",15,2,3.15,1954,"0.85552","0.35373","0.3537" +"GO:0010923","negative regulation of phosphatase activ...",4,1,0.84,1317,"0.61081","0.35441","0.3544" +"GO:0035305","negative regulation of dephosphorylation",4,1,0.84,1318,"0.61081","0.35441","0.3544" +"GO:0043666","regulation of phosphoprotein phosphatase...",4,1,0.84,1319,"0.61081","0.35441","0.3544" +"GO:0010646","regulation of cell communication",142,32,29.83,741,"0.35563","0.35443","0.3544" +"GO:0001501","skeletal system development",15,3,3.15,1468,"0.63930","0.35461","0.3546" +"GO:0031098","stress-activated protein kinase signalin...",9,1,1.89,1979,"0.88063","0.35468","0.3547" +"GO:0051403","stress-activated MAPK cascade",9,1,1.89,1980,"0.88063","0.35468","0.3547" +"GO:0010594","regulation of endothelial cell migration",3,0,0.63,2328,"1.00000","0.35491","0.3549" +"GO:0010595","positive regulation of endothelial cell ...",3,0,0.63,2329,"1.00000","0.35491","0.3549" +"GO:0043542","endothelial cell migration",3,0,0.63,2330,"1.00000","0.35491","0.3549" +"GO:1902175","regulation of oxidative stress-induced i...",3,0,0.63,2331,"1.00000","0.35491","0.3549" +"GO:1902176","negative regulation of oxidative stress-...",3,0,0.63,2332,"1.00000","0.35491","0.3549" +"GO:0002026","regulation of the force of heart contrac...",6,3,1.26,273,"0.11137","0.35542","0.3554" +"GO:1901606","alpha-amino acid catabolic process",11,4,2.31,416,"0.18366","0.35651","0.3565" +"GO:0045069","regulation of viral genome replication",11,3,2.31,828,"0.41598","0.35765","0.3577" +"GO:0060042","retina morphogenesis in camera-type eye",12,4,2.52,548,"0.23240","0.35827","0.3583" +"GO:1903320","regulation of protein modification by sm...",18,4,3.78,1187,"0.54205","0.35975","0.3597" +"GO:0010951","negative regulation of endopeptidase act...",9,2,1.89,1246,"0.59390","0.36037","0.3604" +"GO:2000117","negative regulation of cysteine-type end...",9,2,1.89,1247,"0.59390","0.36037","0.3604" +"GO:0010638","positive regulation of organelle organiz...",40,11,8.4,479,"0.20240","0.36065","0.3606" +"GO:0030513","positive regulation of BMP signaling pat...",3,0,0.63,2333,"1.00000","0.36081","0.3608" +"GO:0006825","copper ion transport",4,1,0.84,1320,"0.61081","0.36124","0.3612" +"GO:0007519","skeletal muscle tissue development",12,4,2.52,549,"0.23240","0.36124","0.3612" +"GO:0060538","skeletal muscle organ development",12,4,2.52,550,"0.23240","0.36124","0.3612" +"GO:0035967","cellular response to topologically incor...",15,4,3.15,791,"0.38965","0.36404","0.3640" +"GO:0009267","cellular response to starvation",14,1,2.94,2144,"0.96348","0.36447","0.3645" +"GO:0031668","cellular response to extracellular stimu...",14,1,2.94,2145,"0.96348","0.36447","0.3645" +"GO:0031669","cellular response to nutrient levels",14,1,2.94,2146,"0.96348","0.36447","0.3645" +"GO:0048639","positive regulation of developmental gro...",6,0,1.26,2334,"1.00000","0.36614","0.3661" +"GO:0048583","regulation of response to stimulus",174,40,36.55,584,"0.28131","0.36821","0.3682" +"GO:0010390","histone monoubiquitination",4,2,0.84,468,"0.19630","0.36986","0.3699" +"GO:0030534","adult behavior",3,0,0.63,2335,"1.00000","0.37010","0.3701" +"GO:0071901","negative regulation of protein serine/th...",3,0,0.63,2336,"1.00000","0.37010","0.3701" +"GO:0071496","cellular response to external stimulus",18,2,3.78,2065,"0.91767","0.37033","0.3703" +"GO:0003002","regionalization",25,8,5.25,353,"0.13485","0.37140","0.3714" +"GO:0001933","negative regulation of protein phosphory...",23,5,4.83,1198,"0.54781","0.37236","0.3724" +"GO:1901796","regulation of signal transduction by p53...",8,3,1.68,509,"0.22537","0.37265","0.3727" +"GO:0000154","rRNA modification",11,3,2.31,829,"0.41598","0.37303","0.3730" +"GO:0032874","positive regulation of stress-activated ...",4,1,0.84,1321,"0.61081","0.37333","0.3733" +"GO:0070304","positive regulation of stress-activated ...",4,1,0.84,1322,"0.61081","0.37333","0.3733" +"GO:1901292","nucleoside phosphate catabolic process",13,5,2.73,337,"0.11682","0.37443","0.3744" +"GO:0060711","labyrinthine layer development",6,1,1.26,1714,"0.75735","0.37512","0.3751" +"GO:0033554","cellular response to stress",143,27,30.04,1793,"0.76960","0.37524","0.3752" +"GO:0015740","C4-dicarboxylate transport",5,0,1.05,2337,"1.00000","0.37537","0.3754" +"GO:0006790","sulfur compound metabolic process",35,11,7.35,189,"0.09785","0.37636","0.3764" +"GO:0006631","fatty acid metabolic process",30,8,6.3,637,"0.28437","0.37637","0.3764" +"GO:0009416","response to light stimulus",16,3,3.36,1515,"0.68481","0.37675","0.3767" +"GO:0031505","fungal-type cell wall organization",3,1,0.63,995,"0.50718","0.37681","0.3768" +"GO:0043968","histone H2A acetylation",3,1,0.63,996,"0.50718","0.37681","0.3768" +"GO:0045229","external encapsulating structure organiz...",3,1,0.63,997,"0.50718","0.37681","0.3768" +"GO:0071555","cell wall organization",3,1,0.63,998,"0.50718","0.37681","0.3768" +"GO:0051168","nuclear export",17,5,3.57,580,"0.27631","0.37721","0.3772" +"GO:0002252","immune effector process",20,7,4.2,205,"0.10638","0.37759","0.3776" +"GO:0019933","cAMP-mediated signaling",7,2,1.47,883,"0.45086","0.37820","0.3782" +"GO:0019935","cyclic-nucleotide-mediated signaling",7,2,1.47,884,"0.45086","0.37820","0.3782" +"GO:0006414","translational elongation",15,5,3.15,427,"0.19054","0.38055","0.3805" +"GO:0090630","activation of GTPase activity",4,2,0.84,469,"0.19630","0.38073","0.3807" +"GO:0032270","positive regulation of cellular protein ...",53,10,11.13,1626,"0.70289","0.38118","0.3812" +"GO:0051099","positive regulation of binding",6,1,1.26,1715,"0.75735","0.38133","0.3813" +"GO:0012501","programmed cell death",77,18,16.17,701,"0.34512","0.38165","0.3817" +"GO:0008152","metabolic process",1902,405,399.5,669,"0.30399","0.16455","0.3818" +"GO:0070646","protein modification by small protein re...",21,6,4.41,568,"0.26802","0.38284","0.3828" +"GO:0006415","translational termination",10,1,2.1,2028,"0.90578","0.38316","0.3832" +"GO:0006448","regulation of translational elongation",5,2,1.05,599,"0.28334","0.38322","0.3832" +"GO:0032008","positive regulation of TOR signaling",7,2,1.47,885,"0.45086","0.38442","0.3844" +"GO:0045216","cell-cell junction organization",6,2,1.26,757,"0.36933","0.38469","0.3847" +"GO:0050803","regulation of synapse structure or activ...",8,1,1.68,1919,"0.84877","0.38535","0.3854" +"GO:1902626","assembly of large subunit precursor of p...",3,1,0.63,999,"0.50718","0.38629","0.3863" +"GO:0010803","regulation of tumor necrosis factor-medi...",3,1,0.63,1000,"0.50718","0.38698","0.3870" +"GO:0032069","regulation of nuclease activity",3,1,0.63,1001,"0.50718","0.38698","0.3870" +"GO:0032075","positive regulation of nuclease activity",3,1,0.63,1002,"0.50718","0.38698","0.3870" +"GO:0032637","interleukin-8 production",3,1,0.63,1003,"0.50718","0.38698","0.3870" +"GO:0032677","regulation of interleukin-8 production",3,1,0.63,1004,"0.50718","0.38698","0.3870" +"GO:0032757","positive regulation of interleukin-8 pro...",3,1,0.63,1005,"0.50718","0.38698","0.3870" +"GO:0046718","viral entry into host cell",3,1,0.63,1006,"0.50718","0.38698","0.3870" +"GO:0060699","regulation of endoribonuclease activity",3,1,0.63,1007,"0.50718","0.38698","0.3870" +"GO:0060700","regulation of ribonuclease activity",3,1,0.63,1008,"0.50718","0.38698","0.3870" +"GO:0070370","cellular heat acclimation",3,1,0.63,1009,"0.50718","0.38698","0.3870" +"GO:1902380","positive regulation of endoribonuclease ...",3,1,0.63,1010,"0.50718","0.38698","0.3870" +"GO:1903265","positive regulation of tumor necrosis fa...",3,1,0.63,1011,"0.50718","0.38698","0.3870" +"GO:2001237","negative regulation of extrinsic apoptot...",3,1,0.63,1012,"0.50718","0.38698","0.3870" +"GO:0002753","cytoplasmic pattern recognition receptor...",3,0,0.63,2338,"1.00000","0.38698","0.3870" +"GO:0035872","nucleotide-binding domain, leucine rich ...",3,0,0.63,2339,"1.00000","0.38698","0.3870" +"GO:0070423","nucleotide-binding oligomerization domai...",3,0,0.63,2340,"1.00000","0.38698","0.3870" +"GO:0090175","regulation of establishment of planar po...",4,2,0.84,470,"0.19630","0.38701","0.3870" +"GO:0070585","protein localization to mitochondrion",19,6,3.99,434,"0.19234","0.38708","0.3871" +"GO:0072655","establishment of protein localization to...",19,6,3.99,435,"0.19234","0.38708","0.3871" +"GO:0031058","positive regulation of histone modificat...",4,1,0.84,1323,"0.61081","0.38839","0.3884" +"GO:0031529","ruffle organization",4,1,0.84,1324,"0.61081","0.38839","0.3884" +"GO:1905269","positive regulation of chromatin organiz...",4,1,0.84,1325,"0.61081","0.38839","0.3884" +"GO:0006417","regulation of translation",19,5,3.99,743,"0.36806","0.38871","0.3887" +"GO:0023061","signal release",13,5,2.73,338,"0.11682","0.38910","0.3891" +"GO:0016567","protein ubiquitination",62,13,13.02,1204,"0.55402","0.38927","0.3893" +"GO:0007032","endosome organization",4,2,0.84,471,"0.19630","0.38937","0.3894" +"GO:0007030","Golgi organization",10,2,2.1,1482,"0.65422","0.38939","0.3894" +"GO:0007049","cell cycle",131,33,27.52,358,"0.13718","0.38986","0.3899" +"GO:0033866","nucleoside bisphosphate biosynthetic pro...",8,3,1.68,510,"0.22537","0.39009","0.3901" +"GO:0034030","ribonucleoside bisphosphate biosynthetic...",8,3,1.68,511,"0.22537","0.39009","0.3901" +"GO:0034033","purine nucleoside bisphosphate biosynthe...",8,3,1.68,512,"0.22537","0.39009","0.3901" +"GO:0014070","response to organic cyclic compound",47,8,9.87,1826,"0.80171","0.39024","0.3902" +"GO:0046128","purine ribonucleoside metabolic process",7,1,1.47,1841,"0.80843","0.39068","0.3907" +"GO:0009163","nucleoside biosynthetic process",7,0,1.47,2341,"1.00000","0.39068","0.3907" +"GO:0042455","ribonucleoside biosynthetic process",7,0,1.47,2342,"1.00000","0.39068","0.3907" +"GO:1901659","glycosyl compound biosynthetic process",7,0,1.47,2343,"1.00000","0.39068","0.3907" +"GO:0048585","negative regulation of response to stimu...",66,18,13.86,352,"0.13391","0.39102","0.3910" +"GO:0043281","regulation of cysteine-type endopeptidas...",13,2,2.73,1803,"0.79279","0.39185","0.3919" +"GO:0052548","regulation of endopeptidase activity",13,2,2.73,1804,"0.79279","0.39185","0.3919" +"GO:2000116","regulation of cysteine-type endopeptidas...",13,2,2.73,1805,"0.79279","0.39185","0.3919" +"GO:0000723","telomere maintenance",9,0,1.89,2344,"1.00000","0.39186","0.3919" +"GO:0032200","telomere organization",9,0,1.89,2345,"1.00000","0.39186","0.3919" +"GO:0034968","histone lysine methylation",5,1,1.05,1532,"0.69268","0.39186","0.3919" +"GO:0031503","protein-containing complex localization",18,3,3.78,1779,"0.76265","0.39196","0.3920" +"GO:0090092","regulation of transmembrane receptor pro...",11,1,2.31,2077,"0.92565","0.39303","0.3930" +"GO:0007034","vacuolar transport",24,8,5.04,211,"0.11108","0.39339","0.3934" +"GO:0006006","glucose metabolic process",12,3,2.52,927,"0.47717","0.39398","0.3940" +"GO:0043434","response to peptide hormone",12,3,2.52,928,"0.47717","0.39571","0.3957" +"GO:0098662","inorganic cation transmembrane transport",45,10,9.45,935,"0.47898","0.18036","0.3958" +"GO:0006397","mRNA processing",69,19,14.49,339,"0.11696","0.39650","0.3965" +"GO:0061136","regulation of proteasomal protein catabo...",13,3,2.73,1178,"0.53519","0.39660","0.3966" +"GO:1903050","regulation of proteolysis involved in ce...",13,3,2.73,1179,"0.53519","0.39660","0.3966" +"GO:0051607","defense response to virus",5,2,1.05,600,"0.28334","0.39756","0.3976" +"GO:0009968","negative regulation of signal transducti...",52,13,10.92,638,"0.28619","0.39798","0.3980" +"GO:0010648","negative regulation of cell communicatio...",52,13,10.92,639,"0.28619","0.39798","0.3980" +"GO:0023057","negative regulation of signaling",52,13,10.92,640,"0.28619","0.39798","0.3980" +"GO:1902532","negative regulation of intracellular sig...",27,8,5.67,423,"0.18923","0.39816","0.3982" +"GO:0010243","response to organonitrogen compound",50,9,10.5,1680,"0.75301","0.39837","0.3984" +"GO:0051224","negative regulation of protein transport",6,1,1.26,1716,"0.75735","0.39877","0.3988" +"GO:0003407","neural retina development",11,3,2.31,830,"0.41598","0.39989","0.3999" +"GO:0010469","regulation of signaling receptor activit...",3,0,0.63,2346,"1.00000","0.40004","0.4000" +"GO:0006401","RNA catabolic process",24,2,5.04,2173,"0.97471","0.40025","0.4002" +"GO:1901617","organic hydroxy compound biosynthetic pr...",14,4,2.94,685,"0.33655","0.40043","0.4004" +"GO:0006221","pyrimidine nucleotide biosynthetic proce...",7,1,1.47,1842,"0.80843","0.40122","0.4012" +"GO:0051092","positive regulation of NF-kappaB transcr...",3,0,0.63,2347,"1.00000","0.40212","0.4021" +"GO:0051101","regulation of DNA binding",3,0,0.63,2348,"1.00000","0.40212","0.4021" +"GO:0002218","activation of innate immune response",7,2,1.47,886,"0.45086","0.40228","0.4023" +"GO:0002758","innate immune response-activating signal...",7,2,1.47,887,"0.45086","0.40228","0.4023" +"GO:0043618","regulation of transcription from RNA pol...",7,1,1.47,1843,"0.80843","0.40228","0.4023" +"GO:0043620","regulation of DNA-templated transcriptio...",7,1,1.47,1844,"0.80843","0.40228","0.4023" +"GO:0071276","cellular response to cadmium ion",7,3,1.47,397,"0.16548","0.40228","0.4023" +"GO:1901032","negative regulation of response to react...",7,3,1.47,398,"0.16548","0.40228","0.4023" +"GO:1903206","negative regulation of hydrogen peroxide...",7,3,1.47,399,"0.16548","0.40228","0.4023" +"GO:2001039","negative regulation of cellular response...",7,3,1.47,400,"0.16548","0.40228","0.4023" +"GO:0000070","mitotic sister chromatid segregation",13,3,2.73,1180,"0.53519","0.40327","0.4033" +"GO:0043154","negative regulation of cysteine-type end...",8,1,1.68,1920,"0.84877","0.40378","0.4038" +"GO:0010976","positive regulation of neuron projection...",5,0,1.05,2349,"1.00000","0.40382","0.4038" +"GO:0006325","chromatin organization",79,18,16.59,796,"0.39055","0.40436","0.4044" +"GO:0043487","regulation of RNA stability",8,1,1.68,1921,"0.84877","0.40449","0.4045" +"GO:0043488","regulation of mRNA stability",8,1,1.68,1922,"0.84877","0.40449","0.4045" +"GO:0061013","regulation of mRNA catabolic process",8,1,1.68,1923,"0.84877","0.40449","0.4045" +"GO:0046902","regulation of mitochondrial membrane per...",3,0,0.63,2350,"1.00000","0.40490","0.4049" +"GO:0034227","tRNA thio-modification",4,0,0.84,2351,"1.00000","0.40492","0.4049" +"GO:0042981","regulation of apoptotic process",57,15,11.97,478,"0.20031","0.40511","0.4051" +"GO:0016054","organic acid catabolic process",24,6,5.04,802,"0.39117","0.40543","0.4054" +"GO:0046395","carboxylic acid catabolic process",24,6,5.04,803,"0.39117","0.40543","0.4054" +"GO:0002253","activation of immune response",13,4,2.73,629,"0.28377","0.40550","0.4055" +"GO:0051049","regulation of transport",69,14,14.49,1273,"0.60695","0.40587","0.4059" +"GO:0072524","pyridine-containing compound metabolic p...",19,6,3.99,436,"0.19234","0.40624","0.4062" +"GO:0031589","cell-substrate adhesion",9,3,1.89,654,"0.28848","0.40626","0.4063" +"GO:0031570","DNA integrity checkpoint",11,2,2.31,1627,"0.70716","0.40644","0.4064" +"GO:0097178","ruffle assembly",3,1,0.63,1013,"0.50718","0.40769","0.4077" +"GO:1900027","regulation of ruffle assembly",3,1,0.63,1014,"0.50718","0.40769","0.4077" +"GO:1903747","regulation of establishment of protein l...",8,3,1.68,513,"0.22537","0.40776","0.4078" +"GO:0043043","peptide biosynthetic process",184,19,38.65,2276,"0.99998","0.40822","0.4082" +"GO:0008202","steroid metabolic process",17,4,3.57,945,"0.49311","0.40983","0.4098" +"GO:0071985","multivesicular body sorting pathway",5,1,1.05,1533,"0.69268","0.41014","0.4101" +"GO:0009060","aerobic respiration",9,0,1.89,2352,"1.00000","0.41233","0.4123" +"GO:0015698","inorganic anion transport",12,3,2.52,929,"0.47717","0.41244","0.4124" +"GO:0019674","NAD metabolic process",6,2,1.26,758,"0.36933","0.41258","0.4126" +"GO:0046777","protein autophosphorylation",9,3,1.89,655,"0.28848","0.41477","0.4148" +"GO:0016255","attachment of GPI anchor to protein",3,0,0.63,2353,"1.00000","0.41541","0.4154" +"GO:0007033","vacuole organization",16,3,3.36,1516,"0.68481","0.41545","0.4154" +"GO:0044703","multi-organism reproductive process",65,18,13.65,340,"0.11959","0.41599","0.4160" +"GO:0008334","histone mRNA metabolic process",4,2,0.84,472,"0.19630","0.41789","0.4179" +"GO:1902806","regulation of cell cycle G1/S phase tran...",4,0,0.84,2354,"1.00000","0.41789","0.4179" +"GO:0031935","regulation of chromatin silencing",3,0,0.63,2355,"1.00000","0.41823","0.4182" +"GO:0031936","negative regulation of chromatin silenci...",3,0,0.63,2356,"1.00000","0.41823","0.4182" +"GO:0031938","regulation of chromatin silencing at tel...",3,0,0.63,2357,"1.00000","0.41823","0.4182" +"GO:0060969","negative regulation of gene silencing",3,0,0.63,2358,"1.00000","0.41823","0.4182" +"GO:0043604","amide biosynthetic process",194,22,40.75,2273,"0.99991","0.41994","0.4199" +"GO:0090567","reproductive shoot system development",5,2,1.05,601,"0.28334","0.42051","0.4205" +"GO:0043067","regulation of programmed cell death",60,16,12.6,409,"0.17525","0.42053","0.4205" +"GO:0006412","translation",182,19,38.23,2275,"0.99997","0.42263","0.4226" +"GO:0098655","cation transmembrane transport",52,10,10.92,1512,"0.67839","0.20396","0.4242" +"GO:0008154","actin polymerization or depolymerization",20,3,4.2,1890,"0.82414","0.42445","0.4244" +"GO:0007224","smoothened signaling pathway",7,2,1.47,888,"0.45086","0.42485","0.4248" +"GO:0010972","negative regulation of G2/M transition o...",5,2,1.05,602,"0.28334","0.42509","0.4251" +"GO:1902750","negative regulation of cell cycle G2/M p...",5,2,1.05,603,"0.28334","0.42509","0.4251" +"GO:0034660","ncRNA metabolic process",119,16,24.99,2225,"0.98875","0.42527","0.4253" +"GO:0000045","autophagosome assembly",7,0,1.47,2359,"1.00000","0.42594","0.4259" +"GO:1905037","autophagosome organization",7,0,1.47,2360,"1.00000","0.42594","0.4259" +"GO:0019932","second-messenger-mediated signaling",11,2,2.31,1628,"0.70716","0.42598","0.4260" +"GO:0090130","tissue migration",11,2,2.31,1629,"0.70716","0.42598","0.4260" +"GO:0016125","sterol metabolic process",5,1,1.05,1534,"0.69268","0.42619","0.4262" +"GO:0018022","peptidyl-lysine methylation",10,3,2.1,716,"0.35262","0.42734","0.4273" +"GO:0008037","cell recognition",10,4,2.1,369,"0.13883","0.42851","0.4285" +"GO:0072665","protein localization to vacuole",10,4,2.1,370,"0.13883","0.42851","0.4285" +"GO:0072666","establishment of protein localization to...",10,4,2.1,371,"0.13883","0.42851","0.4285" +"GO:0046755","viral budding",3,1,0.63,1015,"0.50718","0.42889","0.4289" +"GO:0000460","maturation of 5.8S rRNA",9,1,1.89,1981,"0.88063","0.42953","0.4295" +"GO:0007601","visual perception",14,4,2.94,686,"0.33655","0.43016","0.4302" +"GO:0050953","sensory perception of light stimulus",14,4,2.94,687,"0.33655","0.43016","0.4302" +"GO:0009792","embryo development ending in birth or eg...",45,13,9.45,348,"0.13159","0.43040","0.4304" +"GO:0070129","regulation of mitochondrial translation",3,0,0.63,2361,"1.00000","0.43103","0.4310" +"GO:0016052","carbohydrate catabolic process",11,3,2.31,831,"0.41598","0.43183","0.4318" +"GO:0019359","nicotinamide nucleotide biosynthetic pro...",11,4,2.31,417,"0.18366","0.43183","0.4318" +"GO:0019363","pyridine nucleotide biosynthetic process",11,4,2.31,418,"0.18366","0.43183","0.4318" +"GO:0006405","RNA export from nucleus",16,4,3.36,857,"0.44210","0.43210","0.4321" +"GO:0050657","nucleic acid transport",16,4,3.36,858,"0.44210","0.43210","0.4321" +"GO:0050658","RNA transport",16,4,3.36,859,"0.44210","0.43210","0.4321" +"GO:0051236","establishment of RNA localization",16,4,3.36,860,"0.44210","0.43210","0.4321" +"GO:1902914","regulation of protein polyubiquitination",3,1,0.63,1016,"0.50718","0.43247","0.4325" +"GO:1902916","positive regulation of protein polyubiqu...",3,1,0.63,1017,"0.50718","0.43247","0.4325" +"GO:0061180","mammary gland epithelium development",3,0,0.63,2362,"1.00000","0.43318","0.4332" +"GO:0006661","phosphatidylinositol biosynthetic proces...",9,1,1.89,1982,"0.88063","0.43449","0.4345" +"GO:0048871","multicellular organismal homeostasis",18,5,3.78,677,"0.32182","0.43511","0.4351" +"GO:0090114","COPII-coated vesicle budding",7,1,1.47,1845,"0.80843","0.43798","0.4380" +"GO:1903313","positive regulation of mRNA metabolic pr...",7,3,1.47,401,"0.16548","0.43798","0.4380" +"GO:0008589","regulation of smoothened signaling pathw...",5,2,1.05,604,"0.28334","0.43989","0.4399" +"GO:0006954","inflammatory response",11,4,2.31,419,"0.18366","0.44022","0.4402" +"GO:0048598","embryonic morphogenesis",36,9,7.56,698,"0.33758","0.44024","0.4402" +"GO:0006506","GPI anchor biosynthetic process",8,1,1.68,1924,"0.84877","0.44072","0.4407" +"GO:0003013","circulatory system process",14,3,2.94,1225,"0.58937","0.44105","0.4410" +"GO:0008015","blood circulation",14,3,2.94,1226,"0.58937","0.44105","0.4410" +"GO:1901652","response to peptide",13,3,2.73,1181,"0.53519","0.44161","0.4416" +"GO:0007476","imaginal disc-derived wing morphogenesis",4,2,0.84,473,"0.19630","0.44203","0.4420" +"GO:0035114","imaginal disc-derived appendage morphoge...",4,2,0.84,474,"0.19630","0.44203","0.4420" +"GO:0048737","imaginal disc-derived appendage developm...",4,2,0.84,475,"0.19630","0.44203","0.4420" +"GO:0006213","pyrimidine nucleoside metabolic process",5,0,1.05,2363,"1.00000","0.44232","0.4423" +"GO:0046131","pyrimidine ribonucleoside metabolic proc...",5,0,1.05,2364,"1.00000","0.44232","0.4423" +"GO:0048477","oogenesis",21,7,4.41,350,"0.13209","0.44245","0.4424" +"GO:0033108","mitochondrial respiratory chain complex ...",15,1,3.15,2168,"0.97119","0.44307","0.4431" +"GO:0007021","tubulin complex assembly",3,0,0.63,2365,"1.00000","0.44399","0.4440" +"GO:0010998","regulation of translational initiation b...",3,0,0.63,2366,"1.00000","0.44399","0.4440" +"GO:0043555","regulation of translation in response to...",3,0,0.63,2367,"1.00000","0.44399","0.4440" +"GO:0043558","regulation of translational initiation i...",3,0,0.63,2368,"1.00000","0.44399","0.4440" +"GO:2000378","negative regulation of reactive oxygen s...",3,0,0.63,2369,"1.00000","0.44399","0.4440" +"GO:0015919","peroxisomal membrane transport",3,1,0.63,1018,"0.50718","0.44544","0.4454" +"GO:0016558","protein import into peroxisome matrix",3,1,0.63,1019,"0.50718","0.44544","0.4454" +"GO:0007163","establishment or maintenance of cell pol...",11,4,2.31,420,"0.18366","0.44590","0.4459" +"GO:0007249","I-kappaB kinase/NF-kappaB signaling",6,2,1.26,759,"0.36933","0.44592","0.4459" +"GO:0043122","regulation of I-kappaB kinase/NF-kappaB ...",6,2,1.26,760,"0.36933","0.44592","0.4459" +"GO:0032092","positive regulation of protein binding",5,1,1.05,1535,"0.69268","0.44793","0.4479" +"GO:0007517","muscle organ development",23,6,4.83,705,"0.34954","0.44800","0.4480" +"GO:0006241","CTP biosynthetic process",3,0,0.63,2370,"1.00000","0.44979","0.4498" +"GO:0009148","pyrimidine nucleoside triphosphate biosy...",3,0,0.63,2371,"1.00000","0.44979","0.4498" +"GO:0009208","pyrimidine ribonucleoside triphosphate m...",3,0,0.63,2372,"1.00000","0.44979","0.4498" +"GO:0009209","pyrimidine ribonucleoside triphosphate b...",3,0,0.63,2373,"1.00000","0.44979","0.4498" +"GO:0046036","CTP metabolic process",3,0,0.63,2374,"1.00000","0.44979","0.4498" +"GO:1901070","guanosine-containing compound biosynthet...",3,0,0.63,2375,"1.00000","0.44979","0.4498" +"GO:0007605","sensory perception of sound",5,0,1.05,2376,"1.00000","0.45056","0.4506" +"GO:0050954","sensory perception of mechanical stimulu...",5,0,1.05,2377,"1.00000","0.45056","0.4506" +"GO:0070647","protein modification by small protein co...",85,17,17.85,1458,"0.63468","0.45064","0.4506" +"GO:0032268","regulation of cellular protein metabolic...",119,29,24.99,481,"0.20785","0.45090","0.4509" +"GO:0030308","negative regulation of cell growth",12,2,2.52,1685,"0.75316","0.45115","0.4511" +"GO:0043603","cellular amide metabolic process",221,32,46.42,2247,"0.99615","0.45117","0.4512" +"GO:1903828","negative regulation of cellular protein ...",7,2,1.47,889,"0.45086","0.45126","0.4513" +"GO:1904950","negative regulation of establishment of ...",7,1,1.47,1846,"0.80843","0.45126","0.4513" +"GO:0007292","female gamete generation",25,8,5.25,354,"0.13485","0.45186","0.4519" +"GO:0045088","regulation of innate immune response",14,5,2.94,379,"0.15181","0.45204","0.4520" +"GO:0009435","NAD biosynthetic process",3,1,0.63,1020,"0.50718","0.45344","0.4534" +"GO:0000291","nuclear-transcribed mRNA catabolic proce...",3,0,0.63,2378,"1.00000","0.45417","0.4542" +"GO:0043928","exonucleolytic nuclear-transcribed mRNA ...",3,0,0.63,2379,"1.00000","0.45417","0.4542" +"GO:0046939","nucleotide phosphorylation",10,2,2.1,1483,"0.65422","0.45506","0.4551" +"GO:0006623","protein targeting to vacuole",7,3,1.47,402,"0.16548","0.45572","0.4557" +"GO:0007608","sensory perception of smell",7,3,1.47,403,"0.16548","0.45572","0.4557" +"GO:0021549","cerebellum development",7,3,1.47,404,"0.16548","0.45572","0.4557" +"GO:0022037","metencephalon development",7,3,1.47,405,"0.16548","0.45572","0.4557" +"GO:0030902","hindbrain development",7,3,1.47,406,"0.16548","0.45572","0.4557" +"GO:0008088","axo-dendritic transport",10,3,2.1,717,"0.35262","0.45680","0.4568" +"GO:0050821","protein stabilization",10,3,2.1,718,"0.35262","0.45680","0.4568" +"GO:1903362","regulation of cellular protein catabolic...",14,3,2.94,1227,"0.58937","0.45757","0.4576" +"GO:0008544","epidermis development",9,2,1.89,1248,"0.59390","0.45839","0.4584" +"GO:0006560","proline metabolic process",4,1,0.84,1326,"0.61081","0.45947","0.4595" +"GO:0032446","protein modification by small protein co...",67,13,14.07,1509,"0.67549","0.46026","0.4603" +"GO:0031145","anaphase-promoting complex-dependent cat...",5,2,1.05,605,"0.28334","0.46057","0.4606" +"GO:0009733","response to auxin",5,2,1.05,606,"0.28334","0.46095","0.4609" +"GO:0048545","response to steroid hormone",33,7,6.93,1206,"0.55751","0.46145","0.4615" +"GO:0030587","sorocarp development",3,1,0.63,1021,"0.50718","0.46222","0.4622" +"GO:0051703","intraspecies interaction between organis...",3,1,0.63,1022,"0.50718","0.46222","0.4622" +"GO:0090702","non-reproductive fruiting body developme...",3,1,0.63,1023,"0.50718","0.46222","0.4622" +"GO:0099120","socially cooperative development",3,1,0.63,1024,"0.50718","0.46222","0.4622" +"GO:0008203","cholesterol metabolic process",3,0,0.63,2380,"1.00000","0.46222","0.4622" +"GO:0048562","embryonic organ morphogenesis",11,1,2.31,2078,"0.92565","0.46244","0.4624" +"GO:0006400","tRNA modification",22,3,4.62,1967,"0.87148","0.46247","0.4625" +"GO:0045598","regulation of fat cell differentiation",8,0,1.68,2381,"1.00000","0.46350","0.4635" +"GO:0016246","RNA interference",7,3,1.47,407,"0.16548","0.46357","0.4636" +"GO:0060218","hematopoietic stem cell differentiation",4,1,0.84,1327,"0.61081","0.46371","0.4637" +"GO:1901532","regulation of hematopoietic progenitor c...",4,1,0.84,1328,"0.61081","0.46371","0.4637" +"GO:1902036","regulation of hematopoietic stem cell di...",4,1,0.84,1329,"0.61081","0.46371","0.4637" +"GO:0009299","mRNA transcription",4,0,0.84,2382,"1.00000","0.46371","0.4637" +"GO:0031958","corticosteroid receptor signaling pathwa...",4,0,0.84,2383,"1.00000","0.46371","0.4637" +"GO:0033145","positive regulation of intracellular ste...",4,0,0.84,2384,"1.00000","0.46371","0.4637" +"GO:0035162","embryonic hemopoiesis",4,0,0.84,2385,"1.00000","0.46371","0.4637" +"GO:0042789","mRNA transcription by RNA polymerase II",4,0,0.84,2386,"1.00000","0.46371","0.4637" +"GO:0042921","glucocorticoid receptor signaling pathwa...",4,0,0.84,2387,"1.00000","0.46371","0.4637" +"GO:0061298","retina vasculature development in camera...",4,0,0.84,2388,"1.00000","0.46371","0.4637" +"GO:0007369","gastrulation",14,5,2.94,380,"0.15181","0.46393","0.4639" +"GO:0006476","protein deacetylation",8,3,1.68,514,"0.22537","0.46455","0.4646" +"GO:0016575","histone deacetylation",8,3,1.68,515,"0.22537","0.46455","0.4646" +"GO:0035601","protein deacylation",8,3,1.68,516,"0.22537","0.46455","0.4646" +"GO:0098732","macromolecule deacylation",8,3,1.68,517,"0.22537","0.46455","0.4646" +"GO:1901800","positive regulation of proteasomal prote...",6,1,1.26,1717,"0.75735","0.46557","0.4656" +"GO:1903052","positive regulation of proteolysis invol...",6,1,1.26,1718,"0.75735","0.46557","0.4656" +"GO:1903364","positive regulation of cellular protein ...",6,1,1.26,1719,"0.75735","0.46557","0.4656" +"GO:0032355","response to estradiol",11,3,2.31,832,"0.41598","0.46629","0.4663" +"GO:0043162","ubiquitin-dependent protein catabolic pr...",6,2,1.26,761,"0.36933","0.46662","0.4666" +"GO:0018196","peptidyl-asparagine modification",9,2,1.89,1249,"0.59390","0.46731","0.4673" +"GO:0018279","protein N-linked glycosylation via aspar...",9,2,1.89,1250,"0.59390","0.46731","0.4673" +"GO:0042593","glucose homeostasis",8,3,1.68,518,"0.22537","0.46741","0.4674" +"GO:0001763","morphogenesis of a branching structure",6,0,1.26,2389,"1.00000","0.46818","0.4682" +"GO:0006952","defense response",46,13,9.66,375,"0.15017","0.46890","0.4689" +"GO:0010038","response to metal ion",24,6,5.04,804,"0.39117","0.46895","0.4689" +"GO:0001754","eye photoreceptor cell differentiation",14,4,2.94,688,"0.33655","0.46951","0.4695" +"GO:0046530","photoreceptor cell differentiation",14,4,2.94,689,"0.33655","0.46951","0.4695" +"GO:0018210","peptidyl-threonine modification",6,5,1.26,17,"0.00200","0.00722","0.4696" +"GO:0006518","peptide metabolic process",201,26,42.22,2269,"0.99921","0.47070","0.4707" +"GO:1902275","regulation of chromatin organization",10,1,2.1,2029,"0.90578","0.47132","0.4713" +"GO:0031399","regulation of protein modification proce...",79,19,16.59,663,"0.29032","0.47179","0.4718" +"GO:0010952","positive regulation of peptidase activit...",3,0,0.63,2390,"1.00000","0.47181","0.4718" +"GO:0046685","response to arsenic-containing substance",4,2,0.84,476,"0.19630","0.47352","0.4735" +"GO:0046688","response to copper ion",4,2,0.84,477,"0.19630","0.47352","0.4735" +"GO:0006874","cellular calcium ion homeostasis",12,4,2.52,551,"0.23240","0.47359","0.4736" +"GO:0055074","calcium ion homeostasis",12,4,2.52,552,"0.23240","0.47359","0.4736" +"GO:0006353","DNA-templated transcription, termination",3,1,0.63,1025,"0.50718","0.47403","0.4740" +"GO:0006369","termination of RNA polymerase II transcr...",3,1,0.63,1026,"0.50718","0.47403","0.4740" +"GO:0045017","glycerolipid biosynthetic process",19,2,3.99,2089,"0.93206","0.47479","0.4748" +"GO:0048569","post-embryonic animal organ development",9,3,1.89,656,"0.28848","0.47500","0.4750" +"GO:0042398","cellular modified amino acid biosyntheti...",5,1,1.05,1536,"0.69268","0.47543","0.4754" +"GO:0009725","response to hormone",58,12,12.18,1213,"0.57645","0.47634","0.4763" +"GO:0002115","store-operated calcium entry",4,0,0.84,2391,"1.00000","0.47737","0.4774" +"GO:0046330","positive regulation of JNK cascade",3,1,0.63,1027,"0.50718","0.47774","0.4777" +"GO:0043406","positive regulation of MAP kinase activi...",3,0,0.63,2392,"1.00000","0.47774","0.4777" +"GO:0015748","organophosphate ester transport",4,0,0.84,2393,"1.00000","0.47823","0.4782" +"GO:0002757","immune response-activating signal transd...",11,2,2.31,1630,"0.70716","0.47829","0.4783" +"GO:0002764","immune response-regulating signaling pat...",11,2,2.31,1631,"0.70716","0.47829","0.4783" +"GO:0001756","somitogenesis",5,1,1.05,1537,"0.69268","0.47889","0.4789" +"GO:0009948","anterior/posterior axis specification",5,2,1.05,607,"0.28334","0.47889","0.4789" +"GO:0061053","somite development",5,1,1.05,1538,"0.69268","0.47889","0.4789" +"GO:0006739","NADP metabolic process",7,2,1.47,890,"0.45086","0.47940","0.4794" +"GO:0060341","regulation of cellular localization",34,9,7.14,573,"0.27363","0.48192","0.4819" +"GO:1902531","regulation of intracellular signal trans...",72,17,15.12,683,"0.33507","0.48256","0.4826" +"GO:0090257","regulation of muscle system process",10,0,2.1,2394,"1.00000","0.48272","0.4827" +"GO:0050773","regulation of dendrite development",4,0,0.84,2395,"1.00000","0.48339","0.4834" +"GO:0060996","dendritic spine development",4,0,0.84,2396,"1.00000","0.48339","0.4834" +"GO:0097193","intrinsic apoptotic signaling pathway",14,3,2.94,1228,"0.58937","0.48398","0.4840" +"GO:0046474","glycerophospholipid biosynthetic process",18,2,3.78,2066,"0.91767","0.48462","0.4846" +"GO:0071322","cellular response to carbohydrate stimul...",6,1,1.26,1720,"0.75735","0.48499","0.4850" +"GO:0043410","positive regulation of MAPK cascade",7,1,1.47,1847,"0.80843","0.48738","0.4874" +"GO:0001678","cellular glucose homeostasis",5,2,1.05,608,"0.28334","0.48775","0.4877" +"GO:0003205","cardiac chamber development",5,1,1.05,1539,"0.69268","0.48775","0.4877" +"GO:0003231","cardiac ventricle development",5,1,1.05,1540,"0.69268","0.48775","0.4877" +"GO:0009746","response to hexose",5,2,1.05,609,"0.28334","0.48775","0.4877" +"GO:0009749","response to glucose",5,2,1.05,610,"0.28334","0.48775","0.4877" +"GO:0009914","hormone transport",5,1,1.05,1541,"0.69268","0.48775","0.4877" +"GO:0034284","response to monosaccharide",5,2,1.05,611,"0.28334","0.48775","0.4877" +"GO:0043467","regulation of generation of precursor me...",5,1,1.05,1542,"0.69268","0.48775","0.4877" +"GO:0051193","regulation of cofactor metabolic process",5,1,1.05,1543,"0.69268","0.48775","0.4877" +"GO:1903578","regulation of ATP metabolic process",5,1,1.05,1544,"0.69268","0.48775","0.4877" +"GO:0001841","neural tube formation",5,0,1.05,2397,"1.00000","0.48775","0.4877" +"GO:0014020","primary neural tube formation",5,0,1.05,2398,"1.00000","0.48775","0.4877" +"GO:0035108","limb morphogenesis",7,0,1.47,2399,"1.00000","0.48852","0.4885" +"GO:0060173","limb development",7,0,1.47,2400,"1.00000","0.48852","0.4885" +"GO:0006403","RNA localization",19,5,3.99,744,"0.36806","0.48894","0.4889" +"GO:0032509","endosome transport via multivesicular bo...",4,1,0.84,1330,"0.61081","0.49029","0.4903" +"GO:0045324","late endosome to vacuole transport",4,1,0.84,1331,"0.61081","0.49029","0.4903" +"GO:0019362","pyridine nucleotide metabolic process",17,5,3.57,581,"0.27631","0.49123","0.4912" +"GO:0046496","nicotinamide nucleotide metabolic proces...",17,5,3.57,582,"0.27631","0.49123","0.4912" +"GO:0000463","maturation of LSU-rRNA from tricistronic...",5,1,1.05,1545,"0.69268","0.49161","0.4916" +"GO:0000470","maturation of LSU-rRNA",5,1,1.05,1546,"0.69268","0.49161","0.4916" +"GO:0023051","regulation of signaling",144,32,30.25,789,"0.38957","0.49235","0.4924" +"GO:0090150","establishment of protein localization to...",22,5,4.62,953,"0.50471","0.49247","0.4925" +"GO:0042559","pteridine-containing compound biosynthet...",5,1,1.05,1547,"0.69268","0.49336","0.4934" +"GO:1901654","response to ketone",16,5,3.36,541,"0.23230","0.49416","0.4942" +"GO:0071025","RNA surveillance",3,0,0.63,2401,"1.00000","0.49417","0.4942" +"GO:0071027","nuclear RNA surveillance",3,0,0.63,2402,"1.00000","0.49417","0.4942" +"GO:0034389","lipid droplet organization",5,1,1.05,1548,"0.69268","0.49471","0.4947" +"GO:0031110","regulation of microtubule polymerization...",7,2,1.47,891,"0.45086","0.49540","0.4954" +"GO:0061635","regulation of protein complex stability",8,3,1.68,519,"0.22537","0.49587","0.4959" +"GO:0006913","nucleocytoplasmic transport",37,11,7.77,355,"0.13489","0.49636","0.4964" +"GO:0006749","glutathione metabolic process",5,1,1.05,1549,"0.69268","0.49957","0.4996" +"GO:0045765","regulation of angiogenesis",5,0,1.05,2403,"1.00000","0.50054","0.5005" +"GO:0045766","positive regulation of angiogenesis",5,0,1.05,2404,"1.00000","0.50054","0.5005" +"GO:1901342","regulation of vasculature development",5,0,1.05,2405,"1.00000","0.50054","0.5005" +"GO:1904018","positive regulation of vasculature devel...",5,0,1.05,2406,"1.00000","0.50054","0.5005" +"GO:0050764","regulation of phagocytosis",10,3,2.1,719,"0.35262","0.50164","0.5016" +"GO:0016050","vesicle organization",17,5,3.57,583,"0.27631","0.50316","0.5032" +"GO:0042177","negative regulation of protein catabolic...",7,2,1.47,892,"0.45086","0.50346","0.5035" +"GO:0006901","vesicle coating",3,1,0.63,1028,"0.50718","0.50396","0.5040" +"GO:0035964","COPI-coated vesicle budding",3,1,0.63,1029,"0.50718","0.50396","0.5040" +"GO:0048200","Golgi transport vesicle coating",3,1,0.63,1030,"0.50718","0.50396","0.5040" +"GO:0048205","COPI coating of Golgi vesicle",3,1,0.63,1031,"0.50718","0.50396","0.5040" +"GO:1901701","cellular response to oxygen-containing c...",38,8,7.98,1209,"0.56177","0.50440","0.5044" +"GO:0051606","detection of stimulus",13,4,2.73,630,"0.28377","0.50488","0.5049" +"GO:0051187","cofactor catabolic process",6,1,1.26,1721,"0.75735","0.50518","0.5052" +"GO:0022618","ribonucleoprotein complex assembly",32,5,6.72,1905,"0.83363","0.50543","0.5054" +"GO:0071826","ribonucleoprotein complex subunit organi...",32,5,6.72,1906,"0.83363","0.50543","0.5054" +"GO:0050829","defense response to Gram-negative bacter...",5,0,1.05,2407,"1.00000","0.50639","0.5064" +"GO:0031349","positive regulation of defense response",12,3,2.52,930,"0.47717","0.50659","0.5066" +"GO:0048705","skeletal system morphogenesis",5,1,1.05,1550,"0.69268","0.50913","0.5091" +"GO:0035265","organ growth",5,0,1.05,2408,"1.00000","0.50913","0.5091" +"GO:0060348","bone development",5,0,1.05,2409,"1.00000","0.50913","0.5091" +"GO:0051336","regulation of hydrolase activity",54,13,11.34,700,"0.33839","0.50922","0.5092" +"GO:0045333","cellular respiration",21,1,4.41,2236,"0.99307","0.50935","0.5093" +"GO:0042451","purine nucleoside biosynthetic process",5,0,1.05,2410,"1.00000","0.51128","0.5113" +"GO:0046129","purine ribonucleoside biosynthetic proce...",5,0,1.05,2411,"1.00000","0.51128","0.5113" +"GO:0016071","mRNA metabolic process",90,20,18.9,848,"0.42855","0.51385","0.5139" +"GO:0032101","regulation of response to external stimu...",17,3,3.57,1659,"0.72588","0.51517","0.5152" +"GO:0006558","L-phenylalanine metabolic process",3,1,0.63,1032,"0.50718","0.51531","0.5153" +"GO:0042430","indole-containing compound metabolic pro...",3,1,0.63,1033,"0.50718","0.51531","0.5153" +"GO:1902221","erythrose 4-phosphate/phosphoenolpyruvat...",3,1,0.63,1034,"0.50718","0.51531","0.5153" +"GO:0050879","multicellular organismal movement",3,0,0.63,2412,"1.00000","0.51531","0.5153" +"GO:0050881","musculoskeletal movement",3,0,0.63,2413,"1.00000","0.51531","0.5153" +"GO:0032434","regulation of proteasomal ubiquitin-depe...",6,2,1.26,762,"0.36933","0.51536","0.5154" +"GO:2000058","regulation of ubiquitin-dependent protei...",6,2,1.26,763,"0.36933","0.51536","0.5154" +"GO:0045927","positive regulation of growth",13,1,2.73,2120,"0.95371","0.51545","0.5154" +"GO:0070534","protein K63-linked ubiquitination",4,1,0.84,1332,"0.61081","0.51600","0.5160" +"GO:0043207","response to external biotic stimulus",29,6,6.09,1235,"0.59035","0.51607","0.5161" +"GO:0051707","response to other organism",29,6,6.09,1236,"0.59035","0.51607","0.5161" +"GO:0040019","positive regulation of embryonic develop...",3,1,0.63,1035,"0.50718","0.51607","0.5161" +"GO:0051234","establishment of localization",536,125,112.58,165,"0.08006","0.30853","0.5166" +"GO:0035303","regulation of dephosphorylation",9,1,1.89,1983,"0.88063","0.51668","0.5167" +"GO:0055082","cellular chemical homeostasis",24,7,5.04,488,"0.22464","0.51712","0.5171" +"GO:0007631","feeding behavior",5,2,1.05,612,"0.28334","0.51794","0.5179" +"GO:0021761","limbic system development",5,2,1.05,613,"0.28334","0.51794","0.5179" +"GO:0032350","regulation of hormone metabolic process",5,2,1.05,614,"0.28334","0.51794","0.5179" +"GO:0006261","DNA-dependent DNA replication",20,3,4.2,1891,"0.82414","0.51811","0.5181" +"GO:0071478","cellular response to radiation",10,2,2.1,1484,"0.65422","0.51839","0.5184" +"GO:0002833","positive regulation of response to bioti...",4,0,0.84,2414,"1.00000","0.51841","0.5184" +"GO:0051973","positive regulation of telomerase activi...",4,0,0.84,2415,"1.00000","0.51841","0.5184" +"GO:1903034","regulation of response to wounding",4,0,0.84,2416,"1.00000","0.51841","0.5184" +"GO:2000573","positive regulation of DNA biosynthetic ...",4,0,0.84,2417,"1.00000","0.51841","0.5184" +"GO:0000466","maturation of 5.8S rRNA from tricistroni...",7,1,1.47,1848,"0.80843","0.51851","0.5185" +"GO:0002237","response to molecule of bacterial origin",7,2,1.47,893,"0.45086","0.51851","0.5185" +"GO:0035295","tube development",48,12,10.08,668,"0.29760","0.51875","0.5188" +"GO:0001892","embryonic placenta development",8,1,1.68,1925,"0.84877","0.51889","0.5189" +"GO:0051592","response to calcium ion",9,2,1.89,1251,"0.59390","0.51932","0.5193" +"GO:0006937","regulation of muscle contraction",9,0,1.89,2418,"1.00000","0.51932","0.5193" +"GO:0019538","protein metabolic process",742,134,155.85,2234,"0.99151","0.33472","0.5195" +"GO:2000045","regulation of G1/S transition of mitotic...",3,0,0.63,2419,"1.00000","0.51987","0.5199" +"GO:0009737","response to abscisic acid",6,2,1.26,764,"0.36933","0.52020","0.5202" +"GO:0033365","protein localization to organelle",67,18,14.07,373,"0.14917","0.52036","0.5204" +"GO:0001895","retina homeostasis",9,3,1.89,657,"0.28848","0.52064","0.5206" +"GO:0042461","photoreceptor cell development",9,2,1.89,1252,"0.59390","0.52064","0.5206" +"GO:0042462","eye photoreceptor cell development",9,2,1.89,1253,"0.59390","0.52064","0.5206" +"GO:0009218","pyrimidine ribonucleotide metabolic proc...",4,0,0.84,2420,"1.00000","0.52083","0.5208" +"GO:0009220","pyrimidine ribonucleotide biosynthetic p...",4,0,0.84,2421,"1.00000","0.52083","0.5208" +"GO:0046132","pyrimidine ribonucleoside biosynthetic p...",4,0,0.84,2422,"1.00000","0.52083","0.5208" +"GO:0046134","pyrimidine nucleoside biosynthetic proce...",4,0,0.84,2423,"1.00000","0.52083","0.5208" +"GO:0009112","nucleobase metabolic process",5,1,1.05,1551,"0.69268","0.52109","0.5211" +"GO:0046112","nucleobase biosynthetic process",5,1,1.05,1552,"0.69268","0.52109","0.5211" +"GO:0014074","response to purine-containing compound",10,2,2.1,1485,"0.65422","0.52131","0.5213" +"GO:0019233","sensory perception of pain",3,0,0.63,2424,"1.00000","0.52140","0.5214" +"GO:2000983","regulation of ATP citrate synthase activ...",3,0,0.63,2425,"1.00000","0.52140","0.5214" +"GO:2000984","negative regulation of ATP citrate synth...",3,0,0.63,2426,"1.00000","0.52140","0.5214" +"GO:0010257","NADH dehydrogenase complex assembly",12,1,2.52,2097,"0.94133","0.52179","0.5218" +"GO:0032981","mitochondrial respiratory chain complex ...",12,1,2.52,2098,"0.94133","0.52179","0.5218" +"GO:0051701","interaction with host",6,2,1.26,765,"0.36933","0.52182","0.5218" +"GO:0043484","regulation of RNA splicing",13,4,2.73,631,"0.28377","0.52424","0.5242" +"GO:0002221","pattern recognition receptor signaling p...",6,1,1.26,1722,"0.75735","0.52667","0.5267" +"GO:0090132","epithelium migration",10,1,2.1,2030,"0.90578","0.52800","0.5280" +"GO:0030431","sleep",3,1,0.63,1036,"0.50718","0.52826","0.5283" +"GO:0000387","spliceosomal snRNP assembly",9,1,1.89,1984,"0.88063","0.52857","0.5286" +"GO:0006348","chromatin silencing at telomere",5,1,1.05,1553,"0.69268","0.52857","0.5286" +"GO:0002682","regulation of immune system process",41,12,8.61,351,"0.13344","0.52909","0.5291" +"GO:0060669","embryonic placenta morphogenesis",4,1,0.84,1333,"0.61081","0.52919","0.5292" +"GO:0060706","cell differentiation involved in embryon...",4,1,0.84,1334,"0.61081","0.52919","0.5292" +"GO:0060713","labyrinthine layer morphogenesis",4,1,0.84,1335,"0.61081","0.52919","0.5292" +"GO:0120192","tight junction assembly",4,1,0.84,1336,"0.61081","0.52919","0.5292" +"GO:0120193","tight junction organization",4,1,0.84,1337,"0.61081","0.52919","0.5292" +"GO:0060627","regulation of vesicle-mediated transport",22,5,4.62,954,"0.50471","0.52942","0.5294" +"GO:0045089","positive regulation of innate immune res...",10,3,2.1,720,"0.35262","0.53009","0.5301" +"GO:0000966","RNA 5'-end processing",3,0,0.63,2427,"1.00000","0.53055","0.5306" +"GO:0034471","ncRNA 5'-end processing",3,0,0.63,2428,"1.00000","0.53055","0.5306" +"GO:0001558","regulation of cell growth",21,4,4.41,1505,"0.67242","0.53157","0.5316" +"GO:0008033","tRNA processing",41,4,8.61,2205,"0.98348","0.53200","0.5320" +"GO:0000819","sister chromatid segregation",16,4,3.36,861,"0.44210","0.53234","0.5323" +"GO:0050795","regulation of behavior",7,2,1.47,894,"0.45086","0.53367","0.5337" +"GO:0055088","lipid homeostasis",6,1,1.26,1723,"0.75735","0.53370","0.5337" +"GO:0030970","retrograde protein transport, ER to cyto...",5,1,1.05,1554,"0.69268","0.53548","0.5355" +"GO:0070861","regulation of protein exit from endoplas...",5,1,1.05,1555,"0.69268","0.53548","0.5355" +"GO:0070862","negative regulation of protein exit from...",5,1,1.05,1556,"0.69268","0.53548","0.5355" +"GO:0090317","negative regulation of intracellular pro...",5,1,1.05,1557,"0.69268","0.53548","0.5355" +"GO:1903513","endoplasmic reticulum to cytosol transpo...",5,1,1.05,1558,"0.69268","0.53548","0.5355" +"GO:1904152","regulation of retrograde protein transpo...",5,1,1.05,1559,"0.69268","0.53548","0.5355" +"GO:1904153","negative regulation of retrograde protei...",5,1,1.05,1560,"0.69268","0.53548","0.5355" +"GO:1904293","negative regulation of ERAD pathway",5,1,1.05,1561,"0.69268","0.53548","0.5355" +"GO:0008654","phospholipid biosynthetic process",27,4,5.67,1946,"0.85006","0.53600","0.5360" +"GO:0042180","cellular ketone metabolic process",14,3,2.94,1229,"0.58937","0.53640","0.5364" +"GO:0048367","shoot system development",6,2,1.26,766,"0.36933","0.53695","0.5369" +"GO:0015908","fatty acid transport",5,2,1.05,615,"0.28334","0.53825","0.5383" +"GO:0015909","long-chain fatty acid transport",5,2,1.05,616,"0.28334","0.53825","0.5383" +"GO:0002478","antigen processing and presentation of e...",3,1,0.63,1037,"0.50718","0.54127","0.5413" +"GO:0019882","antigen processing and presentation",3,1,0.63,1038,"0.50718","0.54127","0.5413" +"GO:0019884","antigen processing and presentation of e...",3,1,0.63,1039,"0.50718","0.54127","0.5413" +"GO:0048002","antigen processing and presentation of p...",3,1,0.63,1040,"0.50718","0.54127","0.5413" +"GO:0007178","transmembrane receptor protein serine/th...",17,1,3.57,2196,"0.98208","0.54164","0.5416" +"GO:0006098","pentose-phosphate shunt",4,1,0.84,1338,"0.61081","0.54246","0.5425" +"GO:0019682","glyceraldehyde-3-phosphate metabolic pro...",4,1,0.84,1339,"0.61081","0.54246","0.5425" +"GO:0051156","glucose 6-phosphate metabolic process",4,1,0.84,1340,"0.61081","0.54246","0.5425" +"GO:0071218","cellular response to misfolded protein",3,1,0.63,1041,"0.50718","0.54281","0.5428" +"GO:0030855","epithelial cell differentiation",28,8,5.88,487,"0.21940","0.54281","0.5428" +"GO:0000413","protein peptidyl-prolyl isomerization",13,1,2.73,2121,"0.95371","0.54289","0.5429" +"GO:0018208","peptidyl-proline modification",13,1,2.73,2122,"0.95371","0.54289","0.5429" +"GO:0009755","hormone-mediated signaling pathway",19,3,3.99,1817,"0.79531","0.54319","0.5432" +"GO:0006950","response to stress",240,55,50.41,562,"0.24636","0.54368","0.5437" +"GO:0009611","response to wounding",26,7,5.46,665,"0.29589","0.54457","0.5446" +"GO:0072657","protein localization to membrane",28,5,5.88,1668,"0.73094","0.54458","0.5446" +"GO:0072350","tricarboxylic acid metabolic process",8,1,1.68,1926,"0.84877","0.54482","0.5448" +"GO:0043101","purine-containing compound salvage",3,1,0.63,1042,"0.50718","0.54511","0.5451" +"GO:0006817","phosphate ion transport",3,1,0.63,1043,"0.50718","0.54742","0.5474" +"GO:0006997","nucleus organization",10,3,2.1,721,"0.35262","0.54845","0.5485" +"GO:0032570","response to progesterone",10,3,2.1,722,"0.35262","0.54845","0.5485" +"GO:0098876","vesicle-mediated transport to the plasma...",6,0,1.26,2429,"1.00000","0.54944","0.5494" +"GO:0007179","transforming growth factor beta receptor...",8,1,1.68,1927,"0.84877","0.54984","0.5498" +"GO:0048024","regulation of mRNA splicing, via spliceo...",10,3,2.1,723,"0.35262","0.54986","0.5499" +"GO:0050684","regulation of mRNA processing",10,3,2.1,724,"0.35262","0.54986","0.5499" +"GO:0043966","histone H3 acetylation",4,1,0.84,1341,"0.61081","0.55045","0.5504" +"GO:0030509","BMP signaling pathway",8,0,1.68,2430,"1.00000","0.55110","0.5511" +"GO:0045087","innate immune response",21,5,4.41,914,"0.46007","0.55194","0.5519" +"GO:0048878","chemical homeostasis",42,8,8.82,1514,"0.68303","0.55221","0.5522" +"GO:0030510","regulation of BMP signaling pathway",7,0,1.47,2431,"1.00000","0.55245","0.5524" +"GO:0033673","negative regulation of kinase activity",12,2,2.52,1686,"0.75316","0.55287","0.5529" +"GO:0031099","regeneration",14,3,2.94,1230,"0.58937","0.55303","0.5530" +"GO:0042982","amyloid precursor protein metabolic proc...",3,1,0.63,1044,"0.50718","0.55357","0.5536" +"GO:0042987","amyloid precursor protein catabolic proc...",3,1,0.63,1045,"0.50718","0.55357","0.5536" +"GO:0072503","cellular divalent inorganic cation homeo...",13,4,2.73,632,"0.28377","0.55363","0.5536" +"GO:0006099","tricarboxylic acid cycle",6,0,1.26,2432,"1.00000","0.55434","0.5543" +"GO:0030433","ubiquitin-dependent ERAD pathway",13,3,2.73,1182,"0.53519","0.55474","0.5547" +"GO:0009225","nucleotide-sugar metabolic process",7,1,1.47,1849,"0.80843","0.55480","0.5548" +"GO:0048593","camera-type eye morphogenesis",15,4,3.15,792,"0.38965","0.55511","0.5551" +"GO:0009952","anterior/posterior pattern specification",10,3,2.1,725,"0.35262","0.55563","0.5556" +"GO:0015931","nucleobase-containing compound transport",23,7,4.83,431,"0.19152","0.55567","0.5557" +"GO:1901988","negative regulation of cell cycle phase ...",10,3,2.1,726,"0.35262","0.55577","0.5558" +"GO:1901991","negative regulation of mitotic cell cycl...",10,3,2.1,727,"0.35262","0.55577","0.5558" +"GO:0043085","positive regulation of catalytic activit...",48,11,10.08,847,"0.42776","0.55602","0.5560" +"GO:0022407","regulation of cell-cell adhesion",8,1,1.68,1928,"0.84877","0.55614","0.5561" +"GO:0045646","regulation of erythrocyte differentiatio...",8,1,1.68,1929,"0.84877","0.55614","0.5561" +"GO:0010822","positive regulation of mitochondrion org...",10,3,2.1,728,"0.35262","0.55662","0.5566" +"GO:0033865","nucleoside bisphosphate metabolic proces...",11,3,2.31,833,"0.41598","0.55742","0.5574" +"GO:0033875","ribonucleoside bisphosphate metabolic pr...",11,3,2.31,834,"0.41598","0.55742","0.5574" +"GO:0034032","purine nucleoside bisphosphate metabolic...",11,3,2.31,835,"0.41598","0.55742","0.5574" +"GO:0035556","intracellular signal transduction",132,27,27.73,1269,"0.59885","0.55789","0.5579" +"GO:0000077","DNA damage checkpoint",8,2,1.68,1149,"0.52603","0.55850","0.5585" +"GO:2001257","regulation of cation channel activity",8,0,1.68,2433,"1.00000","0.55866","0.5587" +"GO:0090068","positive regulation of cell cycle proces...",9,3,1.89,658,"0.28848","0.56053","0.5605" +"GO:0006469","negative regulation of protein kinase ac...",11,2,2.31,1632,"0.70716","0.56079","0.5608" +"GO:0010876","lipid localization",25,7,5.25,566,"0.25956","0.56191","0.5619" +"GO:0001777","T cell homeostatic proliferation",3,0,0.63,2434,"1.00000","0.56206","0.5621" +"GO:0001935","endothelial cell proliferation",3,0,0.63,2435,"1.00000","0.56206","0.5621" +"GO:0035358","regulation of peroxisome proliferator ac...",3,0,0.63,2436,"1.00000","0.56206","0.5621" +"GO:0035360","positive regulation of peroxisome prolif...",3,0,0.63,2437,"1.00000","0.56206","0.5621" +"GO:0045600","positive regulation of fat cell differen...",3,0,0.63,2438,"1.00000","0.56206","0.5621" +"GO:0045638","negative regulation of myeloid cell diff...",3,0,0.63,2439,"1.00000","0.56206","0.5621" +"GO:0045647","negative regulation of erythrocyte diffe...",3,0,0.63,2440,"1.00000","0.56206","0.5621" +"GO:0046013","regulation of T cell homeostatic prolife...",3,0,0.63,2441,"1.00000","0.56206","0.5621" +"GO:0061299","retina vasculature morphogenesis in came...",3,0,0.63,2442,"1.00000","0.56206","0.5621" +"GO:0061304","retinal blood vessel morphogenesis",3,0,0.63,2443,"1.00000","0.56206","0.5621" +"GO:0070372","regulation of ERK1 and ERK2 cascade",3,0,0.63,2444,"1.00000","0.56206","0.5621" +"GO:0070373","negative regulation of ERK1 and ERK2 cas...",3,0,0.63,2445,"1.00000","0.56206","0.5621" +"GO:0097066","response to thyroid hormone",3,0,0.63,2446,"1.00000","0.56206","0.5621" +"GO:0097067","cellular response to thyroid hormone sti...",3,0,0.63,2447,"1.00000","0.56206","0.5621" +"GO:2000322","regulation of glucocorticoid receptor si...",3,0,0.63,2448,"1.00000","0.56206","0.5621" +"GO:2000324","positive regulation of glucocorticoid re...",3,0,0.63,2449,"1.00000","0.56206","0.5621" +"GO:0051051","negative regulation of transport",13,1,2.73,2123,"0.95371","0.56303","0.5630" +"GO:0006368","transcription elongation from RNA polyme...",9,1,1.89,1985,"0.88063","0.56321","0.5632" +"GO:0031401","positive regulation of protein modificat...",36,7,7.56,1497,"0.65680","0.56331","0.5633" +"GO:0031929","TOR signaling",12,2,2.52,1687,"0.75316","0.56523","0.5652" +"GO:0007051","spindle organization",13,4,2.73,633,"0.28377","0.56600","0.5660" +"GO:1901568","fatty acid derivative metabolic process",5,1,1.05,1562,"0.69268","0.56669","0.5667" +"GO:0007162","negative regulation of cell adhesion",8,2,1.68,1150,"0.52603","0.56749","0.5675" +"GO:0034472","snRNA 3'-end processing",5,2,1.05,617,"0.28334","0.56769","0.5677" +"GO:0048592","eye morphogenesis",26,7,5.46,666,"0.29589","0.56805","0.5681" +"GO:0090101","negative regulation of transmembrane rec...",4,0,0.84,2450,"1.00000","0.56961","0.5696" +"GO:0090288","negative regulation of cellular response...",4,0,0.84,2451,"1.00000","0.56961","0.5696" +"GO:0030490","maturation of SSU-rRNA",6,1,1.26,1724,"0.75735","0.56964","0.5696" +"GO:0032496","response to lipopolysaccharide",6,1,1.26,1725,"0.75735","0.56964","0.5696" +"GO:0090502","RNA phosphodiester bond hydrolysis, endo...",6,1,1.26,1726,"0.75735","0.56964","0.5696" +"GO:0002064","epithelial cell development",21,6,4.41,569,"0.26802","0.57037","0.5704" +"GO:0055065","metal ion homeostasis",21,5,4.41,915,"0.46007","0.57037","0.5704" +"GO:0010033","response to organic substance",136,25,28.57,1879,"0.80893","0.57203","0.5720" +"GO:0098660","inorganic ion transmembrane transport",46,10,9.66,1127,"0.50975","0.28366","0.5736" +"GO:0010657","muscle cell apoptotic process",9,3,1.89,659,"0.28848","0.57393","0.5739" +"GO:0010660","regulation of muscle cell apoptotic proc...",9,3,1.89,660,"0.28848","0.57393","0.5739" +"GO:1900034","regulation of cellular response to heat",9,2,1.89,1254,"0.59390","0.57393","0.5739" +"GO:2001256","regulation of store-operated calcium ent...",3,0,0.63,2452,"1.00000","0.57442","0.5744" +"GO:0031333","negative regulation of protein complex a...",6,1,1.26,1727,"0.75735","0.57456","0.5746" +"GO:0007009","plasma membrane organization",3,1,0.63,1046,"0.50718","0.57520","0.5752" +"GO:0008630","intrinsic apoptotic signaling pathway in...",3,1,0.63,1047,"0.50718","0.57520","0.5752" +"GO:1902229","regulation of intrinsic apoptotic signal...",3,1,0.63,1048,"0.50718","0.57520","0.5752" +"GO:0015914","phospholipid transport",3,0,0.63,2453,"1.00000","0.57520","0.5752" +"GO:0043901","negative regulation of multi-organism pr...",3,0,0.63,2454,"1.00000","0.57520","0.5752" +"GO:0055080","cation homeostasis",26,5,5.46,1500,"0.66485","0.57694","0.5769" +"GO:0098771","inorganic ion homeostasis",26,5,5.46,1501,"0.66485","0.57694","0.5769" +"GO:0048806","genitalia development",4,1,0.84,1342,"0.61081","0.57698","0.5770" +"GO:0030856","regulation of epithelial cell differenti...",4,0,0.84,2455,"1.00000","0.57698","0.5770" +"GO:0060425","lung morphogenesis",4,0,0.84,2456,"1.00000","0.57698","0.5770" +"GO:0061138","morphogenesis of a branching epithelium",4,0,0.84,2457,"1.00000","0.57698","0.5770" +"GO:0060710","chorio-allantoic fusion",3,1,0.63,1049,"0.50718","0.57752","0.5775" +"GO:0060715","syncytiotrophoblast cell differentiation...",3,1,0.63,1050,"0.50718","0.57752","0.5775" +"GO:0060717","chorion development",3,1,0.63,1051,"0.50718","0.57752","0.5775" +"GO:1903867","extraembryonic membrane development",3,1,0.63,1052,"0.50718","0.57752","0.5775" +"GO:0007606","sensory perception of chemical stimulus",10,3,2.1,729,"0.35262","0.57823","0.5782" +"GO:0043409","negative regulation of MAPK cascade",8,2,1.68,1151,"0.52603","0.57840","0.5784" +"GO:0040029","regulation of gene expression, epigeneti...",24,6,5.04,805,"0.39117","0.57848","0.5785" +"GO:0008361","regulation of cell size",10,1,2.1,2031,"0.90578","0.57880","0.5788" +"GO:0060998","regulation of dendritic spine developmen...",3,0,0.63,2458,"1.00000","0.57984","0.5798" +"GO:0070848","response to growth factor",24,2,5.04,2174,"0.97471","0.58012","0.5801" +"GO:0045666","positive regulation of neuron differenti...",10,0,2.1,2459,"1.00000","0.58036","0.5804" +"GO:0003006","developmental process involved in reprod...",68,18,14.28,387,"0.16536","0.58204","0.5820" +"GO:0014706","striated muscle tissue development",18,5,3.78,678,"0.32182","0.58214","0.5821" +"GO:0006399","tRNA metabolic process",66,6,13.86,2253,"0.99737","0.58261","0.5826" +"GO:0001704","formation of primary germ layer",6,1,1.26,1728,"0.75735","0.58333","0.5833" +"GO:0050807","regulation of synapse organization",6,0,1.26,2460,"1.00000","0.58333","0.5833" +"GO:0001751","compound eye photoreceptor cell differen...",6,2,1.26,767,"0.36933","0.58388","0.5839" +"GO:0017145","stem cell division",6,2,1.26,768,"0.36933","0.58388","0.5839" +"GO:0098722","asymmetric stem cell division",6,2,1.26,769,"0.36933","0.58388","0.5839" +"GO:0044262","cellular carbohydrate metabolic process",23,8,4.83,181,"0.08980","0.08356","0.5840" +"GO:1902017","regulation of cilium assembly",8,1,1.68,1930,"0.84877","0.58457","0.5846" +"GO:0015031","protein transport",137,29,28.78,1128,"0.51616","0.58490","0.5849" +"GO:0015833","peptide transport",137,29,28.78,1129,"0.51616","0.58490","0.5849" +"GO:0042886","amide transport",137,29,28.78,1130,"0.51616","0.58490","0.5849" +"GO:0022604","regulation of cell morphogenesis",13,0,2.73,2461,"1.00000","0.58512","0.5851" +"GO:0002768","immune response-regulating cell surface ...",8,2,1.68,1152,"0.52603","0.58521","0.5852" +"GO:0009166","nucleotide catabolic process",12,4,2.52,553,"0.23240","0.58539","0.5854" +"GO:0072329","monocarboxylic acid catabolic process",10,2,2.1,1486,"0.65422","0.58602","0.5860" +"GO:0032511","late endosome to vacuole transport via m...",3,0,0.63,2462,"1.00000","0.58604","0.5860" +"GO:0043934","sporulation",3,0,0.63,2463,"1.00000","0.58604","0.5860" +"GO:0002790","peptide secretion",11,4,2.31,421,"0.18366","0.58709","0.5871" +"GO:0009306","protein secretion",11,4,2.31,422,"0.18366","0.58709","0.5871" +"GO:0006101","citrate metabolic process",7,0,1.47,2464,"1.00000","0.58790","0.5879" +"GO:0060548","negative regulation of cell death",43,10,9.03,844,"0.41648","0.58852","0.5885" +"GO:0097305","response to alcohol",21,6,4.41,570,"0.26802","0.58888","0.5889" +"GO:0006810","transport",524,121,110.06,207,"0.10695","0.36528","0.5892" +"GO:0009791","post-embryonic development",27,8,5.67,424,"0.18923","0.59025","0.5903" +"GO:0007006","mitochondrial membrane organization",13,1,2.73,2124,"0.95371","0.59221","0.5922" +"GO:0000054","ribosomal subunit export from nucleus",3,0,0.63,2465,"1.00000","0.59224","0.5922" +"GO:0000055","ribosomal large subunit export from nucl...",3,0,0.63,2466,"1.00000","0.59224","0.5922" +"GO:0033750","ribosome localization",3,0,0.63,2467,"1.00000","0.59224","0.5922" +"GO:0071428","rRNA-containing ribonucleoprotein comple...",3,0,0.63,2468,"1.00000","0.59224","0.5922" +"GO:0010608","posttranscriptional regulation of gene e...",36,9,7.56,699,"0.33758","0.59232","0.5923" +"GO:0010975","regulation of neuron projection developm...",15,0,3.15,2469,"1.00000","0.59255","0.5926" +"GO:0002699","positive regulation of immune effector p...",8,3,1.68,520,"0.22537","0.59297","0.5930" +"GO:0007040","lysosome organization",8,3,1.68,521,"0.22537","0.59297","0.5930" +"GO:0007269","neurotransmitter secretion",8,3,1.68,522,"0.22537","0.59297","0.5930" +"GO:0010656","negative regulation of muscle cell apopt...",8,3,1.68,523,"0.22537","0.59297","0.5930" +"GO:0010658","striated muscle cell apoptotic process",8,3,1.68,524,"0.22537","0.59297","0.5930" +"GO:0010659","cardiac muscle cell apoptotic process",8,3,1.68,525,"0.22537","0.59297","0.5930" +"GO:0010662","regulation of striated muscle cell apopt...",8,3,1.68,526,"0.22537","0.59297","0.5930" +"GO:0010664","negative regulation of striated muscle c...",8,3,1.68,527,"0.22537","0.59297","0.5930" +"GO:0010665","regulation of cardiac muscle cell apopto...",8,3,1.68,528,"0.22537","0.59297","0.5930" +"GO:0010667","negative regulation of cardiac muscle ce...",8,3,1.68,529,"0.22537","0.59297","0.5930" +"GO:0042698","ovulation cycle",8,3,1.68,530,"0.22537","0.59297","0.5930" +"GO:0080171","lytic vacuole organization",8,3,1.68,531,"0.22537","0.59297","0.5930" +"GO:0099643","signal release from synapse",8,3,1.68,532,"0.22537","0.59297","0.5930" +"GO:0051179","localization",594,137,124.76,182,"0.09121","0.38369","0.5930" +"GO:0046683","response to organophosphorus",8,2,1.68,1153,"0.52603","0.59408","0.5941" +"GO:0016999","antibiotic metabolic process",11,0,2.31,2470,"1.00000","0.59696","0.5970" +"GO:0051240","positive regulation of multicellular org...",36,4,7.56,2140,"0.96193","0.59705","0.5971" +"GO:0000003","reproduction",104,26,21.84,413,"0.18351","0.59854","0.5985" +"GO:0010921","regulation of phosphatase activity",7,1,1.47,1850,"0.80843","0.59857","0.5986" +"GO:0045785","positive regulation of cell adhesion",7,1,1.47,1851,"0.80843","0.59857","0.5986" +"GO:0031346","positive regulation of cell projection o...",7,0,1.47,2471,"1.00000","0.59857","0.5986" +"GO:0043009","chordate embryonic development",34,9,7.14,574,"0.27363","0.59968","0.5997" +"GO:0071705","nitrogen compound transport",159,36,33.4,680,"0.33141","0.60001","0.6000" +"GO:0008285","negative regulation of cell proliferatio...",18,5,3.78,679,"0.32182","0.60023","0.6002" +"GO:0031960","response to corticosteroid",7,2,1.47,895,"0.45086","0.60094","0.6009" +"GO:0051591","response to cAMP",7,2,1.47,896,"0.45086","0.60094","0.6009" +"GO:0071804","cellular potassium ion transport",7,1,1.47,1852,"0.80843","0.60094","0.6009" +"GO:0071805","potassium ion transmembrane transport",7,1,1.47,1853,"0.80843","0.60094","0.6009" +"GO:0051262","protein tetramerization",7,0,1.47,2472,"1.00000","0.60094","0.6009" +"GO:0034655","nucleobase-containing compound catabolic...",40,8,8.4,1441,"0.62503","0.60112","0.6011" +"GO:0034504","protein localization to nucleus",23,7,4.83,432,"0.19152","0.60168","0.6017" +"GO:0016579","protein deubiquitination",19,5,3.99,745,"0.36806","0.60193","0.6019" +"GO:0043967","histone H4 acetylation",7,2,1.47,897,"0.45086","0.60213","0.6021" +"GO:0030155","regulation of cell adhesion",16,4,3.36,862,"0.44210","0.60282","0.6028" +"GO:0000028","ribosomal small subunit assembly",3,0,0.63,2473,"1.00000","0.60311","0.6031" +"GO:0051348","negative regulation of transferase activ...",15,2,3.15,1955,"0.85552","0.60403","0.6040" +"GO:0009895","negative regulation of catabolic process",11,3,2.31,836,"0.41598","0.60426","0.6043" +"GO:0016358","dendrite development",7,0,1.47,2474,"1.00000","0.60450","0.6045" +"GO:0035690","cellular response to drug",16,3,3.36,1517,"0.68481","0.60451","0.6045" +"GO:0006636","unsaturated fatty acid biosynthetic proc...",3,1,0.63,1053,"0.50718","0.60466","0.6047" +"GO:0010332","response to gamma radiation",3,0,0.63,2475,"1.00000","0.60543","0.6054" +"GO:0040018","positive regulation of multicellular org...",3,0,0.63,2476,"1.00000","0.60543","0.6054" +"GO:0071479","cellular response to ionizing radiation",3,0,0.63,2477,"1.00000","0.60543","0.6054" +"GO:0071480","cellular response to gamma radiation",3,0,0.63,2478,"1.00000","0.60543","0.6054" +"GO:0090305","nucleic acid phosphodiester bond hydroly...",19,3,3.99,1818,"0.79531","0.60647","0.6065" +"GO:0016311","dephosphorylation",41,6,8.61,2011,"0.88953","0.60654","0.6065" +"GO:0007160","cell-matrix adhesion",5,1,1.05,1563,"0.69268","0.60672","0.6067" +"GO:0010810","regulation of cell-substrate adhesion",5,1,1.05,1564,"0.69268","0.60672","0.6067" +"GO:0014902","myotube differentiation",7,1,1.47,1854,"0.80843","0.60688","0.6069" +"GO:0042440","pigment metabolic process",7,0,1.47,2479,"1.00000","0.60688","0.6069" +"GO:0060249","anatomical structure homeostasis",28,5,5.88,1669,"0.73094","0.60748","0.6075" +"GO:0030278","regulation of ossification",5,0,1.05,2480,"1.00000","0.60752","0.6075" +"GO:0030279","negative regulation of ossification",5,0,1.05,2481,"1.00000","0.60752","0.6075" +"GO:0048736","appendage development",13,3,2.73,1183,"0.53519","0.60802","0.6080" +"GO:0002831","regulation of response to biotic stimulu...",6,1,1.26,1729,"0.75735","0.60912","0.6091" +"GO:0007254","JNK cascade",6,1,1.26,1730,"0.75735","0.60912","0.6091" +"GO:2000278","regulation of DNA biosynthetic process",6,0,1.26,2482,"1.00000","0.60912","0.6091" +"GO:0006986","response to unfolded protein",17,4,3.57,946,"0.49311","0.60960","0.6096" +"GO:0001942","hair follicle development",4,1,0.84,1343,"0.61081","0.60967","0.6097" +"GO:0022404","molting cycle process",4,1,0.84,1344,"0.61081","0.60967","0.6097" +"GO:0022405","hair cycle process",4,1,0.84,1345,"0.61081","0.60967","0.6097" +"GO:0042303","molting cycle",4,1,0.84,1346,"0.61081","0.60967","0.6097" +"GO:0042633","hair cycle",4,1,0.84,1347,"0.61081","0.60967","0.6097" +"GO:0045995","regulation of embryonic development",4,1,0.84,1348,"0.61081","0.60967","0.6097" +"GO:0098773","skin epidermis development",4,1,0.84,1349,"0.61081","0.60967","0.6097" +"GO:0090596","sensory organ morphogenesis",27,7,5.67,681,"0.33322","0.60974","0.6097" +"GO:0045444","fat cell differentiation",12,0,2.52,2483,"1.00000","0.61064","0.6106" +"GO:0048285","organelle fission",37,10,7.77,557,"0.23524","0.61140","0.6114" +"GO:0009719","response to endogenous stimulus",74,13,15.54,1880,"0.80913","0.61152","0.6115" +"GO:0007416","synapse assembly",6,0,1.26,2484,"1.00000","0.61187","0.6119" +"GO:0000724","double-strand break repair via homologou...",4,1,0.84,1350,"0.61081","0.61460","0.6146" +"GO:0000725","recombinational repair",4,1,0.84,1351,"0.61081","0.61460","0.6146" +"GO:0002088","lens development in camera-type eye",6,0,1.26,2485,"1.00000","0.61516","0.6152" +"GO:0034097","response to cytokine",27,4,5.67,1947,"0.85006","0.61519","0.6152" +"GO:0198738","cell-cell signaling by wnt",26,7,5.46,667,"0.29589","0.61530","0.6153" +"GO:0043401","steroid hormone mediated signaling pathw...",16,2,3.36,1976,"0.87991","0.61573","0.6157" +"GO:0045022","early endosome to late endosome transpor...",3,0,0.63,2486,"1.00000","0.61785","0.6178" +"GO:0098927","vesicle-mediated transport between endos...",3,0,0.63,2487,"1.00000","0.61785","0.6178" +"GO:0009062","fatty acid catabolic process",9,2,1.89,1255,"0.59390","0.61830","0.6183" +"GO:0050766","positive regulation of phagocytosis",9,3,1.89,661,"0.28848","0.61830","0.6183" +"GO:0001503","ossification",8,0,1.68,2488,"1.00000","0.61849","0.6185" +"GO:0042446","hormone biosynthetic process",3,1,0.63,1054,"0.50718","0.61863","0.6186" +"GO:0034622","cellular protein-containing complex asse...",109,17,22.89,2107,"0.94174","0.62220","0.6222" +"GO:0048520","positive regulation of behavior",4,1,0.84,1352,"0.61081","0.62400","0.6240" +"GO:0061061","muscle structure development",38,7,7.98,1657,"0.71497","0.62422","0.6242" +"GO:0046700","heterocycle catabolic process",47,10,9.87,1185,"0.53997","0.62472","0.6247" +"GO:0032879","regulation of localization",104,19,21.84,1801,"0.79210","0.62477","0.6248" +"GO:0090501","RNA phosphodiester bond hydrolysis",15,2,3.15,1956,"0.85552","0.62489","0.6249" +"GO:0071216","cellular response to biotic stimulus",5,1,1.05,1565,"0.69268","0.62576","0.6258" +"GO:0000462","maturation of SSU-rRNA from tricistronic...",5,0,1.05,2489,"1.00000","0.62576","0.6258" +"GO:0007565","female pregnancy",5,0,1.05,2490,"1.00000","0.62576","0.6258" +"GO:0002429","immune response-activating cell surface ...",7,2,1.47,898,"0.45086","0.62585","0.6258" +"GO:0030258","lipid modification",19,4,3.99,1219,"0.58845","0.62656","0.6266" +"GO:1903825","organic acid transmembrane transport",14,4,2.94,690,"0.33655","0.62680","0.6268" +"GO:1905039","carboxylic acid transmembrane transport",14,4,2.94,691,"0.33655","0.62680","0.6268" +"GO:0044085","cellular component biogenesis",258,41,54.19,2220,"0.98796","0.62703","0.6270" +"GO:1902969","mitotic DNA replication",3,1,0.63,1055,"0.50718","0.62793","0.6279" +"GO:0030198","extracellular matrix organization",10,3,2.1,730,"0.35262","0.62814","0.6281" +"GO:0043062","extracellular structure organization",10,3,2.1,731,"0.35262","0.62814","0.6281" +"GO:0006096","glycolytic process",7,2,1.47,899,"0.45086","0.62822","0.6282" +"GO:0006757","ATP generation from ADP",7,2,1.47,900,"0.45086","0.62822","0.6282" +"GO:0009135","purine nucleoside diphosphate metabolic ...",7,2,1.47,901,"0.45086","0.62822","0.6282" +"GO:0009179","purine ribonucleoside diphosphate metabo...",7,2,1.47,902,"0.45086","0.62822","0.6282" +"GO:0009185","ribonucleoside diphosphate metabolic pro...",7,2,1.47,903,"0.45086","0.62822","0.6282" +"GO:0042866","pyruvate biosynthetic process",7,2,1.47,904,"0.45086","0.62822","0.6282" +"GO:0046031","ADP metabolic process",7,2,1.47,905,"0.45086","0.62822","0.6282" +"GO:0045732","positive regulation of protein catabolic...",10,1,2.1,2032,"0.90578","0.62842","0.6284" +"GO:0072507","divalent inorganic cation homeostasis",14,4,2.94,692,"0.33655","0.62847","0.6285" +"GO:0045807","positive regulation of endocytosis",12,4,2.52,554,"0.23240","0.62851","0.6285" +"GO:0008631","intrinsic apoptotic signaling pathway in...",5,0,1.05,2491,"1.00000","0.62856","0.6286" +"GO:0010632","regulation of epithelial cell migration",5,0,1.05,2492,"1.00000","0.62856","0.6286" +"GO:0010634","positive regulation of epithelial cell m...",5,0,1.05,2493,"1.00000","0.62856","0.6286" +"GO:0009607","response to biotic stimulus",32,6,6.72,1523,"0.69189","0.62856","0.6286" +"GO:0006970","response to osmotic stress",9,2,1.89,1256,"0.59390","0.62906","0.6291" +"GO:0000288","nuclear-transcribed mRNA catabolic proce...",6,0,1.26,2494,"1.00000","0.63052","0.6305" +"GO:0006289","nucleotide-excision repair",8,2,1.68,1154,"0.52603","0.63053","0.6305" +"GO:0002440","production of molecular mediator of immu...",3,1,0.63,1056,"0.50718","0.63103","0.6310" +"GO:0007204","positive regulation of cytosolic calcium...",3,1,0.63,1057,"0.50718","0.63180","0.6318" +"GO:0032515","negative regulation of phosphoprotein ph...",3,1,0.63,1058,"0.50718","0.63180","0.6318" +"GO:0035308","negative regulation of protein dephospho...",3,1,0.63,1059,"0.50718","0.63180","0.6318" +"GO:0051480","regulation of cytosolic calcium ion conc...",3,1,0.63,1060,"0.50718","0.63180","0.6318" +"GO:0043271","negative regulation of ion transport",3,0,0.63,2495,"1.00000","0.63180","0.6318" +"GO:0007286","spermatid development",20,6,4.2,536,"0.22918","0.63366","0.6337" +"GO:0048515","spermatid differentiation",20,6,4.2,537,"0.22918","0.63366","0.6337" +"GO:0051602","response to electrical stimulus",8,3,1.68,533,"0.22537","0.63480","0.6348" +"GO:0008380","RNA splicing",60,13,12.6,949,"0.50113","0.63481","0.6348" +"GO:0033559","unsaturated fatty acid metabolic process",4,1,0.84,1353,"0.61081","0.63497","0.6350" +"GO:0008585","female gonad development",4,0,0.84,2496,"1.00000","0.63497","0.6350" +"GO:0009109","coenzyme catabolic process",4,0,0.84,2497,"1.00000","0.63497","0.6350" +"GO:0034698","response to gonadotropin",4,0,0.84,2498,"1.00000","0.63497","0.6350" +"GO:0035456","response to interferon-beta",8,0,1.68,2499,"1.00000","0.63591","0.6359" +"GO:0090100","positive regulation of transmembrane rec...",5,1,1.05,1566,"0.69268","0.63756","0.6376" +"GO:0055070","copper ion homeostasis",3,0,0.63,2500,"1.00000","0.63877","0.6388" +"GO:0071852","fungal-type cell wall organization or bi...",4,1,0.84,1354,"0.61081","0.63899","0.6390" +"GO:0007350","blastoderm segmentation",5,2,1.05,618,"0.28334","0.63916","0.6392" +"GO:0007472","wing disc morphogenesis",5,2,1.05,619,"0.28334","0.63916","0.6392" +"GO:0035120","post-embryonic appendage morphogenesis",5,2,1.05,620,"0.28334","0.63916","0.6392" +"GO:0046661","male sex differentiation",8,2,1.68,1155,"0.52603","0.64002","0.6400" +"GO:0051169","nuclear transport",39,11,8.19,410,"0.17842","0.64100","0.6410" +"GO:0009063","cellular amino acid catabolic process",14,4,2.94,693,"0.33655","0.64104","0.6410" +"GO:0051052","regulation of DNA metabolic process",13,2,2.73,1806,"0.79279","0.64160","0.6416" +"GO:0006886","intracellular protein transport",109,24,22.89,850,"0.43400","0.64186","0.6419" +"GO:0044267","cellular protein metabolic process",623,114,130.86,2177,"0.97518","0.41110","0.6428" +"GO:0051017","actin filament bundle assembly",4,1,0.84,1355,"0.61081","0.64278","0.6428" +"GO:0061572","actin filament bundle organization",4,1,0.84,1356,"0.61081","0.64278","0.6428" +"GO:0009057","macromolecule catabolic process",109,28,22.89,356,"0.13526","0.03650","0.6430" +"GO:0045930","negative regulation of mitotic cell cycl...",14,3,2.94,1231,"0.58937","0.64356","0.6436" +"GO:0010631","epithelial cell migration",9,1,1.89,1986,"0.88063","0.64382","0.6438" +"GO:0035304","regulation of protein dephosphorylation",6,1,1.26,1731,"0.75735","0.64421","0.6442" +"GO:0042098","T cell proliferation",6,0,1.26,2501,"1.00000","0.64421","0.6442" +"GO:0051385","response to mineralocorticoid",6,2,1.26,770,"0.36933","0.64640","0.6464" +"GO:0060359","response to ammonium ion",6,0,1.26,2502,"1.00000","0.64640","0.6464" +"GO:0097306","cellular response to alcohol",6,0,1.26,2503,"1.00000","0.64640","0.6464" +"GO:1903311","regulation of mRNA metabolic process",18,4,3.78,1188,"0.54205","0.64687","0.6469" +"GO:0002118","aggressive behavior",6,2,1.26,771,"0.36933","0.64858","0.6486" +"GO:0002121","inter-male aggressive behavior",6,2,1.26,772,"0.36933","0.64858","0.6486" +"GO:0001843","neural tube closure",4,0,0.84,2504,"1.00000","0.64948","0.6495" +"GO:0060606","tube closure",4,0,0.84,2505,"1.00000","0.64948","0.6495" +"GO:0031101","fin regeneration",6,1,1.26,1732,"0.75735","0.64968","0.6497" +"GO:0043069","negative regulation of programmed cell d...",37,10,7.77,558,"0.23524","0.65031","0.6503" +"GO:0006206","pyrimidine nucleobase metabolic process",3,1,0.63,1061,"0.50718","0.65037","0.6504" +"GO:0006207","'de novo' pyrimidine nucleobase biosynth...",3,1,0.63,1062,"0.50718","0.65037","0.6504" +"GO:0006541","glutamine metabolic process",3,1,0.63,1063,"0.50718","0.65037","0.6504" +"GO:0019856","pyrimidine nucleobase biosynthetic proce...",3,1,0.63,1064,"0.50718","0.65037","0.6504" +"GO:0006875","cellular metal ion homeostasis",19,5,3.99,746,"0.36806","0.65102","0.6510" +"GO:0019217","regulation of fatty acid metabolic proce...",3,1,0.63,1065,"0.50718","0.65114","0.6511" +"GO:0042304","regulation of fatty acid biosynthetic pr...",3,1,0.63,1066,"0.50718","0.65114","0.6511" +"GO:0006890","retrograde vesicle-mediated transport, G...",7,1,1.47,1855,"0.80843","0.65187","0.6519" +"GO:0042592","homeostatic process",100,19,21,1662,"0.72983","0.65201","0.6520" +"GO:0043090","amino acid import",3,0,0.63,2506,"1.00000","0.65268","0.6527" +"GO:0042274","ribosomal small subunit biogenesis",12,1,2.52,2099,"0.94133","0.65291","0.6529" +"GO:0098656","anion transmembrane transport",19,4,3.99,1220,"0.58845","0.65676","0.6568" +"GO:0051301","cell division",24,6,5.04,806,"0.39117","0.65711","0.6571" +"GO:0006488","dolichol-linked oligosaccharide biosynth...",5,2,1.05,621,"0.28334","0.65711","0.6571" +"GO:0050908","detection of light stimulus involved in ...",3,1,0.63,1067,"0.50718","0.65731","0.6573" +"GO:0050962","detection of light stimulus involved in ...",3,1,0.63,1068,"0.50718","0.65731","0.6573" +"GO:0060537","muscle tissue development",19,5,3.99,747,"0.36806","0.65768","0.6577" +"GO:0045184","establishment of protein localization",147,30,30.88,1272,"0.60631","0.65785","0.6579" +"GO:0006413","translational initiation",19,3,3.99,1819,"0.79531","0.65840","0.6584" +"GO:2000027","regulation of animal organ morphogenesis",10,3,2.1,732,"0.35262","0.65866","0.6587" +"GO:0002119","nematode larval development",4,1,0.84,1357,"0.61081","0.65949","0.6595" +"GO:0019748","secondary metabolic process",3,0,0.63,2507,"1.00000","0.65962","0.6596" +"GO:0043066","negative regulation of apoptotic process",35,9,7.35,670,"0.30521","0.65990","0.6599" +"GO:0006378","mRNA polyadenylation",6,2,1.26,773,"0.36933","0.66004","0.6600" +"GO:0006379","mRNA cleavage",6,2,1.26,774,"0.36933","0.66004","0.6600" +"GO:0043631","RNA polyadenylation",6,2,1.26,775,"0.36933","0.66004","0.6600" +"GO:0042445","hormone metabolic process",16,7,3.36,88,"0.03380","0.12725","0.6612" +"GO:0022408","negative regulation of cell-cell adhesio...",3,1,0.63,1069,"0.50718","0.66193","0.6619" +"GO:0070979","protein K11-linked ubiquitination",3,1,0.63,1070,"0.50718","0.66423","0.6642" +"GO:0050830","defense response to Gram-positive bacter...",3,0,0.63,2508,"1.00000","0.66500","0.6650" +"GO:0016458","gene silencing",19,5,3.99,748,"0.36806","0.66545","0.6655" +"GO:0032872","regulation of stress-activated MAPK casc...",6,1,1.26,1733,"0.75735","0.66548","0.6655" +"GO:0070302","regulation of stress-activated protein k...",6,1,1.26,1734,"0.75735","0.66548","0.6655" +"GO:0009187","cyclic nucleotide metabolic process",5,1,1.05,1567,"0.69268","0.66665","0.6667" +"GO:0009190","cyclic nucleotide biosynthetic process",5,1,1.05,1568,"0.69268","0.66665","0.6667" +"GO:0044093","positive regulation of molecular functio...",64,14,13.44,937,"0.48138","0.66678","0.6668" +"GO:0051129","negative regulation of cellular componen...",42,9,8.82,1171,"0.53450","0.66738","0.6674" +"GO:0007389","pattern specification process",32,8,6.72,740,"0.35347","0.66856","0.6686" +"GO:0071363","cellular response to growth factor stimu...",21,2,4.41,2131,"0.95401","0.66899","0.6690" +"GO:0046822","regulation of nucleocytoplasmic transpor...",5,2,1.05,622,"0.28334","0.66903","0.6690" +"GO:0046839","phospholipid dephosphorylation",6,1,1.26,1735,"0.75735","0.66928","0.6693" +"GO:0009617","response to bacterium",18,4,3.78,1189,"0.54205","0.66957","0.6696" +"GO:0034332","adherens junction organization",4,0,0.84,2509,"1.00000","0.67059","0.6706" +"GO:0034333","adherens junction assembly",4,0,0.84,2510,"1.00000","0.67059","0.6706" +"GO:0035458","cellular response to interferon-beta",7,0,1.47,2511,"1.00000","0.67303","0.6730" +"GO:0060795","cell fate commitment involved in formati...",4,0,0.84,2512,"1.00000","0.67347","0.6735" +"GO:0071695","anatomical structure maturation",8,2,1.68,1156,"0.52603","0.67386","0.6739" +"GO:0010948","negative regulation of cell cycle proces...",14,4,2.94,694,"0.33655","0.67521","0.6752" +"GO:0045639","positive regulation of myeloid cell diff...",5,1,1.05,1569,"0.69268","0.67636","0.6764" +"GO:0045648","positive regulation of erythrocyte diffe...",5,1,1.05,1570,"0.69268","0.67636","0.6764" +"GO:1903708","positive regulation of hemopoiesis",5,1,1.05,1571,"0.69268","0.67636","0.6764" +"GO:0032259","methylation",43,6,9.03,2060,"0.91457","0.67698","0.6770" +"GO:0007029","endoplasmic reticulum organization",9,2,1.89,1257,"0.59390","0.67850","0.6785" +"GO:0009314","response to radiation",25,3,5.25,2070,"0.92146","0.67853","0.6785" +"GO:0034404","nucleobase-containing small molecule bio...",20,5,4.2,815,"0.41435","0.67885","0.6788" +"GO:0042325","regulation of phosphorylation",60,11,12.6,1675,"0.74435","0.67953","0.6795" +"GO:0006807","nitrogen compound metabolic process",1493,282,313.59,2265,"0.99881","0.52816","0.6799" +"GO:0006437","tyrosyl-tRNA aminoacylation",3,0,0.63,2513,"1.00000","0.68033","0.6803" +"GO:0051050","positive regulation of transport",35,8,7.35,912,"0.45949","0.68098","0.6810" +"GO:0030100","regulation of endocytosis",14,4,2.94,695,"0.33655","0.68266","0.6827" +"GO:0051272","positive regulation of cellular componen...",14,1,2.94,2147,"0.96348","0.68266","0.6827" +"GO:0032418","lysosome localization",5,0,1.05,2514,"1.00000","0.68307","0.6831" +"GO:0065002","intracellular protein transmembrane tran...",11,2,2.31,1633,"0.70716","0.68378","0.6838" +"GO:0030149","sphingolipid catabolic process",4,1,0.84,1358,"0.61081","0.68384","0.6838" +"GO:0046466","membrane lipid catabolic process",4,1,0.84,1359,"0.61081","0.68384","0.6838" +"GO:0048580","regulation of post-embryonic development",5,2,1.05,623,"0.28334","0.68386","0.6839" +"GO:0032006","regulation of TOR signaling",11,2,2.31,1634,"0.70716","0.68405","0.6840" +"GO:0002791","regulation of peptide secretion",4,1,0.84,1360,"0.61081","0.68406","0.6841" +"GO:0030072","peptide hormone secretion",4,1,0.84,1361,"0.61081","0.68406","0.6841" +"GO:0030073","insulin secretion",4,1,0.84,1362,"0.61081","0.68406","0.6841" +"GO:0030808","regulation of nucleotide biosynthetic pr...",4,1,0.84,1363,"0.61081","0.68406","0.6841" +"GO:0046879","hormone secretion",4,1,0.84,1364,"0.61081","0.68406","0.6841" +"GO:0046883","regulation of hormone secretion",4,1,0.84,1365,"0.61081","0.68406","0.6841" +"GO:0051196","regulation of coenzyme metabolic process",4,1,0.84,1366,"0.61081","0.68406","0.6841" +"GO:0061418","regulation of transcription from RNA pol...",4,1,0.84,1367,"0.61081","0.68406","0.6841" +"GO:0071326","cellular response to monosaccharide stim...",4,1,0.84,1368,"0.61081","0.68406","0.6841" +"GO:0071331","cellular response to hexose stimulus",4,1,0.84,1369,"0.61081","0.68406","0.6841" +"GO:0071333","cellular response to glucose stimulus",4,1,0.84,1370,"0.61081","0.68406","0.6841" +"GO:0090276","regulation of peptide hormone secretion",4,1,0.84,1371,"0.61081","0.68406","0.6841" +"GO:1900371","regulation of purine nucleotide biosynth...",4,1,0.84,1372,"0.61081","0.68406","0.6841" +"GO:0010039","response to iron ion",4,0,0.84,2515,"1.00000","0.68406","0.6841" +"GO:0035050","embryonic heart tube development",4,0,0.84,2516,"1.00000","0.68406","0.6841" +"GO:0048771","tissue remodeling",6,2,1.26,776,"0.36933","0.68444","0.6844" +"GO:1905330","regulation of morphogenesis of an epithe...",6,2,1.26,777,"0.36933","0.68444","0.6844" +"GO:0002376","immune system process",69,17,14.49,571,"0.26823","0.68461","0.6846" +"GO:0044265","cellular macromolecule catabolic process",90,22,18.9,561,"0.24326","0.04298","0.6848" +"GO:0001745","compound eye morphogenesis",9,3,1.89,662,"0.28848","0.68512","0.6851" +"GO:0007140","male meiotic nuclear division",7,2,1.47,906,"0.45086","0.68588","0.6859" +"GO:0008356","asymmetric cell division",7,2,1.47,907,"0.45086","0.68588","0.6859" +"GO:0006974","cellular response to DNA damage stimulus",76,16,15.96,1194,"0.54229","0.68697","0.6870" +"GO:0031056","regulation of histone modification",5,1,1.05,1572,"0.69268","0.68701","0.6870" +"GO:0006893","Golgi to plasma membrane transport",5,0,1.05,2517,"1.00000","0.68720","0.6872" +"GO:0071219","cellular response to molecule of bacteri...",4,1,0.84,1373,"0.61081","0.68736","0.6874" +"GO:0071222","cellular response to lipopolysaccharide",4,1,0.84,1374,"0.61081","0.68736","0.6874" +"GO:0000478","endonucleolytic cleavage involved in rRN...",4,0,0.84,2518,"1.00000","0.68736","0.6874" +"GO:0000479","endonucleolytic cleavage of tricistronic...",4,0,0.84,2519,"1.00000","0.68736","0.6874" +"GO:0044238","primary metabolic process",1585,310,332.91,2219,"0.98733","0.46041","0.6884" +"GO:0002165","instar larval or pupal development",10,3,2.1,733,"0.35262","0.68849","0.6885" +"GO:0009886","post-embryonic animal morphogenesis",10,3,2.1,734,"0.35262","0.68849","0.6885" +"GO:0006260","DNA replication",46,7,9.66,1975,"0.87894","0.68853","0.6885" +"GO:0010817","regulation of hormone levels",23,9,4.83,91,"0.03599","0.13390","0.6891" +"GO:0010769","regulation of cell morphogenesis involve...",9,0,1.89,2520,"1.00000","0.69040","0.6904" +"GO:0021953","central nervous system neuron differenti...",4,0,0.84,2521,"1.00000","0.69110","0.6911" +"GO:0008064","regulation of actin polymerization or de...",18,3,3.78,1780,"0.76265","0.69115","0.6912" +"GO:0030832","regulation of actin filament length",18,3,3.78,1781,"0.76265","0.69115","0.6912" +"GO:0043933","protein-containing complex subunit organ...",146,24,30.67,2095,"0.93611","0.69183","0.6918" +"GO:1901661","quinone metabolic process",6,0,1.26,2522,"1.00000","0.69198","0.6920" +"GO:0051246","regulation of protein metabolic process",128,30,26.89,575,"0.27626","0.69214","0.6921" +"GO:0006418","tRNA aminoacylation for protein translat...",25,2,5.25,2190,"0.97935","0.69293","0.6929" +"GO:0043038","amino acid activation",25,2,5.25,2191,"0.97935","0.69293","0.6929" +"GO:0043039","tRNA aminoacylation",25,2,5.25,2192,"0.97935","0.69293","0.6929" +"GO:0000578","embryonic axis specification",5,1,1.05,1573,"0.69268","0.69329","0.6933" +"GO:0001776","leukocyte homeostasis",5,0,1.05,2523,"1.00000","0.69329","0.6933" +"GO:0002260","lymphocyte homeostasis",5,0,1.05,2524,"1.00000","0.69329","0.6933" +"GO:0022409","positive regulation of cell-cell adhesio...",5,0,1.05,2525,"1.00000","0.69329","0.6933" +"GO:0042129","regulation of T cell proliferation",5,0,1.05,2526,"1.00000","0.69329","0.6933" +"GO:0015718","monocarboxylic acid transport",9,2,1.89,1258,"0.59390","0.69436","0.6944" +"GO:0098813","nuclear chromosome segregation",17,4,3.57,947,"0.49311","0.69469","0.6947" +"GO:1903522","regulation of blood circulation",12,3,2.52,931,"0.47717","0.69471","0.6947" +"GO:0007169","transmembrane receptor protein tyrosine ...",14,4,2.94,696,"0.33655","0.69501","0.6950" +"GO:0043200","response to amino acid",5,0,1.05,2527,"1.00000","0.69525","0.6953" +"GO:0051289","protein homotetramerization",5,0,1.05,2528,"1.00000","0.69525","0.6953" +"GO:0033993","response to lipid",54,11,11.34,1270,"0.60038","0.69607","0.6961" +"GO:0070925","organelle assembly",60,9,12.6,2057,"0.91026","0.69674","0.6967" +"GO:0009651","response to salt stress",7,1,1.47,1856,"0.80843","0.69750","0.6975" +"GO:0008291","acetylcholine metabolic process",6,2,1.26,778,"0.36933","0.69842","0.6984" +"GO:1900619","acetate ester metabolic process",6,2,1.26,779,"0.36933","0.69842","0.6984" +"GO:0006490","oligosaccharide-lipid intermediate biosy...",6,2,1.26,780,"0.36933","0.69949","0.6995" +"GO:0019439","aromatic compound catabolic process",47,11,9.87,810,"0.39793","0.70094","0.7009" +"GO:0006470","protein dephosphorylation",26,3,5.46,2093,"0.93369","0.70106","0.7011" +"GO:0043462","regulation of ATPase activity",10,3,2.1,735,"0.35262","0.70193","0.7019" +"GO:0006367","transcription initiation from RNA polyme...",12,3,2.52,932,"0.47717","0.70267","0.7027" +"GO:0034605","cellular response to heat",14,4,2.94,697,"0.33655","0.70320","0.7032" +"GO:0060491","regulation of cell projection assembly",14,2,2.94,1895,"0.82669","0.70484","0.7048" +"GO:0120032","regulation of plasma membrane bounded ce...",14,2,2.94,1896,"0.82669","0.70484","0.7048" +"GO:0010256","endomembrane system organization",25,5,5.25,1449,"0.62811","0.70557","0.7056" +"GO:0000375","RNA splicing, via transesterification re...",51,12,10.71,785,"0.38092","0.70564","0.7056" +"GO:0000377","RNA splicing, via transesterification re...",51,12,10.71,786,"0.38092","0.70564","0.7056" +"GO:0000398","mRNA splicing, via spliceosome",51,12,10.71,787,"0.38092","0.70564","0.7056" +"GO:0006793","phosphorus metabolic process",350,69,73.51,1772,"0.75802","0.70632","0.7063" +"GO:0006906","vesicle fusion",4,1,0.84,1375,"0.61081","0.70639","0.7064" +"GO:0090174","organelle membrane fusion",4,1,0.84,1376,"0.61081","0.70639","0.7064" +"GO:0010562","positive regulation of phosphorus metabo...",24,2,5.04,2175,"0.97471","0.70693","0.7069" +"GO:0045937","positive regulation of phosphate metabol...",24,2,5.04,2176,"0.97471","0.70693","0.7069" +"GO:0071345","cellular response to cytokine stimulus",24,3,5.04,2055,"0.90720","0.70693","0.7069" +"GO:0046856","phosphatidylinositol dephosphorylation",5,1,1.05,1574,"0.69268","0.70697","0.7070" +"GO:0042246","tissue regeneration",10,3,2.1,736,"0.35262","0.70938","0.7094" +"GO:0070265","necrotic cell death",4,0,0.84,2529,"1.00000","0.70965","0.7097" +"GO:0042182","ketone catabolic process",3,1,0.63,1071,"0.50718","0.71141","0.7114" +"GO:0006690","icosanoid metabolic process",3,0,0.63,2530,"1.00000","0.71141","0.7114" +"GO:0006692","prostanoid metabolic process",3,0,0.63,2531,"1.00000","0.71141","0.7114" +"GO:0006693","prostaglandin metabolic process",3,0,0.63,2532,"1.00000","0.71141","0.7114" +"GO:0009111","vitamin catabolic process",3,0,0.63,2533,"1.00000","0.71141","0.7114" +"GO:0030728","ovulation",3,0,0.63,2534,"1.00000","0.71141","0.7114" +"GO:0042373","vitamin K metabolic process",3,0,0.63,2535,"1.00000","0.71141","0.7114" +"GO:0001816","cytokine production",16,5,3.36,542,"0.23230","0.71151","0.7115" +"GO:0035107","appendage morphogenesis",12,2,2.52,1688,"0.75316","0.71173","0.7117" +"GO:0030705","cytoskeleton-dependent intracellular tra...",16,4,3.36,863,"0.44210","0.71303","0.7130" +"GO:0071704","organic substance metabolic process",1672,339,351.19,2012,"0.89068","0.49559","0.7131" +"GO:0007062","sister chromatid cohesion",5,1,1.05,1575,"0.69268","0.71318","0.7132" +"GO:0061982","meiosis I cell cycle process",3,1,0.63,1072,"0.50718","0.71366","0.7137" +"GO:0051046","regulation of secretion",6,1,1.26,1736,"0.75735","0.71388","0.7139" +"GO:1903530","regulation of secretion by cell",6,1,1.26,1737,"0.75735","0.71388","0.7139" +"GO:0006955","immune response",37,10,7.77,559,"0.23524","0.71403","0.7140" +"GO:0051962","positive regulation of nervous system de...",16,1,3.36,2181,"0.97727","0.71476","0.7148" +"GO:0015695","organic cation transport",3,1,0.63,1073,"0.50718","0.71591","0.7159" +"GO:0006265","DNA topological change",3,0,0.63,2536,"1.00000","0.71665","0.7167" +"GO:0002683","negative regulation of immune system pro...",10,2,2.1,1487,"0.65422","0.71692","0.7169" +"GO:0050909","sensory perception of taste",3,0,0.63,2537,"1.00000","0.71740","0.7174" +"GO:0006733","oxidoreduction coenzyme metabolic proces...",20,5,4.2,816,"0.41435","0.71766","0.7177" +"GO:0007043","cell-cell junction assembly",5,1,1.05,1576,"0.69268","0.71802","0.7180" +"GO:0043297","apical junction assembly",5,1,1.05,1577,"0.69268","0.71802","0.7180" +"GO:0010507","negative regulation of autophagy",3,1,0.63,1074,"0.50718","0.71815","0.7182" +"GO:0007600","sensory perception",32,7,6.72,1135,"0.52172","0.71854","0.7185" +"GO:0045834","positive regulation of lipid metabolic p...",6,1,1.26,1738,"0.75735","0.71918","0.7192" +"GO:0006366","transcription by RNA polymerase II",109,17,22.89,2108,"0.94174","0.71943","0.7194" +"GO:0071554","cell wall organization or biogenesis",6,1,1.26,1739,"0.75735","0.71970","0.7197" +"GO:0046148","pigment biosynthetic process",6,0,1.26,2538,"1.00000","0.72129","0.7213" +"GO:0044270","cellular nitrogen compound catabolic pro...",45,10,9.45,936,"0.47898","0.72146","0.7215" +"GO:0006376","mRNA splice site selection",3,1,0.63,1075,"0.50718","0.72188","0.7219" +"GO:0048513","animal organ development",175,39,36.76,742,"0.36368","0.72252","0.7225" +"GO:2000147","positive regulation of cell motility",13,1,2.73,2125,"0.95371","0.72491","0.7249" +"GO:0006625","protein targeting to peroxisome",4,1,0.84,1377,"0.61081","0.72520","0.7252" +"GO:0043574","peroxisomal transport",4,1,0.84,1378,"0.61081","0.72520","0.7252" +"GO:0072662","protein localization to peroxisome",4,1,0.84,1379,"0.61081","0.72520","0.7252" +"GO:0072663","establishment of protein localization to...",4,1,0.84,1380,"0.61081","0.72520","0.7252" +"GO:0032535","regulation of cellular component size",31,4,6.51,2062,"0.91646","0.72573","0.7257" +"GO:0019220","regulation of phosphate metabolic proces...",68,13,14.28,1621,"0.69739","0.72671","0.7267" +"GO:0051174","regulation of phosphorus metabolic proce...",68,13,14.28,1622,"0.69739","0.72671","0.7267" +"GO:0071702","organic substance transport",190,42,39.91,784,"0.37904","0.72760","0.7276" +"GO:0007166","cell surface receptor signaling pathway",100,23,21,702,"0.34707","0.72812","0.7281" +"GO:0002011","morphogenesis of an epithelial sheet",3,1,0.63,1076,"0.50718","0.73006","0.7301" +"GO:0035313","wound healing, spreading of epidermal ce...",3,1,0.63,1077,"0.50718","0.73006","0.7301" +"GO:0044319","wound healing, spreading of cells",3,1,0.63,1078,"0.50718","0.73006","0.7301" +"GO:0090504","epiboly",3,1,0.63,1079,"0.50718","0.73006","0.7301" +"GO:0090505","epiboly involved in wound healing",3,1,0.63,1080,"0.50718","0.73006","0.7301" +"GO:0048511","rhythmic process",24,6,5.04,807,"0.39117","0.73054","0.7305" +"GO:0072384","organelle transport along microtubule",4,1,0.84,1381,"0.61081","0.73056","0.7306" +"GO:0071229","cellular response to acid chemical",9,1,1.89,1987,"0.88063","0.73206","0.7321" +"GO:0016055","Wnt signaling pathway",24,6,5.04,808,"0.39117","0.73264","0.7326" +"GO:1905114","cell surface receptor signaling pathway ...",24,6,5.04,809,"0.39117","0.73264","0.7326" +"GO:0006338","chromatin remodeling",16,3,3.36,1518,"0.68481","0.73286","0.7329" +"GO:0038095","Fc-epsilon receptor signaling pathway",3,1,0.63,1081,"0.50718","0.73302","0.7330" +"GO:0050852","T cell receptor signaling pathway",3,1,0.63,1082,"0.50718","0.73302","0.7330" +"GO:0048514","blood vessel morphogenesis",13,1,2.73,2126,"0.95371","0.73323","0.7332" +"GO:0042073","intraciliary transport",3,0,0.63,2539,"1.00000","0.73376","0.7338" +"GO:0006119","oxidative phosphorylation",15,1,3.15,2169,"0.97119","0.73479","0.7348" +"GO:0006903","vesicle targeting",6,1,1.26,1740,"0.75735","0.73494","0.7349" +"GO:0009410","response to xenobiotic stimulus",5,0,1.05,2540,"1.00000","0.73567","0.7357" +"GO:0043279","response to alkaloid",5,0,1.05,2541,"1.00000","0.73567","0.7357" +"GO:0048568","embryonic organ development",28,5,5.88,1670,"0.73094","0.73574","0.7357" +"GO:0007095","mitotic G2 DNA damage checkpoint",3,1,0.63,1083,"0.50718","0.73671","0.7367" +"GO:0031572","G2 DNA damage checkpoint",3,1,0.63,1084,"0.50718","0.73671","0.7367" +"GO:0034330","cell junction organization",10,2,2.1,1488,"0.65422","0.73688","0.7369" +"GO:0009991","response to extracellular stimulus",32,6,6.72,1524,"0.69189","0.73689","0.7369" +"GO:0031667","response to nutrient levels",32,6,6.72,1525,"0.69189","0.73689","0.7369" +"GO:0008584","male gonad development",4,1,0.84,1382,"0.61081","0.73717","0.7372" +"GO:0046546","development of primary male sexual chara...",4,1,0.84,1383,"0.61081","0.73717","0.7372" +"GO:0030522","intracellular receptor signaling pathway",14,0,2.94,2542,"1.00000","0.73872","0.7387" +"GO:0043414","macromolecule methylation",36,6,7.56,1824,"0.79896","0.74005","0.7400" +"GO:0007044","cell-substrate junction assembly",3,0,0.63,2543,"1.00000","0.74112","0.7411" +"GO:0007045","cell-substrate adherens junction assembl...",3,0,0.63,2544,"1.00000","0.74112","0.7411" +"GO:0010812","negative regulation of cell-substrate ad...",3,0,0.63,2545,"1.00000","0.74112","0.7411" +"GO:0048041","focal adhesion assembly",3,0,0.63,2546,"1.00000","0.74112","0.7411" +"GO:0042135","neurotransmitter catabolic process",5,0,1.05,2547,"1.00000","0.74156","0.7416" +"GO:0072330","monocarboxylic acid biosynthetic process",23,5,4.83,1199,"0.54781","0.74200","0.7420" +"GO:0031325","positive regulation of cellular metaboli...",123,22,25.83,1908,"0.83692","0.74347","0.7435" +"GO:0016126","sterol biosynthetic process",4,1,0.84,1384,"0.61081","0.74480","0.7448" +"GO:0032365","intracellular lipid transport",4,1,0.84,1385,"0.61081","0.74480","0.7448" +"GO:1902652","secondary alcohol metabolic process",4,0,0.84,2548,"1.00000","0.74480","0.7448" +"GO:0051216","cartilage development",8,1,1.68,1931,"0.84877","0.74519","0.7452" +"GO:0007159","leukocyte cell-cell adhesion",4,1,0.84,1386,"0.61081","0.74607","0.7461" +"GO:0050851","antigen receptor-mediated signaling path...",4,1,0.84,1387,"0.61081","0.74607","0.7461" +"GO:1903037","regulation of leukocyte cell-cell adhesi...",4,1,0.84,1388,"0.61081","0.74607","0.7461" +"GO:0007528","neuromuscular junction development",4,0,0.84,2549,"1.00000","0.74607","0.7461" +"GO:0043029","T cell homeostasis",4,0,0.84,2550,"1.00000","0.74607","0.7461" +"GO:0048668","collateral sprouting",4,0,0.84,2551,"1.00000","0.74607","0.7461" +"GO:0010970","transport along microtubule",15,4,3.15,793,"0.38965","0.74697","0.7470" +"GO:0099111","microtubule-based transport",15,4,3.15,794,"0.38965","0.74697","0.7470" +"GO:0001508","action potential",4,0,0.84,2552,"1.00000","0.74776","0.7478" +"GO:0002027","regulation of heart rate",4,0,0.84,2553,"1.00000","0.74776","0.7478" +"GO:0006942","regulation of striated muscle contractio...",4,0,0.84,2554,"1.00000","0.74776","0.7478" +"GO:0035637","multicellular organismal signaling",4,0,0.84,2555,"1.00000","0.74776","0.7478" +"GO:0042711","maternal behavior",4,0,0.84,2556,"1.00000","0.74776","0.7478" +"GO:0045176","apical protein localization",4,0,0.84,2557,"1.00000","0.74776","0.7478" +"GO:0055117","regulation of cardiac muscle contraction",4,0,0.84,2558,"1.00000","0.74776","0.7478" +"GO:0060746","parental behavior",4,0,0.84,2559,"1.00000","0.74776","0.7478" +"GO:0061337","cardiac conduction",4,0,0.84,2560,"1.00000","0.74776","0.7478" +"GO:0071320","cellular response to cAMP",4,0,0.84,2561,"1.00000","0.74776","0.7478" +"GO:0072718","response to cisplatin",4,0,0.84,2562,"1.00000","0.74776","0.7478" +"GO:0086065","cell communication involved in cardiac c...",4,0,0.84,2563,"1.00000","0.74776","0.7478" +"GO:0097327","response to antineoplastic agent",4,0,0.84,2564,"1.00000","0.74776","0.7478" +"GO:0098739","import across plasma membrane",4,0,0.84,2565,"1.00000","0.74776","0.7478" +"GO:0110096","cellular response to aldehyde",4,0,0.84,2566,"1.00000","0.74776","0.7478" +"GO:2001259","positive regulation of cation channel ac...",4,0,0.84,2567,"1.00000","0.74776","0.7478" +"GO:0048749","compound eye development",11,3,2.31,837,"0.41598","0.74792","0.7479" +"GO:0042058","regulation of epidermal growth factor re...",4,1,0.84,1389,"0.61081","0.74860","0.7486" +"GO:0042059","negative regulation of epidermal growth ...",4,1,0.84,1390,"0.61081","0.74860","0.7486" +"GO:1901184","regulation of ERBB signaling pathway",4,1,0.84,1391,"0.61081","0.74860","0.7486" +"GO:1901185","negative regulation of ERBB signaling pa...",4,1,0.84,1392,"0.61081","0.74860","0.7486" +"GO:0006873","cellular ion homeostasis",21,5,4.41,916,"0.46007","0.74871","0.7487" +"GO:0030003","cellular cation homeostasis",21,5,4.41,917,"0.46007","0.74871","0.7487" +"GO:0030516","regulation of axon extension",4,0,0.84,2568,"1.00000","0.74965","0.7496" +"GO:0048675","axon extension",4,0,0.84,2569,"1.00000","0.74965","0.7496" +"GO:0070936","protein K48-linked ubiquitination",7,1,1.47,1857,"0.80843","0.74981","0.7498" +"GO:0050770","regulation of axonogenesis",7,0,1.47,2570,"1.00000","0.74981","0.7498" +"GO:0072595","maintenance of protein localization in o...",3,0,0.63,2571,"1.00000","0.74990","0.7499" +"GO:0006898","receptor-mediated endocytosis",4,1,0.84,1393,"0.61081","0.75154","0.7515" +"GO:0006334","nucleosome assembly",4,1,0.84,1394,"0.61081","0.75217","0.7522" +"GO:0031497","chromatin assembly",4,1,0.84,1395,"0.61081","0.75217","0.7522" +"GO:0034762","regulation of transmembrane transport",13,1,2.73,2127,"0.95371","0.75251","0.7525" +"GO:0032091","negative regulation of protein binding",7,2,1.47,908,"0.45086","0.75314","0.7531" +"GO:0030260","entry into host cell",4,1,0.84,1396,"0.61081","0.75364","0.7536" +"GO:0044409","entry into host",4,1,0.84,1397,"0.61081","0.75364","0.7536" +"GO:0051806","entry into cell of other organism involv...",4,1,0.84,1398,"0.61081","0.75364","0.7536" +"GO:0051828","entry into other organism involved in sy...",4,1,0.84,1399,"0.61081","0.75364","0.7536" +"GO:0000447","endonucleolytic cleavage in ITS1 to sepa...",3,0,0.63,2572,"1.00000","0.75498","0.7550" +"GO:0001824","blastocyst development",3,0,0.63,2573,"1.00000","0.75498","0.7550" +"GO:0016973","poly(A)+ mRNA export from nucleus",3,0,0.63,2574,"1.00000","0.75498","0.7550" +"GO:0050801","ion homeostasis",29,5,6.09,1773,"0.76022","0.75525","0.7553" +"GO:0098930","axonal transport",4,0,0.84,2575,"1.00000","0.75615","0.7561" +"GO:0032007","negative regulation of TOR signaling",3,0,0.63,2576,"1.00000","0.75643","0.7564" +"GO:0051147","regulation of muscle cell differentiatio...",6,1,1.26,1741,"0.75735","0.75665","0.7567" +"GO:0002181","cytoplasmic translation",8,2,1.68,1157,"0.52603","0.75751","0.7575" +"GO:0022414","reproductive process",100,23,21,703,"0.34707","0.75941","0.7594" +"GO:0006820","anion transport",37,8,7.77,1167,"0.52848","0.76201","0.7620" +"GO:0002224","toll-like receptor signaling pathway",3,1,0.63,1085,"0.50718","0.76435","0.7643" +"GO:0044314","protein K27-linked ubiquitination",3,1,0.63,1086,"0.50718","0.76435","0.7643" +"GO:0045466","R7 cell differentiation",3,1,0.63,1087,"0.50718","0.76435","0.7643" +"GO:0045676","regulation of R7 cell differentiation",3,1,0.63,1088,"0.50718","0.76435","0.7643" +"GO:0048132","female germ-line stem cell asymmetric di...",3,1,0.63,1089,"0.50718","0.76435","0.7643" +"GO:0048793","pronephros development",3,1,0.63,1090,"0.50718","0.76435","0.7643" +"GO:0085020","protein K6-linked ubiquitination",3,1,0.63,1091,"0.50718","0.76435","0.7643" +"GO:0097039","protein linear polyubiquitination",3,1,0.63,1092,"0.50718","0.76435","0.7643" +"GO:0048638","regulation of developmental growth",17,1,3.57,2197,"0.98208","0.76459","0.7646" +"GO:0051656","establishment of organelle localization",19,3,3.99,1820,"0.79531","0.76485","0.7648" +"GO:0048731","system development",238,50,49.99,1165,"0.52723","0.76516","0.7652" +"GO:0038093","Fc receptor signaling pathway",4,1,0.84,1400,"0.61081","0.76529","0.7653" +"GO:0006796","phosphate-containing compound metabolic ...",345,68,72.46,1700,"0.75712","0.76616","0.7662" +"GO:0006779","porphyrin-containing compound biosynthet...",5,1,1.05,1578,"0.69268","0.76627","0.7663" +"GO:0050906","detection of stimulus involved in sensor...",6,1,1.26,1742,"0.75735","0.76632","0.7663" +"GO:0070887","cellular response to chemical stimulus",103,17,21.63,2016,"0.90012","0.76649","0.7665" +"GO:0015693","magnesium ion transport",3,1,0.63,1093,"0.50718","0.76649","0.7665" +"GO:0008406","gonad development",10,2,2.1,1489,"0.65422","0.76714","0.7671" +"GO:0010669","epithelial structure maintenance",5,1,1.05,1579,"0.69268","0.76719","0.7672" +"GO:0042063","gliogenesis",8,1,1.68,1932,"0.84877","0.76764","0.7676" +"GO:0140013","meiotic nuclear division",8,2,1.68,1158,"0.52603","0.76822","0.7682" +"GO:0042327","positive regulation of phosphorylation",22,2,4.62,2142,"0.96227","0.76847","0.7685" +"GO:0031330","negative regulation of cellular cataboli...",9,2,1.89,1259,"0.59390","0.76863","0.7686" +"GO:0090151","establishment of protein localization to...",8,1,1.68,1933,"0.84877","0.76968","0.7697" +"GO:0007007","inner mitochondrial membrane organizatio...",8,0,1.68,2577,"1.00000","0.76968","0.7697" +"GO:0042176","regulation of protein catabolic process",22,3,4.62,1968,"0.87148","0.77085","0.7708" +"GO:1901989","positive regulation of cell cycle phase ...",4,1,0.84,1401,"0.61081","0.77352","0.7735" +"GO:0030031","cell projection assembly",25,3,5.25,2071,"0.92146","0.77419","0.7742" +"GO:0120031","plasma membrane bounded cell projection ...",25,3,5.25,2072,"0.92146","0.77419","0.7742" +"GO:0019098","reproductive behavior",11,3,2.31,838,"0.41598","0.77426","0.7743" +"GO:0032330","regulation of chondrocyte differentiatio...",3,1,0.63,1094,"0.50718","0.77433","0.7743" +"GO:0061035","regulation of cartilage development",3,1,0.63,1095,"0.50718","0.77433","0.7743" +"GO:0032271","regulation of protein polymerization",22,4,4.62,1650,"0.70969","0.77549","0.7755" +"GO:0016571","histone methylation",7,1,1.47,1858,"0.80843","0.77614","0.7761" +"GO:0009887","animal organ morphogenesis",54,12,11.34,919,"0.46623","0.77638","0.7764" +"GO:1901361","organic cyclic compound catabolic proces...",51,11,10.71,1133,"0.51629","0.77697","0.7770" +"GO:0010467","gene expression",724,114,152.07,2278,"0.99999","0.77718","0.7772" +"GO:0051494","negative regulation of cytoskeleton orga...",11,2,2.31,1635,"0.70716","0.77722","0.7772" +"GO:0018991","oviposition",6,2,1.26,781,"0.36933","0.77738","0.7774" +"GO:0061025","membrane fusion",5,1,1.05,1580,"0.69268","0.77801","0.7780" +"GO:0072593","reactive oxygen species metabolic proces...",11,2,2.31,1636,"0.70716","0.77833","0.7783" +"GO:0051716","cellular response to stimulus",447,86,93.89,1960,"0.85705","0.77886","0.7789" +"GO:0001932","regulation of protein phosphorylation",50,11,10.5,941,"0.48709","0.77954","0.7795" +"GO:0051345","positive regulation of hydrolase activit...",30,6,6.3,1446,"0.62610","0.78035","0.7804" +"GO:0009620","response to fungus",3,1,0.63,1096,"0.50718","0.78068","0.7807" +"GO:0009994","oocyte differentiation",3,1,0.63,1097,"0.50718","0.78068","0.7807" +"GO:0048599","oocyte development",3,1,0.63,1098,"0.50718","0.78068","0.7807" +"GO:0090598","male anatomical structure morphogenesis",3,1,0.63,1099,"0.50718","0.78068","0.7807" +"GO:0006278","RNA-dependent DNA biosynthetic process",3,0,0.63,2578,"1.00000","0.78068","0.7807" +"GO:0007004","telomere maintenance via telomerase",3,0,0.63,2579,"1.00000","0.78068","0.7807" +"GO:0009409","response to cold",3,0,0.63,2580,"1.00000","0.78068","0.7807" +"GO:0010833","telomere maintenance via telomere length...",3,0,0.63,2581,"1.00000","0.78068","0.7807" +"GO:0016233","telomere capping",3,0,0.63,2582,"1.00000","0.78068","0.7807" +"GO:0032204","regulation of telomere maintenance",3,0,0.63,2583,"1.00000","0.78068","0.7807" +"GO:0032206","positive regulation of telomere maintena...",3,0,0.63,2584,"1.00000","0.78068","0.7807" +"GO:0060428","lung epithelium development",3,0,0.63,2585,"1.00000","0.78068","0.7807" +"GO:0120034","positive regulation of plasma membrane b...",3,0,0.63,2586,"1.00000","0.78068","0.7807" +"GO:1904353","regulation of telomere capping",3,0,0.63,2587,"1.00000","0.78068","0.7807" +"GO:1904355","positive regulation of telomere capping",3,0,0.63,2588,"1.00000","0.78068","0.7807" +"GO:0010771","negative regulation of cell morphogenesi...",6,0,1.26,2589,"1.00000","0.78137","0.7814" +"GO:0061387","regulation of extent of cell growth",6,0,1.26,2590,"1.00000","0.78137","0.7814" +"GO:0006491","N-glycan processing",3,0,0.63,2591,"1.00000","0.78208","0.7821" +"GO:0046173","polyol biosynthetic process",6,1,1.26,1743,"0.75735","0.78236","0.7824" +"GO:0042181","ketone biosynthetic process",4,0,0.84,2592,"1.00000","0.78248","0.7825" +"GO:1901663","quinone biosynthetic process",4,0,0.84,2593,"1.00000","0.78248","0.7825" +"GO:0010720","positive regulation of cell development",14,0,2.94,2594,"1.00000","0.78308","0.7831" +"GO:0050769","positive regulation of neurogenesis",14,0,2.94,2595,"1.00000","0.78308","0.7831" +"GO:0006094","gluconeogenesis",5,1,1.05,1581,"0.69268","0.78436","0.7844" +"GO:0019319","hexose biosynthetic process",5,1,1.05,1582,"0.69268","0.78436","0.7844" +"GO:0046364","monosaccharide biosynthetic process",5,1,1.05,1583,"0.69268","0.78436","0.7844" +"GO:0009893","positive regulation of metabolic process",133,24,27.94,1904,"0.83333","0.78453","0.7845" +"GO:0008016","regulation of heart contraction",10,3,2.1,737,"0.35262","0.78498","0.7850" +"GO:0030518","intracellular steroid hormone receptor s...",10,0,2.1,2596,"1.00000","0.78536","0.7854" +"GO:0001666","response to hypoxia",11,2,2.31,1637,"0.70716","0.78724","0.7872" +"GO:0036293","response to decreased oxygen levels",11,2,2.31,1638,"0.70716","0.78724","0.7872" +"GO:0070482","response to oxygen levels",11,2,2.31,1639,"0.70716","0.78724","0.7872" +"GO:0007015","actin filament organization",27,3,5.67,2114,"0.94414","0.78739","0.7874" +"GO:0006357","regulation of transcription by RNA polym...",89,11,18.69,2226,"0.98882","0.78764","0.7876" +"GO:0051235","maintenance of location",16,3,3.36,1519,"0.68481","0.78890","0.7889" +"GO:0019991","septate junction assembly",3,1,0.63,1100,"0.50718","0.78906","0.7891" +"GO:0048332","mesoderm morphogenesis",3,1,0.63,1101,"0.50718","0.78906","0.7891" +"GO:0032526","response to retinoic acid",5,1,1.05,1584,"0.69268","0.78940","0.7894" +"GO:0022900","electron transport chain",14,1,2.94,2148,"0.96348","0.78987","0.7899" +"GO:0035459","cargo loading into vesicle",4,0,0.84,2597,"1.00000","0.79094","0.7909" +"GO:0007167","enzyme linked receptor protein signaling...",31,5,6.51,1884,"0.81149","0.79141","0.7914" +"GO:0043170","macromolecule metabolic process",1310,230,275.15,2280,"0.99999","0.64539","0.7923" +"GO:0030335","positive regulation of cell migration",11,1,2.31,2079,"0.92565","0.79353","0.7935" +"GO:0017004","cytochrome complex assembly",4,0,0.84,2598,"1.00000","0.79373","0.7937" +"GO:0071407","cellular response to organic cyclic comp...",26,2,5.46,2204,"0.98315","0.79389","0.7939" +"GO:0046631","alpha-beta T cell activation",5,1,1.05,1585,"0.69268","0.79405","0.7941" +"GO:0034641","cellular nitrogen compound metabolic pro...",960,166,201.64,2270,"0.99984","0.79466","0.7947" +"GO:0034329","cell junction assembly",9,1,1.89,1988,"0.88063","0.79658","0.7966" +"GO:0071375","cellular response to peptide hormone sti...",6,1,1.26,1744,"0.75735","0.79661","0.7966" +"GO:0071214","cellular response to abiotic stimulus",18,3,3.78,1782,"0.76265","0.79759","0.7976" +"GO:0104004","cellular response to environmental stimu...",18,3,3.78,1783,"0.76265","0.79759","0.7976" +"GO:0001959","regulation of cytokine-mediated signalin...",4,1,0.84,1402,"0.61081","0.79771","0.7977" +"GO:0001961","positive regulation of cytokine-mediated...",4,1,0.84,1403,"0.61081","0.79771","0.7977" +"GO:0006515","protein quality control for misfolded or...",4,1,0.84,1404,"0.61081","0.79771","0.7977" +"GO:0016322","neuron remodeling",4,1,0.84,1405,"0.61081","0.79771","0.7977" +"GO:0060759","regulation of response to cytokine stimu...",4,1,0.84,1406,"0.61081","0.79771","0.7977" +"GO:0060760","positive regulation of response to cytok...",4,1,0.84,1407,"0.61081","0.79771","0.7977" +"GO:0007351","tripartite regional subdivision",3,1,0.63,1102,"0.50718","0.79873","0.7987" +"GO:0008595","anterior/posterior axis specification, e...",3,1,0.63,1103,"0.50718","0.79873","0.7987" +"GO:0035384","thioester biosynthetic process",5,1,1.05,1586,"0.69268","0.79956","0.7996" +"GO:0071616","acyl-CoA biosynthetic process",5,1,1.05,1587,"0.69268","0.79956","0.7996" +"GO:0002443","leukocyte mediated immunity",10,3,2.1,738,"0.35262","0.79990","0.7999" +"GO:0046686","response to cadmium ion",10,3,2.1,739,"0.35262","0.79990","0.7999" +"GO:0030032","lamellipodium assembly",3,0,0.63,2599,"1.00000","0.80078","0.8008" +"GO:0097581","lamellipodium organization",3,0,0.63,2600,"1.00000","0.80078","0.8008" +"GO:0042752","regulation of circadian rhythm",8,1,1.68,1934,"0.84877","0.80092","0.8009" +"GO:0007093","mitotic cell cycle checkpoint",13,2,2.73,1807,"0.79279","0.80096","0.8010" +"GO:0006352","DNA-templated transcription, initiation",26,6,5.46,920,"0.47379","0.80138","0.8014" +"GO:0032781","positive regulation of ATPase activity",6,1,1.26,1745,"0.75735","0.80145","0.8015" +"GO:0051298","centrosome duplication",5,1,1.05,1588,"0.69268","0.80202","0.8020" +"GO:0008610","lipid biosynthetic process",60,11,12.6,1676,"0.74435","0.80267","0.8027" +"GO:0008360","regulation of cell shape",3,0,0.63,2601,"1.00000","0.80282","0.8028" +"GO:0010171","body morphogenesis",3,0,0.63,2602,"1.00000","0.80282","0.8028" +"GO:0010172","embryonic body morphogenesis",3,0,0.63,2603,"1.00000","0.80282","0.8028" +"GO:0046634","regulation of alpha-beta T cell activati...",3,0,0.63,2604,"1.00000","0.80282","0.8028" +"GO:0060326","cell chemotaxis",3,0,0.63,2605,"1.00000","0.80282","0.8028" +"GO:0033043","regulation of organelle organization",75,15,15.75,1451,"0.63178","0.80287","0.8029" +"GO:0003254","regulation of membrane depolarization",3,0,0.63,2606,"1.00000","0.80418","0.8042" +"GO:0010107","potassium ion import",3,0,0.63,2607,"1.00000","0.80418","0.8042" +"GO:0030048","actin filament-based movement",3,0,0.63,2608,"1.00000","0.80418","0.8042" +"GO:0035725","sodium ion transmembrane transport",3,0,0.63,2609,"1.00000","0.80418","0.8042" +"GO:0042670","retinal cone cell differentiation",3,0,0.63,2610,"1.00000","0.80418","0.8042" +"GO:0045759","negative regulation of action potential",3,0,0.63,2611,"1.00000","0.80418","0.8042" +"GO:0046549","retinal cone cell development",3,0,0.63,2612,"1.00000","0.80418","0.8042" +"GO:0060081","membrane hyperpolarization",3,0,0.63,2613,"1.00000","0.80418","0.8042" +"GO:0070252","actin-mediated cell contraction",3,0,0.63,2614,"1.00000","0.80418","0.8042" +"GO:0070305","response to cGMP",3,0,0.63,2615,"1.00000","0.80418","0.8042" +"GO:0071242","cellular response to ammonium ion",3,0,0.63,2616,"1.00000","0.80418","0.8042" +"GO:0071321","cellular response to cGMP",3,0,0.63,2617,"1.00000","0.80418","0.8042" +"GO:0071384","cellular response to corticosteroid stim...",3,0,0.63,2618,"1.00000","0.80418","0.8042" +"GO:0071389","cellular response to mineralocorticoid s...",3,0,0.63,2619,"1.00000","0.80418","0.8042" +"GO:0071867","response to monoamine",3,0,0.63,2620,"1.00000","0.80418","0.8042" +"GO:0071868","cellular response to monoamine stimulus",3,0,0.63,2621,"1.00000","0.80418","0.8042" +"GO:0071869","response to catecholamine",3,0,0.63,2622,"1.00000","0.80418","0.8042" +"GO:0071870","cellular response to catecholamine stimu...",3,0,0.63,2623,"1.00000","0.80418","0.8042" +"GO:0086001","cardiac muscle cell action potential",3,0,0.63,2624,"1.00000","0.80418","0.8042" +"GO:0086003","cardiac muscle cell contraction",3,0,0.63,2625,"1.00000","0.80418","0.8042" +"GO:0086004","regulation of cardiac muscle cell contra...",3,0,0.63,2626,"1.00000","0.80418","0.8042" +"GO:0086010","membrane depolarization during action po...",3,0,0.63,2627,"1.00000","0.80418","0.8042" +"GO:0086012","membrane depolarization during cardiac m...",3,0,0.63,2628,"1.00000","0.80418","0.8042" +"GO:0086015","SA node cell action potential",3,0,0.63,2629,"1.00000","0.80418","0.8042" +"GO:0086018","SA node cell to atrial cardiac muscle ce...",3,0,0.63,2630,"1.00000","0.80418","0.8042" +"GO:0086019","cell-cell signaling involved in cardiac ...",3,0,0.63,2631,"1.00000","0.80418","0.8042" +"GO:0086046","membrane depolarization during SA node c...",3,0,0.63,2632,"1.00000","0.80418","0.8042" +"GO:0086070","SA node cell to atrial cardiac muscle ce...",3,0,0.63,2633,"1.00000","0.80418","0.8042" +"GO:0086091","regulation of heart rate by cardiac cond...",3,0,0.63,2634,"1.00000","0.80418","0.8042" +"GO:0098659","inorganic cation import across plasma me...",3,0,0.63,2635,"1.00000","0.80418","0.8042" +"GO:0098719","sodium ion import across plasma membrane",3,0,0.63,2636,"1.00000","0.80418","0.8042" +"GO:0098900","regulation of action potential",3,0,0.63,2637,"1.00000","0.80418","0.8042" +"GO:0098901","regulation of cardiac muscle cell action...",3,0,0.63,2638,"1.00000","0.80418","0.8042" +"GO:0098909","regulation of cardiac muscle cell action...",3,0,0.63,2639,"1.00000","0.80418","0.8042" +"GO:0099587","inorganic ion import across plasma membr...",3,0,0.63,2640,"1.00000","0.80418","0.8042" +"GO:1902065","response to L-glutamate",3,0,0.63,2641,"1.00000","0.80418","0.8042" +"GO:1902630","regulation of membrane hyperpolarization",3,0,0.63,2642,"1.00000","0.80418","0.8042" +"GO:1903115","regulation of actin filament-based movem...",3,0,0.63,2643,"1.00000","0.80418","0.8042" +"GO:1903350","response to dopamine",3,0,0.63,2644,"1.00000","0.80418","0.8042" +"GO:1903351","cellular response to dopamine",3,0,0.63,2645,"1.00000","0.80418","0.8042" +"GO:1904044","response to aldosterone",3,0,0.63,2646,"1.00000","0.80418","0.8042" +"GO:1904045","cellular response to aldosterone",3,0,0.63,2647,"1.00000","0.80418","0.8042" +"GO:1990573","potassium ion import across plasma membr...",3,0,0.63,2648,"1.00000","0.80418","0.8042" +"GO:0006140","regulation of nucleotide metabolic proce...",6,1,1.26,1746,"0.75735","0.80482","0.8048" +"GO:0036294","cellular response to decreased oxygen le...",6,1,1.26,1747,"0.75735","0.80482","0.8048" +"GO:0071453","cellular response to oxygen levels",6,1,1.26,1748,"0.75735","0.80482","0.8048" +"GO:0071456","cellular response to hypoxia",6,1,1.26,1749,"0.75735","0.80482","0.8048" +"GO:1900542","regulation of purine nucleotide metaboli...",6,1,1.26,1750,"0.75735","0.80482","0.8048" +"GO:0001838","embryonic epithelial tube formation",6,0,1.26,2649,"1.00000","0.80482","0.8048" +"GO:0072175","epithelial tube formation",6,0,1.26,2650,"1.00000","0.80482","0.8048" +"GO:0007492","endoderm development",3,0,0.63,2651,"1.00000","0.80622","0.8062" +"GO:0031167","rRNA methylation",6,1,1.26,1751,"0.75735","0.80626","0.8063" +"GO:0045165","cell fate commitment",20,4,4.2,1453,"0.63198","0.80667","0.8067" +"GO:0048565","digestive tract development",7,1,1.47,1859,"0.80843","0.80786","0.8079" +"GO:0055123","digestive system development",7,1,1.47,1860,"0.80843","0.80786","0.8079" +"GO:0006635","fatty acid beta-oxidation",4,0,0.84,2652,"1.00000","0.80793","0.8079" +"GO:0071383","cellular response to steroid hormone sti...",20,2,4.2,2111,"0.94405","0.80798","0.8080" +"GO:0008284","positive regulation of cell proliferatio...",15,2,3.15,1957,"0.85552","0.80820","0.8082" +"GO:0098609","cell-cell adhesion",35,5,7.35,2010,"0.88760","0.80877","0.8088" +"GO:0045787","positive regulation of cell cycle",11,3,2.31,839,"0.41598","0.80947","0.8095" +"GO:0043412","macromolecule modification",438,84,92,1965,"0.86224","0.79246","0.8100" +"GO:0051646","mitochondrion localization",3,0,0.63,2653,"1.00000","0.81094","0.8109" +"GO:0010604","positive regulation of macromolecule met...",112,18,23.52,2085,"0.92693","0.81122","0.8112" +"GO:0030301","cholesterol transport",3,0,0.63,2654,"1.00000","0.81161","0.8116" +"GO:0072659","protein localization to plasma membrane",6,0,1.26,2655,"1.00000","0.81198","0.8120" +"GO:0006813","potassium ion transport",11,2,2.31,1640,"0.70716","0.81263","0.8126" +"GO:0009048","dosage compensation by inactivation of X...",3,1,0.63,1104,"0.50718","0.81295","0.8129" +"GO:0050678","regulation of epithelial cell proliferat...",7,2,1.47,909,"0.45086","0.81300","0.8130" +"GO:0031345","negative regulation of cell projection o...",5,1,1.05,1589,"0.69268","0.81423","0.8142" +"GO:0048640","negative regulation of developmental gro...",5,0,1.05,2656,"1.00000","0.81423","0.8142" +"GO:1990138","neuron projection extension",5,0,1.05,2657,"1.00000","0.81423","0.8142" +"GO:0048519","negative regulation of biological proces...",264,53,55.45,1510,"0.67704","0.81499","0.8150" +"GO:0065008","regulation of biological quality",199,40,41.8,1495,"0.65648","0.70376","0.8151" +"GO:0002694","regulation of leukocyte activation",10,1,2.1,2033,"0.90578","0.81557","0.8156" +"GO:0050865","regulation of cell activation",10,1,2.1,2034,"0.90578","0.81557","0.8156" +"GO:0003012","muscle system process",18,1,3.78,2210,"0.98586","0.81750","0.8175" +"GO:0015672","monovalent inorganic cation transport",51,11,10.71,1134,"0.51629","0.27709","0.8176" +"GO:0009411","response to UV",3,0,0.63,2658,"1.00000","0.81828","0.8183" +"GO:0048523","negative regulation of cellular process",219,46,46,1168,"0.52882","0.81909","0.8191" +"GO:0051241","negative regulation of multicellular org...",30,3,6.3,2157,"0.96703","0.82049","0.8205" +"GO:0006487","protein N-linked glycosylation",19,3,3.99,1821,"0.79531","0.82163","0.8216" +"GO:0030111","regulation of Wnt signaling pathway",14,3,2.94,1232,"0.58937","0.82210","0.8221" +"GO:0001101","response to acid chemical",21,4,4.41,1506,"0.67242","0.82261","0.8226" +"GO:0048738","cardiac muscle tissue development",8,2,1.68,1159,"0.52603","0.82391","0.8239" +"GO:0051205","protein insertion into membrane",4,0,0.84,2659,"1.00000","0.82407","0.8241" +"GO:0015813","L-glutamate transmembrane transport",3,0,0.63,2660,"1.00000","0.82421","0.8242" +"GO:0048754","branching morphogenesis of an epithelial...",3,0,0.63,2661,"1.00000","0.82552","0.8255" +"GO:0006936","muscle contraction",17,1,3.57,2198,"0.98208","0.82676","0.8268" +"GO:0019216","regulation of lipid metabolic process",16,4,3.36,864,"0.44210","0.82677","0.8268" +"GO:0003015","heart process",11,3,2.31,840,"0.41598","0.82737","0.8274" +"GO:0060047","heart contraction",11,3,2.31,841,"0.41598","0.82737","0.8274" +"GO:0001974","blood vessel remodeling",3,1,0.63,1105,"0.50718","0.82748","0.8275" +"GO:0003300","cardiac muscle hypertrophy",3,1,0.63,1106,"0.50718","0.82748","0.8275" +"GO:0010831","positive regulation of myotube different...",3,1,0.63,1107,"0.50718","0.82748","0.8275" +"GO:0014896","muscle hypertrophy",3,1,0.63,1108,"0.50718","0.82748","0.8275" +"GO:0014897","striated muscle hypertrophy",3,1,0.63,1109,"0.50718","0.82748","0.8275" +"GO:0035995","detection of muscle stretch",3,1,0.63,1110,"0.50718","0.82748","0.8275" +"GO:0045663","positive regulation of myoblast differen...",3,1,0.63,1111,"0.50718","0.82748","0.8275" +"GO:0051014","actin filament severing",3,1,0.63,1112,"0.50718","0.82748","0.8275" +"GO:0051149","positive regulation of muscle cell diffe...",3,1,0.63,1113,"0.50718","0.82748","0.8275" +"GO:0051155","positive regulation of striated muscle c...",3,1,0.63,1114,"0.50718","0.82748","0.8275" +"GO:0055003","cardiac myofibril assembly",3,1,0.63,1115,"0.50718","0.82748","0.8275" +"GO:0055013","cardiac muscle cell development",3,1,0.63,1116,"0.50718","0.82748","0.8275" +"GO:1903918","regulation of actin filament severing",3,1,0.63,1117,"0.50718","0.82748","0.8275" +"GO:1903919","negative regulation of actin filament se...",3,1,0.63,1118,"0.50718","0.82748","0.8275" +"GO:1903920","positive regulation of actin filament se...",3,1,0.63,1119,"0.50718","0.82748","0.8275" +"GO:0030330","DNA damage response, signal transduction...",4,1,0.84,1408,"0.61081","0.82766","0.8277" +"GO:0042770","signal transduction in response to DNA d...",4,1,0.84,1409,"0.61081","0.82766","0.8277" +"GO:0043044","ATP-dependent chromatin remodeling",5,1,1.05,1590,"0.69268","0.82987","0.8299" +"GO:0002793","positive regulation of peptide secretion",3,1,0.63,1120,"0.50718","0.83008","0.8301" +"GO:0046887","positive regulation of hormone secretion",3,1,0.63,1121,"0.50718","0.83008","0.8301" +"GO:0090277","positive regulation of peptide hormone s...",3,1,0.63,1122,"0.50718","0.83008","0.8301" +"GO:0043010","camera-type eye development",36,5,7.56,2022,"0.90190","0.83032","0.8303" +"GO:0010830","regulation of myotube differentiation",4,1,0.84,1410,"0.61081","0.83047","0.8305" +"GO:0045980","negative regulation of nucleotide metabo...",3,0,0.63,2662,"1.00000","0.83073","0.8307" +"GO:1900543","negative regulation of purine nucleotide...",3,0,0.63,2663,"1.00000","0.83073","0.8307" +"GO:1903579","negative regulation of ATP metabolic pro...",3,0,0.63,2664,"1.00000","0.83073","0.8307" +"GO:0044237","cellular metabolic process",1538,306,323.04,2117,"0.95237","0.60380","0.8309" +"GO:0006839","mitochondrial transport",34,7,7.14,1238,"0.59206","0.83142","0.8314" +"GO:0042775","mitochondrial ATP synthesis coupled elec...",10,1,2.1,2035,"0.90578","0.83200","0.8320" +"GO:0006743","ubiquinone metabolic process",3,0,0.63,2665,"1.00000","0.83202","0.8320" +"GO:0006744","ubiquinone biosynthetic process",3,0,0.63,2666,"1.00000","0.83202","0.8320" +"GO:0051249","regulation of lymphocyte activation",9,1,1.89,1989,"0.88063","0.83243","0.8324" +"GO:0007059","chromosome segregation",18,4,3.78,1190,"0.54205","0.83277","0.8328" +"GO:2001020","regulation of response to DNA damage sti...",8,2,1.68,1160,"0.52603","0.83281","0.8328" +"GO:0051705","multi-organism behavior",8,2,1.68,1161,"0.52603","0.83386","0.8339" +"GO:1901653","cellular response to peptide",7,1,1.47,1861,"0.80843","0.83407","0.8341" +"GO:0000394","RNA splicing, via endonucleolytic cleava...",3,0,0.63,2667,"1.00000","0.83460","0.8346" +"GO:0006388","tRNA splicing, via endonucleolytic cleav...",3,0,0.63,2668,"1.00000","0.83460","0.8346" +"GO:0098542","defense response to other organism",20,4,4.2,1454,"0.63198","0.83469","0.8347" +"GO:0034765","regulation of ion transmembrane transpor...",11,0,2.31,2669,"1.00000","0.83504","0.8350" +"GO:0010212","response to ionizing radiation",6,0,1.26,2670,"1.00000","0.83519","0.8352" +"GO:0051047","positive regulation of secretion",5,1,1.05,1591,"0.69268","0.83520","0.8352" +"GO:1903532","positive regulation of secretion by cell",5,1,1.05,1592,"0.69268","0.83520","0.8352" +"GO:0060322","head development",40,8,8.4,1442,"0.62503","0.83591","0.8359" +"GO:0051649","establishment of localization in cell",181,36,38.02,1511,"0.67831","0.83658","0.8366" +"GO:0031047","gene silencing by RNA",12,3,2.52,933,"0.47717","0.83666","0.8367" +"GO:0072358","cardiovascular system development",18,1,3.78,2211,"0.98586","0.83671","0.8367" +"GO:0035239","tube morphogenesis",33,5,6.93,1949,"0.85361","0.83676","0.8368" +"GO:0000209","protein polyubiquitination",19,3,3.99,1822,"0.79531","0.83782","0.8378" +"GO:0048608","reproductive structure development",33,7,6.93,1207,"0.55751","0.83889","0.8389" +"GO:0090083","regulation of inclusion body assembly",7,1,1.47,1862,"0.80843","0.83896","0.8390" +"GO:0090084","negative regulation of inclusion body as...",7,1,1.47,1863,"0.80843","0.83896","0.8390" +"GO:0016192","vesicle-mediated transport",141,24,29.62,2025,"0.90547","0.83909","0.8391" +"GO:0007155","cell adhesion",58,10,12.18,1832,"0.80703","0.83936","0.8394" +"GO:0022610","biological adhesion",58,10,12.18,1833,"0.80703","0.83936","0.8394" +"GO:0099173","postsynapse organization",6,1,1.26,1752,"0.75735","0.84061","0.8406" +"GO:0001890","placenta development",11,2,2.31,1641,"0.70716","0.84093","0.8409" +"GO:0008535","respiratory chain complex IV assembly",3,0,0.63,2671,"1.00000","0.84098","0.8410" +"GO:0051172","negative regulation of nitrogen compound...",111,24,23.31,921,"0.47397","0.84115","0.8412" +"GO:0032940","secretion by cell",39,10,8.19,664,"0.29295","0.84124","0.8412" +"GO:0051173","positive regulation of nitrogen compound...",107,17,22.47,2086,"0.92989","0.84143","0.8414" +"GO:0071786","endoplasmic reticulum tubular network or...",5,1,1.05,1593,"0.69268","0.84210","0.8421" +"GO:0050863","regulation of T cell activation",8,1,1.68,1935,"0.84877","0.84245","0.8425" +"GO:0002164","larval development",8,2,1.68,1162,"0.52603","0.84361","0.8436" +"GO:0007420","brain development",39,8,8.19,1266,"0.59400","0.84370","0.8437" +"GO:0046649","lymphocyte activation",14,2,2.94,1897,"0.82669","0.84440","0.8444" +"GO:0030521","androgen receptor signaling pathway",3,0,0.63,2672,"1.00000","0.84476","0.8448" +"GO:0034314","Arp2/3 complex-mediated actin nucleation",10,1,2.1,2036,"0.90578","0.84618","0.8462" +"GO:0050793","regulation of developmental process",98,14,20.58,2162,"0.96794","0.84720","0.8472" +"GO:1902903","regulation of supramolecular fiber organ...",30,6,6.3,1447,"0.62610","0.84724","0.8472" +"GO:0033260","nuclear DNA replication",4,1,0.84,1411,"0.61081","0.84754","0.8475" +"GO:0044786","cell cycle DNA replication",4,1,0.84,1412,"0.61081","0.84754","0.8475" +"GO:0010977","negative regulation of neuron projection...",4,0,0.84,2673,"1.00000","0.84844","0.8484" +"GO:0050771","negative regulation of axonogenesis",4,0,0.84,2674,"1.00000","0.84844","0.8484" +"GO:0051865","protein autoubiquitination",4,0,0.84,2675,"1.00000","0.84844","0.8484" +"GO:0042546","cell wall biogenesis",3,0,0.63,2676,"1.00000","0.84851","0.8485" +"GO:0032506","cytokinetic process",3,0,0.63,2677,"1.00000","0.84913","0.8491" +"GO:0045039","protein import into mitochondrial inner ...",5,0,1.05,2678,"1.00000","0.84922","0.8492" +"GO:0016441","posttranscriptional gene silencing",11,3,2.31,842,"0.41598","0.84924","0.8492" +"GO:0035194","posttranscriptional gene silencing by RN...",11,3,2.31,843,"0.41598","0.84924","0.8492" +"GO:0071897","DNA biosynthetic process",7,0,1.47,2679,"1.00000","0.84952","0.8495" +"GO:0009653","anatomical structure morphogenesis",145,28,30.46,1661,"0.72839","0.84968","0.8497" +"GO:0044773","mitotic DNA damage checkpoint",4,1,0.84,1413,"0.61081","0.85041","0.8504" +"GO:0044818","mitotic G2/M transition checkpoint",4,1,0.84,1414,"0.61081","0.85041","0.8504" +"GO:0051321","meiotic cell cycle",15,3,3.15,1469,"0.63930","0.85144","0.8514" +"GO:0048199","vesicle targeting, to, from or within Go...",5,1,1.05,1594,"0.69268","0.85146","0.8515" +"GO:0030968","endoplasmic reticulum unfolded protein r...",9,1,1.89,1990,"0.88063","0.85212","0.8521" +"GO:0034620","cellular response to unfolded protein",9,1,1.89,1991,"0.88063","0.85212","0.8521" +"GO:0090066","regulation of anatomical structure size",37,4,7.77,2161,"0.96767","0.85254","0.8525" +"GO:0006885","regulation of pH",6,0,1.26,2680,"1.00000","0.85255","0.8525" +"GO:0055067","monovalent inorganic cation homeostasis",6,0,1.26,2681,"1.00000","0.85255","0.8525" +"GO:0009890","negative regulation of biosynthetic proc...",69,12,14.49,1889,"0.81348","0.85310","0.8531" +"GO:0044782","cilium organization",20,2,4.2,2112,"0.94405","0.85326","0.8533" +"GO:0046662","regulation of oviposition",5,1,1.05,1595,"0.69268","0.85337","0.8534" +"GO:0003333","amino acid transmembrane transport",11,2,2.31,1642,"0.70716","0.85344","0.8534" +"GO:0001822","kidney development",15,4,3.15,795,"0.38965","0.85475","0.8547" +"GO:0006281","DNA repair",47,8,9.87,1827,"0.80171","0.85476","0.8548" +"GO:0006775","fat-soluble vitamin metabolic process",6,1,1.26,1753,"0.75735","0.85515","0.8552" +"GO:0001654","eye development",47,8,9.87,1828,"0.80171","0.85523","0.8552" +"GO:0048880","sensory system development",47,8,9.87,1829,"0.80171","0.85523","0.8552" +"GO:0150063","visual system development",47,8,9.87,1830,"0.80171","0.85523","0.8552" +"GO:0046907","intracellular transport",172,34,36.13,1522,"0.68995","0.85593","0.8559" +"GO:0042742","defense response to bacterium",11,2,2.31,1643,"0.70716","0.85611","0.8561" +"GO:0110053","regulation of actin filament organizatio...",20,3,4.2,1892,"0.82414","0.85619","0.8562" +"GO:0030447","filamentous growth",3,0,0.63,2682,"1.00000","0.85652","0.8565" +"GO:0060271","cilium assembly",19,2,3.99,2090,"0.93206","0.85680","0.8568" +"GO:0031327","negative regulation of cellular biosynth...",68,12,14.28,1823,"0.79694","0.85682","0.8568" +"GO:0000380","alternative mRNA splicing, via spliceoso...",3,0,0.63,2683,"1.00000","0.85713","0.8571" +"GO:0000381","regulation of alternative mRNA splicing,...",3,0,0.63,2684,"1.00000","0.85713","0.8571" +"GO:0009790","embryo development",79,18,16.59,797,"0.39055","0.85716","0.8572" +"GO:0008299","isoprenoid biosynthetic process",6,1,1.26,1754,"0.75735","0.85817","0.8582" +"GO:0006835","dicarboxylic acid transport",10,0,2.1,2685,"1.00000","0.85824","0.8582" +"GO:0050905","neuromuscular process",4,0,0.84,2686,"1.00000","0.85838","0.8584" +"GO:0044249","cellular biosynthetic process",778,145,163.41,2179,"0.97642","0.73263","0.8585" +"GO:0006941","striated muscle contraction",9,1,1.89,1992,"0.88063","0.85849","0.8585" +"GO:0032103","positive regulation of response to exter...",9,0,1.89,2687,"1.00000","0.85849","0.8585" +"GO:0045168","cell-cell signaling involved in cell fat...",8,0,1.68,2688,"1.00000","0.85951","0.8595" +"GO:0046331","lateral inhibition",8,0,1.68,2689,"1.00000","0.85951","0.8595" +"GO:0010228","vegetative to reproductive phase transit...",3,0,0.63,2690,"1.00000","0.85956","0.8596" +"GO:0034243","regulation of transcription elongation f...",3,0,0.63,2691,"1.00000","0.85956","0.8596" +"GO:0007417","central nervous system development",56,10,11.76,1792,"0.76909","0.86034","0.8603" +"GO:0001934","positive regulation of protein phosphory...",19,2,3.99,2091,"0.93206","0.86034","0.8603" +"GO:0015850","organic hydroxy compound transport",10,1,2.1,2037,"0.90578","0.86035","0.8603" +"GO:0071495","cellular response to endogenous stimulus",48,6,10.08,2136,"0.95676","0.86148","0.8615" +"GO:0098657","import into cell",37,7,7.77,1521,"0.68675","0.86168","0.8617" +"GO:1904062","regulation of cation transmembrane trans...",10,0,2.1,2692,"1.00000","0.86200","0.8620" +"GO:0031324","negative regulation of cellular metaboli...",114,24,23.94,1170,"0.53333","0.86213","0.8621" +"GO:0062012","regulation of small molecule metabolic p...",15,2,3.15,1958,"0.85552","0.86397","0.8640" +"GO:0045934","negative regulation of nucleobase-contai...",66,12,13.86,1776,"0.76077","0.86426","0.8643" +"GO:0042110","T cell activation",12,2,2.52,1689,"0.75316","0.86514","0.8651" +"GO:0045292","mRNA cis splicing, via spliceosome",7,1,1.47,1864,"0.80843","0.86533","0.8653" +"GO:0030041","actin filament polymerization",17,2,3.57,2017,"0.90044","0.86536","0.8654" +"GO:0030833","regulation of actin filament polymerizat...",17,2,3.57,2018,"0.90044","0.86536","0.8654" +"GO:0035195","gene silencing by miRNA",5,0,1.05,2693,"1.00000","0.86649","0.8665" +"GO:0006023","aminoglycan biosynthetic process",4,1,0.84,1415,"0.61081","0.86704","0.8670" +"GO:0006024","glycosaminoglycan biosynthetic process",4,1,0.84,1416,"0.61081","0.86704","0.8670" +"GO:0030203","glycosaminoglycan metabolic process",4,1,0.84,1417,"0.61081","0.86704","0.8670" +"GO:0032943","mononuclear cell proliferation",7,0,1.47,2694,"1.00000","0.86715","0.8671" +"GO:0046651","lymphocyte proliferation",7,0,1.47,2695,"1.00000","0.86715","0.8671" +"GO:0070661","leukocyte proliferation",7,0,1.47,2696,"1.00000","0.86715","0.8671" +"GO:0070841","inclusion body assembly",8,1,1.68,1936,"0.84877","0.86782","0.8678" +"GO:0010558","negative regulation of macromolecule bio...",65,11,13.65,1907,"0.83421","0.86798","0.8680" +"GO:0031214","biomineral tissue development",5,0,1.05,2697,"1.00000","0.86939","0.8694" +"GO:0001944","vasculature development",17,1,3.57,2199,"0.98208","0.87075","0.8708" +"GO:0043269","regulation of ion transport",17,0,3.57,2698,"1.00000","0.87075","0.8708" +"GO:0046632","alpha-beta T cell differentiation",3,1,0.63,1123,"0.50718","0.87087","0.8709" +"GO:0045637","regulation of myeloid cell differentiati...",9,1,1.89,1993,"0.88063","0.87090","0.8709" +"GO:2000026","regulation of multicellular organismal d...",68,10,14.28,2087,"0.93053","0.87122","0.8712" +"GO:0065003","protein-containing complex assembly",127,19,26.68,2167,"0.96989","0.87202","0.8720" +"GO:0009605","response to external stimulus",105,22,22.05,1195,"0.54528","0.87211","0.8721" +"GO:0009268","response to pH",3,0,0.63,2699,"1.00000","0.87262","0.8726" +"GO:0030004","cellular monovalent inorganic cation hom...",3,0,0.63,2700,"1.00000","0.87262","0.8726" +"GO:0030641","regulation of cellular pH",3,0,0.63,2701,"1.00000","0.87262","0.8726" +"GO:0006310","DNA recombination",9,2,1.89,1260,"0.59390","0.87293","0.8729" +"GO:0030323","respiratory tube development",10,1,2.1,2038,"0.90578","0.87346","0.8735" +"GO:0051128","regulation of cellular component organiz...",127,22,26.68,1972,"0.87751","0.87358","0.8736" +"GO:0006109","regulation of carbohydrate metabolic pro...",9,1,1.89,1994,"0.88063","0.87393","0.8739" +"GO:0007423","sensory organ development",54,9,11.34,1902,"0.83082","0.87409","0.8741" +"GO:0051090","regulation of DNA-binding transcription ...",12,2,2.52,1690,"0.75316","0.87456","0.8746" +"GO:0022898","regulation of transmembrane transporter ...",9,0,1.89,2702,"1.00000","0.87494","0.8749" +"GO:0032409","regulation of transporter activity",9,0,1.89,2703,"1.00000","0.87494","0.8749" +"GO:0032412","regulation of ion transmembrane transpor...",9,0,1.89,2704,"1.00000","0.87494","0.8749" +"GO:0032956","regulation of actin cytoskeleton organiz...",22,3,4.62,1969,"0.87148","0.87506","0.8751" +"GO:0051098","regulation of binding",14,3,2.94,1233,"0.58937","0.87512","0.8751" +"GO:0048863","stem cell differentiation",16,3,3.36,1520,"0.68481","0.87514","0.8751" +"GO:0045879","negative regulation of smoothened signal...",3,0,0.63,2705,"1.00000","0.87553","0.8755" +"GO:0030154","cell differentiation",177,34,37.18,1699,"0.75601","0.87555","0.8756" +"GO:0046328","regulation of JNK cascade",4,1,0.84,1418,"0.61081","0.87599","0.8760" +"GO:0031344","regulation of cell projection organizati...",28,2,5.88,2227,"0.98883","0.87606","0.8761" +"GO:0120035","regulation of plasma membrane bounded ce...",28,2,5.88,2228,"0.98883","0.87606","0.8761" +"GO:0007005","mitochondrion organization",55,8,11.55,2063,"0.91754","0.87610","0.8761" +"GO:0010824","regulation of centrosome duplication",3,0,0.63,2706,"1.00000","0.87610","0.8761" +"GO:0046605","regulation of centrosome cycle",3,0,0.63,2707,"1.00000","0.87610","0.8761" +"GO:0030718","germ-line stem cell population maintenan...",4,1,0.84,1419,"0.61081","0.87665","0.8767" +"GO:0061326","renal tubule development",4,1,0.84,1420,"0.61081","0.87665","0.8767" +"GO:0072006","nephron development",4,1,0.84,1421,"0.61081","0.87665","0.8767" +"GO:0072009","nephron epithelium development",4,1,0.84,1422,"0.61081","0.87665","0.8767" +"GO:0072073","kidney epithelium development",4,1,0.84,1423,"0.61081","0.87665","0.8767" +"GO:0072080","nephron tubule development",4,1,0.84,1424,"0.61081","0.87665","0.8767" +"GO:0110116","regulation of compound eye photoreceptor...",4,1,0.84,1425,"0.61081","0.87665","0.8767" +"GO:0006434","seryl-tRNA aminoacylation",3,0,0.63,2708,"1.00000","0.87668","0.8767" +"GO:0070125","mitochondrial translational elongation",3,1,0.63,1124,"0.50718","0.87840","0.8784" +"GO:0070126","mitochondrial translational termination",3,1,0.63,1125,"0.50718","0.87840","0.8784" +"GO:2000113","negative regulation of cellular macromol...",62,11,13.02,1796,"0.78365","0.87914","0.8791" +"GO:0051640","organelle localization",33,4,6.93,2096,"0.93859","0.87973","0.8797" +"GO:0010629","negative regulation of gene expression",91,14,19.11,2092,"0.93358","0.88037","0.8804" +"GO:0042060","wound healing",22,5,4.62,955,"0.50471","0.88093","0.8809" +"GO:0048856","anatomical structure development",307,63,64.48,1440,"0.61206","0.88164","0.8816" +"GO:0001568","blood vessel development",16,1,3.36,2182,"0.97727","0.88176","0.8818" +"GO:0015780","nucleotide-sugar transmembrane transport",3,1,0.63,1126,"0.50718","0.88182","0.8818" +"GO:0030178","negative regulation of Wnt signaling pat...",5,1,1.05,1596,"0.69268","0.88191","0.8819" +"GO:0090090","negative regulation of canonical Wnt sig...",5,1,1.05,1597,"0.69268","0.88191","0.8819" +"GO:0007275","multicellular organism development",281,57,59.02,1472,"0.64796","0.88204","0.8820" +"GO:0072347","response to anesthetic",4,0,0.84,2709,"1.00000","0.88225","0.8823" +"GO:0060041","retina development in camera-type eye",26,5,5.46,1502,"0.66485","0.88286","0.8829" +"GO:0000041","transition metal ion transport",9,2,1.89,1261,"0.59390","0.88384","0.8838" +"GO:0006633","fatty acid biosynthetic process",13,2,2.73,1808,"0.79279","0.88412","0.8841" +"GO:0061024","membrane organization",47,8,9.87,1831,"0.80171","0.88458","0.8846" +"GO:0006729","tetrahydrobiopterin biosynthetic process",3,0,0.63,2710,"1.00000","0.88463","0.8846" +"GO:0034311","diol metabolic process",3,0,0.63,2711,"1.00000","0.88463","0.8846" +"GO:0034312","diol biosynthetic process",3,0,0.63,2712,"1.00000","0.88463","0.8846" +"GO:0046146","tetrahydrobiopterin metabolic process",3,0,0.63,2713,"1.00000","0.88463","0.8846" +"GO:0006836","neurotransmitter transport",18,4,3.78,1191,"0.54205","0.88470","0.8847" +"GO:0032944","regulation of mononuclear cell prolifera...",6,0,1.26,2714,"1.00000","0.88503","0.8850" +"GO:0050670","regulation of lymphocyte proliferation",6,0,1.26,2715,"1.00000","0.88503","0.8850" +"GO:0070663","regulation of leukocyte proliferation",6,0,1.26,2716,"1.00000","0.88503","0.8850" +"GO:0046890","regulation of lipid biosynthetic process",6,1,1.26,1755,"0.75735","0.88542","0.8854" +"GO:0030879","mammary gland development",4,0,0.84,2717,"1.00000","0.88550","0.8855" +"GO:0051093","negative regulation of developmental pro...",32,3,6.72,2180,"0.97701","0.88557","0.8856" +"GO:0000184","nuclear-transcribed mRNA catabolic proce...",3,0,0.63,2718,"1.00000","0.88575","0.8857" +"GO:0001525","angiogenesis",9,0,1.89,2719,"1.00000","0.88578","0.8858" +"GO:0002062","chondrocyte differentiation",4,1,0.84,1426,"0.61081","0.88582","0.8858" +"GO:0007419","ventral cord development",4,1,0.84,1427,"0.61081","0.88582","0.8858" +"GO:0002262","myeloid cell homeostasis",10,1,2.1,2039,"0.90578","0.88636","0.8864" +"GO:0030218","erythrocyte differentiation",10,1,2.1,2040,"0.90578","0.88636","0.8864" +"GO:0034101","erythrocyte homeostasis",10,1,2.1,2041,"0.90578","0.88636","0.8864" +"GO:0070371","ERK1 and ERK2 cascade",5,0,1.05,2720,"1.00000","0.88640","0.8864" +"GO:0007498","mesoderm development",7,1,1.47,1865,"0.80843","0.88648","0.8865" +"GO:0010001","glial cell differentiation",7,0,1.47,2721,"1.00000","0.88648","0.8865" +"GO:0051253","negative regulation of RNA metabolic pro...",60,11,12.6,1677,"0.74435","0.88657","0.8866" +"GO:1902679","negative regulation of RNA biosynthetic ...",60,11,12.6,1678,"0.74435","0.88657","0.8866" +"GO:1903507","negative regulation of nucleic acid-temp...",60,11,12.6,1679,"0.74435","0.88657","0.8866" +"GO:0071772","response to BMP",9,0,1.89,2722,"1.00000","0.88675","0.8867" +"GO:0071773","cellular response to BMP stimulus",9,0,1.89,2723,"1.00000","0.88675","0.8867" +"GO:0000266","mitochondrial fission",5,0,1.05,2724,"1.00000","0.88770","0.8877" +"GO:0070584","mitochondrion morphogenesis",4,0,0.84,2725,"1.00000","0.88791","0.8879" +"GO:0043270","positive regulation of ion transport",8,0,1.68,2726,"1.00000","0.88806","0.8881" +"GO:0044087","regulation of cellular component biogene...",58,8,12.18,2109,"0.94268","0.88850","0.8885" +"GO:0051130","positive regulation of cellular componen...",63,13,13.23,1214,"0.57970","0.88852","0.8885" +"GO:0051181","cofactor transport",5,0,1.05,2727,"1.00000","0.88927","0.8893" +"GO:0000910","cytokinesis",12,2,2.52,1691,"0.75316","0.88928","0.8893" +"GO:0002520","immune system development",24,4,5.04,1794,"0.77472","0.88982","0.8898" +"GO:0048534","hematopoietic or lymphoid organ developm...",24,4,5.04,1795,"0.77472","0.88982","0.8898" +"GO:0006090","pyruvate metabolic process",11,2,2.31,1644,"0.70716","0.89023","0.8902" +"GO:0051100","negative regulation of binding",9,2,1.89,1262,"0.59390","0.89058","0.8906" +"GO:0060485","mesenchyme development",9,1,1.89,1995,"0.88063","0.89058","0.8906" +"GO:0065004","protein-DNA complex assembly",10,2,2.1,1490,"0.65422","0.89061","0.8906" +"GO:0010668","ectodermal cell differentiation",3,0,0.63,2728,"1.00000","0.89073","0.8907" +"GO:0097479","synaptic vesicle localization",4,0,0.84,2729,"1.00000","0.89077","0.8908" +"GO:0009628","response to abiotic stimulus",86,18,18.06,1203,"0.55067","0.89115","0.8911" +"GO:0001709","cell fate determination",7,1,1.47,1866,"0.80843","0.89154","0.8915" +"GO:0071396","cellular response to lipid",30,3,6.3,2158,"0.96703","0.89282","0.8928" +"GO:0045892","negative regulation of transcription, DN...",58,11,12.18,1625,"0.70055","0.89399","0.8940" +"GO:0015849","organic acid transport",23,5,4.83,1200,"0.54781","0.89407","0.8941" +"GO:0046942","carboxylic acid transport",23,5,4.83,1201,"0.54781","0.89407","0.8941" +"GO:0001701","in utero embryonic development",21,3,4.41,1943,"0.84942","0.89455","0.8945" +"GO:0048284","organelle fusion",8,2,1.68,1163,"0.52603","0.89466","0.8947" +"GO:0051960","regulation of nervous system development",38,3,7.98,2235,"0.99249","0.89486","0.8949" +"GO:0007399","nervous system development",123,17,25.83,2215,"0.98613","0.89512","0.8951" +"GO:0061458","reproductive system development",34,7,7.14,1239,"0.59206","0.89515","0.8951" +"GO:0022904","respiratory electron transport chain",12,1,2.52,2100,"0.94133","0.89529","0.8953" +"GO:0005976","polysaccharide metabolic process",9,5,1.89,62,"0.02384","0.07310","0.8958" +"GO:0044264","cellular polysaccharide metabolic proces...",9,5,1.89,63,"0.02384","0.07310","0.8958" +"GO:0016049","cell growth",29,5,6.09,1774,"0.76022","0.89595","0.8959" +"GO:0032870","cellular response to hormone stimulus",29,4,6.09,2009,"0.88747","0.89600","0.8960" +"GO:0051276","chromosome organization",114,22,23.94,1655,"0.71222","0.89601","0.8960" +"GO:0034248","regulation of cellular amide metabolic p...",22,5,4.62,956,"0.50471","0.89708","0.8971" +"GO:0002052","positive regulation of neuroblast prolif...",3,0,0.63,2730,"1.00000","0.89723","0.8972" +"GO:0050708","regulation of protein secretion",3,0,0.63,2731,"1.00000","0.89723","0.8972" +"GO:0050796","regulation of insulin secretion",3,0,0.63,2732,"1.00000","0.89723","0.8972" +"GO:0062013","positive regulation of small molecule me...",3,0,0.63,2733,"1.00000","0.89723","0.8972" +"GO:0071260","cellular response to mechanical stimulus",3,0,0.63,2734,"1.00000","0.89723","0.8972" +"GO:0072091","regulation of stem cell proliferation",3,0,0.63,2735,"1.00000","0.89723","0.8972" +"GO:1902692","regulation of neuroblast proliferation",3,0,0.63,2736,"1.00000","0.89723","0.8972" +"GO:2000177","regulation of neural precursor cell prol...",3,0,0.63,2737,"1.00000","0.89723","0.8972" +"GO:2000179","positive regulation of neural precursor ...",3,0,0.63,2738,"1.00000","0.89723","0.8972" +"GO:2000648","positive regulation of stem cell prolife...",3,0,0.63,2739,"1.00000","0.89723","0.8972" +"GO:0009892","negative regulation of metabolic process",139,27,29.2,1656,"0.71346","0.89749","0.8975" +"GO:0015711","organic anion transport",27,5,5.67,1624,"0.69914","0.89850","0.8985" +"GO:0019827","stem cell population maintenance",10,2,2.1,1491,"0.65422","0.89851","0.8985" +"GO:0098727","maintenance of cell number",10,2,2.1,1492,"0.65422","0.89851","0.8985" +"GO:0030097","hemopoiesis",22,4,4.62,1651,"0.70969","0.89859","0.8986" +"GO:0018212","peptidyl-tyrosine modification",3,0,0.63,2740,"1.00000","0.89883","0.8988" +"GO:0007623","circadian rhythm",15,3,3.15,1470,"0.63930","0.89893","0.8989" +"GO:0040007","growth",67,10,14.07,2073,"0.92239","0.89925","0.8992" +"GO:0048869","cellular developmental process",186,35,39.07,1825,"0.80170","0.89964","0.8996" +"GO:0006897","endocytosis",33,7,6.93,1208,"0.55751","0.90037","0.9004" +"GO:0008593","regulation of Notch signaling pathway",10,1,2.1,2042,"0.90578","0.90083","0.9008" +"GO:1990778","protein localization to cell periphery",9,0,1.89,2741,"1.00000","0.90084","0.9008" +"GO:0070588","calcium ion transmembrane transport",7,0,1.47,2742,"1.00000","0.90137","0.9014" +"GO:0015918","sterol transport",6,1,1.26,1756,"0.75735","0.90153","0.9015" +"GO:0022603","regulation of anatomical structure morph...",30,3,6.3,2159,"0.96703","0.90199","0.9020" +"GO:0051641","cellular localization",233,43,48.94,1964,"0.86128","0.90218","0.9022" +"GO:0016482","cytosolic transport",13,2,2.73,1809,"0.79279","0.90223","0.9022" +"GO:0050673","epithelial cell proliferation",11,2,2.31,1645,"0.70716","0.90520","0.9052" +"GO:0032543","mitochondrial translation",16,1,3.36,2183,"0.97727","0.90639","0.9064" +"GO:0140053","mitochondrial gene expression",16,1,3.36,2184,"0.97727","0.90639","0.9064" +"GO:0001667","ameboidal-type cell migration",12,2,2.52,1692,"0.75316","0.90662","0.9066" +"GO:0040039","inductive cell migration",3,0,0.63,2743,"1.00000","0.90666","0.9067" +"GO:0019751","polyol metabolic process",10,1,2.1,2043,"0.90578","0.90785","0.9078" +"GO:0048589","developmental growth",43,5,9.03,2154,"0.96450","0.90805","0.9081" +"GO:0043647","inositol phosphate metabolic process",4,0,0.84,2744,"1.00000","0.90819","0.9082" +"GO:0010628","positive regulation of gene expression",67,10,14.07,2074,"0.92239","0.90860","0.9086" +"GO:1990542","mitochondrial transmembrane transport",13,2,2.73,1810,"0.79279","0.90869","0.9087" +"GO:0030282","bone mineralization",3,0,0.63,2745,"1.00000","0.90871","0.9087" +"GO:0008104","protein localization",196,39,41.17,1513,"0.68224","0.90896","0.9090" +"GO:0006869","lipid transport",20,4,4.2,1455,"0.63198","0.90902","0.9090" +"GO:0051146","striated muscle cell differentiation",16,1,3.36,2185,"0.97727","0.90957","0.9096" +"GO:0048522","positive regulation of cellular process",242,46,50.83,1881,"0.81017","0.90976","0.9098" +"GO:0032387","negative regulation of intracellular tra...",7,1,1.47,1867,"0.80843","0.91004","0.9100" +"GO:0045214","sarcomere organization",7,1,1.47,1868,"0.80843","0.91004","0.9100" +"GO:0031109","microtubule polymerization or depolymeri...",13,2,2.73,1811,"0.79279","0.91032","0.9103" +"GO:0042127","regulation of cell proliferation",38,8,7.98,1210,"0.56177","0.91042","0.9104" +"GO:0001818","negative regulation of cytokine producti...",5,1,1.05,1598,"0.69268","0.91055","0.9105" +"GO:0017148","negative regulation of translation",4,0,0.84,2746,"1.00000","0.91170","0.9117" +"GO:0034249","negative regulation of cellular amide me...",4,0,0.84,2747,"1.00000","0.91170","0.9117" +"GO:0062014","negative regulation of small molecule me...",4,0,0.84,2748,"1.00000","0.91227","0.9123" +"GO:0006302","double-strand break repair",10,2,2.1,1493,"0.65422","0.91237","0.9124" +"GO:0048762","mesenchymal cell differentiation",7,1,1.47,1869,"0.80843","0.91311","0.9131" +"GO:0035902","response to immobilization stress",4,1,0.84,1428,"0.61081","0.91328","0.9133" +"GO:0098974","postsynaptic actin cytoskeleton organiza...",4,1,0.84,1429,"0.61081","0.91328","0.9133" +"GO:0099188","postsynaptic cytoskeleton organization",4,1,0.84,1430,"0.61081","0.91328","0.9133" +"GO:1904030","negative regulation of cyclin-dependent ...",4,1,0.84,1431,"0.61081","0.91328","0.9133" +"GO:0007610","behavior",41,9,8.61,950,"0.50249","0.91455","0.9145" +"GO:0051091","positive regulation of DNA-binding trans...",8,1,1.68,1937,"0.84877","0.91464","0.9146" +"GO:0060048","cardiac muscle contraction",8,1,1.68,1938,"0.84877","0.91464","0.9146" +"GO:0006637","acyl-CoA metabolic process",8,1,1.68,1939,"0.84877","0.91494","0.9149" +"GO:0035383","thioester metabolic process",8,1,1.68,1940,"0.84877","0.91494","0.9149" +"GO:0070838","divalent metal ion transport",17,1,3.57,2200,"0.98208","0.91504","0.9150" +"GO:0072511","divalent inorganic cation transport",17,1,3.57,2201,"0.98208","0.91504","0.9150" +"GO:0072359","circulatory system development",36,3,7.56,2230,"0.98904","0.91632","0.9163" +"GO:0006479","protein methylation",18,3,3.78,1784,"0.76265","0.91635","0.9164" +"GO:0008213","protein alkylation",18,3,3.78,1785,"0.76265","0.91635","0.9164" +"GO:0051239","regulation of multicellular organismal p...",102,17,21.42,2013,"0.89126","0.91667","0.9167" +"GO:0042147","retrograde transport, endosome to Golgi",9,2,1.89,1263,"0.59390","0.91670","0.9167" +"GO:0007266","Rho protein signal transduction",7,0,1.47,2749,"1.00000","0.91688","0.9169" +"GO:0035264","multicellular organism growth",10,0,2.1,2750,"1.00000","0.91734","0.9173" +"GO:0051270","regulation of cellular component movemen...",27,2,5.67,2216,"0.98627","0.91745","0.9175" +"GO:0045595","regulation of cell differentiation",70,9,14.7,2171,"0.97318","0.91752","0.9175" +"GO:0016197","endosomal transport",20,4,4.2,1456,"0.63198","0.91778","0.9178" +"GO:0045321","leukocyte activation",20,3,4.2,1893,"0.82414","0.91778","0.9178" +"GO:0001764","neuron migration",4,0,0.84,2751,"1.00000","0.91797","0.9180" +"GO:0048663","neuron fate commitment",4,0,0.84,2752,"1.00000","0.91797","0.9180" +"GO:0050877","nervous system process",49,9,10.29,1664,"0.73015","0.91891","0.9189" +"GO:0033036","macromolecule localization",224,47,47.05,1169,"0.53198","0.91942","0.9194" +"GO:0007549","dosage compensation",4,1,0.84,1432,"0.61081","0.91951","0.9195" +"GO:0010605","negative regulation of macromolecule met...",131,26,27.52,1503,"0.66540","0.91955","0.9196" +"GO:0003008","system process",69,13,14.49,1658,"0.71838","0.91999","0.9200" +"GO:0010927","cellular component assembly involved in ...",14,1,2.94,2149,"0.96348","0.92047","0.9205" +"GO:0060828","regulation of canonical Wnt signaling pa...",11,2,2.31,1646,"0.70716","0.92057","0.9206" +"GO:0042221","response to chemical",197,37,41.38,1883,"0.81135","0.92076","0.9208" +"GO:0030324","lung development",9,1,1.89,1996,"0.88063","0.92089","0.9209" +"GO:0048645","animal organ formation",5,0,1.05,2753,"1.00000","0.92132","0.9213" +"GO:0071902","positive regulation of protein serine/th...",4,0,0.84,2754,"1.00000","0.92199","0.9220" +"GO:0006259","DNA metabolic process",103,14,21.63,2195,"0.98170","0.92216","0.9222" +"GO:0006120","mitochondrial electron transport, NADH t...",6,1,1.26,1757,"0.75735","0.92341","0.9234" +"GO:0042493","response to drug",50,7,10.5,2076,"0.92560","0.92500","0.9250" +"GO:0043393","regulation of protein binding",12,3,2.52,934,"0.47717","0.92575","0.9258" +"GO:0097428","protein maturation by iron-sulfur cluste...",4,0,0.84,2755,"1.00000","0.92593","0.9259" +"GO:0045596","negative regulation of cell differentiat...",27,2,5.67,2217,"0.98627","0.92606","0.9261" +"GO:0044706","multi-multicellular organism process",6,0,1.26,2756,"1.00000","0.92639","0.9264" +"GO:0016070","RNA metabolic process",557,91,116.99,2268,"0.99920","0.92662","0.9266" +"GO:0045137","development of primary sexual characteri...",11,2,2.31,1647,"0.70716","0.92665","0.9266" +"GO:0000469","cleavage involved in rRNA processing",7,0,1.47,2757,"1.00000","0.92705","0.9271" +"GO:0007219","Notch signaling pathway",14,2,2.94,1898,"0.82669","0.92709","0.9271" +"GO:0048518","positive regulation of biological proces...",278,52,58.39,1962,"0.85841","0.92713","0.9271" +"GO:0010675","regulation of cellular carbohydrate meta...",8,0,1.68,2758,"1.00000","0.92714","0.9271" +"GO:0050896","response to stimulus",577,110,121.19,2059,"0.91193","0.92774","0.9277" +"GO:0035023","regulation of Rho protein signal transdu...",6,0,1.26,2759,"1.00000","0.92835","0.9283" +"GO:0032411","positive regulation of transporter activ...",5,0,1.05,2760,"1.00000","0.92857","0.9286" +"GO:0032414","positive regulation of ion transmembrane...",5,0,1.05,2761,"1.00000","0.92857","0.9286" +"GO:0034764","positive regulation of transmembrane tra...",5,0,1.05,2762,"1.00000","0.92857","0.9286" +"GO:0034767","positive regulation of ion transmembrane...",5,0,1.05,2763,"1.00000","0.92857","0.9286" +"GO:1904064","positive regulation of cation transmembr...",5,0,1.05,2764,"1.00000","0.92857","0.9286" +"GO:0070988","demethylation",6,1,1.26,1758,"0.75735","0.92964","0.9296" +"GO:0030865","cortical cytoskeleton organization",7,0,1.47,2765,"1.00000","0.92985","0.9299" +"GO:0030866","cortical actin cytoskeleton organization",7,0,1.47,2766,"1.00000","0.92985","0.9299" +"GO:0002521","leukocyte differentiation",6,1,1.26,1759,"0.75735","0.93028","0.9303" +"GO:0030098","lymphocyte differentiation",6,1,1.26,1760,"0.75735","0.93028","0.9303" +"GO:0007411","axon guidance",16,4,3.36,865,"0.44210","0.93039","0.9304" +"GO:0097485","neuron projection guidance",16,4,3.36,866,"0.44210","0.93039","0.9304" +"GO:0006783","heme biosynthetic process",3,0,0.63,2767,"1.00000","0.93080","0.9308" +"GO:0042168","heme metabolic process",3,0,0.63,2768,"1.00000","0.93080","0.9308" +"GO:0035994","response to muscle stretch",4,1,0.84,1433,"0.61081","0.93134","0.9313" +"GO:0045445","myoblast differentiation",4,1,0.84,1434,"0.61081","0.93134","0.9313" +"GO:0045661","regulation of myoblast differentiation",4,1,0.84,1435,"0.61081","0.93134","0.9313" +"GO:0045662","negative regulation of myoblast differen...",4,1,0.84,1436,"0.61081","0.93134","0.9313" +"GO:0050982","detection of mechanical stimulus",4,1,0.84,1437,"0.61081","0.93134","0.9313" +"GO:0055006","cardiac cell development",4,1,0.84,1438,"0.61081","0.93134","0.9313" +"GO:0006725","cellular aromatic compound metabolic pro...",787,140,165.3,2248,"0.99663","0.93147","0.9315" +"GO:0009058","biosynthetic process",817,155,171.6,2138,"0.96135","0.83224","0.9315" +"GO:0034728","nucleosome organization",6,1,1.26,1761,"0.75735","0.93250","0.9325" +"GO:0050767","regulation of neurogenesis",34,2,7.14,2249,"0.99682","0.93348","0.9335" +"GO:0042391","regulation of membrane potential",8,0,1.68,2769,"1.00000","0.93352","0.9335" +"GO:0008283","cell proliferation",54,11,11.34,1271,"0.60038","0.93419","0.9342" +"GO:0030520","intracellular estrogen receptor signalin...",3,0,0.63,2770,"1.00000","0.93436","0.9344" +"GO:0033146","regulation of intracellular estrogen rec...",3,0,0.63,2771,"1.00000","0.93436","0.9344" +"GO:0006816","calcium ion transport",13,0,2.73,2772,"1.00000","0.93445","0.9345" +"GO:0032970","regulation of actin filament-based proce...",28,4,5.88,1966,"0.86991","0.93515","0.9352" +"GO:0060070","canonical Wnt signaling pathway",13,2,2.73,1812,"0.79279","0.93565","0.9356" +"GO:2000241","regulation of reproductive process",7,1,1.47,1870,"0.80843","0.93597","0.9360" +"GO:0007584","response to nutrient",7,0,1.47,2773,"1.00000","0.93597","0.9360" +"GO:0010906","regulation of glucose metabolic process",7,0,1.47,2774,"1.00000","0.93597","0.9360" +"GO:0044057","regulation of system process",20,3,4.2,1894,"0.82414","0.93611","0.9361" +"GO:0001775","cell activation",26,4,5.46,1900,"0.82770","0.93619","0.9362" +"GO:0048193","Golgi vesicle transport",33,2,6.93,2245,"0.99607","0.93634","0.9363" +"GO:0008052","sensory organ boundary specification",4,0,0.84,2775,"1.00000","0.93657","0.9366" +"GO:0010160","formation of animal organ boundary",4,0,0.84,2776,"1.00000","0.93657","0.9366" +"GO:0016360","sensory organ precursor cell fate determ...",4,0,0.84,2777,"1.00000","0.93657","0.9366" +"GO:0048859","formation of anatomical boundary",4,0,0.84,2778,"1.00000","0.93657","0.9366" +"GO:0060581","cell fate commitment involved in pattern...",4,0,0.84,2779,"1.00000","0.93657","0.9366" +"GO:0060582","cell fate determination involved in patt...",4,0,0.84,2780,"1.00000","0.93657","0.9366" +"GO:1903707","negative regulation of hemopoiesis",4,0,0.84,2781,"1.00000","0.93657","0.9366" +"GO:0046483","heterocycle metabolic process",789,139,165.72,2256,"0.99787","0.93658","0.9366" +"GO:0032501","multicellular organismal process",339,69,71.2,1471,"0.64673","0.93674","0.9367" +"GO:0032502","developmental process",339,66,71.2,1800,"0.79090","0.93674","0.9367" +"GO:0055001","muscle cell development",11,1,2.31,2080,"0.92565","0.93703","0.9370" +"GO:0055002","striated muscle cell development",11,1,2.31,2081,"0.92565","0.93703","0.9370" +"GO:0009649","entrainment of circadian clock",3,0,0.63,2782,"1.00000","0.93785","0.9378" +"GO:0021536","diencephalon development",3,0,0.63,2783,"1.00000","0.93785","0.9378" +"GO:2001222","regulation of neuron migration",3,0,0.63,2784,"1.00000","0.93785","0.9378" +"GO:0006996","organelle organization",324,54,68.05,2207,"0.98452","0.93872","0.9387" +"GO:0006275","regulation of DNA replication",5,1,1.05,1599,"0.69268","0.93950","0.9395" +"GO:0007596","blood coagulation",7,1,1.47,1871,"0.80843","0.93991","0.9399" +"GO:0007599","hemostasis",7,1,1.47,1872,"0.80843","0.93991","0.9399" +"GO:0050817","coagulation",7,1,1.47,1873,"0.80843","0.93991","0.9399" +"GO:0051094","positive regulation of developmental pro...",42,4,8.82,2213,"0.98609","0.93992","0.9399" +"GO:1901360","organic cyclic compound metabolic proces...",808,144,169.71,2250,"0.99684","0.94029","0.9403" +"GO:0042551","neuron maturation",5,1,1.05,1600,"0.69268","0.94060","0.9406" +"GO:0046532","regulation of photoreceptor cell differe...",5,1,1.05,1601,"0.69268","0.94060","0.9406" +"GO:0042773","ATP synthesis coupled electron transport",11,1,2.31,2082,"0.92565","0.94074","0.9407" +"GO:0002696","positive regulation of leukocyte activat...",3,0,0.63,2785,"1.00000","0.94082","0.9408" +"GO:0050867","positive regulation of cell activation",3,0,0.63,2786,"1.00000","0.94082","0.9408" +"GO:0051251","positive regulation of lymphocyte activa...",3,0,0.63,2787,"1.00000","0.94082","0.9408" +"GO:0030217","T cell differentiation",5,1,1.05,1602,"0.69268","0.94157","0.9416" +"GO:0048821","erythrocyte development",5,0,1.05,2788,"1.00000","0.94157","0.9416" +"GO:0061515","myeloid cell development",5,0,1.05,2789,"1.00000","0.94157","0.9416" +"GO:0032886","regulation of microtubule-based process",13,2,2.73,1813,"0.79279","0.94161","0.9416" +"GO:0043254","regulation of protein complex assembly",27,4,5.67,1948,"0.85006","0.94199","0.9420" +"GO:0048646","anatomical structure formation involved ...",56,11,11.76,1473,"0.65243","0.94231","0.9423" +"GO:0045935","positive regulation of nucleobase-contai...",64,8,13.44,2172,"0.97363","0.94231","0.9423" +"GO:0051928","positive regulation of calcium ion trans...",4,0,0.84,2790,"1.00000","0.94245","0.9425" +"GO:1903169","regulation of calcium ion transmembrane ...",4,0,0.84,2791,"1.00000","0.94245","0.9425" +"GO:0030239","myofibril assembly",10,1,2.1,2044,"0.90578","0.94260","0.9426" +"GO:0030099","myeloid cell differentiation",12,1,2.52,2101,"0.94133","0.94355","0.9435" +"GO:1903706","regulation of hemopoiesis",12,2,2.52,1693,"0.75316","0.94355","0.9435" +"GO:0033143","regulation of intracellular steroid horm...",8,0,1.68,2792,"1.00000","0.94440","0.9444" +"GO:0009891","positive regulation of biosynthetic proc...",63,5,13.23,2264,"0.99875","0.94449","0.9445" +"GO:0072001","renal system development",17,4,3.57,948,"0.49311","0.94475","0.9447" +"GO:0006139","nucleobase-containing compound metabolic...",759,132,159.42,2262,"0.99851","0.94475","0.9448" +"GO:0048870","cell motility",39,8,8.19,1267,"0.59400","0.94529","0.9453" +"GO:0051674","localization of cell",39,8,8.19,1268,"0.59400","0.94529","0.9453" +"GO:0048872","homeostasis of number of cells",15,2,3.15,1959,"0.85552","0.94565","0.9456" +"GO:0051153","regulation of striated muscle cell diffe...",5,1,1.05,1603,"0.69268","0.94582","0.9458" +"GO:0055007","cardiac muscle cell differentiation",5,1,1.05,1604,"0.69268","0.94582","0.9458" +"GO:0070507","regulation of microtubule cytoskeleton o...",12,2,2.52,1694,"0.75316","0.94600","0.9460" +"GO:1901576","organic substance biosynthetic process",794,146,166.77,2218,"0.98685","0.94035","0.9460" +"GO:0046785","microtubule polymerization",11,2,2.31,1648,"0.70716","0.94634","0.9463" +"GO:0051056","regulation of small GTPase mediated sign...",10,1,2.1,2045,"0.90578","0.94707","0.9471" +"GO:0006354","DNA-templated transcription, elongation",14,1,2.94,2150,"0.96348","0.94843","0.9484" +"GO:0044271","cellular nitrogen compound biosynthetic ...",622,104,130.65,2267,"0.99903","0.94854","0.9485" +"GO:0051668","localization within membrane",6,0,1.26,2793,"1.00000","0.94857","0.9486" +"GO:0031328","positive regulation of cellular biosynth...",61,5,12.81,2261,"0.99822","0.94880","0.9488" +"GO:0010959","regulation of metal ion transport",10,0,2.1,2794,"1.00000","0.94924","0.9492" +"GO:0120009","intermembrane lipid transfer",3,0,0.63,2795,"1.00000","0.95013","0.9501" +"GO:0007398","ectoderm development",4,0,0.84,2796,"1.00000","0.95034","0.9503" +"GO:0071417","cellular response to organonitrogen comp...",14,1,2.94,2151,"0.96348","0.95096","0.9510" +"GO:0046578","regulation of Ras protein signal transdu...",9,1,1.89,1997,"0.88063","0.95225","0.9523" +"GO:0061448","connective tissue development",9,1,1.89,1998,"0.88063","0.95225","0.9523" +"GO:0043087","regulation of GTPase activity",18,3,3.78,1786,"0.76265","0.95229","0.9523" +"GO:1903046","meiotic cell cycle process",12,2,2.52,1695,"0.75316","0.95266","0.9527" +"GO:0070076","histone lysine demethylation",3,0,0.63,2797,"1.00000","0.95282","0.9528" +"GO:0010557","positive regulation of macromolecule bio...",59,5,12.39,2255,"0.99746","0.95306","0.9531" +"GO:0051254","positive regulation of RNA metabolic pro...",59,8,12.39,2116,"0.94942","0.95306","0.9531" +"GO:0044774","mitotic DNA integrity checkpoint",6,1,1.26,1762,"0.75735","0.95321","0.9532" +"GO:0030001","metal ion transport",54,9,11.34,1903,"0.83082","0.95347","0.9535" +"GO:2000377","regulation of reactive oxygen species me...",5,0,1.05,2798,"1.00000","0.95387","0.9539" +"GO:0051924","regulation of calcium ion transport",9,0,1.89,2799,"1.00000","0.95422","0.9542" +"GO:0098742","cell-cell adhesion via plasma-membrane a...",9,0,1.89,2800,"1.00000","0.95422","0.9542" +"GO:0045747","positive regulation of Notch signaling p...",6,0,1.26,2801,"1.00000","0.95427","0.9543" +"GO:0001817","regulation of cytokine production",14,3,2.94,1234,"0.58937","0.95506","0.9551" +"GO:0014031","mesenchymal cell development",5,1,1.05,1605,"0.69268","0.95512","0.9551" +"GO:0014032","neural crest cell development",5,1,1.05,1606,"0.69268","0.95512","0.9551" +"GO:0014033","neural crest cell differentiation",5,1,1.05,1607,"0.69268","0.95512","0.9551" +"GO:0006464","cellular protein modification process",391,75,82.13,1911,"0.84711","0.94240","0.9552" +"GO:0036211","protein modification process",391,75,82.13,1912,"0.84711","0.94240","0.9552" +"GO:0046903","secretion",43,10,9.03,845,"0.41648","0.95526","0.9553" +"GO:0002097","tRNA wobble base modification",6,0,1.26,2802,"1.00000","0.95532","0.9553" +"GO:0002098","tRNA wobble uridine modification",6,0,1.26,2803,"1.00000","0.95532","0.9553" +"GO:0006909","phagocytosis",18,4,3.78,1192,"0.54205","0.95551","0.9555" +"GO:0030307","positive regulation of cell growth",5,0,1.05,2804,"1.00000","0.95607","0.9561" +"GO:0007018","microtubule-based movement",29,6,6.09,1237,"0.59035","0.95653","0.9565" +"GO:1901019","regulation of calcium ion transmembrane ...",3,0,0.63,2805,"1.00000","0.95654","0.9565" +"GO:0046165","alcohol biosynthetic process",9,1,1.89,1999,"0.88063","0.95677","0.9568" +"GO:0071824","protein-DNA complex subunit organization",12,2,2.52,1696,"0.75316","0.95712","0.9571" +"GO:0060688","regulation of morphogenesis of a branchi...",3,0,0.63,2806,"1.00000","0.95799","0.9580" +"GO:0007264","small GTPase mediated signal transductio...",24,3,5.04,2056,"0.90720","0.95814","0.9581" +"GO:0007626","locomotory behavior",10,1,2.1,2046,"0.90578","0.95816","0.9582" +"GO:1901699","cellular response to nitrogen compound",15,1,3.15,2170,"0.97119","0.95845","0.9585" +"GO:0032456","endocytic recycling",5,0,1.05,2807,"1.00000","0.95951","0.9595" +"GO:0050808","synapse organization",16,1,3.36,2186,"0.97727","0.96038","0.9604" +"GO:0042035","regulation of cytokine biosynthetic proc...",3,0,0.63,2808,"1.00000","0.96046","0.9605" +"GO:0042089","cytokine biosynthetic process",3,0,0.63,2809,"1.00000","0.96046","0.9605" +"GO:0042107","cytokine metabolic process",3,0,0.63,2810,"1.00000","0.96046","0.9605" +"GO:0000226","microtubule cytoskeleton organization",33,5,6.93,1950,"0.85361","0.96112","0.9611" +"GO:0034220","ion transmembrane transport",73,14,15.33,1620,"0.69637","0.77412","0.9616" +"GO:0006323","DNA packaging",7,1,1.47,1874,"0.80843","0.96217","0.9622" +"GO:0009798","axis specification",12,2,2.52,1697,"0.75316","0.96241","0.9624" +"GO:0051648","vesicle localization",12,1,2.52,2102,"0.94133","0.96241","0.9624" +"GO:0030030","cell projection organization",70,8,14.7,2224,"0.98854","0.96280","0.9628" +"GO:0032868","response to insulin",4,0,0.84,2811,"1.00000","0.96294","0.9629" +"GO:0032869","cellular response to insulin stimulus",4,0,0.84,2812,"1.00000","0.96294","0.9629" +"GO:0035357","peroxisome proliferator activated recept...",4,0,0.84,2813,"1.00000","0.96294","0.9629" +"GO:0006892","post-Golgi vesicle-mediated transport",8,0,1.68,2814,"1.00000","0.96331","0.9633" +"GO:0007507","heart development",23,2,4.83,2164,"0.96909","0.96342","0.9634" +"GO:0120036","plasma membrane bounded cell projection ...",68,8,14.28,2208,"0.98478","0.96387","0.9639" +"GO:0044089","positive regulation of cellular componen...",30,3,6.3,2160,"0.96703","0.96410","0.9641" +"GO:0048666","neuron development",61,9,12.81,2069,"0.91983","0.96431","0.9643" +"GO:0007173","epidermal growth factor receptor signali...",5,1,1.05,1608,"0.69268","0.96446","0.9645" +"GO:0038127","ERBB signaling pathway",5,1,1.05,1609,"0.69268","0.96446","0.9645" +"GO:0050680","negative regulation of epithelial cell p...",5,1,1.05,1610,"0.69268","0.96446","0.9645" +"GO:0001655","urogenital system development",18,4,3.78,1193,"0.54205","0.96454","0.9645" +"GO:0006911","phagocytosis, engulfment",3,0,0.63,2815,"1.00000","0.96455","0.9645" +"GO:0010324","membrane invagination",3,0,0.63,2816,"1.00000","0.96455","0.9645" +"GO:0018195","peptidyl-arginine modification",3,0,0.63,2817,"1.00000","0.96455","0.9645" +"GO:0099024","plasma membrane invagination",3,0,0.63,2818,"1.00000","0.96455","0.9645" +"GO:0032989","cellular component morphogenesis",66,9,13.86,2134,"0.95562","0.96494","0.9649" +"GO:0006814","sodium ion transport",17,2,3.57,2019,"0.90044","0.96510","0.9651" +"GO:0015893","drug transport",9,0,1.89,2819,"1.00000","0.96518","0.9652" +"GO:0051650","establishment of vesicle localization",11,1,2.31,2083,"0.92565","0.96550","0.9655" +"GO:0097300","programmed necrotic cell death",3,0,0.63,2820,"1.00000","0.96554","0.9655" +"GO:0070727","cellular macromolecule localization",158,32,33.19,1448,"0.62699","0.96621","0.9662" +"GO:0050890","cognition",8,2,1.68,1164,"0.52603","0.96641","0.9664" +"GO:0006778","porphyrin-containing compound metabolic ...",7,1,1.47,1875,"0.80843","0.96722","0.9672" +"GO:0060284","regulation of cell development",39,3,8.19,2238,"0.99380","0.96728","0.9673" +"GO:0034613","cellular protein localization",157,32,32.98,1439,"0.61103","0.96748","0.9675" +"GO:0007297","ovarian follicle cell migration",3,0,0.63,2821,"1.00000","0.96779","0.9678" +"GO:0007298","border follicle cell migration",3,0,0.63,2822,"1.00000","0.96779","0.9678" +"GO:0000245","spliceosomal complex assembly",7,1,1.47,1876,"0.80843","0.96819","0.9682" +"GO:0061640","cytoskeleton-dependent cytokinesis",11,2,2.31,1649,"0.70716","0.96824","0.9682" +"GO:0007267","cell-cell signaling",57,12,11.97,1202,"0.54965","0.96860","0.9686" +"GO:0007291","sperm individualization",5,1,1.05,1611,"0.69268","0.96863","0.9686" +"GO:0007349","cellularization",5,1,1.05,1612,"0.69268","0.96863","0.9686" +"GO:0016319","mushroom body development",5,1,1.05,1613,"0.69268","0.96863","0.9686" +"GO:0021762","substantia nigra development",5,1,1.05,1614,"0.69268","0.96863","0.9686" +"GO:0030901","midbrain development",5,1,1.05,1615,"0.69268","0.96863","0.9686" +"GO:0048857","neural nucleus development",5,1,1.05,1616,"0.69268","0.96863","0.9686" +"GO:0071257","cellular response to electrical stimulus",5,1,1.05,1617,"0.69268","0.96863","0.9686" +"GO:0007268","chemical synaptic transmission",19,4,3.99,1221,"0.58845","0.96910","0.9691" +"GO:0098916","anterograde trans-synaptic signaling",19,4,3.99,1222,"0.58845","0.96910","0.9691" +"GO:0099536","synaptic signaling",19,4,3.99,1223,"0.58845","0.96910","0.9691" +"GO:0099537","trans-synaptic signaling",19,4,3.99,1224,"0.58845","0.96910","0.9691" +"GO:1902680","positive regulation of RNA biosynthetic ...",51,5,10.71,2233,"0.99007","0.96934","0.9693" +"GO:0007111","meiosis II cytokinesis",3,0,0.63,2823,"1.00000","0.96936","0.9694" +"GO:0033206","meiotic cytokinesis",3,0,0.63,2824,"1.00000","0.96936","0.9694" +"GO:0061983","meiosis II cell cycle process",3,0,0.63,2825,"1.00000","0.96936","0.9694" +"GO:0016477","cell migration",36,7,7.56,1498,"0.65680","0.96957","0.9696" +"GO:0043112","receptor metabolic process",7,1,1.47,1877,"0.80843","0.97056","0.9706" +"GO:0002274","myeloid leukocyte activation",7,0,1.47,2826,"1.00000","0.97056","0.9706" +"GO:0022406","membrane docking",7,0,1.47,2827,"1.00000","0.97056","0.9706" +"GO:0048278","vesicle docking",7,0,1.47,2828,"1.00000","0.97056","0.9706" +"GO:0140029","exocytic process",7,0,1.47,2829,"1.00000","0.97056","0.9706" +"GO:0140056","organelle localization by membrane tethe...",7,0,1.47,2830,"1.00000","0.97056","0.9706" +"GO:0043547","positive regulation of GTPase activity",14,2,2.94,1899,"0.82669","0.97074","0.9707" +"GO:0051125","regulation of actin nucleation",3,0,0.63,2831,"1.00000","0.97088","0.9709" +"GO:0045893","positive regulation of transcription, DN...",50,5,10.5,2221,"0.98829","0.97127","0.9713" +"GO:1903508","positive regulation of nucleic acid-temp...",50,5,10.5,2222,"0.98829","0.97127","0.9713" +"GO:0040014","regulation of multicellular organism gro...",6,0,1.26,2832,"1.00000","0.97143","0.9714" +"GO:0006084","acetyl-CoA metabolic process",3,0,0.63,2833,"1.00000","0.97208","0.9721" +"GO:0006085","acetyl-CoA biosynthetic process",3,0,0.63,2834,"1.00000","0.97208","0.9721" +"GO:0006111","regulation of gluconeogenesis",3,0,0.63,2835,"1.00000","0.97208","0.9721" +"GO:0043255","regulation of carbohydrate biosynthetic ...",3,0,0.63,2836,"1.00000","0.97208","0.9721" +"GO:0033013","tetrapyrrole metabolic process",10,1,2.1,2047,"0.90578","0.97210","0.9721" +"GO:0006935","chemotaxis",20,4,4.2,1457,"0.63198","0.97311","0.9731" +"GO:0023052","signaling",342,62,71.83,2088,"0.93064","0.97315","0.9731" +"GO:0045664","regulation of neuron differentiation",29,1,6.09,2266,"0.99897","0.97333","0.9733" +"GO:0045944","positive regulation of transcription by ...",35,2,7.35,2254,"0.99743","0.97362","0.9736" +"GO:0000902","cell morphogenesis",49,8,10.29,1909,"0.83857","0.97401","0.9740" +"GO:0007424","open tracheal system development",7,1,1.47,1878,"0.80843","0.97459","0.9746" +"GO:0006904","vesicle docking involved in exocytosis",6,0,1.26,2837,"1.00000","0.97472","0.9747" +"GO:0045185","maintenance of protein location",10,1,2.1,2048,"0.90578","0.97511","0.9751" +"GO:0097435","supramolecular fiber organization",51,7,10.71,2094,"0.93448","0.97620","0.9762" +"GO:0007165","signal transduction",317,59,66.58,2007,"0.88317","0.97662","0.9766" +"GO:0042330","taxis",21,4,4.41,1507,"0.67242","0.97665","0.9767" +"GO:0046545","development of primary female sexual cha...",5,0,1.05,2838,"1.00000","0.97684","0.9768" +"GO:0046660","female sex differentiation",5,0,1.05,2839,"1.00000","0.97684","0.9768" +"GO:0036065","fucosylation",3,0,0.63,2840,"1.00000","0.97689","0.9769" +"GO:0031175","neuron projection development",43,5,9.03,2155,"0.96450","0.97721","0.9772" +"GO:2001022","positive regulation of response to DNA d...",4,0,0.84,2841,"1.00000","0.97739","0.9774" +"GO:0032507","maintenance of protein location in cell",9,1,1.89,2000,"0.88063","0.97758","0.9776" +"GO:0050878","regulation of body fluid levels",9,1,1.89,2001,"0.88063","0.97758","0.9776" +"GO:0051651","maintenance of location in cell",9,1,1.89,2002,"0.88063","0.97758","0.9776" +"GO:0045055","regulated exocytosis",7,0,1.47,2842,"1.00000","0.97794","0.9779" +"GO:0000904","cell morphogenesis involved in different...",41,7,8.61,1799,"0.78905","0.97827","0.9783" +"GO:0070897","transcription preinitiation complex asse...",6,1,1.26,1763,"0.75735","0.97838","0.9784" +"GO:0051495","positive regulation of cytoskeleton orga...",18,3,3.78,1787,"0.76265","0.97840","0.9784" +"GO:1902905","positive regulation of supramolecular fi...",18,3,3.78,1788,"0.76265","0.97840","0.9784" +"GO:0031334","positive regulation of protein complex a...",21,3,4.41,1944,"0.84942","0.97877","0.9788" +"GO:0002263","cell activation involved in immune respo...",5,0,1.05,2843,"1.00000","0.97890","0.9789" +"GO:0002275","myeloid cell activation involved in immu...",5,0,1.05,2844,"1.00000","0.97890","0.9789" +"GO:0002283","neutrophil activation involved in immune...",5,0,1.05,2845,"1.00000","0.97890","0.9789" +"GO:0002366","leukocyte activation involved in immune ...",5,0,1.05,2846,"1.00000","0.97890","0.9789" +"GO:0002444","myeloid leukocyte mediated immunity",5,0,1.05,2847,"1.00000","0.97890","0.9789" +"GO:0002446","neutrophil mediated immunity",5,0,1.05,2848,"1.00000","0.97890","0.9789" +"GO:0007611","learning or memory",5,0,1.05,2849,"1.00000","0.97890","0.9789" +"GO:0036230","granulocyte activation",5,0,1.05,2850,"1.00000","0.97890","0.9789" +"GO:0042119","neutrophil activation",5,0,1.05,2851,"1.00000","0.97890","0.9789" +"GO:0043299","leukocyte degranulation",5,0,1.05,2852,"1.00000","0.97890","0.9789" +"GO:0043312","neutrophil degranulation",5,0,1.05,2853,"1.00000","0.97890","0.9789" +"GO:0051493","regulation of cytoskeleton organization",33,5,6.93,1951,"0.85361","0.97932","0.9793" +"GO:0051899","membrane depolarization",4,0,0.84,2854,"1.00000","0.97942","0.9794" +"GO:0071310","cellular response to organic substance",83,12,17.43,2118,"0.95300","0.97974","0.9797" +"GO:0030182","neuron differentiation",68,9,14.28,2156,"0.96539","0.98010","0.9801" +"GO:0007154","cell communication",351,62,73.72,2137,"0.95895","0.98065","0.9807" +"GO:0032990","cell part morphogenesis",36,5,7.56,2023,"0.90190","0.98093","0.9809" +"GO:0006333","chromatin assembly or disassembly",8,1,1.68,1941,"0.84877","0.98101","0.9810" +"GO:0006420","arginyl-tRNA aminoacylation",3,0,0.63,2855,"1.00000","0.98102","0.9810" +"GO:0032784","regulation of DNA-templated transcriptio...",7,0,1.47,2856,"1.00000","0.98106","0.9811" +"GO:0006482","protein demethylation",5,0,1.05,2857,"1.00000","0.98117","0.9812" +"GO:0008214","protein dealkylation",5,0,1.05,2858,"1.00000","0.98117","0.9812" +"GO:0036498","IRE1-mediated unfolded protein response",4,0,0.84,2859,"1.00000","0.98172","0.9817" +"GO:0010721","negative regulation of cell development",13,1,2.73,2128,"0.95371","0.98191","0.9819" +"GO:0015696","ammonium transport",4,0,0.84,2860,"1.00000","0.98309","0.9831" +"GO:0035418","protein localization to synapse",4,0,0.84,2861,"1.00000","0.98309","0.9831" +"GO:0046889","positive regulation of lipid biosyntheti...",3,0,0.63,2862,"1.00000","0.98340","0.9834" +"GO:0048812","neuron projection morphogenesis",31,5,6.51,1885,"0.81149","0.98359","0.9836" +"GO:0048858","cell projection morphogenesis",31,5,6.51,1886,"0.81149","0.98359","0.9836" +"GO:0061564","axon development",31,5,6.51,1887,"0.81149","0.98359","0.9836" +"GO:0120039","plasma membrane bounded cell projection ...",31,5,6.51,1888,"0.81149","0.98359","0.9836" +"GO:0048667","cell morphogenesis involved in neuron di...",30,5,6.3,1797,"0.78705","0.98412","0.9841" +"GO:0001837","epithelial to mesenchymal transition",5,1,1.05,1618,"0.69268","0.98438","0.9844" +"GO:0007409","axonogenesis",29,5,6.09,1775,"0.76022","0.98465","0.9847" +"GO:0007098","centrosome cycle",6,1,1.26,1764,"0.75735","0.98470","0.9847" +"GO:0031023","microtubule organizing center organizati...",6,1,1.26,1765,"0.75735","0.98470","0.9847" +"GO:0016577","histone demethylation",4,0,0.84,2863,"1.00000","0.98491","0.9849" +"GO:0000281","mitotic cytokinesis",6,1,1.26,1766,"0.75735","0.98501","0.9850" +"GO:0030168","platelet activation",6,1,1.26,1767,"0.75735","0.98501","0.9850" +"GO:0034109","homotypic cell-cell adhesion",6,1,1.26,1768,"0.75735","0.98501","0.9850" +"GO:0070527","platelet aggregation",6,1,1.26,1769,"0.75735","0.98501","0.9850" +"GO:0044260","cellular macromolecule metabolic process",1007,170,211.51,2277,"0.99998","0.96643","0.9850" +"GO:1902653","secondary alcohol biosynthetic process",3,0,0.63,2864,"1.00000","0.98541","0.9854" +"GO:0045010","actin nucleation",12,1,2.52,2103,"0.94133","0.98558","0.9856" +"GO:0040013","negative regulation of locomotion",3,0,0.63,2865,"1.00000","0.98605","0.9861" +"GO:0051271","negative regulation of cellular componen...",3,0,0.63,2866,"1.00000","0.98605","0.9861" +"GO:2000146","negative regulation of cell motility",3,0,0.63,2867,"1.00000","0.98605","0.9861" +"GO:0007019","microtubule depolymerization",3,0,0.63,2868,"1.00000","0.98626","0.9863" +"GO:0007026","negative regulation of microtubule depol...",3,0,0.63,2869,"1.00000","0.98626","0.9863" +"GO:0031111","negative regulation of microtubule polym...",3,0,0.63,2870,"1.00000","0.98626","0.9863" +"GO:0031114","regulation of microtubule depolymerizati...",3,0,0.63,2871,"1.00000","0.98626","0.9863" +"GO:0040034","regulation of development, heterochronic",3,0,0.63,2872,"1.00000","0.98668","0.9867" +"GO:0006811","ion transport",142,31,29.83,851,"0.43621","0.85763","0.9871" +"GO:0007612","learning",3,0,0.63,2873,"1.00000","0.98729","0.9873" +"GO:0048489","synaptic vesicle transport",3,0,0.63,2874,"1.00000","0.98729","0.9873" +"GO:0051963","regulation of synapse assembly",3,0,0.63,2875,"1.00000","0.98729","0.9873" +"GO:0097480","establishment of synaptic vesicle locali...",3,0,0.63,2876,"1.00000","0.98729","0.9873" +"GO:0071840","cellular component organization or bioge...",505,84,106.07,2252,"0.99734","0.98775","0.9878" +"GO:0048468","cell development",119,21,24.99,1945,"0.85006","0.98783","0.9878" +"GO:0090304","nucleic acid metabolic process",639,101,134.22,2274,"0.99994","0.98808","0.9881" +"GO:0032786","positive regulation of DNA-templated tra...",4,0,0.84,2877,"1.00000","0.98914","0.9891" +"GO:0006812","cation transport",96,21,20.16,910,"0.45679","0.75530","0.9897" +"GO:0006928","movement of cell or subcellular componen...",80,15,16.8,1671,"0.73440","0.99014","0.9901" +"GO:0022008","neurogenesis",79,11,16.59,2139,"0.96164","0.99027","0.9903" +"GO:0051961","negative regulation of nervous system de...",12,1,2.52,2104,"0.94133","0.99038","0.9904" +"GO:0048699","generation of neurons",75,10,15.75,2166,"0.96947","0.99045","0.9905" +"GO:0009950","dorsal/ventral axis specification",3,0,0.63,2878,"1.00000","0.99050","0.9905" +"GO:0050806","positive regulation of synaptic transmis...",5,1,1.05,1619,"0.69268","0.99091","0.9909" +"GO:2000145","regulation of cell motility",23,2,4.83,2165,"0.96909","0.99097","0.9910" +"GO:0051258","protein polymerization",30,5,6.3,1798,"0.78705","0.99120","0.9912" +"GO:0032366","intracellular sterol transport",3,0,0.63,2879,"1.00000","0.99135","0.9914" +"GO:0000122","negative regulation of transcription by ...",28,2,5.88,2229,"0.98883","0.99151","0.9915" +"GO:0040011","locomotion",63,13,13.23,1215,"0.57970","0.99228","0.9923" +"GO:0032273","positive regulation of protein polymeriz...",18,3,3.78,1789,"0.76265","0.99232","0.9923" +"GO:0030261","chromosome condensation",3,0,0.63,2880,"1.00000","0.99233","0.9923" +"GO:0030838","positive regulation of actin filament po...",13,1,2.73,2129,"0.95371","0.99301","0.9930" +"GO:0046717","acid secretion",4,0,0.84,2881,"1.00000","0.99304","0.9930" +"GO:0007156","homophilic cell adhesion via plasma memb...",6,0,1.26,2882,"1.00000","0.99310","0.9931" +"GO:0035150","regulation of tube size",6,0,1.26,2883,"1.00000","0.99310","0.9931" +"GO:0006865","amino acid transport",12,2,2.52,1698,"0.75316","0.99344","0.9934" +"GO:0048864","stem cell development",6,1,1.26,1770,"0.75735","0.99382","0.9938" +"GO:0022607","cellular component assembly",199,30,41.8,2231,"0.98909","0.99461","0.9946" +"GO:0001649","osteoblast differentiation",5,0,1.05,2884,"1.00000","0.99470","0.9947" +"GO:0032309","icosanoid secretion",3,0,0.63,2885,"1.00000","0.99478","0.9948" +"GO:0050482","arachidonic acid secretion",3,0,0.63,2886,"1.00000","0.99478","0.9948" +"GO:0071715","icosanoid transport",3,0,0.63,2887,"1.00000","0.99478","0.9948" +"GO:1901571","fatty acid derivative transport",3,0,0.63,2888,"1.00000","0.99478","0.9948" +"GO:1903963","arachidonate transport",3,0,0.63,2889,"1.00000","0.99478","0.9948" +"GO:0050804","modulation of chemical synaptic transmis...",9,1,1.89,2003,"0.88063","0.99525","0.9952" +"GO:0099177","regulation of trans-synaptic signaling",9,1,1.89,2004,"0.88063","0.99525","0.9952" +"GO:0040017","positive regulation of locomotion",17,2,3.57,2020,"0.90044","0.99555","0.9955" +"GO:0006855","drug transmembrane transport",8,0,1.68,2890,"1.00000","0.99563","0.9956" +"GO:0016043","cellular component organization",451,76,94.73,2237,"0.99343","0.99634","0.9963" +"GO:0065007","biological regulation",903,164,189.67,2243,"0.99585","0.99668","0.9964" +"GO:0045597","positive regulation of cell differentiat...",28,3,5.88,2119,"0.95305","0.99661","0.9966" +"GO:0040012","regulation of locomotion",27,3,5.67,2115,"0.94414","0.99673","0.9967" +"GO:0030036","actin cytoskeleton organization",55,8,11.55,2064,"0.91754","0.99678","0.9968" +"GO:0016310","phosphorylation",192,30,40.33,2193,"0.97948","0.99724","0.9972" +"GO:0050794","regulation of cellular process",791,139,166.14,2259,"0.99814","0.99753","0.9975" +"GO:0030334","regulation of cell migration",20,2,4.2,2113,"0.94405","0.99758","0.9976" +"GO:0009987","cellular process",2054,393,431.42,2279,"0.99999","0.99769","0.9977" +"GO:0042692","muscle cell differentiation",18,1,3.78,2212,"0.98586","0.99782","0.9978" +"GO:0060541","respiratory system development",18,2,3.78,2067,"0.91767","0.99782","0.9978" +"GO:0006468","protein phosphorylation",150,24,31.51,2133,"0.95421","0.99788","0.9979" +"GO:0008045","motor neuron axon guidance",4,0,0.84,2891,"1.00000","0.99789","0.9979" +"GO:0007548","sex differentiation",17,3,3.57,1660,"0.72588","0.99795","0.9979" +"GO:0050789","regulation of biological process",845,150,177.48,2258,"0.99800","0.99806","0.9981" +"GO:0009612","response to mechanical stimulus",16,2,3.36,1977,"0.87991","0.99807","0.9981" +"GO:0071103","DNA conformation change",10,1,2.1,2049,"0.90578","0.99817","0.9982" +"GO:0033014","tetrapyrrole biosynthetic process",9,1,1.89,2005,"0.88063","0.99834","0.9983" +"GO:0080090","regulation of primary metabolic process",418,73,87.8,2187,"0.97863","0.99837","0.9984" +"GO:0031323","regulation of cellular metabolic process",419,73,88.01,2194,"0.97995","0.99838","0.9984" +"GO:0048588","developmental cell growth",13,1,2.73,2130,"0.95371","0.99843","0.9984" +"GO:0060560","developmental growth involved in morphog...",12,1,2.52,2105,"0.94133","0.99855","0.9986" +"GO:0030029","actin filament-based process",58,8,12.18,2110,"0.94268","0.99857","0.9986" +"GO:0035051","cardiocyte differentiation",6,1,1.26,1771,"0.75735","0.99857","0.9986" +"GO:0006383","transcription by RNA polymerase III",4,0,0.84,2892,"1.00000","0.99859","0.9986" +"GO:0048732","gland development",11,0,2.31,2893,"1.00000","0.99867","0.9987" +"GO:0019222","regulation of metabolic process",453,78,95.15,2223,"0.98830","0.99868","0.9987" +"GO:0015800","acidic amino acid transport",4,0,0.84,2894,"1.00000","0.99870","0.9987" +"GO:0006887","exocytosis",21,2,4.41,2132,"0.95401","0.99870","0.9987" +"GO:0015807","L-amino acid transport",7,0,1.47,2895,"1.00000","0.99871","0.9987" +"GO:1902475","L-alpha-amino acid transmembrane transpo...",7,0,1.47,2896,"1.00000","0.99871","0.9987" +"GO:0035148","tube formation",10,1,2.1,2050,"0.90578","0.99879","0.9988" +"GO:0050768","negative regulation of neurogenesis",10,1,2.1,2051,"0.90578","0.99879","0.9988" +"GO:0071559","response to transforming growth factor b...",10,1,2.1,2052,"0.90578","0.99879","0.9988" +"GO:0071560","cellular response to transforming growth...",10,1,2.1,2053,"0.90578","0.99879","0.9988" +"GO:0016331","morphogenesis of embryonic epithelium",10,0,2.1,2897,"1.00000","0.99879","0.9988" +"GO:0035270","endocrine system development",4,0,0.84,2898,"1.00000","0.99885","0.9988" +"GO:0009059","macromolecule biosynthetic process",628,100,131.91,2272,"0.99989","0.99864","0.9989" +"GO:2000736","regulation of stem cell differentiation",9,1,1.89,2006,"0.88063","0.99892","0.9989" +"GO:0034645","cellular macromolecule biosynthetic proc...",622,99,130.65,2271,"0.99989","0.99885","0.9990" +"GO:0045665","negative regulation of neuron differenti...",8,0,1.68,2899,"1.00000","0.99904","0.9990" +"GO:0050920","regulation of chemotaxis",4,0,0.84,2900,"1.00000","0.99937","0.9994" +"GO:0050921","positive regulation of chemotaxis",4,0,0.84,2901,"1.00000","0.99937","0.9994" +"GO:0001708","cell fate specification",5,0,1.05,2902,"1.00000","0.99940","0.9994" +"GO:0007405","neuroblast proliferation",5,0,1.05,2903,"1.00000","0.99940","0.9994" +"GO:0048546","digestive tract morphogenesis",5,0,1.05,2904,"1.00000","0.99940","0.9994" +"GO:0048709","oligodendrocyte differentiation",5,0,1.05,2905,"1.00000","0.99940","0.9994" +"GO:0061351","neural precursor cell proliferation",5,0,1.05,2906,"1.00000","0.99940","0.9994" +"GO:0072089","stem cell proliferation",5,0,1.05,2907,"1.00000","0.99940","0.9994" +"GO:0006828","manganese ion transport",3,0,0.63,2908,"1.00000","0.99945","0.9994" +"GO:0043583","ear development",4,0,0.84,2909,"1.00000","0.99952","0.9995" +"GO:0048839","inner ear development",4,0,0.84,2910,"1.00000","0.99952","0.9995" +"GO:0060219","camera-type eye photoreceptor cell diffe...",4,0,0.84,2911,"1.00000","0.99952","0.9995" +"GO:1901655","cellular response to ketone",4,0,0.84,2912,"1.00000","0.99952","0.9995" +"GO:0007017","microtubule-based process",67,10,14.07,2075,"0.92239","0.99953","0.9995" +"GO:0001755","neural crest cell migration",3,0,0.63,2913,"1.00000","0.99964","0.9996" +"GO:0001889","liver development",3,0,0.63,2914,"1.00000","0.99964","0.9996" +"GO:0021781","glial cell fate commitment",3,0,0.63,2915,"1.00000","0.99964","0.9996" +"GO:0030903","notochord development",3,0,0.63,2916,"1.00000","0.99964","0.9996" +"GO:0035019","somatic stem cell population maintenance",3,0,0.63,2917,"1.00000","0.99964","0.9996" +"GO:0042471","ear morphogenesis",3,0,0.63,2918,"1.00000","0.99964","0.9996" +"GO:0042472","inner ear morphogenesis",3,0,0.63,2919,"1.00000","0.99964","0.9996" +"GO:0061008","hepaticobiliary system development",3,0,0.63,2920,"1.00000","0.99964","0.9996" +"GO:0070167","regulation of biomineral tissue developm...",3,0,0.63,2921,"1.00000","0.99964","0.9996" +"GO:0070555","response to interleukin-1",3,0,0.63,2922,"1.00000","0.99964","0.9996" +"GO:0071347","cellular response to interleukin-1",3,0,0.63,2923,"1.00000","0.99964","0.9996" +"GO:0072132","mesenchyme morphogenesis",3,0,0.63,2924,"1.00000","0.99964","0.9996" +"GO:2000243","positive regulation of reproductive proc...",3,0,0.63,2925,"1.00000","0.99964","0.9996" +"GO:0007010","cytoskeleton organization",95,14,19.95,2135,"0.95582","0.99976","0.9998" +"GO:1901362","organic cyclic compound biosynthetic pro...",445,85,93.47,1971,"0.87377","0.99985","0.9999" +"GO:0018130","heterocycle biosynthetic process",435,83,91.37,1970,"0.87328","0.99986","0.9999" +"GO:0019438","aromatic compound biosynthetic process",429,80,90.11,2061,"0.91599","0.99986","0.9999" +"GO:0007265","Ras protein signal transduction",14,1,2.94,2152,"0.96348","0.99986","0.9999" +"GO:0060255","regulation of macromolecule metabolic pr...",424,72,89.06,2232,"0.98982","0.99986","0.9999" +"GO:0034654","nucleobase-containing compound biosynthe...",411,77,86.33,2024,"0.90293","0.99987","0.9999" +"GO:0051171","regulation of nitrogen compound metaboli...",406,71,85.28,2178,"0.97618","0.99987","0.9999" +"GO:0010468","regulation of gene expression",349,54,73.3,2257,"0.99794","0.99989","0.9999" +"GO:0032774","RNA biosynthetic process",339,57,71.2,2206,"0.98365","0.99989","0.9999" +"GO:0097659","nucleic acid-templated transcription",336,56,70.57,2214,"0.98610","0.99990","0.9999" +"GO:0006351","transcription, DNA-templated",335,56,70.36,2209,"0.98505","0.99990","0.9999" +"GO:0009889","regulation of biosynthetic process",328,51,68.89,2251,"0.99688","0.99990","0.9999" +"GO:0031326","regulation of cellular biosynthetic proc...",325,51,68.26,2244,"0.99596","0.99990","0.9999" +"GO:0019219","regulation of nucleobase-containing comp...",323,49,67.84,2260,"0.99815","0.99990","0.9999" +"GO:0010556","regulation of macromolecule biosynthetic...",320,50,67.21,2246,"0.99610","0.99990","0.9999" +"GO:2000112","regulation of cellular macromolecule bio...",317,50,66.58,2240,"0.99496","0.99990","0.9999" +"GO:0051252","regulation of RNA metabolic process",309,46,64.9,2263,"0.99853","0.99990","0.9999" +"GO:2001141","regulation of RNA biosynthetic process",291,45,61.12,2242,"0.99541","0.99991","0.9999" +"GO:1903506","regulation of nucleic acid-templated tra...",290,45,60.91,2241,"0.99499","0.99991","0.9999" +"GO:0006355","regulation of transcription, DNA-templat...",289,45,60.7,2239,"0.99454","0.99991","0.9999" +"GO:0051259","protein complex oligomerization",18,2,3.78,2068,"0.91767","0.99992","0.9999" +"GO:0051260","protein homooligomerization",12,1,2.52,2106,"0.94133","0.99995","0.9999" +"GO:0031032","actomyosin structure organization",14,1,2.94,2153,"0.96348","0.99997","1.0000" +"GO:0000271","polysaccharide biosynthetic process",7,5,1.47,25,"0.00579","0.00609","1.0000" +"GO:0008150","biological_process",2709,569,569,2926,"1.00000","1.00000","1.0000" +"GO:0015988","energy coupled proton transmembrane tran...",13,8,2.73,12,"0.00170","0.00639","1.0000" +"GO:0044257","cellular protein catabolic process",67,21,14.07,66,"0.02941","0.00757","1.0000" +"GO:0090662","ATP hydrolysis coupled transmembrane tra...",13,8,2.73,13,"0.00170","0.00639","1.0000" +"GO:0099131","ATP hydrolysis coupled ion transmembrane...",13,8,2.73,14,"0.00170","0.00639","1.0000" +"GO:0099132","ATP hydrolysis coupled cation transmembr...",13,8,2.73,15,"0.00170","0.00639","1.0000" diff --git a/GO_enrichment_output/contrast_emerging_young_downregulated.csv b/GO_enrichment_output/contrast_emerging_young_downregulated.csv index 8111ce6..1b0815f 100644 --- a/GO_enrichment_output/contrast_emerging_young_downregulated.csv +++ b/GO_enrichment_output/contrast_emerging_young_downregulated.csv @@ -1,6 +1,1124 @@ "GO.ID","Term","Annotated","Significant","Expected","Rank in classicFisher","classicFisher","classicKS","elimKS" "GO:0006260","DNA replication",62,49,28.78,1,"1.1e-07","4.8e-07","3.5e-05" -"GO:0055114","oxidation-reduction process",133,75,61.74,7,"0.0114","0.0010","0.0010" +"GO:0055114","oxidation-reduction process",133,75,61.74,5,"0.0114","0.0010","0.0010" "GO:0006261","DNA-dependent DNA replication",26,20,12.07,3,"0.0015","0.0051","0.0051" "GO:0006281","DNA repair",93,56,43.17,4,"0.0045","0.0066","0.0066" -"GO:0008045","motor neuron axon guidance",4,4,1.86,17,"0.0463","0.0074","0.0074" +"GO:0006694","steroid biosynthetic process",13,9,6.04,15,"0.0845","0.0086","0.0086" +"GO:0051091","positive regulation of DNA-binding trans...",10,7,4.64,18,"0.1190","0.0097","0.0097" +"GO:0010817","regulation of hormone levels",14,10,6.5,11,"0.0529","0.0134","0.0134" +"GO:0005975","carbohydrate metabolic process",67,39,31.1,6,"0.0333","0.0207","0.0207" +"GO:0006720","isoprenoid metabolic process",19,12,8.82,17,"0.1081","0.0238","0.0238" +"GO:0006354","DNA-templated transcription, elongation",12,9,5.57,8,"0.0438","0.0269","0.0269" +"GO:0044057","regulation of system process",12,9,5.57,9,"0.0438","0.0304","0.0304" +"GO:1901071","glucosamine-containing compound metaboli...",11,8,5.11,14,"0.0731","0.0475","0.0475" +"GO:0044272","sulfur compound biosynthetic process",12,9,5.57,10,"0.0438","0.0492","0.0492" +"GO:0006368","transcription elongation from RNA polyme...",10,7,4.64,19,"0.1190","0.0598","0.0598" +"GO:0008299","isoprenoid biosynthetic process",12,7,5.57,58,"0.2942","0.0689","0.0689" +"GO:0006401","RNA catabolic process",35,15,16.25,295,"0.7235","0.0735","0.0735" +"GO:0034655","nucleobase-containing compound catabolic...",46,20,21.36,285,"0.7090","0.0778","0.0778" +"GO:0003013","circulatory system process",11,7,5.11,27,"0.1994","0.0835","0.0835" +"GO:0008015","blood circulation",11,7,5.11,28,"0.1994","0.0835","0.0835" +"GO:0032787","monocarboxylic acid metabolic process",33,18,15.32,38,"0.2216","0.0973","0.0973" +"GO:1901361","organic cyclic compound catabolic proces...",53,22,24.6,406,"0.8060","0.0974","0.0974" +"GO:0006040","amino sugar metabolic process",12,8,5.57,22,"0.1316","0.0975","0.0975" +"GO:0006631","fatty acid metabolic process",23,12,10.68,69,"0.3637","0.1078","0.1078" +"GO:0071897","DNA biosynthetic process",11,7,5.11,29,"0.1994","0.1084","0.1084" +"GO:0019439","aromatic compound catabolic process",52,22,24.14,365,"0.7703","0.1127","0.1127" +"GO:0072522","purine-containing compound biosynthetic ...",23,12,10.68,70,"0.3637","0.1136","0.1136" +"GO:0000910","cytokinesis",11,6,5.11,94,"0.4038","0.1178","0.1178" +"GO:0071103","DNA conformation change",15,9,6.96,33,"0.2124","0.1208","0.1208" +"GO:0005996","monosaccharide metabolic process",17,9,7.89,76,"0.3819","0.1216","0.1216" +"GO:0009116","nucleoside metabolic process",16,8,7.43,122,"0.4832","0.1285","0.1285" +"GO:1901657","glycosyl compound metabolic process",16,8,7.43,123,"0.4832","0.1285","0.1285" +"GO:0097164","ammonium ion metabolic process",15,10,6.96,16,"0.0939","0.1364","0.1364" +"GO:1901617","organic hydroxy compound biosynthetic pr...",18,9,8.36,119,"0.4707","0.1442","0.1442" +"GO:0006066","alcohol metabolic process",22,12,10.21,49,"0.2896","0.1443","0.1443" +"GO:0006164","purine nucleotide biosynthetic process",22,11,10.21,106,"0.4492","0.1451","0.1451" +"GO:0072507","divalent inorganic cation homeostasis",10,6,4.64,51,"0.2923","0.1465","0.1465" +"GO:0044270","cellular nitrogen compound catabolic pro...",50,20,23.21,480,"0.8563","0.1496","0.1496" +"GO:0046700","heterocycle catabolic process",50,20,23.21,481,"0.8563","0.1496","0.1496" +"GO:0031032","actomyosin structure organization",12,5,5.57,302,"0.7303","0.1511","0.1511" +"GO:0071824","protein-DNA complex subunit organization",14,10,6.5,12,"0.0529","0.1572","0.1572" +"GO:0008152","metabolic process",1762,836,818,13,"0.0646","0.0209","0.1610" +"GO:0007444","imaginal disc development",11,4,5.11,441,"0.8344","0.1632","0.1632" +"GO:0006338","chromatin remodeling",12,8,5.57,23,"0.1316","0.1639","0.1639" +"GO:0006310","DNA recombination",25,15,11.61,21,"0.1218","0.1656","0.1656" +"GO:0006790","sulfur compound metabolic process",28,15,13,46,"0.2830","0.1771","0.1771" +"GO:0044281","small molecule metabolic process",226,106,104.92,118,"0.4671","0.1793","0.1793" +"GO:0006081","cellular aldehyde metabolic process",13,7,6.04,86,"0.3960","0.1813","0.1813" +"GO:0034728","nucleosome organization",10,7,4.64,20,"0.1190","0.1877","0.1877" +"GO:0006082","organic acid metabolic process",102,50,47.35,64,"0.3312","0.1987","0.1987" +"GO:0043436","oxoacid metabolic process",102,50,47.35,65,"0.3312","0.1987","0.1987" +"GO:1901615","organic hydroxy compound metabolic proce...",34,18,15.78,43,"0.2757","0.1996","0.1996" +"GO:0051345","positive regulation of hydrolase activit...",27,8,12.53,831,"0.9764","0.2092","0.2092" +"GO:0043547","positive regulation of GTPase activity",13,5,6.04,396,"0.8029","0.2127","0.2127" +"GO:0043414","macromolecule methylation",45,15,20.89,828,"0.9742","0.2156","0.2156" +"GO:0016197","endosomal transport",19,9,8.82,174,"0.5564","0.2156","0.2156" +"GO:0065004","protein-DNA complex assembly",11,7,5.11,30,"0.1994","0.2189","0.2189" +"GO:0009416","response to light stimulus",18,7,8.36,408,"0.8100","0.2307","0.2307" +"GO:0030855","epithelial cell differentiation",29,10,13.46,668,"0.9325","0.2321","0.2321" +"GO:0019752","carboxylic acid metabolic process",101,49,46.89,71,"0.3707","0.2418","0.2418" +"GO:0033865","nucleoside bisphosphate metabolic proces...",10,6,4.64,52,"0.2923","0.2422","0.2422" +"GO:0033875","ribonucleoside bisphosphate metabolic pr...",10,6,4.64,53,"0.2923","0.2422","0.2422" +"GO:0034032","purine nucleoside bisphosphate metabolic...",10,6,4.64,54,"0.2923","0.2422","0.2422" +"GO:0071900","regulation of protein serine/threonine k...",14,6,6.5,271,"0.7019","0.2472","0.2472" +"GO:0043087","regulation of GTPase activity",19,7,8.82,483,"0.8583","0.2483","0.2483" +"GO:0046434","organophosphate catabolic process",12,8,5.57,24,"0.1316","0.2519","0.2519" +"GO:0031570","DNA integrity checkpoint",12,7,5.57,59,"0.2942","0.2532","0.2532" +"GO:0006869","lipid transport",23,11,10.68,149,"0.5276","0.2534","0.2534" +"GO:0001817","regulation of cytokine production",18,5,8.36,799,"0.9689","0.2607","0.2607" +"GO:0030522","intracellular receptor signaling pathway",11,6,5.11,95,"0.4038","0.2695","0.2695" +"GO:0006323","DNA packaging",11,6,5.11,96,"0.4038","0.2708","0.2708" +"GO:0008652","cellular amino acid biosynthetic process",13,8,6.04,31,"0.2070","0.2730","0.2730" +"GO:1901607","alpha-amino acid biosynthetic process",13,8,6.04,32,"0.2070","0.2730","0.2730" +"GO:0006470","protein dephosphorylation",32,9,14.86,976,"0.9896","0.2758","0.2758" +"GO:0008285","negative regulation of cell proliferatio...",18,10,8.36,56,"0.2930","0.2790","0.2790" +"GO:0009165","nucleotide biosynthetic process",35,17,16.25,115,"0.4643","0.2837","0.2837" +"GO:1901293","nucleoside phosphate biosynthetic proces...",35,17,16.25,116,"0.4643","0.2837","0.2837" +"GO:0006259","DNA metabolic process",158,101,73.35,2,"3.7e-06","7.4e-06","0.2887" +"GO:0009152","purine ribonucleotide biosynthetic proce...",19,9,8.82,175,"0.5564","0.2899","0.2899" +"GO:0060249","anatomical structure homeostasis",18,10,8.36,57,"0.2930","0.2902","0.2902" +"GO:0006402","mRNA catabolic process",27,11,12.53,382,"0.7842","0.2954","0.2954" +"GO:1901605","alpha-amino acid metabolic process",26,14,12.07,47,"0.2853","0.3038","0.3038" +"GO:0043549","regulation of kinase activity",21,9,9.75,280,"0.7066","0.3040","0.3040" +"GO:0048736","appendage development",13,7,6.04,87,"0.3960","0.3116","0.3116" +"GO:0009605","response to external stimulus",91,37,42.25,552,"0.8910","0.3126","0.3126" +"GO:0008154","actin polymerization or depolymerization",12,4,5.57,530,"0.8864","0.3149","0.3149" +"GO:0000956","nuclear-transcribed mRNA catabolic proce...",18,8,8.36,244,"0.6553","0.3244","0.3244" +"GO:0006289","nucleotide-excision repair",13,7,6.04,88,"0.3960","0.3248","0.3248" +"GO:0010876","lipid localization",32,15,14.86,172,"0.5487","0.3284","0.3284" +"GO:0007018","microtubule-based movement",39,21,18.11,36,"0.2190","0.3289","0.3289" +"GO:0050657","nucleic acid transport",15,8,6.96,81,"0.3887","0.3345","0.3345" +"GO:0050658","RNA transport",15,8,6.96,82,"0.3887","0.3345","0.3345" +"GO:0051236","establishment of RNA localization",15,8,6.96,83,"0.3887","0.3345","0.3345" +"GO:0006417","regulation of translation",27,15,12.53,39,"0.2226","0.3364","0.3364" +"GO:0090596","sensory organ morphogenesis",24,12,11.14,104,"0.4398","0.3382","0.3382" +"GO:0045089","positive regulation of innate immune res...",10,6,4.64,55,"0.2923","0.3415","0.3415" +"GO:0006022","aminoglycan metabolic process",14,8,6.5,61,"0.2947","0.3423","0.3423" +"GO:0045786","negative regulation of cell cycle",34,19,15.78,26,"0.1735","0.3432","0.3432" +"GO:0008064","regulation of actin polymerization or de...",11,3,5.11,691,"0.9463","0.3469","0.3469" +"GO:0030832","regulation of actin filament length",11,3,5.11,692,"0.9463","0.3469","0.3469" +"GO:0022613","ribonucleoprotein complex biogenesis",76,35,35.28,178,"0.5714","0.3507","0.3507" +"GO:0051090","regulation of DNA-binding transcription ...",15,9,6.96,34,"0.2124","0.0928","0.3547" +"GO:0006979","response to oxidative stress",40,17,18.57,329,"0.7449","0.3560","0.3560" +"GO:0016053","organic acid biosynthetic process",30,16,13.93,44,"0.2806","0.3565","0.3565" +"GO:0046394","carboxylic acid biosynthetic process",30,16,13.93,45,"0.2806","0.3565","0.3565" +"GO:0006413","translational initiation",12,5,5.57,303,"0.7303","0.3569","0.3569" +"GO:0034248","regulation of cellular amide metabolic p...",29,15,13.46,67,"0.3479","0.3578","0.3578" +"GO:0006405","RNA export from nucleus",13,7,6.04,89,"0.3960","0.3593","0.3593" +"GO:0051168","nuclear export",13,7,6.04,90,"0.3960","0.3593","0.3593" +"GO:0045859","regulation of protein kinase activity",18,8,8.36,245,"0.6553","0.3603","0.3603" +"GO:0032259","methylation",54,19,25.07,774,"0.9661","0.3611","0.3611" +"GO:0017144","drug metabolic process",53,27,24.6,62,"0.2983","0.3623","0.3623" +"GO:0006476","protein deacetylation",10,4,4.64,342,"0.7637","0.3703","0.3703" +"GO:0009260","ribonucleotide biosynthetic process",21,9,9.75,281,"0.7066","0.3746","0.3746" +"GO:0046390","ribose phosphate biosynthetic process",21,9,9.75,282,"0.7066","0.3746","0.3746" +"GO:0042461","photoreceptor cell development",11,5,5.11,226,"0.6399","0.3748","0.3748" +"GO:0048593","camera-type eye morphogenesis",11,6,5.11,97,"0.4038","0.3748","0.3748" +"GO:0060041","retina development in camera-type eye",11,6,5.11,98,"0.4038","0.3748","0.3748" +"GO:0048569","post-embryonic animal organ development",10,4,4.64,343,"0.7637","0.3796","0.3796" +"GO:0044283","small molecule biosynthetic process",59,29,27.39,78,"0.3838","0.3811","0.3811" +"GO:0030041","actin filament polymerization",10,2,4.64,877,"0.9813","0.3821","0.3821" +"GO:0030833","regulation of actin filament polymerizat...",10,2,4.64,878,"0.9813","0.3821","0.3821" +"GO:0009314","response to radiation",26,10,12.07,470,"0.8452","0.3823","0.3823" +"GO:0045944","positive regulation of transcription by ...",37,16,17.18,286,"0.7100","0.3883","0.3883" +"GO:0055086","nucleobase-containing small molecule met...",83,39,38.53,136,"0.5019","0.3914","0.3914" +"GO:0006913","nucleocytoplasmic transport",38,19,17.64,80,"0.3880","0.3971","0.3971" +"GO:0003008","system process",54,27,25.07,66,"0.3457","0.4014","0.4014" +"GO:0000075","cell cycle checkpoint",21,12,9.75,37,"0.2206","0.4021","0.4021" +"GO:0010720","positive regulation of cell development",16,6,7.43,438,"0.8336","0.4050","0.4050" +"GO:0043401","steroid hormone mediated signaling pathw...",17,9,7.89,77,"0.3819","0.4062","0.4062" +"GO:0051301","cell division",23,9,10.68,427,"0.8194","0.4068","0.4068" +"GO:0051186","cofactor metabolic process",62,29,28.78,152,"0.5279","0.4113","0.4113" +"GO:0051260","protein homooligomerization",11,5,5.11,227,"0.6399","0.4122","0.4122" +"GO:0001816","cytokine production",20,5,9.28,929,"0.9865","0.4129","0.4129" +"GO:0014070","response to organic cyclic compound",44,19,20.43,292,"0.7205","0.4138","0.4138" +"GO:0007623","circadian rhythm",10,5,4.64,155,"0.5326","0.4139","0.4139" +"GO:0001525","angiogenesis",10,3,4.64,602,"0.9158","0.4175","0.4175" +"GO:0071383","cellular response to steroid hormone sti...",19,10,8.82,72,"0.3755","0.4202","0.4202" +"GO:0006875","cellular metal ion homeostasis",14,7,6.5,130,"0.4973","0.4210","0.4210" +"GO:0001510","RNA methylation",18,7,8.36,409,"0.8100","0.4251","0.4251" +"GO:0031349","positive regulation of defense response",14,7,6.5,131,"0.4973","0.4301","0.4301" +"GO:0006403","RNA localization",19,10,8.82,73,"0.3755","0.4364","0.4364" +"GO:0051259","protein complex oligomerization",13,6,6.04,198,"0.6142","0.4365","0.4365" +"GO:0006464","cellular protein modification process",428,182,198.7,781,"0.9664","0.4428","0.4428" +"GO:0036211","protein modification process",428,182,198.7,782,"0.9664","0.4428","0.4428" +"GO:0010608","posttranscriptional regulation of gene e...",50,23,23.21,184,"0.5794","0.4463","0.4463" +"GO:0050769","positive regulation of neurogenesis",14,4,6.5,717,"0.9494","0.4538","0.4538" +"GO:0051962","positive regulation of nervous system de...",14,4,6.5,718,"0.9494","0.4538","0.4538" +"GO:0090287","regulation of cellular response to growt...",13,6,6.04,199,"0.6142","0.4548","0.4548" +"GO:0007017","microtubule-based process",70,34,32.5,93,"0.4028","0.4580","0.4580" +"GO:0009755","hormone-mediated signaling pathway",18,9,8.36,120,"0.4707","0.4581","0.4581" +"GO:0009894","regulation of catabolic process",51,18,23.68,758,"0.9612","0.4588","0.4588" +"GO:0016072","rRNA metabolic process",41,18,19.03,260,"0.6846","0.4614","0.4614" +"GO:0042254","ribosome biogenesis",55,26,25.53,137,"0.5024","0.4617","0.4617" +"GO:0002790","peptide secretion",10,3,4.64,603,"0.9158","0.4626","0.4626" +"GO:0009306","protein secretion",10,3,4.64,604,"0.9158","0.4626","0.4626" +"GO:0032870","cellular response to hormone stimulus",29,12,13.46,364,"0.7679","0.4629","0.4629" +"GO:0018205","peptidyl-lysine modification",37,9,17.18,1082,"0.9985","0.4678","0.4678" +"GO:0007049","cell cycle",149,66,69.17,320,"0.7325","0.4701","0.4701" +"GO:0016236","macroautophagy",15,9,6.96,35,"0.2124","0.4718","0.4718" +"GO:0006997","nucleus organization",14,7,6.5,132,"0.4973","0.4726","0.4726" +"GO:0061458","reproductive system development",22,8,10.21,515,"0.8786","0.4729","0.4729" +"GO:0051336","regulation of hydrolase activity",48,14,22.28,1036,"0.9955","0.4772","0.4772" +"GO:0002064","epithelial cell development",18,5,8.36,800,"0.9689","0.4772","0.4772" +"GO:0006302","double-strand break repair",13,7,6.04,91,"0.3960","0.4776","0.4776" +"GO:1901652","response to peptide",17,5,7.89,734,"0.9536","0.4793","0.4793" +"GO:0051276","chromosome organization",149,71,69.17,100,"0.4104","0.4799","0.4799" +"GO:0045666","positive regulation of neuron differenti...",13,4,6.04,632,"0.9236","0.4803","0.4803" +"GO:0016311","dephosphorylation",44,13,20.43,1018,"0.9930","0.4821","0.4821" +"GO:0090092","regulation of transmembrane receptor pro...",10,5,4.64,156,"0.5326","0.4880","0.4880" +"GO:0009566","fertilization",11,5,5.11,228,"0.6399","0.4882","0.4882" +"GO:0048592","eye morphogenesis",23,11,10.68,150,"0.5276","0.4886","0.4886" +"GO:0006333","chromatin assembly or disassembly",10,5,4.64,157,"0.5326","0.4895","0.4895" +"GO:0043410","positive regulation of MAPK cascade",11,3,5.11,693,"0.9463","0.4908","0.4908" +"GO:0010921","regulation of phosphatase activity",10,1,4.64,1071,"0.9981","0.4930","0.4930" +"GO:0043161","proteasome-mediated ubiquitin-dependent ...",28,14,13,101,"0.4228","0.4978","0.4978" +"GO:0051052","regulation of DNA metabolic process",16,8,7.43,124,"0.4832","0.4982","0.4982" +"GO:0010557","positive regulation of macromolecule bio...",57,26,26.46,192,"0.6007","0.5009","0.5009" +"GO:0022618","ribonucleoprotein complex assembly",26,11,12.07,316,"0.7312","0.5042","0.5042" +"GO:0071826","ribonucleoprotein complex subunit organi...",26,11,12.07,317,"0.7312","0.5042","0.5042" +"GO:0043412","macromolecule modification",481,204,223.3,839,"0.9780","0.5057","0.5057" +"GO:0007062","sister chromatid cohesion",12,6,5.57,142,"0.5135","0.5083","0.5083" +"GO:0009891","positive regulation of biosynthetic proc...",65,28,30.18,334,"0.7493","0.5099","0.5099" +"GO:0051049","regulation of transport",56,24,26,338,"0.7500","0.5104","0.5104" +"GO:0000154","rRNA modification",11,3,5.11,694,"0.9463","0.5130","0.5130" +"GO:0009108","coenzyme biosynthetic process",28,14,13,102,"0.4228","0.5148","0.5148" +"GO:0030029","actin filament-based process",39,19,18.11,105,"0.4478","0.5152","0.5152" +"GO:0019915","lipid storage",10,5,4.64,158,"0.5326","0.5177","0.5177" +"GO:0006873","cellular ion homeostasis",16,8,7.43,125,"0.4832","0.5221","0.5221" +"GO:0030003","cellular cation homeostasis",16,8,7.43,126,"0.4832","0.5221","0.5221" +"GO:0043434","response to peptide hormone",15,3,6.96,1007,"0.9922","0.5229","0.5229" +"GO:0048646","anatomical structure formation involved ...",45,21,20.89,171,"0.5455","0.5284","0.5284" +"GO:0071407","cellular response to organic cyclic comp...",24,11,11.14,193,"0.6020","0.5293","0.5293" +"GO:0000819","sister chromatid segregation",25,13,11.61,68,"0.3582","0.5305","0.5305" +"GO:1902680","positive regulation of RNA biosynthetic ...",50,23,23.21,185,"0.5794","0.5312","0.5312" +"GO:0007010","cytoskeleton organization",74,31,34.35,426,"0.8189","0.5316","0.5316" +"GO:1902749","regulation of cell cycle G2/M phase tran...",10,4,4.64,344,"0.7637","0.5326","0.5326" +"GO:0046165","alcohol biosynthetic process",11,4,5.11,442,"0.8344","0.5357","0.5357" +"GO:0007423","sensory organ development",41,18,19.03,261,"0.6846","0.5359","0.5359" +"GO:0006479","protein methylation",26,7,12.07,952,"0.9878","0.5363","0.5363" +"GO:0008213","protein alkylation",26,7,12.07,953,"0.9878","0.5363","0.5363" +"GO:0000209","protein polyubiquitination",22,11,10.21,107,"0.4492","0.5419","0.5419" +"GO:0032956","regulation of actin cytoskeleton organiz...",14,5,6.5,489,"0.8590","0.5422","0.5422" +"GO:0019318","hexose metabolic process",14,6,6.5,272,"0.7019","0.5430","0.5430" +"GO:0051338","regulation of transferase activity",29,13,13.46,223,"0.6390","0.5452","0.5452" +"GO:0048608","reproductive structure development",21,8,9.75,461,"0.8384","0.5485","0.5485" +"GO:0098813","nuclear chromosome segregation",27,13,12.53,138,"0.5035","0.5501","0.5501" +"GO:0051169","nuclear transport",40,19,18.57,139,"0.5074","0.5503","0.5503" +"GO:0000070","mitotic sister chromatid segregation",20,11,9.28,50,"0.2915","0.5507","0.5507" +"GO:0008202","steroid metabolic process",16,10,7.43,25,"0.1488","0.0078","0.5536" +"GO:0044255","cellular lipid metabolic process",110,48,51.07,340,"0.7567","0.5547","0.5547" +"GO:0055082","cellular chemical homeostasis",17,8,7.89,179,"0.5733","0.5556","0.5556" +"GO:0006364","rRNA processing",37,16,17.18,287,"0.7100","0.5559","0.5559" +"GO:1902115","regulation of organelle assembly",14,7,6.5,133,"0.4973","0.5569","0.5569" +"GO:0009896","positive regulation of catabolic process",20,7,9.28,562,"0.8961","0.5570","0.5570" +"GO:0009127","purine nucleoside monophosphate biosynth...",12,5,5.57,304,"0.7303","0.5570","0.5570" +"GO:0009168","purine ribonucleoside monophosphate bios...",12,5,5.57,305,"0.7303","0.5570","0.5570" +"GO:0061013","regulation of mRNA catabolic process",11,4,5.11,443,"0.8344","0.5571","0.5571" +"GO:0009124","nucleoside monophosphate biosynthetic pr...",15,7,6.96,189,"0.5923","0.5577","0.5577" +"GO:0009725","response to hormone",55,21,25.53,623,"0.9163","0.5584","0.5584" +"GO:0045927","positive regulation of growth",12,3,5.57,775,"0.9662","0.5588","0.5588" +"GO:0007507","heart development",23,10,10.68,262,"0.6877","0.5616","0.5616" +"GO:1901135","carbohydrate derivative metabolic proces...",136,62,63.14,197,"0.6131","0.5669","0.5669" +"GO:0007059","chromosome segregation",29,14,13.46,129,"0.4927","0.5675","0.5675" +"GO:0006508","proteolysis",175,73,81.24,600,"0.9155","0.5695","0.5695" +"GO:0050790","regulation of catalytic activity",84,35,39,469,"0.8415","0.5718","0.5718" +"GO:0035601","protein deacylation",13,6,6.04,200,"0.6142","0.5750","0.5750" +"GO:0098732","macromolecule deacylation",13,6,6.04,201,"0.6142","0.5750","0.5750" +"GO:0006575","cellular modified amino acid metabolic p...",11,6,5.11,99,"0.4038","0.5753","0.5753" +"GO:0035107","appendage morphogenesis",10,4,4.64,345,"0.7637","0.5786","0.5786" +"GO:0044242","cellular lipid catabolic process",19,8,8.82,297,"0.7272","0.5797","0.5797" +"GO:0007015","actin filament organization",21,8,9.75,462,"0.8384","0.5823","0.5823" +"GO:0009117","nucleotide metabolic process",62,27,28.78,294,"0.7211","0.5862","0.5862" +"GO:0045893","positive regulation of transcription, DN...",49,22,22.75,224,"0.6397","0.5892","0.5892" +"GO:1903508","positive regulation of nucleic acid-temp...",49,22,22.75,225,"0.6397","0.5892","0.5892" +"GO:0030036","actin cytoskeleton organization",37,18,17.18,110,"0.4559","0.5896","0.5896" +"GO:0010647","positive regulation of cell communicatio...",51,21,23.68,423,"0.8160","0.5897","0.5897" +"GO:0023056","positive regulation of signaling",51,21,23.68,424,"0.8160","0.5897","0.5897" +"GO:0110053","regulation of actin filament organizatio...",13,4,6.04,633,"0.9236","0.5906","0.5906" +"GO:0016482","cytosolic transport",14,6,6.5,273,"0.7019","0.5928","0.5928" +"GO:0007519","skeletal muscle tissue development",11,5,5.11,229,"0.6399","0.5945","0.5945" +"GO:0042692","muscle cell differentiation",11,5,5.11,230,"0.6399","0.5945","0.5945" +"GO:0051146","striated muscle cell differentiation",11,5,5.11,231,"0.6399","0.5945","0.5945" +"GO:0060538","skeletal muscle organ development",11,5,5.11,232,"0.6399","0.5945","0.5945" +"GO:0048878","chemical homeostasis",34,13,15.78,512,"0.8726","0.5966","0.5966" +"GO:0034330","cell junction organization",12,6,5.57,143,"0.5135","0.5967","0.5967" +"GO:0031329","regulation of cellular catabolic process",42,14,19.5,818,"0.9706","0.5978","0.5978" +"GO:0045597","positive regulation of cell differentiat...",30,12,13.93,421,"0.8139","0.6002","0.6002" +"GO:0042176","regulation of protein catabolic process",19,7,8.82,484,"0.8583","0.6016","0.6016" +"GO:0007265","Ras protein signal transduction",18,7,8.36,410,"0.8100","0.6021","0.6021" +"GO:0051346","negative regulation of hydrolase activit...",16,5,7.43,660,"0.9317","0.6038","0.6038" +"GO:0060562","epithelial tube morphogenesis",23,9,10.68,428,"0.8194","0.6041","0.6041" +"GO:0045165","cell fate commitment",17,7,7.89,335,"0.7498","0.6043","0.6043" +"GO:0043010","camera-type eye development",19,8,8.82,298,"0.7272","0.6049","0.6049" +"GO:0044085","cellular component biogenesis",205,89,95.17,458,"0.8350","0.6058","0.6058" +"GO:0032970","regulation of actin filament-based proce...",18,8,8.36,246,"0.6553","0.6111","0.6111" +"GO:0036503","ERAD pathway",11,3,5.11,695,"0.9463","0.6125","0.6125" +"GO:0019216","regulation of lipid metabolic process",15,5,6.96,571,"0.9010","0.6156","0.6156" +"GO:1901654","response to ketone",16,6,7.43,439,"0.8336","0.6193","0.6193" +"GO:0010821","regulation of mitochondrion organization",16,7,7.43,256,"0.6771","0.6201","0.6201" +"GO:0051223","regulation of protein transport",20,9,9.28,215,"0.6358","0.6206","0.6206" +"GO:0090087","regulation of peptide transport",20,9,9.28,216,"0.6358","0.6206","0.6206" +"GO:1901987","regulation of cell cycle phase transitio...",19,8,8.82,299,"0.7272","0.6207","0.6207" +"GO:0016570","histone modification",62,20,28.78,1016,"0.9923","0.6217","0.6217" +"GO:1990778","protein localization to cell periphery",11,2,5.11,964,"0.9891","0.6220","0.6220" +"GO:0072521","purine-containing compound metabolic pro...",44,18,20.43,420,"0.8136","0.6221","0.6221" +"GO:0016055","Wnt signaling pathway",28,10,13,584,"0.9098","0.6246","0.6246" +"GO:0198738","cell-cell signaling by wnt",28,10,13,585,"0.9098","0.6246","0.6246" +"GO:1905114","cell surface receptor signaling pathway ...",28,10,13,586,"0.9098","0.6246","0.6246" +"GO:0019827","stem cell population maintenance",11,3,5.11,696,"0.9463","0.6255","0.6255" +"GO:0098727","maintenance of cell number",11,3,5.11,697,"0.9463","0.6255","0.6255" +"GO:0048666","neuron development",57,22,26.46,583,"0.9094","0.6258","0.6258" +"GO:0016569","covalent chromatin modification",67,22,31.1,1006,"0.9921","0.6267","0.6267" +"GO:0043085","positive regulation of catalytic activit...",51,19,23.68,655,"0.9299","0.6275","0.6275" +"GO:0098656","anion transmembrane transport",13,6,6.04,202,"0.6142","0.6292","0.6292" +"GO:0006753","nucleoside phosphate metabolic process",64,28,29.71,289,"0.7119","0.6304","0.6304" +"GO:0007264","small GTPase mediated signal transductio...",33,10,15.32,875,"0.9810","0.6313","0.6313" +"GO:0006732","coenzyme metabolic process",39,18,18.11,183,"0.5761","0.6332","0.6332" +"GO:1905897","regulation of response to endoplasmic re...",10,4,4.64,346,"0.7637","0.6376","0.6376" +"GO:0071396","cellular response to lipid",30,11,13.93,565,"0.8974","0.6386","0.6386" +"GO:0006644","phospholipid metabolic process",53,23,24.6,291,"0.7201","0.6400","0.6400" +"GO:0002165","instar larval or pupal development",11,5,5.11,233,"0.6399","0.6411","0.6411" +"GO:0030335","positive regulation of cell migration",12,3,5.57,776,"0.9662","0.6434","0.6434" +"GO:0006520","cellular amino acid metabolic process",61,28,28.32,186,"0.5830","0.6436","0.6436" +"GO:0033993","response to lipid",52,21,24.14,474,"0.8469","0.6447","0.6447" +"GO:0048638","regulation of developmental growth",11,3,5.11,698,"0.9463","0.6477","0.6477" +"GO:0034220","ion transmembrane transport",51,19,23.68,656,"0.9299","0.6484","0.6484" +"GO:0072659","protein localization to plasma membrane",10,2,4.64,879,"0.9813","0.6496","0.6496" +"GO:0015849","organic acid transport",20,9,9.28,217,"0.6358","0.6513","0.6513" +"GO:0046942","carboxylic acid transport",20,9,9.28,218,"0.6358","0.6513","0.6513" +"GO:0007093","mitotic cell cycle checkpoint",13,7,6.04,92,"0.3960","0.6526","0.6526" +"GO:0048749","compound eye development",13,6,6.04,203,"0.6142","0.6526","0.6526" +"GO:2001233","regulation of apoptotic signaling pathwa...",17,8,7.89,180,"0.5733","0.6527","0.6527" +"GO:0051347","positive regulation of transferase activ...",16,8,7.43,127,"0.4832","0.6528","0.6528" +"GO:0006629","lipid metabolic process",154,73,71.49,103,"0.4327","0.2613","0.6561" +"GO:0006606","protein import into nucleus",17,8,7.89,181,"0.5733","0.6576","0.6576" +"GO:0007292","female gamete generation",26,8,12.07,783,"0.9665","0.6580","0.6580" +"GO:0035282","segmentation",10,5,4.64,159,"0.5326","0.6583","0.6583" +"GO:0030182","neuron differentiation",66,28,30.64,381,"0.7834","0.6595","0.6595" +"GO:0140014","mitotic nuclear division",26,14,12.07,48,"0.2853","0.6597","0.6597" +"GO:1903825","organic acid transmembrane transport",11,5,5.11,234,"0.6399","0.6601","0.6601" +"GO:1905039","carboxylic acid transmembrane transport",11,5,5.11,235,"0.6399","0.6601","0.6601" +"GO:0072330","monocarboxylic acid biosynthetic process",16,7,7.43,257,"0.6771","0.6607","0.6607" +"GO:1901988","negative regulation of cell cycle phase ...",10,5,4.64,160,"0.5326","0.6625","0.6625" +"GO:1901991","negative regulation of mitotic cell cycl...",10,5,4.64,161,"0.5326","0.6625","0.6625" +"GO:0051726","regulation of cell cycle",77,35,35.75,195,"0.6128","0.6639","0.6639" +"GO:0002429","immune response-activating cell surface ...",12,4,5.57,531,"0.8864","0.6656","0.6656" +"GO:0002768","immune response-regulating cell surface ...",12,4,5.57,532,"0.8864","0.6656","0.6656" +"GO:0009156","ribonucleoside monophosphate biosyntheti...",14,6,6.5,274,"0.7019","0.6664","0.6664" +"GO:0044093","positive regulation of molecular functio...",67,29,31.1,326,"0.7404","0.2185","0.6666" +"GO:0009880","embryonic pattern specification",10,5,4.64,162,"0.5326","0.6677","0.6677" +"GO:0070848","response to growth factor",26,11,12.07,318,"0.7312","0.6705","0.6705" +"GO:0016042","lipid catabolic process",26,11,12.07,319,"0.7312","0.6722","0.6722" +"GO:1901215","negative regulation of neuron death",10,3,4.64,605,"0.9158","0.6734","0.6734" +"GO:0019637","organophosphate metabolic process",125,55,58.03,327,"0.7415","0.6755","0.6755" +"GO:0034404","nucleobase-containing small molecule bio...",11,5,5.11,236,"0.6399","0.6763","0.6763" +"GO:0046530","photoreceptor cell differentiation",15,5,6.96,572,"0.9010","0.6767","0.6767" +"GO:0044839","cell cycle G2/M phase transition",12,5,5.57,306,"0.7303","0.6773","0.6773" +"GO:1901698","response to nitrogen compound",38,11,17.64,994,"0.9914","0.6775","0.6775" +"GO:0070201","regulation of establishment of protein l...",22,10,10.21,210,"0.6181","0.6789","0.6789" +"GO:0097435","supramolecular fiber organization",41,15,19.03,650,"0.9248","0.6797","0.6797" +"GO:0008654","phospholipid biosynthetic process",29,11,13.46,506,"0.8668","0.6805","0.6805" +"GO:0001754","eye photoreceptor cell differentiation",12,4,5.57,533,"0.8864","0.6805","0.6805" +"GO:0014706","striated muscle tissue development",18,8,8.36,247,"0.6553","0.6812","0.6812" +"GO:0060537","muscle tissue development",18,8,8.36,248,"0.6553","0.6812","0.6812" +"GO:0042180","cellular ketone metabolic process",13,3,6.04,847,"0.9790","0.6820","0.6820" +"GO:0098542","defense response to other organism",20,7,9.28,563,"0.8961","0.6828","0.6828" +"GO:0003333","amino acid transmembrane transport",10,4,4.64,347,"0.7637","0.6856","0.6856" +"GO:0006865","amino acid transport",10,4,4.64,348,"0.7637","0.6856","0.6856" +"GO:0007169","transmembrane receptor protein tyrosine ...",20,10,9.28,112,"0.4595","0.6878","0.6878" +"GO:0016579","protein deubiquitination",24,9,11.14,499,"0.8617","0.6895","0.6895" +"GO:0070646","protein modification by small protein re...",24,9,11.14,500,"0.8617","0.6895","0.6895" +"GO:0007601","visual perception",15,8,6.96,84,"0.3887","0.6897","0.6897" +"GO:0050953","sensory perception of light stimulus",15,8,6.96,85,"0.3887","0.6897","0.6897" +"GO:1903362","regulation of cellular protein catabolic...",11,4,5.11,444,"0.8344","0.6901","0.6901" +"GO:1901699","cellular response to nitrogen compound",12,3,5.57,777,"0.9662","0.6916","0.6916" +"GO:0034976","response to endoplasmic reticulum stress",20,6,9.28,752,"0.9581","0.6917","0.6917" +"GO:0006473","protein acetylation",21,7,9.75,651,"0.9249","0.6922","0.6922" +"GO:1900408","negative regulation of cellular response...",13,4,6.04,634,"0.9236","0.6943","0.6943" +"GO:1902883","negative regulation of response to oxida...",13,4,6.04,635,"0.9236","0.6943","0.6943" +"GO:0050776","regulation of immune response",32,12,14.86,527,"0.8850","0.6952","0.6952" +"GO:0033674","positive regulation of kinase activity",10,4,4.64,349,"0.7637","0.6956","0.6956" +"GO:1902850","microtubule cytoskeleton organization in...",10,3,4.64,606,"0.9158","0.6956","0.6956" +"GO:0031331","positive regulation of cellular cataboli...",17,6,7.89,519,"0.8792","0.6964","0.6964" +"GO:0000413","protein peptidyl-prolyl isomerization",10,5,4.64,163,"0.5326","0.6986","0.6986" +"GO:0018208","peptidyl-proline modification",10,5,4.64,164,"0.5326","0.6986","0.6986" +"GO:0008610","lipid biosynthetic process",69,33,32.03,108,"0.4534","0.2396","0.6989" +"GO:0043068","positive regulation of programmed cell d...",27,11,12.53,383,"0.7842","0.6990","0.6990" +"GO:0002065","columnar/cuboidal epithelial cell differ...",18,6,8.36,593,"0.9138","0.7002","0.7002" +"GO:0031047","gene silencing by RNA",18,9,8.36,121,"0.4707","0.7002","0.7002" +"GO:0031328","positive regulation of cellular biosynth...",62,26,28.78,393,"0.8010","0.7003","0.7003" +"GO:0051656","establishment of organelle localization",19,6,8.82,680,"0.9395","0.7006","0.7006" +"GO:0051170","import into nucleus",18,8,8.36,249,"0.6553","0.7016","0.7016" +"GO:0031503","protein-containing complex localization",13,6,6.04,204,"0.6142","0.7021","0.7021" +"GO:0022411","cellular component disassembly",25,10,11.61,394,"0.8014","0.7027","0.7027" +"GO:0006793","phosphorus metabolic process",331,142,153.66,653,"0.9250","0.7027","0.7027" +"GO:0009952","anterior/posterior pattern specification",11,5,5.11,237,"0.6399","0.7037","0.7037" +"GO:0055085","transmembrane transport",170,80,78.92,114,"0.4627","0.7055","0.7055" +"GO:0002757","immune response-activating signal transd...",14,6,6.5,275,"0.7019","0.7069","0.7069" +"GO:0002764","immune response-regulating signaling pat...",14,6,6.5,276,"0.7019","0.7069","0.7069" +"GO:0051056","regulation of small GTPase mediated sign...",15,4,6.96,787,"0.9669","0.7070","0.7070" +"GO:0060627","regulation of vesicle-mediated transport",22,9,10.21,363,"0.7679","0.7079","0.7079" +"GO:0043408","regulation of MAPK cascade",15,4,6.96,788,"0.9669","0.7090","0.7090" +"GO:0032501","multicellular organismal process",307,128,142.52,786,"0.9669","0.7094","0.7094" +"GO:0009967","positive regulation of signal transducti...",47,18,21.82,567,"0.8995","0.7096","0.7096" +"GO:0006796","phosphate-containing compound metabolic ...",328,140,152.27,677,"0.9354","0.7097","0.7097" +"GO:0045861","negative regulation of proteolysis",12,7,5.57,60,"0.2942","0.7103","0.7103" +"GO:0006950","response to stress",262,123,121.63,109,"0.4543","0.6906","0.7110" +"GO:0006325","chromatin organization",99,41,45.96,510,"0.8694","0.7117","0.7117" +"GO:0015931","nucleobase-containing compound transport",22,10,10.21,211,"0.6181","0.7121","0.7121" +"GO:0010243","response to organonitrogen compound",36,11,16.71,906,"0.9831","0.7126","0.7126" +"GO:0051235","maintenance of location",15,5,6.96,573,"0.9010","0.7129","0.7129" +"GO:0071417","cellular response to organonitrogen comp...",11,3,5.11,699,"0.9463","0.7132","0.7132" +"GO:0055080","cation homeostasis",23,9,10.68,429,"0.8194","0.7151","0.7151" +"GO:0098771","inorganic ion homeostasis",23,9,10.68,430,"0.8194","0.7151","0.7151" +"GO:0051188","cofactor biosynthetic process",37,17,17.18,187,"0.5873","0.7167","0.7167" +"GO:0034329","cell junction assembly",11,5,5.11,238,"0.6399","0.7176","0.7176" +"GO:0043065","positive regulation of apoptotic process",25,9,11.61,557,"0.8956","0.7180","0.7180" +"GO:0022008","neurogenesis",76,34,35.28,251,"0.6605","0.7193","0.7193" +"GO:0034599","cellular response to oxidative stress",20,6,9.28,753,"0.9581","0.7196","0.7196" +"GO:0090407","organophosphate biosynthetic process",71,30,32.96,390,"0.7980","0.7201","0.7201" +"GO:0071363","cellular response to growth factor stimu...",23,9,10.68,431,"0.8194","0.7214","0.7214" +"GO:0007088","regulation of mitotic nuclear division",13,6,6.04,205,"0.6142","0.7217","0.7217" +"GO:0048699","generation of neurons",72,32,33.43,255,"0.6769","0.7250","0.7250" +"GO:0032446","protein modification by small protein co...",68,29,31.57,368,"0.7748","0.7250","0.7250" +"GO:0035303","regulation of dephosphorylation",13,1,6.04,1108,"0.9997","0.7257","0.7257" +"GO:0045017","glycerolipid biosynthetic process",24,10,11.14,333,"0.7489","0.7277","0.7277" +"GO:0045444","fat cell differentiation",12,6,5.57,144,"0.5135","0.7277","0.7277" +"GO:1901990","regulation of mitotic cell cycle phase t...",17,7,7.89,336,"0.7498","0.7288","0.7288" +"GO:1902532","negative regulation of intracellular sig...",24,9,11.14,501,"0.8617","0.7299","0.7299" +"GO:0048545","response to steroid hormone",30,13,13.93,268,"0.6989","0.7300","0.7300" +"GO:0045935","positive regulation of nucleobase-contai...",71,32,32.96,222,"0.6368","0.7306","0.7306" +"GO:2001020","regulation of response to DNA damage sti...",15,3,6.96,1008,"0.9922","0.7318","0.7318" +"GO:0009611","response to wounding",18,3,8.36,1080,"0.9983","0.7335","0.7335" +"GO:0048511","rhythmic process",20,7,9.28,564,"0.8961","0.7348","0.7348" +"GO:0031347","regulation of defense response",20,8,9.28,385,"0.7882","0.7349","0.7349" +"GO:0007179","transforming growth factor beta receptor...",12,5,5.57,307,"0.7303","0.7355","0.7355" +"GO:0046474","glycerophospholipid biosynthetic process",23,9,10.68,432,"0.8194","0.7375","0.7375" +"GO:0007266","Rho protein signal transduction",11,4,5.11,445,"0.8344","0.7379","0.7379" +"GO:0061136","regulation of proteasomal protein catabo...",10,4,4.64,350,"0.7637","0.7385","0.7385" +"GO:1903050","regulation of proteolysis involved in ce...",10,4,4.64,351,"0.7637","0.7385","0.7385" +"GO:0050778","positive regulation of immune response",27,10,12.53,524,"0.8811","0.7394","0.7394" +"GO:0010563","negative regulation of phosphorus metabo...",23,4,10.68,1095,"0.9992","0.7397","0.7397" +"GO:0045936","negative regulation of phosphate metabol...",23,4,10.68,1096,"0.9992","0.7397","0.7397" +"GO:0044282","small molecule catabolic process",27,12,12.53,242,"0.6541","0.7399","0.7399" +"GO:0000003","reproduction",92,32,42.71,1004,"0.9920","0.7409","0.7409" +"GO:0016567","protein ubiquitination",61,27,28.32,258,"0.6808","0.7413","0.7413" +"GO:0000086","G2/M transition of mitotic cell cycle",10,4,4.64,352,"0.7637","0.7416","0.7416" +"GO:0007389","pattern specification process",28,13,13,182,"0.5734","0.7417","0.7417" +"GO:0048584","positive regulation of response to stimu...",77,32,35.75,460,"0.8378","0.7431","0.7431" +"GO:0001667","ameboidal-type cell migration",10,1,4.64,1072,"0.9981","0.7442","0.7442" +"GO:0001654","eye development",33,14,15.32,322,"0.7376","0.7457","0.7457" +"GO:0048880","sensory system development",33,14,15.32,323,"0.7376","0.7457","0.7457" +"GO:0150063","visual system development",33,14,15.32,324,"0.7376","0.7457","0.7457" +"GO:0051640","organelle localization",33,12,15.32,589,"0.9112","0.7466","0.7466" +"GO:0043632","modification-dependent macromolecule cat...",65,31,30.18,117,"0.4664","0.7468","0.7468" +"GO:0046486","glycerolipid metabolic process",43,18,19.96,375,"0.7756","0.7470","0.7470" +"GO:0045088","regulation of innate immune response",14,7,6.5,134,"0.4973","0.7474","0.7474" +"GO:1900407","regulation of cellular response to oxida...",14,5,6.5,490,"0.8590","0.7474","0.7474" +"GO:0048870","cell motility",42,11,19.5,1069,"0.9980","0.7483","0.7483" +"GO:0051674","localization of cell",42,11,19.5,1070,"0.9980","0.7483","0.7483" +"GO:0000226","microtubule cytoskeleton organization",35,12,16.25,715,"0.9488","0.7485","0.7485" +"GO:0009791","post-embryonic development",28,12,13,290,"0.7146","0.7489","0.7489" +"GO:0051241","negative regulation of multicellular org...",32,11,14.86,687,"0.9413","0.7493","0.7493" +"GO:0043933","protein-containing complex subunit organ...",114,46,52.92,649,"0.9236","0.7505","0.7505" +"GO:0030155","regulation of cell adhesion",16,5,7.43,661,"0.9317","0.7512","0.7512" +"GO:0009072","aromatic amino acid family metabolic pro...",10,5,4.64,165,"0.5326","0.7535","0.7535" +"GO:0002253","activation of immune response",15,6,6.96,369,"0.7749","0.7546","0.7546" +"GO:0050801","ion homeostasis",26,10,12.07,471,"0.8452","0.7559","0.7559" +"GO:0051094","positive regulation of developmental pro...",46,15,21.36,874,"0.9807","0.7563","0.7563" +"GO:0048562","embryonic organ morphogenesis",18,8,8.36,250,"0.6553","0.7586","0.7586" +"GO:0070997","neuron death",12,4,5.57,534,"0.8864","0.7587","0.7587" +"GO:1901214","regulation of neuron death",12,4,5.57,535,"0.8864","0.7587","0.7587" +"GO:0097190","apoptotic signaling pathway",21,8,9.75,463,"0.8384","0.7595","0.7595" +"GO:0022402","cell cycle process",105,49,48.75,148,"0.5187","0.7597","0.7597" +"GO:0044262","cellular carbohydrate metabolic process",19,9,8.82,176,"0.5564","0.7612","0.7612" +"GO:0006888","ER to Golgi vesicle-mediated transport",13,4,6.04,636,"0.9236","0.7612","0.7612" +"GO:0010646","regulation of cell communication",123,54,57.1,332,"0.7474","0.7655","0.7655" +"GO:0016441","posttranscriptional gene silencing",15,6,6.96,370,"0.7749","0.7659","0.7659" +"GO:0035194","posttranscriptional gene silencing by RN...",15,6,6.96,371,"0.7749","0.7659","0.7659" +"GO:0007346","regulation of mitotic cell cycle",35,15,16.25,296,"0.7235","0.7667","0.7667" +"GO:0043067","regulation of programmed cell death",59,25,27.39,376,"0.7769","0.7683","0.7683" +"GO:0042026","protein refolding",12,4,5.57,536,"0.8864","0.7690","0.7690" +"GO:0007517","muscle organ development",20,9,9.28,219,"0.6358","0.7692","0.7692" +"GO:0022414","reproductive process",86,30,39.92,977,"0.9896","0.7694","0.7694" +"GO:0033044","regulation of chromosome organization",22,10,10.21,212,"0.6181","0.7699","0.7699" +"GO:0044092","negative regulation of molecular functio...",33,11,15.32,745,"0.9563","0.7706","0.7706" +"GO:0017038","protein import",23,10,10.68,263,"0.6877","0.7710","0.7710" +"GO:0034504","protein localization to nucleus",23,10,10.68,264,"0.6877","0.7710","0.7710" +"GO:0009887","animal organ morphogenesis",52,23,24.14,254,"0.6765","0.7716","0.7716" +"GO:0042060","wound healing",15,2,6.96,1085,"0.9988","0.7726","0.7726" +"GO:0051051","negative regulation of transport",11,4,5.11,446,"0.8344","0.7729","0.7729" +"GO:0065009","regulation of molecular function",110,46,51.07,502,"0.8619","0.5954","0.7733" +"GO:0061061","muscle structure development",35,16,16.25,191,"0.5991","0.7745","0.7745" +"GO:0031346","positive regulation of cell projection o...",11,1,5.11,1088,"0.9990","0.7748","0.7748" +"GO:0010942","positive regulation of cell death",30,12,13.93,422,"0.8139","0.7749","0.7749" +"GO:0071704","organic substance metabolic process",1571,731,729.33,113,"0.4617","0.4992","0.7763" +"GO:0090066","regulation of anatomical structure size",20,8,9.28,386,"0.7882","0.7768","0.7768" +"GO:0001745","compound eye morphogenesis",11,5,5.11,239,"0.6399","0.7771","0.7771" +"GO:0001522","pseudouridine synthesis",10,5,4.64,166,"0.5326","0.7773","0.7773" +"GO:0006468","protein phosphorylation",164,72,76.14,366,"0.7733","0.7777","0.7777" +"GO:0007399","nervous system development",112,49,52,339,"0.7505","0.7784","0.7784" +"GO:0040012","regulation of locomotion",26,8,12.07,784,"0.9665","0.7787","0.7787" +"GO:0051270","regulation of cellular component movemen...",26,8,12.07,785,"0.9665","0.7787","0.7787" +"GO:0023051","regulation of signaling",127,56,58.96,321,"0.7357","0.7792","0.7792" +"GO:0006163","purine nucleotide metabolic process",40,16,18.57,459,"0.8366","0.7798","0.7798" +"GO:0019693","ribose phosphate metabolic process",40,14,18.57,713,"0.9486","0.7798","0.7798" +"GO:0031324","negative regulation of cellular metaboli...",98,37,45.5,809,"0.9691","0.7815","0.7815" +"GO:0006996","organelle organization",325,143,150.88,468,"0.8409","0.7820","0.7820" +"GO:0046578","regulation of Ras protein signal transdu...",13,4,6.04,637,"0.9236","0.7823","0.7823" +"GO:1901701","cellular response to oxygen-containing c...",39,12,18.11,915,"0.9849","0.7848","0.7848" +"GO:0052548","regulation of endopeptidase activity",11,5,5.11,240,"0.6399","0.7853","0.7853" +"GO:0051054","positive regulation of DNA metabolic pro...",10,4,4.64,353,"0.7637","0.7857","0.7857" +"GO:0001701","in utero embryonic development",16,4,7.43,841,"0.9787","0.7858","0.7858" +"GO:0007051","spindle organization",11,4,5.11,447,"0.8344","0.7867","0.7867" +"GO:0043207","response to external biotic stimulus",31,10,14.39,766,"0.9635","0.7880","0.7880" +"GO:0051707","response to other organism",31,10,14.39,767,"0.9635","0.7880","0.7880" +"GO:0031589","cell-substrate adhesion",13,4,6.04,638,"0.9236","0.7884","0.7884" +"GO:0060491","regulation of cell projection assembly",13,4,6.04,639,"0.9236","0.7909","0.7909" +"GO:0120032","regulation of plasma membrane bounded ce...",13,4,6.04,640,"0.9236","0.7909","0.7909" +"GO:0002066","columnar/cuboidal epithelial cell develo...",14,5,6.5,491,"0.8590","0.7912","0.7912" +"GO:0042981","regulation of apoptotic process",56,23,26,436,"0.8282","0.7939","0.7939" +"GO:0006650","glycerophospholipid metabolic process",38,16,17.64,341,"0.7577","0.7940","0.7940" +"GO:1902882","regulation of response to oxidative stre...",15,6,6.96,372,"0.7749","0.7941","0.7941" +"GO:0009259","ribonucleotide metabolic process",37,13,17.18,685,"0.9411","0.7947","0.7947" +"GO:0048468","cell development",117,45,54.32,812,"0.9694","0.7953","0.7953" +"GO:0001101","response to acid chemical",17,5,7.89,735,"0.9536","0.7960","0.7960" +"GO:0009063","cellular amino acid catabolic process",12,5,5.57,308,"0.7303","0.7960","0.7960" +"GO:0045930","negative regulation of mitotic cell cycl...",16,8,7.43,128,"0.4832","0.7966","0.7966" +"GO:0009100","glycoprotein metabolic process",45,19,20.89,361,"0.7639","0.7969","0.7969" +"GO:0042493","response to drug",45,15,20.89,829,"0.9742","0.7970","0.7970" +"GO:0000278","mitotic cell cycle",77,35,35.75,196,"0.6128","0.7970","0.7970" +"GO:0001501","skeletal system development",12,6,5.57,145,"0.5135","0.7970","0.7970" +"GO:0051783","regulation of nuclear division",14,6,6.5,277,"0.7019","0.7971","0.7971" +"GO:0007369","gastrulation",13,4,6.04,641,"0.9236","0.7998","0.7998" +"GO:0042326","negative regulation of phosphorylation",17,3,7.89,1055,"0.9972","0.8006","0.8006" +"GO:0072594","establishment of protein localization to...",44,19,20.43,293,"0.7205","0.8011","0.8011" +"GO:0006914","autophagy",38,13,17.64,742,"0.9554","0.8020","0.8020" +"GO:0061919","process utilizing autophagic mechanism",38,13,17.64,743,"0.9554","0.8020","0.8020" +"GO:1901137","carbohydrate derivative biosynthetic pro...",78,35,36.21,241,"0.6525","0.8026","0.8026" +"GO:0048193","Golgi vesicle transport",29,8,13.46,961,"0.9887","0.8031","0.8031" +"GO:0009150","purine ribonucleotide metabolic process",35,13,16.25,569,"0.9004","0.8048","0.8048" +"GO:0010498","proteasomal protein catabolic process",33,14,15.32,325,"0.7376","0.8054","0.8054" +"GO:0035304","regulation of protein dephosphorylation",10,1,4.64,1073,"0.9981","0.8065","0.8065" +"GO:0010822","positive regulation of mitochondrion org...",15,6,6.96,373,"0.7749","0.8069","0.8069" +"GO:0072331","signal transduction by p53 class mediato...",13,6,6.04,206,"0.6142","0.8073","0.8073" +"GO:0007411","axon guidance",13,5,6.04,397,"0.8029","0.8077","0.8077" +"GO:0097485","neuron projection guidance",13,5,6.04,398,"0.8029","0.8077","0.8077" +"GO:0009792","embryo development ending in birth or eg...",43,16,19.96,624,"0.9165","0.8078","0.8078" +"GO:0044265","cellular macromolecule catabolic process",110,45,51.07,570,"0.9007","0.8088","0.8088" +"GO:0022607","cellular component assembly",155,66,71.96,488,"0.8585","0.8090","0.8090" +"GO:0016051","carbohydrate biosynthetic process",15,7,6.96,190,"0.5923","0.8092","0.8092" +"GO:0051093","negative regulation of developmental pro...",33,10,15.32,876,"0.9810","0.8095","0.8095" +"GO:0048568","embryonic organ development",32,12,14.86,528,"0.8850","0.8101","0.8101" +"GO:0051254","positive regulation of RNA metabolic pro...",61,27,28.32,259,"0.6808","0.8101","0.8101" +"GO:2000145","regulation of cell motility",24,7,11.14,825,"0.9739","0.8107","0.8107" +"GO:0097193","intrinsic apoptotic signaling pathway",16,4,7.43,842,"0.9787","0.8112","0.8112" +"GO:0018193","peptidyl-amino acid modification",77,25,35.75,1039,"0.9959","0.8114","0.8114" +"GO:0009607","response to biotic stimulus",33,11,15.32,746,"0.9563","0.8124","0.8124" +"GO:0000280","nuclear division",37,18,17.18,111,"0.4559","0.8124","0.8124" +"GO:0006733","oxidoreduction coenzyme metabolic proces...",16,5,7.43,662,"0.9317","0.8125","0.8125" +"GO:1903047","mitotic cell cycle process",59,29,27.39,79,"0.3838","0.8136","0.8136" +"GO:0052547","regulation of peptidase activity",12,5,5.57,309,"0.7303","0.8137","0.8137" +"GO:0006475","internal protein amino acid acetylation",19,5,8.82,865,"0.9794","0.8147","0.8147" +"GO:0018393","internal peptidyl-lysine acetylation",19,5,8.82,866,"0.9794","0.8147","0.8147" +"GO:0018394","peptidyl-lysine acetylation",19,5,8.82,867,"0.9794","0.8147","0.8147" +"GO:0009892","negative regulation of metabolic process",126,48,58.49,840,"0.9786","0.8156","0.8156" +"GO:0009101","glycoprotein biosynthetic process",40,17,18.57,330,"0.7449","0.8175","0.8175" +"GO:0015711","organic anion transport",25,10,11.61,395,"0.8014","0.8177","0.8177" +"GO:0051240","positive regulation of multicellular org...",46,14,21.36,990,"0.9913","0.8182","0.8182" +"GO:0071559","response to transforming growth factor b...",13,5,6.04,399,"0.8029","0.8197","0.8197" +"GO:0071560","cellular response to transforming growth...",13,5,6.04,400,"0.8029","0.8197","0.8197" +"GO:0055065","metal ion homeostasis",17,7,7.89,337,"0.7498","0.8216","0.8216" +"GO:0002684","positive regulation of immune system pro...",33,12,15.32,590,"0.9112","0.8219","0.8219" +"GO:0072358","cardiovascular system development",15,4,6.96,789,"0.9669","0.8220","0.8220" +"GO:0010941","regulation of cell death",69,29,32.03,407,"0.8061","0.8224","0.8224" +"GO:0000165","MAPK cascade",18,6,8.36,594,"0.9138","0.8225","0.8225" +"GO:0023014","signal transduction by protein phosphory...",18,6,8.36,595,"0.9138","0.8225","0.8225" +"GO:0007155","cell adhesion",41,16,19.03,507,"0.8680","0.8236","0.8236" +"GO:0022610","biological adhesion",41,16,19.03,508,"0.8680","0.8236","0.8236" +"GO:0051239","regulation of multicellular organismal p...",97,37,45.03,763,"0.9624","0.8241","0.8241" +"GO:0009653","anatomical structure morphogenesis",128,54,59.42,497,"0.8594","0.8243","0.8243" +"GO:0006665","sphingolipid metabolic process",10,4,4.64,354,"0.7637","0.8248","0.8248" +"GO:0032268","regulation of cellular protein metabolic...",126,49,58.49,796,"0.9670","0.8262","0.8262" +"GO:0043086","negative regulation of catalytic activit...",24,8,11.14,675,"0.9345","0.8267","0.8267" +"GO:0016571","histone methylation",11,2,5.11,965,"0.9891","0.8270","0.8270" +"GO:0002164","larval development",10,5,4.64,167,"0.5326","0.8279","0.8279" +"GO:0003007","heart morphogenesis",11,4,5.11,448,"0.8344","0.8283","0.8283" +"GO:0006486","protein glycosylation",37,15,17.18,416,"0.8126","0.8302","0.8302" +"GO:0043413","macromolecule glycosylation",37,15,17.18,417,"0.8126","0.8302","0.8302" +"GO:0070085","glycosylation",37,15,17.18,418,"0.8126","0.8302","0.8302" +"GO:0048598","embryonic morphogenesis",37,15,17.18,419,"0.8126","0.8305","0.8305" +"GO:0031123","RNA 3'-end processing",12,3,5.57,778,"0.9662","0.8307","0.8307" +"GO:0016477","cell migration",36,11,16.71,907,"0.9831","0.8311","0.8311" +"GO:0040008","regulation of growth",25,8,11.61,729,"0.9529","0.8314","0.8314" +"GO:0050877","nervous system process",37,16,17.18,288,"0.7100","0.8316","0.8316" +"GO:0140053","mitochondrial gene expression",11,2,5.11,966,"0.9891","0.8319","0.8319" +"GO:0080135","regulation of cellular response to stres...",46,14,21.36,991,"0.9913","0.8324","0.8324" +"GO:0001568","blood vessel development",14,3,6.5,944,"0.9871","0.8328","0.8328" +"GO:0001944","vasculature development",14,3,6.5,945,"0.9871","0.8328","0.8328" +"GO:0032504","multicellular organism reproduction",63,18,29.25,1087,"0.9989","0.8332","0.8332" +"GO:0003002","regionalization",20,9,9.28,220,"0.6358","0.8347","0.8347" +"GO:0060828","regulation of canonical Wnt signaling pa...",13,4,6.04,642,"0.9236","0.8352","0.8352" +"GO:0022412","cellular process involved in reproductio...",40,9,18.57,1103,"0.9996","0.8355","0.8355" +"GO:0070887","cellular response to chemical stimulus",107,36,49.67,1064,"0.9977","0.8359","0.8359" +"GO:0040029","regulation of gene expression, epigeneti...",25,12,11.61,146,"0.5151","0.8377","0.8377" +"GO:0009890","negative regulation of biosynthetic proc...",61,20,28.32,978,"0.9898","0.8385","0.8385" +"GO:0007186","G protein-coupled receptor signaling pat...",43,17,19.96,482,"0.8574","0.8404","0.8404" +"GO:0034622","cellular protein-containing complex asse...",83,29,38.53,958,"0.9882","0.8406","0.8406" +"GO:0007610","behavior",36,14,16.71,498,"0.8605","0.8410","0.8410" +"GO:0031099","regeneration",10,1,4.64,1074,"0.9981","0.8423","0.8423" +"GO:0043281","regulation of cysteine-type endopeptidas...",10,5,4.64,168,"0.5326","0.8423","0.8423" +"GO:2000116","regulation of cysteine-type endopeptidas...",10,5,4.64,169,"0.5326","0.8423","0.8423" +"GO:0048477","oogenesis",23,6,10.68,940,"0.9870","0.8424","0.8424" +"GO:0030334","regulation of cell migration",22,7,10.21,709,"0.9465","0.8431","0.8431" +"GO:0034470","ncRNA processing",93,39,43.17,466,"0.8390","0.8433","0.8433" +"GO:0040017","positive regulation of locomotion",16,5,7.43,663,"0.9317","0.8434","0.8434" +"GO:0031327","negative regulation of cellular biosynth...",59,20,27.39,902,"0.9823","0.8435","0.8435" +"GO:0001933","negative regulation of protein phosphory...",13,2,6.04,1045,"0.9964","0.8439","0.8439" +"GO:0006986","response to unfolded protein",13,3,6.04,848,"0.9790","0.8439","0.8439" +"GO:0048514","blood vessel morphogenesis",13,3,6.04,849,"0.9790","0.8439","0.8439" +"GO:2001242","regulation of intrinsic apoptotic signal...",13,4,6.04,643,"0.9236","0.8439","0.8439" +"GO:0001934","positive regulation of protein phosphory...",24,8,11.14,676,"0.9345","0.8440","0.8440" +"GO:0035239","tube morphogenesis",33,11,15.32,747,"0.9563","0.8444","0.8444" +"GO:0032386","regulation of intracellular transport",24,11,11.14,194,"0.6020","0.8459","0.8459" +"GO:0010558","negative regulation of macromolecule bio...",58,20,26.93,833,"0.9770","0.8460","0.8460" +"GO:0045934","negative regulation of nucleobase-contai...",58,17,26.93,1061,"0.9976","0.8460","0.8460" +"GO:0031400","negative regulation of protein modificat...",27,7,12.53,999,"0.9918","0.8462","0.8462" +"GO:0070925","organelle assembly",48,22,22.28,188,"0.5892","0.8464","0.8464" +"GO:0060341","regulation of cellular localization",42,19,19.5,214,"0.6208","0.8467","0.8467" +"GO:0009895","negative regulation of catabolic process",12,5,5.57,310,"0.7303","0.8468","0.8468" +"GO:0007281","germ cell development",37,9,17.18,1083,"0.9985","0.8470","0.8470" +"GO:0002521","leukocyte differentiation",10,4,4.64,355,"0.7637","0.8471","0.8471" +"GO:0042110","T cell activation",10,2,4.64,880,"0.9813","0.8471","0.8471" +"GO:0006352","DNA-templated transcription, initiation",17,6,7.89,520,"0.8792","0.8473","0.8473" +"GO:0010638","positive regulation of organelle organiz...",47,16,21.82,813,"0.9701","0.8480","0.8480" +"GO:0016043","cellular component organization",436,196,202.41,362,"0.7670","0.8490","0.8490" +"GO:0043009","chordate embryonic development",33,13,15.32,467,"0.8391","0.8495","0.8495" +"GO:0031399","regulation of protein modification proce...",79,28,36.68,904,"0.9830","0.8498","0.8498" +"GO:2000113","negative regulation of cellular macromol...",56,20,26,761,"0.9619","0.8510","0.8510" +"GO:0070647","protein modification by small protein co...",88,37,40.85,434,"0.8281","0.8512","0.8512" +"GO:0009123","nucleoside monophosphate metabolic proce...",26,9,12.07,630,"0.9223","0.8515","0.8515" +"GO:0016054","organic acid catabolic process",19,7,8.82,485,"0.8583","0.8526","0.8526" +"GO:0046395","carboxylic acid catabolic process",19,7,8.82,486,"0.8583","0.8526","0.8526" +"GO:0010256","endomembrane system organization",25,7,11.61,895,"0.9821","0.8530","0.8530" +"GO:0045596","negative regulation of cell differentiat...",29,10,13.46,669,"0.9325","0.8531","0.8531" +"GO:1903827","regulation of cellular protein localizat...",30,14,13.93,177,"0.5607","0.8540","0.8540" +"GO:0051272","positive regulation of cellular componen...",13,3,6.04,850,"0.9790","0.8546","0.8546" +"GO:2000147","positive regulation of cell motility",13,3,6.04,851,"0.9790","0.8546","0.8546" +"GO:0072359","circulatory system development",37,13,17.18,686,"0.9411","0.8549","0.8549" +"GO:0010639","negative regulation of organelle organiz...",19,8,8.82,300,"0.7272","0.8552","0.8552" +"GO:0010564","regulation of cell cycle process",38,18,17.64,147,"0.5169","0.8555","0.8555" +"GO:0051253","negative regulation of RNA metabolic pro...",54,17,25.07,998,"0.9917","0.8560","0.8560" +"GO:0071840","cellular component organization or bioge...",482,216,223.77,392,"0.7992","0.8562","0.8562" +"GO:0009161","ribonucleoside monophosphate metabolic p...",25,8,11.61,730,"0.9529","0.8568","0.8568" +"GO:0051493","regulation of cytoskeleton organization",25,8,11.61,731,"0.9529","0.8568","0.8568" +"GO:1902903","regulation of supramolecular fiber organ...",25,7,11.61,896,"0.9821","0.8568","0.8568" +"GO:0060322","head development",32,12,14.86,529,"0.8850","0.8573","0.8573" +"GO:0006511","ubiquitin-dependent protein catabolic pr...",62,29,28.78,153,"0.5279","0.8578","0.8578" +"GO:0019941","modification-dependent protein catabolic...",62,29,28.78,154,"0.5279","0.8578","0.8578" +"GO:0016458","gene silencing",23,11,10.68,151,"0.5276","0.8578","0.8578" +"GO:0032984","protein-containing complex disassembly",22,10,10.21,213,"0.6181","0.8580","0.8580" +"GO:0044703","multi-organism reproductive process",61,19,28.32,1033,"0.9952","0.8581","0.8581" +"GO:1902679","negative regulation of RNA biosynthetic ...",53,17,24.6,962,"0.9888","0.8585","0.8585" +"GO:1903507","negative regulation of nucleic acid-temp...",53,17,24.6,963,"0.9888","0.8585","0.8585" +"GO:0009893","positive regulation of metabolic process",139,53,64.53,903,"0.9828","0.8597","0.8597" +"GO:0016310","phosphorylation",191,81,88.67,553,"0.8914","0.8597","0.8597" +"GO:0010033","response to organic substance",128,48,59.42,920,"0.9854","0.8608","0.8608" +"GO:0045892","negative regulation of transcription, DN...",52,17,24.14,916,"0.9851","0.8611","0.8611" +"GO:0007420","brain development",31,11,14.39,628,"0.9219","0.8618","0.8618" +"GO:0032880","regulation of protein localization",39,17,18.11,266,"0.6970","0.8620","0.8620" +"GO:0009636","response to toxic substance",24,7,11.14,826,"0.9739","0.8622","0.8622" +"GO:0002683","negative regulation of immune system pro...",10,3,4.64,607,"0.9158","0.8643","0.8643" +"GO:0030111","regulation of Wnt signaling pathway",18,5,8.36,801,"0.9689","0.8644","0.8644" +"GO:0032502","developmental process",305,127,141.59,797,"0.9680","0.8657","0.8657" +"GO:0010506","regulation of autophagy",14,5,6.5,492,"0.8590","0.8661","0.8661" +"GO:0009308","amine metabolic process",11,4,5.11,449,"0.8344","0.8677","0.8677" +"GO:0044106","cellular amine metabolic process",11,4,5.11,450,"0.8344","0.8677","0.8677" +"GO:1902533","positive regulation of intracellular sig...",24,7,11.14,827,"0.9739","0.8679","0.8679" +"GO:0051704","multi-organism process",110,40,51.07,960,"0.9886","0.8684","0.8684" +"GO:1901575","organic substance catabolic process",193,79,89.6,728,"0.9526","0.8688","0.8688" +"GO:0006887","exocytosis",21,9,9.75,283,"0.7066","0.8695","0.8695" +"GO:0048863","stem cell differentiation",19,4,8.82,1027,"0.9946","0.8698","0.8698" +"GO:1901700","response to oxygen-containing compound",64,24,29.71,689,"0.9434","0.8699","0.8699" +"GO:0007276","gamete generation",50,12,23.21,1115,"0.9997","0.8700","0.8700" +"GO:0016573","histone acetylation",18,5,8.36,802,"0.9689","0.8720","0.8720" +"GO:0010628","positive regulation of gene expression",68,30,31.57,265,"0.6940","0.8721","0.8721" +"GO:0009126","purine nucleoside monophosphate metaboli...",22,7,10.21,710,"0.9465","0.8730","0.8730" +"GO:0009141","nucleoside triphosphate metabolic proces...",22,6,10.21,872,"0.9806","0.8730","0.8730" +"GO:0009167","purine ribonucleoside monophosphate meta...",22,7,10.21,711,"0.9465","0.8730","0.8730" +"GO:0044419","interspecies interaction between organis...",22,7,10.21,712,"0.9465","0.8730","0.8730" +"GO:0060284","regulation of cell development",36,12,16.71,759,"0.9618","0.8737","0.8737" +"GO:0046903","secretion",48,16,22.28,835,"0.9774","0.8739","0.8739" +"GO:0009968","negative regulation of signal transducti...",50,21,23.21,377,"0.7808","0.8740","0.8740" +"GO:0010648","negative regulation of cell communicatio...",50,21,23.21,378,"0.7808","0.8740","0.8740" +"GO:0023057","negative regulation of signaling",50,21,23.21,379,"0.7808","0.8740","0.8740" +"GO:0001932","regulation of protein phosphorylation",40,13,18.57,830,"0.9751","0.8742","0.8742" +"GO:0000122","negative regulation of transcription by ...",30,8,13.93,1012,"0.9923","0.8744","0.8744" +"GO:0048513","animal organ development",157,66,72.89,550,"0.8891","0.8767","0.8767" +"GO:0044238","primary metabolic process",1503,698,697.76,140,"0.5084","0.6430","0.8768" +"GO:0010035","response to inorganic substance",33,12,15.32,591,"0.9112","0.8773","0.8773" +"GO:2001234","negative regulation of apoptotic signali...",10,4,4.64,356,"0.7637","0.8777","0.8777" +"GO:2001243","negative regulation of intrinsic apoptot...",10,4,4.64,357,"0.7637","0.8777","0.8777" +"GO:0009056","catabolic process",225,89,104.45,951,"0.9875","0.8784","0.8784" +"GO:0043900","regulation of multi-organism process",21,7,9.75,652,"0.9249","0.8785","0.8785" +"GO:0044403","symbiont process",21,6,9.75,819,"0.9713","0.8785","0.8785" +"GO:0006396","RNA processing",195,77,90.53,900,"0.9823","0.8820","0.8820" +"GO:0048609","multicellular organismal reproductive pr...",59,16,27.39,1098,"0.9993","0.8822","0.8822" +"GO:0030707","ovarian follicle cell development",13,4,6.04,644,"0.9236","0.8823","0.8823" +"GO:0098660","inorganic ion transmembrane transport",22,5,10.21,1024,"0.9944","0.8830","0.8830" +"GO:0098662","inorganic cation transmembrane transport",22,5,10.21,1025,"0.9944","0.8830","0.8830" +"GO:0033554","cellular response to stress",182,87,84.49,74,"0.3779","0.8228","0.8832" +"GO:0071495","cellular response to endogenous stimulus",51,20,23.68,525,"0.8823","0.8839","0.8839" +"GO:0043254","regulation of protein complex assembly",20,4,9.28,1052,"0.9967","0.8839","0.8839" +"GO:0046488","phosphatidylinositol metabolic process",20,8,9.28,387,"0.7882","0.8841","0.8841" +"GO:0015980","energy derivation by oxidation of organi...",13,3,6.04,852,"0.9790","0.8854","0.8854" +"GO:0031401","positive regulation of protein modificat...",44,16,20.43,673,"0.9345","0.8879","0.8879" +"GO:0006091","generation of precursor metabolites and ...",19,5,8.82,868,"0.9794","0.8880","0.8880" +"GO:0032570","response to progesterone",10,3,4.64,608,"0.9158","0.8880","0.8880" +"GO:0048524","positive regulation of viral process",10,4,4.64,358,"0.7637","0.8880","0.8880" +"GO:0018022","peptidyl-lysine methylation",15,2,6.96,1086,"0.9988","0.8880","0.8880" +"GO:0006836","neurotransmitter transport",19,6,8.82,681,"0.9395","0.8895","0.8895" +"GO:0009144","purine nucleoside triphosphate metabolic...",19,4,8.82,1028,"0.9946","0.8895","0.8895" +"GO:0009199","ribonucleoside triphosphate metabolic pr...",19,4,8.82,1029,"0.9946","0.8895","0.8895" +"GO:0031344","regulation of cell projection organizati...",27,7,12.53,1000,"0.9918","0.8896","0.8896" +"GO:0120035","regulation of plasma membrane bounded ce...",27,7,12.53,1001,"0.9918","0.8896","0.8896" +"GO:0044248","cellular catabolic process",195,77,90.53,901,"0.9823","0.8902","0.8902" +"GO:0051495","positive regulation of cytoskeleton orga...",18,5,8.36,803,"0.9689","0.8910","0.8910" +"GO:0065003","protein-containing complex assembly",99,36,45.96,914,"0.9848","0.8911","0.8911" +"GO:0030154","cell differentiation",166,64,77.06,921,"0.9859","0.8920","0.8920" +"GO:0098609","cell-cell adhesion",21,8,9.75,464,"0.8384","0.8922","0.8922" +"GO:0051172","negative regulation of nitrogen compound...",94,33,43.64,984,"0.9910","0.8925","0.8925" +"GO:0007600","sensory perception",25,11,11.61,252,"0.6703","0.8928","0.8928" +"GO:0010629","negative regulation of gene expression",87,30,40.39,1003,"0.9919","0.8933","0.8933" +"GO:0006397","mRNA processing",64,21,29.71,983,"0.9910","0.8938","0.8938" +"GO:0019953","sexual reproduction",58,17,26.93,1062,"0.9976","0.8939","0.8939" +"GO:0006811","ion transport",123,52,57.1,476,"0.8505","0.8945","0.8945" +"GO:0051246","regulation of protein metabolic process",134,51,62.21,894,"0.9819","0.8946","0.8946" +"GO:0006342","chromatin silencing",13,6,6.04,207,"0.6142","0.8947","0.8947" +"GO:0051247","positive regulation of protein metabolic...",65,20,30.18,1054,"0.9968","0.8948","0.8948" +"GO:0009205","purine ribonucleoside triphosphate metab...",18,4,8.36,996,"0.9914","0.8950","0.8950" +"GO:0016032","viral process",18,5,8.36,804,"0.9689","0.8950","0.8950" +"GO:0031334","positive regulation of protein complex a...",18,4,8.36,997,"0.9914","0.8950","0.8950" +"GO:0035690","cellular response to drug",18,5,8.36,805,"0.9689","0.8950","0.8950" +"GO:0042592","homeostatic process",79,28,36.68,905,"0.9830","0.8950","0.8950" +"GO:0031325","positive regulation of cellular metaboli...",126,47,58.49,928,"0.9865","0.8951","0.8951" +"GO:0060548","negative regulation of cell death",44,16,20.43,674,"0.9345","0.8953","0.8953" +"GO:0032940","secretion by cell",41,13,19.03,893,"0.9817","0.8953","0.8953" +"GO:0009719","response to endogenous stimulus",74,27,34.35,810,"0.9692","0.8963","0.8963" +"GO:0046649","lymphocyte activation",14,3,6.5,946,"0.9871","0.8963","0.8963" +"GO:0002682","regulation of immune system process",48,19,22.28,505,"0.8658","0.8976","0.8976" +"GO:0006952","defense response",48,20,22.28,389,"0.7915","0.8976","0.8976" +"GO:0031396","regulation of protein ubiquitination",18,7,8.36,411,"0.8100","0.8977","0.8977" +"GO:1903320","regulation of protein modification by sm...",18,7,8.36,412,"0.8100","0.8977","0.8977" +"GO:0016073","snRNA metabolic process",12,2,5.57,1020,"0.9937","0.8990","0.8990" +"GO:0051098","regulation of binding",12,2,5.57,1021,"0.9937","0.8992","0.8992" +"GO:0043618","regulation of transcription from RNA pol...",11,2,5.11,967,"0.9891","0.8996","0.8996" +"GO:0043620","regulation of DNA-templated transcriptio...",11,2,5.11,968,"0.9891","0.8996","0.8996" +"GO:0050764","regulation of phagocytosis",11,3,5.11,700,"0.9463","0.8996","0.8996" +"GO:1903202","negative regulation of oxidative stress-...",11,3,5.11,701,"0.9463","0.8996","0.8996" +"GO:0006664","glycolipid metabolic process",12,5,5.57,311,"0.7303","0.9002","0.9002" +"GO:1903509","liposaccharide metabolic process",12,5,5.57,312,"0.7303","0.9002","0.9002" +"GO:0000302","response to reactive oxygen species",17,5,7.89,736,"0.9536","0.9006","0.9006" +"GO:0032271","regulation of protein polymerization",17,3,7.89,1056,"0.9972","0.9006","0.9006" +"GO:0046034","ATP metabolic process",17,4,7.89,923,"0.9864","0.9006","0.9006" +"GO:0046677","response to antibiotic",17,5,7.89,737,"0.9536","0.9006","0.9006" +"GO:1902905","positive regulation of supramolecular fi...",17,4,7.89,924,"0.9864","0.9006","0.9006" +"GO:0030258","lipid modification",15,5,6.96,574,"0.9010","0.9010","0.9010" +"GO:0071310","cellular response to organic substance",87,31,40.39,919,"0.9854","0.9012","0.9012" +"GO:0006807","nitrogen compound metabolic process",1402,642,650.87,367,"0.7738","0.7867","0.9016" +"GO:0032269","negative regulation of cellular protein ...",42,16,19.5,555,"0.8945","0.9019","0.9019" +"GO:0006814","sodium ion transport",18,7,8.36,413,"0.8100","0.9033","0.9033" +"GO:0002009","morphogenesis of an epithelium",30,11,13.93,566,"0.8974","0.9039","0.9039" +"GO:0032270","positive regulation of cellular protein ...",62,19,28.78,1050,"0.9964","0.9044","0.9044" +"GO:0009057","macromolecule catabolic process",138,53,64.07,864,"0.9793","0.9045","0.9045" +"GO:0007166","cell surface receptor signaling pathway",103,41,47.82,659,"0.9306","0.9054","0.9054" +"GO:0010038","response to metal ion",25,9,11.61,558,"0.8956","0.9058","0.9058" +"GO:0051258","protein polymerization",25,4,11.61,1114,"0.9997","0.9058","0.9058" +"GO:0032535","regulation of cellular component size",18,6,8.36,596,"0.9138","0.9059","0.9059" +"GO:0042742","defense response to bacterium",12,4,5.57,537,"0.8864","0.9061","0.9061" +"GO:0034614","cellular response to reactive oxygen spe...",16,4,7.43,843,"0.9787","0.9062","0.9062" +"GO:0043902","positive regulation of multi-organism pr...",16,6,7.43,440,"0.8336","0.9062","0.9062" +"GO:0097237","cellular response to toxic substance",16,4,7.43,844,"0.9787","0.9062","0.9062" +"GO:0008380","RNA splicing",56,15,26,1097,"0.9993","0.9067","0.9067" +"GO:0042157","lipoprotein metabolic process",20,9,9.28,221,"0.6358","0.9071","0.9071" +"GO:0003006","developmental process involved in reprod...",56,17,26,1037,"0.9955","0.9072","0.9072" +"GO:0048583","regulation of response to stimulus",171,71,79.39,627,"0.9212","0.9082","0.9082" +"GO:0007033","vacuole organization",17,5,7.89,738,"0.9536","0.9085","0.9085" +"GO:0033365","protein localization to organelle",62,25,28.78,504,"0.8655","0.9105","0.9105" +"GO:0010604","positive regulation of macromolecule met...",120,47,55.71,755,"0.9585","0.9109","0.9109" +"GO:0048585","negative regulation of response to stimu...",68,26,31.57,671,"0.9334","0.9111","0.9111" +"GO:0032273","positive regulation of protein polymeriz...",15,3,6.96,1009,"0.9922","0.9118","0.9118" +"GO:0032886","regulation of microtubule-based process",15,4,6.96,790,"0.9669","0.9118","0.9118" +"GO:0043624","cellular protein complex disassembly",15,5,6.96,575,"0.9010","0.9118","0.9118" +"GO:0045862","positive regulation of proteolysis",15,3,6.96,1010,"0.9922","0.9118","0.9118" +"GO:0071236","cellular response to antibiotic",15,4,6.96,791,"0.9669","0.9118","0.9118" +"GO:0099003","vesicle-mediated transport in synapse",15,4,6.96,792,"0.9669","0.9118","0.9118" +"GO:0051174","regulation of phosphorus metabolic proce...",59,18,27.39,1041,"0.9960","0.9139","0.9139" +"GO:0032879","regulation of localization",99,41,45.96,511,"0.8694","0.9140","0.9140" +"GO:0006974","cellular response to DNA damage stimulus",125,68,58.03,7,"0.0409","0.0956","0.9146" +"GO:0048285","organelle fission",43,20,19.96,173,"0.5552","0.9153","0.9153" +"GO:0009628","response to abiotic stimulus",77,25,35.75,1040,"0.9959","0.9158","0.9158" +"GO:0051130","positive regulation of cellular componen...",64,22,29.71,899,"0.9823","0.9159","0.9159" +"GO:0019220","regulation of phosphate metabolic proces...",58,17,26.93,1063,"0.9976","0.9170","0.9170" +"GO:0031109","microtubule polymerization or depolymeri...",14,2,6.5,1068,"0.9979","0.9175","0.9175" +"GO:0036473","cell death in response to oxidative stre...",14,4,6.5,719,"0.9494","0.9175","0.9175" +"GO:0042542","response to hydrogen peroxide",14,3,6.5,947,"0.9871","0.9175","0.9175" +"GO:0070301","cellular response to hydrogen peroxide",14,3,6.5,948,"0.9871","0.9175","0.9175" +"GO:0070507","regulation of microtubule cytoskeleton o...",14,4,6.5,720,"0.9494","0.9175","0.9175" +"GO:1902904","negative regulation of supramolecular fi...",14,4,6.5,721,"0.9494","0.9175","0.9175" +"GO:0006366","transcription by RNA polymerase II",113,48,52.46,437,"0.8307","0.9184","0.9184" +"GO:0035967","cellular response to topologically incor...",18,5,8.36,806,"0.9689","0.9192","0.9192" +"GO:0006928","movement of cell or subcellular componen...",88,37,40.85,435,"0.8281","0.9204","0.9204" +"GO:0009617","response to bacterium",21,5,9.75,985,"0.9912","0.9204","0.9204" +"GO:0044237","cellular metabolic process",1450,661,673.15,472,"0.8460","0.8094","0.9206" +"GO:1901606","alpha-amino acid catabolic process",10,3,4.64,609,"0.9158","0.9212","0.9212" +"GO:0002376","immune system process",80,28,37.14,937,"0.9866","0.9213","0.9213" +"GO:0065008","regulation of biological quality",173,65,80.31,1023,"0.9940","0.9218","0.9218" +"GO:0006935","chemotaxis",19,6,8.82,682,"0.9395","0.9227","0.9227" +"GO:0042330","taxis",19,6,8.82,683,"0.9395","0.9227","0.9227" +"GO:0007286","spermatid development",18,5,8.36,807,"0.9689","0.9230","0.9230" +"GO:0048515","spermatid differentiation",18,5,8.36,808,"0.9689","0.9230","0.9230" +"GO:0002443","leukocyte mediated immunity",13,3,6.04,853,"0.9790","0.9232","0.9232" +"GO:0006909","phagocytosis",13,3,6.04,854,"0.9790","0.9232","0.9232" +"GO:0019058","viral life cycle",13,3,6.04,855,"0.9790","0.9232","0.9232" +"GO:0023061","signal release",13,3,6.04,856,"0.9790","0.9232","0.9232" +"GO:0030900","forebrain development",13,5,6.04,401,"0.8029","0.9232","0.9232" +"GO:0043903","regulation of symbiosis, encompassing mu...",13,5,6.04,402,"0.8029","0.9232","0.9232" +"GO:0046785","microtubule polymerization",13,1,6.04,1109,"0.9997","0.9232","0.9232" +"GO:0061077","chaperone-mediated protein folding",13,4,6.04,645,"0.9236","0.9232","0.9232" +"GO:0071241","cellular response to inorganic substance",13,3,6.04,857,"0.9790","0.9232","0.9232" +"GO:0051173","positive regulation of nitrogen compound...",115,45,53.39,744,"0.9561","0.9236","0.9236" +"GO:0097305","response to alcohol",19,6,8.82,684,"0.9395","0.9245","0.9245" +"GO:0007626","locomotory behavior",11,1,5.11,1089,"0.9990","0.9252","0.9252" +"GO:0036294","cellular response to decreased oxygen le...",11,1,5.11,1090,"0.9990","0.9252","0.9252" +"GO:0071453","cellular response to oxygen levels",11,1,5.11,1091,"0.9990","0.9252","0.9252" +"GO:0071456","cellular response to hypoxia",11,1,5.11,1092,"0.9990","0.9252","0.9252" +"GO:0000375","RNA splicing, via transesterification re...",44,14,20.43,909,"0.9838","0.9263","0.9263" +"GO:0000377","RNA splicing, via transesterification re...",44,14,20.43,910,"0.9838","0.9263","0.9263" +"GO:0000398","mRNA splicing, via spliceosome",44,14,20.43,911,"0.9838","0.9263","0.9263" +"GO:0031647","regulation of protein stability",22,4,10.21,1084,"0.9987","0.9265","0.9265" +"GO:0001655","urogenital system development",17,5,7.89,739,"0.9536","0.9271","0.9271" +"GO:0006139","nucleobase-containing compound metabolic...",780,370,362.11,41,"0.2617","0.2998","0.9286" +"GO:0008088","axo-dendritic transport",12,4,5.57,538,"0.8864","0.9289","0.9289" +"GO:0045807","positive regulation of endocytosis",12,3,5.57,779,"0.9662","0.9289","0.9289" +"GO:0051261","protein depolymerization",12,4,5.57,539,"0.8864","0.9289","0.9289" +"GO:0071248","cellular response to metal ion",12,2,5.57,1022,"0.9937","0.9289","0.9289" +"GO:1903201","regulation of oxidative stress-induced c...",12,4,5.57,540,"0.8864","0.9289","0.9289" +"GO:0031056","regulation of histone modification",11,3,5.11,702,"0.9463","0.9290","0.9290" +"GO:0007178","transmembrane receptor protein serine/th...",22,8,10.21,516,"0.8786","0.9296","0.9296" +"GO:0006357","regulation of transcription by RNA polym...",97,40,45.03,514,"0.8748","0.9300","0.9300" +"GO:0019725","cellular homeostasis",40,14,18.57,714,"0.9486","0.9314","0.9314" +"GO:0030162","regulation of proteolysis",29,10,13.46,670,"0.9325","0.9315","0.9315" +"GO:0007167","enzyme linked receptor protein signaling...",40,17,18.57,331,"0.7449","0.9316","0.9316" +"GO:0008283","cell proliferation",57,21,26.46,708,"0.9463","0.9321","0.9321" +"GO:0006955","immune response",47,18,21.82,568,"0.8995","0.9321","0.9321" +"GO:0080134","regulation of response to stress",66,22,30.64,975,"0.9896","0.9327","0.9327" +"GO:0016071","mRNA metabolic process",93,31,43.17,1053,"0.9967","0.9329","0.9329" +"GO:1903829","positive regulation of cellular protein ...",20,8,9.28,388,"0.7882","0.9330","0.9330" +"GO:1902275","regulation of chromatin organization",13,5,6.04,403,"0.8029","0.9331","0.9331" +"GO:0006497","protein lipidation",18,7,8.36,414,"0.8100","0.9334","0.9334" +"GO:0042158","lipoprotein biosynthetic process",18,7,8.36,415,"0.8100","0.9334","0.9334" +"GO:0071702","organic substance transport",180,77,83.56,503,"0.8634","0.9337","0.9337" +"GO:0042221","response to chemical",191,73,88.67,1017,"0.9929","0.9342","0.9342" +"GO:1901565","organonitrogen compound catabolic proces...",123,50,57.1,626,"0.9210","0.9344","0.9344" +"GO:0007041","lysosomal transport",11,4,5.11,451,"0.8344","0.9346","0.9346" +"GO:0031110","regulation of microtubule polymerization...",11,2,5.11,969,"0.9891","0.9346","0.9346" +"GO:0048872","homeostasis of number of cells",11,1,5.11,1093,"0.9990","0.9346","0.9346" +"GO:0050792","regulation of viral process",11,4,5.11,452,"0.8344","0.9346","0.9346" +"GO:0050821","protein stabilization",11,2,5.11,970,"0.9891","0.9346","0.9346" +"GO:1901031","regulation of response to reactive oxyge...",11,4,5.11,453,"0.8344","0.9346","0.9346" +"GO:0006487","protein N-linked glycosylation",12,3,5.57,780,"0.9662","0.9346","0.9346" +"GO:0006400","tRNA modification",27,12,12.53,243,"0.6541","0.9352","0.9352" +"GO:0051321","meiotic cell cycle",15,4,6.96,793,"0.9669","0.9355","0.9355" +"GO:0042327","positive regulation of phosphorylation",28,10,13,587,"0.9098","0.9356","0.9356" +"GO:0010605","negative regulation of macromolecule met...",119,43,55.24,1011,"0.9922","0.9366","0.9366" +"GO:0009991","response to extracellular stimulus",30,8,13.93,1013,"0.9923","0.9368","0.9368" +"GO:0031667","response to nutrient levels",30,8,13.93,1014,"0.9923","0.9368","0.9368" +"GO:1901360","organic cyclic compound metabolic proces...",822,391,381.61,40,"0.2245","0.3435","0.9380" +"GO:0002694","regulation of leukocyte activation",13,2,6.04,1046,"0.9964","0.9382","0.9382" +"GO:0050865","regulation of cell activation",13,2,6.04,1047,"0.9964","0.9382","0.9382" +"GO:0001775","cell activation",26,7,12.07,954,"0.9878","0.9385","0.9385" +"GO:0030097","hemopoiesis",21,5,9.75,986,"0.9912","0.9391","0.9391" +"GO:0009966","regulation of signal transduction",114,47,52.92,554,"0.8918","0.9393","0.9393" +"GO:0006725","cellular aromatic compound metabolic pro...",802,380,372.32,42,"0.2693","0.3499","0.9396" +"GO:0046483","heterocycle metabolic process",802,378,372.32,63,"0.3286","0.4417","0.9396" +"GO:0001822","kidney development",14,5,6.5,493,"0.8590","0.9397","0.9397" +"GO:0072001","renal system development",14,5,6.5,494,"0.8590","0.9397","0.9397" +"GO:0050896","response to stimulus",596,259,276.69,749,"0.9564","0.8441","0.9398" +"GO:0030099","myeloid cell differentiation",12,4,5.57,541,"0.8864","0.9402","0.9402" +"GO:0006810","transport",472,208,219.12,526,"0.8829","0.9404","0.9404" +"GO:0002699","positive regulation of immune effector p...",10,2,4.64,881,"0.9813","0.9404","0.9404" +"GO:0006458","'de novo' protein folding",10,3,4.64,610,"0.9158","0.9404","0.9404" +"GO:0007269","neurotransmitter secretion",10,2,4.64,882,"0.9813","0.9404","0.9404" +"GO:0019079","viral genome replication",10,3,4.64,611,"0.9158","0.9404","0.9404" +"GO:0030902","hindbrain development",10,3,4.64,612,"0.9158","0.9404","0.9404" +"GO:0032355","response to estradiol",10,2,4.64,883,"0.9813","0.9404","0.9404" +"GO:0034605","cellular response to heat",10,4,4.64,359,"0.7637","0.9404","0.9404" +"GO:0035821","modification of morphology or physiology...",10,2,4.64,884,"0.9813","0.9404","0.9404" +"GO:0036474","cell death in response to hydrogen perox...",10,3,4.64,613,"0.9158","0.9404","0.9404" +"GO:0046777","protein autophosphorylation",10,2,4.64,885,"0.9813","0.9404","0.9404" +"GO:0051084","'de novo' posttranslational protein fold...",10,3,4.64,614,"0.9158","0.9404","0.9404" +"GO:0051085","chaperone cofactor-dependent protein ref...",10,3,4.64,615,"0.9158","0.9404","0.9404" +"GO:0051817","modification of morphology or physiology...",10,2,4.64,886,"0.9813","0.9404","0.9404" +"GO:0090559","regulation of membrane permeability",10,2,4.64,887,"0.9813","0.9404","0.9404" +"GO:0099643","signal release from synapse",10,2,4.64,888,"0.9813","0.9404","0.9404" +"GO:1903205","regulation of hydrogen peroxide-induced ...",10,3,4.64,616,"0.9158","0.9404","0.9404" +"GO:1903313","positive regulation of mRNA metabolic pr...",10,4,4.64,360,"0.7637","0.9404","0.9404" +"GO:2001023","regulation of response to drug",10,3,4.64,617,"0.9158","0.9404","0.9404" +"GO:2001038","regulation of cellular response to drug",10,3,4.64,618,"0.9158","0.9404","0.9404" +"GO:0006643","membrane lipid metabolic process",19,8,8.82,301,"0.7272","0.9404","0.9404" +"GO:0035295","tube development",45,14,20.89,956,"0.9881","0.9405","0.9405" +"GO:0042127","regulation of cell proliferation",42,17,19.5,433,"0.8250","0.9405","0.9405" +"GO:0072524","pyridine-containing compound metabolic p...",14,5,6.5,495,"0.8590","0.9406","0.9406" +"GO:0010948","negative regulation of cell cycle proces...",14,7,6.5,135,"0.4973","0.9411","0.9411" +"GO:0034660","ncRNA metabolic process",125,50,58.03,688,"0.9422","0.9423","0.9423" +"GO:0007267","cell-cell signaling",55,19,25.53,824,"0.9738","0.9423","0.9423" +"GO:0030031","cell projection assembly",23,7,10.68,764,"0.9624","0.9429","0.9429" +"GO:0120031","plasma membrane bounded cell projection ...",23,7,10.68,765,"0.9624","0.9429","0.9429" +"GO:0048534","hematopoietic or lymphoid organ developm...",22,6,10.21,873,"0.9806","0.9430","0.9430" +"GO:0002252","immune effector process",24,6,11.14,992,"0.9914","0.9431","0.9431" +"GO:0007034","vacuolar transport",18,6,8.36,597,"0.9138","0.9439","0.9439" +"GO:0048232","male gamete generation",34,9,15.78,1032,"0.9951","0.9448","0.9448" +"GO:0007040","lysosome organization",10,2,4.64,889,"0.9813","0.9453","0.9453" +"GO:0070838","divalent metal ion transport",10,1,4.64,1075,"0.9981","0.9453","0.9453" +"GO:0072511","divalent inorganic cation transport",10,1,4.64,1076,"0.9981","0.9453","0.9453" +"GO:0080171","lytic vacuole organization",10,2,4.64,890,"0.9813","0.9453","0.9453" +"GO:0045321","leukocyte activation",23,5,10.68,1049,"0.9964","0.9454","0.9454" +"GO:0032388","positive regulation of intracellular tra...",16,5,7.43,664,"0.9317","0.9461","0.9461" +"GO:0043069","negative regulation of programmed cell d...",36,13,16.71,631,"0.9230","0.9461","0.9461" +"GO:0030163","protein catabolic process",101,39,46.89,750,"0.9568","0.9463","0.9463" +"GO:0002520","immune system development",23,6,10.68,941,"0.9870","0.9466","0.9466" +"GO:0045787","positive regulation of cell cycle",12,5,5.57,313,"0.7303","0.9473","0.9473" +"GO:0010970","transport along microtubule",17,6,7.89,521,"0.8792","0.9473","0.9473" +"GO:0099111","microtubule-based transport",17,6,7.89,522,"0.8792","0.9473","0.9473" +"GO:0051249","regulation of lymphocyte activation",11,2,5.11,971,"0.9891","0.9475","0.9475" +"GO:0001666","response to hypoxia",13,1,6.04,1110,"0.9997","0.9477","0.9477" +"GO:0032101","regulation of response to external stimu...",13,3,6.04,858,"0.9790","0.9477","0.9477" +"GO:0036293","response to decreased oxygen levels",13,1,6.04,1111,"0.9997","0.9477","0.9477" +"GO:0070482","response to oxygen levels",13,1,6.04,1112,"0.9997","0.9477","0.9477" +"GO:0042325","regulation of phosphorylation",48,16,22.28,836,"0.9774","0.9478","0.9478" +"GO:0019362","pyridine nucleotide metabolic process",12,4,5.57,542,"0.8864","0.9489","0.9489" +"GO:0046496","nicotinamide nucleotide metabolic proces...",12,4,5.57,543,"0.8864","0.9489","0.9489" +"GO:0022604","regulation of cell morphogenesis",12,1,5.57,1101,"0.9995","0.9490","0.9490" +"GO:0033157","regulation of intracellular protein tran...",15,6,6.96,374,"0.7749","0.9494","0.9494" +"GO:0051222","positive regulation of protein transport",15,5,6.96,576,"0.9010","0.9494","0.9494" +"GO:1904951","positive regulation of establishment of ...",15,5,6.96,577,"0.9010","0.9494","0.9494" +"GO:0006513","protein monoubiquitination",13,3,6.04,859,"0.9790","0.9501","0.9501" +"GO:0048731","system development",208,89,96.56,518,"0.8791","0.9504","0.9504" +"GO:0060070","canonical Wnt signaling pathway",16,5,7.43,665,"0.9317","0.9504","0.9504" +"GO:0050684","regulation of mRNA processing",11,4,5.11,454,"0.8344","0.9505","0.9505" +"GO:0007005","mitochondrion organization",51,16,23.68,982,"0.9906","0.9514","0.9514" +"GO:0090304","nucleic acid metabolic process",698,328,324.04,75,"0.3787","0.6239","0.9518" +"GO:0012501","programmed cell death",79,30,36.68,726,"0.9507","0.9523","0.9523" +"GO:1903046","meiotic cell cycle process",11,1,5.11,1094,"0.9990","0.9523","0.9523" +"GO:0009266","response to temperature stimulus",31,8,14.39,1030,"0.9948","0.9527","0.9527" +"GO:0062012","regulation of small molecule metabolic p...",13,3,6.04,860,"0.9790","0.9529","0.9529" +"GO:0031398","positive regulation of protein ubiquitin...",12,5,5.57,314,"0.7303","0.9539","0.9539" +"GO:1903322","positive regulation of protein modificat...",12,5,5.57,315,"0.7303","0.9539","0.9539" +"GO:0048869","cellular developmental process",171,66,79.39,938,"0.9866","0.9547","0.9547" +"GO:0006812","cation transport",70,24,32.5,922,"0.9863","0.9555","0.9555" +"GO:1903747","regulation of establishment of protein l...",13,4,6.04,646,"0.9236","0.9560","0.9560" +"GO:0031323","regulation of cellular metabolic process",418,173,194.05,979,"0.9898","0.9521","0.9562" +"GO:0080090","regulation of primary metabolic process",418,174,194.05,927,"0.9865","0.9521","0.9562" +"GO:0099504","synaptic vesicle cycle",13,4,6.04,647,"0.9236","0.9565","0.9565" +"GO:0140013","meiotic nuclear division",10,1,4.64,1077,"0.9981","0.9566","0.9566" +"GO:0016070","RNA metabolic process",568,239,263.69,1005,"0.9920","0.9562","0.9568" +"GO:0042594","response to starvation",20,5,9.28,930,"0.9865","0.9576","0.9576" +"GO:0090305","nucleic acid phosphodiester bond hydroly...",20,5,9.28,931,"0.9865","0.9576","0.9576" +"GO:0046686","response to cadmium ion",11,3,5.11,703,"0.9463","0.9577","0.9577" +"GO:0045595","regulation of cell differentiation",71,24,32.96,974,"0.9895","0.9578","0.9578" +"GO:0009889","regulation of biosynthetic process",331,143,153.66,582,"0.9067","0.9549","0.9578" +"GO:0045087","innate immune response",21,9,9.75,284,"0.7066","0.9580","0.9580" +"GO:0071806","protein transmembrane transport",13,5,6.04,404,"0.8029","0.9585","0.9585" +"GO:0043066","negative regulation of apoptotic process",33,11,15.32,748,"0.9563","0.9590","0.9590" +"GO:0031326","regulation of cellular biosynthetic proc...",327,141,151.81,588,"0.9106","0.9563","0.9593" +"GO:0090316","positive regulation of intracellular pro...",12,4,5.57,544,"0.8864","0.9593","0.9593" +"GO:1903214","regulation of protein targeting to mitoc...",12,4,5.57,545,"0.8864","0.9593","0.9593" +"GO:1903533","regulation of protein targeting",12,4,5.57,546,"0.8864","0.9593","0.9593" +"GO:1903749","positive regulation of establishment of ...",12,4,5.57,547,"0.8864","0.9593","0.9593" +"GO:1903955","positive regulation of protein targeting...",12,4,5.57,548,"0.8864","0.9593","0.9593" +"GO:0044257","cellular protein catabolic process",73,30,33.89,478,"0.8522","0.9594","0.9594" +"GO:0051603","proteolysis involved in cellular protein...",73,30,33.89,479,"0.8522","0.9594","0.9594" +"GO:1901362","organic cyclic compound biosynthetic pro...",421,191,195.45,270,"0.7015","0.9505","0.9599" +"GO:0048469","cell maturation",13,4,6.04,648,"0.9236","0.9600","0.9600" +"GO:0045814","negative regulation of gene expression, ...",14,6,6.5,278,"0.7019","0.9611","0.9611" +"GO:0018130","heterocycle biosynthetic process",408,182,189.41,405,"0.8043","0.9571","0.9611" +"GO:0010556","regulation of macromolecule biosynthetic...",321,141,149.02,473,"0.8463","0.9584","0.9614" +"GO:0051171","regulation of nitrogen compound metaboli...",407,169,188.95,939,"0.9869","0.9576","0.9616" +"GO:0019219","regulation of nucleobase-containing comp...",318,131,147.63,871,"0.9805","0.9595","0.9624" +"GO:0015031","protein transport",123,51,57.1,551,"0.8897","0.9626","0.9626" +"GO:2000112","regulation of cellular macromolecule bio...",317,139,147.17,477,"0.8516","0.9598","0.9627" +"GO:1902531","regulation of intracellular signal trans...",63,24,29.25,657,"0.9300","0.9629","0.9629" +"GO:0051234","establishment of localization",487,213,226.09,599,"0.9154","0.9631","0.9631" +"GO:1901564","organonitrogen compound metabolic proces...",813,345,377.43,1057,"0.9976","0.9634","0.9634" +"GO:0015833","peptide transport",124,51,57.57,580,"0.9043","0.9635","0.9635" +"GO:0042886","amide transport",124,51,57.57,581,"0.9043","0.9635","0.9635" +"GO:0019438","aromatic compound biosynthetic process",401,179,186.16,391,"0.7984","0.9606","0.9645" +"GO:0044772","mitotic cell cycle phase transition",27,11,12.53,384,"0.7842","0.9646","0.9646" +"GO:0033043","regulation of organelle organization",76,31,35.28,509,"0.8682","0.9646","0.9646" +"GO:0035556","intracellular signal transduction",128,46,59.42,1026,"0.9946","0.9652","0.9652" +"GO:0090501","RNA phosphodiester bond hydrolysis",16,5,7.43,666,"0.9317","0.9660","0.9660" +"GO:0051252","regulation of RNA metabolic process",306,126,142.06,846,"0.9788","0.9637","0.9665" +"GO:0030705","cytoskeleton-dependent intracellular tra...",18,6,8.36,598,"0.9138","0.9680","0.9680" +"GO:0044087","regulation of cellular component biogene...",41,14,19.03,757,"0.9610","0.9680","0.9680" +"GO:0019222","regulation of metabolic process",453,189,210.3,959,"0.9884","0.9645","0.9681" +"GO:0030001","metal ion transport",50,16,23.21,950,"0.9873","0.9683","0.9683" +"GO:0008219","cell death",89,34,41.32,741,"0.9553","0.9684","0.9684" +"GO:0034654","nucleobase-containing compound biosynthe...",387,172,179.66,425,"0.8169","0.9668","0.9693" +"GO:1903311","regulation of mRNA metabolic process",22,8,10.21,517,"0.8786","0.9697","0.9697" +"GO:0009790","embryo development",68,26,31.57,672,"0.9334","0.9697","0.9697" +"GO:0019538","protein metabolic process",668,273,310.11,1107,"0.9997","0.9698","0.9698" +"GO:0051050","positive regulation of transport",38,12,17.64,863,"0.9793","0.9703","0.9703" +"GO:0045184","establishment of protein localization",133,55,61.74,578,"0.9025","0.9706","0.9706" +"GO:0044770","cell cycle phase transition",30,13,13.93,269,"0.6989","0.9710","0.9710" +"GO:0007568","aging",30,8,13.93,1015,"0.9923","0.9711","0.9711" +"GO:0009408","response to heat",30,7,13.93,1059,"0.9976","0.9711","0.9711" +"GO:0060429","epithelium development",56,19,26,870,"0.9799","0.9712","0.9712" +"GO:0034097","response to cytokine",20,6,9.28,754,"0.9581","0.9712","0.9712" +"GO:0051604","protein maturation",12,0,5.57,1120,"1.0000","0.9713","0.9713" +"GO:0007275","multicellular organism development",254,106,117.92,724,"0.9505","0.9715","0.9715" +"GO:0050768","negative regulation of neurogenesis",11,4,5.11,455,"0.8344","0.9717","0.9717" +"GO:0051961","negative regulation of nervous system de...",11,4,5.11,456,"0.8344","0.9717","0.9717" +"GO:2001141","regulation of RNA biosynthetic process",287,122,133.24,658,"0.9302","0.9700","0.9727" +"GO:1903506","regulation of nucleic acid-templated tra...",286,121,132.77,679,"0.9391","0.9703","0.9731" +"GO:0006355","regulation of transcription, DNA-templat...",285,121,132.31,667,"0.9320","0.9706","0.9734" +"GO:0002697","regulation of immune effector process",11,2,5.11,972,"0.9891","0.9736","0.9736" +"GO:0007283","spermatogenesis",31,9,14.39,917,"0.9851","0.9748","0.9748" +"GO:0033036","macromolecule localization",213,88,98.88,716,"0.9492","0.9757","0.9757" +"GO:0043484","regulation of RNA splicing",14,3,6.5,949,"0.9871","0.9762","0.9762" +"GO:0009888","tissue development",91,32,42.25,980,"0.9898","0.9762","0.9762" +"GO:0071496","cellular response to external stimulus",11,3,5.11,704,"0.9463","0.9765","0.9765" +"GO:0043170","macromolecule metabolic process",1266,570,587.73,654,"0.9269","0.8910","0.9766" +"GO:0045454","cell redox homeostasis",17,4,7.89,925,"0.9864","0.9770","0.9770" +"GO:0032774","RNA biosynthetic process",335,142,155.52,725,"0.9507","0.9767","0.9773" +"GO:0051248","negative regulation of protein metabolic...",43,16,19.96,625,"0.9165","0.9773","0.9773" +"GO:0097659","nucleic acid-templated transcription",331,139,153.66,771,"0.9637","0.9770","0.9776" +"GO:0006351","transcription, DNA-templated",330,139,153.2,756,"0.9593","0.9770","0.9776" +"GO:0098655","cation transmembrane transport",28,6,13,1081,"0.9985","0.9781","0.9781" +"GO:0015672","monovalent inorganic cation transport",31,11,14.39,629,"0.9219","0.9783","0.9783" +"GO:0009267","cellular response to starvation",10,3,4.64,619,"0.9158","0.9786","0.9786" +"GO:0031668","cellular response to extracellular stimu...",10,3,4.64,620,"0.9158","0.9786","0.9786" +"GO:0031669","cellular response to nutrient levels",10,3,4.64,621,"0.9158","0.9786","0.9786" +"GO:0044089","positive regulation of cellular componen...",27,7,12.53,1002,"0.9918","0.9789","0.9789" +"GO:0060255","regulation of macromolecule metabolic pr...",425,179,197.3,838,"0.9777","0.9763","0.9794" +"GO:0010468","regulation of gene expression",351,149,162.95,727,"0.9524","0.9775","0.9798" +"GO:0010975","regulation of neuron projection developm...",13,3,6.04,861,"0.9790","0.9802","0.9802" +"GO:0048523","negative regulation of cellular process",206,84,95.63,762,"0.9619","0.9803","0.9803" +"GO:0071345","cellular response to cytokine stimulus",17,4,7.89,926,"0.9864","0.9805","0.9805" +"GO:0071705","nitrogen compound transport",150,62,69.64,601,"0.9155","0.9810","0.9810" +"GO:0009987","cellular process",1947,884,903.88,823,"0.9730","0.9796","0.9813" +"GO:0006915","apoptotic process",72,26,33.43,822,"0.9721","0.9817","0.9817" +"GO:0048729","tissue morphogenesis",33,12,15.32,592,"0.9112","0.9818","0.9818" +"GO:0050793","regulation of developmental process",102,32,47.35,1100,"0.9994","0.9823","0.9823" +"GO:0035966","response to topologically incorrect prot...",24,6,11.14,993,"0.9914","0.9827","0.9827" +"GO:0034641","cellular nitrogen compound metabolic pro...",887,412,411.78,141,"0.5093","0.8316","0.9828" +"GO:0048024","regulation of mRNA splicing, via spliceo...",10,3,4.64,622,"0.9158","0.9830","0.9830" +"GO:0060271","cilium assembly",17,6,7.89,523,"0.8792","0.9831","0.9831" +"GO:0098657","import into cell",31,9,14.39,918,"0.9851","0.9832","0.9832" +"GO:0030100","regulation of endocytosis",17,5,7.89,740,"0.9536","0.9835","0.9835" +"GO:0006820","anion transport",34,16,15.78,170,"0.5375","0.9836","0.9836" +"GO:0001505","regulation of neurotransmitter levels",21,8,9.75,465,"0.8384","0.9836","0.9836" +"GO:0048518","positive regulation of biological proces...",280,117,129.99,751,"0.9570","0.9812","0.9841" +"GO:0048856","anatomical structure development",278,114,129.06,832,"0.9766","0.9850","0.9850" +"GO:0045664","regulation of neuron differentiation",23,6,10.68,942,"0.9870","0.9853","0.9853" +"GO:0051716","cellular response to stimulus",489,209,227.02,811,"0.9694","0.9344","0.9857" +"GO:0016050","vesicle organization",14,5,6.5,496,"0.8590","0.9858","0.9858" +"GO:0040011","locomotion",61,18,28.32,1065,"0.9979","0.9863","0.9863" +"GO:0006886","intracellular protein transport",98,41,45.5,475,"0.8490","0.9865","0.9865" +"GO:0046467","membrane lipid biosynthetic process",11,4,5.11,457,"0.8344","0.9872","0.9872" +"GO:0006399","tRNA metabolic process",75,30,34.82,556,"0.8948","0.9873","0.9873" +"GO:0050767","regulation of neurogenesis",29,9,13.46,814,"0.9702","0.9881","0.9881" +"GO:0051960","regulation of nervous system development",29,9,13.46,815,"0.9702","0.9881","0.9881" +"GO:0010721","negative regulation of cell development",15,4,6.96,794,"0.9669","0.9882","0.9882" +"GO:0030178","negative regulation of Wnt signaling pat...",11,3,5.11,705,"0.9463","0.9884","0.9884" +"GO:0006457","protein folding",53,16,24.6,1031,"0.9950","0.9886","0.9886" +"GO:0009058","biosynthetic process",723,331,335.65,253,"0.6750","0.9066","0.9891" +"GO:0021700","developmental maturation",15,4,6.96,795,"0.9669","0.9892","0.9892" +"GO:0044743","protein transmembrane import into intrac...",12,4,5.57,549,"0.8864","0.9894","0.9894" +"GO:0043543","protein acylation",31,10,14.39,768,"0.9635","0.9894","0.9894" +"GO:0048519","negative regulation of biological proces...",252,104,116.99,772,"0.9640","0.9897","0.9897" +"GO:0050808","synapse organization",13,2,6.04,1048,"0.9964","0.9899","0.9899" +"GO:1901576","organic substance biosynthetic process",704,324,326.83,209,"0.6162","0.9583","0.9899" +"GO:0044249","cellular biosynthetic process",691,318,320.79,208,"0.6156","0.9684","0.9901" +"GO:0008104","protein localization",174,68,80.78,898,"0.9821","0.9907","0.9907" +"GO:0010562","positive regulation of phosphorus metabo...",31,10,14.39,769,"0.9635","0.9910","0.9910" +"GO:0045937","positive regulation of phosphate metabol...",31,10,14.39,770,"0.9635","0.9910","0.9910" +"GO:0050794","regulation of cellular process",780,324,362.11,1105,"0.9996","0.9902","0.9910" +"GO:0044260","cellular macromolecule metabolic process",983,441,456.35,579,"0.9026","0.8561","0.9911" +"GO:0065007","biological regulation",873,363,405.28,1116,"0.9998","0.9904","0.9912" +"GO:0009451","RNA modification",50,21,23.21,380,"0.7808","0.9916","0.9916" +"GO:0048522","positive regulation of cellular process",244,99,113.28,834,"0.9773","0.9918","0.9918" +"GO:0008033","tRNA processing",48,21,22.28,267,"0.6978","0.9920","0.9920" +"GO:1903706","regulation of hemopoiesis",11,3,5.11,706,"0.9463","0.9921","0.9921" +"GO:0034762","regulation of transmembrane transport",10,1,4.64,1078,"0.9981","0.9922","0.9922" +"GO:0051128","regulation of cellular component organiz...",112,42,52,869,"0.9796","0.9922","0.9922" +"GO:0044782","cilium organization",19,7,8.82,487,"0.8583","0.9926","0.9926" +"GO:0009059","macromolecule biosynthetic process",563,255,261.37,328,"0.7447","0.9919","0.9927" +"GO:0071695","anatomical structure maturation",10,2,4.64,891,"0.9813","0.9928","0.9928" +"GO:0034645","cellular macromolecule biosynthetic proc...",556,253,258.12,279,"0.7056","0.9920","0.9929" +"GO:0044271","cellular nitrogen compound biosynthetic ...",510,219,236.76,773,"0.9654","0.9928","0.9930" +"GO:0010467","gene expression",640,257,297.12,1118,"0.9999","0.9933","0.9934" +"GO:0051129","negative regulation of cellular componen...",36,12,16.71,760,"0.9618","0.9939","0.9939" +"GO:0006418","tRNA aminoacylation for protein translat...",25,9,11.61,559,"0.8956","0.9955","0.9955" +"GO:0043038","amino acid activation",25,9,11.61,560,"0.8956","0.9955","0.9955" +"GO:0043039","tRNA aminoacylation",25,9,11.61,561,"0.8956","0.9955","0.9955" +"GO:0050789","regulation of biological process",827,344,383.93,1113,"0.9997","0.9953","0.9958" +"GO:0023052","signaling",342,137,158.77,1035,"0.9954","0.9959","0.9959" +"GO:0007417","central nervous system development",44,14,20.43,912,"0.9838","0.9960","0.9960" +"GO:0006839","mitochondrial transport",30,10,13.93,723,"0.9501","0.9960","0.9960" +"GO:0044267","cellular protein metabolic process",573,232,266.01,1102,"0.9995","0.9962","0.9962" +"GO:0048565","digestive tract development",10,0,4.64,1121,"1.0000","0.9966","0.9966" +"GO:0055123","digestive system development",10,0,4.64,1122,"1.0000","0.9966","0.9966" +"GO:0051179","localization",547,238,253.94,690,"0.9445","0.9966","0.9966" +"GO:1901566","organonitrogen compound biosynthetic pro...",234,98,108.63,678,"0.9375","0.9971","0.9971" +"GO:0007165","signal transduction",324,127,150.41,1067,"0.9979","0.9976","0.9976" +"GO:0090150","establishment of protein localization to...",14,4,6.5,722,"0.9494","0.9976","0.9976" +"GO:0006605","protein targeting",34,13,15.78,513,"0.8726","0.9981","0.9981" +"GO:0043603","cellular amide metabolic process",132,49,61.28,973,"0.9894","0.9984","0.9984" +"GO:0008284","positive regulation of cell proliferatio...",16,4,7.43,845,"0.9787","0.9985","0.9985" +"GO:2000026","regulation of multicellular organismal d...",63,21,29.25,957,"0.9881","0.9986","0.9986" +"GO:0006518","peptide metabolic process",117,43,54.32,955,"0.9880","0.9986","0.9986" +"GO:0043604","amide biosynthetic process",110,43,51.07,733,"0.9536","0.9987","0.9987" +"GO:0043043","peptide biosynthetic process",105,40,48.75,798,"0.9683","0.9988","0.9988" +"GO:0006412","translation",103,39,47.82,817,"0.9705","0.9988","0.9988" +"GO:0061024","membrane organization",44,14,20.43,913,"0.9838","0.9989","0.9989" +"GO:0034613","cellular protein localization",141,55,65.46,821,"0.9721","0.9989","0.9989" +"GO:0046907","intracellular transport",168,66,77.99,837,"0.9777","0.9990","0.9990" +"GO:0070727","cellular macromolecule localization",143,56,66.39,816,"0.9704","0.9991","0.9991" +"GO:0051641","cellular localization",222,86,103.06,1019,"0.9935","0.9993","0.9993" +"GO:0072657","protein localization to membrane",25,8,11.61,732,"0.9529","0.9994","0.9994" +"GO:0051649","establishment of localization in cell",179,67,83.1,1034,"0.9953","0.9995","0.9995" +"GO:0070585","protein localization to mitochondrion",21,5,9.75,987,"0.9912","0.9995","0.9995" +"GO:0072655","establishment of protein localization to...",21,5,9.75,988,"0.9912","0.9995","0.9995" +"GO:0006626","protein targeting to mitochondrion",20,5,9.28,932,"0.9865","0.9995","0.9995" +"GO:0007006","mitochondrial membrane organization",11,3,5.11,707,"0.9463","0.9997","0.9997" +"GO:0072321","chaperone-mediated protein transport",10,2,4.64,892,"0.9813","0.9997","0.9997" +"GO:0000902","cell morphogenesis",46,11,21.36,1104,"0.9996","1.0000","1.0000" +"GO:0000904","cell morphogenesis involved in different...",35,10,16.25,981,"0.9905","1.0000","1.0000" +"GO:0001558","regulation of cell growth",13,3,6.04,862,"0.9790","1.0000","1.0000" +"GO:0006897","endocytosis",28,8,13,908,"0.9836","1.0000","1.0000" +"GO:0007154","cell communication",353,140,163.88,1058,"0.9976","1.0000","1.0000" +"GO:0007268","chemical synaptic transmission",20,5,9.28,933,"0.9865","1.0000","1.0000" +"GO:0007409","axonogenesis",21,6,9.75,820,"0.9713","1.0000","1.0000" +"GO:0008150","biological_process",2531,1175,1175,1123,"1.0000","1.0000","1.0000" +"GO:0016049","cell growth",21,5,9.75,989,"0.9912","1.0000","1.0000" +"GO:0016192","vesicle-mediated transport",125,38,58.03,1119,"0.9999","1.0000","1.0000" +"GO:0022603","regulation of anatomical structure morph...",28,5,13,1106,"0.9997","1.0000","1.0000" +"GO:0030030","cell projection organization",62,19,28.78,1051,"0.9964","1.0000","1.0000" +"GO:0031175","neuron projection development",38,11,17.64,995,"0.9914","1.0000","1.0000" +"GO:0032989","cellular component morphogenesis",56,17,26,1038,"0.9955","1.0000","1.0000" +"GO:0032990","cell part morphogenesis",27,6,12.53,1060,"0.9976","1.0000","1.0000" +"GO:0040007","growth",51,13,23.68,1099,"0.9994","1.0000","1.0000" +"GO:0048588","developmental cell growth",10,1,4.64,1079,"0.9981","1.0000","1.0000" +"GO:0048589","developmental growth",33,6,15.32,1117,"0.9999","1.0000","1.0000" +"GO:0048667","cell morphogenesis involved in neuron di...",25,7,11.61,897,"0.9821","1.0000","1.0000" +"GO:0048812","neuron projection morphogenesis",26,6,12.07,1042,"0.9963","1.0000","1.0000" +"GO:0048858","cell projection morphogenesis",26,6,12.07,1043,"0.9963","1.0000","1.0000" +"GO:0061564","axon development",23,6,10.68,943,"0.9870","1.0000","1.0000" +"GO:0098916","anterograde trans-synaptic signaling",20,5,9.28,934,"0.9865","1.0000","1.0000" +"GO:0099536","synaptic signaling",20,5,9.28,935,"0.9865","1.0000","1.0000" +"GO:0099537","trans-synaptic signaling",20,5,9.28,936,"0.9865","1.0000","1.0000" +"GO:0120036","plasma membrane bounded cell projection ...",61,18,28.32,1066,"0.9979","1.0000","1.0000" +"GO:0120039","plasma membrane bounded cell projection ...",26,6,12.07,1044,"0.9963","1.0000","1.0000" diff --git a/GO_enrichment_output/contrast_emerging_young_downregulated.png b/GO_enrichment_output/contrast_emerging_young_downregulated.png index 4cb54b4..9f21818 100644 Binary files a/GO_enrichment_output/contrast_emerging_young_downregulated.png and b/GO_enrichment_output/contrast_emerging_young_downregulated.png differ diff --git a/GO_enrichment_output/contrast_emerging_young_upregulated.csv b/GO_enrichment_output/contrast_emerging_young_upregulated.csv index 9661fca..f69346a 100644 --- a/GO_enrichment_output/contrast_emerging_young_upregulated.csv +++ b/GO_enrichment_output/contrast_emerging_young_upregulated.csv @@ -4,3 +4,3041 @@ "GO:0001736","establishment of planar polarity",14,12,6.57,42,"0.00328","0.00039","0.00039" "GO:0007156","homophilic cell adhesion via plasma memb...",14,10,6.57,191,"0.05728","0.00136","0.00136" "GO:0021543","pallium development",10,9,4.69,50,"0.00630","0.00143","0.00143" +"GO:0002121","inter-male aggressive behavior",6,6,2.82,65,"0.01062","0.00216","0.00216" +"GO:0000904","cell morphogenesis involved in different...",57,37,26.75,45,"0.00437","0.00258","0.00258" +"GO:0007155","cell adhesion",102,70,47.88,2,"5.3e-06","6.4e-06","0.00294" +"GO:1901016","regulation of potassium ion transmembran...",3,3,1.41,295,"0.10326","0.00352","0.00352" +"GO:0006099","tricarboxylic acid cycle",15,13,7.04,34,"0.00175","0.00372","0.00372" +"GO:0022603","regulation of anatomical structure morph...",49,32,23,53,"0.00688","0.00401","0.00401" +"GO:0055114","oxidation-reduction process",150,94,70.4,7,"4.8e-05","0.00027","0.00440" +"GO:0007163","establishment or maintenance of cell pol...",17,14,7.98,41,"0.00298","0.00521","0.00521" +"GO:0070527","platelet aggregation",8,7,3.75,107,"0.02349","0.00523","0.00523" +"GO:0016319","mushroom body development",6,6,2.82,66,"0.01062","0.00563","0.00563" +"GO:0098609","cell-cell adhesion",62,43,29.1,16,"0.00026","2.5e-05","0.00632" +"GO:0030001","metal ion transport",77,50,36.14,22,"0.00095","0.00252","0.00695" +"GO:0044057","regulation of system process",35,23,16.43,84,"0.01896","0.00754","0.00754" +"GO:0071257","cellular response to electrical stimulus",6,6,2.82,67,"0.01062","0.00764","0.00764" +"GO:0007291","sperm individualization",5,5,2.35,101,"0.02268","0.00834","0.00834" +"GO:0035902","response to immobilization stress",5,5,2.35,102,"0.02268","0.00834","0.00834" +"GO:0098974","postsynaptic actin cytoskeleton organiza...",5,5,2.35,103,"0.02268","0.00834","0.00834" +"GO:0055085","transmembrane transport",263,144,123.44,46,"0.00446","0.00120","0.00858" +"GO:0099173","postsynapse organization",14,12,6.57,43,"0.00328","0.00066","0.00897" +"GO:0007016","cytoskeletal anchoring at plasma membran...",3,3,1.41,296,"0.10326","0.00972","0.00972" +"GO:0046496","nicotinamide nucleotide metabolic proces...",15,10,7.04,289,"0.10082","0.00984","0.00984" +"GO:0019359","nicotinamide nucleotide biosynthetic pro...",13,9,6.1,276,"0.09048","0.01063","0.01063" +"GO:0019363","pyridine nucleotide biosynthetic process",13,9,6.1,277,"0.09048","0.01063","0.01063" +"GO:0048667","cell morphogenesis involved in neuron di...",47,30,22.06,78,"0.01397","0.01077","0.01077" +"GO:0072359","circulatory system development",64,37,30.04,176,"0.05069","0.01132","0.01132" +"GO:0034220","ion transmembrane transport",109,70,51.16,12,"0.00016","9.9e-05","0.01160" +"GO:0050773","regulation of dendrite development",14,10,6.57,192,"0.05728","0.01286","0.01286" +"GO:0050890","cognition",21,15,9.86,87,"0.02017","0.01350","0.01350" +"GO:0008544","epidermis development",15,12,7.04,60,"0.00940","0.01413","0.01413" +"GO:0005975","carbohydrate metabolic process",69,42,32.39,75,"0.01289","0.01423","0.01423" +"GO:0002026","regulation of the force of heart contrac...",7,6,3.29,156,"0.04452","0.01449","0.01449" +"GO:0098742","cell-cell adhesion via plasma-membrane a...",26,19,12.2,49,"0.00607","0.00018","0.01569" +"GO:0006465","signal peptide processing",4,4,1.88,167,"0.04840","0.01571","0.01571" +"GO:0045682","regulation of epidermis development",3,3,1.41,297,"0.10326","0.01726","0.01726" +"GO:0031589","cell-substrate adhesion",10,8,4.69,137,"0.03595","0.01745","0.01745" +"GO:0006825","copper ion transport",3,3,1.41,298,"0.10326","0.01746","0.01746" +"GO:0035434","copper ion transmembrane transport",3,3,1.41,299,"0.10326","0.01746","0.01746" +"GO:1905330","regulation of morphogenesis of an epithe...",11,9,5.16,89,"0.02018","0.01754","0.01754" +"GO:0050804","modulation of chemical synaptic transmis...",23,16,10.8,111,"0.02369","0.01888","0.01888" +"GO:0099177","regulation of trans-synaptic signaling",23,16,10.8,112,"0.02369","0.01888","0.01888" +"GO:0009612","response to mechanical stimulus",21,15,9.86,88,"0.02017","0.01891","0.01891" +"GO:0009166","nucleotide catabolic process",16,10,7.51,473,"0.15871","0.01950","0.01950" +"GO:0021987","cerebral cortex development",7,6,3.29,157,"0.04452","0.01985","0.01985" +"GO:0090175","regulation of establishment of planar po...",7,6,3.29,158,"0.04452","0.01985","0.01985" +"GO:0032990","cell part morphogenesis",59,36,27.69,85,"0.01963","0.01995","0.01995" +"GO:0048699","generation of neurons",125,70,58.67,106,"0.02336","0.02014","0.02014" +"GO:0055082","cellular chemical homeostasis",30,19,14.08,178,"0.05183","0.02041","0.02041" +"GO:2000026","regulation of multicellular organismal d...",102,59,47.88,81,"0.01576","0.02074","0.02074" +"GO:0010769","regulation of cell morphogenesis involve...",19,12,8.92,383,"0.11675","0.02075","0.02075" +"GO:0043062","extracellular structure organization",20,14,9.39,124,"0.03163","0.02127","0.02127" +"GO:0048812","neuron projection morphogenesis",55,33,25.82,128,"0.03393","0.02165","0.02165" +"GO:0048858","cell projection morphogenesis",55,33,25.82,129,"0.03393","0.02165","0.02165" +"GO:0120039","plasma membrane bounded cell projection ...",55,33,25.82,130,"0.03393","0.02165","0.02165" +"GO:0010257","NADH dehydrogenase complex assembly",11,8,5.16,236,"0.07802","0.02218","0.02218" +"GO:0032981","mitochondrial respiratory chain complex ...",11,8,5.16,237,"0.07802","0.02218","0.02218" +"GO:0072525","pyridine-containing compound biosyntheti...",14,10,6.57,193,"0.05728","0.02230","0.02230" +"GO:0007271","synaptic transmission, cholinergic",3,3,1.41,300,"0.10326","0.02237","0.02237" +"GO:0032222","regulation of synaptic transmission, cho...",3,3,1.41,301,"0.10326","0.02237","0.02237" +"GO:0010721","negative regulation of cell development",15,8,7.04,829,"0.40432","0.02246","0.02246" +"GO:0048738","cardiac muscle tissue development",18,11,8.45,476,"0.16550","0.02326","0.02326" +"GO:1904029","regulation of cyclin-dependent protein k...",9,8,4.22,71,"0.01223","0.02335","0.02335" +"GO:1903522","regulation of blood circulation",17,12,7.98,149,"0.04243","0.02337","0.02337" +"GO:0021762","substantia nigra development",6,5,2.82,247,"0.08297","0.02367","0.02367" +"GO:0043044","ATP-dependent chromatin remodeling",6,5,2.82,248,"0.08297","0.02367","0.02367" +"GO:0048857","neural nucleus development",6,5,2.82,249,"0.08297","0.02367","0.02367" +"GO:1904030","negative regulation of cyclin-dependent ...",6,5,2.82,250,"0.08297","0.02367","0.02367" +"GO:0022604","regulation of cell morphogenesis",23,14,10.8,416,"0.12820","0.02377","0.02377" +"GO:0007507","heart development",50,28,23.47,397,"0.12434","0.02394","0.02394" +"GO:0008016","regulation of heart contraction",15,11,7.04,132,"0.03551","0.02435","0.02435" +"GO:0050905","neuromuscular process",5,5,2.35,104,"0.02268","0.02510","0.02510" +"GO:0030182","neuron differentiation",111,63,52.1,99,"0.02162","0.02554","0.02554" +"GO:0001941","postsynaptic membrane organization",7,6,3.29,159,"0.04452","0.02602","0.02602" +"GO:0098693","regulation of synaptic vesicle cycle",7,6,3.29,160,"0.04452","0.02602","0.02602" +"GO:0065008","regulation of biological quality",227,129,106.55,24,"0.00112","0.00452","0.02617" +"GO:0006811","ion transport",200,122,93.87,5,"2.2e-05","3.0e-05","0.02737" +"GO:0007409","axonogenesis",39,25,18.31,100,"0.02243","0.02786","0.02786" +"GO:0098661","inorganic anion transmembrane transport",3,3,1.41,302,"0.10326","0.02854","0.02854" +"GO:2000027","regulation of animal organ morphogenesis",15,11,7.04,133,"0.03551","0.02876","0.02876" +"GO:0051588","regulation of neurotransmitter transport",3,3,1.41,303,"0.10326","0.02896","0.02896" +"GO:0009913","epidermal cell differentiation",8,7,3.75,108,"0.02349","0.02935","0.02935" +"GO:0051668","localization within membrane",13,8,6.1,560,"0.21799","0.02991","0.02991" +"GO:0043583","ear development",8,6,3.75,366,"0.10759","0.03054","0.03054" +"GO:0048839","inner ear development",8,6,3.75,367,"0.10759","0.03054","0.03054" +"GO:0010831","positive regulation of myotube different...",7,6,3.29,161,"0.04452","0.03172","0.03172" +"GO:0022008","neurogenesis",128,70,60.08,154,"0.04355","0.03188","0.03188" +"GO:0034754","cellular hormone metabolic process",4,4,1.88,168,"0.04840","0.03196","0.03196" +"GO:0045664","regulation of neuron differentiation",44,25,20.65,391,"0.12056","0.03253","0.03253" +"GO:0016358","dendrite development",19,11,8.92,587,"0.23252","0.03299","0.03299" +"GO:0060996","dendritic spine development",10,7,4.69,400,"0.12574","0.03431","0.03431" +"GO:0060998","regulation of dendritic spine developmen...",10,7,4.69,401,"0.12574","0.03431","0.03431" +"GO:0032352","positive regulation of hormone metabolic...",3,3,1.41,304,"0.10326","0.03451","0.03451" +"GO:1901292","nucleoside phosphate catabolic process",17,10,7.98,577,"0.22904","0.03504","0.03504" +"GO:0036445","neuronal stem cell division",3,3,1.41,305,"0.10326","0.03537","0.03537" +"GO:0045580","regulation of T cell differentiation",3,3,1.41,306,"0.10326","0.03537","0.03537" +"GO:0048103","somatic stem cell division",3,3,1.41,307,"0.10326","0.03537","0.03537" +"GO:0055057","neuroblast division",3,3,1.41,308,"0.10326","0.03537","0.03537" +"GO:0055059","asymmetric neuroblast division",3,3,1.41,309,"0.10326","0.03537","0.03537" +"GO:0007623","circadian rhythm",19,12,8.92,384,"0.11675","0.03575","0.03575" +"GO:0003300","cardiac muscle hypertrophy",6,5,2.82,251,"0.08297","0.03614","0.03614" +"GO:0014896","muscle hypertrophy",6,5,2.82,252,"0.08297","0.03614","0.03614" +"GO:0014897","striated muscle hypertrophy",6,5,2.82,253,"0.08297","0.03614","0.03614" +"GO:0051014","actin filament severing",6,5,2.82,254,"0.08297","0.03614","0.03614" +"GO:0055013","cardiac muscle cell development",6,5,2.82,255,"0.08297","0.03614","0.03614" +"GO:1903918","regulation of actin filament severing",6,5,2.82,256,"0.08297","0.03614","0.03614" +"GO:0001763","morphogenesis of a branching structure",10,7,4.69,402,"0.12574","0.03668","0.03668" +"GO:0030010","establishment of cell polarity",11,9,5.16,90,"0.02018","0.03684","0.03684" +"GO:0006851","mitochondrial calcium ion transmembrane ...",3,3,1.41,310,"0.10326","0.03702","0.03702" +"GO:0036444","calcium import into the mitochondrion",3,3,1.41,311,"0.10326","0.03702","0.03702" +"GO:0051560","mitochondrial calcium ion homeostasis",3,3,1.41,312,"0.10326","0.03702","0.03702" +"GO:0050768","negative regulation of neurogenesis",13,7,6.1,837,"0.41062","0.03735","0.03735" +"GO:0051216","cartilage development",11,7,5.16,548,"0.20926","0.03748","0.03748" +"GO:0061448","connective tissue development",11,7,5.16,549,"0.20926","0.03748","0.03748" +"GO:0015672","monovalent inorganic cation transport",60,43,28.16,8,"7.6e-05","0.00030","0.03769" +"GO:0003013","circulatory system process",20,13,9.39,243,"0.08059","0.03852","0.03852" +"GO:0008015","blood circulation",20,13,9.39,244,"0.08059","0.03852","0.03852" +"GO:0007611","learning or memory",17,12,7.98,150,"0.04243","0.03919","0.03919" +"GO:0034404","nucleobase-containing small molecule bio...",22,14,10.33,271,"0.08656","0.03922","0.03922" +"GO:0019933","cAMP-mediated signaling",11,8,5.16,238,"0.07802","0.03927","0.03927" +"GO:0019935","cyclic-nucleotide-mediated signaling",11,8,5.16,239,"0.07802","0.03927","0.03927" +"GO:0072089","stem cell proliferation",9,7,4.22,202,"0.06289","0.03965","0.03965" +"GO:0043949","regulation of cAMP-mediated signaling",8,6,3.75,368,"0.10759","0.04083","0.04083" +"GO:0042445","hormone metabolic process",13,9,6.1,278,"0.09048","0.04103","0.04103" +"GO:0018242","protein O-linked glycosylation via serin...",4,3,1.88,608,"0.26785","0.04199","0.04199" +"GO:0018243","protein O-linked glycosylation via threo...",4,3,1.88,609,"0.26785","0.04199","0.04199" +"GO:0035239","tube morphogenesis",48,29,22.53,146,"0.04064","0.04270","0.04270" +"GO:0061564","axon development",48,29,22.53,147,"0.04064","0.04356","0.04356" +"GO:0016202","regulation of striated muscle tissue dev...",9,7,4.22,203,"0.06289","0.04361","0.04361" +"GO:0048634","regulation of muscle organ development",9,7,4.22,204,"0.06289","0.04361","0.04361" +"GO:0050863","regulation of T cell activation",9,7,4.22,205,"0.06289","0.04361","0.04361" +"GO:1901861","regulation of muscle tissue development",9,7,4.22,206,"0.06289","0.04361","0.04361" +"GO:0099054","presynapse assembly",6,5,2.82,257,"0.08297","0.04388","0.04388" +"GO:0007405","neuroblast proliferation",6,5,2.82,258,"0.08297","0.04430","0.04430" +"GO:0022404","molting cycle process",6,5,2.82,259,"0.08297","0.04430","0.04430" +"GO:0022405","hair cycle process",6,5,2.82,260,"0.08297","0.04430","0.04430" +"GO:0042633","hair cycle",6,5,2.82,261,"0.08297","0.04430","0.04430" +"GO:0003015","heart process",16,11,7.51,218,"0.06609","0.04601","0.04601" +"GO:0060047","heart contraction",16,11,7.51,219,"0.06609","0.04601","0.04601" +"GO:0035295","tube development",55,32,25.82,199,"0.06030","0.04661","0.04661" +"GO:0003206","cardiac chamber morphogenesis",6,5,2.82,262,"0.08297","0.04677","0.04677" +"GO:0045665","negative regulation of neuron differenti...",12,6,5.63,1218,"0.52795","0.04815","0.04815" +"GO:0042773","ATP synthesis coupled electron transport",12,8,5.63,425,"0.13952","0.05018","0.05018" +"GO:0030198","extracellular matrix organization",18,12,8.45,231,"0.07381","0.05030","0.05030" +"GO:0045445","myoblast differentiation",11,8,5.16,240,"0.07802","0.05189","0.05189" +"GO:0045661","regulation of myoblast differentiation",11,8,5.16,241,"0.07802","0.05189","0.05189" +"GO:0099172","presynapse organization",8,6,3.75,369,"0.10759","0.05220","0.05220" +"GO:0050885","neuromuscular process controlling balanc...",4,4,1.88,169,"0.04840","0.05251","0.05251" +"GO:0060026","convergent extension",3,3,1.41,313,"0.10326","0.05307","0.05307" +"GO:0055080","cation homeostasis",30,19,14.08,179,"0.05183","0.05315","0.05315" +"GO:0098771","inorganic ion homeostasis",30,19,14.08,180,"0.05183","0.05315","0.05315" +"GO:0060401","cytosolic calcium ion transport",8,6,3.75,370,"0.10759","0.05320","0.05320" +"GO:0090066","regulation of anatomical structure size",45,28,21.12,120,"0.02720","0.05417","0.05417" +"GO:0048514","blood vessel morphogenesis",18,12,8.45,232,"0.07381","0.05554","0.05554" +"GO:0002009","morphogenesis of an epithelium",52,34,24.41,48,"0.00524","0.00038","0.05608" +"GO:0006165","nucleoside diphosphate phosphorylation",11,7,5.16,550,"0.20926","0.05614","0.05614" +"GO:0046939","nucleotide phosphorylation",11,7,5.16,551,"0.20926","0.05614","0.05614" +"GO:1903530","regulation of secretion by cell",23,16,10.8,113,"0.02369","0.05615","0.05615" +"GO:0048666","neuron development",94,51,44.12,273,"0.08966","0.05642","0.05642" +"GO:0007160","cell-matrix adhesion",6,5,2.82,263,"0.08297","0.05652","0.05652" +"GO:0071709","membrane assembly",9,7,4.22,207,"0.06289","0.05661","0.05661" +"GO:1901136","carbohydrate derivative catabolic proces...",5,4,2.35,443,"0.15130","0.05665","0.05665" +"GO:0035148","tube formation",17,12,7.98,151,"0.04243","0.05704","0.05704" +"GO:0000422","autophagy of mitochondrion",7,5,3.29,481,"0.17910","0.05744","0.05744" +"GO:0061726","mitochondrion disassembly",7,5,3.29,482,"0.17910","0.05744","0.05744" +"GO:1903008","organelle disassembly",7,5,3.29,483,"0.17910","0.05744","0.05744" +"GO:0072358","cardiovascular system development",25,16,11.73,213,"0.06455","0.05744","0.05744" +"GO:0018209","peptidyl-serine modification",7,4,3.29,867,"0.43316","0.05793","0.05793" +"GO:0050806","positive regulation of synaptic transmis...",12,9,5.63,164,"0.04726","0.05846","0.05846" +"GO:0016052","carbohydrate catabolic process",10,7,4.69,403,"0.12574","0.05888","0.05888" +"GO:0048863","stem cell differentiation",12,9,5.63,165,"0.04726","0.05922","0.05922" +"GO:0001944","vasculature development",23,15,10.8,196,"0.05979","0.05949","0.05949" +"GO:0048562","embryonic organ morphogenesis",17,9,7.98,825,"0.39842","0.05951","0.05951" +"GO:0019674","NAD metabolic process",4,3,1.88,610,"0.26785","0.05981","0.05981" +"GO:0051606","detection of stimulus",19,13,8.92,174,"0.04877","0.06008","0.06008" +"GO:0048705","skeletal system morphogenesis",12,7,5.63,774,"0.30690","0.06064","0.06064" +"GO:0031175","neuron projection development",77,42,36.14,365,"0.10709","0.06105","0.06105" +"GO:0001568","blood vessel development",21,14,9.86,186,"0.05454","0.06110","0.06110" +"GO:0009308","amine metabolic process",8,7,3.75,109,"0.02349","0.06134","0.06134" +"GO:0044106","cellular amine metabolic process",8,7,3.75,110,"0.02349","0.06134","0.06134" +"GO:0006873","cellular ion homeostasis",26,16,12.2,283,"0.09645","0.06193","0.06193" +"GO:0030003","cellular cation homeostasis",26,16,12.2,284,"0.09645","0.06193","0.06193" +"GO:0022409","positive regulation of cell-cell adhesio...",4,4,1.88,170,"0.04840","0.06196","0.06196" +"GO:0097090","presynaptic membrane organization",4,4,1.88,171,"0.04840","0.06196","0.06196" +"GO:0006096","glycolytic process",9,6,4.22,524,"0.19700","0.06289","0.06289" +"GO:0006757","ATP generation from ADP",9,6,4.22,525,"0.19700","0.06289","0.06289" +"GO:0009135","purine nucleoside diphosphate metabolic ...",9,6,4.22,526,"0.19700","0.06289","0.06289" +"GO:0009179","purine ribonucleoside diphosphate metabo...",9,6,4.22,527,"0.19700","0.06289","0.06289" +"GO:0009185","ribonucleoside diphosphate metabolic pro...",9,6,4.22,528,"0.19700","0.06289","0.06289" +"GO:0042866","pyruvate biosynthetic process",9,6,4.22,529,"0.19700","0.06289","0.06289" +"GO:0046031","ADP metabolic process",9,6,4.22,530,"0.19700","0.06289","0.06289" +"GO:0051047","positive regulation of secretion",18,13,8.45,118,"0.02674","0.06363","0.06363" +"GO:1903532","positive regulation of secretion by cell",18,13,8.45,119,"0.02674","0.06363","0.06363" +"GO:0048731","system development",286,157,134.24,39,"0.00258","0.00684","0.06403" +"GO:0042133","neurotransmitter metabolic process",10,7,4.69,404,"0.12574","0.06424","0.06424" +"GO:0015698","inorganic anion transport",10,7,4.69,405,"0.12574","0.06454","0.06454" +"GO:0008291","acetylcholine metabolic process",5,4,2.35,444,"0.15130","0.06468","0.06468" +"GO:1900619","acetate ester metabolic process",5,4,2.35,445,"0.15130","0.06468","0.06468" +"GO:0030334","regulation of cell migration",27,18,12.67,123,"0.03034","0.06527","0.06527" +"GO:0042063","gliogenesis",12,8,5.63,426,"0.13952","0.06549","0.06549" +"GO:0006875","cellular metal ion homeostasis",24,15,11.26,280,"0.09181","0.06649","0.06649" +"GO:0061311","cell surface receptor signaling pathway ...",3,3,1.41,314,"0.10326","0.06676","0.06676" +"GO:0000041","transition metal ion transport",8,6,3.75,371,"0.10759","0.06816","0.06816" +"GO:0050714","positive regulation of protein secretion",9,7,4.22,208,"0.06289","0.06948","0.06948" +"GO:0061351","neural precursor cell proliferation",8,6,3.75,372,"0.10759","0.07012","0.07012" +"GO:0033108","mitochondrial respiratory chain complex ...",12,8,5.63,427,"0.13952","0.07029","0.07029" +"GO:0061138","morphogenesis of a branching epithelium",8,6,3.75,373,"0.10759","0.07120","0.07120" +"GO:0048814","regulation of dendrite morphogenesis",5,4,2.35,446,"0.15130","0.07161","0.07161" +"GO:0098660","inorganic ion transmembrane transport",60,42,28.16,13,"0.00022","0.00024","0.07210" +"GO:0030534","adult behavior",9,5,4.22,855,"0.42487","0.07226","0.07226" +"GO:0044089","positive regulation of cellular componen...",49,29,23,190,"0.05595","0.07241","0.07241" +"GO:0034446","substrate adhesion-dependent cell spread...",4,3,1.88,611,"0.26785","0.07264","0.07264" +"GO:0006826","iron ion transport",3,3,1.41,315,"0.10326","0.07358","0.07358" +"GO:0043113","receptor clustering",5,4,2.35,447,"0.15130","0.07396","0.07396" +"GO:0001942","hair follicle development",5,4,2.35,448,"0.15130","0.07455","0.07455" +"GO:0014013","regulation of gliogenesis",5,4,2.35,449,"0.15130","0.07455","0.07455" +"GO:0098773","skin epidermis development",5,4,2.35,450,"0.15130","0.07455","0.07455" +"GO:0009581","detection of external stimulus",15,10,7.04,290,"0.10082","0.07621","0.07621" +"GO:0009582","detection of abiotic stimulus",15,10,7.04,291,"0.10082","0.07621","0.07621" +"GO:0008284","positive regulation of cell proliferatio...",27,17,12.67,225,"0.06886","0.07622","0.07622" +"GO:1901888","regulation of cell junction assembly",4,4,1.88,172,"0.04840","0.07788","0.07788" +"GO:0051094","positive regulation of developmental pro...",67,39,31.45,144,"0.04015","0.07873","0.07873" +"GO:0032940","secretion by cell",55,33,25.82,131,"0.03393","0.08000","0.08000" +"GO:0006081","cellular aldehyde metabolic process",5,4,2.35,451,"0.15130","0.08175","0.08175" +"GO:0048762","mesenchymal cell differentiation",8,6,3.75,374,"0.10759","0.08180","0.08180" +"GO:0055006","cardiac cell development",8,6,3.75,375,"0.10759","0.08180","0.08180" +"GO:0006739","NADP metabolic process",4,3,1.88,612,"0.26785","0.08256","0.08256" +"GO:0050708","regulation of protein secretion",15,11,7.04,134,"0.03551","0.08363","0.08363" +"GO:0045944","positive regulation of transcription by ...",40,25,18.77,127,"0.03366","0.08420","0.08420" +"GO:0043951","negative regulation of cAMP-mediated sig...",5,4,2.35,452,"0.15130","0.08468","0.08468" +"GO:0032507","maintenance of protein location in cell",11,9,5.16,91,"0.02018","0.00288","0.08504" +"GO:0045185","maintenance of protein location",11,9,5.16,92,"0.02018","0.00288","0.08504" +"GO:0051651","maintenance of location in cell",11,9,5.16,93,"0.02018","0.00288","0.08504" +"GO:0003012","muscle system process",32,17,15.02,755,"0.29830","0.08555","0.08555" +"GO:0001895","retina homeostasis",8,5,3.75,742,"0.29827","0.08575","0.08575" +"GO:0030901","midbrain development",8,6,3.75,376,"0.10759","0.08575","0.08575" +"GO:0032091","negative regulation of protein binding",8,6,3.75,377,"0.10759","0.08575","0.08575" +"GO:0035151","regulation of tube size, open tracheal s...",4,3,1.88,613,"0.26785","0.08580","0.08580" +"GO:0003208","cardiac ventricle morphogenesis",4,3,1.88,614,"0.26785","0.08610","0.08610" +"GO:0000768","syncytium formation by plasma membrane f...",3,3,1.41,316,"0.10326","0.08628","0.08628" +"GO:0006949","syncytium formation",3,3,1.41,317,"0.10326","0.08628","0.08628" +"GO:0007520","myoblast fusion",3,3,1.41,318,"0.10326","0.08628","0.08628" +"GO:0044860","protein localization to plasma membrane ...",3,3,1.41,319,"0.10326","0.08628","0.08628" +"GO:0048643","positive regulation of skeletal muscle t...",3,3,1.41,320,"0.10326","0.08628","0.08628" +"GO:0050870","positive regulation of T cell activation",3,3,1.41,321,"0.10326","0.08628","0.08628" +"GO:1901890","positive regulation of cell junction ass...",3,3,1.41,322,"0.10326","0.08628","0.08628" +"GO:1903039","positive regulation of leukocyte cell-ce...",3,3,1.41,323,"0.10326","0.08628","0.08628" +"GO:0050767","regulation of neurogenesis",50,28,23.47,398,"0.12434","0.08713","0.08713" +"GO:0001501","skeletal system development",22,12,10.33,772,"0.30660","0.08758","0.08758" +"GO:0035994","response to muscle stretch",5,4,2.35,453,"0.15130","0.08838","0.08838" +"GO:0035995","detection of muscle stretch",5,4,2.35,454,"0.15130","0.08838","0.08838" +"GO:0045663","positive regulation of myoblast differen...",5,4,2.35,455,"0.15130","0.08838","0.08838" +"GO:0055003","cardiac myofibril assembly",5,4,2.35,456,"0.15130","0.08838","0.08838" +"GO:1903919","negative regulation of actin filament se...",5,4,2.35,457,"0.15130","0.08838","0.08838" +"GO:1903920","positive regulation of actin filament se...",5,4,2.35,458,"0.15130","0.08838","0.08838" +"GO:0001578","microtubule bundle formation",4,3,1.88,615,"0.26785","0.08852","0.08852" +"GO:0010830","regulation of myotube differentiation",8,6,3.75,378,"0.10759","0.08853","0.08853" +"GO:0010975","regulation of neuron projection developm...",30,16,14.08,757,"0.30019","0.08861","0.08861" +"GO:0061355","Wnt protein secretion",4,4,1.88,173,"0.04840","0.08868","0.08868" +"GO:0051705","multi-organism behavior",13,12,6.1,20,"0.00082","0.00243","0.08869" +"GO:0050878","regulation of body fluid levels",15,13,7.04,35,"0.00175","0.00468","0.09070" +"GO:0060284","regulation of cell development",56,31,26.28,414,"0.12692","0.09153","0.09153" +"GO:0048729","tissue morphogenesis",58,36,27.22,77,"0.01374","0.00100","0.09172" +"GO:0055065","metal ion homeostasis",27,17,12.67,226,"0.06886","0.09273","0.09273" +"GO:0032535","regulation of cellular component size",37,23,17.37,155,"0.04417","0.09315","0.09315" +"GO:0001503","ossification",11,7,5.16,552,"0.20926","0.09388","0.09388" +"GO:0007186","G protein-coupled receptor signaling pat...",81,39,38.02,1166,"0.45581","0.09507","0.09507" +"GO:0098655","cation transmembrane transport",71,47,33.32,19,"0.00071","0.00060","0.09530" +"GO:0030838","positive regulation of actin filament po...",17,12,7.98,152,"0.04243","0.09533","0.09533" +"GO:0035051","cardiocyte differentiation",12,8,5.63,428,"0.13952","0.09620","0.09620" +"GO:2001259","positive regulation of cation channel ac...",6,3,2.82,1289,"0.59733","0.09631","0.09631" +"GO:0007612","learning",13,9,6.1,279,"0.09048","0.09706","0.09706" +"GO:0000086","G2/M transition of mitotic cell cycle",6,3,2.82,1290,"0.59733","0.09752","0.09752" +"GO:0044839","cell cycle G2/M phase transition",6,3,2.82,1291,"0.59733","0.09752","0.09752" +"GO:0018991","oviposition",7,6,3.29,162,"0.04452","0.09771","0.09771" +"GO:0055007","cardiac muscle cell differentiation",9,6,4.22,531,"0.19700","0.09782","0.09782" +"GO:0010171","body morphogenesis",5,4,2.35,459,"0.15130","0.09794","0.09794" +"GO:0001974","blood vessel remodeling",7,5,3.29,484,"0.17910","0.09846","0.09846" +"GO:0050982","detection of mechanical stimulus",7,5,3.29,485,"0.17910","0.09846","0.09846" +"GO:0007423","sensory organ development",71,40,33.32,224,"0.06830","0.09854","0.09854" +"GO:0051602","response to electrical stimulus",9,9,4.22,23,"0.00109","0.00300","0.09900" +"GO:0048754","branching morphogenesis of an epithelial...",7,5,3.29,486,"0.17910","0.09916","0.09916" +"GO:0061515","myeloid cell development",7,5,3.29,487,"0.17910","0.09935","0.09935" +"GO:0030036","actin cytoskeleton organization",82,47,38.49,136,"0.03584","0.03418","0.09995" +"GO:0051153","regulation of striated muscle cell diffe...",10,7,4.69,406,"0.12574","0.09999","0.09999" +"GO:0009312","oligosaccharide biosynthetic process",5,4,2.35,460,"0.15130","0.10034","0.10034" +"GO:0050801","ion homeostasis",34,21,15.96,195,"0.05802","0.10048","0.10048" +"GO:0009132","nucleoside diphosphate metabolic process",12,7,5.63,775,"0.30690","0.10152","0.10152" +"GO:0007610","behavior",61,37,28.63,97,"0.02049","0.04925","0.10390" +"GO:0042775","mitochondrial ATP synthesis coupled elec...",10,7,4.69,407,"0.12574","0.10422","0.10422" +"GO:0051960","regulation of nervous system development",56,30,26.28,522,"0.19188","0.10466","0.10466" +"GO:0051046","regulation of secretion",26,17,12.2,163,"0.04461","0.10468","0.10468" +"GO:0051249","regulation of lymphocyte activation",12,8,5.63,429,"0.13952","0.10563","0.10563" +"GO:0000281","mitotic cytokinesis",11,7,5.16,553,"0.20926","0.10609","0.10609" +"GO:1901615","organic hydroxy compound metabolic proce...",25,16,11.73,214,"0.06455","0.10717","0.10717" +"GO:0021915","neural tube development",14,9,6.57,442,"0.15023","0.10875","0.10875" +"GO:0051093","negative regulation of developmental pro...",48,27,22.53,394,"0.12323","0.10929","0.10929" +"GO:0010001","glial cell differentiation",11,7,5.16,554,"0.20926","0.10966","0.10966" +"GO:0032228","regulation of synaptic transmission, GAB...",3,3,1.41,324,"0.10326","0.10979","0.10979" +"GO:0035640","exploration behavior",3,3,1.41,325,"0.10326","0.10979","0.10979" +"GO:0051932","synaptic transmission, GABAergic",3,3,1.41,326,"0.10326","0.10979","0.10979" +"GO:0060078","regulation of postsynaptic membrane pote...",3,3,1.41,327,"0.10326","0.10979","0.10979" +"GO:0060079","excitatory postsynaptic potential",3,3,1.41,328,"0.10326","0.10979","0.10979" +"GO:0097105","presynaptic membrane assembly",3,3,1.41,329,"0.10326","0.10979","0.10979" +"GO:0098815","modulation of excitatory postsynaptic po...",3,3,1.41,330,"0.10326","0.10979","0.10979" +"GO:0099565","chemical synaptic transmission, postsyna...",3,3,1.41,331,"0.10326","0.10979","0.10979" +"GO:0070588","calcium ion transmembrane transport",18,12,8.45,233,"0.07381","0.11067","0.11067" +"GO:0035150","regulation of tube size",9,6,4.22,532,"0.19700","0.11361","0.11361" +"GO:0048878","chemical homeostasis",48,27,22.53,395,"0.12323","0.11438","0.11438" +"GO:0051125","regulation of actin nucleation",7,5,3.29,488,"0.17910","0.11474","0.11474" +"GO:0051127","positive regulation of actin nucleation",7,5,3.29,489,"0.17910","0.11474","0.11474" +"GO:0007015","actin filament organization",41,24,19.24,274,"0.08975","0.11488","0.11488" +"GO:2000241","regulation of reproductive process",16,11,7.51,220,"0.06609","0.11524","0.11524" +"GO:0014706","striated muscle tissue development",35,18,16.43,801,"0.35647","0.11533","0.11533" +"GO:0072348","sulfur compound transport",6,5,2.82,264,"0.08297","0.11543","0.11543" +"GO:0006699","bile acid biosynthetic process",3,3,1.41,332,"0.10326","0.11588","0.11588" +"GO:0008206","bile acid metabolic process",3,3,1.41,333,"0.10326","0.11588","0.11588" +"GO:0046903","secretion",64,37,30.04,177,"0.05069","0.11631","0.11631" +"GO:0051961","negative regulation of nervous system de...",18,8,8.45,1484,"0.67142","0.11639","0.11639" +"GO:0060537","muscle tissue development",38,20,17.84,738,"0.29236","0.11650","0.11650" +"GO:0048168","regulation of neuronal synaptic plastici...",4,3,1.88,616,"0.26785","0.11661","0.11661" +"GO:0009311","oligosaccharide metabolic process",6,5,2.82,265,"0.08297","0.11823","0.11823" +"GO:0061041","regulation of wound healing",3,3,1.41,334,"0.10326","0.11875","0.11875" +"GO:0045785","positive regulation of cell adhesion",9,7,4.22,209,"0.06289","0.12061","0.12061" +"GO:0046434","organophosphate catabolic process",25,15,11.73,421,"0.13270","0.12061","0.12061" +"GO:0043648","dicarboxylic acid metabolic process",6,5,2.82,266,"0.08297","0.12092","0.12092" +"GO:0055076","transition metal ion homeostasis",5,4,2.35,461,"0.15130","0.12104","0.12104" +"GO:0060997","dendritic spine morphogenesis",4,3,1.88,617,"0.26785","0.12144","0.12144" +"GO:0061001","regulation of dendritic spine morphogene...",4,3,1.88,618,"0.26785","0.12144","0.12144" +"GO:0097061","dendritic spine organization",4,3,1.88,619,"0.26785","0.12144","0.12144" +"GO:0099175","regulation of postsynapse organization",4,3,1.88,620,"0.26785","0.12144","0.12144" +"GO:0106027","neuron projection organization",4,3,1.88,621,"0.26785","0.12144","0.12144" +"GO:1900006","positive regulation of dendrite developm...",4,3,1.88,622,"0.26785","0.12144","0.12144" +"GO:0006813","potassium ion transport",22,16,10.33,74,"0.01267","0.01927","0.12173" +"GO:0034113","heterotypic cell-cell adhesion",3,3,1.41,335,"0.10326","0.12429","0.12429" +"GO:0034114","regulation of heterotypic cell-cell adhe...",3,3,1.41,336,"0.10326","0.12429","0.12429" +"GO:0014015","positive regulation of gliogenesis",4,3,1.88,623,"0.26785","0.12541","0.12541" +"GO:0014033","neural crest cell differentiation",4,3,1.88,624,"0.26785","0.12541","0.12541" +"GO:0021782","glial cell development",4,3,1.88,625,"0.26785","0.12541","0.12541" +"GO:0022612","gland morphogenesis",4,3,1.88,626,"0.26785","0.12541","0.12541" +"GO:0030856","regulation of epithelial cell differenti...",4,3,1.88,627,"0.26785","0.12541","0.12541" +"GO:0032332","positive regulation of chondrocyte diffe...",4,3,1.88,628,"0.26785","0.12541","0.12541" +"GO:0042471","ear morphogenesis",4,3,1.88,629,"0.26785","0.12541","0.12541" +"GO:0042472","inner ear morphogenesis",4,3,1.88,630,"0.26785","0.12541","0.12541" +"GO:0048546","digestive tract morphogenesis",4,3,1.88,631,"0.26785","0.12541","0.12541" +"GO:0048865","stem cell fate commitment",4,3,1.88,632,"0.26785","0.12541","0.12541" +"GO:0061036","positive regulation of cartilage develop...",4,3,1.88,633,"0.26785","0.12541","0.12541" +"GO:0061614","pri-miRNA transcription by RNA polymeras...",4,3,1.88,634,"0.26785","0.12541","0.12541" +"GO:0070555","response to interleukin-1",4,3,1.88,635,"0.26785","0.12541","0.12541" +"GO:0071347","cellular response to interleukin-1",4,3,1.88,636,"0.26785","0.12541","0.12541" +"GO:0072080","nephron tubule development",4,3,1.88,637,"0.26785","0.12541","0.12541" +"GO:0072497","mesenchymal stem cell differentiation",4,3,1.88,638,"0.26785","0.12541","0.12541" +"GO:1902893","regulation of pri-miRNA transcription by...",4,3,1.88,639,"0.26785","0.12541","0.12541" +"GO:1905332","positive regulation of morphogenesis of ...",4,3,1.88,640,"0.26785","0.12541","0.12541" +"GO:2000738","positive regulation of stem cell differe...",4,3,1.88,641,"0.26785","0.12541","0.12541" +"GO:2000739","regulation of mesenchymal stem cell diff...",4,3,1.88,642,"0.26785","0.12541","0.12541" +"GO:2000741","positive regulation of mesenchymal stem ...",4,3,1.88,643,"0.26785","0.12541","0.12541" +"GO:0022904","respiratory electron transport chain",13,8,6.1,561,"0.21799","0.12563","0.12563" +"GO:0043393","regulation of protein binding",12,9,5.63,166,"0.04726","0.12580","0.12580" +"GO:0042752","regulation of circadian rhythm",10,7,4.69,408,"0.12574","0.12585","0.12585" +"GO:0006874","cellular calcium ion homeostasis",19,12,8.92,385,"0.11675","0.12707","0.12707" +"GO:0003205","cardiac chamber development",9,6,4.22,533,"0.19700","0.12712","0.12712" +"GO:0002521","leukocyte differentiation",6,4,2.82,706,"0.28798","0.12877","0.12877" +"GO:0030098","lymphocyte differentiation",6,4,2.82,707,"0.28798","0.12877","0.12877" +"GO:0045596","negative regulation of cell differentiat...",35,20,16.43,437,"0.14740","0.13014","0.13014" +"GO:0048663","neuron fate commitment",3,2,1.41,960,"0.45409","0.13015","0.13015" +"GO:0055024","regulation of cardiac muscle tissue deve...",3,2,1.41,961,"0.45409","0.13015","0.13015" +"GO:0051100","negative regulation of binding",9,6,4.22,534,"0.19700","0.13067","0.13067" +"GO:0009108","coenzyme biosynthetic process",25,14,11.73,593,"0.23824","0.13088","0.13088" +"GO:0097435","supramolecular fiber organization",72,39,33.79,420,"0.12987","0.13181","0.13181" +"GO:0051301","cell division",31,16,14.55,805,"0.36456","0.13202","0.13202" +"GO:0008064","regulation of actin polymerization or de...",25,16,11.73,215,"0.06455","0.13226","0.13226" +"GO:0030041","actin filament polymerization",25,16,11.73,216,"0.06455","0.13226","0.13226" +"GO:0030832","regulation of actin filament length",25,16,11.73,217,"0.06455","0.13226","0.13226" +"GO:0002683","negative regulation of immune system pro...",15,6,7.04,1701,"0.78678","0.13241","0.13241" +"GO:0009060","aerobic respiration",17,15,7.98,17,"0.00049","0.00139","0.13292" +"GO:0006270","DNA replication initiation",5,3,2.35,903,"0.44266","0.13433","0.13433" +"GO:0030155","regulation of cell adhesion",16,10,7.51,474,"0.15871","0.13512","0.13512" +"GO:0009605","response to external stimulus",122,64,57.26,393,"0.12315","0.13592","0.13592" +"GO:0032350","regulation of hormone metabolic process",4,3,1.88,644,"0.26785","0.13640","0.13640" +"GO:0051785","positive regulation of nuclear division",4,3,1.88,645,"0.26785","0.13640","0.13640" +"GO:0001838","embryonic epithelial tube formation",12,7,5.63,776,"0.30690","0.13699","0.13699" +"GO:0072175","epithelial tube formation",12,7,5.63,777,"0.30690","0.13699","0.13699" +"GO:0051188","cofactor biosynthetic process",30,16,14.08,758,"0.30019","0.13780","0.13780" +"GO:0098662","inorganic cation transmembrane transport",58,40,27.22,18,"0.00051","0.00061","0.13785" +"GO:0030217","T cell differentiation",4,3,1.88,646,"0.26785","0.13942","0.13942" +"GO:0040034","regulation of development, heterochronic",4,3,1.88,647,"0.26785","0.13942","0.13942" +"GO:0045619","regulation of lymphocyte differentiation",4,3,1.88,648,"0.26785","0.13942","0.13942" +"GO:1902105","regulation of leukocyte differentiation",4,3,1.88,649,"0.26785","0.13942","0.13942" +"GO:0045595","regulation of cell differentiation",84,47,39.43,194,"0.05802","0.13969","0.13969" +"GO:0022407","regulation of cell-cell adhesion",7,5,3.29,490,"0.17910","0.13988","0.13988" +"GO:0060562","epithelial tube morphogenesis",34,19,15.96,513,"0.18955","0.14161","0.14161" +"GO:0019751","polyol metabolic process",3,3,1.41,337,"0.10326","0.14173","0.14173" +"GO:0046173","polyol biosynthetic process",3,3,1.41,338,"0.10326","0.14173","0.14173" +"GO:0006885","regulation of pH",3,2,1.41,962,"0.45409","0.14237","0.14237" +"GO:0055067","monovalent inorganic cation homeostasis",3,2,1.41,963,"0.45409","0.14237","0.14237" +"GO:0035162","embryonic hemopoiesis",8,5,3.75,743,"0.29827","0.14380","0.14380" +"GO:0007399","nervous system development",176,97,82.61,79,"0.01489","0.01322","0.14509" +"GO:0007215","glutamate receptor signaling pathway",10,6,4.69,763,"0.30388","0.14511","0.14511" +"GO:0007159","leukocyte cell-cell adhesion",5,4,2.35,462,"0.15130","0.14545","0.14545" +"GO:0044091","membrane biogenesis",10,7,4.69,409,"0.12574","0.14554","0.14554" +"GO:0045333","cellular respiration",30,22,14.08,40,"0.00292","0.00227","0.14643" +"GO:0032411","positive regulation of transporter activ...",7,3,3.29,1536,"0.72046","0.14686","0.14686" +"GO:0032414","positive regulation of ion transmembrane...",7,3,3.29,1537,"0.72046","0.14686","0.14686" +"GO:0034767","positive regulation of ion transmembrane...",7,3,3.29,1538,"0.72046","0.14686","0.14686" +"GO:1904064","positive regulation of cation transmembr...",7,3,3.29,1539,"0.72046","0.14686","0.14686" +"GO:0035249","synaptic transmission, glutamatergic",3,3,1.41,339,"0.10326","0.14715","0.14715" +"GO:0051966","regulation of synaptic transmission, glu...",3,3,1.41,340,"0.10326","0.14715","0.14715" +"GO:0051968","positive regulation of synaptic transmis...",3,3,1.41,341,"0.10326","0.14715","0.14715" +"GO:0021700","developmental maturation",18,9,8.45,1182,"0.48837","0.14736","0.14736" +"GO:0007045","cell-substrate adherens junction assembl...",3,3,1.41,342,"0.10326","0.14754","0.14754" +"GO:0034332","adherens junction organization",3,3,1.41,343,"0.10326","0.14754","0.14754" +"GO:0034333","adherens junction assembly",3,3,1.41,344,"0.10326","0.14754","0.14754" +"GO:0048041","focal adhesion assembly",3,3,1.41,345,"0.10326","0.14754","0.14754" +"GO:0045010","actin nucleation",16,11,7.51,221,"0.06609","0.14779","0.14779" +"GO:0001708","cell fate specification",6,4,2.82,708,"0.28798","0.14839","0.14839" +"GO:0008277","regulation of G protein-coupled receptor...",6,2,2.82,1965,"0.85949","0.14839","0.14839" +"GO:0060485","mesenchyme development",11,7,5.16,555,"0.20926","0.14995","0.14995" +"GO:0002790","peptide secretion",23,15,10.8,197,"0.05979","0.15030","0.15030" +"GO:0009306","protein secretion",23,15,10.8,198,"0.05979","0.15030","0.15030" +"GO:0099601","regulation of neurotransmitter receptor ...",7,5,3.29,491,"0.17910","0.15100","0.15100" +"GO:1900449","regulation of glutamate receptor signali...",7,5,3.29,492,"0.17910","0.15100","0.15100" +"GO:0018210","peptidyl-threonine modification",9,4,4.22,1489,"0.68258","0.15106","0.15106" +"GO:0006814","sodium ion transport",20,13,9.39,245,"0.08059","0.15154","0.15154" +"GO:0007164","establishment of tissue polarity",15,13,7.04,36,"0.00175","0.00016","0.15175" +"GO:0002793","positive regulation of peptide secretion",10,7,4.69,410,"0.12574","0.15175","0.15175" +"GO:0031644","regulation of neurological system proces...",7,5,3.29,493,"0.17910","0.15223","0.15223" +"GO:0045662","negative regulation of myoblast differen...",7,5,3.29,494,"0.17910","0.15223","0.15223" +"GO:0050679","positive regulation of epithelial cell p...",7,5,3.29,495,"0.17910","0.15223","0.15223" +"GO:2000736","regulation of stem cell differentiation",7,5,3.29,496,"0.17910","0.15223","0.15223" +"GO:0002791","regulation of peptide secretion",16,11,7.51,222,"0.06609","0.15427","0.15427" +"GO:0021953","central nervous system neuron differenti...",8,5,3.75,744,"0.29827","0.15481","0.15481" +"GO:0060348","bone development",8,5,3.75,745,"0.29827","0.15481","0.15481" +"GO:0048147","negative regulation of fibroblast prolif...",3,3,1.41,346,"0.10326","0.15515","0.15515" +"GO:0010172","embryonic body morphogenesis",4,3,1.88,650,"0.26785","0.15599","0.15599" +"GO:0007589","body fluid secretion",3,3,1.41,347,"0.10326","0.15720","0.15720" +"GO:0061326","renal tubule development",5,3,2.35,904,"0.44266","0.15830","0.15830" +"GO:0007424","open tracheal system development",13,7,6.1,838,"0.41062","0.16011","0.16011" +"GO:0031334","positive regulation of protein complex a...",26,16,12.2,285,"0.09645","0.16082","0.16082" +"GO:0009142","nucleoside triphosphate biosynthetic pro...",24,19,11.26,25,"0.00124","0.00034","0.16112" +"GO:0009145","purine nucleoside triphosphate biosynthe...",24,19,11.26,26,"0.00124","0.00034","0.16112" +"GO:0009201","ribonucleoside triphosphate biosynthetic...",24,19,11.26,27,"0.00124","0.00034","0.16112" +"GO:0009206","purine ribonucleoside triphosphate biosy...",24,19,11.26,28,"0.00124","0.00034","0.16112" +"GO:0035459","cargo loading into vesicle",3,3,1.41,348,"0.10326","0.16262","0.16262" +"GO:0035964","COPI-coated vesicle budding",3,3,1.41,349,"0.10326","0.16262","0.16262" +"GO:0048200","Golgi transport vesicle coating",3,3,1.41,350,"0.10326","0.16262","0.16262" +"GO:0048205","COPI coating of Golgi vesicle",3,3,1.41,351,"0.10326","0.16262","0.16262" +"GO:0032273","positive regulation of protein polymeriz...",24,15,11.26,281,"0.09181","0.16474","0.16474" +"GO:0090263","positive regulation of canonical Wnt sig...",3,3,1.41,352,"0.10326","0.16559","0.16559" +"GO:0050877","nervous system process",67,33,31.45,823,"0.39624","0.16565","0.16565" +"GO:0016192","vesicle-mediated transport",151,75,70.87,700,"0.27080","0.16739","0.16739" +"GO:0019725","cellular homeostasis",55,31,25.82,286,"0.10042","0.16825","0.16825" +"GO:0030431","sleep",4,2,1.88,1351,"0.64033","0.17065","0.17065" +"GO:0042558","pteridine-containing compound metabolic ...",4,3,1.88,651,"0.26785","0.17065","0.17065" +"GO:0046662","regulation of oviposition",6,5,2.82,267,"0.08297","0.17095","0.17095" +"GO:0043408","regulation of MAPK cascade",25,14,11.73,594,"0.23824","0.17108","0.17108" +"GO:0006568","tryptophan metabolic process",3,3,1.41,353,"0.10326","0.17121","0.17121" +"GO:0006569","tryptophan catabolic process",3,3,1.41,354,"0.10326","0.17121","0.17121" +"GO:0006586","indolalkylamine metabolic process",3,3,1.41,355,"0.10326","0.17121","0.17121" +"GO:0009310","amine catabolic process",3,3,1.41,356,"0.10326","0.17121","0.17121" +"GO:0042402","cellular biogenic amine catabolic proces...",3,3,1.41,357,"0.10326","0.17121","0.17121" +"GO:0042430","indole-containing compound metabolic pro...",3,3,1.41,358,"0.10326","0.17121","0.17121" +"GO:0042436","indole-containing compound catabolic pro...",3,3,1.41,359,"0.10326","0.17121","0.17121" +"GO:0046218","indolalkylamine catabolic process",3,3,1.41,360,"0.10326","0.17121","0.17121" +"GO:0016485","protein processing",13,8,6.1,562,"0.21799","0.17228","0.17228" +"GO:0051235","maintenance of location",17,12,7.98,153,"0.04243","0.01553","0.17268" +"GO:0060856","establishment of blood-brain barrier",3,2,1.41,964,"0.45409","0.17283","0.17283" +"GO:0009063","cellular amino acid catabolic process",10,7,4.69,411,"0.12574","0.17461","0.17461" +"GO:0016266","O-glycan processing",6,3,2.82,1292,"0.59733","0.17764","0.17764" +"GO:0050803","regulation of synapse structure or activ...",23,13,10.8,590,"0.23694","0.17890","0.17890" +"GO:1901989","positive regulation of cell cycle phase ...",4,2,1.88,1352,"0.64033","0.17938","0.17938" +"GO:0009887","animal organ morphogenesis",85,42,39.9,804,"0.36086","0.17954","0.17954" +"GO:0060688","regulation of morphogenesis of a branchi...",5,3,2.35,905,"0.44266","0.18074","0.18074" +"GO:0001892","embryonic placenta development",6,5,2.82,268,"0.08297","0.18170","0.18170" +"GO:0007349","cellularization",6,6,2.82,68,"0.01062","0.00181","0.18195" +"GO:0001505","regulation of neurotransmitter levels",27,16,12.67,422,"0.13658","0.18269","0.18269" +"GO:0006576","cellular biogenic amine metabolic proces...",6,5,2.82,269,"0.08297","0.18365","0.18365" +"GO:0032509","endosome transport via multivesicular bo...",3,2,1.41,965,"0.45409","0.18410","0.18410" +"GO:0045324","late endosome to vacuole transport",3,2,1.41,966,"0.45409","0.18410","0.18410" +"GO:0071985","multivesicular body sorting pathway",3,2,1.41,967,"0.45409","0.18410","0.18410" +"GO:1903047","mitotic cell cycle process",47,20,22.06,1698,"0.77439","0.18421","0.18421" +"GO:0001890","placenta development",8,6,3.75,379,"0.10759","0.18444","0.18444" +"GO:0040012","regulation of locomotion",41,24,19.24,275,"0.08975","0.18488","0.18488" +"GO:0002694","regulation of leukocyte activation",13,8,6.1,563,"0.21799","0.18517","0.18517" +"GO:0050865","regulation of cell activation",13,8,6.1,564,"0.21799","0.18517","0.18517" +"GO:0051149","positive regulation of muscle cell diffe...",9,6,4.22,535,"0.19700","0.18565","0.18565" +"GO:0051155","positive regulation of striated muscle c...",9,6,4.22,536,"0.19700","0.18565","0.18565" +"GO:0072659","protein localization to plasma membrane",9,6,4.22,537,"0.19700","0.18565","0.18565" +"GO:0030029","actin filament-based process",85,47,39.9,230,"0.07228","0.05334","0.18575" +"GO:0014020","primary neural tube formation",9,6,4.22,538,"0.19700","0.18727","0.18727" +"GO:0051147","regulation of muscle cell differentiatio...",11,7,5.16,556,"0.20926","0.18804","0.18804" +"GO:0008154","actin polymerization or depolymerization",28,17,13.14,287,"0.10055","0.18880","0.18880" +"GO:0110053","regulation of actin filament organizatio...",28,17,13.14,288,"0.10055","0.18880","0.18880" +"GO:0010952","positive regulation of peptidase activit...",4,2,1.88,1353,"0.64033","0.18897","0.18897" +"GO:0032526","response to retinoic acid",4,2,1.88,1354,"0.64033","0.18897","0.18897" +"GO:0071300","cellular response to retinoic acid",4,2,1.88,1355,"0.64033","0.18897","0.18897" +"GO:0055074","calcium ion homeostasis",20,13,9.39,246,"0.08059","0.18931","0.18931" +"GO:0072503","cellular divalent inorganic cation homeo...",20,12,9.39,478,"0.17100","0.18931","0.18931" +"GO:1904888","cranial skeletal system development",5,2,2.35,1603,"0.77210","0.19032","0.19032" +"GO:2000177","regulation of neural precursor cell prol...",5,3,2.35,906,"0.44266","0.19032","0.19032" +"GO:0006022","aminoglycan metabolic process",37,29,17.37,9,"8.4e-05","1.2e-05","0.19038" +"GO:0001841","neural tube formation",10,6,4.69,764,"0.30388","0.19105","0.19105" +"GO:0010771","negative regulation of cell morphogenesi...",6,3,2.82,1293,"0.59733","0.19136","0.19136" +"GO:0010977","negative regulation of neuron projection...",6,3,2.82,1294,"0.59733","0.19136","0.19136" +"GO:0010817","regulation of hormone levels",33,18,15.49,603,"0.23981","0.19301","0.19301" +"GO:0007626","locomotory behavior",15,8,7.04,830,"0.40432","0.19397","0.19397" +"GO:0050954","sensory perception of mechanical stimulu...",10,4,4.69,1677,"0.77373","0.19506","0.19506" +"GO:1901605","alpha-amino acid metabolic process",17,10,7.98,578,"0.22904","0.19519","0.19519" +"GO:0035152","regulation of tube architecture, open tr...",5,3,2.35,907,"0.44266","0.19549","0.19549" +"GO:0030833","regulation of actin filament polymerizat...",24,15,11.26,282,"0.09181","0.19564","0.19564" +"GO:0006023","aminoglycan biosynthetic process",3,1,1.41,1785,"0.85074","0.19604","0.19604" +"GO:0030097","hemopoiesis",27,16,12.67,423,"0.13658","0.19613","0.19613" +"GO:0006754","ATP biosynthetic process",22,18,10.33,21,"0.00082","0.00033","0.19667" +"GO:0001525","angiogenesis",12,8,5.63,430,"0.13952","0.19668","0.19668" +"GO:0048871","multicellular organismal homeostasis",24,12,11.26,1167,"0.45998","0.19781","0.19781" +"GO:0072593","reactive oxygen species metabolic proces...",6,4,2.82,709,"0.28798","0.19792","0.19792" +"GO:0048646","anatomical structure formation involved ...",83,46,38.96,229,"0.07184","0.08523","0.19832" +"GO:0043270","positive regulation of ion transport",13,5,6.1,1741,"0.81309","0.19842","0.19842" +"GO:0061640","cytoskeleton-dependent cytokinesis",13,7,6.1,839,"0.41062","0.19857","0.19857" +"GO:1903706","regulation of hemopoiesis",12,8,5.63,431,"0.13952","0.19878","0.19878" +"GO:0035418","protein localization to synapse",6,2,2.82,1966,"0.85949","0.19883","0.19883" +"GO:0009435","NAD biosynthetic process",3,2,1.41,968,"0.45409","0.19976","0.19976" +"GO:0071453","cellular response to oxygen levels",5,3,2.35,908,"0.44266","0.20114","0.20114" +"GO:0015893","drug transport",13,8,6.1,565,"0.21799","0.20155","0.20155" +"GO:0006066","alcohol metabolic process",10,7,4.69,412,"0.12574","0.20199","0.20199" +"GO:0045165","cell fate commitment",20,11,9.39,786,"0.30771","0.20317","0.20317" +"GO:0042391","regulation of membrane potential",17,11,7.98,380,"0.10947","0.20340","0.20340" +"GO:0061061","muscle structure development",63,28,29.57,1518,"0.70085","0.20381","0.20381" +"GO:0071526","semaphorin-plexin signaling pathway",3,2,1.41,969,"0.45409","0.20485","0.20485" +"GO:0007111","meiosis II cytokinesis",4,3,1.88,652,"0.26785","0.20516","0.20516" +"GO:0033206","meiotic cytokinesis",4,3,1.88,653,"0.26785","0.20516","0.20516" +"GO:0061983","meiosis II cell cycle process",4,3,1.88,654,"0.26785","0.20516","0.20516" +"GO:0050805","negative regulation of synaptic transmis...",3,2,1.41,970,"0.45409","0.20584","0.20584" +"GO:0000819","sister chromatid segregation",10,4,4.69,1678,"0.77373","0.20615","0.20615" +"GO:0051181","cofactor transport",4,3,1.88,655,"0.26785","0.20688","0.20688" +"GO:0042135","neurotransmitter catabolic process",6,4,2.82,710,"0.28798","0.20768","0.20768" +"GO:0071482","cellular response to light stimulus",7,5,3.29,497,"0.17910","0.20793","0.20793" +"GO:0015980","energy derivation by oxidation of organi...",33,23,15.49,52,"0.00666","0.00415","0.20874" +"GO:0048568","embryonic organ development",35,19,16.43,599,"0.23960","0.20939","0.20939" +"GO:0001776","leukocyte homeostasis",4,3,1.88,656,"0.26785","0.21008","0.21008" +"GO:0002260","lymphocyte homeostasis",4,3,1.88,657,"0.26785","0.21008","0.21008" +"GO:0061298","retina vasculature development in camera...",4,3,1.88,658,"0.26785","0.21008","0.21008" +"GO:0001656","metanephros development",3,2,1.41,971,"0.45409","0.21087","0.21087" +"GO:0001657","ureteric bud development",3,2,1.41,972,"0.45409","0.21087","0.21087" +"GO:0001658","branching involved in ureteric bud morph...",3,2,1.41,973,"0.45409","0.21087","0.21087" +"GO:0001755","neural crest cell migration",3,2,1.41,974,"0.45409","0.21087","0.21087" +"GO:0001823","mesonephros development",3,2,1.41,975,"0.45409","0.21087","0.21087" +"GO:0002052","positive regulation of neuroblast prolif...",3,2,1.41,976,"0.45409","0.21087","0.21087" +"GO:0003170","heart valve development",3,2,1.41,977,"0.45409","0.21087","0.21087" +"GO:0003179","heart valve morphogenesis",3,2,1.41,978,"0.45409","0.21087","0.21087" +"GO:0003197","endocardial cushion development",3,2,1.41,979,"0.45409","0.21087","0.21087" +"GO:0014009","glial cell proliferation",3,2,1.41,980,"0.45409","0.21087","0.21087" +"GO:0014031","mesenchymal cell development",3,2,1.41,981,"0.45409","0.21087","0.21087" +"GO:0014032","neural crest cell development",3,2,1.41,982,"0.45409","0.21087","0.21087" +"GO:0021781","glial cell fate commitment",3,2,1.41,983,"0.45409","0.21087","0.21087" +"GO:0022600","digestive system process",3,2,1.41,984,"0.45409","0.21087","0.21087" +"GO:0030500","regulation of bone mineralization",3,2,1.41,985,"0.45409","0.21087","0.21087" +"GO:0030502","negative regulation of bone mineralizati...",3,2,1.41,986,"0.45409","0.21087","0.21087" +"GO:0030850","prostate gland development",3,2,1.41,987,"0.45409","0.21087","0.21087" +"GO:0030857","negative regulation of epithelial cell d...",3,2,1.41,988,"0.45409","0.21087","0.21087" +"GO:0030903","notochord development",3,2,1.41,989,"0.45409","0.21087","0.21087" +"GO:0031641","regulation of myelination",3,2,1.41,990,"0.45409","0.21087","0.21087" +"GO:0043491","protein kinase B signaling",3,2,1.41,991,"0.45409","0.21087","0.21087" +"GO:0048708","astrocyte differentiation",3,2,1.41,992,"0.45409","0.21087","0.21087" +"GO:0048745","smooth muscle tissue development",3,2,1.41,993,"0.45409","0.21087","0.21087" +"GO:0048864","stem cell development",3,2,1.41,994,"0.45409","0.21087","0.21087" +"GO:0048866","stem cell fate specification",3,2,1.41,995,"0.45409","0.21087","0.21087" +"GO:0060251","regulation of glial cell proliferation",3,2,1.41,996,"0.45409","0.21087","0.21087" +"GO:0060441","epithelial tube branching involved in lu...",3,2,1.41,997,"0.45409","0.21087","0.21087" +"GO:0060479","lung cell differentiation",3,2,1.41,998,"0.45409","0.21087","0.21087" +"GO:0060487","lung epithelial cell differentiation",3,2,1.41,999,"0.45409","0.21087","0.21087" +"GO:0060675","ureteric bud morphogenesis",3,2,1.41,1000,"0.45409","0.21087","0.21087" +"GO:0061009","common bile duct development",3,2,1.41,1001,"0.45409","0.21087","0.21087" +"GO:0061213","positive regulation of mesonephros devel...",3,2,1.41,1002,"0.45409","0.21087","0.21087" +"GO:0061217","regulation of mesonephros development",3,2,1.41,1003,"0.45409","0.21087","0.21087" +"GO:0061333","renal tubule morphogenesis",3,2,1.41,1004,"0.45409","0.21087","0.21087" +"GO:0070168","negative regulation of biomineral tissue...",3,2,1.41,1005,"0.45409","0.21087","0.21087" +"GO:0071599","otic vesicle development",3,2,1.41,1006,"0.45409","0.21087","0.21087" +"GO:0071600","otic vesicle morphogenesis",3,2,1.41,1007,"0.45409","0.21087","0.21087" +"GO:0072028","nephron morphogenesis",3,2,1.41,1008,"0.45409","0.21087","0.21087" +"GO:0072078","nephron tubule morphogenesis",3,2,1.41,1009,"0.45409","0.21087","0.21087" +"GO:0072088","nephron epithelium morphogenesis",3,2,1.41,1010,"0.45409","0.21087","0.21087" +"GO:0072163","mesonephric epithelium development",3,2,1.41,1011,"0.45409","0.21087","0.21087" +"GO:0072164","mesonephric tubule development",3,2,1.41,1012,"0.45409","0.21087","0.21087" +"GO:0072171","mesonephric tubule morphogenesis",3,2,1.41,1013,"0.45409","0.21087","0.21087" +"GO:0072210","metanephric nephron development",3,2,1.41,1014,"0.45409","0.21087","0.21087" +"GO:0090183","regulation of kidney development",3,2,1.41,1015,"0.45409","0.21087","0.21087" +"GO:0090184","positive regulation of kidney developmen...",3,2,1.41,1016,"0.45409","0.21087","0.21087" +"GO:0090189","regulation of branching involved in uret...",3,2,1.41,1017,"0.45409","0.21087","0.21087" +"GO:0090190","positive regulation of branching involve...",3,2,1.41,1018,"0.45409","0.21087","0.21087" +"GO:0097152","mesenchymal cell apoptotic process",3,2,1.41,1019,"0.45409","0.21087","0.21087" +"GO:1902692","regulation of neuroblast proliferation",3,2,1.41,1020,"0.45409","0.21087","0.21087" +"GO:1902894","negative regulation of pri-miRNA transcr...",3,2,1.41,1021,"0.45409","0.21087","0.21087" +"GO:1903055","positive regulation of extracellular mat...",3,2,1.41,1022,"0.45409","0.21087","0.21087" +"GO:1905939","regulation of gonad development",3,2,1.41,1023,"0.45409","0.21087","0.21087" +"GO:1905941","positive regulation of gonad development",3,2,1.41,1024,"0.45409","0.21087","0.21087" +"GO:2000018","regulation of male gonad development",3,2,1.41,1025,"0.45409","0.21087","0.21087" +"GO:2000020","positive regulation of male gonad develo...",3,2,1.41,1026,"0.45409","0.21087","0.21087" +"GO:2000179","positive regulation of neural precursor ...",3,2,1.41,1027,"0.45409","0.21087","0.21087" +"GO:2000648","positive regulation of stem cell prolife...",3,2,1.41,1028,"0.45409","0.21087","0.21087" +"GO:2000826","regulation of heart morphogenesis",3,2,1.41,1029,"0.45409","0.21087","0.21087" +"GO:2001053","regulation of mesenchymal cell apoptotic...",3,2,1.41,1030,"0.45409","0.21087","0.21087" +"GO:2001054","negative regulation of mesenchymal cell ...",3,2,1.41,1031,"0.45409","0.21087","0.21087" +"GO:1901264","carbohydrate derivative transport",4,3,1.88,659,"0.26785","0.21095","0.21095" +"GO:0019932","second-messenger-mediated signaling",20,11,9.39,787,"0.30771","0.21121","0.21121" +"GO:0098657","import into cell",52,26,24.41,811,"0.37868","0.21145","0.21145" +"GO:0010389","regulation of G2/M transition of mitotic...",4,2,1.88,1356,"0.64033","0.21213","0.21213" +"GO:1902749","regulation of cell cycle G2/M phase tran...",4,2,1.88,1357,"0.64033","0.21213","0.21213" +"GO:0035220","wing disc development",8,5,3.75,746,"0.29827","0.21303","0.21303" +"GO:0048821","erythrocyte development",6,4,2.82,711,"0.28798","0.21414","0.21414" +"GO:0048167","regulation of synaptic plasticity",9,6,4.22,539,"0.19700","0.21720","0.21720" +"GO:0008272","sulfate transport",5,4,2.35,463,"0.15130","0.21727","0.21727" +"GO:0071569","protein ufmylation",3,2,1.41,1032,"0.45409","0.21890","0.21890" +"GO:1990564","protein polyufmylation",3,2,1.41,1033,"0.45409","0.21890","0.21890" +"GO:1990592","protein K69-linked ufmylation",3,2,1.41,1034,"0.45409","0.21890","0.21890" +"GO:0035315","hair cell differentiation",4,3,1.88,660,"0.26785","0.21895","0.21895" +"GO:0015748","organophosphate ester transport",6,4,2.82,712,"0.28798","0.22047","0.22047" +"GO:0000910","cytokinesis",17,9,7.98,826,"0.39842","0.22111","0.22111" +"GO:0021761","limbic system development",4,3,1.88,661,"0.26785","0.22197","0.22197" +"GO:0021766","hippocampus development",4,3,1.88,662,"0.26785","0.22197","0.22197" +"GO:2000145","regulation of cell motility",30,18,14.08,364,"0.10420","0.22410","0.22410" +"GO:0097479","synaptic vesicle localization",9,6,4.22,540,"0.19700","0.22445","0.22445" +"GO:0048813","dendrite morphogenesis",9,5,4.22,856,"0.42487","0.22547","0.22547" +"GO:1902905","positive regulation of supramolecular fi...",27,16,12.67,424,"0.13658","0.22573","0.22573" +"GO:0043588","skin development",9,6,4.22,541,"0.19700","0.22629","0.22629" +"GO:0031057","negative regulation of histone modificat...",4,3,1.88,663,"0.26785","0.22685","0.22685" +"GO:0040011","locomotion",98,52,46,415,"0.12808","0.22726","0.22726" +"GO:0042127","regulation of cell proliferation",60,32,28.16,520,"0.19100","0.22747","0.22747" +"GO:0007010","cytoskeleton organization",124,65,58.2,392,"0.12267","0.03374","0.22766" +"GO:0060993","kidney morphogenesis",4,2,1.88,1358,"0.64033","0.22900","0.22900" +"GO:0099174","regulation of presynapse organization",4,3,1.88,664,"0.26785","0.22900","0.22900" +"GO:0050770","regulation of axonogenesis",10,6,4.69,765,"0.30388","0.22942","0.22942" +"GO:0060560","developmental growth involved in morphog...",14,8,6.57,788,"0.30834","0.23164","0.23164" +"GO:0009100","glycoprotein metabolic process",50,15,23.47,2676,"0.99545","0.23179","0.23179" +"GO:0009101","glycoprotein biosynthetic process",46,14,21.59,2642,"0.99284","0.23353","0.23353" +"GO:0010927","cellular component assembly involved in ...",25,13,11.73,810,"0.37782","0.23494","0.23494" +"GO:0055002","striated muscle cell development",25,11,11.73,1505,"0.68884","0.23494","0.23494" +"GO:0044282","small molecule catabolic process",19,12,8.92,386,"0.11675","0.23523","0.23523" +"GO:0007517","muscle organ development",39,18,18.31,1324,"0.60134","0.23584","0.23584" +"GO:0030030","cell projection organization",116,59,54.45,567,"0.21991","0.23649","0.23649" +"GO:0007411","axon guidance",24,14,11.26,502,"0.17914","0.23651","0.23651" +"GO:0097485","neuron projection guidance",24,14,11.26,503,"0.17914","0.23651","0.23651" +"GO:0001954","positive regulation of cell-matrix adhes...",3,2,1.41,1035,"0.45409","0.23814","0.23814" +"GO:0006897","endocytosis",48,24,22.53,818,"0.38759","0.23885","0.23885" +"GO:0050673","epithelial cell proliferation",19,12,8.92,387,"0.11675","0.23938","0.23938" +"GO:0009064","glutamine family amino acid metabolic pr...",7,4,3.29,868,"0.43316","0.23980","0.23980" +"GO:0000070","mitotic sister chromatid segregation",5,2,2.35,1604,"0.77210","0.23990","0.23990" +"GO:0045995","regulation of embryonic development",7,4,3.29,869,"0.43316","0.24040","0.24040" +"GO:0001837","epithelial to mesenchymal transition",6,4,2.82,713,"0.28798","0.24417","0.24417" +"GO:0007272","ensheathment of neurons",6,4,2.82,714,"0.28798","0.24417","0.24417" +"GO:0008366","axon ensheathment",6,4,2.82,715,"0.28798","0.24417","0.24417" +"GO:0010634","positive regulation of epithelial cell m...",6,4,2.82,716,"0.28798","0.24417","0.24417" +"GO:0030879","mammary gland development",6,4,2.82,717,"0.28798","0.24417","0.24417" +"GO:0048709","oligodendrocyte differentiation",6,4,2.82,718,"0.28798","0.24417","0.24417" +"GO:0060349","bone morphogenesis",6,4,2.82,719,"0.28798","0.24417","0.24417" +"GO:0060350","endochondral bone morphogenesis",6,4,2.82,720,"0.28798","0.24417","0.24417" +"GO:0060351","cartilage development involved in endoch...",6,4,2.82,721,"0.28798","0.24417","0.24417" +"GO:0072091","regulation of stem cell proliferation",6,4,2.82,722,"0.28798","0.24417","0.24417" +"GO:0003231","cardiac ventricle development",8,5,3.75,747,"0.29827","0.24448","0.24448" +"GO:0006091","generation of precursor metabolites and ...",45,29,21.12,76,"0.01295","0.00861","0.24448" +"GO:0048469","cell maturation",14,7,6.57,1206,"0.51290","0.24472","0.24472" +"GO:0045597","positive regulation of cell differentiat...",48,27,22.53,396,"0.12323","0.24784","0.24784" +"GO:0015837","amine transport",5,4,2.35,464,"0.15130","0.24812","0.24812" +"GO:0051952","regulation of amine transport",5,4,2.35,465,"0.15130","0.24812","0.24812" +"GO:0006812","cation transport",127,82,59.61,6,"3.1e-05","9.9e-05","0.24831" +"GO:1903044","protein localization to membrane raft",4,3,1.88,665,"0.26785","0.24870","0.24870" +"GO:1901606","alpha-amino acid catabolic process",9,6,4.22,542,"0.19700","0.24932","0.24932" +"GO:0120036","plasma membrane bounded cell projection ...",113,57,53.04,607,"0.25197","0.24933","0.24933" +"GO:0032271","regulation of protein polymerization",31,18,14.55,436,"0.14278","0.25034","0.25034" +"GO:0072006","nephron development",9,5,4.22,857,"0.42487","0.25107","0.25107" +"GO:0006749","glutathione metabolic process",4,2,1.88,1359,"0.64033","0.25132","0.25132" +"GO:0006119","oxidative phosphorylation",14,8,6.57,789,"0.30834","0.25187","0.25187" +"GO:0050771","negative regulation of axonogenesis",5,2,2.35,1605,"0.77210","0.25222","0.25222" +"GO:0055001","muscle cell development",26,11,12.2,1592,"0.74836","0.25330","0.25330" +"GO:0022900","electron transport chain",17,10,7.98,579,"0.22904","0.25331","0.25331" +"GO:0002520","immune system development",28,16,13.14,506,"0.18460","0.25403","0.25403" +"GO:0048534","hematopoietic or lymphoid organ developm...",28,16,13.14,507,"0.18460","0.25403","0.25403" +"GO:0008356","asymmetric cell division",6,4,2.82,723,"0.28798","0.25620","0.25620" +"GO:0034764","positive regulation of transmembrane tra...",9,3,4.22,2043,"0.87659","0.25658","0.25658" +"GO:0009416","response to light stimulus",19,11,8.92,588,"0.23252","0.25791","0.25791" +"GO:0001523","retinoid metabolic process",5,3,2.35,909,"0.44266","0.25890","0.25890" +"GO:0006721","terpenoid metabolic process",5,3,2.35,910,"0.44266","0.25890","0.25890" +"GO:0016101","diterpenoid metabolic process",5,3,2.35,911,"0.44266","0.25890","0.25890" +"GO:0072375","medium-term memory",3,2,1.41,1036,"0.45409","0.25903","0.25903" +"GO:0009584","detection of visible light",5,3,2.35,912,"0.44266","0.25920","0.25920" +"GO:0000278","mitotic cell cycle",50,21,23.47,1711,"0.80186","0.25929","0.25929" +"GO:0006892","post-Golgi vesicle-mediated transport",5,3,2.35,913,"0.44266","0.26040","0.26040" +"GO:0016051","carbohydrate biosynthetic process",14,7,6.57,1207,"0.51290","0.26095","0.26095" +"GO:0046916","cellular transition metal ion homeostasi...",4,3,1.88,666,"0.26785","0.26163","0.26163" +"GO:0055072","iron ion homeostasis",4,3,1.88,667,"0.26785","0.26163","0.26163" +"GO:0050896","response to stimulus",695,344,326.21,201,"0.06165","0.17333","0.26173" +"GO:0016054","organic acid catabolic process",15,9,7.04,571,"0.22435","0.26215","0.26215" +"GO:0046395","carboxylic acid catabolic process",15,9,7.04,572,"0.22435","0.26215","0.26215" +"GO:0006469","negative regulation of protein kinase ac...",16,8,7.51,1191,"0.49988","0.26284","0.26284" +"GO:0006486","protein glycosylation",45,14,21.12,2630,"0.99007","0.26305","0.26305" +"GO:0043413","macromolecule glycosylation",45,14,21.12,2631,"0.99007","0.26305","0.26305" +"GO:0070085","glycosylation",45,14,21.12,2632,"0.99007","0.26305","0.26305" +"GO:0048598","embryonic morphogenesis",52,26,24.41,812,"0.37868","0.26306","0.26306" +"GO:0007601","visual perception",9,4,4.22,1490,"0.68258","0.26375","0.26375" +"GO:0019068","virion assembly",4,3,1.88,668,"0.26785","0.26399","0.26399" +"GO:0016482","cytosolic transport",19,12,8.92,388,"0.11675","0.26527","0.26527" +"GO:0021532","neural tube patterning",4,2,1.88,1360,"0.64033","0.26535","0.26535" +"GO:0048701","embryonic cranial skeleton morphogenesis",4,1,1.88,2181,"0.92088","0.26535","0.26535" +"GO:0048704","embryonic skeletal system morphogenesis",4,1,1.88,2182,"0.92088","0.26535","0.26535" +"GO:0008344","adult locomotory behavior",3,2,1.41,1037,"0.45409","0.26545","0.26545" +"GO:0061178","regulation of insulin secretion involved...",3,2,1.41,1038,"0.45409","0.26545","0.26545" +"GO:0061180","mammary gland epithelium development",3,2,1.41,1039,"0.45409","0.26545","0.26545" +"GO:1903146","regulation of autophagy of mitochondrion",3,2,1.41,1040,"0.45409","0.26545","0.26545" +"GO:2000377","regulation of reactive oxygen species me...",3,2,1.41,1041,"0.45409","0.26545","0.26545" +"GO:0006760","folic acid-containing compound metabolic...",3,2,1.41,1042,"0.45409","0.26565","0.26565" +"GO:0046653","tetrahydrofolate metabolic process",3,2,1.41,1043,"0.45409","0.26565","0.26565" +"GO:0001894","tissue homeostasis",21,10,9.86,1245,"0.56023","0.26567","0.26567" +"GO:0009072","aromatic amino acid family metabolic pro...",7,5,3.29,498,"0.17910","0.26596","0.26596" +"GO:0001843","neural tube closure",8,5,3.75,748,"0.29827","0.26630","0.26630" +"GO:0060606","tube closure",8,5,3.75,749,"0.29827","0.26630","0.26630" +"GO:0070838","divalent metal ion transport",34,20,15.96,381,"0.11030","0.26630","0.26630" +"GO:0072511","divalent inorganic cation transport",34,20,15.96,382,"0.11030","0.26630","0.26630" +"GO:0032970","regulation of actin filament-based proce...",42,23,19.71,523,"0.19239","0.26914","0.26914" +"GO:0050807","regulation of synapse organization",21,11,9.86,820,"0.38761","0.26941","0.26941" +"GO:0006821","chloride transport",3,2,1.41,1044,"0.45409","0.26979","0.26979" +"GO:0043549","regulation of kinase activity",35,20,16.43,438,"0.14740","0.26989","0.26989" +"GO:0048511","rhythmic process",27,13,12.67,1214,"0.52506","0.27121","0.27121" +"GO:0003008","system process",108,60,50.69,148,"0.04142","0.02088","0.27139" +"GO:0046649","lymphocyte activation",16,10,7.51,475,"0.15871","0.27173","0.27173" +"GO:0006816","calcium ion transport",30,17,14.08,510,"0.18661","0.27218","0.27218" +"GO:0045893","positive regulation of transcription, DN...",59,31,27.69,583,"0.22912","0.27321","0.27321" +"GO:1902680","positive regulation of RNA biosynthetic ...",59,31,27.69,584,"0.22912","0.27321","0.27321" +"GO:1903508","positive regulation of nucleic acid-temp...",59,31,27.69,585,"0.22912","0.27321","0.27321" +"GO:0034329","cell junction assembly",12,8,5.63,432,"0.13952","0.27431","0.27431" +"GO:0034330","cell junction organization",12,8,5.63,433,"0.13952","0.27431","0.27431" +"GO:0051240","positive regulation of multicellular org...",70,38,32.86,419,"0.12973","0.27463","0.27463" +"GO:0015850","organic hydroxy compound transport",10,7,4.69,413,"0.12574","0.27542","0.27542" +"GO:0048589","developmental growth",52,29,24.41,399,"0.12532","0.27573","0.27573" +"GO:1901992","positive regulation of mitotic cell cycl...",3,2,1.41,1045,"0.45409","0.27577","0.27577" +"GO:1902808","positive regulation of cell cycle G1/S p...",3,1,1.41,1786,"0.85074","0.27577","0.27577" +"GO:0007602","phototransduction",3,2,1.41,1046,"0.45409","0.27819","0.27819" +"GO:0060433","bronchus development",3,1,1.41,1787,"0.85074","0.27819","0.27819" +"GO:0072657","protein localization to membrane",34,18,15.96,740,"0.29636","0.27833","0.27833" +"GO:0007585","respiratory gaseous exchange",5,4,2.35,466,"0.15130","0.27897","0.27897" +"GO:0001933","negative regulation of protein phosphory...",27,14,12.67,807,"0.37323","0.27995","0.27995" +"GO:0001952","regulation of cell-matrix adhesion",4,3,1.88,669,"0.26785","0.28056","0.28056" +"GO:0007044","cell-substrate junction assembly",4,3,1.88,670,"0.26785","0.28056","0.28056" +"GO:0018108","peptidyl-tyrosine phosphorylation",4,3,1.88,671,"0.26785","0.28056","0.28056" +"GO:0033627","cell adhesion mediated by integrin",4,3,1.88,672,"0.26785","0.28056","0.28056" +"GO:1903053","regulation of extracellular matrix organ...",4,2,1.88,1361,"0.64033","0.28056","0.28056" +"GO:0097755","positive regulation of blood vessel diam...",3,2,1.41,1047,"0.45409","0.28347","0.28347" +"GO:0000122","negative regulation of transcription by ...",34,14,15.96,1712,"0.80202","0.28453","0.28453" +"GO:0007310","oocyte dorsal/ventral axis specification",3,2,1.41,1048,"0.45409","0.28613","0.28613" +"GO:0010950","positive regulation of endopeptidase act...",3,2,1.41,1049,"0.45409","0.28675","0.28675" +"GO:2001056","positive regulation of cysteine-type end...",3,2,1.41,1050,"0.45409","0.28675","0.28675" +"GO:1902017","regulation of cilium assembly",9,5,4.22,858,"0.42487","0.28790","0.28790" +"GO:0031646","positive regulation of neurological syst...",5,3,2.35,914,"0.44266","0.28911","0.28911" +"GO:0001678","cellular glucose homeostasis",6,4,2.82,724,"0.28798","0.29125","0.29125" +"GO:0040019","positive regulation of embryonic develop...",4,3,1.88,673,"0.26785","0.29159","0.29159" +"GO:0006890","retrograde vesicle-mediated transport, G...",5,4,2.35,467,"0.15130","0.29329","0.29329" +"GO:0006901","vesicle coating",5,4,2.35,468,"0.15130","0.29329","0.29329" +"GO:0019233","sensory perception of pain",6,4,2.82,725,"0.28798","0.29332","0.29332" +"GO:0009163","nucleoside biosynthetic process",5,4,2.35,469,"0.15130","0.29410","0.29410" +"GO:0042455","ribonucleoside biosynthetic process",5,4,2.35,470,"0.15130","0.29410","0.29410" +"GO:0006928","movement of cell or subcellular componen...",101,43,47.41,1759,"0.84088","0.29423","0.29423" +"GO:0031345","negative regulation of cell projection o...",9,4,4.22,1491,"0.68258","0.29583","0.29583" +"GO:0051384","response to glucocorticoid",5,3,2.35,915,"0.44266","0.29588","0.29588" +"GO:0006090","pyruvate metabolic process",12,7,5.63,778,"0.30690","0.29608","0.29608" +"GO:0032635","interleukin-6 production",3,2,1.41,1051,"0.45409","0.29652","0.29652" +"GO:0031344","regulation of cell projection organizati...",44,23,20.65,704,"0.28622","0.29687","0.29687" +"GO:0120035","regulation of plasma membrane bounded ce...",44,23,20.65,705,"0.28622","0.29687","0.29687" +"GO:0051494","negative regulation of cytoskeleton orga...",13,8,6.1,566,"0.21799","0.29697","0.29697" +"GO:0009953","dorsal/ventral pattern formation",12,6,5.63,1219,"0.52795","0.29755","0.29755" +"GO:0051179","localization",668,341,313.53,54,"0.00749","0.01482","0.29781" +"GO:0070372","regulation of ERK1 and ERK2 cascade",5,3,2.35,916,"0.44266","0.29800","0.29800" +"GO:0002696","positive regulation of leukocyte activat...",4,3,1.88,674,"0.26785","0.29811","0.29811" +"GO:0045844","positive regulation of striated muscle t...",4,3,1.88,675,"0.26785","0.29811","0.29811" +"GO:0048636","positive regulation of muscle organ deve...",4,3,1.88,676,"0.26785","0.29811","0.29811" +"GO:0048641","regulation of skeletal muscle tissue dev...",4,3,1.88,677,"0.26785","0.29811","0.29811" +"GO:0050867","positive regulation of cell activation",4,3,1.88,678,"0.26785","0.29811","0.29811" +"GO:0051251","positive regulation of lymphocyte activa...",4,3,1.88,679,"0.26785","0.29811","0.29811" +"GO:0140253","cell-cell fusion",4,3,1.88,680,"0.26785","0.29811","0.29811" +"GO:1901863","positive regulation of muscle tissue dev...",4,3,1.88,681,"0.26785","0.29811","0.29811" +"GO:1903037","regulation of leukocyte cell-cell adhesi...",4,3,1.88,682,"0.26785","0.29811","0.29811" +"GO:0007605","sensory perception of sound",8,3,3.75,1715,"0.81192","0.29954","0.29954" +"GO:0071804","cellular potassium ion transport",10,8,4.69,138,"0.03595","0.05730","0.30125" +"GO:0071805","potassium ion transmembrane transport",10,8,4.69,139,"0.03595","0.05730","0.30125" +"GO:0008202","steroid metabolic process",17,10,7.98,580,"0.22904","0.30129","0.30129" +"GO:0098722","asymmetric stem cell division",5,3,2.35,917,"0.44266","0.30160","0.30160" +"GO:0010469","regulation of signaling receptor activit...",8,5,3.75,750,"0.29827","0.30161","0.30161" +"GO:2000243","positive regulation of reproductive proc...",8,5,3.75,751,"0.29827","0.30161","0.30161" +"GO:0014902","myotube differentiation",12,7,5.63,779,"0.30690","0.30476","0.30476" +"GO:0042110","T cell activation",12,8,5.63,434,"0.13952","0.30476","0.30476" +"GO:1990778","protein localization to cell periphery",12,7,5.63,780,"0.30690","0.30476","0.30476" +"GO:0006493","protein O-linked glycosylation",19,5,8.92,2545,"0.98148","0.30561","0.30561" +"GO:0007275","multicellular organism development",334,173,156.77,125,"0.03221","0.08624","0.30570" +"GO:0050808","synapse organization",34,22,15.96,121,"0.02742","0.02288","0.30588" +"GO:0003382","epithelial cell morphogenesis",3,2,1.41,1052,"0.45409","0.30690","0.30690" +"GO:0015693","magnesium ion transport",3,2,1.41,1053,"0.45409","0.30690","0.30690" +"GO:0007613","memory",9,5,4.22,859,"0.42487","0.30796","0.30796" +"GO:0033673","negative regulation of kinase activity",17,8,7.98,1283,"0.59007","0.30866","0.30866" +"GO:0030154","cell differentiation",219,117,102.79,117,"0.02619","0.02376","0.30874" +"GO:0045859","regulation of protein kinase activity",32,18,15.02,512,"0.18824","0.30945","0.30945" +"GO:0006613","cotranslational protein targeting to mem...",5,3,2.35,918,"0.44266","0.30954","0.30954" +"GO:0006614","SRP-dependent cotranslational protein ta...",5,3,2.35,919,"0.44266","0.30954","0.30954" +"GO:0045047","protein targeting to ER",5,3,2.35,920,"0.44266","0.30954","0.30954" +"GO:0072599","establishment of protein localization to...",5,3,2.35,921,"0.44266","0.30954","0.30954" +"GO:0098813","nuclear chromosome segregation",13,5,6.1,1742,"0.81309","0.30997","0.30997" +"GO:0010632","regulation of epithelial cell migration",8,5,3.75,752,"0.29827","0.31052","0.31052" +"GO:0007419","ventral cord development",4,2,1.88,1362,"0.64033","0.31178","0.31178" +"GO:0030435","sporulation resulting in formation of a ...",4,2,1.88,1363,"0.64033","0.31178","0.31178" +"GO:0002062","chondrocyte differentiation",5,3,2.35,922,"0.44266","0.31205","0.31205" +"GO:0030282","bone mineralization",5,3,2.35,923,"0.44266","0.31205","0.31205" +"GO:0032330","regulation of chondrocyte differentiatio...",5,3,2.35,924,"0.44266","0.31205","0.31205" +"GO:0061035","regulation of cartilage development",5,3,2.35,925,"0.44266","0.31205","0.31205" +"GO:0042330","taxis",37,21,17.37,440,"0.14924","0.31220","0.31220" +"GO:0008631","intrinsic apoptotic signaling pathway in...",3,2,1.41,1054,"0.45409","0.31315","0.31315" +"GO:0015813","L-glutamate transmembrane transport",3,2,1.41,1055,"0.45409","0.31315","0.31315" +"GO:0043271","negative regulation of ion transport",3,2,1.41,1056,"0.45409","0.31315","0.31315" +"GO:0052652","cyclic purine nucleotide metabolic proce...",6,3,2.82,1295,"0.59733","0.31316","0.31316" +"GO:0060429","epithelium development",83,48,38.96,122,"0.02810","0.01541","0.31349" +"GO:0042074","cell migration involved in gastrulation",3,2,1.41,1057,"0.45409","0.31401","0.31401" +"GO:0006490","oligosaccharide-lipid intermediate biosy...",3,0,1.41,2826,"1.00000","0.31401","0.31401" +"GO:0001947","heart looping",7,3,3.29,1540,"0.72046","0.31434","0.31434" +"GO:0003143","embryonic heart tube morphogenesis",7,3,3.29,1541,"0.72046","0.31434","0.31434" +"GO:0035050","embryonic heart tube development",7,3,3.29,1542,"0.72046","0.31434","0.31434" +"GO:0061371","determination of heart left/right asymme...",7,3,3.29,1543,"0.72046","0.31434","0.31434" +"GO:0032956","regulation of actin cytoskeleton organiz...",34,19,15.96,514,"0.18955","0.31441","0.31441" +"GO:0030239","myofibril assembly",20,10,9.39,1174,"0.47803","0.31460","0.31460" +"GO:0009165","nucleotide biosynthetic process",48,31,22.53,62,"0.00985","0.00550","0.31545" +"GO:1901293","nucleoside phosphate biosynthetic proces...",48,31,22.53,63,"0.00985","0.00550","0.31545" +"GO:0051239","regulation of multicellular organismal p...",155,85,72.75,114,"0.02561","0.09051","0.31723" +"GO:0050953","sensory perception of light stimulus",10,4,4.69,1679,"0.77373","0.32181","0.32181" +"GO:0009642","response to light intensity",3,2,1.41,1058,"0.45409","0.32298","0.32298" +"GO:0023052","signaling",479,237,224.83,390,"0.11780","0.32373","0.32373" +"GO:0030168","platelet activation",9,8,4.22,72,"0.01223","0.00665","0.32393" +"GO:0001666","response to hypoxia",10,5,4.69,1229,"0.54585","0.32423","0.32423" +"GO:0036293","response to decreased oxygen levels",10,5,4.69,1230,"0.54585","0.32423","0.32423" +"GO:0070482","response to oxygen levels",10,5,4.69,1231,"0.54585","0.32423","0.32423" +"GO:0051146","striated muscle cell differentiation",30,14,14.08,1280,"0.58303","0.32514","0.32514" +"GO:0003007","heart morphogenesis",19,10,8.92,822,"0.39287","0.32538","0.32538" +"GO:0007062","sister chromatid cohesion",5,2,2.35,1606,"0.77210","0.32733","0.32733" +"GO:0048144","fibroblast proliferation",5,3,2.35,926,"0.44266","0.32733","0.32733" +"GO:0048145","regulation of fibroblast proliferation",5,3,2.35,927,"0.44266","0.32733","0.32733" +"GO:0006810","transport",576,297,270.35,51,"0.00657","0.01078","0.32761" +"GO:0010720","positive regulation of cell development",26,14,12.2,762,"0.30368","0.32849","0.32849" +"GO:0007416","synapse assembly",19,9,8.92,1275,"0.57432","0.32874","0.32874" +"GO:0098656","anion transmembrane transport",24,12,11.26,1168,"0.45998","0.32925","0.32925" +"GO:0001654","eye development",61,32,28.63,574,"0.22793","0.32938","0.32938" +"GO:0048880","sensory system development",61,32,28.63,575,"0.22793","0.32938","0.32938" +"GO:0150063","visual system development",61,32,28.63,576,"0.22793","0.32938","0.32938" +"GO:0032024","positive regulation of insulin secretion",6,4,2.82,726,"0.28798","0.33091","0.33091" +"GO:0008045","motor neuron axon guidance",3,2,1.41,1059,"0.45409","0.33119","0.33119" +"GO:0072553","terminal button organization",3,2,1.41,1060,"0.45409","0.33119","0.33119" +"GO:0003002","regionalization",32,15,15.02,1272,"0.57193","0.33562","0.33562" +"GO:0032456","endocytic recycling",7,5,3.29,499,"0.17910","0.33710","0.33710" +"GO:0090276","regulation of peptide hormone secretion",12,7,5.63,781,"0.30690","0.33821","0.33821" +"GO:1903034","regulation of response to wounding",5,3,2.35,928,"0.44266","0.33826","0.33826" +"GO:0006260","DNA replication",18,10,8.45,793,"0.30848","0.33844","0.33844" +"GO:0032594","protein transport within lipid bilayer",4,1,1.88,2183,"0.92088","0.34095","0.34095" +"GO:0051493","regulation of cytoskeleton organization",44,22,20.65,824,"0.39713","0.34118","0.34118" +"GO:0035107","appendage morphogenesis",16,8,7.51,1192,"0.49988","0.34197","0.34197" +"GO:0048736","appendage development",16,8,7.51,1193,"0.49988","0.34197","0.34197" +"GO:0072330","monocarboxylic acid biosynthetic process",21,12,9.86,589,"0.23508","0.34271","0.34271" +"GO:0006935","chemotaxis",34,19,15.96,515,"0.18955","0.34354","0.34354" +"GO:0007268","chemical synaptic transmission",36,20,16.9,516,"0.19058","0.34368","0.34368" +"GO:0098916","anterograde trans-synaptic signaling",36,20,16.9,517,"0.19058","0.34368","0.34368" +"GO:0099536","synaptic signaling",36,20,16.9,518,"0.19058","0.34368","0.34368" +"GO:0099537","trans-synaptic signaling",36,20,16.9,519,"0.19058","0.34368","0.34368" +"GO:0070972","protein localization to endoplasmic reti...",8,4,3.75,1250,"0.56804","0.34454","0.34454" +"GO:0006936","muscle contraction",26,13,12.2,957,"0.45196","0.34729","0.34729" +"GO:0006560","proline metabolic process",3,1,1.41,1788,"0.85074","0.34817","0.34817" +"GO:0050795","regulation of behavior",9,5,4.22,860,"0.42487","0.35080","0.35080" +"GO:0042592","homeostatic process",105,54,49.28,547,"0.19975","0.35130","0.35130" +"GO:0009583","detection of light stimulus",6,4,2.82,727,"0.28798","0.35147","0.35147" +"GO:0072507","divalent inorganic cation homeostasis",22,13,10.33,480,"0.17547","0.35295","0.35295" +"GO:0046887","positive regulation of hormone secretion",9,5,4.22,861,"0.42487","0.35387","0.35387" +"GO:0060627","regulation of vesicle-mediated transport",33,18,15.49,604,"0.23981","0.35466","0.35466" +"GO:0045840","positive regulation of mitotic nuclear d...",3,2,1.41,1061,"0.45409","0.35486","0.35486" +"GO:0035108","limb morphogenesis",9,4,4.22,1492,"0.68258","0.35548","0.35548" +"GO:0060173","limb development",9,4,4.22,1493,"0.68258","0.35548","0.35548" +"GO:0015695","organic cation transport",5,2,2.35,1607,"0.77210","0.35548","0.35548" +"GO:0048194","Golgi vesicle budding",7,5,3.29,500,"0.17910","0.35676","0.35676" +"GO:0051648","vesicle localization",20,12,9.39,479,"0.17100","0.35709","0.35709" +"GO:0001701","in utero embryonic development",25,14,11.73,595,"0.23824","0.35737","0.35737" +"GO:0006575","cellular modified amino acid metabolic p...",11,5,5.16,1465,"0.65287","0.35794","0.35794" +"GO:1905207","regulation of cardiocyte differentiation",3,2,1.41,1062,"0.45409","0.35975","0.35975" +"GO:2001257","regulation of cation channel activity",18,9,8.45,1183,"0.48837","0.36315","0.36315" +"GO:0048747","muscle fiber development",3,0,1.41,2827,"1.00000","0.36420","0.36420" +"GO:0016310","phosphorylation",226,114,106.08,441,"0.14998","0.36519","0.36519" +"GO:0015918","sterol transport",7,5,3.29,501,"0.17910","0.36565","0.36565" +"GO:0051050","positive regulation of transport",51,25,23.94,895,"0.43569","0.36570","0.36570" +"GO:0033014","tetrapyrrole biosynthetic process",7,3,3.29,1544,"0.72046","0.36812","0.36812" +"GO:0007267","cell-cell signaling",82,43,38.49,504,"0.18334","0.36878","0.36878" +"GO:0072522","purine-containing compound biosynthetic ...",39,26,18.31,61,"0.00980","0.00441","0.36886" +"GO:0031648","protein destabilization",3,2,1.41,1063,"0.45409","0.37389","0.37389" +"GO:0051051","negative regulation of transport",15,9,7.04,573,"0.22435","0.37404","0.37404" +"GO:0015696","ammonium transport",10,5,4.69,1232,"0.54585","0.37410","0.37410" +"GO:0016331","morphogenesis of embryonic epithelium",17,9,7.98,827,"0.39842","0.37417","0.37417" +"GO:0009948","anterior/posterior axis specification",5,3,2.35,929,"0.44266","0.37479","0.37479" +"GO:0046847","filopodium assembly",5,3,2.35,930,"0.44266","0.37479","0.37479" +"GO:0042771","intrinsic apoptotic signaling pathway in...",3,1,1.41,1789,"0.85074","0.37484","0.37484" +"GO:0072332","intrinsic apoptotic signaling pathway by...",3,1,1.41,1790,"0.85074","0.37484","0.37484" +"GO:1902230","negative regulation of intrinsic apoptot...",3,1,1.41,1791,"0.85074","0.37484","0.37484" +"GO:2001021","negative regulation of response to DNA d...",3,1,1.41,1792,"0.85074","0.37484","0.37484" +"GO:0006635","fatty acid beta-oxidation",3,1,1.41,1793,"0.85074","0.37556","0.37556" +"GO:0018200","peptidyl-glutamic acid modification",4,2,1.88,1364,"0.64033","0.37564","0.37564" +"GO:0051345","positive regulation of hydrolase activit...",27,11,12.67,1710,"0.79964","0.37566","0.37566" +"GO:0061008","hepaticobiliary system development",7,4,3.29,870,"0.43316","0.37574","0.37574" +"GO:0010557","positive regulation of macromolecule bio...",63,31,29.57,836,"0.40523","0.37645","0.37645" +"GO:0043254","regulation of protein complex assembly",37,20,17.37,597,"0.23921","0.37899","0.37899" +"GO:1902903","regulation of supramolecular fiber organ...",37,20,17.37,598,"0.23921","0.37899","0.37899" +"GO:0002244","hematopoietic progenitor cell differenti...",4,3,1.88,683,"0.26785","0.37979","0.37979" +"GO:0042129","regulation of T cell proliferation",4,2,1.88,1365,"0.64033","0.37979","0.37979" +"GO:0051016","barbed-end actin filament capping",3,2,1.41,1064,"0.45409","0.38034","0.38034" +"GO:0007368","determination of left/right symmetry",12,4,5.63,2080,"0.89314","0.38289","0.38289" +"GO:0009799","specification of symmetry",12,4,5.63,2081,"0.89314","0.38289","0.38289" +"GO:0009855","determination of bilateral symmetry",12,4,5.63,2082,"0.89314","0.38289","0.38289" +"GO:0050830","defense response to Gram-positive bacter...",5,2,2.35,1608,"0.77210","0.38352","0.38352" +"GO:0042552","myelination",5,3,2.35,931,"0.44266","0.38408","0.38408" +"GO:0060425","lung morphogenesis",5,3,2.35,932,"0.44266","0.38408","0.38408" +"GO:0072009","nephron epithelium development",5,3,2.35,933,"0.44266","0.38408","0.38408" +"GO:0072073","kidney epithelium development",5,3,2.35,934,"0.44266","0.38408","0.38408" +"GO:0110110","positive regulation of animal organ morp...",5,3,2.35,935,"0.44266","0.38408","0.38408" +"GO:0006730","one-carbon metabolic process",6,2,2.82,1967,"0.85949","0.38419","0.38419" +"GO:0042303","molting cycle",9,5,4.22,862,"0.42487","0.38518","0.38518" +"GO:0008360","regulation of cell shape",3,2,1.41,1065,"0.45409","0.38564","0.38564" +"GO:0021551","central nervous system morphogenesis",3,1,1.41,1794,"0.85074","0.38564","0.38564" +"GO:0033687","osteoblast proliferation",3,1,1.41,1795,"0.85074","0.38564","0.38564" +"GO:0033688","regulation of osteoblast proliferation",3,1,1.41,1796,"0.85074","0.38564","0.38564" +"GO:0033690","positive regulation of osteoblast prolif...",3,1,1.41,1797,"0.85074","0.38564","0.38564" +"GO:0035272","exocrine system development",3,1,1.41,1798,"0.85074","0.38564","0.38564" +"GO:0050730","regulation of peptidyl-tyrosine phosphor...",3,2,1.41,1066,"0.45409","0.38564","0.38564" +"GO:0051492","regulation of stress fiber assembly",3,2,1.41,1067,"0.45409","0.38564","0.38564" +"GO:0043405","regulation of MAP kinase activity",12,7,5.63,782,"0.30690","0.38749","0.38749" +"GO:0051495","positive regulation of cytoskeleton orga...",29,16,13.61,602,"0.23961","0.38920","0.38920" +"GO:0042451","purine nucleoside biosynthetic process",4,3,1.88,684,"0.26785","0.38940","0.38940" +"GO:0046129","purine ribonucleoside biosynthetic proce...",4,3,1.88,685,"0.26785","0.38940","0.38940" +"GO:0008283","cell proliferation",73,38,34.26,568,"0.22043","0.38977","0.38977" +"GO:0045637","regulation of myeloid cell differentiati...",7,4,3.29,871,"0.43316","0.39042","0.39042" +"GO:0015807","L-amino acid transport",7,3,3.29,1545,"0.72046","0.39121","0.39121" +"GO:0009620","response to fungus",3,2,1.41,1068,"0.45409","0.39195","0.39195" +"GO:0042692","muscle cell differentiation",34,15,15.96,1511,"0.69180","0.39292","0.39292" +"GO:0040017","positive regulation of locomotion",21,10,9.86,1246,"0.56023","0.39318","0.39318" +"GO:0003413","chondrocyte differentiation involved in ...",4,2,1.88,1366,"0.64033","0.39404","0.39404" +"GO:0030279","negative regulation of ossification",4,2,1.88,1367,"0.64033","0.39404","0.39404" +"GO:0035019","somatic stem cell population maintenance",4,2,1.88,1368,"0.64033","0.39404","0.39404" +"GO:0007417","central nervous system development",75,44,35.2,115,"0.02570","0.02670","0.39407" +"GO:0006220","pyrimidine nucleotide metabolic process",6,3,2.82,1296,"0.59733","0.39449","0.39449" +"GO:1901659","glycosyl compound biosynthetic process",6,4,2.82,728,"0.28798","0.39449","0.39449" +"GO:0051258","protein polymerization",35,19,16.43,600,"0.23960","0.39472","0.39472" +"GO:0007154","cell communication",484,238,227.17,439,"0.14796","0.39518","0.39518" +"GO:0015740","C4-dicarboxylate transport",4,3,1.88,686,"0.26785","0.39531","0.39531" +"GO:0007472","wing disc morphogenesis",7,4,3.29,872,"0.43316","0.39617","0.39617" +"GO:0007476","imaginal disc-derived wing morphogenesis",7,4,3.29,873,"0.43316","0.39617","0.39617" +"GO:0035114","imaginal disc-derived appendage morphoge...",7,4,3.29,874,"0.43316","0.39617","0.39617" +"GO:0035120","post-embryonic appendage morphogenesis",7,4,3.29,875,"0.43316","0.39617","0.39617" +"GO:0048737","imaginal disc-derived appendage developm...",7,4,3.29,876,"0.43316","0.39617","0.39617" +"GO:0051348","negative regulation of transferase activ...",19,8,8.92,1580,"0.74204","0.39791","0.39791" +"GO:0009124","nucleoside monophosphate biosynthetic pr...",24,19,11.26,29,"0.00124","0.00161","0.39949" +"GO:0009127","purine nucleoside monophosphate biosynth...",24,19,11.26,30,"0.00124","0.00161","0.39949" +"GO:0009156","ribonucleoside monophosphate biosyntheti...",24,19,11.26,31,"0.00124","0.00161","0.39949" +"GO:0009168","purine ribonucleoside monophosphate bios...",24,19,11.26,32,"0.00124","0.00161","0.39949" +"GO:0040007","growth",73,39,34.26,472,"0.15671","0.39986","0.39986" +"GO:0051298","centrosome duplication",4,2,1.88,1369,"0.64033","0.39998","0.39998" +"GO:0030865","cortical cytoskeleton organization",11,7,5.16,557,"0.20926","0.40041","0.40041" +"GO:0035282","segmentation",13,5,6.1,1743,"0.81309","0.40066","0.40066" +"GO:0030520","intracellular estrogen receptor signalin...",4,2,1.88,1370,"0.64033","0.40424","0.40424" +"GO:0033146","regulation of intracellular estrogen rec...",4,2,1.88,1371,"0.64033","0.40424","0.40424" +"GO:0043009","chordate embryonic development",48,24,22.53,819,"0.38759","0.40437","0.40437" +"GO:0033043","regulation of organelle organization",91,42,42.71,1325,"0.60147","0.40500","0.40500" +"GO:0030336","negative regulation of cell migration",9,6,4.22,543,"0.19700","0.40523","0.40523" +"GO:0051271","negative regulation of cellular componen...",9,6,4.22,544,"0.19700","0.40523","0.40523" +"GO:2000146","negative regulation of cell motility",9,6,4.22,545,"0.19700","0.40523","0.40523" +"GO:0006338","chromatin remodeling",16,7,7.51,1512,"0.69194","0.40658","0.40658" +"GO:0060135","maternal process involved in female preg...",5,3,2.35,936,"0.44266","0.40700","0.40700" +"GO:0003018","vascular process in circulatory system",5,3,2.35,937,"0.44266","0.40796","0.40796" +"GO:0043534","blood vessel endothelial cell migration",5,3,2.35,938,"0.44266","0.40796","0.40796" +"GO:0006835","dicarboxylic acid transport",6,4,2.82,729,"0.28798","0.40807","0.40807" +"GO:0006275","regulation of DNA replication",4,2,1.88,1372,"0.64033","0.40939","0.40939" +"GO:0033045","regulation of sister chromatid segregati...",4,1,1.88,2184,"0.92088","0.40939","0.40939" +"GO:0051053","negative regulation of DNA metabolic pro...",4,2,1.88,1373,"0.64033","0.40939","0.40939" +"GO:0051983","regulation of chromosome segregation",4,1,1.88,2185,"0.92088","0.40939","0.40939" +"GO:0042219","cellular modified amino acid catabolic p...",3,2,1.41,1069,"0.45409","0.40990","0.40990" +"GO:0048771","tissue remodeling",12,7,5.63,783,"0.30690","0.41085","0.41085" +"GO:0044706","multi-multicellular organism process",10,6,4.69,766,"0.30388","0.41397","0.41397" +"GO:0048468","cell development",157,85,73.69,140,"0.03728","0.01886","0.41398" +"GO:0007596","blood coagulation",11,9,5.16,94,"0.02018","0.03757","0.41584" +"GO:0007599","hemostasis",11,9,5.16,95,"0.02018","0.03757","0.41584" +"GO:0050817","coagulation",11,9,5.16,96,"0.02018","0.03757","0.41584" +"GO:0032878","regulation of establishment or maintenan...",3,2,1.41,1070,"0.45409","0.41739","0.41739" +"GO:0070528","protein kinase C signaling",3,2,1.41,1071,"0.45409","0.41739","0.41739" +"GO:2000114","regulation of establishment of cell pola...",3,2,1.41,1072,"0.45409","0.41739","0.41739" +"GO:0009792","embryo development ending in birth or eg...",57,28,26.75,853,"0.41973","0.41756","0.41756" +"GO:0009299","mRNA transcription",3,2,1.41,1073,"0.45409","0.41864","0.41864" +"GO:0042789","mRNA transcription by RNA polymerase II",3,2,1.41,1074,"0.45409","0.41864","0.41864" +"GO:0006120","mitochondrial electron transport, NADH t...",6,3,2.82,1297,"0.59733","0.41901","0.41901" +"GO:0097164","ammonium ion metabolic process",14,8,6.57,790,"0.30834","0.42008","0.42008" +"GO:0007059","chromosome segregation",15,5,7.04,2107,"0.90780","0.42113","0.42113" +"GO:0044283","small molecule biosynthetic process",52,27,24.41,701,"0.27798","0.42277","0.42277" +"GO:0043409","negative regulation of MAPK cascade",10,5,4.69,1233,"0.54585","0.42304","0.42304" +"GO:0050908","detection of light stimulus involved in ...",4,2,1.88,1374,"0.64033","0.42413","0.42413" +"GO:0050962","detection of light stimulus involved in ...",4,2,1.88,1375,"0.64033","0.42413","0.42413" +"GO:0051234","establishment of localization",590,303,276.92,55,"0.00807","0.01534","0.42477" +"GO:0051241","negative regulation of multicellular org...",45,22,21.12,959,"0.45348","0.42619","0.42619" +"GO:0030177","positive regulation of Wnt signaling pat...",5,3,2.35,939,"0.44266","0.42717","0.42717" +"GO:0006164","purine nucleotide biosynthetic process",37,25,17.37,56,"0.00875","0.00510","0.42728" +"GO:0009152","purine ribonucleotide biosynthetic proce...",37,25,17.37,57,"0.00875","0.00510","0.42728" +"GO:0009260","ribonucleotide biosynthetic process",37,25,17.37,58,"0.00875","0.00510","0.42728" +"GO:0046390","ribose phosphate biosynthetic process",37,25,17.37,59,"0.00875","0.00510","0.42728" +"GO:0019098","reproductive behavior",11,7,5.16,558,"0.20926","0.42794","0.42794" +"GO:0030072","peptide hormone secretion",13,7,6.1,840,"0.41062","0.42890","0.42890" +"GO:0046883","regulation of hormone secretion",13,7,6.1,841,"0.41062","0.42890","0.42890" +"GO:0051128","regulation of cellular component organiz...",163,80,76.51,795,"0.31327","0.42916","0.42916" +"GO:0006937","regulation of muscle contraction",12,6,5.63,1220,"0.52795","0.42920","0.42920" +"GO:0042113","B cell activation",3,2,1.41,1075,"0.45409","0.43227","0.43227" +"GO:0070373","negative regulation of ERK1 and ERK2 cas...",3,2,1.41,1076,"0.45409","0.43227","0.43227" +"GO:0016197","endosomal transport",23,13,10.8,591,"0.23694","0.43275","0.43275" +"GO:0060041","retina development in camera-type eye",29,14,13.61,1212,"0.51509","0.43416","0.43416" +"GO:0051338","regulation of transferase activity",42,22,19.71,737,"0.28828","0.43436","0.43436" +"GO:0051592","response to calcium ion",9,3,4.22,2044,"0.87659","0.43439","0.43439" +"GO:0051656","establishment of organelle localization",28,16,13.14,508,"0.18460","0.43462","0.43462" +"GO:0043087","regulation of GTPase activity",23,12,10.8,814,"0.38261","0.43496","0.43496" +"GO:0007229","integrin-mediated signaling pathway",4,2,1.88,1376,"0.64033","0.43554","0.43554" +"GO:0010811","positive regulation of cell-substrate ad...",4,2,1.88,1377,"0.64033","0.43554","0.43554" +"GO:0071711","basement membrane organization",4,2,1.88,1378,"0.64033","0.43554","0.43554" +"GO:0050796","regulation of insulin secretion",10,6,4.69,767,"0.30388","0.43639","0.43639" +"GO:0006984","ER-nucleus signaling pathway",4,3,1.88,687,"0.26785","0.43687","0.43687" +"GO:0043297","apical junction assembly",6,2,2.82,1968,"0.85949","0.43727","0.43727" +"GO:0120192","tight junction assembly",6,2,2.82,1969,"0.85949","0.43727","0.43727" +"GO:0120193","tight junction organization",6,2,2.82,1970,"0.85949","0.43727","0.43727" +"GO:0048593","camera-type eye morphogenesis",16,7,7.51,1513,"0.69194","0.43759","0.43759" +"GO:0030517","negative regulation of axon extension",3,1,1.41,1799,"0.85074","0.43787","0.43787" +"GO:0042446","hormone biosynthetic process",3,2,1.41,1077,"0.45409","0.43787","0.43787" +"GO:0048367","shoot system development",3,1,1.41,1800,"0.85074","0.43787","0.43787" +"GO:0090596","sensory organ morphogenesis",35,15,16.43,1589,"0.74362","0.43803","0.43803" +"GO:0016999","antibiotic metabolic process",18,15,8.45,33,"0.00165","0.00449","0.43949" +"GO:0018345","protein palmitoylation",5,3,2.35,940,"0.44266","0.44217","0.44217" +"GO:0034308","primary alcohol metabolic process",3,2,1.41,1078,"0.45409","0.44607","0.44607" +"GO:0006893","Golgi to plasma membrane transport",3,1,1.41,1801,"0.85074","0.44633","0.44633" +"GO:0007274","neuromuscular synaptic transmission",3,1,1.41,1802,"0.85074","0.44633","0.44633" +"GO:0097120","receptor localization to synapse",3,1,1.41,1803,"0.85074","0.44633","0.44633" +"GO:0045646","regulation of erythrocyte differentiatio...",6,3,2.82,1298,"0.59733","0.44670","0.44670" +"GO:0048856","anatomical structure development",358,187,168.03,82,"0.01751","0.04579","0.44716" +"GO:0051347","positive regulation of transferase activ...",20,10,9.39,1175,"0.47803","0.44721","0.44721" +"GO:0030518","intracellular steroid hormone receptor s...",9,4,4.22,1494,"0.68258","0.44756","0.44756" +"GO:0001570","vasculogenesis",3,2,1.41,1079,"0.45409","0.44762","0.44762" +"GO:0010595","positive regulation of endothelial cell ...",3,2,1.41,1080,"0.45409","0.44762","0.44762" +"GO:0032233","positive regulation of actin filament bu...",3,2,1.41,1081,"0.45409","0.44762","0.44762" +"GO:0043535","regulation of blood vessel endothelial c...",3,2,1.41,1082,"0.45409","0.44762","0.44762" +"GO:0060402","calcium ion transport into cytosol",5,3,2.35,941,"0.44266","0.44934","0.44934" +"GO:0032989","cellular component morphogenesis",96,58,45.06,47,"0.00474","0.00705","0.45128" +"GO:0070371","ERK1 and ERK2 cascade",8,4,3.75,1251,"0.56804","0.45143","0.45143" +"GO:0007032","endosome organization",3,2,1.41,1083,"0.45409","0.45304","0.45304" +"GO:0045732","positive regulation of protein catabolic...",14,6,6.57,1525,"0.71523","0.45369","0.45369" +"GO:0008361","regulation of cell size",11,6,5.16,846,"0.41742","0.45433","0.45433" +"GO:0048588","developmental cell growth",11,5,5.16,1466,"0.65287","0.45433","0.45433" +"GO:0051962","positive regulation of nervous system de...",27,14,12.67,808,"0.37323","0.45613","0.45613" +"GO:0198738","cell-cell signaling by wnt",31,17,14.55,605,"0.23983","0.45675","0.45675" +"GO:0009790","embryo development",96,45,45.06,1228,"0.54557","0.45962","0.45962" +"GO:0006221","pyrimidine nucleotide biosynthetic proce...",5,2,2.35,1609,"0.77210","0.46078","0.46078" +"GO:0006182","cGMP biosynthetic process",4,1,1.88,2186,"0.92088","0.46144","0.46144" +"GO:0046068","cGMP metabolic process",4,1,1.88,2187,"0.92088","0.46144","0.46144" +"GO:0007165","signal transduction",439,214,206.05,559,"0.21671","0.46164","0.46164" +"GO:0045137","development of primary sexual characteri...",17,9,7.98,828,"0.39842","0.46199","0.46199" +"GO:0001777","T cell homeostatic proliferation",3,2,1.41,1084,"0.45409","0.46317","0.46317" +"GO:0043029","T cell homeostasis",3,2,1.41,1085,"0.45409","0.46317","0.46317" +"GO:0046013","regulation of T cell homeostatic prolife...",3,2,1.41,1086,"0.45409","0.46317","0.46317" +"GO:0061299","retina vasculature morphogenesis in came...",3,2,1.41,1087,"0.45409","0.46317","0.46317" +"GO:0061304","retinal blood vessel morphogenesis",3,2,1.41,1088,"0.45409","0.46317","0.46317" +"GO:0051270","regulation of cellular component movemen...",35,19,16.43,601,"0.23960","0.46351","0.46351" +"GO:0035264","multicellular organism growth",9,6,4.22,546,"0.19700","0.46752","0.46752" +"GO:0050906","detection of stimulus involved in sensor...",11,6,5.16,847,"0.41742","0.46754","0.46754" +"GO:0009074","aromatic amino acid family catabolic pro...",4,3,1.88,688,"0.26785","0.46958","0.46958" +"GO:0051123","RNA polymerase II preinitiation complex ...",3,2,1.41,1089,"0.45409","0.46970","0.46970" +"GO:0010508","positive regulation of autophagy",7,3,3.29,1546,"0.72046","0.47036","0.47036" +"GO:0090277","positive regulation of peptide hormone s...",7,4,3.29,877,"0.43316","0.47036","0.47036" +"GO:0006348","chromatin silencing at telomere",5,3,2.35,942,"0.44266","0.47213","0.47213" +"GO:0050821","protein stabilization",11,6,5.16,848,"0.41742","0.47288","0.47288" +"GO:0045444","fat cell differentiation",8,4,3.75,1252,"0.56804","0.47315","0.47315" +"GO:0016053","organic acid biosynthetic process",28,15,13.14,760,"0.30199","0.47327","0.47327" +"GO:0046394","carboxylic acid biosynthetic process",28,15,13.14,761,"0.30199","0.47327","0.47327" +"GO:0001737","establishment of imaginal disc-derived w...",3,2,1.41,1090,"0.45409","0.47495","0.47495" +"GO:0035316","non-sensory hair organization",3,2,1.41,1091,"0.45409","0.47495","0.47495" +"GO:0035317","imaginal disc-derived wing hair organiza...",3,2,1.41,1092,"0.45409","0.47495","0.47495" +"GO:0031328","positive regulation of cellular biosynth...",64,31,30.04,958,"0.45257","0.47496","0.47496" +"GO:0050678","regulation of epithelial cell proliferat...",12,7,5.63,784,"0.30690","0.47502","0.47502" +"GO:0060828","regulation of canonical Wnt signaling pa...",12,7,5.63,785,"0.30690","0.47502","0.47502" +"GO:0007631","feeding behavior",6,4,2.82,730,"0.28798","0.47543","0.47543" +"GO:0046683","response to organophosphorus",6,3,2.82,1299,"0.59733","0.47543","0.47543" +"GO:0051130","positive regulation of cellular componen...",84,42,39.43,797,"0.32193","0.47619","0.47619" +"GO:0060048","cardiac muscle contraction",10,5,4.69,1234,"0.54585","0.47678","0.47678" +"GO:0032102","negative regulation of response to exter...",7,2,3.29,2124,"0.91510","0.47776","0.47776" +"GO:0030301","cholesterol transport",4,3,1.88,689,"0.26785","0.47823","0.47823" +"GO:1905475","regulation of protein localization to me...",5,3,2.35,943,"0.44266","0.47845","0.47845" +"GO:0035773","insulin secretion involved in cellular r...",4,2,1.88,1379,"0.64033","0.47869","0.47869" +"GO:0036294","cellular response to decreased oxygen le...",4,2,1.88,1380,"0.64033","0.47869","0.47869" +"GO:0045766","positive regulation of angiogenesis",4,3,1.88,690,"0.26785","0.47869","0.47869" +"GO:0061418","regulation of transcription from RNA pol...",4,2,1.88,1381,"0.64033","0.47869","0.47869" +"GO:0071326","cellular response to monosaccharide stim...",4,2,1.88,1382,"0.64033","0.47869","0.47869" +"GO:0071331","cellular response to hexose stimulus",4,2,1.88,1383,"0.64033","0.47869","0.47869" +"GO:0071333","cellular response to glucose stimulus",4,2,1.88,1384,"0.64033","0.47869","0.47869" +"GO:0071456","cellular response to hypoxia",4,2,1.88,1385,"0.64033","0.47869","0.47869" +"GO:1903708","positive regulation of hemopoiesis",4,2,1.88,1386,"0.64033","0.47869","0.47869" +"GO:1904018","positive regulation of vasculature devel...",4,3,1.88,691,"0.26785","0.47869","0.47869" +"GO:0043171","peptide catabolic process",3,1,1.41,1804,"0.85074","0.47996","0.47996" +"GO:0007098","centrosome cycle",7,4,3.29,878,"0.43316","0.48001","0.48001" +"GO:0031023","microtubule organizing center organizati...",7,4,3.29,879,"0.43316","0.48001","0.48001" +"GO:0043410","positive regulation of MAPK cascade",12,6,5.63,1221,"0.52795","0.48083","0.48083" +"GO:0008203","cholesterol metabolic process",3,2,1.41,1093,"0.45409","0.48128","0.48128" +"GO:0048749","compound eye development",13,7,6.1,842,"0.41062","0.48175","0.48175" +"GO:0072528","pyrimidine-containing compound biosynthe...",6,2,2.82,1971,"0.85949","0.48215","0.48215" +"GO:0048675","axon extension",7,3,3.29,1547,"0.72046","0.48226","0.48226" +"GO:0061387","regulation of extent of cell growth",7,4,3.29,880,"0.43316","0.48226","0.48226" +"GO:0007389","pattern specification process",43,20,20.18,1279,"0.58201","0.48254","0.48254" +"GO:0007530","sex determination",4,1,1.88,2188,"0.92088","0.48327","0.48327" +"GO:0045647","negative regulation of erythrocyte diffe...",3,2,1.41,1094,"0.45409","0.48392","0.48392" +"GO:0060218","hematopoietic stem cell differentiation",3,2,1.41,1095,"0.45409","0.48392","0.48392" +"GO:1901532","regulation of hematopoietic progenitor c...",3,2,1.41,1096,"0.45409","0.48392","0.48392" +"GO:1902036","regulation of hematopoietic stem cell di...",3,2,1.41,1097,"0.45409","0.48392","0.48392" +"GO:0007127","meiosis I",4,2,1.88,1387,"0.64033","0.48602","0.48602" +"GO:0030466","chromatin silencing at silent mating-typ...",4,2,1.88,1388,"0.64033","0.48602","0.48602" +"GO:0031938","regulation of chromatin silencing at tel...",4,2,1.88,1389,"0.64033","0.48602","0.48602" +"GO:0031939","negative regulation of chromatin silenci...",4,2,1.88,1390,"0.64033","0.48602","0.48602" +"GO:0061186","negative regulation of chromatin silenci...",4,2,1.88,1391,"0.64033","0.48602","0.48602" +"GO:0090054","regulation of chromatin silencing at sil...",4,2,1.88,1392,"0.64033","0.48602","0.48602" +"GO:0042982","amyloid precursor protein metabolic proc...",4,3,1.88,692,"0.26785","0.48648","0.48648" +"GO:0042987","amyloid precursor protein catabolic proc...",4,3,1.88,693,"0.26785","0.48648","0.48648" +"GO:0048207","vesicle targeting, rough ER to cis-Golgi",4,3,1.88,694,"0.26785","0.48648","0.48648" +"GO:0048208","COPII vesicle coating",4,3,1.88,695,"0.26785","0.48648","0.48648" +"GO:1902991","regulation of amyloid precursor protein ...",4,3,1.88,696,"0.26785","0.48648","0.48648" +"GO:0007584","response to nutrient",8,4,3.75,1253,"0.56804","0.48869","0.48869" +"GO:0006979","response to oxidative stress",38,21,17.84,521,"0.19138","0.48947","0.48947" +"GO:0070509","calcium ion import",6,3,2.82,1300,"0.59733","0.49040","0.49040" +"GO:0051208","sequestering of calcium ion",3,2,1.41,1098,"0.45409","0.49082","0.49082" +"GO:0051209","release of sequestered calcium ion into ...",3,2,1.41,1099,"0.45409","0.49082","0.49082" +"GO:0051279","regulation of release of sequestered cal...",3,2,1.41,1100,"0.45409","0.49082","0.49082" +"GO:0051282","regulation of sequestering of calcium io...",3,2,1.41,1101,"0.45409","0.49082","0.49082" +"GO:0051283","negative regulation of sequestering of c...",3,2,1.41,1102,"0.45409","0.49082","0.49082" +"GO:0097553","calcium ion transmembrane import into cy...",3,2,1.41,1103,"0.45409","0.49082","0.49082" +"GO:0051272","positive regulation of cellular componen...",16,7,7.51,1514,"0.69194","0.49173","0.49173" +"GO:0018212","peptidyl-tyrosine modification",5,3,2.35,944,"0.44266","0.49199","0.49199" +"GO:0043112","receptor metabolic process",9,4,4.22,1495,"0.68258","0.49408","0.49408" +"GO:0001775","cell activation",32,20,15.02,189,"0.05505","0.09335","0.49440" +"GO:0016477","cell migration",48,25,22.53,702,"0.28209","0.49448","0.49448" +"GO:0090132","epithelium migration",15,8,7.04,831,"0.40432","0.49460","0.49460" +"GO:0006900","vesicle budding from membrane",8,5,3.75,753,"0.29827","0.49521","0.49521" +"GO:0071695","anatomical structure maturation",7,3,3.29,1548,"0.72046","0.49565","0.49565" +"GO:1905114","cell surface receptor signaling pathway ...",30,16,14.08,759,"0.30019","0.49618","0.49618" +"GO:0002063","chondrocyte development",3,1,1.41,1805,"0.85074","0.49748","0.49748" +"GO:0021872","forebrain generation of neurons",3,1,1.41,1806,"0.85074","0.49748","0.49748" +"GO:0040003","chitin-based cuticle development",3,1,1.41,1807,"0.85074","0.49748","0.49748" +"GO:0042335","cuticle development",3,1,1.41,1808,"0.85074","0.49748","0.49748" +"GO:0060788","ectodermal placode formation",3,1,1.41,1809,"0.85074","0.49748","0.49748" +"GO:0071696","ectodermal placode development",3,1,1.41,1810,"0.85074","0.49748","0.49748" +"GO:0071697","ectodermal placode morphogenesis",3,1,1.41,1811,"0.85074","0.49748","0.49748" +"GO:0048048","embryonic eye morphogenesis",3,0,1.41,2828,"1.00000","0.49748","0.49748" +"GO:0034109","homotypic cell-cell adhesion",9,8,4.22,73,"0.01223","0.01337","0.49807" +"GO:0050769","positive regulation of neurogenesis",24,12,11.26,1169,"0.45998","0.49811","0.49811" +"GO:0000165","MAPK cascade",30,15,14.08,897,"0.43745","0.49907","0.49907" +"GO:0023014","signal transduction by protein phosphory...",30,15,14.08,898,"0.43745","0.49907","0.49907" +"GO:0042326","negative regulation of phosphorylation",30,14,14.08,1281,"0.58303","0.49907","0.49907" +"GO:0001889","liver development",6,3,2.82,1301,"0.59733","0.49945","0.49945" +"GO:0007565","female pregnancy",9,5,4.22,863,"0.42487","0.49963","0.49963" +"GO:0090329","regulation of DNA-dependent DNA replicat...",3,2,1.41,1104,"0.45409","0.49988","0.49988" +"GO:0032501","multicellular organismal process",402,206,188.68,126,"0.03361","0.09768","0.50162" +"GO:0060711","labyrinthine layer development",4,3,1.88,697,"0.26785","0.50216","0.50216" +"GO:0032874","positive regulation of stress-activated ...",6,3,2.82,1302,"0.59733","0.50247","0.50247" +"GO:0070304","positive regulation of stress-activated ...",6,3,2.82,1303,"0.59733","0.50247","0.50247" +"GO:0046835","carbohydrate phosphorylation",3,2,1.41,1105,"0.45409","0.50309","0.50309" +"GO:0003279","cardiac septum development",3,2,1.41,1106,"0.45409","0.50362","0.50362" +"GO:0032368","regulation of lipid transport",3,2,1.41,1107,"0.45409","0.50362","0.50362" +"GO:0032370","positive regulation of lipid transport",3,2,1.41,1108,"0.45409","0.50362","0.50362" +"GO:0035904","aorta development",3,2,1.41,1109,"0.45409","0.50362","0.50362" +"GO:0048844","artery morphogenesis",3,2,1.41,1110,"0.45409","0.50362","0.50362" +"GO:0060976","coronary vasculature development",3,2,1.41,1111,"0.45409","0.50362","0.50362" +"GO:0071542","dopaminergic neuron differentiation",3,2,1.41,1112,"0.45409","0.50362","0.50362" +"GO:1905477","positive regulation of protein localizat...",3,2,1.41,1113,"0.45409","0.50362","0.50362" +"GO:1905952","regulation of lipid localization",3,2,1.41,1114,"0.45409","0.50362","0.50362" +"GO:1905954","positive regulation of lipid localizatio...",3,2,1.41,1115,"0.45409","0.50362","0.50362" +"GO:0042398","cellular modified amino acid biosyntheti...",4,3,1.88,698,"0.26785","0.50401","0.50401" +"GO:0006940","regulation of smooth muscle contraction",4,2,1.88,1393,"0.64033","0.50634","0.50634" +"GO:0035296","regulation of tube diameter",4,2,1.88,1394,"0.64033","0.50634","0.50634" +"GO:0045933","positive regulation of muscle contractio...",4,2,1.88,1395,"0.64033","0.50634","0.50634" +"GO:0050880","regulation of blood vessel size",4,2,1.88,1396,"0.64033","0.50634","0.50634" +"GO:0097746","regulation of blood vessel diameter",4,2,1.88,1397,"0.64033","0.50634","0.50634" +"GO:0046475","glycerophospholipid catabolic process",4,3,1.88,699,"0.26785","0.50680","0.50680" +"GO:0009952","anterior/posterior pattern specification",13,5,6.1,1744,"0.81309","0.50778","0.50778" +"GO:0001101","response to acid chemical",17,7,7.98,1596,"0.76325","0.50781","0.50781" +"GO:0048872","homeostasis of number of cells",17,8,7.98,1284,"0.59007","0.50781","0.50781" +"GO:0031032","actomyosin structure organization",29,13,13.61,1481,"0.65975","0.50895","0.50895" +"GO:0014074","response to purine-containing compound",9,4,4.22,1496,"0.68258","0.51000","0.51000" +"GO:0006261","DNA-dependent DNA replication",11,6,5.16,849,"0.41742","0.51098","0.51098" +"GO:0030099","myeloid cell differentiation",15,8,7.04,832,"0.40432","0.51188","0.51188" +"GO:0045454","cell redox homeostasis",22,11,10.33,1173,"0.46862","0.51230","0.51230" +"GO:0006820","anion transport",43,18,20.18,1708,"0.79538","0.51272","0.51272" +"GO:0021537","telencephalon development",12,10,5.63,70,"0.01115","0.00402","0.51336" +"GO:2000147","positive regulation of cell motility",15,6,7.04,1702,"0.78678","0.51417","0.51417" +"GO:0050777","negative regulation of immune response",3,1,1.41,1812,"0.85074","0.51463","0.51463" +"GO:0008584","male gonad development",7,3,3.29,1549,"0.72046","0.51496","0.51496" +"GO:0046546","development of primary male sexual chara...",7,3,3.29,1550,"0.72046","0.51496","0.51496" +"GO:0006855","drug transmembrane transport",6,2,2.82,1972,"0.85949","0.51539","0.51539" +"GO:1902475","L-alpha-amino acid transmembrane transpo...",6,2,2.82,1973,"0.85949","0.51539","0.51539" +"GO:0007219","Notch signaling pathway",17,8,7.98,1285,"0.59007","0.51607","0.51607" +"GO:0016050","vesicle organization",21,11,9.86,821,"0.38761","0.51620","0.51620" +"GO:0031400","negative regulation of protein modificat...",38,19,17.84,843,"0.41286","0.51825","0.51825" +"GO:0009737","response to abscisic acid",6,2,2.82,1974,"0.85949","0.51882","0.51882" +"GO:0010564","regulation of cell cycle process",35,14,16.43,1760,"0.84095","0.52035","0.52035" +"GO:0051650","establishment of vesicle localization",17,10,7.98,581,"0.22904","0.52050","0.52050" +"GO:0006909","phagocytosis",22,10,10.33,1349,"0.63657","0.52229","0.52229" +"GO:0030308","negative regulation of cell growth",16,7,7.51,1515,"0.69194","0.52269","0.52269" +"GO:0007043","cell-cell junction assembly",7,3,3.29,1551,"0.72046","0.52379","0.52379" +"GO:0045216","cell-cell junction organization",7,3,3.29,1552,"0.72046","0.52379","0.52379" +"GO:0048706","embryonic skeletal system development",7,2,3.29,2125,"0.91510","0.52379","0.52379" +"GO:0048565","digestive tract development",6,3,2.82,1304,"0.59733","0.52455","0.52455" +"GO:0055123","digestive system development",6,3,2.82,1305,"0.59733","0.52455","0.52455" +"GO:0043085","positive regulation of catalytic activit...",47,21,22.06,1487,"0.67627","0.52558","0.52558" +"GO:0051965","positive regulation of synapse assembly",5,2,2.35,1610,"0.77210","0.52589","0.52589" +"GO:0051963","regulation of synapse assembly",11,3,5.16,2325,"0.94987","0.52621","0.52621" +"GO:0009994","oocyte differentiation",8,3,3.75,1716,"0.81192","0.52782","0.52782" +"GO:0071229","cellular response to acid chemical",8,3,3.75,1717,"0.81192","0.52782","0.52782" +"GO:0006879","cellular iron ion homeostasis",3,2,1.41,1116,"0.45409","0.52867","0.52867" +"GO:0048869","cellular developmental process",229,122,107.48,116,"0.02596","0.05493","0.53018" +"GO:0031214","biomineral tissue development",7,3,3.29,1553,"0.72046","0.53053","0.53053" +"GO:0010256","endomembrane system organization",34,17,15.96,854,"0.42454","0.53067","0.53067" +"GO:0031348","negative regulation of defense response",6,2,2.82,1975,"0.85949","0.53107","0.53107" +"GO:0045787","positive regulation of cell cycle",10,5,4.69,1235,"0.54585","0.53137","0.53137" +"GO:0090068","positive regulation of cell cycle proces...",10,5,4.69,1236,"0.54585","0.53137","0.53137" +"GO:0060249","anatomical structure homeostasis",29,13,13.61,1482,"0.65975","0.53225","0.53225" +"GO:0007525","somatic muscle development",4,2,1.88,1398,"0.64033","0.53251","0.53251" +"GO:0009653","anatomical structure morphogenesis",195,106,91.53,83,"0.01854","0.02085","0.53399" +"GO:0070167","regulation of biomineral tissue developm...",4,2,1.88,1399,"0.64033","0.53439","0.53439" +"GO:0071214","cellular response to abiotic stimulus",21,14,9.86,187,"0.05454","0.09871","0.53502" +"GO:0104004","cellular response to environmental stimu...",21,14,9.86,188,"0.05454","0.09871","0.53502" +"GO:0042060","wound healing",28,16,13.14,509,"0.18460","0.25403","0.53526" +"GO:0030100","regulation of endocytosis",20,10,9.39,1176,"0.47803","0.53526","0.53526" +"GO:0046488","phosphatidylinositol metabolic process",21,10,9.86,1247,"0.56023","0.53559","0.53559" +"GO:0060322","head development",61,37,28.63,98,"0.02049","0.02038","0.53581" +"GO:0060324","face development",3,2,1.41,1117,"0.45409","0.53600","0.53600" +"GO:0050829","defense response to Gram-negative bacter...",8,3,3.75,1718,"0.81192","0.53614","0.53614" +"GO:0010638","positive regulation of organelle organiz...",49,24,23,902,"0.44140","0.53624","0.53624" +"GO:0002832","negative regulation of response to bioti...",3,1,1.41,1813,"0.85074","0.53790","0.53790" +"GO:0007600","sensory perception",38,15,17.84,2022,"0.86292","0.53863","0.53863" +"GO:0030073","insulin secretion",11,6,5.16,850,"0.41742","0.54055","0.54055" +"GO:0006541","glutamine metabolic process",3,2,1.41,1118,"0.45409","0.54279","0.54279" +"GO:0009084","glutamine family amino acid biosynthetic...",3,1,1.41,1814,"0.85074","0.54279","0.54279" +"GO:1905515","non-motile cilium assembly",4,2,1.88,1400,"0.64033","0.54286","0.54286" +"GO:0022402","cell cycle process",85,35,39.9,2063,"0.88380","0.54325","0.54325" +"GO:0034765","regulation of ion transmembrane transpor...",23,13,10.8,592,"0.23694","0.25947","0.54356" +"GO:0023061","signal release",27,15,12.67,596,"0.23910","0.54511","0.54511" +"GO:1901137","carbohydrate derivative biosynthetic pro...",97,43,45.53,1579,"0.73457","0.24196","0.54532" +"GO:0008038","neuron recognition",9,5,4.22,864,"0.42487","0.54631","0.54631" +"GO:0008406","gonad development",14,7,6.57,1208,"0.51290","0.54873","0.54873" +"GO:0048732","gland development",16,8,7.51,1194,"0.49988","0.54981","0.54981" +"GO:0044087","regulation of cellular component biogene...",83,42,38.96,703,"0.28444","0.54985","0.54985" +"GO:0015800","acidic amino acid transport",4,2,1.88,1401,"0.64033","0.55042","0.55042" +"GO:0006986","response to unfolded protein",11,5,5.16,1467,"0.65287","0.55124","0.55124" +"GO:0042147","retrograde transport, endosome to Golgi",14,8,6.57,791,"0.30834","0.55380","0.55380" +"GO:0045860","positive regulation of protein kinase ac...",15,7,7.04,1329,"0.60791","0.55395","0.55395" +"GO:0072524","pyridine-containing compound metabolic p...",16,11,7.51,223,"0.06609","0.01950","0.55405" +"GO:0042073","intraciliary transport",5,0,2.35,2829,"1.00000","0.55413","0.55413" +"GO:0015914","phospholipid transport",4,2,1.88,1402,"0.64033","0.55468","0.55468" +"GO:0033143","regulation of intracellular steroid horm...",7,3,3.29,1554,"0.72046","0.55515","0.55515" +"GO:0032787","monocarboxylic acid metabolic process",36,19,16.9,739,"0.29438","0.55704","0.55704" +"GO:0048638","regulation of developmental growth",20,9,9.39,1472,"0.65310","0.55708","0.55708" +"GO:0046128","purine ribonucleoside metabolic process",5,3,2.35,945,"0.44266","0.55731","0.55731" +"GO:0048489","synaptic vesicle transport",6,4,2.82,731,"0.28798","0.55844","0.55844" +"GO:0097480","establishment of synaptic vesicle locali...",6,4,2.82,732,"0.28798","0.55844","0.55844" +"GO:1901617","organic hydroxy compound biosynthetic pr...",10,6,4.69,768,"0.30388","0.55857","0.55857" +"GO:0007420","brain development",59,36,27.69,86,"0.01963","0.01897","0.55865" +"GO:0009187","cyclic nucleotide metabolic process",10,5,4.69,1237,"0.54585","0.55887","0.55887" +"GO:0009190","cyclic nucleotide biosynthetic process",10,5,4.69,1238,"0.54585","0.55887","0.55887" +"GO:0033013","tetrapyrrole metabolic process",9,3,4.22,2045,"0.87659","0.55909","0.55909" +"GO:0001667","ameboidal-type cell migration",16,8,7.51,1195,"0.49988","0.55930","0.55930" +"GO:0090130","tissue migration",16,8,7.51,1196,"0.49988","0.55930","0.55930" +"GO:0055086","nucleobase-containing small molecule met...",93,49,43.65,471,"0.15235","0.06488","0.55998" +"GO:0006352","DNA-templated transcription, initiation",23,9,10.8,1757,"0.83213","0.56006","0.56006" +"GO:1901990","regulation of mitotic cell cycle phase t...",8,4,3.75,1254,"0.56804","0.56054","0.56054" +"GO:0006753","nucleoside phosphate metabolic process",82,45,38.49,272,"0.08825","0.03586","0.56105" +"GO:0048592","eye morphogenesis",32,13,15.02,1747,"0.81512","0.56116","0.56116" +"GO:0006970","response to osmotic stress",10,4,4.69,1680,"0.77373","0.56187","0.56187" +"GO:0030335","positive regulation of cell migration",13,6,6.1,1335,"0.62852","0.56211","0.56211" +"GO:0030866","cortical actin cytoskeleton organization",10,6,4.69,769,"0.30388","0.56247","0.56247" +"GO:0001709","cell fate determination",7,4,3.29,881,"0.43316","0.56501","0.56501" +"GO:0006487","protein N-linked glycosylation",12,3,5.63,2439,"0.96878","0.56845","0.56845" +"GO:0048199","vesicle targeting, to, from or within Go...",6,4,2.82,733,"0.28798","0.56890","0.56890" +"GO:0090114","COPII-coated vesicle budding",6,4,2.82,734,"0.28798","0.56890","0.56890" +"GO:0006672","ceramide metabolic process",3,2,1.41,1119,"0.45409","0.56958","0.56958" +"GO:0006520","cellular amino acid metabolic process",41,20,19.24,1171,"0.46662","0.56961","0.56961" +"GO:0010970","transport along microtubule",18,3,8.45,2727,"0.99853","0.57003","0.57003" +"GO:0030705","cytoskeleton-dependent intracellular tra...",18,3,8.45,2728,"0.99853","0.57003","0.57003" +"GO:0099111","microtubule-based transport",18,3,8.45,2729,"0.99853","0.57003","0.57003" +"GO:0045765","regulation of angiogenesis",6,4,2.82,735,"0.28798","0.57006","0.57006" +"GO:1901342","regulation of vasculature development",6,4,2.82,736,"0.28798","0.57006","0.57006" +"GO:0007204","positive regulation of cytosolic calcium...",6,3,2.82,1306,"0.59733","0.57084","0.57084" +"GO:0051480","regulation of cytosolic calcium ion conc...",6,3,2.82,1307,"0.59733","0.57084","0.57084" +"GO:0048513","animal organ development",205,108,96.22,175,"0.04997","0.12378","0.57121" +"GO:0001765","membrane raft assembly",3,2,1.41,1120,"0.45409","0.57123","0.57123" +"GO:0001963","synaptic transmission, dopaminergic",3,2,1.41,1121,"0.45409","0.57123","0.57123" +"GO:0002090","regulation of receptor internalization",3,2,1.41,1122,"0.45409","0.57123","0.57123" +"GO:0006582","melanin metabolic process",3,2,1.41,1123,"0.45409","0.57123","0.57123" +"GO:0031579","membrane raft organization",3,2,1.41,1124,"0.45409","0.57123","0.57123" +"GO:0032092","positive regulation of protein binding",3,2,1.41,1125,"0.45409","0.57123","0.57123" +"GO:0035006","melanization defense response",3,2,1.41,1126,"0.45409","0.57123","0.57123" +"GO:0009651","response to salt stress",7,3,3.29,1555,"0.72046","0.57184","0.57184" +"GO:0048599","oocyte development",7,2,3.29,2126,"0.91510","0.57184","0.57184" +"GO:1901988","negative regulation of cell cycle phase ...",3,1,1.41,1815,"0.85074","0.57425","0.57425" +"GO:1901991","negative regulation of mitotic cell cycl...",3,1,1.41,1816,"0.85074","0.57425","0.57425" +"GO:0007308","oocyte construction",6,2,2.82,1976,"0.85949","0.57434","0.57434" +"GO:0007309","oocyte axis specification",6,2,2.82,1977,"0.85949","0.57434","0.57434" +"GO:0000578","embryonic axis specification",4,2,1.88,1403,"0.64033","0.57461","0.57461" +"GO:0051489","regulation of filopodium assembly",4,2,1.88,1404,"0.64033","0.57461","0.57461" +"GO:0009117","nucleotide metabolic process",81,45,38.02,227,"0.07137","0.02865","0.57583" +"GO:0065009","regulation of molecular function",137,69,64.3,586,"0.22989","0.55911","0.57703" +"GO:0018992","germ-line sex determination",3,1,1.41,1817,"0.85074","0.57974","0.57974" +"GO:0043401","steroid hormone mediated signaling pathw...",17,7,7.98,1597,"0.76325","0.58163","0.58163" +"GO:0009798","axis specification",14,6,6.57,1526,"0.71523","0.58177","0.58177" +"GO:0043547","positive regulation of GTPase activity",15,7,7.04,1330,"0.60791","0.58196","0.58196" +"GO:0042593","glucose homeostasis",10,5,4.69,1239,"0.54585","0.58294","0.58294" +"GO:0031570","DNA integrity checkpoint",6,2,2.82,1978,"0.85949","0.58327","0.58327" +"GO:0007586","digestion",4,2,1.88,1405,"0.64033","0.58413","0.58413" +"GO:0060428","lung epithelium development",4,2,1.88,1406,"0.64033","0.58413","0.58413" +"GO:0045638","negative regulation of myeloid cell diff...",4,2,1.88,1407,"0.64033","0.58461","0.58461" +"GO:1903707","negative regulation of hemopoiesis",4,2,1.88,1408,"0.64033","0.58461","0.58461" +"GO:0033674","positive regulation of kinase activity",16,8,7.51,1197,"0.49988","0.58622","0.58622" +"GO:0071478","cellular response to radiation",11,6,5.16,851,"0.41742","0.58795","0.58795" +"GO:0007265","Ras protein signal transduction",30,15,14.08,899,"0.43745","0.58827","0.58827" +"GO:1904062","regulation of cation transmembrane trans...",22,12,10.33,773,"0.30660","0.36487","0.58837" +"GO:0016242","negative regulation of macroautophagy",3,1,1.41,1818,"0.85074","0.58909","0.58909" +"GO:0044088","regulation of vacuole organization",3,1,1.41,1819,"0.85074","0.58909","0.58909" +"GO:2000785","regulation of autophagosome assembly",3,1,1.41,1820,"0.85074","0.58909","0.58909" +"GO:0006694","steroid biosynthetic process",11,6,5.16,852,"0.41742","0.59026","0.59026" +"GO:0031623","receptor internalization",5,2,2.35,1611,"0.77210","0.59346","0.59346" +"GO:0071103","DNA conformation change",18,7,8.45,1753,"0.82169","0.59366","0.59366" +"GO:0032879","regulation of localization",147,70,69,1170,"0.46525","0.56349","0.59375" +"GO:0014046","dopamine secretion",3,2,1.41,1127,"0.45409","0.59486","0.59486" +"GO:0014059","regulation of dopamine secretion",3,2,1.41,1128,"0.45409","0.59486","0.59486" +"GO:0015844","monoamine transport",3,2,1.41,1129,"0.45409","0.59486","0.59486" +"GO:0015872","dopamine transport",3,2,1.41,1130,"0.45409","0.59486","0.59486" +"GO:0050432","catecholamine secretion",3,2,1.41,1131,"0.45409","0.59486","0.59486" +"GO:0050433","regulation of catecholamine secretion",3,2,1.41,1132,"0.45409","0.59486","0.59486" +"GO:0051937","catecholamine transport",3,2,1.41,1133,"0.45409","0.59486","0.59486" +"GO:0070570","regulation of neuron projection regenera...",3,1,1.41,1821,"0.85074","0.59486","0.59486" +"GO:0035265","organ growth",9,4,4.22,1497,"0.68258","0.59591","0.59591" +"GO:0030278","regulation of ossification",6,3,2.82,1308,"0.59733","0.59612","0.59612" +"GO:0002262","myeloid cell homeostasis",12,6,5.63,1222,"0.52795","0.59790","0.59790" +"GO:0030218","erythrocyte differentiation",12,6,5.63,1223,"0.52795","0.59790","0.59790" +"GO:0034101","erythrocyte homeostasis",12,6,5.63,1224,"0.52795","0.59790","0.59790" +"GO:0071772","response to BMP",8,2,3.75,2300,"0.94950","0.59825","0.59825" +"GO:0071773","cellular response to BMP stimulus",8,2,3.75,2301,"0.94950","0.59825","0.59825" +"GO:0001824","blastocyst development",4,2,1.88,1409,"0.64033","0.59938","0.59938" +"GO:0045927","positive regulation of growth",8,4,3.75,1255,"0.56804","0.60163","0.60163" +"GO:0010631","epithelial cell migration",14,7,6.57,1209,"0.51290","0.60168","0.60168" +"GO:0090407","organophosphate biosynthetic process",67,39,31.45,145,"0.04015","0.04228","0.60244" +"GO:0060541","respiratory system development",25,11,11.73,1506,"0.68884","0.60401","0.60401" +"GO:0017145","stem cell division",7,3,3.29,1556,"0.72046","0.60516","0.60516" +"GO:0030516","regulation of axon extension",6,3,2.82,1309,"0.59733","0.60585","0.60585" +"GO:0046879","hormone secretion",15,8,7.04,833,"0.40432","0.60662","0.60662" +"GO:0034599","cellular response to oxidative stress",16,4,7.51,2535,"0.98067","0.60701","0.60701" +"GO:0099504","synaptic vesicle cycle",16,8,7.51,1198,"0.49988","0.60701","0.60701" +"GO:0045599","negative regulation of fat cell differen...",3,1,1.41,1822,"0.85074","0.60807","0.60807" +"GO:0051591","response to cAMP",5,2,2.35,1612,"0.77210","0.60839","0.60839" +"GO:1901655","cellular response to ketone",5,1,2.35,2359,"0.95807","0.60839","0.60839" +"GO:0007391","dorsal closure",4,2,1.88,1410,"0.64033","0.60844","0.60844" +"GO:0048870","cell motility",54,26,25.35,1180,"0.48198","0.60895","0.60895" +"GO:0051674","localization of cell",54,26,25.35,1181,"0.48198","0.60895","0.60895" +"GO:0051224","negative regulation of protein transport",7,4,3.29,882,"0.43316","0.60895","0.60895" +"GO:1904950","negative regulation of establishment of ...",7,4,3.29,883,"0.43316","0.60895","0.60895" +"GO:0051385","response to mineralocorticoid",4,2,1.88,1411,"0.64033","0.60939","0.60939" +"GO:0009268","response to pH",3,2,1.41,1134,"0.45409","0.60945","0.60945" +"GO:0040013","negative regulation of locomotion",10,6,4.69,770,"0.30388","0.60980","0.60980" +"GO:0010810","regulation of cell-substrate adhesion",5,3,2.35,946,"0.44266","0.61010","0.61010" +"GO:0051336","regulation of hydrolase activity",53,24,24.88,1463,"0.64801","0.61014","0.61014" +"GO:0030032","lamellipodium assembly",3,2,1.41,1135,"0.45409","0.61165","0.61165" +"GO:0051491","positive regulation of filopodium assemb...",3,2,1.41,1136,"0.45409","0.61165","0.61165" +"GO:0097581","lamellipodium organization",3,2,1.41,1137,"0.45409","0.61165","0.61165" +"GO:0002088","lens development in camera-type eye",4,1,1.88,2189,"0.92088","0.61273","0.61273" +"GO:0048515","spermatid differentiation",19,12,8.92,389,"0.11675","0.13525","0.61301" +"GO:0009119","ribonucleoside metabolic process",8,5,3.75,754,"0.29827","0.61344","0.61344" +"GO:0008354","germ cell migration",3,0,1.41,2830,"1.00000","0.61358","0.61358" +"GO:0001707","mesoderm formation",6,1,2.82,2479,"0.97779","0.61364","0.61364" +"GO:0048332","mesoderm morphogenesis",6,1,2.82,2480,"0.97779","0.61364","0.61364" +"GO:0006954","inflammatory response",12,3,5.63,2440,"0.96878","0.61417","0.61417" +"GO:0019220","regulation of phosphate metabolic proces...",71,37,33.32,569,"0.22171","0.61535","0.61535" +"GO:0051174","regulation of phosphorus metabolic proce...",71,37,33.32,570,"0.22171","0.61535","0.61535" +"GO:0010562","positive regulation of phosphorus metabo...",30,15,14.08,900,"0.43745","0.61714","0.61714" +"GO:0045937","positive regulation of phosphate metabol...",30,15,14.08,901,"0.43745","0.61714","0.61714" +"GO:0032868","response to insulin",5,3,2.35,947,"0.44266","0.61735","0.61735" +"GO:0032869","cellular response to insulin stimulus",5,3,2.35,948,"0.44266","0.61735","0.61735" +"GO:0019722","calcium-mediated signaling",9,3,4.22,2046,"0.87659","0.61771","0.61771" +"GO:0006775","fat-soluble vitamin metabolic process",3,2,1.41,1138,"0.45409","0.61798","0.61798" +"GO:0120009","intermembrane lipid transfer",3,1,1.41,1823,"0.85074","0.61798","0.61798" +"GO:0008306","associative learning",6,2,2.82,1979,"0.85949","0.61871","0.61871" +"GO:0002768","immune response-regulating cell surface ...",6,1,2.82,2481,"0.97779","0.61948","0.61948" +"GO:0048806","genitalia development",6,2,2.82,1980,"0.85949","0.61948","0.61948" +"GO:0043542","endothelial cell migration",6,3,2.82,1310,"0.59733","0.62065","0.62065" +"GO:0051017","actin filament bundle assembly",6,3,2.82,1311,"0.59733","0.62065","0.62065" +"GO:0051321","meiotic cell cycle",19,7,8.92,2028,"0.86815","0.62103","0.62103" +"GO:1903046","meiotic cell cycle process",19,7,8.92,2029,"0.86815","0.62103","0.62103" +"GO:0070584","mitochondrion morphogenesis",3,2,1.41,1139,"0.45409","0.62156","0.62156" +"GO:1901987","regulation of cell cycle phase transitio...",9,4,4.22,1498,"0.68258","0.62200","0.62200" +"GO:0045815","positive regulation of gene expression, ...",6,2,2.82,1981,"0.85949","0.62221","0.62221" +"GO:0006887","exocytosis",24,13,11.26,771,"0.30524","0.62245","0.62245" +"GO:0046785","microtubule polymerization",8,3,3.75,1719,"0.81192","0.62254","0.62254" +"GO:0045934","negative regulation of nucleobase-contai...",77,31,36.14,2104,"0.90500","0.62281","0.62281" +"GO:0031033","myosin filament organization",3,1,1.41,1824,"0.85074","0.62348","0.62348" +"GO:0017144","drug metabolic process",117,80,54.92,1,"1.4e-06","6.0e-07","0.62374" +"GO:0007286","spermatid development",18,11,8.45,477,"0.16550","0.10633","0.62406" +"GO:0060042","retina morphogenesis in camera-type eye",12,4,5.63,2083,"0.89314","0.62602","0.62602" +"GO:0016055","Wnt signaling pathway",27,13,12.67,1215,"0.52506","0.62612","0.62612" +"GO:0002066","columnar/cuboidal epithelial cell develo...",15,5,7.04,2108,"0.90780","0.62636","0.62636" +"GO:0034504","protein localization to nucleus",15,4,7.04,2444,"0.96974","0.62636","0.62636" +"GO:0035690","cellular response to drug",15,4,7.04,2445,"0.96974","0.62636","0.62636" +"GO:0043902","positive regulation of multi-organism pr...",15,6,7.04,1703,"0.78678","0.62636","0.62636" +"GO:0050727","regulation of inflammatory response",4,2,1.88,1412,"0.64033","0.62703","0.62703" +"GO:0051098","regulation of binding",18,10,8.45,794,"0.30848","0.62723","0.62723" +"GO:0060538","skeletal muscle organ development",22,9,10.33,1699,"0.78242","0.62724","0.62724" +"GO:0007528","neuromuscular junction development",8,2,3.75,2302,"0.94950","0.62726","0.62726" +"GO:0048640","negative regulation of developmental gro...",8,3,3.75,1720,"0.81192","0.62726","0.62726" +"GO:0008630","intrinsic apoptotic signaling pathway in...",5,2,2.35,1613,"0.77210","0.62758","0.62758" +"GO:0042493","response to drug",53,21,24.88,2074,"0.88866","0.62806","0.62806" +"GO:1901068","guanosine-containing compound metabolic ...",3,2,1.41,1140,"0.45409","0.62843","0.62843" +"GO:1901070","guanosine-containing compound biosynthet...",3,2,1.41,1141,"0.45409","0.62843","0.62843" +"GO:0017157","regulation of exocytosis",5,2,2.35,1614,"0.77210","0.62971","0.62971" +"GO:0006612","protein targeting to membrane",8,3,3.75,1721,"0.81192","0.62996","0.62996" +"GO:0007444","imaginal disc development",14,6,6.57,1527,"0.71523","0.63002","0.63002" +"GO:0006544","glycine metabolic process",3,1,1.41,1825,"0.85074","0.63008","0.63008" +"GO:0042737","drug catabolic process",3,2,1.41,1142,"0.45409","0.63008","0.63008" +"GO:0034314","Arp2/3 complex-mediated actin nucleation",7,4,3.29,884,"0.43316","0.63130","0.63130" +"GO:0045931","positive regulation of mitotic cell cycl...",8,4,3.75,1256,"0.56804","0.63131","0.63131" +"GO:0090257","regulation of muscle system process",14,6,6.57,1528,"0.71523","0.63155","0.63155" +"GO:0046330","positive regulation of JNK cascade",4,2,1.88,1413,"0.64033","0.63226","0.63226" +"GO:0050793","regulation of developmental process",132,71,61.96,211,"0.06310","0.10006","0.63578" +"GO:0009891","positive regulation of biosynthetic proc...",67,32,31.45,1190,"0.49383","0.63600","0.63600" +"GO:0071786","endoplasmic reticulum tubular network or...",4,2,1.88,1414,"0.64033","0.63607","0.63607" +"GO:1901021","positive regulation of calcium ion trans...",3,1,1.41,1826,"0.85074","0.63612","0.63612" +"GO:1904427","positive regulation of calcium ion trans...",3,1,1.41,1827,"0.85074","0.63612","0.63612" +"GO:0009628","response to abiotic stimulus",86,44,40.37,606,"0.24515","0.36846","0.63683" +"GO:0006952","defense response",54,25,25.35,1286,"0.59102","0.63789","0.63789" +"GO:0000077","DNA damage checkpoint",5,1,2.35,2360,"0.95807","0.63822","0.63822" +"GO:0000002","mitochondrial genome maintenance",3,1,1.41,1828,"0.85074","0.63859","0.63859" +"GO:0018105","peptidyl-serine phosphorylation",3,1,1.41,1829,"0.85074","0.63859","0.63859" +"GO:0033135","regulation of peptidyl-serine phosphoryl...",3,1,1.41,1830,"0.85074","0.63859","0.63859" +"GO:0033138","positive regulation of peptidyl-serine p...",3,1,1.41,1831,"0.85074","0.63859","0.63859" +"GO:0051881","regulation of mitochondrial membrane pot...",3,2,1.41,1143,"0.45409","0.63859","0.63859" +"GO:0051253","negative regulation of RNA metabolic pro...",72,30,33.79,1779,"0.84823","0.63908","0.63908" +"GO:1902679","negative regulation of RNA biosynthetic ...",72,30,33.79,1780,"0.84823","0.63908","0.63908" +"GO:1903507","negative regulation of nucleic acid-temp...",72,30,33.79,1781,"0.84823","0.63908","0.63908" +"GO:0006508","proteolysis",180,78,84.49,2020,"0.86050","0.63930","0.63930" +"GO:0007030","Golgi organization",13,6,6.1,1336,"0.62852","0.63950","0.63950" +"GO:0007018","microtubule-based movement",28,8,13.14,2562,"0.98566","0.63990","0.63990" +"GO:0045214","sarcomere organization",12,6,5.63,1225,"0.52795","0.64005","0.64005" +"GO:0007029","endoplasmic reticulum organization",8,4,3.75,1257,"0.56804","0.64006","0.64006" +"GO:2000278","regulation of DNA biosynthetic process",5,3,2.35,949,"0.44266","0.64099","0.64099" +"GO:0120034","positive regulation of plasma membrane b...",7,4,3.29,885,"0.43316","0.64137","0.64137" +"GO:0045321","leukocyte activation",23,12,10.8,815,"0.38261","0.64226","0.64226" +"GO:0070925","organelle assembly",79,31,37.08,2288,"0.93469","0.64258","0.64258" +"GO:0031960","response to corticosteroid",7,3,3.29,1557,"0.72046","0.64353","0.64353" +"GO:0006213","pyrimidine nucleoside metabolic process",4,2,1.88,1415,"0.64033","0.64463","0.64463" +"GO:0046131","pyrimidine ribonucleoside metabolic proc...",4,2,1.88,1416,"0.64033","0.64463","0.64463" +"GO:0043010","camera-type eye development",38,19,17.84,844,"0.41286","0.64483","0.64483" +"GO:1903169","regulation of calcium ion transmembrane ...",7,4,3.29,886,"0.43316","0.64514","0.64514" +"GO:0006796","phosphate-containing compound metabolic ...",350,178,164.28,212,"0.06374","0.19749","0.64578" +"GO:0099003","vesicle-mediated transport in synapse",14,6,6.57,1529,"0.71523","0.64631","0.64631" +"GO:0002224","toll-like receptor signaling pathway",4,2,1.88,1417,"0.64033","0.64653","0.64653" +"GO:0045494","photoreceptor cell maintenance",3,0,1.41,2831,"1.00000","0.64655","0.64655" +"GO:0010563","negative regulation of phosphorus metabo...",32,16,15.02,865,"0.43082","0.64680","0.64680" +"GO:0045936","negative regulation of phosphate metabol...",32,16,15.02,866,"0.43082","0.64680","0.64680" +"GO:0051129","negative regulation of cellular componen...",52,20,24.41,2155,"0.91652","0.64703","0.64703" +"GO:0006865","amino acid transport",14,5,6.57,2025,"0.86746","0.64733","0.64733" +"GO:0030326","embryonic limb morphogenesis",7,3,3.29,1558,"0.72046","0.64801","0.64801" +"GO:0035113","embryonic appendage morphogenesis",7,3,3.29,1559,"0.72046","0.64801","0.64801" +"GO:0030150","protein import into mitochondrial matrix",3,1,1.41,1832,"0.85074","0.64819","0.64819" +"GO:0043462","regulation of ATPase activity",8,4,3.75,1258,"0.56804","0.64880","0.64880" +"GO:0001649","osteoblast differentiation",5,2,2.35,1615,"0.77210","0.64991","0.64991" +"GO:2001235","positive regulation of apoptotic signali...",8,4,3.75,1259,"0.56804","0.65081","0.65081" +"GO:0006637","acyl-CoA metabolic process",6,3,2.82,1312,"0.59733","0.65095","0.65095" +"GO:0035383","thioester metabolic process",6,3,2.82,1313,"0.59733","0.65095","0.65095" +"GO:0031058","positive regulation of histone modificat...",5,2,2.35,1616,"0.77210","0.65118","0.65118" +"GO:0031935","regulation of chromatin silencing",5,2,2.35,1617,"0.77210","0.65118","0.65118" +"GO:0031936","negative regulation of chromatin silenci...",5,2,2.35,1618,"0.77210","0.65118","0.65118" +"GO:0060968","regulation of gene silencing",5,2,2.35,1619,"0.77210","0.65118","0.65118" +"GO:0060969","negative regulation of gene silencing",5,2,2.35,1620,"0.77210","0.65118","0.65118" +"GO:1905269","positive regulation of chromatin organiz...",5,2,2.35,1621,"0.77210","0.65118","0.65118" +"GO:0007264","small GTPase mediated signal transductio...",51,25,23.94,896,"0.43569","0.65257","0.65257" +"GO:0030968","endoplasmic reticulum unfolded protein r...",6,2,2.82,1982,"0.85949","0.65328","0.65328" +"GO:0034620","cellular response to unfolded protein",6,2,2.82,1983,"0.85949","0.65328","0.65328" +"GO:0007519","skeletal muscle tissue development",20,9,9.39,1473,"0.65310","0.65463","0.65463" +"GO:0007049","cell cycle",106,44,49.75,2092,"0.89335","0.65571","0.65571" +"GO:0035160","maintenance of epithelial integrity, ope...",3,1,1.41,1833,"0.85074","0.65667","0.65667" +"GO:0050848","regulation of calcium-mediated signaling",4,2,1.88,1418,"0.64033","0.65885","0.65885" +"GO:1902041","regulation of extrinsic apoptotic signal...",4,2,1.88,1419,"0.64033","0.65885","0.65885" +"GO:0009880","embryonic pattern specification",8,3,3.75,1722,"0.81192","0.65953","0.65953" +"GO:0072329","monocarboxylic acid catabolic process",5,2,2.35,1622,"0.77210","0.65965","0.65965" +"GO:0045598","regulation of fat cell differentiation",5,2,2.35,1623,"0.77210","0.66050","0.66050" +"GO:0006888","ER to Golgi vesicle-mediated transport",14,8,6.57,792,"0.30834","0.66078","0.66078" +"GO:0051649","establishment of localization in cell",178,78,83.55,1754,"0.82677","0.66087","0.66087" +"GO:0009746","response to hexose",5,2,2.35,1624,"0.77210","0.66113","0.66113" +"GO:0009749","response to glucose",5,2,2.35,1625,"0.77210","0.66113","0.66113" +"GO:0016239","positive regulation of macroautophagy",5,2,2.35,1626,"0.77210","0.66113","0.66113" +"GO:0034284","response to monosaccharide",5,2,2.35,1627,"0.77210","0.66113","0.66113" +"GO:0071322","cellular response to carbohydrate stimul...",5,2,2.35,1628,"0.77210","0.66113","0.66113" +"GO:0061572","actin filament bundle organization",7,4,3.29,887,"0.43316","0.66145","0.66145" +"GO:0042052","rhabdomere development",3,1,1.41,1834,"0.85074","0.66159","0.66159" +"GO:0051972","regulation of telomerase activity",3,1,1.41,1835,"0.85074","0.66159","0.66159" +"GO:0060491","regulation of cell projection assembly",18,9,8.45,1184,"0.48837","0.66314","0.66314" +"GO:0120032","regulation of plasma membrane bounded ce...",18,9,8.45,1185,"0.48837","0.66314","0.66314" +"GO:0044093","positive regulation of molecular functio...",73,32,34.26,1590,"0.74405","0.66398","0.66398" +"GO:0051187","cofactor catabolic process",6,3,2.82,1314,"0.59733","0.66410","0.66410" +"GO:0042327","positive regulation of phosphorylation",29,14,13.61,1213,"0.51509","0.66473","0.66473" +"GO:0051124","synaptic growth at neuromuscular junctio...",7,2,3.29,2127,"0.91510","0.66502","0.66502" +"GO:0031016","pancreas development",3,1,1.41,1836,"0.85074","0.66541","0.66541" +"GO:0015711","organic anion transport",31,12,14.55,2023,"0.86560","0.66579","0.66579" +"GO:0006470","protein dephosphorylation",27,10,12.67,2076,"0.89138","0.66584","0.66584" +"GO:0030707","ovarian follicle cell development",13,3,6.1,2539,"0.98079","0.66689","0.66689" +"GO:0045807","positive regulation of endocytosis",13,4,6.1,2275,"0.92872","0.66689","0.66689" +"GO:0009888","tissue development",131,67,61.49,505,"0.18369","0.16615","0.66699" +"GO:0010558","negative regulation of macromolecule bio...",80,32,37.55,2154,"0.91623","0.66811","0.66811" +"GO:0006082","organic acid metabolic process",99,54,46.47,234,"0.07439","0.14936","0.66829" +"GO:0043436","oxoacid metabolic process",99,54,46.47,235,"0.07439","0.14936","0.66829" +"GO:0002695","negative regulation of leukocyte activat...",3,1,1.41,1837,"0.85074","0.66868","0.66868" +"GO:0045639","positive regulation of myeloid cell diff...",3,1,1.41,1838,"0.85074","0.66868","0.66868" +"GO:0045648","positive regulation of erythrocyte diffe...",3,1,1.41,1839,"0.85074","0.66868","0.66868" +"GO:0050866","negative regulation of cell activation",3,1,1.41,1840,"0.85074","0.66868","0.66868" +"GO:0051250","negative regulation of lymphocyte activa...",3,1,1.41,1841,"0.85074","0.66868","0.66868" +"GO:0006265","DNA topological change",3,0,1.41,2832,"1.00000","0.66868","0.66868" +"GO:0035329","hippo signaling",7,2,3.29,2128,"0.91510","0.66877","0.66877" +"GO:0043934","sporulation",7,2,3.29,2129,"0.91510","0.66877","0.66877" +"GO:0048507","meristem development",7,1,3.29,2571,"0.98824","0.66877","0.66877" +"GO:0008104","protein localization",198,89,92.93,1591,"0.74429","0.64765","0.66916" +"GO:0061982","meiosis I cell cycle process",5,2,2.35,1629,"0.77210","0.66958","0.66958" +"GO:0090317","negative regulation of intracellular pro...",4,2,1.88,1420,"0.64033","0.66971","0.66971" +"GO:0045926","negative regulation of growth",21,9,9.86,1575,"0.72276","0.66972","0.66972" +"GO:0000187","activation of MAPK activity",5,2,2.35,1630,"0.77210","0.67106","0.67106" +"GO:0002831","regulation of response to biotic stimulu...",5,2,2.35,1631,"0.77210","0.67106","0.67106" +"GO:0010770","positive regulation of cell morphogenesi...",5,2,2.35,1632,"0.77210","0.67106","0.67106" +"GO:0018958","phenol-containing compound metabolic pro...",5,2,2.35,1633,"0.77210","0.67106","0.67106" +"GO:0048645","animal organ formation",5,2,2.35,1634,"0.77210","0.67106","0.67106" +"GO:0071260","cellular response to mechanical stimulus",5,2,2.35,1635,"0.77210","0.67106","0.67106" +"GO:0019827","stem cell population maintenance",10,3,4.69,2166,"0.92067","0.67114","0.67114" +"GO:0098727","maintenance of cell number",10,3,4.69,2167,"0.92067","0.67114","0.67114" +"GO:0045892","negative regulation of transcription, DN...",71,29,33.32,2059,"0.87799","0.67136","0.67136" +"GO:0001932","regulation of protein phosphorylation",57,29,26.75,796,"0.31908","0.67193","0.67193" +"GO:0043200","response to amino acid",4,1,1.88,2190,"0.92088","0.67207","0.67207" +"GO:0060219","camera-type eye photoreceptor cell diffe...",4,1,1.88,2191,"0.92088","0.67207","0.67207" +"GO:0071242","cellular response to ammonium ion",4,1,1.88,2192,"0.92088","0.67207","0.67207" +"GO:0051289","protein homotetramerization",4,0,1.88,2833,"1.00000","0.67207","0.67207" +"GO:0070534","protein K63-linked ubiquitination",7,2,3.29,2130,"0.91510","0.67430","0.67430" +"GO:0032527","protein exit from endoplasmic reticulum",6,2,2.82,1984,"0.85949","0.67450","0.67450" +"GO:0043406","positive regulation of MAP kinase activi...",8,4,3.75,1260,"0.56804","0.67455","0.67455" +"GO:0071902","positive regulation of protein serine/th...",8,4,3.75,1261,"0.56804","0.67455","0.67455" +"GO:0009199","ribonucleoside triphosphate metabolic pr...",44,27,20.65,141,"0.03733","0.01818","0.67471" +"GO:0009205","purine ribonucleoside triphosphate metab...",44,27,20.65,142,"0.03733","0.01818","0.67471" +"GO:0032872","regulation of stress-activated MAPK casc...",10,4,4.69,1681,"0.77373","0.67502","0.67502" +"GO:0070302","regulation of stress-activated protein k...",10,4,4.69,1682,"0.77373","0.67502","0.67502" +"GO:0010639","negative regulation of organelle organiz...",28,13,13.14,1288,"0.59490","0.67530","0.67530" +"GO:1901654","response to ketone",13,3,6.1,2540,"0.98079","0.67710","0.67710" +"GO:0034613","cellular protein localization",151,66,70.87,1750,"0.81677","0.65523","0.67944" +"GO:0070727","cellular macromolecule localization",151,66,70.87,1751,"0.81677","0.65523","0.67944" +"GO:0030261","chromosome condensation",4,1,1.88,2193,"0.92088","0.68006","0.68006" +"GO:0034728","nucleosome organization",10,4,4.69,1683,"0.77373","0.68067","0.68067" +"GO:0003407","neural retina development",11,4,5.16,1762,"0.84280","0.68128","0.68128" +"GO:0048522","positive regulation of cellular process",273,131,128.14,813,"0.38047","0.68133","0.68133" +"GO:0008643","carbohydrate transport",9,3,4.22,2047,"0.87659","0.68174","0.68174" +"GO:0008037","cell recognition",13,6,6.1,1337,"0.62852","0.68218","0.68218" +"GO:0022898","regulation of transmembrane transporter ...",20,10,9.39,1177,"0.47803","0.44821","0.68295" +"GO:0032409","regulation of transporter activity",20,10,9.39,1178,"0.47803","0.44821","0.68295" +"GO:0032412","regulation of ion transmembrane transpor...",20,10,9.39,1179,"0.47803","0.44821","0.68295" +"GO:0006595","polyamine metabolic process",3,2,1.41,1144,"0.45409","0.68306","0.68306" +"GO:0006596","polyamine biosynthetic process",3,2,1.41,1145,"0.45409","0.68306","0.68306" +"GO:0009309","amine biosynthetic process",3,2,1.41,1146,"0.45409","0.68306","0.68306" +"GO:0042401","cellular biogenic amine biosynthetic pro...",3,2,1.41,1147,"0.45409","0.68306","0.68306" +"GO:0046907","intracellular transport",160,65,75.1,2426,"0.95897","0.68529","0.68529" +"GO:0060070","canonical Wnt signaling pathway",15,8,7.04,834,"0.40432","0.68671","0.68671" +"GO:0051056","regulation of small GTPase mediated sign...",31,15,14.55,1204,"0.50578","0.68693","0.68693" +"GO:0031109","microtubule polymerization or depolymeri...",9,3,4.22,2048,"0.87659","0.68737","0.68737" +"GO:0048584","positive regulation of response to stimu...",98,41,46,2035,"0.87195","0.68746","0.68746" +"GO:0009914","hormone transport",16,8,7.51,1199,"0.49988","0.68751","0.68751" +"GO:0007269","neurotransmitter secretion",12,5,5.63,1581,"0.74210","0.68810","0.68810" +"GO:0099643","signal release from synapse",12,5,5.63,1582,"0.74210","0.68810","0.68810" +"GO:0002119","nematode larval development",3,1,1.41,1842,"0.85074","0.68847","0.68847" +"GO:0051148","negative regulation of muscle cell diffe...",3,1,1.41,1843,"0.85074","0.68847","0.68847" +"GO:0002429","immune response-activating cell surface ...",4,1,1.88,2194,"0.92088","0.68897","0.68897" +"GO:0002526","acute inflammatory response",4,2,1.88,1421,"0.64033","0.68897","0.68897" +"GO:1902229","regulation of intrinsic apoptotic signal...",4,1,1.88,2195,"0.92088","0.68897","0.68897" +"GO:0043624","cellular protein complex disassembly",22,4,10.33,2734,"0.99893","0.68955","0.68955" +"GO:0090090","negative regulation of canonical Wnt sig...",6,3,2.82,1315,"0.59733","0.68982","0.68982" +"GO:0046834","lipid phosphorylation",4,2,1.88,1422,"0.64033","0.68990","0.68990" +"GO:0046854","phosphatidylinositol phosphorylation",4,2,1.88,1423,"0.64033","0.68990","0.68990" +"GO:0017156","calcium ion regulated exocytosis",4,2,1.88,1424,"0.64033","0.69083","0.69083" +"GO:0006939","smooth muscle contraction",5,2,2.35,1636,"0.77210","0.69267","0.69267" +"GO:0002792","negative regulation of peptide secretion",3,2,1.41,1148,"0.45409","0.69279","0.69279" +"GO:0050709","negative regulation of protein secretion",3,2,1.41,1149,"0.45409","0.69279","0.69279" +"GO:0007622","rhythmic behavior",3,0,1.41,2834,"1.00000","0.69386","0.69386" +"GO:0048512","circadian behavior",3,0,1.41,2835,"1.00000","0.69386","0.69386" +"GO:0009112","nucleobase metabolic process",3,0,1.41,2836,"1.00000","0.69467","0.69467" +"GO:0046112","nucleobase biosynthetic process",3,0,1.41,2837,"1.00000","0.69467","0.69467" +"GO:0070979","protein K11-linked ubiquitination",4,2,1.88,1425,"0.64033","0.69503","0.69503" +"GO:0043900","regulation of multi-organism process",25,8,11.73,2358,"0.95769","0.69527","0.69527" +"GO:0006094","gluconeogenesis",5,2,2.35,1637,"0.77210","0.69684","0.69684" +"GO:0019319","hexose biosynthetic process",5,2,2.35,1638,"0.77210","0.69684","0.69684" +"GO:0046364","monosaccharide biosynthetic process",5,2,2.35,1639,"0.77210","0.69684","0.69684" +"GO:0006836","neurotransmitter transport",25,12,11.73,1227,"0.53581","0.69724","0.69724" +"GO:0033500","carbohydrate homeostasis",11,5,5.16,1468,"0.65287","0.69793","0.69793" +"GO:0034762","regulation of transmembrane transport",28,14,13.14,955,"0.44448","0.44455","0.69804" +"GO:0007498","mesoderm development",13,4,6.1,2276,"0.92872","0.70048","0.70048" +"GO:0007413","axonal fasciculation",4,1,1.88,2196,"0.92088","0.70062","0.70062" +"GO:0031102","neuron projection regeneration",4,1,1.88,2197,"0.92088","0.70062","0.70062" +"GO:0106030","neuron projection fasciculation",4,1,1.88,2198,"0.92088","0.70062","0.70062" +"GO:0007350","blastoderm segmentation",4,1,1.88,2199,"0.92088","0.70201","0.70201" +"GO:0032436","positive regulation of proteasomal ubiqu...",7,2,3.29,2131,"0.91510","0.70224","0.70224" +"GO:2000060","positive regulation of ubiquitin-depende...",7,2,3.29,2132,"0.91510","0.70224","0.70224" +"GO:1903311","regulation of mRNA metabolic process",12,1,5.63,2755,"0.99951","0.70265","0.70265" +"GO:0071383","cellular response to steroid hormone sti...",23,8,10.8,2157,"0.91797","0.70350","0.70350" +"GO:0006401","RNA catabolic process",19,2,8.92,2769,"0.99990","0.70353","0.70353" +"GO:0006402","mRNA catabolic process",19,2,8.92,2770,"0.99990","0.70353","0.70353" +"GO:0006904","vesicle docking involved in exocytosis",5,3,2.35,950,"0.44266","0.70494","0.70494" +"GO:0048278","vesicle docking",5,3,2.35,951,"0.44266","0.70494","0.70494" +"GO:0008582","regulation of synaptic growth at neuromu...",6,1,2.82,2482,"0.97779","0.70503","0.70503" +"GO:1904396","regulation of neuromuscular junction dev...",6,1,2.82,2483,"0.97779","0.70503","0.70503" +"GO:0051899","membrane depolarization",6,3,2.82,1316,"0.59733","0.70730","0.70730" +"GO:0032506","cytokinetic process",6,1,2.82,2484,"0.97779","0.70843","0.70843" +"GO:0048229","gametophyte development",6,1,2.82,2485,"0.97779","0.70843","0.70843" +"GO:0031338","regulation of vesicle fusion",4,2,1.88,1426,"0.64033","0.70942","0.70942" +"GO:0090630","activation of GTPase activity",4,2,1.88,1427,"0.64033","0.70942","0.70942" +"GO:0016579","protein deubiquitination",15,4,7.04,2446,"0.96974","0.70994","0.70994" +"GO:0002697","regulation of immune effector process",11,4,5.16,1763,"0.84280","0.70997","0.70997" +"GO:0007606","sensory perception of chemical stimulus",11,3,5.16,2326,"0.94987","0.70997","0.70997" +"GO:0014823","response to activity",11,4,5.16,1764,"0.84280","0.70997","0.70997" +"GO:0032886","regulation of microtubule-based process",11,3,5.16,2327,"0.94987","0.70997","0.70997" +"GO:0045471","response to ethanol",11,4,5.16,1765,"0.84280","0.70997","0.70997" +"GO:0051783","regulation of nuclear division",11,4,5.16,1766,"0.84280","0.70997","0.70997" +"GO:0044272","sulfur compound biosynthetic process",8,4,3.75,1262,"0.56804","0.71086","0.71086" +"GO:0006793","phosphorus metabolic process",352,178,165.22,242,"0.07888","0.23965","0.71245" +"GO:0051261","protein depolymerization",14,4,6.57,2342,"0.95323","0.71312","0.71312" +"GO:0006778","porphyrin-containing compound metabolic ...",5,1,2.35,2361,"0.95807","0.71362","0.71362" +"GO:0030178","negative regulation of Wnt signaling pat...",8,4,3.75,1263,"0.56804","0.71380","0.71380" +"GO:0050790","regulation of catalytic activity",98,48,46,809,"0.37765","0.71594","0.71594" +"GO:0006084","acetyl-CoA metabolic process",3,2,1.41,1150,"0.45409","0.71606","0.71606" +"GO:0035384","thioester biosynthetic process",3,2,1.41,1151,"0.45409","0.71606","0.71606" +"GO:0071616","acyl-CoA biosynthetic process",3,2,1.41,1152,"0.45409","0.71606","0.71606" +"GO:0042325","regulation of phosphorylation",66,33,30.98,800,"0.35121","0.71756","0.71756" +"GO:0000079","regulation of cyclin-dependent protein s...",3,2,1.41,1153,"0.45409","0.71765","0.71765" +"GO:0043123","positive regulation of I-kappaB kinase/N...",4,1,1.88,2200,"0.92088","0.71818","0.71818" +"GO:0072527","pyrimidine-containing compound metabolic...",9,4,4.22,1499,"0.68258","0.71894","0.71894" +"GO:0009141","nucleoside triphosphate metabolic proces...",46,27,21.59,228,"0.07171","0.03798","0.72086" +"GO:0071559","response to transforming growth factor b...",15,5,7.04,2109,"0.90780","0.72113","0.72113" +"GO:0071560","cellular response to transforming growth...",15,5,7.04,2110,"0.90780","0.72113","0.72113" +"GO:0001935","endothelial cell proliferation",7,4,3.29,888,"0.43316","0.72178","0.72178" +"GO:0050680","negative regulation of epithelial cell p...",7,3,3.29,1560,"0.72046","0.72178","0.72178" +"GO:0044772","mitotic cell cycle phase transition",20,6,9.39,2431,"0.96199","0.72189","0.72189" +"GO:0048569","post-embryonic animal organ development",12,5,5.63,1583,"0.74210","0.72212","0.72212" +"GO:0009109","coenzyme catabolic process",3,2,1.41,1154,"0.45409","0.72321","0.72321" +"GO:0046034","ATP metabolic process",42,26,19.71,135,"0.03554","0.01944","0.72342" +"GO:0043269","regulation of ion transport",35,18,16.43,802,"0.35647","0.60647","0.72378" +"GO:0035821","modification of morphology or physiology...",6,1,2.82,2486,"0.97779","0.72384","0.72384" +"GO:0044788","modulation by host of viral process",6,1,2.82,2487,"0.97779","0.72384","0.72384" +"GO:0044794","positive regulation by host of viral pro...",6,1,2.82,2488,"0.97779","0.72384","0.72384" +"GO:0044827","modulation by host of viral genome repli...",6,1,2.82,2489,"0.97779","0.72384","0.72384" +"GO:0044829","positive regulation by host of viral gen...",6,1,2.82,2490,"0.97779","0.72384","0.72384" +"GO:0051702","interaction with symbiont",6,1,2.82,2491,"0.97779","0.72384","0.72384" +"GO:0051817","modification of morphology or physiology...",6,1,2.82,2492,"0.97779","0.72384","0.72384" +"GO:0051851","modification by host of symbiont morphol...",6,1,2.82,2493,"0.97779","0.72384","0.72384" +"GO:0007034","vacuolar transport",23,6,10.8,2616,"0.98856","0.72481","0.72481" +"GO:0098542","defense response to other organism",23,10,10.8,1520,"0.70510","0.72529","0.72529" +"GO:0051640","organelle localization",41,21,19.24,799,"0.34522","0.72530","0.72530" +"GO:0021692","cerebellar Purkinje cell layer morphogen...",3,2,1.41,1155,"0.45409","0.72559","0.72559" +"GO:0021696","cerebellar cortex morphogenesis",3,2,1.41,1156,"0.45409","0.72559","0.72559" +"GO:0044403","symbiont process",22,6,10.33,2549,"0.98274","0.72654","0.72654" +"GO:0002920","regulation of humoral immune response",4,2,1.88,1428,"0.64033","0.72688","0.72688" +"GO:0019748","secondary metabolic process",4,2,1.88,1429,"0.64033","0.72688","0.72688" +"GO:0032231","regulation of actin filament bundle asse...",4,2,1.88,1430,"0.64033","0.72688","0.72688" +"GO:0035112","genitalia morphogenesis",4,1,1.88,2201,"0.92088","0.72688","0.72688" +"GO:0035215","genital disc development",4,1,1.88,2202,"0.92088","0.72688","0.72688" +"GO:0048520","positive regulation of behavior",4,1,1.88,2203,"0.92088","0.72688","0.72688" +"GO:0055088","lipid homeostasis",4,1,1.88,2204,"0.92088","0.72688","0.72688" +"GO:0090598","male anatomical structure morphogenesis",4,1,1.88,2205,"0.92088","0.72688","0.72688" +"GO:0010594","regulation of endothelial cell migration",4,2,1.88,1431,"0.64033","0.72779","0.72779" +"GO:0030038","contractile actin filament bundle assemb...",4,2,1.88,1432,"0.64033","0.72779","0.72779" +"GO:0043149","stress fiber assembly",4,2,1.88,1433,"0.64033","0.72779","0.72779" +"GO:0048639","positive regulation of developmental gro...",5,2,2.35,1640,"0.77210","0.72819","0.72819" +"GO:0040020","regulation of meiotic nuclear division",3,1,1.41,1844,"0.85074","0.72901","0.72901" +"GO:0051445","regulation of meiotic cell cycle",3,1,1.41,1845,"0.85074","0.72901","0.72901" +"GO:2000113","negative regulation of cellular macromol...",78,30,36.61,2339,"0.95003","0.72937","0.72937" +"GO:0051254","positive regulation of RNA metabolic pro...",65,31,30.51,1202,"0.49989","0.72953","0.72953" +"GO:0007009","plasma membrane organization",10,4,4.69,1684,"0.77373","0.72963","0.72963" +"GO:0032504","multicellular organism reproduction",72,32,33.79,1521,"0.70799","0.66253","0.73051" +"GO:0046165","alcohol biosynthetic process",5,3,2.35,952,"0.44266","0.73083","0.73083" +"GO:0000045","autophagosome assembly",8,3,3.75,1723,"0.81192","0.73098","0.73098" +"GO:1905037","autophagosome organization",8,3,3.75,1724,"0.81192","0.73098","0.73098" +"GO:0032101","regulation of response to external stimu...",18,6,8.45,2160,"0.92048","0.73126","0.73126" +"GO:0006606","protein import into nucleus",10,1,4.69,2719,"0.99826","0.73251","0.73251" +"GO:0006898","receptor-mediated endocytosis",10,4,4.69,1685,"0.77373","0.73251","0.73251" +"GO:0050764","regulation of phagocytosis",10,3,4.69,2168,"0.92067","0.73251","0.73251" +"GO:0071236","cellular response to antibiotic",10,3,4.69,2169,"0.92067","0.73251","0.73251" +"GO:1902882","regulation of response to oxidative stre...",10,3,4.69,2170,"0.92067","0.73251","0.73251" +"GO:2001023","regulation of response to drug",10,4,4.69,1686,"0.77373","0.73251","0.73251" +"GO:0010629","negative regulation of gene expression",104,38,48.81,2620,"0.98884","0.73268","0.73268" +"GO:0019752","carboxylic acid metabolic process",98,54,46,200,"0.06086","0.17674","0.73274" +"GO:0010821","regulation of mitochondrion organization",11,4,5.16,1767,"0.84280","0.73294","0.73294" +"GO:0032388","positive regulation of intracellular tra...",11,2,5.16,2622,"0.99005","0.73294","0.73294" +"GO:0060359","response to ammonium ion",8,1,3.75,2646,"0.99378","0.73451","0.73451" +"GO:0007618","mating",4,2,1.88,1434,"0.64033","0.73507","0.73507" +"GO:0046578","regulation of Ras protein signal transdu...",27,13,12.67,1216,"0.52506","0.73588","0.73588" +"GO:0032835","glomerulus development",5,2,2.35,1641,"0.77210","0.73591","0.73591" +"GO:0051604","protein maturation",18,8,8.45,1485,"0.67142","0.73640","0.73640" +"GO:2001234","negative regulation of apoptotic signali...",14,4,6.57,2343,"0.95323","0.73711","0.73711" +"GO:0002064","epithelial cell development",23,9,10.8,1758,"0.83213","0.73728","0.73728" +"GO:0016049","cell growth",30,14,14.08,1282,"0.58303","0.73775","0.73775" +"GO:0003333","amino acid transmembrane transport",13,5,6.1,1745,"0.81309","0.73808","0.73808" +"GO:1903321","negative regulation of protein modificat...",6,2,2.82,1985,"0.85949","0.73870","0.73870" +"GO:0009144","purine nucleoside triphosphate metabolic...",45,27,21.12,181,"0.05253","0.02664","0.73912" +"GO:0050794","regulation of cellular process",913,427,428.53,1249,"0.56662","0.73759","0.73917" +"GO:1901135","carbohydrate derivative metabolic proces...",174,89,81.67,435,"0.14122","0.00356","0.73924" +"GO:0050789","regulation of biological process",970,452,455.28,1333,"0.62139","0.72113","0.73947" +"GO:0001967","suckling behavior",3,2,1.41,1157,"0.45409","0.74053","0.74053" +"GO:0033260","nuclear DNA replication",3,2,1.41,1158,"0.45409","0.74053","0.74053" +"GO:0044786","cell cycle DNA replication",3,2,1.41,1159,"0.45409","0.74053","0.74053" +"GO:0009890","negative regulation of biosynthetic proc...",82,33,38.49,2121,"0.91144","0.74063","0.74063" +"GO:0031327","negative regulation of cellular biosynth...",82,33,38.49,2122,"0.91144","0.74063","0.74063" +"GO:0015931","nucleobase-containing compound transport",12,4,5.63,2084,"0.89314","0.74079","0.74079" +"GO:0001934","positive regulation of protein phosphory...",26,12,12.2,1327,"0.60768","0.74137","0.74137" +"GO:0030048","actin filament-based movement",3,1,1.41,1846,"0.85074","0.74235","0.74235" +"GO:0042711","maternal behavior",3,1,1.41,1847,"0.85074","0.74235","0.74235" +"GO:0060746","parental behavior",3,1,1.41,1848,"0.85074","0.74235","0.74235" +"GO:0086001","cardiac muscle cell action potential",3,1,1.41,1849,"0.85074","0.74235","0.74235" +"GO:0098739","import across plasma membrane",3,1,1.41,1850,"0.85074","0.74235","0.74235" +"GO:1902065","response to L-glutamate",3,1,1.41,1851,"0.85074","0.74235","0.74235" +"GO:0035725","sodium ion transmembrane transport",3,0,1.41,2838,"1.00000","0.74235","0.74235" +"GO:0071320","cellular response to cAMP",3,0,1.41,2839,"1.00000","0.74235","0.74235" +"GO:0032944","regulation of mononuclear cell prolifera...",5,2,2.35,1642,"0.77210","0.74238","0.74238" +"GO:0050670","regulation of lymphocyte proliferation",5,2,2.35,1643,"0.77210","0.74238","0.74238" +"GO:0070663","regulation of leukocyte proliferation",5,2,2.35,1644,"0.77210","0.74238","0.74238" +"GO:0048518","positive regulation of biological proces...",319,152,149.73,845,"0.41546","0.74328","0.74328" +"GO:1902532","negative regulation of intracellular sig...",32,10,15.02,2478,"0.97690","0.74393","0.74393" +"GO:0072521","purine-containing compound metabolic pro...",66,36,30.98,418,"0.12929","0.07872","0.74432" +"GO:0048015","phosphatidylinositol-mediated signaling",5,2,2.35,1645,"0.77210","0.74439","0.74439" +"GO:0048017","inositol lipid-mediated signaling",5,2,2.35,1646,"0.77210","0.74439","0.74439" +"GO:0009411","response to UV",6,3,2.82,1317,"0.59733","0.74532","0.74532" +"GO:1901568","fatty acid derivative metabolic process",4,1,1.88,2206,"0.92088","0.74545","0.74545" +"GO:0006334","nucleosome assembly",9,4,4.22,1500,"0.68258","0.74622","0.74622" +"GO:0010522","regulation of calcium ion transport into...",4,2,1.88,1435,"0.64033","0.74635","0.74635" +"GO:1901019","regulation of calcium ion transmembrane ...",4,1,1.88,2207,"0.92088","0.74635","0.74635" +"GO:0003254","regulation of membrane depolarization",5,2,2.35,1647,"0.77210","0.74720","0.74720" +"GO:0045930","negative regulation of mitotic cell cycl...",5,1,2.35,2362,"0.95807","0.74720","0.74720" +"GO:2000045","regulation of G1/S transition of mitotic...",5,2,2.35,1648,"0.77210","0.74720","0.74720" +"GO:0045886","negative regulation of synaptic growth a...",5,1,2.35,2363,"0.95807","0.74740","0.74740" +"GO:0051964","negative regulation of synapse assembly",5,1,2.35,2364,"0.95807","0.74740","0.74740" +"GO:1904397","negative regulation of neuromuscular jun...",5,1,2.35,2365,"0.95807","0.74740","0.74740" +"GO:1905809","negative regulation of synapse organizat...",5,1,2.35,2366,"0.95807","0.74740","0.74740" +"GO:0045921","positive regulation of exocytosis",3,2,1.41,1160,"0.45409","0.74754","0.74754" +"GO:0061025","membrane fusion",8,4,3.75,1264,"0.56804","0.74918","0.74918" +"GO:0007187","G protein-coupled receptor signaling pat...",4,2,1.88,1436,"0.64033","0.75038","0.75038" +"GO:0007188","adenylate cyclase-modulating G protein-c...",4,2,1.88,1437,"0.64033","0.75038","0.75038" +"GO:0033209","tumor necrosis factor-mediated signaling...",3,1,1.41,1852,"0.85074","0.75039","0.75039" +"GO:0035266","meristem growth",5,1,2.35,2367,"0.95807","0.75041","0.75041" +"GO:0110020","regulation of actomyosin structure organ...",5,2,2.35,1649,"0.77210","0.75041","0.75041" +"GO:1902600","proton transmembrane transport",24,17,11.26,80,"0.01525","0.00960","0.75157" +"GO:0030900","forebrain development",23,12,10.8,816,"0.38261","0.27540","0.75174" +"GO:0006941","striated muscle contraction",12,5,5.63,1584,"0.74210","0.75195","0.75195" +"GO:0018196","peptidyl-asparagine modification",6,2,2.82,1986,"0.85949","0.75446","0.75446" +"GO:0018279","protein N-linked glycosylation via aspar...",6,2,2.82,1987,"0.85949","0.75446","0.75446" +"GO:0040029","regulation of gene expression, epigeneti...",16,3,7.51,2678,"0.99579","0.75473","0.75473" +"GO:0070507","regulation of microtubule cytoskeleton o...",9,3,4.22,2049,"0.87659","0.75487","0.75487" +"GO:0051641","cellular localization",231,106,108.42,1480,"0.65655","0.73545","0.75499" +"GO:1905268","negative regulation of chromatin organiz...",9,4,4.22,1501,"0.68258","0.75502","0.75502" +"GO:0006629","lipid metabolic process",124,58,58.2,1243,"0.55076","0.75539","0.75539" +"GO:0008088","axo-dendritic transport",9,1,4.22,2683,"0.99671","0.75576","0.75576" +"GO:0036473","cell death in response to oxidative stre...",9,2,4.22,2452,"0.97033","0.75576","0.75576" +"GO:0048524","positive regulation of viral process",9,2,4.22,2453,"0.97033","0.75576","0.75576" +"GO:0097237","cellular response to toxic substance",9,2,4.22,2454,"0.97033","0.75576","0.75576" +"GO:0001558","regulation of cell growth",25,11,11.73,1507,"0.68884","0.75593","0.75593" +"GO:0010842","retina layer formation",5,2,2.35,1650,"0.77210","0.75599","0.75599" +"GO:0015988","energy coupled proton transmembrane tran...",13,6,6.1,1338,"0.62852","0.75615","0.75615" +"GO:0015991","ATP hydrolysis coupled proton transport",13,6,6.1,1339,"0.62852","0.75615","0.75615" +"GO:0090662","ATP hydrolysis coupled transmembrane tra...",13,6,6.1,1340,"0.62852","0.75615","0.75615" +"GO:0099131","ATP hydrolysis coupled ion transmembrane...",13,6,6.1,1341,"0.62852","0.75615","0.75615" +"GO:0099132","ATP hydrolysis coupled cation transmembr...",13,6,6.1,1342,"0.62852","0.75615","0.75615" +"GO:0097194","execution phase of apoptosis",3,1,1.41,1853,"0.85074","0.75630","0.75630" +"GO:0008652","cellular amino acid biosynthetic process",6,2,2.82,1988,"0.85949","0.75664","0.75664" +"GO:1901607","alpha-amino acid biosynthetic process",6,2,2.82,1989,"0.85949","0.75664","0.75664" +"GO:0016180","snRNA processing",3,2,1.41,1161,"0.45409","0.75682","0.75682" +"GO:0043628","ncRNA 3'-end processing",3,2,1.41,1162,"0.45409","0.75682","0.75682" +"GO:0051262","protein tetramerization",6,0,2.82,2840,"1.00000","0.75736","0.75736" +"GO:0097305","response to alcohol",22,7,10.33,2340,"0.95155","0.75777","0.75777" +"GO:0016079","synaptic vesicle exocytosis",3,1,1.41,1854,"0.85074","0.75784","0.75784" +"GO:0048791","calcium ion-regulated exocytosis of neur...",3,1,1.41,1855,"0.85074","0.75784","0.75784" +"GO:1990926","short-term synaptic potentiation",3,1,1.41,1856,"0.85074","0.75784","0.75784" +"GO:0061458","reproductive system development",36,17,16.9,1244,"0.55169","0.75796","0.75796" +"GO:0048545","response to steroid hormone",34,11,15.96,2466,"0.97192","0.75850","0.75850" +"GO:0045070","positive regulation of viral genome repl...",7,1,3.29,2572,"0.98824","0.75913","0.75913" +"GO:1901657","glycosyl compound metabolic process",14,6,6.57,1530,"0.71523","0.76013","0.76013" +"GO:0006790","sulfur compound metabolic process",21,7,9.86,2286,"0.93137","0.76039","0.76039" +"GO:0031098","stress-activated protein kinase signalin...",12,4,5.63,2085,"0.89314","0.76043","0.76043" +"GO:0051403","stress-activated MAPK cascade",12,4,5.63,2086,"0.89314","0.76043","0.76043" +"GO:0001745","compound eye morphogenesis",11,5,5.16,1469,"0.65287","0.76083","0.76083" +"GO:0051703","intraspecies interaction between organis...",8,3,3.75,1725,"0.81192","0.76115","0.76115" +"GO:0051052","regulation of DNA metabolic process",14,5,6.57,2026,"0.86746","0.76202","0.76202" +"GO:0042476","odontogenesis",3,0,1.41,2841,"1.00000","0.76244","0.76244" +"GO:0051186","cofactor metabolic process",49,22,23,1483,"0.66651","0.49956","0.76391" +"GO:0045132","meiotic chromosome segregation",3,1,1.41,1857,"0.85074","0.76397","0.76397" +"GO:0019693","ribose phosphate metabolic process",63,35,29.57,363,"0.10388","0.07387","0.76445" +"GO:0016226","iron-sulfur cluster assembly",5,1,2.35,2368,"0.95807","0.76529","0.76529" +"GO:0031163","metallo-sulfur cluster assembly",5,1,2.35,2369,"0.95807","0.76529","0.76529" +"GO:0006448","regulation of translational elongation",4,1,1.88,2208,"0.92088","0.76546","0.76546" +"GO:0000184","nuclear-transcribed mRNA catabolic proce...",5,1,2.35,2370,"0.95807","0.76627","0.76627" +"GO:1902652","secondary alcohol metabolic process",4,2,1.88,1438,"0.64033","0.76634","0.76634" +"GO:0051049","regulation of transport",99,46,46.47,1278,"0.57794","0.50415","0.76697" +"GO:0007351","tripartite regional subdivision",3,1,1.41,1858,"0.85074","0.76701","0.76701" +"GO:0008595","anterior/posterior axis specification, e...",3,1,1.41,1859,"0.85074","0.76701","0.76701" +"GO:0045055","regulated exocytosis",10,5,4.69,1240,"0.54585","0.76733","0.76733" +"GO:0048193","Golgi vesicle transport",29,15,13.61,806,"0.36882","0.76772","0.76772" +"GO:0016458","gene silencing",15,5,7.04,2111,"0.90780","0.76820","0.76820" +"GO:0019991","septate junction assembly",4,1,1.88,2209,"0.92088","0.76854","0.76854" +"GO:0016032","viral process",18,4,8.45,2640,"0.99237","0.77031","0.77031" +"GO:0009886","post-embryonic animal morphogenesis",11,5,5.16,1470,"0.65287","0.77052","0.77052" +"GO:0046661","male sex differentiation",11,4,5.16,1768,"0.84280","0.77052","0.77052" +"GO:0031060","regulation of histone methylation",4,2,1.88,1439,"0.64033","0.77072","0.77072" +"GO:0001756","somitogenesis",5,2,2.35,1651,"0.77210","0.77118","0.77118" +"GO:0007379","segment specification",5,1,2.35,2371,"0.95807","0.77118","0.77118" +"GO:0061053","somite development",5,2,2.35,1652,"0.77210","0.77118","0.77118" +"GO:0048881","mechanosensory lateral line system devel...",3,2,1.41,1163,"0.45409","0.77131","0.77131" +"GO:0048882","lateral line development",3,2,1.41,1164,"0.45409","0.77131","0.77131" +"GO:0048925","lateral line system development",3,2,1.41,1165,"0.45409","0.77131","0.77131" +"GO:0009967","positive regulation of signal transducti...",76,35,35.67,1326,"0.60683","0.77188","0.77188" +"GO:0010827","regulation of glucose transmembrane tran...",5,1,2.35,2372,"0.95807","0.77196","0.77196" +"GO:0046323","glucose import",5,1,2.35,2373,"0.95807","0.77196","0.77196" +"GO:0046324","regulation of glucose import",5,1,2.35,2374,"0.95807","0.77196","0.77196" +"GO:1904659","glucose transmembrane transport",5,1,2.35,2375,"0.95807","0.77196","0.77196" +"GO:0006163","purine nucleotide metabolic process",62,34,29.1,417,"0.12858","0.10542","0.77231" +"GO:0072384","organelle transport along microtubule",5,2,2.35,1653,"0.77210","0.77274","0.77274" +"GO:0048609","multicellular organismal reproductive pr...",69,29,32.39,1755,"0.82895","0.70454","0.77313" +"GO:0007369","gastrulation",17,5,7.98,2355,"0.95753","0.77447","0.77447" +"GO:0030522","intracellular receptor signaling pathway",15,5,7.04,2112,"0.90780","0.77453","0.77453" +"GO:0045666","positive regulation of neuron differenti...",15,6,7.04,1704,"0.78678","0.77453","0.77453" +"GO:0001818","negative regulation of cytokine producti...",4,1,1.88,2210,"0.92088","0.77552","0.77552" +"GO:0006367","transcription initiation from RNA polyme...",13,4,6.1,2277,"0.92872","0.77654","0.77654" +"GO:0006468","protein phosphorylation",185,90,86.83,798,"0.34123","0.77672","0.77672" +"GO:0070841","inclusion body assembly",5,1,2.35,2376,"0.95807","0.77702","0.77702" +"GO:0090083","regulation of inclusion body assembly",5,1,2.35,2377,"0.95807","0.77702","0.77702" +"GO:0090084","negative regulation of inclusion body as...",5,1,2.35,2378,"0.95807","0.77702","0.77702" +"GO:0006906","vesicle fusion",7,3,3.29,1561,"0.72046","0.77737","0.77737" +"GO:0048284","organelle fusion",7,3,3.29,1562,"0.72046","0.77737","0.77737" +"GO:0090174","organelle membrane fusion",7,3,3.29,1563,"0.72046","0.77737","0.77737" +"GO:1902904","negative regulation of supramolecular fi...",17,7,7.98,1598,"0.76325","0.77806","0.77806" +"GO:0031401","positive regulation of protein modificat...",41,17,19.24,1713,"0.80631","0.77833","0.77833" +"GO:0006403","RNA localization",10,2,4.69,2551,"0.98274","0.77893","0.77893" +"GO:0051168","nuclear export",10,1,4.69,2720,"0.99826","0.77893","0.77893" +"GO:0009150","purine ribonucleotide metabolic process",61,34,28.63,293,"0.10315","0.08574","0.77940" +"GO:0009259","ribonucleotide metabolic process",61,34,28.63,294,"0.10315","0.08574","0.77940" +"GO:0002699","positive regulation of immune effector p...",8,2,3.75,2303,"0.94950","0.77972","0.77972" +"GO:0007040","lysosome organization",8,1,3.75,2647,"0.99378","0.77972","0.77972" +"GO:0007088","regulation of mitotic nuclear division",8,3,3.75,1726,"0.81192","0.77972","0.77972" +"GO:0009566","fertilization",8,2,3.75,2304,"0.94950","0.77972","0.77972" +"GO:0034614","cellular response to reactive oxygen spe...",8,1,3.75,2648,"0.99378","0.77972","0.77972" +"GO:0036465","synaptic vesicle recycling",8,2,3.75,2305,"0.94950","0.77972","0.77972" +"GO:0042246","tissue regeneration",8,3,3.75,1727,"0.81192","0.77972","0.77972" +"GO:0071241","cellular response to inorganic substance",8,1,3.75,2649,"0.99378","0.77972","0.77972" +"GO:0071248","cellular response to metal ion",8,1,3.75,2650,"0.99378","0.77972","0.77972" +"GO:0072665","protein localization to vacuole",8,2,3.75,2306,"0.94950","0.77972","0.77972" +"GO:0072666","establishment of protein localization to...",8,2,3.75,2307,"0.94950","0.77972","0.77972" +"GO:0080171","lytic vacuole organization",8,1,3.75,2651,"0.99378","0.77972","0.77972" +"GO:1900407","regulation of cellular response to oxida...",8,1,3.75,2652,"0.99378","0.77972","0.77972" +"GO:1902883","negative regulation of response to oxida...",8,2,3.75,2308,"0.94950","0.77972","0.77972" +"GO:1903902","positive regulation of viral life cycle",8,2,3.75,2309,"0.94950","0.77972","0.77972" +"GO:0032502","developmental process",393,201,184.46,143,"0.03904","0.09658","0.78017" +"GO:0043086","negative regulation of catalytic activit...",35,17,16.43,1189,"0.48882","0.78171","0.78171" +"GO:0016574","histone ubiquitination",7,1,3.29,2573,"0.98824","0.78309","0.78309" +"GO:0072132","mesenchyme morphogenesis",3,1,1.41,1860,"0.85074","0.78358","0.78358" +"GO:0009611","response to wounding",34,18,15.96,741,"0.29636","0.29844","0.78561" +"GO:0008380","RNA splicing",35,9,16.43,2705,"0.99721","0.78610","0.78610" +"GO:0009636","response to toxic substance",26,7,12.2,2621,"0.98934","0.78681","0.78681" +"GO:0032570","response to progesterone",8,1,3.75,2653,"0.99378","0.78703","0.78703" +"GO:0000902","cell morphogenesis",74,45,34.73,64,"0.01045","0.00831","0.78714" +"GO:0002759","regulation of antimicrobial humoral resp...",3,1,1.41,1861,"0.85074","0.78730","0.78730" +"GO:0019730","antimicrobial humoral response",3,1,1.41,1862,"0.85074","0.78730","0.78730" +"GO:0030307","positive regulation of cell growth",3,1,1.41,1863,"0.85074","0.78730","0.78730" +"GO:0035270","endocrine system development",3,1,1.41,1864,"0.85074","0.78730","0.78730" +"GO:0038093","Fc receptor signaling pathway",3,1,1.41,1865,"0.85074","0.78730","0.78730" +"GO:0060438","trachea development",3,1,1.41,1866,"0.85074","0.78730","0.78730" +"GO:0060502","epithelial cell proliferation involved i...",3,1,1.41,1867,"0.85074","0.78730","0.78730" +"GO:0007483","genital disc morphogenesis",3,0,1.41,2842,"1.00000","0.78730","0.78730" +"GO:0007484","imaginal disc-derived genitalia developm...",3,0,1.41,2843,"1.00000","0.78730","0.78730" +"GO:0007485","imaginal disc-derived male genitalia dev...",3,0,1.41,2844,"1.00000","0.78730","0.78730" +"GO:0030539","male genitalia development",3,0,1.41,2845,"1.00000","0.78730","0.78730" +"GO:0035126","post-embryonic genitalia morphogenesis",3,0,1.41,2846,"1.00000","0.78730","0.78730" +"GO:0048803","imaginal disc-derived male genitalia mor...",3,0,1.41,2847,"1.00000","0.78730","0.78730" +"GO:0048805","imaginal disc-derived genitalia morphoge...",3,0,1.41,2848,"1.00000","0.78730","0.78730" +"GO:0048808","male genitalia morphogenesis",3,0,1.41,2849,"1.00000","0.78730","0.78730" +"GO:0051225","spindle assembly",8,2,3.75,2310,"0.94950","0.78794","0.78794" +"GO:0016071","mRNA metabolic process",57,11,26.75,2796,"1.00000","0.78827","0.78827" +"GO:0045861","negative regulation of proteolysis",17,6,7.98,2065,"0.88755","0.78873","0.78873" +"GO:0035023","regulation of Rho protein signal transdu...",19,9,8.92,1276,"0.57432","0.78958","0.78958" +"GO:0000375","RNA splicing, via transesterification re...",29,7,13.61,2701,"0.99691","0.79041","0.79041" +"GO:0000377","RNA splicing, via transesterification re...",29,7,13.61,2702,"0.99691","0.79041","0.79041" +"GO:0000398","mRNA splicing, via spliceosome",29,7,13.61,2703,"0.99691","0.79041","0.79041" +"GO:0060840","artery development",4,2,1.88,1440,"0.64033","0.79059","0.79059" +"GO:0007254","JNK cascade",8,2,3.75,2311,"0.94950","0.79065","0.79065" +"GO:0043484","regulation of RNA splicing",8,1,3.75,2654,"0.99378","0.79065","0.79065" +"GO:0048024","regulation of mRNA splicing, via spliceo...",8,1,3.75,2655,"0.99378","0.79065","0.79065" +"GO:0050684","regulation of mRNA processing",8,1,3.75,2656,"0.99378","0.79065","0.79065" +"GO:0046580","negative regulation of Ras protein signa...",3,1,1.41,1868,"0.85074","0.79099","0.79099" +"GO:0051058","negative regulation of small GTPase medi...",3,1,1.41,1869,"0.85074","0.79099","0.79099" +"GO:0010605","negative regulation of macromolecule met...",144,58,67.59,2427,"0.95901","0.79102","0.79102" +"GO:0035304","regulation of protein dephosphorylation",3,1,1.41,1870,"0.85074","0.79124","0.79124" +"GO:1990138","neuron projection extension",8,3,3.75,1728,"0.81192","0.79126","0.79126" +"GO:0007616","long-term memory",4,1,1.88,2211,"0.92088","0.79229","0.79229" +"GO:0007635","chemosensory behavior",4,1,1.88,2212,"0.92088","0.79229","0.79229" +"GO:0042274","ribosomal small subunit biogenesis",6,0,2.82,2850,"1.00000","0.79287","0.79287" +"GO:0050909","sensory perception of taste",4,2,1.88,1441,"0.64033","0.79314","0.79314" +"GO:0046545","development of primary female sexual cha...",7,4,3.29,889,"0.43316","0.79344","0.79344" +"GO:0046660","female sex differentiation",7,4,3.29,890,"0.43316","0.79344","0.79344" +"GO:0070897","transcription preinitiation complex asse...",7,4,3.29,891,"0.43316","0.79344","0.79344" +"GO:0023051","regulation of signaling",199,90,93.4,1535,"0.71786","0.79359","0.79359" +"GO:0030252","growth hormone secretion",4,1,1.88,2213,"0.92088","0.79399","0.79399" +"GO:0006903","vesicle targeting",7,4,3.29,892,"0.43316","0.79424","0.79424" +"GO:0044770","cell cycle phase transition",23,6,10.8,2617,"0.98856","0.79479","0.79479" +"GO:0032465","regulation of cytokinesis",4,2,1.88,1442,"0.64033","0.79484","0.79484" +"GO:0009555","pollen development",4,0,1.88,2851,"1.00000","0.79484","0.79484" +"GO:0044837","actomyosin contractile ring organization",4,0,1.88,2852,"1.00000","0.79484","0.79484" +"GO:0000003","reproduction",115,56,53.98,817,"0.38487","0.75049","0.79527" +"GO:0030834","regulation of actin filament depolymeriz...",8,4,3.75,1265,"0.56804","0.79546","0.79546" +"GO:0030835","negative regulation of actin filament de...",8,4,3.75,1266,"0.56804","0.79546","0.79546" +"GO:1901879","regulation of protein depolymerization",8,4,3.75,1267,"0.56804","0.79546","0.79546" +"GO:1901880","negative regulation of protein depolymer...",8,4,3.75,1268,"0.56804","0.79546","0.79546" +"GO:0044281","small molecule metabolic process",215,111,100.91,270,"0.08558","0.24780","0.79637" +"GO:0005977","glycogen metabolic process",3,1,1.41,1871,"0.85074","0.79638","0.79638" +"GO:0005978","glycogen biosynthetic process",3,1,1.41,1872,"0.85074","0.79638","0.79638" +"GO:0006073","cellular glucan metabolic process",3,1,1.41,1873,"0.85074","0.79638","0.79638" +"GO:0006112","energy reserve metabolic process",3,1,1.41,1874,"0.85074","0.79638","0.79638" +"GO:0009250","glucan biosynthetic process",3,1,1.41,1875,"0.85074","0.79638","0.79638" +"GO:0044042","glucan metabolic process",3,1,1.41,1876,"0.85074","0.79638","0.79638" +"GO:1902806","regulation of cell cycle G1/S phase tran...",6,2,2.82,1990,"0.85949","0.79736","0.79736" +"GO:0006323","DNA packaging",15,6,7.04,1705,"0.78678","0.79749","0.79749" +"GO:0070848","response to growth factor",26,8,12.2,2449,"0.97017","0.79752","0.79752" +"GO:0071363","cellular response to growth factor stimu...",26,8,12.2,2450,"0.97017","0.79752","0.79752" +"GO:1901699","cellular response to nitrogen compound",18,6,8.45,2161,"0.92048","0.79854","0.79854" +"GO:0006611","protein export from nucleus",9,1,4.22,2684,"0.99671","0.79870","0.79870" +"GO:0050657","nucleic acid transport",9,2,4.22,2455,"0.97033","0.79870","0.79870" +"GO:0050658","RNA transport",9,2,4.22,2456,"0.97033","0.79870","0.79870" +"GO:0051236","establishment of RNA localization",9,2,4.22,2457,"0.97033","0.79870","0.79870" +"GO:0006282","regulation of DNA repair",3,0,1.41,2853,"1.00000","0.79906","0.79906" +"GO:0043618","regulation of transcription from RNA pol...",6,2,2.82,1991,"0.85949","0.79908","0.79908" +"GO:0043620","regulation of DNA-templated transcriptio...",6,2,2.82,1992,"0.85949","0.79908","0.79908" +"GO:2001242","regulation of intrinsic apoptotic signal...",10,3,4.69,2171,"0.92067","0.79920","0.79920" +"GO:0051222","positive regulation of protein transport",20,9,9.39,1474,"0.65310","0.79946","0.79946" +"GO:1904951","positive regulation of establishment of ...",20,9,9.39,1475,"0.65310","0.79946","0.79946" +"GO:0031123","RNA 3'-end processing",7,2,3.29,2133,"0.91510","0.80110","0.80110" +"GO:0043457","regulation of cellular respiration",3,1,1.41,1877,"0.85074","0.80124","0.80124" +"GO:0048608","reproductive structure development",34,16,15.96,1248,"0.56151","0.80127","0.80127" +"GO:0048519","negative regulation of biological proces...",273,118,128.14,2123,"0.91409","0.80128","0.80128" +"GO:0016571","histone methylation",12,6,5.63,1226,"0.52795","0.80158","0.80158" +"GO:0043487","regulation of RNA stability",5,0,2.35,2854,"1.00000","0.80183","0.80183" +"GO:0043488","regulation of mRNA stability",5,0,2.35,2855,"1.00000","0.80183","0.80183" +"GO:0061013","regulation of mRNA catabolic process",5,0,2.35,2856,"1.00000","0.80183","0.80183" +"GO:0009755","hormone-mediated signaling pathway",20,7,9.39,2099,"0.90414","0.80191","0.80191" +"GO:0009314","response to radiation",27,13,12.67,1217,"0.52506","0.80311","0.80311" +"GO:0140029","exocytic process",7,4,3.29,893,"0.43316","0.80347","0.80347" +"GO:0042098","T cell proliferation",5,2,2.35,1654,"0.77210","0.80389","0.80389" +"GO:0006664","glycolipid metabolic process",10,3,4.69,2172,"0.92067","0.80424","0.80424" +"GO:1903509","liposaccharide metabolic process",10,3,4.69,2173,"0.92067","0.80424","0.80424" +"GO:1902115","regulation of organelle assembly",19,7,8.92,2030,"0.86815","0.80434","0.80434" +"GO:0001700","embryonic development via the syncytial ...",7,2,3.29,2134,"0.91510","0.80442","0.80442" +"GO:0001906","cell killing",7,1,3.29,2574,"0.98824","0.80442","0.80442" +"GO:0007608","sensory perception of smell",7,1,3.29,2575,"0.98824","0.80442","0.80442" +"GO:0031341","regulation of cell killing",7,1,3.29,2576,"0.98824","0.80442","0.80442" +"GO:0031343","positive regulation of cell killing",7,1,3.29,2577,"0.98824","0.80442","0.80442" +"GO:0061635","regulation of protein complex stability",7,2,3.29,2135,"0.91510","0.80442","0.80442" +"GO:0070301","cellular response to hydrogen peroxide",7,1,3.29,2578,"0.98824","0.80442","0.80442" +"GO:1900408","negative regulation of cellular response...",7,1,3.29,2579,"0.98824","0.80442","0.80442" +"GO:1903201","regulation of oxidative stress-induced c...",7,1,3.29,2580,"0.98824","0.80442","0.80442" +"GO:1903202","negative regulation of oxidative stress-...",7,1,3.29,2581,"0.98824","0.80442","0.80442" +"GO:1903332","regulation of protein folding",7,1,3.29,2582,"0.98824","0.80442","0.80442" +"GO:0051084","'de novo' posttranslational protein fold...",7,0,3.29,2857,"1.00000","0.80442","0.80442" +"GO:0007179","transforming growth factor beta receptor...",10,1,4.69,2721,"0.99826","0.80451","0.80451" +"GO:0043903","regulation of symbiosis, encompassing mu...",15,5,7.04,2113,"0.90780","0.80476","0.80476" +"GO:0051090","regulation of DNA-binding transcription ...",15,5,7.04,2114,"0.90780","0.80476","0.80476" +"GO:0007297","ovarian follicle cell migration",6,2,2.82,1993,"0.85949","0.80490","0.80490" +"GO:0030042","actin filament depolymerization",9,4,4.22,1502,"0.68258","0.80499","0.80499" +"GO:0032781","positive regulation of ATPase activity",4,1,1.88,2214,"0.92088","0.80575","0.80575" +"GO:0006397","mRNA processing",42,8,19.71,2788,"0.99996","0.80648","0.80648" +"GO:0008654","phospholipid biosynthetic process",17,6,7.98,2066,"0.88755","0.80748","0.80748" +"GO:0060341","regulation of cellular localization",48,22,22.53,1331,"0.61695","0.80767","0.80767" +"GO:0001522","pseudouridine synthesis",3,1,1.41,1878,"0.85074","0.80774","0.80774" +"GO:0022411","cellular component disassembly",35,10,16.43,2638,"0.99195","0.80869","0.80869" +"GO:0019079","viral genome replication",9,1,4.22,2685,"0.99671","0.80874","0.80874" +"GO:0045069","regulation of viral genome replication",9,1,4.22,2686,"0.99671","0.80874","0.80874" +"GO:0010646","regulation of cell communication",197,88,92.46,1602,"0.76949","0.81066","0.81066" +"GO:0042698","ovulation cycle",7,1,3.29,2583,"0.98824","0.81101","0.81101" +"GO:0032147","activation of protein kinase activity",8,3,3.75,1729,"0.81192","0.81114","0.81114" +"GO:0061024","membrane organization",55,25,25.82,1350,"0.63922","0.81120","0.81120" +"GO:0009892","negative regulation of metabolic process",152,61,71.34,2436,"0.96585","0.81131","0.81131" +"GO:0007283","spermatogenesis",30,17,14.08,511,"0.18661","0.32276","0.81246" +"GO:0046839","phospholipid dephosphorylation",7,3,3.29,1564,"0.72046","0.81304","0.81304" +"GO:0046856","phosphatidylinositol dephosphorylation",7,3,3.29,1565,"0.72046","0.81304","0.81304" +"GO:0046328","regulation of JNK cascade",7,2,3.29,2136,"0.91510","0.81428","0.81428" +"GO:0065007","biological regulation",1028,484,482.51,1172,"0.46787","0.61034","0.81490" +"GO:0030587","sorocarp development",6,1,2.82,2494,"0.97779","0.81503","0.81503" +"GO:0090702","non-reproductive fruiting body developme...",6,1,2.82,2495,"0.97779","0.81503","0.81503" +"GO:0099120","socially cooperative development",6,1,2.82,2496,"0.97779","0.81503","0.81503" +"GO:0031347","regulation of defense response",22,8,10.33,2071,"0.88811","0.81558","0.81558" +"GO:0010507","negative regulation of autophagy",6,2,2.82,1994,"0.85949","0.81570","0.81570" +"GO:1901700","response to oxygen-containing compound",68,22,31.92,2675,"0.99530","0.81602","0.81602" +"GO:1902533","positive regulation of intracellular sig...",35,14,16.43,1761,"0.84095","0.81625","0.81625" +"GO:0019058","viral life cycle",14,3,6.57,2612,"0.98831","0.81657","0.81657" +"GO:0046677","response to antibiotic",22,8,10.33,2072,"0.88811","0.81663","0.81663" +"GO:0034612","response to tumor necrosis factor",5,1,2.35,2379,"0.95807","0.81664","0.81664" +"GO:0031324","negative regulation of cellular metaboli...",126,53,59.14,2073,"0.88818","0.81713","0.81713" +"GO:0051092","positive regulation of NF-kappaB transcr...",4,0,1.88,2858,"1.00000","0.81730","0.81730" +"GO:0009116","nucleoside metabolic process",13,6,6.1,1343,"0.62852","0.81788","0.81788" +"GO:0031399","regulation of protein modification proce...",80,36,37.55,1488,"0.67880","0.81832","0.81832" +"GO:0006720","isoprenoid metabolic process",10,4,4.69,1687,"0.77373","0.81834","0.81834" +"GO:0046503","glycerolipid catabolic process",5,3,2.35,953,"0.44266","0.81883","0.81883" +"GO:0002164","larval development",5,1,2.35,2380,"0.95807","0.81955","0.81955" +"GO:0009950","dorsal/ventral axis specification",5,2,2.35,1655,"0.77210","0.81955","0.81955" +"GO:0090100","positive regulation of transmembrane rec...",5,1,2.35,2381,"0.95807","0.81955","0.81955" +"GO:0035268","protein mannosylation",3,0,1.41,2859,"1.00000","0.81959","0.81959" +"GO:0035269","protein O-linked mannosylation",3,0,1.41,2860,"1.00000","0.81959","0.81959" +"GO:0097502","mannosylation",3,0,1.41,2861,"1.00000","0.81959","0.81959" +"GO:0002165","instar larval or pupal development",10,4,4.69,1688,"0.77373","0.81963","0.81963" +"GO:0007552","metamorphosis",10,4,4.69,1689,"0.77373","0.81963","0.81963" +"GO:0007560","imaginal disc morphogenesis",10,4,4.69,1690,"0.77373","0.81963","0.81963" +"GO:0048563","post-embryonic animal organ morphogenesi...",10,4,4.69,1691,"0.77373","0.81963","0.81963" +"GO:0048707","instar larval or pupal morphogenesis",10,4,4.69,1692,"0.77373","0.81963","0.81963" +"GO:0042742","defense response to bacterium",11,4,5.16,1769,"0.84280","0.81990","0.81990" +"GO:0010647","positive regulation of cell communicatio...",83,37,38.96,1523,"0.70801","0.81993","0.81993" +"GO:0023056","positive regulation of signaling",83,37,38.96,1524,"0.70801","0.81993","0.81993" +"GO:0002065","columnar/cuboidal epithelial cell differ...",19,6,8.92,2296,"0.94463","0.82054","0.82054" +"GO:0019637","organophosphate metabolic process",130,70,61.02,210,"0.06309","0.03216","0.82059" +"GO:0006360","transcription by RNA polymerase I",4,1,1.88,2215,"0.92088","0.82096","0.82096" +"GO:0060563","neuroepithelial cell differentiation",4,2,1.88,1443,"0.64033","0.82096","0.82096" +"GO:2001243","negative regulation of intrinsic apoptot...",7,2,3.29,2137,"0.91510","0.82122","0.82122" +"GO:0070861","regulation of protein exit from endoplas...",3,1,1.41,1879,"0.85074","0.82147","0.82147" +"GO:0070862","negative regulation of protein exit from...",3,1,1.41,1880,"0.85074","0.82147","0.82147" +"GO:1904152","regulation of retrograde protein transpo...",3,1,1.41,1881,"0.85074","0.82147","0.82147" +"GO:1904153","negative regulation of retrograde protei...",3,1,1.41,1882,"0.85074","0.82147","0.82147" +"GO:1904292","regulation of ERAD pathway",3,1,1.41,1883,"0.85074","0.82147","0.82147" +"GO:1904293","negative regulation of ERAD pathway",3,1,1.41,1884,"0.85074","0.82147","0.82147" +"GO:0051223","regulation of protein transport",32,15,15.02,1273,"0.57193","0.82188","0.82188" +"GO:0070201","regulation of establishment of protein l...",32,15,15.02,1274,"0.57193","0.82188","0.82188" +"GO:0010799","regulation of peptidyl-threonine phospho...",5,1,2.35,2382,"0.95807","0.82191","0.82191" +"GO:0010800","positive regulation of peptidyl-threonin...",5,1,2.35,2383,"0.95807","0.82191","0.82191" +"GO:0018107","peptidyl-threonine phosphorylation",5,1,2.35,2384,"0.95807","0.82191","0.82191" +"GO:0006950","response to stress",221,96,103.73,2058,"0.87724","0.78301","0.82205" +"GO:0008645","hexose transmembrane transport",6,1,2.82,2497,"0.97779","0.82267","0.82267" +"GO:0015749","monosaccharide transmembrane transport",6,1,2.82,2498,"0.97779","0.82267","0.82267" +"GO:0070125","mitochondrial translational elongation",3,0,1.41,2862,"1.00000","0.82310","0.82310" +"GO:0070126","mitochondrial translational termination",3,0,1.41,2863,"1.00000","0.82310","0.82310" +"GO:0006006","glucose metabolic process",10,5,4.69,1241,"0.54585","0.82399","0.82399" +"GO:0051704","multi-organism process",129,56,60.55,1752,"0.81955","0.77163","0.82405" +"GO:0030837","negative regulation of actin filament po...",8,4,3.75,1269,"0.56804","0.82469","0.82469" +"GO:0032272","negative regulation of protein polymeriz...",8,4,3.75,1270,"0.56804","0.82469","0.82469" +"GO:0072347","response to anesthetic",5,1,2.35,2385,"0.95807","0.82480","0.82480" +"GO:0051716","cellular response to stimulus",548,258,257.21,1188,"0.48865","0.82241","0.82636" +"GO:0042770","signal transduction in response to DNA d...",4,1,1.88,2216,"0.92088","0.82660","0.82660" +"GO:0006406","mRNA export from nucleus",6,1,2.82,2499,"0.97779","0.82695","0.82695" +"GO:0051028","mRNA transport",6,1,2.82,2500,"0.97779","0.82695","0.82695" +"GO:0071427","mRNA-containing ribonucleoprotein comple...",6,1,2.82,2501,"0.97779","0.82695","0.82695" +"GO:0009062","fatty acid catabolic process",4,1,1.88,2217,"0.92088","0.82741","0.82741" +"GO:0031047","gene silencing by RNA",8,1,3.75,2657,"0.99378","0.82810","0.82810" +"GO:0050792","regulation of viral process",13,3,6.1,2541,"0.98079","0.82853","0.82853" +"GO:0051091","positive regulation of DNA-binding trans...",13,4,6.1,2278,"0.92872","0.82853","0.82853" +"GO:0044242","cellular lipid catabolic process",14,7,6.57,1210,"0.51290","0.82890","0.82890" +"GO:0051260","protein homooligomerization",16,6,7.51,1774,"0.84368","0.82907","0.82907" +"GO:0031110","regulation of microtubule polymerization...",6,2,2.82,1995,"0.85949","0.82923","0.82923" +"GO:0031112","positive regulation of microtubule polym...",6,2,2.82,1996,"0.85949","0.82923","0.82923" +"GO:0031113","regulation of microtubule polymerization",6,2,2.82,1997,"0.85949","0.82923","0.82923" +"GO:0031116","positive regulation of microtubule polym...",6,2,2.82,1998,"0.85949","0.82923","0.82923" +"GO:0080135","regulation of cellular response to stres...",37,9,17.37,2731,"0.99876","0.82957","0.82957" +"GO:0035303","regulation of dephosphorylation",5,3,2.35,954,"0.44266","0.82964","0.82964" +"GO:0002376","immune system process",93,44,43.65,1205,"0.51192","0.82983","0.82983" +"GO:0001909","leukocyte mediated cytotoxicity",6,1,2.82,2502,"0.97779","0.82988","0.82988" +"GO:0001910","regulation of leukocyte mediated cytotox...",6,1,2.82,2503,"0.97779","0.82988","0.82988" +"GO:0001912","positive regulation of leukocyte mediate...",6,1,2.82,2504,"0.97779","0.82988","0.82988" +"GO:0002449","lymphocyte mediated immunity",6,1,2.82,2505,"0.97779","0.82988","0.82988" +"GO:0002703","regulation of leukocyte mediated immunit...",6,1,2.82,2506,"0.97779","0.82988","0.82988" +"GO:0002705","positive regulation of leukocyte mediate...",6,1,2.82,2507,"0.97779","0.82988","0.82988" +"GO:0002706","regulation of lymphocyte mediated immuni...",6,1,2.82,2508,"0.97779","0.82988","0.82988" +"GO:0002708","positive regulation of lymphocyte mediat...",6,1,2.82,2509,"0.97779","0.82988","0.82988" +"GO:0006623","protein targeting to vacuole",6,1,2.82,2510,"0.97779","0.82988","0.82988" +"GO:0007338","single fertilization",6,1,2.82,2511,"0.97779","0.82988","0.82988" +"GO:0031101","fin regeneration",6,2,2.82,1999,"0.85949","0.82988","0.82988" +"GO:0048259","regulation of receptor-mediated endocyto...",6,3,2.82,1318,"0.59733","0.82988","0.82988" +"GO:2001024","negative regulation of response to drug",6,1,2.82,2512,"0.97779","0.82988","0.82988" +"GO:0036474","cell death in response to hydrogen perox...",6,0,2.82,2864,"1.00000","0.82988","0.82988" +"GO:0050766","positive regulation of phagocytosis",6,0,2.82,2865,"1.00000","0.82988","0.82988" +"GO:0051085","chaperone cofactor-dependent protein ref...",6,0,2.82,2866,"1.00000","0.82988","0.82988" +"GO:0071276","cellular response to cadmium ion",6,0,2.82,2867,"1.00000","0.82988","0.82988" +"GO:1903313","positive regulation of mRNA metabolic pr...",6,0,2.82,2868,"1.00000","0.82988","0.82988" +"GO:1902531","regulation of intracellular signal trans...",100,42,46.94,2024,"0.86693","0.83036","0.83036" +"GO:0007422","peripheral nervous system development",3,1,1.41,1885,"0.85074","0.83074","0.83074" +"GO:0010463","mesenchymal cell proliferation",3,1,1.41,1886,"0.85074","0.83074","0.83074" +"GO:0010464","regulation of mesenchymal cell prolifera...",3,1,1.41,1887,"0.85074","0.83074","0.83074" +"GO:0043473","pigmentation",3,1,1.41,1888,"0.85074","0.83074","0.83074" +"GO:0046532","regulation of photoreceptor cell differe...",3,1,1.41,1889,"0.85074","0.83074","0.83074" +"GO:0048583","regulation of response to stimulus",209,93,98.1,1706,"0.79080","0.83354","0.83354" +"GO:0007298","border follicle cell migration",5,1,2.35,2386,"0.95807","0.83461","0.83461" +"GO:0008593","regulation of Notch signaling pathway",12,4,5.63,2087,"0.89314","0.83523","0.83523" +"GO:0006289","nucleotide-excision repair",3,0,1.41,2869,"1.00000","0.83576","0.83576" +"GO:2001236","regulation of extrinsic apoptotic signal...",8,2,3.75,2312,"0.94950","0.83596","0.83596" +"GO:0009395","phospholipid catabolic process",7,4,3.29,894,"0.43316","0.83676","0.83676" +"GO:0044782","cilium organization",26,9,12.2,2284,"0.92960","0.83718","0.83718" +"GO:0002237","response to molecule of bacterial origin",7,1,3.29,2584,"0.98824","0.83765","0.83765" +"GO:0071216","cellular response to biotic stimulus",7,2,3.29,2138,"0.91510","0.83765","0.83765" +"GO:0031333","negative regulation of protein complex a...",12,5,5.63,1585,"0.74210","0.83796","0.83796" +"GO:0052547","regulation of peptidase activity",12,5,5.63,1586,"0.74210","0.83796","0.83796" +"GO:0010824","regulation of centrosome duplication",3,1,1.41,1890,"0.85074","0.83803","0.83803" +"GO:0046605","regulation of centrosome cycle",3,1,1.41,1891,"0.85074","0.83803","0.83803" +"GO:0050920","regulation of chemotaxis",4,1,1.88,2218,"0.92088","0.83810","0.83810" +"GO:0048580","regulation of post-embryonic development",4,2,1.88,1444,"0.64033","0.83849","0.83849" +"GO:0045814","negative regulation of gene expression, ...",10,3,4.69,2174,"0.92067","0.83907","0.83907" +"GO:2001251","negative regulation of chromosome organi...",10,4,4.69,1693,"0.77373","0.83907","0.83907" +"GO:0006405","RNA export from nucleus",7,1,3.29,2585,"0.98824","0.83973","0.83973" +"GO:0071166","ribonucleoprotein complex localization",7,1,3.29,2586,"0.98824","0.83973","0.83973" +"GO:0071426","ribonucleoprotein complex export from nu...",7,1,3.29,2587,"0.98824","0.83973","0.83973" +"GO:1901701","cellular response to oxygen-containing c...",44,11,20.65,2744,"0.99925","0.83983","0.83983" +"GO:0008355","olfactory learning",3,1,1.41,1892,"0.85074","0.83983","0.83983" +"GO:0042048","olfactory behavior",3,1,1.41,1893,"0.85074","0.83983","0.83983" +"GO:0033522","histone H2A ubiquitination",5,1,2.35,2387,"0.95807","0.83987","0.83987" +"GO:0010390","histone monoubiquitination",5,0,2.35,2870,"1.00000","0.83987","0.83987" +"GO:0010657","muscle cell apoptotic process",8,1,3.75,2658,"0.99378","0.84039","0.84039" +"GO:0010660","regulation of muscle cell apoptotic proc...",8,1,3.75,2659,"0.99378","0.84039","0.84039" +"GO:1903900","regulation of viral life cycle",12,3,5.63,2441,"0.96878","0.84067","0.84067" +"GO:0001819","positive regulation of cytokine producti...",13,6,6.1,1344,"0.62852","0.84081","0.84081" +"GO:2001256","regulation of store-operated calcium ent...",6,1,2.82,2513,"0.97779","0.84082","0.84082" +"GO:0015849","organic acid transport",25,9,11.73,2100,"0.90461","0.84095","0.84095" +"GO:0046942","carboxylic acid transport",25,9,11.73,2101,"0.90461","0.84095","0.84095" +"GO:0030317","flagellated sperm motility",3,1,1.41,1894,"0.85074","0.84096","0.84096" +"GO:0030330","DNA damage response, signal transduction...",3,1,1.41,1895,"0.85074","0.84096","0.84096" +"GO:0006913","nucleocytoplasmic transport",21,2,9.86,2789,"0.99997","0.84107","0.84107" +"GO:0051169","nuclear transport",21,2,9.86,2790,"0.99997","0.84107","0.84107" +"GO:0009262","deoxyribonucleotide metabolic process",3,1,1.41,1896,"0.85074","0.84118","0.84118" +"GO:0060123","regulation of growth hormone secretion",3,1,1.41,1897,"0.85074","0.84118","0.84118" +"GO:0031397","negative regulation of protein ubiquitin...",3,1,1.41,1898,"0.85074","0.84141","0.84141" +"GO:0045862","positive regulation of proteolysis",18,5,8.45,2463,"0.97179","0.84166","0.84166" +"GO:1902410","mitotic cytokinetic process",3,1,1.41,1899,"0.85074","0.84185","0.84185" +"GO:0000916","actomyosin contractile ring contraction",3,0,1.41,2871,"1.00000","0.84185","0.84185" +"GO:0009553","embryo sac development",3,0,1.41,2872,"1.00000","0.84185","0.84185" +"GO:0009554","megasporogenesis",3,0,1.41,2873,"1.00000","0.84185","0.84185" +"GO:0009556","microsporogenesis",3,0,1.41,2874,"1.00000","0.84185","0.84185" +"GO:0010449","root meristem growth",3,0,1.41,2875,"1.00000","0.84185","0.84185" +"GO:0034293","sexual sporulation",3,0,1.41,2876,"1.00000","0.84185","0.84185" +"GO:0036213","contractile ring contraction",3,0,1.41,2877,"1.00000","0.84185","0.84185" +"GO:0048236","plant-type sporogenesis",3,0,1.41,2878,"1.00000","0.84185","0.84185" +"GO:0042180","cellular ketone metabolic process",8,2,3.75,2313,"0.94950","0.84232","0.84232" +"GO:0031529","ruffle organization",6,3,2.82,1319,"0.59733","0.84241","0.84241" +"GO:0006505","GPI anchor metabolic process",7,2,3.29,2139,"0.91510","0.84311","0.84311" +"GO:0007051","spindle organization",11,3,5.16,2328,"0.94987","0.84349","0.84349" +"GO:0098876","vesicle-mediated transport to the plasma...",4,1,1.88,2219,"0.92088","0.84355","0.84355" +"GO:0006869","lipid transport",26,12,12.2,1328,"0.60768","0.84378","0.84378" +"GO:0046700","heterocycle catabolic process",47,18,22.06,2120,"0.91142","0.84398","0.84398" +"GO:0071900","regulation of protein serine/threonine k...",18,9,8.45,1186,"0.48837","0.84422","0.84422" +"GO:0007017","microtubule-based process",65,26,30.51,2094,"0.89678","0.84437","0.84437" +"GO:0016236","macroautophagy",20,6,9.39,2432,"0.96199","0.84458","0.84458" +"GO:0009719","response to endogenous stimulus",77,23,36.14,2746,"0.99935","0.84470","0.84470" +"GO:0010506","regulation of autophagy",19,7,8.92,2031,"0.86815","0.84477","0.84477" +"GO:0007041","lysosomal transport",12,3,5.63,2442,"0.96878","0.84604","0.84604" +"GO:0043244","regulation of protein complex disassembl...",12,4,5.63,2088,"0.89314","0.84604","0.84604" +"GO:0034655","nucleobase-containing compound catabolic...",39,13,18.31,2462,"0.97101","0.84627","0.84627" +"GO:0042733","embryonic digit morphogenesis",5,1,2.35,2388,"0.95807","0.84662","0.84662" +"GO:1990823","response to leukemia inhibitory factor",7,3,3.29,1566,"0.72046","0.84675","0.84675" +"GO:1990830","cellular response to leukemia inhibitory...",7,3,3.29,1567,"0.72046","0.84675","0.84675" +"GO:0043065","positive regulation of apoptotic process",14,6,6.57,1531,"0.71523","0.84694","0.84694" +"GO:0043068","positive regulation of programmed cell d...",14,6,6.57,1532,"0.71523","0.84694","0.84694" +"GO:0065004","protein-DNA complex assembly",16,8,7.51,1200,"0.49988","0.84808","0.84808" +"GO:0071824","protein-DNA complex subunit organization",16,8,7.51,1201,"0.49988","0.84808","0.84808" +"GO:0008625","extrinsic apoptotic signaling pathway vi...",5,2,2.35,1656,"0.77210","0.84817","0.84817" +"GO:0051172","negative regulation of nitrogen compound...",121,51,56.79,2062,"0.88011","0.84863","0.84863" +"GO:0006368","transcription elongation from RNA polyme...",8,2,3.75,2314,"0.94950","0.84913","0.84913" +"GO:0044092","negative regulation of molecular functio...",42,19,19.71,1459,"0.64615","0.84920","0.84920" +"GO:0006333","chromatin assembly or disassembly",13,5,6.1,1746,"0.81309","0.84969","0.84969" +"GO:0051205","protein insertion into membrane",3,0,1.41,2879,"1.00000","0.84985","0.84985" +"GO:0071356","cellular response to tumor necrosis fact...",4,1,1.88,2220,"0.92088","0.85045","0.85045" +"GO:0060271","cilium assembly",25,9,11.73,2102,"0.90461","0.85053","0.85053" +"GO:0072321","chaperone-mediated protein transport",6,0,2.82,2880,"1.00000","0.85088","0.85088" +"GO:0009725","response to hormone",59,16,27.69,2754,"0.99950","0.85114","0.85114" +"GO:0051173","positive regulation of nitrogen compound...",116,54,54.45,1271,"0.57078","0.85197","0.85197" +"GO:0051276","chromosome organization",90,25,42.24,2785,"0.99995","0.85303","0.85303" +"GO:0042546","cell wall biogenesis",3,1,1.41,1900,"0.85074","0.85357","0.85357" +"GO:0090501","RNA phosphodiester bond hydrolysis",5,0,2.35,2881,"1.00000","0.85361","0.85361" +"GO:0009123","nucleoside monophosphate metabolic proce...",45,27,21.12,182,"0.05253","0.05724","0.85370" +"GO:0009126","purine nucleoside monophosphate metaboli...",45,27,21.12,183,"0.05253","0.05724","0.85370" +"GO:0009161","ribonucleoside monophosphate metabolic p...",45,27,21.12,184,"0.05253","0.05724","0.85370" +"GO:0009167","purine ribonucleoside monophosphate meta...",45,27,21.12,185,"0.05253","0.05724","0.85370" +"GO:0006342","chromatin silencing",9,3,4.22,2050,"0.87659","0.85398","0.85398" +"GO:0016042","lipid catabolic process",18,9,8.45,1187,"0.48837","0.85486","0.85486" +"GO:0030149","sphingolipid catabolic process",4,2,1.88,1445,"0.64033","0.85575","0.85575" +"GO:0046466","membrane lipid catabolic process",4,2,1.88,1446,"0.64033","0.85575","0.85575" +"GO:0001913","T cell mediated cytotoxicity",5,0,2.35,2882,"1.00000","0.85613","0.85613" +"GO:0001914","regulation of T cell mediated cytotoxici...",5,0,2.35,2883,"1.00000","0.85613","0.85613" +"GO:0001916","positive regulation of T cell mediated c...",5,0,2.35,2884,"1.00000","0.85613","0.85613" +"GO:0002250","adaptive immune response",5,0,2.35,2885,"1.00000","0.85613","0.85613" +"GO:0002456","T cell mediated immunity",5,0,2.35,2886,"1.00000","0.85613","0.85613" +"GO:0002460","adaptive immune response based on somati...",5,0,2.35,2887,"1.00000","0.85613","0.85613" +"GO:0002709","regulation of T cell mediated immunity",5,0,2.35,2888,"1.00000","0.85613","0.85613" +"GO:0002711","positive regulation of T cell mediated i...",5,0,2.35,2889,"1.00000","0.85613","0.85613" +"GO:0002819","regulation of adaptive immune response",5,0,2.35,2890,"1.00000","0.85613","0.85613" +"GO:0002821","positive regulation of adaptive immune r...",5,0,2.35,2891,"1.00000","0.85613","0.85613" +"GO:0002822","regulation of adaptive immune response b...",5,0,2.35,2892,"1.00000","0.85613","0.85613" +"GO:0002824","positive regulation of adaptive immune r...",5,0,2.35,2893,"1.00000","0.85613","0.85613" +"GO:0006622","protein targeting to lysosome",5,0,2.35,2894,"1.00000","0.85613","0.85613" +"GO:0007020","microtubule nucleation",5,0,2.35,2895,"1.00000","0.85613","0.85613" +"GO:0010045","response to nickel cation",5,0,2.35,2896,"1.00000","0.85613","0.85613" +"GO:0016191","synaptic vesicle uncoating",5,0,2.35,2897,"1.00000","0.85613","0.85613" +"GO:0033120","positive regulation of RNA splicing",5,0,2.35,2898,"1.00000","0.85613","0.85613" +"GO:0044849","estrous cycle",5,0,2.35,2899,"1.00000","0.85613","0.85613" +"GO:0046685","response to arsenic-containing substance",5,0,2.35,2900,"1.00000","0.85613","0.85613" +"GO:0048026","positive regulation of mRNA splicing, vi...",5,0,2.35,2901,"1.00000","0.85613","0.85613" +"GO:0048488","synaptic vesicle endocytosis",5,0,2.35,2902,"1.00000","0.85613","0.85613" +"GO:0050685","positive regulation of mRNA processing",5,0,2.35,2903,"1.00000","0.85613","0.85613" +"GO:0061083","regulation of protein refolding",5,0,2.35,2904,"1.00000","0.85613","0.85613" +"GO:0061462","protein localization to lysosome",5,0,2.35,2905,"1.00000","0.85613","0.85613" +"GO:0061684","chaperone-mediated autophagy",5,0,2.35,2906,"1.00000","0.85613","0.85613" +"GO:0061738","late endosomal microautophagy",5,0,2.35,2907,"1.00000","0.85613","0.85613" +"GO:0061740","protein targeting to lysosome involved i...",5,0,2.35,2908,"1.00000","0.85613","0.85613" +"GO:0061741","chaperone-mediated protein transport inv...",5,0,2.35,2909,"1.00000","0.85613","0.85613" +"GO:0071211","protein targeting to vacuole involved in...",5,0,2.35,2910,"1.00000","0.85613","0.85613" +"GO:0072318","clathrin coat disassembly",5,0,2.35,2911,"1.00000","0.85613","0.85613" +"GO:0072319","vesicle uncoating",5,0,2.35,2912,"1.00000","0.85613","0.85613" +"GO:0090559","regulation of membrane permeability",5,0,2.35,2913,"1.00000","0.85613","0.85613" +"GO:0097212","lysosomal membrane organization",5,0,2.35,2914,"1.00000","0.85613","0.85613" +"GO:0097213","regulation of lysosomal membrane permeab...",5,0,2.35,2915,"1.00000","0.85613","0.85613" +"GO:0097214","positive regulation of lysosomal membran...",5,0,2.35,2916,"1.00000","0.85613","0.85613" +"GO:0140238","presynaptic endocytosis",5,0,2.35,2917,"1.00000","0.85613","0.85613" +"GO:1901031","regulation of response to reactive oxyge...",5,0,2.35,2918,"1.00000","0.85613","0.85613" +"GO:1901032","negative regulation of response to react...",5,0,2.35,2919,"1.00000","0.85613","0.85613" +"GO:1903205","regulation of hydrogen peroxide-induced ...",5,0,2.35,2920,"1.00000","0.85613","0.85613" +"GO:1903206","negative regulation of hydrogen peroxide...",5,0,2.35,2921,"1.00000","0.85613","0.85613" +"GO:1903334","positive regulation of protein folding",5,0,2.35,2922,"1.00000","0.85613","0.85613" +"GO:1904592","positive regulation of protein refolding",5,0,2.35,2923,"1.00000","0.85613","0.85613" +"GO:1904764","chaperone-mediated autophagy translocati...",5,0,2.35,2924,"1.00000","0.85613","0.85613" +"GO:1905710","positive regulation of membrane permeabi...",5,0,2.35,2925,"1.00000","0.85613","0.85613" +"GO:1990832","slow axonal transport",5,0,2.35,2926,"1.00000","0.85613","0.85613" +"GO:1990834","response to odorant",5,0,2.35,2927,"1.00000","0.85613","0.85613" +"GO:2001038","regulation of cellular response to drug",5,0,2.35,2928,"1.00000","0.85613","0.85613" +"GO:2001039","negative regulation of cellular response...",5,0,2.35,2929,"1.00000","0.85613","0.85613" +"GO:1901698","response to nitrogen compound",52,20,24.41,2156,"0.91652","0.85666","0.85666" +"GO:0032479","regulation of type I interferon producti...",4,2,1.88,1447,"0.64033","0.85725","0.85725" +"GO:0032606","type I interferon production",4,2,1.88,1448,"0.64033","0.85725","0.85725" +"GO:0042220","response to cocaine",4,0,1.88,2930,"1.00000","0.85725","0.85725" +"GO:0097306","cellular response to alcohol",8,3,3.75,1730,"0.81192","0.85795","0.85795" +"GO:0022414","reproductive process",108,51,50.69,1211,"0.51429","0.81615","0.85887" +"GO:0010656","negative regulation of muscle cell apopt...",7,1,3.29,2588,"0.98824","0.85891","0.85891" +"GO:0010658","striated muscle cell apoptotic process",7,1,3.29,2589,"0.98824","0.85891","0.85891" +"GO:0010659","cardiac muscle cell apoptotic process",7,1,3.29,2590,"0.98824","0.85891","0.85891" +"GO:0010662","regulation of striated muscle cell apopt...",7,1,3.29,2591,"0.98824","0.85891","0.85891" +"GO:0010664","negative regulation of striated muscle c...",7,1,3.29,2592,"0.98824","0.85891","0.85891" +"GO:0010665","regulation of cardiac muscle cell apopto...",7,1,3.29,2593,"0.98824","0.85891","0.85891" +"GO:0010667","negative regulation of cardiac muscle ce...",7,1,3.29,2594,"0.98824","0.85891","0.85891" +"GO:0017015","regulation of transforming growth factor...",7,1,3.29,2595,"0.98824","0.85891","0.85891" +"GO:1903844","regulation of cellular response to trans...",7,1,3.29,2596,"0.98824","0.85891","0.85891" +"GO:0032496","response to lipopolysaccharide",6,1,2.82,2514,"0.97779","0.85918","0.85918" +"GO:0006357","regulation of transcription by RNA polym...",93,39,43.65,2021,"0.86234","0.85961","0.85961" +"GO:0042310","vasoconstriction",3,1,1.41,1901,"0.85074","0.85963","0.85963" +"GO:0097756","negative regulation of blood vessel diam...",3,1,1.41,1902,"0.85074","0.85963","0.85963" +"GO:0030512","negative regulation of transforming grow...",3,0,1.41,2931,"1.00000","0.85963","0.85963" +"GO:0032069","regulation of nuclease activity",3,0,1.41,2932,"1.00000","0.85963","0.85963" +"GO:0032075","positive regulation of nuclease activity",3,0,1.41,2933,"1.00000","0.85963","0.85963" +"GO:0035872","nucleotide-binding domain, leucine rich ...",3,0,1.41,2934,"1.00000","0.85963","0.85963" +"GO:0070423","nucleotide-binding oligomerization domai...",3,0,1.41,2935,"1.00000","0.85963","0.85963" +"GO:1903845","negative regulation of cellular response...",3,0,1.41,2936,"1.00000","0.85963","0.85963" +"GO:0034219","carbohydrate transmembrane transport",7,2,3.29,2140,"0.91510","0.86018","0.86018" +"GO:0001817","regulation of cytokine production",21,9,9.86,1576,"0.72276","0.86087","0.86087" +"GO:0044270","cellular nitrogen compound catabolic pro...",46,18,21.59,2075,"0.88916","0.86225","0.86225" +"GO:0022622","root system development",5,1,2.35,2389,"0.95807","0.86262","0.86262" +"GO:0048364","root development",5,1,2.35,2390,"0.95807","0.86262","0.86262" +"GO:0051346","negative regulation of hydrolase activit...",15,8,7.04,835,"0.40432","0.86305","0.86305" +"GO:0052548","regulation of endopeptidase activity",10,4,4.69,1694,"0.77373","0.86311","0.86311" +"GO:2000116","regulation of cysteine-type endopeptidas...",10,4,4.69,1695,"0.77373","0.86311","0.86311" +"GO:0022607","cellular component assembly",230,106,107.95,1345,"0.63261","0.86324","0.86324" +"GO:0071417","cellular response to organonitrogen comp...",14,4,6.57,2344,"0.95323","0.86423","0.86423" +"GO:0043207","response to external biotic stimulus",30,11,14.08,2105,"0.90711","0.86466","0.86466" +"GO:0051707","response to other organism",30,11,14.08,2106,"0.90711","0.86466","0.86466" +"GO:0006911","phagocytosis, engulfment",3,1,1.41,1903,"0.85074","0.86495","0.86495" +"GO:0010324","membrane invagination",3,1,1.41,1904,"0.85074","0.86495","0.86495" +"GO:0043652","engulfment of apoptotic cell",3,1,1.41,1905,"0.85074","0.86495","0.86495" +"GO:0045987","positive regulation of smooth muscle con...",3,1,1.41,1906,"0.85074","0.86495","0.86495" +"GO:0099024","plasma membrane invagination",3,1,1.41,1907,"0.85074","0.86495","0.86495" +"GO:0090087","regulation of peptide transport",33,15,15.49,1346,"0.63432","0.86544","0.86544" +"GO:0051693","actin filament capping",6,2,2.82,2000,"0.85949","0.86550","0.86550" +"GO:0030324","lung development",9,4,4.22,1503,"0.68258","0.86563","0.86563" +"GO:0009791","post-embryonic development",27,12,12.67,1486,"0.67378","0.86581","0.86581" +"GO:0006732","coenzyme metabolic process",33,17,15.49,803,"0.36045","0.29445","0.86668" +"GO:0042886","amide transport",134,57,62.89,2037,"0.87242","0.86780","0.86780" +"GO:0006650","glycerophospholipid metabolic process",28,14,13.14,956,"0.44448","0.86803","0.86803" +"GO:0016441","posttranscriptional gene silencing",6,0,2.82,2937,"1.00000","0.86818","0.86818" +"GO:0035194","posttranscriptional gene silencing by RN...",6,0,2.82,2938,"1.00000","0.86818","0.86818" +"GO:0062014","negative regulation of small molecule me...",3,0,1.41,2939,"1.00000","0.86853","0.86853" +"GO:0042176","regulation of protein catabolic process",24,9,11.26,2038,"0.87252","0.86865","0.86865" +"GO:0001508","action potential",4,1,1.88,2221,"0.92088","0.86866","0.86866" +"GO:0035637","multicellular organismal signaling",4,1,1.88,2222,"0.92088","0.86866","0.86866" +"GO:0061337","cardiac conduction",4,1,1.88,2223,"0.92088","0.86866","0.86866" +"GO:0010976","positive regulation of neuron projection...",11,4,5.16,1770,"0.84280","0.86950","0.86950" +"GO:0043161","proteasome-mediated ubiquitin-dependent ...",29,8,13.61,2634,"0.99020","0.86968","0.86968" +"GO:0035518","histone H2A monoubiquitination",4,0,1.88,2940,"1.00000","0.86975","0.86975" +"GO:0001936","regulation of endothelial cell prolifera...",3,1,1.41,1908,"0.85074","0.86978","0.86978" +"GO:0002011","morphogenesis of an epithelial sheet",3,0,1.41,2941,"1.00000","0.86978","0.86978" +"GO:0031497","chromatin assembly",11,5,5.16,1471,"0.65287","0.87135","0.87135" +"GO:0034976","response to endoplasmic reticulum stress",28,10,13.14,2158,"0.91837","0.87228","0.87228" +"GO:0032880","regulation of protein localization",52,23,24.41,1519,"0.70290","0.87286","0.87286" +"GO:0006766","vitamin metabolic process",7,3,3.29,1568,"0.72046","0.87340","0.87340" +"GO:0044419","interspecies interaction between organis...",23,6,10.8,2618,"0.98856","0.87356","0.87356" +"GO:2001233","regulation of apoptotic signaling pathwa...",21,8,9.86,1782,"0.84968","0.87369","0.87369" +"GO:0001704","formation of primary germ layer",9,1,4.22,2687,"0.99671","0.87382","0.87382" +"GO:0046822","regulation of nucleocytoplasmic transpor...",4,1,1.88,2224,"0.92088","0.87405","0.87405" +"GO:0006415","translational termination",8,0,3.75,2942,"1.00000","0.87422","0.87422" +"GO:2001237","negative regulation of extrinsic apoptot...",6,1,2.82,2515,"0.97779","0.87435","0.87435" +"GO:0010876","lipid localization",28,12,13.14,1578,"0.73294","0.87472","0.87472" +"GO:0007220","Notch receptor processing",4,1,1.88,2225,"0.92088","0.87512","0.87512" +"GO:0033993","response to lipid",52,16,24.41,2673,"0.99442","0.87536","0.87536" +"GO:0015031","protein transport",133,56,62.43,2078,"0.89200","0.87544","0.87544" +"GO:0015833","peptide transport",133,56,62.43,2079,"0.89200","0.87544","0.87544" +"GO:0140014","mitotic nuclear division",15,5,7.04,2115,"0.90780","0.87549","0.87549" +"GO:0032006","regulation of TOR signaling",10,1,4.69,2722,"0.99826","0.87570","0.87570" +"GO:0007266","Rho protein signal transduction",20,9,9.39,1476,"0.65310","0.87583","0.87583" +"GO:0032355","response to estradiol",9,1,4.22,2688,"0.99671","0.87596","0.87596" +"GO:0060326","cell chemotaxis",3,0,1.41,2943,"1.00000","0.87598","0.87598" +"GO:0071897","DNA biosynthetic process",7,3,3.29,1569,"0.72046","0.87770","0.87770" +"GO:1903827","regulation of cellular protein localizat...",24,7,11.26,2477,"0.97676","0.87802","0.87802" +"GO:0051248","negative regulation of protein metabolic...",58,27,27.22,1277,"0.57522","0.87823","0.87823" +"GO:0006482","protein demethylation",7,2,3.29,2141,"0.91510","0.87929","0.87929" +"GO:0008214","protein dealkylation",7,2,3.29,2142,"0.91510","0.87929","0.87929" +"GO:0070988","demethylation",7,2,3.29,2143,"0.91510","0.87929","0.87929" +"GO:0033962","cytoplasmic mRNA processing body assembl...",3,1,1.41,1909,"0.85074","0.87944","0.87944" +"GO:0071495","cellular response to endogenous stimulus",59,18,27.69,2697,"0.99685","0.87952","0.87952" +"GO:0009607","response to biotic stimulus",32,12,15.02,2093,"0.89589","0.87989","0.87989" +"GO:0019439","aromatic compound catabolic process",45,17,21.12,2159,"0.91894","0.87998","0.87998" +"GO:0034341","response to interferon-gamma",3,1,1.41,1910,"0.85074","0.88025","0.88025" +"GO:0071346","cellular response to interferon-gamma",3,1,1.41,1911,"0.85074","0.88025","0.88025" +"GO:0006353","DNA-templated transcription, termination",4,1,1.88,2226,"0.92088","0.88111","0.88111" +"GO:0006369","termination of RNA polymerase II transcr...",4,1,1.88,2227,"0.92088","0.88111","0.88111" +"GO:0031124","mRNA 3'-end processing",4,0,1.88,2944,"1.00000","0.88111","0.88111" +"GO:0071219","cellular response to molecule of bacteri...",5,1,2.35,2391,"0.95807","0.88123","0.88123" +"GO:0071222","cellular response to lipopolysaccharide",5,1,2.35,2392,"0.95807","0.88123","0.88123" +"GO:0034622","cellular protein-containing complex asse...",97,46,45.53,1203,"0.50155","0.88125","0.88125" +"GO:0034968","histone lysine methylation",10,5,4.69,1242,"0.54585","0.88193","0.88193" +"GO:0022412","cellular process involved in reproductio...",41,17,19.24,1714,"0.80631","0.80279","0.88223" +"GO:0043242","negative regulation of protein complex d...",9,4,4.22,1504,"0.68258","0.88228","0.88228" +"GO:0048232","male gamete generation",32,17,15.02,756,"0.29830","0.54417","0.88238" +"GO:0007339","binding of sperm to zona pellucida",4,1,1.88,2228,"0.92088","0.88319","0.88319" +"GO:0009988","cell-cell recognition",4,1,1.88,2229,"0.92088","0.88319","0.88319" +"GO:0035036","sperm-egg recognition",4,1,1.88,2230,"0.92088","0.88319","0.88319" +"GO:0048260","positive regulation of receptor-mediated...",4,1,1.88,2231,"0.92088","0.88319","0.88319" +"GO:0010968","regulation of microtubule nucleation",4,0,1.88,2945,"1.00000","0.88319","0.88319" +"GO:0046688","response to copper ion",4,0,1.88,2946,"1.00000","0.88319","0.88319" +"GO:0060236","regulation of mitotic spindle organizati...",4,0,1.88,2947,"1.00000","0.88319","0.88319" +"GO:0090063","positive regulation of microtubule nucle...",4,0,1.88,2948,"1.00000","0.88319","0.88319" +"GO:0090169","regulation of spindle assembly",4,0,1.88,2949,"1.00000","0.88319","0.88319" +"GO:0090224","regulation of spindle organization",4,0,1.88,2950,"1.00000","0.88319","0.88319" +"GO:1901673","regulation of mitotic spindle assembly",4,0,1.88,2951,"1.00000","0.88319","0.88319" +"GO:1903828","negative regulation of cellular protein ...",7,3,3.29,1570,"0.72046","0.88455","0.88455" +"GO:0090382","phagosome maturation",4,2,1.88,1449,"0.64033","0.88457","0.88457" +"GO:0015718","monocarboxylic acid transport",11,4,5.16,1771,"0.84280","0.88515","0.88515" +"GO:2001020","regulation of response to DNA damage sti...",9,1,4.22,2689,"0.99671","0.88528","0.88528" +"GO:0030148","sphingolipid biosynthetic process",3,1,1.41,1912,"0.85074","0.88564","0.88564" +"GO:0006996","organelle organization",327,145,153.48,1964,"0.85684","0.70514","0.88574" +"GO:0003006","developmental process involved in reprod...",72,32,33.79,1522,"0.70799","0.83709","0.88595" +"GO:0000075","cell cycle checkpoint",8,2,3.75,2315,"0.94950","0.88633","0.88633" +"GO:0010948","negative regulation of cell cycle proces...",9,2,4.22,2458,"0.97033","0.88653","0.88653" +"GO:0044085","cellular component biogenesis",254,112,119.22,1777,"0.84681","0.88684","0.88684" +"GO:0000302","response to reactive oxygen species",13,2,6.1,2691,"0.99676","0.88757","0.88757" +"GO:0031099","regeneration",13,4,6.1,2279,"0.92872","0.88757","0.88757" +"GO:0061077","chaperone-mediated protein folding",13,3,6.1,2542,"0.98079","0.88757","0.88757" +"GO:0035556","intracellular signal transduction",185,79,86.83,2095,"0.89899","0.88766","0.88766" +"GO:0000280","nuclear division",26,8,12.2,2451,"0.97017","0.88784","0.88784" +"GO:0140013","meiotic nuclear division",11,3,5.16,2329,"0.94987","0.88815","0.88815" +"GO:0016246","RNA interference",5,0,2.35,2952,"1.00000","0.88892","0.88892" +"GO:0043281","regulation of cysteine-type endopeptidas...",8,2,3.75,2316,"0.94950","0.88899","0.88899" +"GO:0007548","sex differentiation",25,11,11.73,1508,"0.68884","0.88923","0.88923" +"GO:0043277","apoptotic cell clearance",4,1,1.88,2232,"0.92088","0.88935","0.88935" +"GO:0032984","protein-containing complex disassembly",27,4,12.67,2773,"0.99992","0.88990","0.88990" +"GO:0032870","cellular response to hormone stimulus",37,12,17.37,2475,"0.97551","0.89061","0.89061" +"GO:0021510","spinal cord development",3,1,1.41,1913,"0.85074","0.89094","0.89094" +"GO:0097327","response to antineoplastic agent",3,0,1.41,2953,"1.00000","0.89094","0.89094" +"GO:0031503","protein-containing complex localization",18,3,8.45,2730,"0.99853","0.89255","0.89255" +"GO:0002682","regulation of immune system process",54,25,25.35,1287,"0.59102","0.89369","0.89369" +"GO:0006110","regulation of glycolytic process",3,1,1.41,1914,"0.85074","0.89403","0.89403" +"GO:0006111","regulation of gluconeogenesis",3,1,1.41,1915,"0.85074","0.89403","0.89403" +"GO:0030808","regulation of nucleotide biosynthetic pr...",3,1,1.41,1916,"0.85074","0.89403","0.89403" +"GO:0030811","regulation of nucleotide catabolic proce...",3,1,1.41,1917,"0.85074","0.89403","0.89403" +"GO:0033002","muscle cell proliferation",3,1,1.41,1918,"0.85074","0.89403","0.89403" +"GO:0043255","regulation of carbohydrate biosynthetic ...",3,1,1.41,1919,"0.85074","0.89403","0.89403" +"GO:0043470","regulation of carbohydrate catabolic pro...",3,1,1.41,1920,"0.85074","0.89403","0.89403" +"GO:0051193","regulation of cofactor metabolic process",3,1,1.41,1921,"0.85074","0.89403","0.89403" +"GO:0051196","regulation of coenzyme metabolic process",3,1,1.41,1922,"0.85074","0.89403","0.89403" +"GO:1900371","regulation of purine nucleotide biosynth...",3,1,1.41,1923,"0.85074","0.89403","0.89403" +"GO:1903523","negative regulation of blood circulation",3,1,1.41,1924,"0.85074","0.89403","0.89403" +"GO:2001169","regulation of ATP biosynthetic process",3,1,1.41,1925,"0.85074","0.89403","0.89403" +"GO:0042278","purine nucleoside metabolic process",6,3,2.82,1320,"0.59733","0.89432","0.89432" +"GO:0009966","regulation of signal transduction",174,75,81.67,2032,"0.87051","0.89444","0.89444" +"GO:0090150","establishment of protein localization to...",17,4,7.98,2568,"0.98780","0.89460","0.89460" +"GO:0048585","negative regulation of response to stimu...",74,27,34.73,2474,"0.97492","0.89471","0.89471" +"GO:0031929","TOR signaling",12,2,5.63,2670,"0.99430","0.89579","0.89579" +"GO:0030509","BMP signaling pathway",6,1,2.82,2516,"0.97779","0.89595","0.89595" +"GO:0042051","compound eye photoreceptor development",6,2,2.82,2001,"0.85949","0.89595","0.89595" +"GO:0040008","regulation of growth",44,20,20.65,1348,"0.63600","0.89605","0.89605" +"GO:0009617","response to bacterium",18,5,8.45,2464,"0.97179","0.89695","0.89695" +"GO:0045088","regulation of innate immune response",18,5,8.45,2465,"0.97179","0.89695","0.89695" +"GO:0048523","negative regulation of cellular process",239,102,112.18,2273,"0.92726","0.89695","0.89695" +"GO:0043388","positive regulation of DNA binding",5,0,2.35,2954,"1.00000","0.89713","0.89713" +"GO:0051101","regulation of DNA binding",5,0,2.35,2955,"1.00000","0.89713","0.89713" +"GO:0044703","multi-organism reproductive process",69,30,32.39,1595,"0.75935","0.83886","0.89787" +"GO:0040014","regulation of multicellular organism gro...",4,2,1.88,1450,"0.64033","0.89801","0.89801" +"GO:0006310","DNA recombination",12,5,5.63,1587,"0.74210","0.89826","0.89826" +"GO:0070646","protein modification by small protein re...",17,4,7.98,2569,"0.98780","0.89971","0.89971" +"GO:1905897","regulation of response to endoplasmic re...",6,1,2.82,2517,"0.97779","0.90023","0.90023" +"GO:0045747","positive regulation of Notch signaling p...",7,1,3.29,2597,"0.98824","0.90048","0.90048" +"GO:0007549","dosage compensation",3,1,1.41,1926,"0.85074","0.90066","0.90066" +"GO:0045184","establishment of protein localization",140,58,65.71,2272,"0.92405","0.90094","0.90094" +"GO:1901796","regulation of signal transduction by p53...",7,3,3.29,1571,"0.72046","0.90183","0.90183" +"GO:0010466","negative regulation of peptidase activit...",7,2,3.29,2144,"0.91510","0.90219","0.90219" +"GO:0000226","microtubule cytoskeleton organization",35,13,16.43,2119,"0.91065","0.90352","0.90352" +"GO:0019915","lipid storage",3,1,1.41,1927,"0.85074","0.90382","0.90382" +"GO:0031145","anaphase-promoting complex-dependent cat...",3,1,1.41,1928,"0.85074","0.90382","0.90382" +"GO:0043901","negative regulation of multi-organism pr...",7,1,3.29,2598,"0.98824","0.90389","0.90389" +"GO:0042221","response to chemical",220,98,103.26,1707,"0.79207","0.90401","0.90401" +"GO:0006413","translational initiation",13,4,6.1,2280,"0.92872","0.90461","0.90461" +"GO:0002252","immune effector process",25,11,11.73,1509,"0.68884","0.90481","0.90481" +"GO:0006886","intracellular protein transport",96,32,45.06,2708,"0.99787","0.90523","0.90523" +"GO:0033692","cellular polysaccharide biosynthetic pro...",4,1,1.88,2233,"0.92088","0.90543","0.90543" +"GO:0034637","cellular carbohydrate biosynthetic proce...",4,1,1.88,2234,"0.92088","0.90543","0.90543" +"GO:0002115","store-operated calcium entry",7,1,3.29,2599,"0.98824","0.90582","0.90582" +"GO:0051928","positive regulation of calcium ion trans...",7,1,3.29,2600,"0.98824","0.90582","0.90582" +"GO:0008589","regulation of smoothened signaling pathw...",3,1,1.41,1929,"0.85074","0.90602","0.90602" +"GO:0010959","regulation of metal ion transport",20,9,9.39,1477,"0.65310","0.44821","0.90674" +"GO:0080134","regulation of response to stress",61,21,28.63,2557,"0.98344","0.90725","0.90725" +"GO:0042177","negative regulation of protein catabolic...",7,2,3.29,2145,"0.91510","0.90725","0.90725" +"GO:0032269","negative regulation of cellular protein ...",53,24,24.88,1464,"0.64801","0.90822","0.90822" +"GO:0001816","cytokine production",22,9,10.33,1700,"0.78242","0.90853","0.90853" +"GO:1900034","regulation of cellular response to heat",4,1,1.88,2235,"0.92088","0.90889","0.90889" +"GO:0030902","hindbrain development",12,2,5.63,2671,"0.99430","0.90916","0.90916" +"GO:0043631","RNA polyadenylation",3,0,1.41,2956,"1.00000","0.90947","0.90947" +"GO:0032386","regulation of intracellular transport",24,6,11.26,2641,"0.99249","0.91062","0.91062" +"GO:0030111","regulation of Wnt signaling pathway",16,7,7.51,1516,"0.69194","0.91082","0.91082" +"GO:0034401","chromatin organization involved in regul...",3,0,1.41,2957,"1.00000","0.91108","0.91108" +"GO:0070868","heterochromatin organization involved in...",3,0,1.41,2958,"1.00000","0.91108","0.91108" +"GO:0097549","chromatin organization involved in negat...",3,0,1.41,2959,"1.00000","0.91108","0.91108" +"GO:1903842","response to arsenite ion",3,0,1.41,2960,"1.00000","0.91108","0.91108" +"GO:0042026","protein refolding",10,1,4.69,2723,"0.99826","0.91243","0.91243" +"GO:0042542","response to hydrogen peroxide",10,1,4.69,2724,"0.99826","0.91243","0.91243" +"GO:0022406","membrane docking",6,3,2.82,1321,"0.59733","0.91336","0.91336" +"GO:0140056","organelle localization by membrane tethe...",6,3,2.82,1322,"0.59733","0.91336","0.91336" +"GO:0043067","regulation of programmed cell death",60,23,28.16,2287,"0.93158","0.91369","0.91369" +"GO:0009069","serine family amino acid metabolic proce...",4,1,1.88,2236,"0.92088","0.91383","0.91383" +"GO:0045168","cell-cell signaling involved in cell fat...",6,2,2.82,2002,"0.85949","0.91410","0.91410" +"GO:0046331","lateral inhibition",6,2,2.82,2003,"0.85949","0.91410","0.91410" +"GO:1901576","organic substance biosynthetic process",678,250,318.23,2813,"1.00000","0.90985","0.91466" +"GO:0033559","unsaturated fatty acid metabolic process",3,1,1.41,1930,"0.85074","0.91479","0.91479" +"GO:0010243","response to organonitrogen compound",48,18,22.53,2285,"0.92987","0.91483","0.91483" +"GO:1903214","regulation of protein targeting to mitoc...",7,1,3.29,2601,"0.98824","0.91485","0.91485" +"GO:1903747","regulation of establishment of protein l...",7,1,3.29,2602,"0.98824","0.91485","0.91485" +"GO:1903749","positive regulation of establishment of ...",7,1,3.29,2603,"0.98824","0.91485","0.91485" +"GO:1903955","positive regulation of protein targeting...",7,1,3.29,2604,"0.98824","0.91485","0.91485" +"GO:0042981","regulation of apoptotic process",59,23,27.69,2152,"0.91535","0.91510","0.91510" +"GO:0010951","negative regulation of endopeptidase act...",6,1,2.82,2518,"0.97779","0.91559","0.91559" +"GO:0043154","negative regulation of cysteine-type end...",6,1,2.82,2519,"0.97779","0.91559","0.91559" +"GO:2000117","negative regulation of cysteine-type end...",6,1,2.82,2520,"0.97779","0.91559","0.91559" +"GO:0002040","sprouting angiogenesis",3,0,1.41,2961,"1.00000","0.91584","0.91584" +"GO:0018195","peptidyl-arginine modification",3,0,1.41,2962,"1.00000","0.91584","0.91584" +"GO:0032873","negative regulation of stress-activated ...",3,0,1.41,2963,"1.00000","0.91584","0.91584" +"GO:0046329","negative regulation of JNK cascade",3,0,1.41,2964,"1.00000","0.91584","0.91584" +"GO:0070303","negative regulation of stress-activated ...",3,0,1.41,2965,"1.00000","0.91584","0.91584" +"GO:0035914","skeletal muscle cell differentiation",4,1,1.88,2237,"0.92088","0.91595","0.91595" +"GO:1903573","negative regulation of response to endop...",5,1,2.35,2393,"0.95807","0.91617","0.91617" +"GO:0031647","regulation of protein stability",17,7,7.98,1599,"0.76325","0.91668","0.91668" +"GO:0030511","positive regulation of transforming grow...",4,1,1.88,2238,"0.92088","0.91686","0.91686" +"GO:0051145","smooth muscle cell differentiation",4,1,1.88,2239,"0.92088","0.91686","0.91686" +"GO:1903846","positive regulation of cellular response...",4,1,1.88,2240,"0.92088","0.91686","0.91686" +"GO:0051924","regulation of calcium ion transport",15,5,7.04,2116,"0.90780","0.91749","0.91749" +"GO:0000956","nuclear-transcribed mRNA catabolic proce...",11,1,5.16,2739,"0.99908","0.91789","0.91789" +"GO:0065003","protein-containing complex assembly",126,58,59.14,1332,"0.61736","0.91840","0.91840" +"GO:0019216","regulation of lipid metabolic process",11,3,5.16,2330,"0.94987","0.91995","0.91995" +"GO:1903051","negative regulation of proteolysis invol...",6,2,2.82,2004,"0.85949","0.91998","0.91998" +"GO:1903363","negative regulation of cellular protein ...",6,2,2.82,2005,"0.85949","0.91998","0.91998" +"GO:0051099","positive regulation of binding",9,3,4.22,2051,"0.87659","0.92086","0.92086" +"GO:0070647","protein modification by small protein co...",77,25,36.14,2699,"0.99685","0.92089","0.92089" +"GO:0044271","cellular nitrogen compound biosynthetic ...",559,202,262.37,2809,"1.00000","0.91983","0.92157" +"GO:0034243","regulation of transcription elongation f...",4,0,1.88,2966,"1.00000","0.92160","0.92160" +"GO:0010033","response to organic substance",141,51,66.18,2704,"0.99695","0.92217","0.92217" +"GO:1903825","organic acid transmembrane transport",17,6,7.98,2067,"0.88755","0.92273","0.92273" +"GO:1905039","carboxylic acid transmembrane transport",17,6,7.98,2068,"0.88755","0.92273","0.92273" +"GO:0044249","cellular biosynthetic process",665,243,312.13,2815,"1.00000","0.91808","0.92279" +"GO:0042273","ribosomal large subunit biogenesis",9,2,4.22,2459,"0.97033","0.92349","0.92349" +"GO:1902850","microtubule cytoskeleton organization in...",9,2,4.22,2460,"0.97033","0.92349","0.92349" +"GO:0010468","regulation of gene expression",375,138,176.01,2793,"0.99999","0.92355","0.92355" +"GO:0009266","response to temperature stimulus",23,6,10.8,2619,"0.98856","0.92366","0.92366" +"GO:0000082","G1/S transition of mitotic cell cycle",14,3,6.57,2613,"0.98831","0.92374","0.92374" +"GO:1903829","positive regulation of cellular protein ...",14,4,6.57,2345,"0.95323","0.92374","0.92374" +"GO:0021549","cerebellum development",10,2,4.69,2552,"0.98274","0.92376","0.92376" +"GO:0022037","metencephalon development",10,2,4.69,2553,"0.98274","0.92376","0.92376" +"GO:0006513","protein monoubiquitination",10,3,4.69,2175,"0.92067","0.92450","0.92450" +"GO:0035601","protein deacylation",7,3,3.29,1572,"0.72046","0.92490","0.92490" +"GO:0098732","macromolecule deacylation",7,3,3.29,1573,"0.72046","0.92490","0.92490" +"GO:0045087","innate immune response",25,7,11.73,2560,"0.98418","0.92529","0.92529" +"GO:0006013","mannose metabolic process",3,1,1.41,1931,"0.85074","0.92585","0.92585" +"GO:0033865","nucleoside bisphosphate metabolic proces...",8,3,3.75,1731,"0.81192","0.92617","0.92617" +"GO:0033875","ribonucleoside bisphosphate metabolic pr...",8,3,3.75,1732,"0.81192","0.92617","0.92617" +"GO:0034032","purine nucleoside bisphosphate metabolic...",8,3,3.75,1733,"0.81192","0.92617","0.92617" +"GO:0033036","macromolecule localization",225,98,105.61,2033,"0.87174","0.91244","0.92630" +"GO:0030970","retrograde protein transport, ER to cyto...",4,1,1.88,2241,"0.92088","0.92651","0.92651" +"GO:1903513","endoplasmic reticulum to cytosol transpo...",4,1,1.88,2242,"0.92088","0.92651","0.92651" +"GO:0030323","respiratory tube development",10,4,4.69,1696,"0.77373","0.92685","0.92685" +"GO:0030855","epithelial cell differentiation",33,14,15.49,1594,"0.75664","0.92729","0.92729" +"GO:0002443","leukocyte mediated immunity",11,3,5.16,2331,"0.94987","0.92899","0.92899" +"GO:0032387","negative regulation of intracellular tra...",5,2,2.35,1657,"0.77210","0.92917","0.92917" +"GO:0009743","response to carbohydrate",8,3,3.75,1734,"0.81192","0.92937","0.92937" +"GO:0043279","response to alkaloid",8,2,3.75,2317,"0.94950","0.92937","0.92937" +"GO:0006458","'de novo' protein folding",8,0,3.75,2967,"1.00000","0.92937","0.92937" +"GO:0009410","response to xenobiotic stimulus",8,0,3.75,2968,"1.00000","0.92937","0.92937" +"GO:0001751","compound eye photoreceptor cell differen...",7,2,3.29,2146,"0.91510","0.93025","0.93025" +"GO:0051701","interaction with host",5,1,2.35,2394,"0.95807","0.93042","0.93042" +"GO:0071705","nitrogen compound transport",155,66,72.75,2064,"0.88595","0.93049","0.93049" +"GO:0043162","ubiquitin-dependent protein catabolic pr...",5,2,2.35,1658,"0.77210","0.93092","0.93092" +"GO:0046777","protein autophosphorylation",9,1,4.22,2690,"0.99671","0.93115","0.93115" +"GO:0007052","mitotic spindle organization",8,1,3.75,2660,"0.99378","0.93172","0.93172" +"GO:0031346","positive regulation of cell projection o...",17,7,7.98,1600,"0.76325","0.93208","0.93208" +"GO:0032011","ARF protein signal transduction",4,2,1.88,1451,"0.64033","0.93238","0.93238" +"GO:0032012","regulation of ARF protein signal transdu...",4,2,1.88,1452,"0.64033","0.93238","0.93238" +"GO:0043524","negative regulation of neuron apoptotic ...",9,3,4.22,2052,"0.87659","0.93271","0.93271" +"GO:1901215","negative regulation of neuron death",9,3,4.22,2053,"0.87659","0.93271","0.93271" +"GO:0033365","protein localization to organelle",52,17,24.41,2567,"0.98763","0.93283","0.93283" +"GO:0051302","regulation of cell division",7,3,3.29,1574,"0.72046","0.93286","0.93286" +"GO:0008333","endosome to lysosome transport",5,2,2.35,1659,"0.77210","0.93289","0.93289" +"GO:1901799","negative regulation of proteasomal prote...",5,1,2.35,2395,"0.95807","0.93289","0.93289" +"GO:0032008","positive regulation of TOR signaling",5,0,2.35,2969,"1.00000","0.93289","0.93289" +"GO:0002218","activation of innate immune response",10,3,4.69,2176,"0.92067","0.93320","0.93320" +"GO:0002221","pattern recognition receptor signaling p...",10,3,4.69,2177,"0.92067","0.93320","0.93320" +"GO:0002758","innate immune response-activating signal...",10,3,4.69,2178,"0.92067","0.93320","0.93320" +"GO:0060548","negative regulation of cell death",46,15,21.59,2558,"0.98375","0.93350","0.93350" +"GO:0044262","cellular carbohydrate metabolic process",12,4,5.63,2089,"0.89314","0.93382","0.93382" +"GO:0016241","regulation of macroautophagy",12,3,5.63,2443,"0.96878","0.93398","0.93398" +"GO:0051246","regulation of protein metabolic process",125,54,58.67,1756,"0.82896","0.93409","0.93409" +"GO:0010648","negative regulation of cell communicatio...",64,23,30.04,2469,"0.97293","0.93413","0.93413" +"GO:0023057","negative regulation of signaling",64,23,30.04,2470,"0.97293","0.93413","0.93413" +"GO:1901361","organic cyclic compound catabolic proces...",49,19,23,2098,"0.90385","0.93459","0.93459" +"GO:0043933","protein-containing complex subunit organ...",145,60,68.06,2283,"0.92909","0.93488","0.93488" +"GO:1902042","negative regulation of extrinsic apoptot...",3,1,1.41,1932,"0.85074","0.93514","0.93514" +"GO:0008610","lipid biosynthetic process",45,16,21.12,2352,"0.95597","0.93520","0.93520" +"GO:0051252","regulation of RNA metabolic process",326,124,153.01,2763,"0.99979","0.93571","0.93571" +"GO:0048477","oogenesis",23,5,10.8,2700,"0.99690","0.93574","0.93574" +"GO:0009968","negative regulation of signal transducti...",62,22,29.1,2476,"0.97574","0.93617","0.93617" +"GO:0032446","protein modification by small protein co...",62,21,29.1,2566,"0.98738","0.93617","0.93617" +"GO:0007249","I-kappaB kinase/NF-kappaB signaling",5,1,2.35,2396,"0.95807","0.93639","0.93639" +"GO:0043122","regulation of I-kappaB kinase/NF-kappaB ...",5,1,2.35,2397,"0.95807","0.93639","0.93639" +"GO:1901362","organic cyclic compound biosynthetic pro...",428,176,200.89,2682,"0.99656","0.93046","0.93666" +"GO:0070887","cellular response to chemical stimulus",120,40,56.32,2745,"0.99928","0.93677","0.93677" +"GO:0035065","regulation of histone acetylation",3,1,1.41,1933,"0.85074","0.93699","0.93699" +"GO:1901983","regulation of protein acetylation",3,1,1.41,1934,"0.85074","0.93699","0.93699" +"GO:2000756","regulation of peptidyl-lysine acetylatio...",3,1,1.41,1935,"0.85074","0.93699","0.93699" +"GO:0009058","biosynthetic process",695,259,326.21,2811,"1.00000","0.93272","0.93701" +"GO:0006355","regulation of transcription, DNA-templat...",319,123,149.73,2751,"0.99948","0.93724","0.93724" +"GO:1903506","regulation of nucleic acid-templated tra...",319,123,149.73,2752,"0.99948","0.93724","0.93724" +"GO:2001141","regulation of RNA biosynthetic process",319,123,149.73,2753,"0.99948","0.93724","0.93724" +"GO:0043069","negative regulation of programmed cell d...",43,14,20.18,2544,"0.98137","0.93777","0.93777" +"GO:0043066","negative regulation of apoptotic process",42,14,19.71,2472,"0.97481","0.93920","0.93920" +"GO:0006414","translational elongation",15,3,7.04,2643,"0.99295","0.93928","0.93928" +"GO:0032268","regulation of cellular protein metabolic...",115,47,53.98,2271,"0.92401","0.93944","0.93944" +"GO:0006955","immune response",46,15,21.59,2559,"0.98375","0.93952","0.93952" +"GO:0007281","germ cell development",37,16,17.37,1577,"0.73118","0.81159","0.93960" +"GO:0050776","regulation of immune response",31,10,14.55,2438,"0.96780","0.93972","0.93972" +"GO:0090307","mitotic spindle assembly",7,1,3.29,2605,"0.98824","0.94002","0.94002" +"GO:0016311","dephosphorylation",43,17,20.18,2036,"0.87210","0.94015","0.94015" +"GO:0060255","regulation of macromolecule metabolic pr...",439,173,206.05,2764,"0.99980","0.94025","0.94025" +"GO:0016567","protein ubiquitination",58,20,27.22,2543,"0.98095","0.94026","0.94026" +"GO:0071396","cellular response to lipid",36,12,16.9,2437,"0.96661","0.94043","0.94043" +"GO:0010822","positive regulation of mitochondrion org...",8,2,3.75,2318,"0.94950","0.94061","0.94061" +"GO:1903533","regulation of protein targeting",8,1,3.75,2661,"0.99378","0.94061","0.94061" +"GO:0032786","positive regulation of DNA-templated tra...",3,0,1.41,2970,"1.00000","0.94063","0.94063" +"GO:0060795","cell fate commitment involved in formati...",4,1,1.88,2243,"0.92088","0.94193","0.94193" +"GO:0018130","heterocycle biosynthetic process",420,171,197.13,2709,"0.99787","0.93610","0.94217" +"GO:0065002","intracellular protein transmembrane tran...",11,2,5.16,2623,"0.99005","0.94280","0.94280" +"GO:0006644","phospholipid metabolic process",42,19,19.71,1460,"0.64615","0.94312","0.94312" +"GO:0007166","cell surface receptor signaling pathway",125,53,58.67,2034,"0.87176","0.94325","0.94325" +"GO:0006767","water-soluble vitamin metabolic process",3,1,1.41,1936,"0.85074","0.94373","0.94373" +"GO:0051568","histone H3-K4 methylation",4,2,1.88,1453,"0.64033","0.94396","0.94396" +"GO:0009409","response to cold",4,0,1.88,2971,"1.00000","0.94396","0.94396" +"GO:0010604","positive regulation of macromolecule met...",124,57,58.2,1334,"0.62253","0.94432","0.94432" +"GO:0016043","cellular component organization",478,220,224.36,1510,"0.68909","0.67112","0.94446" +"GO:0062012","regulation of small molecule metabolic p...",10,1,4.69,2725,"0.99826","0.94479","0.94479" +"GO:0019438","aromatic compound biosynthetic process",415,170,194.79,2696,"0.99679","0.93954","0.94553" +"GO:0045935","positive regulation of nucleobase-contai...",68,31,31.92,1347,"0.63551","0.94590","0.94590" +"GO:0043243","positive regulation of protein complex d...",4,0,1.88,2972,"1.00000","0.94596","0.94596" +"GO:0032103","positive regulation of response to exter...",6,1,2.82,2521,"0.97779","0.94658","0.94658" +"GO:0032943","mononuclear cell proliferation",6,2,2.82,2006,"0.85949","0.94658","0.94658" +"GO:0046651","lymphocyte proliferation",6,2,2.82,2007,"0.85949","0.94658","0.94658" +"GO:0070661","leukocyte proliferation",6,2,2.82,2008,"0.85949","0.94658","0.94658" +"GO:0010628","positive regulation of gene expression",80,35,37.55,1593,"0.75571","0.94750","0.94750" +"GO:0002274","myeloid leukocyte activation",8,2,3.75,2319,"0.94950","0.94790","0.94790" +"GO:0080090","regulation of primary metabolic process",414,162,194.32,2765,"0.99980","0.94805","0.94805" +"GO:0006511","ubiquitin-dependent protein catabolic pr...",47,13,22.06,2710,"0.99800","0.94820","0.94820" +"GO:0019941","modification-dependent protein catabolic...",47,13,22.06,2711,"0.99800","0.94820","0.94820" +"GO:0043632","modification-dependent macromolecule cat...",47,13,22.06,2712,"0.99800","0.94820","0.94820" +"GO:0006497","protein lipidation",11,4,5.16,1772,"0.84280","0.94828","0.94828" +"GO:0042158","lipoprotein biosynthetic process",11,4,5.16,1773,"0.84280","0.94828","0.94828" +"GO:0032007","negative regulation of TOR signaling",4,1,1.88,2244,"0.92088","0.94841","0.94841" +"GO:0038202","TORC1 signaling",4,0,1.88,2973,"1.00000","0.94841","0.94841" +"GO:0071310","cellular response to organic substance",98,31,46,2749,"0.99941","0.94851","0.94851" +"GO:0010608","posttranscriptional regulation of gene e...",24,5,11.26,2714,"0.99806","0.94862","0.94862" +"GO:0006479","protein methylation",20,9,9.39,1478,"0.65310","0.94926","0.94926" +"GO:0008213","protein alkylation",20,9,9.39,1479,"0.65310","0.94926","0.94926" +"GO:0051048","negative regulation of secretion",4,2,1.88,1454,"0.64033","0.94938","0.94938" +"GO:1903531","negative regulation of secretion by cell",4,2,1.88,1455,"0.64033","0.94938","0.94938" +"GO:0051171","regulation of nitrogen compound metaboli...",408,161,191.5,2759,"0.99962","0.94988","0.94988" +"GO:0002263","cell activation involved in immune respo...",5,2,2.35,1660,"0.77210","0.95019","0.95019" +"GO:0002275","myeloid cell activation involved in immu...",5,2,2.35,1661,"0.77210","0.95019","0.95019" +"GO:0002283","neutrophil activation involved in immune...",5,2,2.35,1662,"0.77210","0.95019","0.95019" +"GO:0002366","leukocyte activation involved in immune ...",5,2,2.35,1663,"0.77210","0.95019","0.95019" +"GO:0043299","leukocyte degranulation",5,2,2.35,1664,"0.77210","0.95019","0.95019" +"GO:0043312","neutrophil degranulation",5,2,2.35,1665,"0.77210","0.95019","0.95019" +"GO:0010669","epithelial structure maintenance",8,3,3.75,1735,"0.81192","0.95046","0.95046" +"GO:0046717","acid secretion",5,1,2.35,2398,"0.95807","0.95062","0.95062" +"GO:0007346","regulation of mitotic cell cycle",22,7,10.33,2341,"0.95155","0.95113","0.95113" +"GO:0033157","regulation of intracellular protein tran...",16,3,7.51,2679,"0.99579","0.95154","0.95154" +"GO:0051259","protein complex oligomerization",25,9,11.73,2103,"0.90461","0.95175","0.95175" +"GO:0008285","negative regulation of cell proliferatio...",27,10,12.67,2077,"0.89138","0.95203","0.95203" +"GO:0034654","nucleobase-containing compound biosynthe...",405,165,190.09,2707,"0.99734","0.94625","0.95205" +"GO:0070828","heterochromatin organization",4,0,1.88,2974,"1.00000","0.95223","0.95223" +"GO:0003014","renal system process",3,1,1.41,1937,"0.85074","0.95297","0.95297" +"GO:0033866","nucleoside bisphosphate biosynthetic pro...",5,2,2.35,1666,"0.77210","0.95325","0.95325" +"GO:0034030","ribonucleoside bisphosphate biosynthetic...",5,2,2.35,1667,"0.77210","0.95325","0.95325" +"GO:0034033","purine nucleoside bisphosphate biosynthe...",5,2,2.35,1668,"0.77210","0.95325","0.95325" +"GO:0009059","macromolecule biosynthetic process",552,182,259.09,2823,"1.00000","0.95363","0.95363" +"GO:0002444","myeloid leukocyte mediated immunity",6,2,2.82,2009,"0.85949","0.95380","0.95380" +"GO:0002446","neutrophil mediated immunity",6,2,2.82,2010,"0.85949","0.95380","0.95380" +"GO:0036230","granulocyte activation",6,2,2.82,2011,"0.85949","0.95380","0.95380" +"GO:0042119","neutrophil activation",6,2,2.82,2012,"0.85949","0.95380","0.95380" +"GO:0022618","ribonucleoprotein complex assembly",18,6,8.45,2162,"0.92048","0.95398","0.95398" +"GO:0071826","ribonucleoprotein complex subunit organi...",18,6,8.45,2163,"0.92048","0.95398","0.95398" +"GO:0034645","cellular macromolecule biosynthetic proc...",549,180,257.68,2825,"1.00000","0.95425","0.95425" +"GO:0051054","positive regulation of DNA metabolic pro...",8,2,3.75,2320,"0.94950","0.95443","0.95443" +"GO:0071554","cell wall organization or biogenesis",4,1,1.88,2245,"0.92088","0.95454","0.95454" +"GO:0030031","cell projection assembly",36,14,16.9,2040,"0.87376","0.95528","0.95528" +"GO:0120031","plasma membrane bounded cell projection ...",36,14,16.9,2041,"0.87376","0.95528","0.95528" +"GO:0001705","ectoderm formation",3,0,1.41,2975,"1.00000","0.95614","0.95614" +"GO:0001712","ectodermal cell fate commitment",3,0,1.41,2976,"1.00000","0.95614","0.95614" +"GO:0001713","ectodermal cell fate determination",3,0,1.41,2977,"1.00000","0.95614","0.95614" +"GO:0007398","ectoderm development",3,0,1.41,2978,"1.00000","0.95614","0.95614" +"GO:0010668","ectodermal cell differentiation",3,0,1.41,2979,"1.00000","0.95614","0.95614" +"GO:0006959","humoral immune response",6,3,2.82,1323,"0.59733","0.95640","0.95640" +"GO:0000027","ribosomal large subunit assembly",5,1,2.35,2399,"0.95807","0.95681","0.95681" +"GO:0007021","tubulin complex assembly",3,1,1.41,1938,"0.85074","0.95691","0.95691" +"GO:0010998","regulation of translational initiation b...",3,0,1.41,2980,"1.00000","0.95691","0.95691" +"GO:0043555","regulation of translation in response to...",3,0,1.41,2981,"1.00000","0.95691","0.95691" +"GO:0043558","regulation of translational initiation i...",3,0,1.41,2982,"1.00000","0.95691","0.95691" +"GO:0071479","cellular response to ionizing radiation",3,0,1.41,2983,"1.00000","0.95691","0.95691" +"GO:1901566","organonitrogen compound biosynthetic pro...",267,90,125.32,2799,"1.00000","0.95277","0.95728" +"GO:0043603","cellular amide metabolic process",168,42,78.85,2812,"1.00000","0.95742","0.95742" +"GO:0006517","protein deglycosylation",3,0,1.41,2984,"1.00000","0.95768","0.95768" +"GO:0030260","entry into host cell",3,0,1.41,2985,"1.00000","0.95768","0.95768" +"GO:0040039","inductive cell migration",3,0,1.41,2986,"1.00000","0.95768","0.95768" +"GO:0044409","entry into host",3,0,1.41,2987,"1.00000","0.95768","0.95768" +"GO:0048525","negative regulation of viral process",3,0,1.41,2988,"1.00000","0.95768","0.95768" +"GO:0051806","entry into cell of other organism involv...",3,0,1.41,2989,"1.00000","0.95768","0.95768" +"GO:0051828","entry into other organism involved in sy...",3,0,1.41,2990,"1.00000","0.95768","0.95768" +"GO:1903901","negative regulation of viral life cycle",3,0,1.41,2991,"1.00000","0.95768","0.95768" +"GO:0051726","regulation of cell cycle",64,26,30.04,2042,"0.87550","0.95821","0.95821" +"GO:0019953","sexual reproduction",63,25,29.57,2096,"0.90300","0.91066","0.95829" +"GO:0042255","ribosome assembly",8,1,3.75,2662,"0.99378","0.95840","0.95840" +"GO:0042440","pigment metabolic process",6,2,2.82,2013,"0.85949","0.95857","0.95857" +"GO:0090287","regulation of cellular response to growt...",15,3,7.04,2644,"0.99295","0.95863","0.95863" +"GO:0035966","response to topologically incorrect prot...",16,5,7.51,2289,"0.93695","0.95871","0.95871" +"GO:0009408","response to heat",19,5,8.92,2546,"0.98148","0.95918","0.95918" +"GO:2000059","negative regulation of ubiquitin-depende...",3,1,1.41,1939,"0.85074","0.95921","0.95921" +"GO:0030728","ovulation",4,1,1.88,2246,"0.92088","0.95923","0.95923" +"GO:0001655","urogenital system development",25,10,11.73,1748,"0.81546","0.95934","0.95934" +"GO:0072001","renal system development",25,10,11.73,1749,"0.81546","0.95934","0.95934" +"GO:0007276","gamete generation",54,21,25.35,2118,"0.90975","0.90809","0.95945" +"GO:0042058","regulation of epidermal growth factor re...",5,1,2.35,2400,"0.95807","0.95967","0.95967" +"GO:0042059","negative regulation of epidermal growth ...",5,1,2.35,2401,"0.95807","0.95967","0.95967" +"GO:1901184","regulation of ERBB signaling pathway",5,1,2.35,2402,"0.95807","0.95967","0.95967" +"GO:1901185","negative regulation of ERBB signaling pa...",5,1,2.35,2403,"0.95807","0.95967","0.95967" +"GO:0005996","monosaccharide metabolic process",16,7,7.51,1517,"0.69194","0.95980","0.95980" +"GO:0008299","isoprenoid biosynthetic process",4,1,1.88,2247,"0.92088","0.95988","0.95988" +"GO:0051170","import into nucleus",12,1,5.63,2756,"0.99951","0.95994","0.95994" +"GO:1901800","positive regulation of proteasomal prote...",9,3,4.22,2054,"0.87659","0.95995","0.95995" +"GO:1903052","positive regulation of proteolysis invol...",9,3,4.22,2055,"0.87659","0.95995","0.95995" +"GO:1903364","positive regulation of cellular protein ...",9,3,4.22,2056,"0.87659","0.95995","0.95995" +"GO:0032309","icosanoid secretion",4,1,1.88,2248,"0.92088","0.96031","0.96031" +"GO:0050482","arachidonic acid secretion",4,1,1.88,2249,"0.92088","0.96031","0.96031" +"GO:0071715","icosanoid transport",4,1,1.88,2250,"0.92088","0.96031","0.96031" +"GO:1901571","fatty acid derivative transport",4,1,1.88,2251,"0.92088","0.96031","0.96031" +"GO:1903963","arachidonate transport",4,1,1.88,2252,"0.92088","0.96031","0.96031" +"GO:0043434","response to peptide hormone",8,3,3.75,1736,"0.81192","0.96055","0.96055" +"GO:0071375","cellular response to peptide hormone sti...",8,3,3.75,1737,"0.81192","0.96055","0.96055" +"GO:0072331","signal transduction by p53 class mediato...",8,3,3.75,1738,"0.81192","0.96055","0.96055" +"GO:1901652","response to peptide",8,3,3.75,1739,"0.81192","0.96055","0.96055" +"GO:1901653","cellular response to peptide",8,3,3.75,1740,"0.81192","0.96055","0.96055" +"GO:0007167","enzyme linked receptor protein signaling...",38,12,17.84,2548,"0.98221","0.96075","0.96075" +"GO:0007293","germarium-derived egg chamber formation",3,1,1.41,1940,"0.85074","0.96107","0.96107" +"GO:0045834","positive regulation of lipid metabolic p...",3,1,1.41,1941,"0.85074","0.96107","0.96107" +"GO:1903432","regulation of TORC1 signaling",3,0,1.41,2992,"1.00000","0.96107","0.96107" +"GO:0021680","cerebellar Purkinje cell layer developme...",5,2,2.35,1669,"0.77210","0.96120","0.96120" +"GO:0021695","cerebellar cortex development",5,2,2.35,1670,"0.77210","0.96120","0.96120" +"GO:0006518","peptide metabolic process",151,33,70.87,2817,"1.00000","0.96191","0.96191" +"GO:0044265","cellular macromolecule catabolic process",71,16,33.32,2795,"1.00000","0.96283","0.96283" +"GO:0000271","polysaccharide biosynthetic process",5,1,2.35,2404,"0.95807","0.96299","0.96299" +"GO:0044264","cellular polysaccharide metabolic proces...",5,1,2.35,2405,"0.95807","0.96299","0.96299" +"GO:0006354","DNA-templated transcription, elongation",14,3,6.57,2614,"0.98831","0.96313","0.96313" +"GO:0032784","regulation of DNA-templated transcriptio...",8,1,3.75,2663,"0.99378","0.96323","0.96323" +"GO:0034248","regulation of cellular amide metabolic p...",17,6,7.98,2069,"0.88755","0.96343","0.96343" +"GO:0043954","cellular component maintenance",3,1,1.41,1942,"0.85074","0.96397","0.96397" +"GO:0006942","regulation of striated muscle contractio...",4,1,1.88,2253,"0.92088","0.96409","0.96409" +"GO:0010921","regulation of phosphatase activity",4,2,1.88,1456,"0.64033","0.96409","0.96409" +"GO:0055117","regulation of cardiac muscle contraction",4,1,1.88,2254,"0.92088","0.96409","0.96409" +"GO:0048678","response to axon injury",4,0,1.88,2993,"1.00000","0.96409","0.96409" +"GO:0002253","activation of immune response",16,6,7.51,1775,"0.84368","0.96413","0.96413" +"GO:0043604","amide biosynthetic process",142,32,66.65,2814,"1.00000","0.96428","0.96428" +"GO:0036503","ERAD pathway",17,5,7.98,2356,"0.95753","0.96448","0.96448" +"GO:1990542","mitochondrial transmembrane transport",16,5,7.51,2290,"0.93695","0.96454","0.96454" +"GO:0035584","calcium-mediated signaling using intrace...",3,0,1.41,2994,"1.00000","0.96526","0.96526" +"GO:0000466","maturation of 5.8S rRNA from tricistroni...",4,1,1.88,2255,"0.92088","0.96531","0.96531" +"GO:0044843","cell cycle G1/S phase transition",16,3,7.51,2680,"0.99579","0.96545","0.96545" +"GO:0006417","regulation of translation",16,5,7.51,2291,"0.93695","0.96555","0.96555" +"GO:0032774","RNA biosynthetic process",350,131,164.28,2786,"0.99996","0.96558","0.96558" +"GO:0071840","cellular component organization or bioge...",498,224,233.74,1778,"0.84744","0.72963","0.96560" +"GO:0006351","transcription, DNA-templated",349,131,163.81,2782,"0.99995","0.96578","0.96578" +"GO:0009889","regulation of biosynthetic process",349,131,163.81,2783,"0.99995","0.96578","0.96578" +"GO:0097659","nucleic acid-templated transcription",349,131,163.81,2784,"0.99995","0.96578","0.96578" +"GO:0001822","kidney development",21,8,9.86,1783,"0.84968","0.96578","0.96578" +"GO:0099402","plant organ development",8,2,3.75,2321,"0.94950","0.96597","0.96597" +"GO:0031330","negative regulation of cellular cataboli...",14,5,6.57,2027,"0.86746","0.96629","0.96629" +"GO:0043043","peptide biosynthetic process",134,27,62.89,2818,"1.00000","0.96636","0.96636" +"GO:0006109","regulation of carbohydrate metabolic pro...",6,1,2.82,2522,"0.97779","0.96642","0.96642" +"GO:0046890","regulation of lipid biosynthetic process",6,1,2.82,2523,"0.97779","0.96642","0.96642" +"GO:0031398","positive regulation of protein ubiquitin...",11,3,5.16,2332,"0.94987","0.96649","0.96649" +"GO:1903322","positive regulation of protein modificat...",11,3,5.16,2333,"0.94987","0.96649","0.96649" +"GO:0031326","regulation of cellular biosynthetic proc...",345,130,161.93,2776,"0.99992","0.96656","0.96656" +"GO:0006412","translation",133,26,62.43,2821,"1.00000","0.96662","0.96662" +"GO:0051247","positive regulation of protein metabolic...",63,25,29.57,2097,"0.90300","0.96705","0.96705" +"GO:0010556","regulation of macromolecule biosynthetic...",342,129,160.52,2772,"0.99991","0.96714","0.96714" +"GO:0021575","hindbrain morphogenesis",4,2,1.88,1457,"0.64033","0.96730","0.96730" +"GO:0021587","cerebellum morphogenesis",4,2,1.88,1458,"0.64033","0.96730","0.96730" +"GO:2000112","regulation of cellular macromolecule bio...",341,128,160.05,2777,"0.99993","0.96734","0.96734" +"GO:0034097","response to cytokine",29,8,13.61,2635,"0.99020","0.96794","0.96794" +"GO:0032270","positive regulation of cellular protein ...",60,22,28.16,2428,"0.96030","0.96863","0.96863" +"GO:0019219","regulation of nucleobase-containing comp...",334,125,156.77,2778,"0.99993","0.96869","0.96869" +"GO:0071345","cellular response to cytokine stimulus",28,8,13.14,2563,"0.98566","0.96904","0.96904" +"GO:0008219","cell death",97,39,45.53,2274,"0.92806","0.96912","0.96912" +"GO:0090316","positive regulation of intracellular pro...",10,1,4.69,2726,"0.99826","0.96950","0.96950" +"GO:0043966","histone H3 acetylation",5,1,2.35,2406,"0.95807","0.97033","0.97033" +"GO:0051402","neuron apoptotic process",11,3,5.16,2334,"0.94987","0.97095","0.97095" +"GO:0070997","neuron death",11,3,5.16,2335,"0.94987","0.97095","0.97095" +"GO:0007292","female gamete generation",26,6,12.2,2698,"0.99685","0.97124","0.97124" +"GO:0006643","membrane lipid metabolic process",16,4,7.51,2536,"0.98067","0.97162","0.97162" +"GO:0046467","membrane lipid biosynthetic process",10,2,4.69,2554,"0.98274","0.97162","0.97162" +"GO:0046474","glycerophospholipid biosynthetic process",10,4,4.69,1697,"0.77373","0.97162","0.97162" +"GO:0014070","response to organic cyclic compound",54,17,25.35,2645,"0.99326","0.97179","0.97179" +"GO:0044257","cellular protein catabolic process",53,14,24.88,2747,"0.99940","0.97232","0.97232" +"GO:0051603","proteolysis involved in cellular protein...",53,14,24.88,2748,"0.99940","0.97232","0.97232" +"GO:0033273","response to vitamin",3,1,1.41,1943,"0.85074","0.97296","0.97296" +"GO:0002027","regulation of heart rate",3,0,1.41,2995,"1.00000","0.97296","0.97296" +"GO:0031103","axon regeneration",3,0,1.41,2996,"1.00000","0.97296","0.97296" +"GO:0086065","cell communication involved in cardiac c...",3,0,1.41,2997,"1.00000","0.97296","0.97296" +"GO:0009895","negative regulation of catabolic process",15,5,7.04,2117,"0.90780","0.97296","0.97296" +"GO:0048285","organelle fission",28,9,13.14,2434,"0.96308","0.97311","0.97311" +"GO:0045017","glycerolipid biosynthetic process",12,4,5.63,2090,"0.89314","0.97348","0.97348" +"GO:0043523","regulation of neuron apoptotic process",10,3,4.69,2179,"0.92067","0.97356","0.97356" +"GO:1901214","regulation of neuron death",10,3,4.69,2180,"0.92067","0.97356","0.97356" +"GO:0071702","organic substance transport",182,77,85.42,2153,"0.91579","0.97368","0.97368" +"GO:0000463","maturation of LSU-rRNA from tricistronic...",3,1,1.41,1944,"0.85074","0.97388","0.97388" +"GO:0000470","maturation of LSU-rRNA",3,1,1.41,1945,"0.85074","0.97388","0.97388" +"GO:1902626","assembly of large subunit precursor of p...",3,0,1.41,2998,"1.00000","0.97388","0.97388" +"GO:2001252","positive regulation of chromosome organi...",8,2,3.75,2322,"0.94950","0.97420","0.97420" +"GO:0006457","protein folding",32,5,15.02,2787,"0.99996","0.97433","0.97433" +"GO:0018022","peptidyl-lysine methylation",14,6,6.57,1533,"0.71523","0.97458","0.97458" +"GO:0090092","regulation of transmembrane receptor pro...",12,1,5.63,2757,"0.99951","0.97470","0.97470" +"GO:2001022","positive regulation of response to DNA d...",5,0,2.35,2999,"1.00000","0.97538","0.97538" +"GO:0010941","regulation of cell death",71,29,33.32,2060,"0.87799","0.97555","0.97555" +"GO:1901661","quinone metabolic process",3,0,1.41,3000,"1.00000","0.97656","0.97656" +"GO:0006631","fatty acid metabolic process",20,6,9.39,2433,"0.96199","0.97734","0.97734" +"GO:0034105","positive regulation of tissue remodeling",3,1,1.41,1946,"0.85074","0.97751","0.97751" +"GO:0010039","response to iron ion",4,1,1.88,2256,"0.92088","0.97756","0.97756" +"GO:0012501","programmed cell death",86,33,40.37,2425,"0.95875","0.97810","0.97810" +"GO:0034641","cellular nitrogen compound metabolic pro...",736,261,345.45,2822,"1.00000","0.98200","0.97823" +"GO:0000209","protein polyubiquitination",21,6,9.86,2471,"0.97423","0.97826","0.97826" +"GO:0007169","transmembrane receptor protein tyrosine ...",21,8,9.86,1784,"0.84968","0.97826","0.97826" +"GO:0017038","protein import",19,2,8.92,2771,"0.99990","0.97826","0.97826" +"GO:0007033","vacuole organization",16,4,7.51,2537,"0.98067","0.97851","0.97851" +"GO:0097193","intrinsic apoptotic signaling pathway",13,4,6.1,2281,"0.92872","0.97866","0.97866" +"GO:0009615","response to virus",6,2,2.82,2014,"0.85949","0.97949","0.97949" +"GO:0051607","defense response to virus",6,2,2.82,2015,"0.85949","0.97949","0.97949" +"GO:0036065","fucosylation",4,0,1.88,3001,"1.00000","0.97964","0.97964" +"GO:0006476","protein deacetylation",6,2,2.82,2016,"0.85949","0.97975","0.97975" +"GO:0016575","histone deacetylation",6,2,2.82,2017,"0.85949","0.97975","0.97975" +"GO:0071407","cellular response to organic cyclic comp...",33,11,15.49,2429,"0.96151","0.97988","0.97988" +"GO:0019318","hexose metabolic process",14,6,6.57,1534,"0.71523","0.98003","0.98003" +"GO:0006301","postreplication repair",4,1,1.88,2257,"0.92088","0.98011","0.98011" +"GO:0097722","sperm motility",4,1,1.88,2258,"0.92088","0.98011","0.98011" +"GO:0007178","transmembrane receptor protein serine/th...",19,3,8.92,2742,"0.99914","0.98033","0.98033" +"GO:0006325","chromatin organization",70,19,32.86,2766,"0.99982","0.98040","0.98040" +"GO:0071557","histone H3-K27 demethylation",3,0,1.41,3002,"1.00000","0.98070","0.98070" +"GO:0002764","immune response-regulating signaling pat...",15,4,7.04,2447,"0.96974","0.98080","0.98080" +"GO:0031349","positive regulation of defense response",15,4,7.04,2448,"0.96974","0.98080","0.98080" +"GO:0006839","mitochondrial transport",29,10,13.61,2293,"0.93943","0.98103","0.98103" +"GO:1903320","regulation of protein modification by sm...",17,4,7.98,2570,"0.98780","0.98117","0.98117" +"GO:0030162","regulation of proteolysis",36,11,16.9,2561,"0.98549","0.98124","0.98124" +"GO:0071806","protein transmembrane transport",16,2,7.51,2750,"0.99942","0.98168","0.98168" +"GO:0006915","apoptotic process",81,31,38.02,2353,"0.95623","0.98194","0.98194" +"GO:0010942","positive regulation of cell death",17,6,7.98,2070,"0.88755","0.98197","0.98197" +"GO:0031396","regulation of protein ubiquitination",16,4,7.51,2538,"0.98067","0.98227","0.98227" +"GO:0006366","transcription by RNA polymerase II",108,42,50.69,2435,"0.96549","0.98265","0.98265" +"GO:0090305","nucleic acid phosphodiester bond hydroly...",8,0,3.75,3003,"1.00000","0.98268","0.98268" +"GO:0010498","proteasomal protein catabolic process",33,9,15.49,2669,"0.99390","0.98281","0.98281" +"GO:0006626","protein targeting to mitochondrion",15,2,7.04,2735,"0.99897","0.98283","0.98283" +"GO:0070585","protein localization to mitochondrion",15,2,7.04,2736,"0.99897","0.98283","0.98283" +"GO:0072655","establishment of protein localization to...",15,2,7.04,2737,"0.99897","0.98283","0.98283" +"GO:0002181","cytoplasmic translation",7,1,3.29,2606,"0.98824","0.98288","0.98288" +"GO:0044267","cellular protein metabolic process",557,203,261.44,2808,"1.00000","0.98343","0.98343" +"GO:0006605","protein targeting",33,8,15.49,2713,"0.99804","0.98383","0.98383" +"GO:0044743","protein transmembrane import into intrac...",14,1,6.57,2768,"0.99986","0.98397","0.98397" +"GO:0006383","transcription by RNA polymerase III",6,1,2.82,2524,"0.97779","0.98408","0.98408" +"GO:0018193","peptidyl-amino acid modification",69,24,32.39,2565,"0.98581","0.98417","0.98417" +"GO:0006733","oxidoreduction coenzyme metabolic proces...",17,10,7.98,582,"0.22904","0.03504","0.98433" +"GO:0006661","phosphatidylinositol biosynthetic proces...",7,2,3.29,2147,"0.91510","0.98447","0.98447" +"GO:0009247","glycolipid biosynthetic process",7,1,3.29,2607,"0.98824","0.98447","0.98447" +"GO:0030433","ubiquitin-dependent ERAD pathway",14,3,6.57,2615,"0.98831","0.98449","0.98449" +"GO:0045089","positive regulation of innate immune res...",14,4,6.57,2346,"0.95323","0.98449","0.98449" +"GO:0006725","cellular aromatic compound metabolic pro...",604,227,283.5,2803,"1.00000","0.98810","0.98484" +"GO:0046486","glycerolipid metabolic process",31,14,14.55,1462,"0.64664","0.98516","0.98516" +"GO:0046483","heterocycle metabolic process",603,225,283.03,2805,"1.00000","0.98813","0.98518" +"GO:0001754","eye photoreceptor cell differentiation",14,4,6.57,2347,"0.95323","0.98549","0.98549" +"GO:0046530","photoreceptor cell differentiation",14,4,6.57,2348,"0.95323","0.98549","0.98549" +"GO:1902275","regulation of chromatin organization",13,4,6.1,2282,"0.92872","0.98559","0.98559" +"GO:0071704","organic substance metabolic process",1430,620,671.19,2792,"0.99998","0.98013","0.98576" +"GO:0009057","macromolecule catabolic process",82,19,38.49,2798,"1.00000","0.98627","0.98627" +"GO:0007259","JAK-STAT cascade",3,0,1.41,3004,"1.00000","0.98652","0.98652" +"GO:0097696","STAT cascade",3,0,1.41,3005,"1.00000","0.98652","0.98652" +"GO:0006506","GPI anchor biosynthetic process",6,1,2.82,2525,"0.97779","0.98668","0.98668" +"GO:0035967","cellular response to topologically incor...",12,2,5.63,2672,"0.99430","0.98670","0.98670" +"GO:2000058","regulation of ubiquitin-dependent protei...",12,4,5.63,2091,"0.89314","0.98670","0.98670" +"GO:0008585","female gonad development",5,2,2.35,1671,"0.77210","0.98672","0.98672" +"GO:0002753","cytoplasmic pattern recognition receptor...",6,1,2.82,2526,"0.97779","0.98699","0.98699" +"GO:0071384","cellular response to corticosteroid stim...",4,0,1.88,3006,"1.00000","0.98772","0.98772" +"GO:0032434","regulation of proteasomal ubiquitin-depe...",11,3,5.16,2336,"0.94987","0.98780","0.98780" +"GO:0034605","cellular response to heat",11,1,5.16,2740,"0.99908","0.98780","0.98780" +"GO:1901360","organic cyclic compound metabolic proces...",622,236,291.94,2801,"1.00000","0.98763","0.98803" +"GO:0016577","histone demethylation",6,1,2.82,2527,"0.97779","0.98819","0.98819" +"GO:0006259","DNA metabolic process",62,23,29.1,2354,"0.95633","0.98847","0.98847" +"GO:0042461","photoreceptor cell development",11,3,5.16,2337,"0.94987","0.98860","0.98860" +"GO:0042462","eye photoreceptor cell development",11,3,5.16,2338,"0.94987","0.98860","0.98860" +"GO:0006040","amino sugar metabolic process",36,28,16.9,10,"0.00014","2.7e-05","0.98867" +"GO:1901071","glucosamine-containing compound metaboli...",36,28,16.9,11,"0.00014","2.7e-05","0.98867" +"GO:0019221","cytokine-mediated signaling pathway",7,2,3.29,2148,"0.91510","0.98892","0.98892" +"GO:0016072","rRNA metabolic process",14,2,6.57,2716,"0.99816","0.98895","0.98895" +"GO:0006139","nucleobase-containing compound metabolic...",580,214,272.23,2807,"1.00000","0.98871","0.98910" +"GO:0030163","protein catabolic process",64,17,30.04,2762,"0.99978","0.98934","0.98934" +"GO:0034698","response to gonadotropin",4,1,1.88,2259,"0.92088","0.98937","0.98937" +"GO:0090101","negative regulation of transmembrane rec...",5,0,2.35,3007,"1.00000","0.98941","0.98941" +"GO:0090288","negative regulation of cellular response...",5,0,2.35,3008,"1.00000","0.98941","0.98941" +"GO:0034250","positive regulation of cellular amide me...",3,0,1.41,3009,"1.00000","0.98945","0.98945" +"GO:0045727","positive regulation of translation",3,0,1.41,3010,"1.00000","0.98945","0.98945" +"GO:0030258","lipid modification",16,6,7.51,1776,"0.84368","0.98954","0.98954" +"GO:0000460","maturation of 5.8S rRNA",5,1,2.35,2407,"0.95807","0.98966","0.98966" +"GO:0051438","regulation of ubiquitin-protein transfer...",3,1,1.41,1947,"0.85074","0.98971","0.98971" +"GO:0051443","positive regulation of ubiquitin-protein...",3,1,1.41,1948,"0.85074","0.98971","0.98971" +"GO:0031056","regulation of histone modification",9,3,4.22,2057,"0.87659","0.99002","0.99002" +"GO:0070936","protein K48-linked ubiquitination",9,2,4.22,2461,"0.97033","0.99002","0.99002" +"GO:0070076","histone lysine demethylation",5,1,2.35,2408,"0.95807","0.99016","0.99016" +"GO:0051865","protein autoubiquitination",5,2,2.35,1672,"0.77210","0.99030","0.99030" +"GO:0042157","lipoprotein metabolic process",12,5,5.63,1588,"0.74210","0.99031","0.99031" +"GO:0033554","cellular response to stress",116,35,54.45,2781,"0.99994","0.99032","0.99032" +"GO:0007224","smoothened signaling pathway",8,1,3.75,2664,"0.99378","0.99053","0.99053" +"GO:0005976","polysaccharide metabolic process",6,1,2.82,2528,"0.97779","0.99060","0.99060" +"GO:1903050","regulation of proteolysis involved in ce...",18,6,8.45,2164,"0.92048","0.99064","0.99064" +"GO:1903362","regulation of cellular protein catabolic...",18,6,8.45,2165,"0.92048","0.99064","0.99064" +"GO:0010154","fruit development",3,0,1.41,3011,"1.00000","0.99078","0.99078" +"GO:0048316","seed development",3,0,1.41,3012,"1.00000","0.99078","0.99078" +"GO:0090304","nucleic acid metabolic process",492,165,230.93,2819,"1.00000","0.99082","0.99082" +"GO:0035456","response to interferon-beta",8,1,3.75,2665,"0.99378","0.99113","0.99113" +"GO:0046686","response to cadmium ion",8,0,3.75,3013,"1.00000","0.99113","0.99113" +"GO:0061136","regulation of proteasomal protein catabo...",17,5,7.98,2357,"0.95753","0.99116","0.99116" +"GO:0044260","cellular macromolecule metabolic process",905,334,424.77,2824,"1.00000","0.99129","0.99129" +"GO:0017148","negative regulation of translation",4,1,1.88,2260,"0.92088","0.99132","0.99132" +"GO:0034249","negative regulation of cellular amide me...",4,1,1.88,2261,"0.92088","0.99132","0.99132" +"GO:0044764","multi-organism cellular process",4,1,1.88,2262,"0.92088","0.99132","0.99132" +"GO:0006446","regulation of translational initiation",4,0,1.88,3014,"1.00000","0.99132","0.99132" +"GO:0016569","covalent chromatin modification",38,9,17.84,2743,"0.99918","0.99136","0.99136" +"GO:0019222","regulation of metabolic process",464,181,217.78,2779,"0.99994","0.99140","0.99140" +"GO:0030510","regulation of BMP signaling pathway",4,0,1.88,3015,"1.00000","0.99152","0.99152" +"GO:0016570","histone modification",37,9,17.37,2732,"0.99876","0.99159","0.99159" +"GO:0016070","RNA metabolic process",456,152,214.03,2816,"1.00000","0.99164","0.99164" +"GO:0006384","transcription initiation from RNA polyme...",3,0,1.41,3016,"1.00000","0.99202","0.99202" +"GO:0035458","cellular response to interferon-beta",7,1,3.29,2608,"0.98824","0.99223","0.99223" +"GO:0006665","sphingolipid metabolic process",7,2,3.29,2149,"0.91510","0.99249","0.99249" +"GO:0010675","regulation of cellular carbohydrate meta...",5,1,2.35,2409,"0.95807","0.99250","0.99250" +"GO:0010906","regulation of glucose metabolic process",5,1,2.35,2410,"0.95807","0.99250","0.99250" +"GO:0006997","nucleus organization",5,0,2.35,3017,"1.00000","0.99267","0.99267" +"GO:0007173","epidermal growth factor receptor signali...",7,2,3.29,2150,"0.91510","0.99274","0.99274" +"GO:0038127","ERBB signaling pathway",7,2,3.29,2151,"0.91510","0.99274","0.99274" +"GO:0032543","mitochondrial translation",8,1,3.75,2666,"0.99378","0.99281","0.99281" +"GO:0140053","mitochondrial gene expression",8,1,3.75,2667,"0.99378","0.99281","0.99281" +"GO:0006418","tRNA aminoacylation for protein translat...",13,2,6.1,2692,"0.99676","0.99291","0.99291" +"GO:0043038","amino acid activation",13,2,6.1,2693,"0.99676","0.99291","0.99291" +"GO:0043039","tRNA aminoacylation",13,2,6.1,2694,"0.99676","0.99291","0.99291" +"GO:0002757","immune response-activating signal transd...",14,4,6.57,2349,"0.95323","0.99298","0.99298" +"GO:0044255","cellular lipid metabolic process",85,33,39.9,2324,"0.94961","0.99304","0.99304" +"GO:0008152","metabolic process",1628,718,764.12,2780,"0.99994","0.99540","0.99346" +"GO:0006633","fatty acid biosynthetic process",10,2,4.69,2555,"0.98274","0.99347","0.99347" +"GO:0039528","cytoplasmic pattern recognition receptor...",3,1,1.41,1949,"0.85074","0.99348","0.99348" +"GO:0039529","RIG-I signaling pathway",3,1,1.41,1950,"0.85074","0.99348","0.99348" +"GO:0098586","cellular response to virus",3,1,1.41,1951,"0.85074","0.99348","0.99348" +"GO:2000765","regulation of cytoplasmic translation",3,1,1.41,1952,"0.85074","0.99348","0.99348" +"GO:0018205","peptidyl-lysine modification",28,8,13.14,2564,"0.98566","0.99365","0.99365" +"GO:0010467","gene expression",604,188,283.5,3018,"1.00000","0.99391","0.99391" +"GO:0031323","regulation of cellular metabolic process",430,171,201.83,2758,"0.99957","0.99396","0.99396" +"GO:1901564","organonitrogen compound metabolic proces...",844,374,396.14,2467,"0.97201","0.97320","0.99416" +"GO:0007005","mitochondrion organization",42,19,19.71,1461,"0.64615","0.99421","0.99421" +"GO:0007006","mitochondrial membrane organization",5,1,2.35,2411,"0.95807","0.99426","0.99426" +"GO:0048008","platelet-derived growth factor receptor ...",4,1,1.88,2263,"0.92088","0.99430","0.99430" +"GO:0045786","negative regulation of cell cycle",25,6,11.73,2674,"0.99512","0.99440","0.99440" +"GO:0001959","regulation of cytokine-mediated signalin...",5,1,2.35,2412,"0.95807","0.99445","0.99445" +"GO:0001961","positive regulation of cytokine-mediated...",5,1,2.35,2413,"0.95807","0.99445","0.99445" +"GO:0060759","regulation of response to cytokine stimu...",5,1,2.35,2414,"0.95807","0.99445","0.99445" +"GO:0060760","positive regulation of response to cytok...",5,1,2.35,2415,"0.95807","0.99445","0.99445" +"GO:0007140","male meiotic nuclear division",5,0,2.35,3019,"1.00000","0.99445","0.99445" +"GO:0007050","cell cycle arrest",8,2,3.75,2323,"0.94950","0.99477","0.99477" +"GO:0000413","protein peptidyl-prolyl isomerization",6,1,2.82,2529,"0.97779","0.99519","0.99519" +"GO:0018208","peptidyl-proline modification",6,1,2.82,2530,"0.97779","0.99519","0.99519" +"GO:0007007","inner mitochondrial membrane organizatio...",4,1,1.88,2264,"0.92088","0.99541","0.99541" +"GO:0015908","fatty acid transport",7,1,3.29,2609,"0.98824","0.99543","0.99543" +"GO:0015909","long-chain fatty acid transport",7,1,3.29,2610,"0.98824","0.99543","0.99543" +"GO:1901575","organic substance catabolic process",139,52,65.24,2639,"0.99215","0.99547","0.99547" +"GO:0019538","protein metabolic process",670,266,314.47,2794,"1.00000","0.99552","0.99552" +"GO:0031331","positive regulation of cellular cataboli...",19,6,8.92,2297,"0.94463","0.99570","0.99570" +"GO:0022613","ribonucleoprotein complex biogenesis",37,9,17.37,2733,"0.99876","0.99583","0.99583" +"GO:0043967","histone H4 acetylation",4,0,1.88,3020,"1.00000","0.99585","0.99585" +"GO:0019395","fatty acid oxidation",5,1,2.35,2416,"0.95807","0.99602","0.99602" +"GO:0034440","lipid oxidation",5,1,2.35,2417,"0.95807","0.99602","0.99602" +"GO:0007031","peroxisome organization",6,1,2.82,2531,"0.97779","0.99608","0.99608" +"GO:0016125","sterol metabolic process",6,2,2.82,2018,"0.85949","0.99608","0.99608" +"GO:0043467","regulation of generation of precursor me...",6,1,2.82,2532,"0.97779","0.99608","0.99608" +"GO:0071901","negative regulation of protein serine/th...",6,1,2.82,2533,"0.97779","0.99608","0.99608" +"GO:0097178","ruffle assembly",5,2,2.35,1673,"0.77210","0.99623","0.99623" +"GO:1900027","regulation of ruffle assembly",5,2,2.35,1674,"0.77210","0.99623","0.99623" +"GO:0097190","apoptotic signaling pathway",27,9,12.67,2299,"0.94871","0.99629","0.99629" +"GO:0009991","response to extracellular stimulus",26,4,12.2,2767,"0.99986","0.99643","0.99643" +"GO:0006396","RNA processing",91,19,42.71,2804,"1.00000","0.99648","0.99648" +"GO:0045039","protein import into mitochondrial inner ...",3,0,1.41,3021,"1.00000","0.99656","0.99656" +"GO:0090151","establishment of protein localization to...",3,0,1.41,3022,"1.00000","0.99656","0.99656" +"GO:0031667","response to nutrient levels",25,4,11.73,2761,"0.99977","0.99657","0.99657" +"GO:0009896","positive regulation of catabolic process",24,9,11.26,2039,"0.87252","0.99658","0.99658" +"GO:0034340","response to type I interferon",3,1,1.41,1953,"0.85074","0.99667","0.99667" +"GO:0060337","type I interferon signaling pathway",3,1,1.41,1954,"0.85074","0.99667","0.99667" +"GO:0060338","regulation of type I interferon-mediated...",3,1,1.41,1955,"0.85074","0.99667","0.99667" +"GO:0060340","positive regulation of type I interferon...",3,1,1.41,1956,"0.85074","0.99667","0.99667" +"GO:0071357","cellular response to type I interferon",3,1,1.41,1957,"0.85074","0.99667","0.99667" +"GO:0006515","protein quality control for misfolded or...",3,0,1.41,3023,"1.00000","0.99667","0.99667" +"GO:0051788","response to misfolded protein",3,0,1.41,3024,"1.00000","0.99667","0.99667" +"GO:0070059","intrinsic apoptotic signaling pathway in...",3,0,1.41,3025,"1.00000","0.99667","0.99667" +"GO:0071218","cellular response to misfolded protein",3,0,1.41,3026,"1.00000","0.99667","0.99667" +"GO:0006140","regulation of nucleotide metabolic proce...",5,1,2.35,2418,"0.95807","0.99673","0.99673" +"GO:0032365","intracellular lipid transport",5,2,2.35,1675,"0.77210","0.99673","0.99673" +"GO:1900542","regulation of purine nucleotide metaboli...",5,1,2.35,2419,"0.95807","0.99673","0.99673" +"GO:1903578","regulation of ATP metabolic process",5,1,2.35,2420,"0.95807","0.99673","0.99673" +"GO:0006684","sphingomyelin metabolic process",3,0,1.41,3027,"1.00000","0.99678","0.99678" +"GO:0044238","primary metabolic process",1346,566,631.76,2802,"1.00000","0.99577","0.99692" +"GO:0042254","ribosome biogenesis",27,4,12.67,2774,"0.99992","0.99697","0.99697" +"GO:0007568","aging",22,6,10.33,2550,"0.98274","0.99698","0.99698" +"GO:0002684","positive regulation of immune system pro...",29,10,13.61,2294,"0.93943","0.99707","0.99707" +"GO:1901565","organonitrogen compound catabolic proces...",90,32,42.24,2629,"0.99005","0.99713","0.99713" +"GO:0016126","sterol biosynthetic process",4,0,1.88,3028,"1.00000","0.99739","0.99739" +"GO:0006473","protein acetylation",11,2,5.16,2624,"0.99005","0.99752","0.99752" +"GO:0006475","internal protein amino acid acetylation",11,2,5.16,2625,"0.99005","0.99752","0.99752" +"GO:0016573","histone acetylation",11,2,5.16,2626,"0.99005","0.99752","0.99752" +"GO:0018393","internal peptidyl-lysine acetylation",11,2,5.16,2627,"0.99005","0.99752","0.99752" +"GO:0018394","peptidyl-lysine acetylation",11,2,5.16,2628,"0.99005","0.99752","0.99752" +"GO:0050778","positive regulation of immune response",24,8,11.26,2295,"0.94070","0.99758","0.99758" +"GO:0042594","response to starvation",17,0,7.98,3029,"1.00000","0.99767","0.99767" +"GO:0009893","positive regulation of metabolic process",140,62,65.71,1601,"0.76811","0.99776","0.99776" +"GO:0071496","cellular response to external stimulus",15,2,7.04,2738,"0.99897","0.99795","0.99795" +"GO:0031325","positive regulation of cellular metaboli...",128,56,60.08,1709,"0.79713","0.99796","0.99796" +"GO:0006974","cellular response to DNA damage stimulus",52,14,24.41,2741,"0.99913","0.99801","0.99801" +"GO:0010565","regulation of cellular ketone metabolic ...",3,0,1.41,3030,"1.00000","0.99804","0.99804" +"GO:0019217","regulation of fatty acid metabolic proce...",3,0,1.41,3031,"1.00000","0.99804","0.99804" +"GO:0042304","regulation of fatty acid biosynthetic pr...",3,0,1.41,3032,"1.00000","0.99804","0.99804" +"GO:0032259","methylation",32,11,15.02,2298,"0.94778","0.99804","0.99804" +"GO:0034470","ncRNA processing",31,6,14.55,2760,"0.99969","0.99810","0.99810" +"GO:0043414","macromolecule methylation",29,11,13.61,2061,"0.87836","0.99823","0.99823" +"GO:0006399","tRNA metabolic process",27,4,12.67,2775,"0.99992","0.99835","0.99835" +"GO:0036314","response to sterol",3,1,1.41,1958,"0.85074","0.99844","0.99844" +"GO:0036315","cellular response to sterol",3,1,1.41,1959,"0.85074","0.99844","0.99844" +"GO:0031668","cellular response to extracellular stimu...",11,0,5.16,3033,"1.00000","0.99850","0.99850" +"GO:0006364","rRNA processing",13,2,6.1,2695,"0.99676","0.99855","0.99855" +"GO:0097191","extrinsic apoptotic signaling pathway",10,2,4.69,2556,"0.98274","0.99863","0.99863" +"GO:0031669","cellular response to nutrient levels",10,0,4.69,3034,"1.00000","0.99863","0.99863" +"GO:0009987","cellular process",1896,837,889.91,2800,"1.00000","0.99892","0.99875" +"GO:0009267","cellular response to starvation",9,0,4.22,3035,"1.00000","0.99877","0.99877" +"GO:0016073","snRNA metabolic process",5,2,2.35,1676,"0.77210","0.99894","0.99894" +"GO:0043170","macromolecule metabolic process",1131,447,530.85,2820,"1.00000","0.99902","0.99897" +"GO:0009451","RNA modification",16,3,7.51,2681,"0.99579","0.99903","0.99903" +"GO:0006807","nitrogen compound metabolic process",1263,524,592.81,2806,"1.00000","0.99920","0.99914" +"GO:0008033","tRNA processing",14,2,6.57,2717,"0.99816","0.99915","0.99915" +"GO:0044237","cellular metabolic process",1307,539,613.46,2810,"1.00000","0.99889","0.99919" +"GO:0000387","spliceosomal snRNP assembly",3,1,1.41,1960,"0.85074","0.99922","0.99922" +"GO:0034660","ncRNA metabolic process",48,8,22.53,2797,"1.00000","0.99926","0.99926" +"GO:0010035","response to inorganic substance",29,4,13.61,2791,"0.99997","0.99927","0.99927" +"GO:0010259","multicellular organism aging",5,1,2.35,2421,"0.95807","0.99932","0.99932" +"GO:0008340","determination of adult lifespan",4,0,1.88,3036,"1.00000","0.99946","0.99946" +"GO:0072594","establishment of protein localization to...",35,9,16.43,2706,"0.99721","0.99946","0.99946" +"GO:0010038","response to metal ion",21,4,9.86,2718,"0.99823","0.99947","0.99947" +"GO:0001510","RNA methylation",8,1,3.75,2668,"0.99378","0.99951","0.99951" +"GO:0006281","DNA repair",31,8,14.55,2677,"0.99555","0.99953","0.99953" +"GO:0070265","necrotic cell death",3,0,1.41,3037,"1.00000","0.99959","0.99959" +"GO:0097352","autophagosome maturation",3,0,1.41,3038,"1.00000","0.99959","0.99959" +"GO:1902117","positive regulation of organelle assembl...",3,0,1.41,3039,"1.00000","0.99959","0.99959" +"GO:0006400","tRNA modification",6,1,2.82,2534,"0.97779","0.99964","0.99964" +"GO:0043543","protein acylation",16,5,7.51,2292,"0.93695","0.99968","0.99968" +"GO:0033044","regulation of chromosome organization",19,5,8.92,2547,"0.98148","0.99971","0.99971" +"GO:0043412","macromolecule modification",405,164,190.09,2715,"0.99811","0.99985","0.99985" +"GO:0006464","cellular protein modification process",388,161,182.11,2636,"0.99166","0.99986","0.99986" +"GO:0036211","protein modification process",388,161,182.11,2637,"0.99166","0.99986","0.99986" +"GO:0006638","neutral lipid metabolic process",4,1,1.88,2265,"0.92088","0.99988","0.99988" +"GO:0006639","acylglycerol metabolic process",4,1,1.88,2266,"0.92088","0.99988","0.99988" +"GO:0006302","double-strand break repair",7,1,3.29,2611,"0.98824","0.99989","0.99989" +"GO:0010212","response to ionizing radiation",5,1,2.35,2422,"0.95807","0.99990","0.99990" +"GO:0046461","neutral lipid catabolic process",3,1,1.41,1961,"0.85074","0.99991","0.99991" +"GO:0046464","acylglycerol catabolic process",3,1,1.41,1962,"0.85074","0.99991","0.99991" +"GO:0000723","telomere maintenance",5,1,2.35,2423,"0.95807","0.99992","0.99992" +"GO:0032200","telomere organization",5,1,2.35,2424,"0.95807","0.99992","0.99992" +"GO:0000724","double-strand break repair via homologou...",4,1,1.88,2267,"0.92088","0.99994","0.99994" +"GO:0000725","recombinational repair",4,1,1.88,2268,"0.92088","0.99994","0.99994" +"GO:0007093","mitotic cell cycle checkpoint",3,0,1.41,3040,"1.00000","0.99995","0.99995" +"GO:0034502","protein localization to chromosome",3,0,1.41,3041,"1.00000","0.99995","0.99995" +"GO:0001738","morphogenesis of a polarized epithelium",14,12,6.57,44,"0.00328","0.00039","1.00000" +"GO:0002118","aggressive behavior",6,6,2.82,69,"0.01062","0.00216","1.00000" +"GO:0006101","citrate metabolic process",15,13,7.04,37,"0.00175","0.00372","1.00000" +"GO:0006914","autophagy",40,14,18.77,2350,"0.95514","1.00000","1.00000" +"GO:0008150","biological_process",2546,1195,1195,3042,"1.00000","1.00000","1.00000" +"GO:0009056","catabolic process",167,67,78.38,2468,"0.97208","1.00000","1.00000" +"GO:0009894","regulation of catabolic process",48,17,22.53,2430,"0.96189","1.00000","1.00000" +"GO:0015985","energy coupled proton transport, down el...",11,11,5.16,15,"0.00024","0.00011","1.00000" +"GO:0019362","pyridine nucleotide metabolic process",15,10,7.04,292,"0.10082","0.00984","1.00000" +"GO:0022610","biological adhesion",102,70,47.88,3,"5.3e-06","6.4e-06","1.00000" +"GO:0031329","regulation of cellular catabolic process",42,14,19.71,2473,"0.97481","1.00000","1.00000" +"GO:0034103","regulation of tissue remodeling",6,2,2.82,2019,"0.85949","1.00000","1.00000" +"GO:0043266","regulation of potassium ion transport",3,3,1.41,361,"0.10326","0.00352","1.00000" +"GO:0044248","cellular catabolic process",152,58,71.34,2633,"0.99015","1.00000","1.00000" +"GO:0046849","bone remodeling",4,1,1.88,2269,"0.92088","1.00000","1.00000" +"GO:0046850","regulation of bone remodeling",4,1,1.88,2270,"0.92088","1.00000","1.00000" +"GO:0061919","process utilizing autophagic mechanism",40,14,18.77,2351,"0.95514","1.00000","1.00000" +"GO:0072350","tricarboxylic acid metabolic process",15,13,7.04,38,"0.00175","0.00372","1.00000" +"GO:0099188","postsynaptic cytoskeleton organization",5,5,2.35,105,"0.02268","0.00834","1.00000" +"GO:1900029","positive regulation of ruffle assembly",3,1,1.41,1963,"0.85074","1.00000","1.00000" +"GO:1901379","regulation of potassium ion transmembran...",3,3,1.41,362,"0.10326","0.00352","1.00000" +"GO:0032418","lysosome localization",4,0,1.88,3043,"1.00000","1.00000","1.00000" diff --git a/GO_enrichment_output/contrast_laying_nonlaying_downregulated.csv b/GO_enrichment_output/contrast_laying_nonlaying_downregulated.csv index dae4c48..186948d 100644 --- a/GO_enrichment_output/contrast_laying_nonlaying_downregulated.csv +++ b/GO_enrichment_output/contrast_laying_nonlaying_downregulated.csv @@ -1,6 +1,1246 @@ "GO.ID","Term","Annotated","Significant","Expected","Rank in classicFisher","classicFisher","classicKS","elimKS" "GO:0006260","DNA replication",71,57,38.86,10,"4.8e-06","5.4e-09","6.3e-07" -"GO:0006281","DNA repair",104,78,56.93,14,"1.1e-05","1.8e-06","2.2e-05" +"GO:0006281","DNA repair",104,78,56.93,14,"1.1e-05","1.8e-06","1.8e-06" "GO:0016570","histone modification",75,59,41.05,13,"1.1e-05","4.8e-05","4.8e-05" -"GO:0006396","RNA processing",238,160,130.28,16,"2.8e-05","3.2e-05","0.00037" -"GO:0006270","DNA replication initiation",10,10,5.47,47,"0.0024","8e-04","0.00080" +"GO:0006396","RNA processing",238,160,130.28,16,"2.8e-05","3.2e-05","0.00034" +"GO:0006270","DNA replication initiation",10,10,5.47,47,"0.00238","0.00080","0.00080" +"GO:0006364","rRNA processing",47,33,25.73,74,"0.02133","0.00109","0.00109" +"GO:0006355","regulation of transcription, DNA-templat...",387,244,211.84,33,"0.00023","0.00045","0.00125" +"GO:0006511","ubiquitin-dependent protein catabolic pr...",83,60,45.43,41,"0.00066","0.00015","0.00187" +"GO:0006366","transcription by RNA polymerase II",148,96,81.01,54,"0.00661","0.00195","0.00195" +"GO:0006606","protein import into nucleus",17,15,9.31,49,"0.00376","0.00205","0.00205" +"GO:0051090","regulation of DNA-binding transcription ...",16,13,8.76,78,"0.02649","0.00252","0.00252" +"GO:1902749","regulation of cell cycle G2/M phase tran...",10,8,5.47,149,"0.09629","0.00319","0.00319" +"GO:0051276","chromosome organization",181,133,99.08,8,"6.5e-08","2.8e-08","0.00337" +"GO:0045786","negative regulation of cell cycle",41,28,22.44,107,"0.05353","0.00352","0.00352" +"GO:0000278","mitotic cell cycle",93,61,50.91,73,"0.02026","0.00028","0.00382" +"GO:0022402","cell cycle process",132,85,72.26,67,"0.01359","0.00025","0.00447" +"GO:0048285","organelle fission",52,33,28.46,176,"0.12780","0.00458","0.00458" +"GO:0016579","protein deubiquitination",35,26,19.16,68,"0.01361","0.00506","0.00506" +"GO:0006325","chromatin organization",126,96,68.97,9,"2.9e-07","9.4e-07","0.00878" +"GO:0000086","G2/M transition of mitotic cell cycle",11,8,6.02,211,"0.18588","0.00889","0.00889" +"GO:0007059","chromosome segregation",38,25,20.8,158,"0.11168","0.00919","0.00919" +"GO:0030433","ubiquitin-dependent ERAD pathway",14,11,7.66,117,"0.06037","0.00924","0.00924" +"GO:1901990","regulation of mitotic cell cycle phase t...",20,13,10.95,247,"0.24371","0.01083","0.01083" +"GO:0090305","nucleic acid phosphodiester bond hydroly...",24,17,13.14,134,"0.08142","0.01201","0.01201" +"GO:0006357","regulation of transcription by RNA polym...",122,81,66.78,53,"0.00499","0.01303","0.01303" +"GO:0006513","protein monoubiquitination",17,12,9.31,181,"0.14138","0.01455","0.01455" +"GO:0000280","nuclear division",46,28,25.18,251,"0.24511","0.01539","0.01539" +"GO:0031398","positive regulation of protein ubiquitin...",19,12,10.4,298,"0.30810","0.01745","0.01745" +"GO:1903322","positive regulation of protein modificat...",19,12,10.4,299,"0.30810","0.01745","0.01745" +"GO:0006473","protein acetylation",23,19,12.59,52,"0.00496","0.01841","0.01841" +"GO:0006261","DNA-dependent DNA replication",32,28,17.52,22,"7.8e-05","0.00031","0.01942" +"GO:0016567","protein ubiquitination",83,50,45.43,206,"0.18146","0.01967","0.01967" +"GO:0010948","negative regulation of cell cycle proces...",16,12,8.76,136,"0.08149","0.01985","0.01985" +"GO:0070076","histone lysine demethylation",11,8,6.02,212,"0.18588","0.01996","0.01996" +"GO:0070936","protein K48-linked ubiquitination",13,9,7.12,240,"0.22166","0.02040","0.02040" +"GO:0010556","regulation of macromolecule biosynthetic...",428,271,234.28,19,"6.0e-05","0.00015","0.02069" +"GO:0070534","protein K63-linked ubiquitination",12,9,6.57,177,"0.13003","0.02140","0.02140" +"GO:1901988","negative regulation of cell cycle phase ...",10,8,5.47,150,"0.09629","0.02236","0.02236" +"GO:1901991","negative regulation of mitotic cell cycl...",10,8,5.47,151,"0.09629","0.02236","0.02236" +"GO:0045089","positive regulation of innate immune res...",15,11,8.21,161,"0.11573","0.02254","0.02254" +"GO:0034470","ncRNA processing",105,74,57.48,39,"0.00057","0.00220","0.02262" +"GO:0031396","regulation of protein ubiquitination",24,16,13.14,197,"0.16542","0.02433","0.02433" +"GO:0008033","tRNA processing",50,36,27.37,58,"0.00890","0.02453","0.02453" +"GO:0032446","protein modification by small protein co...",92,55,50.36,221,"0.18913","0.02484","0.02484" +"GO:0006302","double-strand break repair",17,12,9.31,182,"0.14138","0.02746","0.02746" +"GO:0045930","negative regulation of mitotic cell cycl...",17,13,9.31,110,"0.05653","0.02795","0.02795" +"GO:0045935","positive regulation of nucleobase-contai...",81,53,44.34,83,"0.03130","0.02873","0.02873" +"GO:0098813","nuclear chromosome segregation",34,22,18.61,192,"0.15831","0.02919","0.02919" +"GO:0051091","positive regulation of DNA-binding trans...",10,8,5.47,152,"0.09629","0.02961","0.02961" +"GO:0051052","regulation of DNA metabolic process",25,18,13.68,114,"0.05982","0.02988","0.02988" +"GO:0007093","mitotic cell cycle checkpoint",15,11,8.21,162,"0.11573","0.03378","0.03378" +"GO:2000112","regulation of cellular macromolecule bio...",425,268,232.64,25,"0.00010","0.00023","0.03407" +"GO:0007369","gastrulation",17,12,9.31,183,"0.14138","0.03470","0.03470" +"GO:0006397","mRNA processing",87,55,47.62,122,"0.06539","0.03476","0.03476" +"GO:1901987","regulation of cell cycle phase transitio...",22,15,12.04,188,"0.14506","0.00220","0.03538" +"GO:0000819","sister chromatid segregation",30,20,16.42,175,"0.12760","0.03568","0.03568" +"GO:0008380","RNA splicing",73,48,39.96,84,"0.03518","0.03746","0.03746" +"GO:0034605","cellular response to heat",12,10,6.57,90,"0.04024","0.03748","0.03748" +"GO:1903320","regulation of protein modification by sm...",25,16,13.68,244,"0.23317","0.03888","0.03888" +"GO:0006475","internal protein amino acid acetylation",21,17,11.5,62,"0.01160","0.03896","0.03896" +"GO:0016573","histone acetylation",21,17,11.5,63,"0.01160","0.03896","0.03896" +"GO:0018393","internal peptidyl-lysine acetylation",21,17,11.5,64,"0.01160","0.03896","0.03896" +"GO:0018394","peptidyl-lysine acetylation",21,17,11.5,65,"0.01160","0.03896","0.03896" +"GO:0006400","tRNA modification",27,20,14.78,82,"0.03120","0.04159","0.04159" +"GO:0031326","regulation of cellular biosynthetic proc...",432,273,236.47,20,"6.9e-05","0.00013","0.04216" +"GO:0043543","protein acylation",35,26,19.16,69,"0.01361","0.04224","0.04224" +"GO:0000209","protein polyubiquitination",30,19,16.42,243,"0.22270","0.04388","0.04388" +"GO:0006338","chromatin remodeling",22,17,12.04,76,"0.02515","0.04791","0.04791" +"GO:0010639","negative regulation of organelle organiz...",26,18,14.23,154,"0.09669","0.04838","0.04838" +"GO:0034404","nucleobase-containing small molecule bio...",13,8,7.12,373,"0.41904","0.04844","0.04844" +"GO:0071103","DNA conformation change",26,14,14.23,545,"0.61586","0.04973","0.04973" +"GO:0051246","regulation of protein metabolic process",156,93,85.39,169,"0.11941","0.05142","0.05142" +"GO:0000070","mitotic sister chromatid segregation",22,15,12.04,189,"0.14506","0.05144","0.05144" +"GO:1903047","mitotic cell cycle process",78,49,42.7,145,"0.08962","0.00533","0.05157" +"GO:0090501","RNA phosphodiester bond hydrolysis",19,13,10.4,198,"0.16601","0.05188","0.05188" +"GO:0006986","response to unfolded protein",15,12,8.21,92,"0.04024","0.05228","0.05228" +"GO:0035966","response to topologically incorrect prot...",23,17,12.59,104,"0.04773","0.05267","0.05267" +"GO:0032268","regulation of cellular protein metabolic...",147,88,80.47,160,"0.11526","0.05490","0.05490" +"GO:0031349","positive regulation of defense response",19,12,10.4,300,"0.30810","0.05565","0.05565" +"GO:0030308","negative regulation of cell growth",13,9,7.12,241,"0.22166","0.06000","0.06000" +"GO:0071824","protein-DNA complex subunit organization",25,15,13.68,334,"0.37359","0.06015","0.06015" +"GO:0016577","histone demethylation",13,10,7.12,138,"0.08931","0.06057","0.06057" +"GO:0007062","sister chromatid cohesion",12,10,6.57,91,"0.04024","0.06155","0.06155" +"GO:0051304","chromosome separation",10,7,5.47,257,"0.26013","0.06212","0.06212" +"GO:0140014","mitotic nuclear division",30,18,16.42,324,"0.34759","0.06356","0.06356" +"GO:2001252","positive regulation of chromosome organi...",13,10,7.12,139,"0.08931","0.06401","0.06401" +"GO:0007346","regulation of mitotic cell cycle",41,23,22.44,414,"0.49477","0.06446","0.06446" +"GO:0000075","cell cycle checkpoint",26,17,14.23,208,"0.18517","0.06655","0.06655" +"GO:0006352","DNA-templated transcription, initiation",34,20,18.61,337,"0.38113","0.06657","0.06657" +"GO:0009408","response to heat",26,17,14.23,209,"0.18517","0.06728","0.06728" +"GO:0001522","pseudouridine synthesis",11,8,6.02,213,"0.18588","0.06797","0.06797" +"GO:0051129","negative regulation of cellular componen...",50,31,27.37,207,"0.18501","0.06871","0.06871" +"GO:0061077","chaperone-mediated protein folding",11,8,6.02,214,"0.18588","0.07066","0.07066" +"GO:0010564","regulation of cell cycle process",49,29,26.82,309,"0.31495","0.00219","0.07139" +"GO:0048749","compound eye development",17,13,9.31,111,"0.05653","0.07177","0.07177" +"GO:0051301","cell division",33,21,18.06,228,"0.19628","0.07303","0.07303" +"GO:0031123","RNA 3'-end processing",16,11,8.76,222,"0.19107","0.07374","0.07374" +"GO:0043161","proteasome-mediated ubiquitin-dependent ...",42,29,22.99,97,"0.04113","0.00249","0.07585" +"GO:0001558","regulation of cell growth",19,14,10.4,129,"0.07376","0.07687","0.07687" +"GO:0006310","DNA recombination",28,19,15.33,159,"0.11212","0.07711","0.07711" +"GO:0006417","regulation of translation",27,18,14.78,187,"0.14503","0.07784","0.07784" +"GO:1903825","organic acid transmembrane transport",11,9,6.02,119,"0.06269","0.07838","0.07838" +"GO:1905039","carboxylic acid transmembrane transport",11,9,6.02,120,"0.06269","0.07838","0.07838" +"GO:0033044","regulation of chromosome organization",35,23,19.16,173,"0.12624","0.08161","0.08161" +"GO:0006479","protein methylation",32,22,17.52,130,"0.07597","0.08263","0.08263" +"GO:0008213","protein alkylation",32,22,17.52,131,"0.07597","0.08263","0.08263" +"GO:0002684","positive regulation of immune system pro...",36,22,19.71,277,"0.27413","0.08347","0.08347" +"GO:0009266","response to temperature stimulus",29,18,15.87,276,"0.27265","0.08408","0.08408" +"GO:0006367","transcription initiation from RNA polyme...",16,9,8.76,495,"0.55460","0.08913","0.08913" +"GO:0000375","RNA splicing, via transesterification re...",58,37,31.75,155,"0.10199","0.08997","0.08997" +"GO:0000377","RNA splicing, via transesterification re...",58,37,31.75,156,"0.10199","0.08997","0.08997" +"GO:0000398","mRNA splicing, via spliceosome",58,37,31.75,157,"0.10199","0.08997","0.08997" +"GO:0044770","cell cycle phase transition",38,26,20.8,116,"0.06008","0.00104","0.09013" +"GO:0009451","RNA modification",51,33,27.92,148,"0.09579","0.09020","0.09020" +"GO:2000116","regulation of cysteine-type endopeptidas...",10,6,5.47,415,"0.49758","0.09029","0.09029" +"GO:0007018","microtubule-based movement",37,25,20.25,132,"0.07774","0.09108","0.09108" +"GO:0010604","positive regulation of macromolecule met...",142,87,77.73,121,"0.06395","0.09150","0.09150" +"GO:0032502","developmental process",356,200,194.87,297,"0.29910","0.09162","0.09162" +"GO:0044772","mitotic cell cycle phase transition",34,22,18.61,193,"0.15831","0.00480","0.09230" +"GO:0031325","positive regulation of cellular metaboli...",145,86,79.37,190,"0.14671","0.09502","0.09502" +"GO:0051173","positive regulation of nitrogen compound...",135,81,73.9,170,"0.12066","0.09510","0.09510" +"GO:0090068","positive regulation of cell cycle proces...",13,7,7.12,572,"0.63679","0.09513","0.09513" +"GO:0010558","negative regulation of macromolecule bio...",92,59,50.36,96,"0.04062","0.09547","0.09547" +"GO:0048856","anatomical structure development",317,179,173.52,278,"0.27564","0.09829","0.09829" +"GO:0072527","pyrimidine-containing compound metabolic...",10,7,5.47,258,"0.26013","0.09896","0.09896" +"GO:0002066","columnar/cuboidal epithelial cell develo...",19,12,10.4,301,"0.30810","0.10008","0.10008" +"GO:0031327","negative regulation of cellular biosynth...",94,61,51.45,80,"0.02745","0.10096","0.10096" +"GO:0002165","instar larval or pupal development",19,12,10.4,302,"0.30810","0.10224","0.10224" +"GO:0065004","protein-DNA complex assembly",22,12,12.04,535,"0.59440","0.10563","0.10563" +"GO:0009889","regulation of biosynthetic process",435,273,238.11,27,"0.00014","0.00020","0.10691" +"GO:0018205","peptidyl-lysine modification",45,31,24.63,86,"0.03680","0.10707","0.10707" +"GO:0043484","regulation of RNA splicing",13,10,7.12,140,"0.08931","0.10795","0.10795" +"GO:0009798","axis specification",16,9,8.76,496,"0.55460","0.10877","0.10877" +"GO:0006289","nucleotide-excision repair",15,12,8.21,93,"0.04024","0.10979","0.10979" +"GO:0019318","hexose metabolic process",10,7,5.47,259,"0.26013","0.11118","0.11118" +"GO:0006482","protein demethylation",14,10,7.66,194,"0.16166","0.11331","0.11331" +"GO:0008214","protein dealkylation",14,10,7.66,195,"0.16166","0.11331","0.11331" +"GO:0006468","protein phosphorylation",192,113,105.1,179,"0.13287","0.11336","0.11336" +"GO:0071897","DNA biosynthetic process",11,8,6.02,215,"0.18588","0.11427","0.11427" +"GO:0034248","regulation of cellular amide metabolic p...",28,18,15.33,231,"0.20426","0.11581","0.11581" +"GO:0016569","covalent chromatin modification",78,61,42.7,12,"1.1e-05","4.3e-05","0.11690" +"GO:0032774","RNA biosynthetic process",455,287,249.06,18,"5.2e-05","7.1e-05","0.11700" +"GO:0051253","negative regulation of RNA metabolic pro...",84,54,45.98,102,"0.04620","0.12023","0.12023" +"GO:0006403","RNA localization",27,16,14.78,359,"0.39225","0.12111","0.12111" +"GO:0009791","post-embryonic development",38,23,20.8,284,"0.29005","0.12214","0.12214" +"GO:0032434","regulation of proteasomal ubiquitin-depe...",12,8,6.57,287,"0.29757","0.12266","0.12266" +"GO:2000058","regulation of ubiquitin-dependent protei...",12,8,6.57,288,"0.29757","0.12266","0.12266" +"GO:0045165","cell fate commitment",19,13,10.4,199,"0.16601","0.12267","0.12267" +"GO:0070647","protein modification by small protein co...",121,77,66.23,79,"0.02693","0.00385","0.12369" +"GO:0006323","DNA packaging",21,11,11.5,610,"0.67080","0.12705","0.12705" +"GO:1903332","regulation of protein folding",10,8,5.47,153,"0.09629","0.12953","0.12953" +"GO:0051261","protein depolymerization",11,7,6.02,347,"0.39006","0.13145","0.13145" +"GO:0016180","snRNA processing",10,7,5.47,260,"0.26013","0.13163","0.13163" +"GO:0033045","regulation of sister chromatid segregati...",12,6,6.57,672,"0.73366","0.13405","0.13405" +"GO:0051983","regulation of chromosome segregation",12,6,6.57,673,"0.73366","0.13405","0.13405" +"GO:0034660","ncRNA metabolic process",142,88,77.73,101,"0.04480","0.02067","0.13420" +"GO:1902275","regulation of chromatin organization",21,15,11.5,146,"0.09150","0.13506","0.13506" +"GO:0052548","regulation of endopeptidase activity",11,7,6.02,348,"0.39006","0.13577","0.13577" +"GO:0045934","negative regulation of nucleobase-contai...",90,57,49.26,112,"0.05888","0.13671","0.13671" +"GO:0006928","movement of cell or subcellular componen...",101,57,55.29,363,"0.40354","0.13759","0.13759" +"GO:0009893","positive regulation of metabolic process",159,94,87.03,186,"0.14427","0.13763","0.13763" +"GO:0001745","compound eye morphogenesis",15,11,8.21,163,"0.11573","0.13805","0.13805" +"GO:0090066","regulation of anatomical structure size",30,18,16.42,325,"0.34759","0.13957","0.13957" +"GO:0000082","G1/S transition of mitotic cell cycle",12,8,6.57,289,"0.29757","0.13968","0.13968" +"GO:2000113","negative regulation of cellular macromol...",90,57,49.26,113,"0.05888","0.14086","0.14086" +"GO:0030111","regulation of Wnt signaling pathway",23,13,12.59,444,"0.51768","0.14090","0.14090" +"GO:0070997","neuron death",13,10,7.12,141,"0.08931","0.14196","0.14196" +"GO:1901214","regulation of neuron death",13,10,7.12,142,"0.08931","0.14196","0.14196" +"GO:0071407","cellular response to organic cyclic comp...",33,12,18.06,1174,"0.98957","0.14244","0.14244" +"GO:0044093","positive regulation of molecular functio...",80,45,43.79,385,"0.43718","0.14487","0.14487" +"GO:0009968","negative regulation of signal transducti...",64,35,35.03,504,"0.55527","0.14533","0.14533" +"GO:0010648","negative regulation of cell communicatio...",64,35,35.03,505,"0.55527","0.14533","0.14533" +"GO:0023057","negative regulation of signaling",64,35,35.03,506,"0.55527","0.14533","0.14533" +"GO:1902679","negative regulation of RNA biosynthetic ...",83,53,45.43,108,"0.05596","0.14627","0.14627" +"GO:1903507","negative regulation of nucleic acid-temp...",83,53,45.43,109,"0.05596","0.14627","0.14627" +"GO:0016571","histone methylation",20,15,10.95,106,"0.05216","0.14897","0.14897" +"GO:0030154","cell differentiation",192,110,105.1,256,"0.25457","0.14923","0.14923" +"GO:0050778","positive regulation of immune response",31,19,16.97,286,"0.29099","0.15063","0.15063" +"GO:0051054","positive regulation of DNA metabolic pro...",15,11,8.21,164,"0.11573","0.15077","0.15077" +"GO:0045088","regulation of innate immune response",19,12,10.4,303,"0.30810","0.15138","0.15138" +"GO:0032870","cellular response to hormone stimulus",34,16,18.61,880,"0.85951","0.15283","0.15283" +"GO:0007041","lysosomal transport",13,10,7.12,143,"0.08931","0.15323","0.15323" +"GO:0045787","positive regulation of cell cycle",18,10,9.85,510,"0.56917","0.15343","0.15343" +"GO:0035282","segmentation",20,13,10.95,248,"0.24371","0.15421","0.15421" +"GO:0051254","positive regulation of RNA metabolic pro...",69,43,37.77,172,"0.12297","0.15481","0.15481" +"GO:0006399","tRNA metabolic process",78,48,42.7,180,"0.13361","0.15610","0.15610" +"GO:1900407","regulation of cellular response to oxida...",10,7,5.47,261,"0.26013","0.15618","0.15618" +"GO:0035601","protein deacylation",15,11,8.21,165,"0.11573","0.15660","0.15660" +"GO:0098732","macromolecule deacylation",15,11,8.21,166,"0.11573","0.15660","0.15660" +"GO:0010628","positive regulation of gene expression",84,51,45.98,191,"0.15719","0.15777","0.15777" +"GO:0071383","cellular response to steroid hormone sti...",24,10,13.14,1043,"0.93272","0.15986","0.15986" +"GO:1903522","regulation of blood circulation",10,7,5.47,262,"0.26013","0.15999","0.15999" +"GO:0019827","stem cell population maintenance",19,12,10.4,304,"0.30810","0.16076","0.16076" +"GO:0098727","maintenance of cell number",19,12,10.4,305,"0.30810","0.16076","0.16076" +"GO:0098742","cell-cell adhesion via plasma-membrane a...",12,6,6.57,674,"0.73366","0.16166","0.16166" +"GO:0009890","negative regulation of biosynthetic proc...",96,61,52.55,105,"0.04774","0.16180","0.16180" +"GO:0048229","gametophyte development",10,7,5.47,263,"0.26013","0.16210","0.16210" +"GO:0061136","regulation of proteasomal protein catabo...",20,12,10.95,364,"0.40470","0.16433","0.16433" +"GO:1903050","regulation of proteolysis involved in ce...",20,12,10.95,365,"0.40470","0.16433","0.16433" +"GO:0009886","post-embryonic animal morphogenesis",16,10,8.76,329,"0.35763","0.16672","0.16672" +"GO:0040007","growth",74,46,40.51,168,"0.11821","0.16713","0.16713" +"GO:0061458","reproductive system development",40,23,21.9,381,"0.42534","0.16764","0.16764" +"GO:0008593","regulation of Notch signaling pathway",11,8,6.02,216,"0.18588","0.16985","0.16985" +"GO:0043624","cellular protein complex disassembly",21,11,11.5,611,"0.67080","0.17225","0.17225" +"GO:0016574","histone ubiquitination",11,7,6.02,349,"0.39006","0.17237","0.17237" +"GO:0016049","cell growth",26,17,14.23,210,"0.18517","0.17312","0.17312" +"GO:0097659","nucleic acid-templated transcription",451,284,246.87,21,"7.0e-05","8.4e-05","0.17386" +"GO:0007155","cell adhesion",56,31,30.65,446,"0.51825","0.17603","0.17603" +"GO:0022610","biological adhesion",56,31,30.65,447,"0.51825","0.17603","0.17603" +"GO:0045892","negative regulation of transcription, DN...",82,52,44.89,124,"0.06738","0.17662","0.17662" +"GO:0051172","negative regulation of nitrogen compound...",131,80,71.71,133,"0.08008","0.17729","0.17729" +"GO:0002218","activation of innate immune response",11,7,6.02,350,"0.39006","0.17785","0.17785" +"GO:0002758","innate immune response-activating signal...",11,7,6.02,351,"0.39006","0.17785","0.17785" +"GO:0043412","macromolecule modification",555,333,303.8,48,"0.00303","0.00311","0.17847" +"GO:0007088","regulation of mitotic nuclear division",13,6,7.12,817,"0.81669","0.17886","0.17886" +"GO:0006354","DNA-templated transcription, elongation",21,15,11.5,147,"0.09150","0.17908","0.17908" +"GO:0010557","positive regulation of macromolecule bio...",69,42,37.77,204,"0.18067","0.18033","0.18033" +"GO:0045444","fat cell differentiation",10,6,5.47,416,"0.49758","0.18045","0.18045" +"GO:0010498","proteasomal protein catabolic process",45,30,24.63,126,"0.06965","0.00896","0.18093" +"GO:0016073","snRNA metabolic process",15,9,8.21,389,"0.44380","0.18249","0.18249" +"GO:0007275","multicellular organism development",293,162,160.38,396,"0.44556","0.18301","0.18301" +"GO:0045087","innate immune response",28,15,15.33,554,"0.62554","0.18539","0.18539" +"GO:0048477","oogenesis",28,15,15.33,555,"0.62554","0.18539","0.18539" +"GO:0003002","regionalization",28,18,15.33,232,"0.20426","0.18558","0.18558" +"GO:0070988","demethylation",15,10,8.21,252,"0.25353","0.18820","0.18820" +"GO:0002429","immune response-activating cell surface ...",11,7,6.02,352,"0.39006","0.18858","0.18858" +"GO:0002768","immune response-regulating cell surface ...",11,7,6.02,353,"0.39006","0.18858","0.18858" +"GO:0052547","regulation of peptidase activity",12,7,6.57,448,"0.51954","0.18926","0.18926" +"GO:0019219","regulation of nucleobase-containing comp...",426,269,233.19,24,"8.6e-05","0.00015","0.19150" +"GO:0090304","nucleic acid metabolic process",878,573,480.61,1,"1.7e-14","5.0e-14","0.19231" +"GO:0031324","negative regulation of cellular metaboli...",137,84,74.99,123,"0.06655","0.19363","0.19363" +"GO:0045861","negative regulation of proteolysis",18,11,9.85,338,"0.38244","0.19383","0.19383" +"GO:0031503","protein-containing complex localization",21,9,11.5,998,"0.90602","0.19430","0.19430" +"GO:0050657","nucleic acid transport",21,10,11.5,759,"0.81022","0.19430","0.19430" +"GO:0050658","RNA transport",21,10,11.5,760,"0.81022","0.19430","0.19430" +"GO:0051168","nuclear export",21,11,11.5,612,"0.67080","0.19430","0.19430" +"GO:0051236","establishment of RNA localization",21,10,11.5,761,"0.81022","0.19430","0.19430" +"GO:0043414","macromolecule methylation",52,32,28.46,229,"0.19703","0.19537","0.19537" +"GO:0031056","regulation of histone modification",15,11,8.21,167,"0.11573","0.19701","0.19701" +"GO:0043085","positive regulation of catalytic activit...",55,31,30.11,400,"0.45881","0.19834","0.19834" +"GO:0051171","regulation of nitrogen compound metaboli...",522,323,285.74,29,"0.00016","0.00021","0.19862" +"GO:0007034","vacuolar transport",24,17,13.14,135,"0.08142","0.20039","0.20039" +"GO:0009755","hormone-mediated signaling pathway",21,10,11.5,762,"0.81022","0.20138","0.20138" +"GO:0016310","phosphorylation",217,122,118.78,327,"0.35041","0.20398","0.20398" +"GO:0048589","developmental growth",51,28,27.92,492,"0.54873","0.20824","0.20824" +"GO:0048608","reproductive structure development",38,22,20.8,369,"0.41132","0.21259","0.21259" +"GO:0001736","establishment of planar polarity",12,8,6.57,290,"0.29757","0.21619","0.21619" +"GO:0001738","morphogenesis of a polarized epithelium",12,8,6.57,291,"0.29757","0.21619","0.21619" +"GO:0007164","establishment of tissue polarity",12,8,6.57,292,"0.29757","0.21619","0.21619" +"GO:0043401","steroid hormone mediated signaling pathw...",20,9,10.95,896,"0.86497","0.21747","0.21747" +"GO:0002064","epithelial cell development",25,14,13.68,469,"0.53213","0.21823","0.21823" +"GO:0006351","transcription, DNA-templated",450,283,246.32,23,"8.4e-05","9.9e-05","0.22072" +"GO:0031328","positive regulation of cellular biosynth...",74,43,40.51,310,"0.31965","0.22100","0.22100" +"GO:0061640","cytoskeleton-dependent cytokinesis",10,7,5.47,264,"0.26013","0.22233","0.22233" +"GO:1903362","regulation of cellular protein catabolic...",21,12,11.5,435,"0.50194","0.22443","0.22443" +"GO:0031497","chromatin assembly",13,6,7.12,818,"0.81669","0.22457","0.22457" +"GO:0000122","negative regulation of transcription by ...",38,22,20.8,370,"0.41132","0.22485","0.22485" +"GO:0051247","positive regulation of protein metabolic...",80,47,43.79,275,"0.26929","0.22560","0.22560" +"GO:0002221","pattern recognition receptor signaling p...",10,6,5.47,417,"0.49758","0.22632","0.22632" +"GO:0033047","regulation of mitotic sister chromatid s...",10,5,5.47,645,"0.73321","0.22632","0.22632" +"GO:0007017","microtubule-based process",83,48,45.43,312,"0.32284","0.22692","0.22692" +"GO:0060284","regulation of cell development",42,22,22.99,620,"0.68032","0.22707","0.22707" +"GO:0006476","protein deacetylation",12,9,6.57,178,"0.13003","0.22726","0.22726" +"GO:0006405","RNA export from nucleus",19,9,10.4,775,"0.81045","0.22735","0.22735" +"GO:0001822","kidney development",17,11,9.31,280,"0.28217","0.22979","0.22979" +"GO:0050953","sensory perception of light stimulus",14,9,7.66,315,"0.32964","0.23017","0.23017" +"GO:1901215","negative regulation of neuron death",11,8,6.02,217,"0.18588","0.23086","0.23086" +"GO:0051170","import into nucleus",18,16,9.85,46,"0.00228","0.00076","0.23310" +"GO:0006997","nucleus organization",18,12,9.85,237,"0.21836","0.23349","0.23349" +"GO:0032259","methylation",60,37,32.84,200,"0.16893","0.23451","0.23451" +"GO:0016071","mRNA metabolic process",122,71,66.78,250,"0.24505","0.23508","0.23508" +"GO:0099402","plant organ development",11,8,6.02,218,"0.18588","0.23614","0.23614" +"GO:0046777","protein autophosphorylation",11,8,6.02,219,"0.18588","0.23658","0.23658" +"GO:0044843","cell cycle G1/S phase transition",13,9,7.12,242,"0.22166","0.23781","0.23781" +"GO:0000904","cell morphogenesis involved in different...",45,27,24.63,282,"0.28775","0.24052","0.24052" +"GO:0048863","stem cell differentiation",20,12,10.95,366,"0.40470","0.24166","0.24166" +"GO:0051960","regulation of nervous system development",38,19,20.8,740,"0.77532","0.24248","0.24248" +"GO:0030707","ovarian follicle cell development",17,10,9.31,404,"0.46543","0.24786","0.24786" +"GO:0050768","negative regulation of neurogenesis",13,7,7.12,573,"0.63679","0.24888","0.24888" +"GO:1902680","positive regulation of RNA biosynthetic ...",62,38,33.94,202,"0.17922","0.25074","0.25074" +"GO:0060828","regulation of canonical Wnt signaling pa...",16,9,8.76,497,"0.55460","0.25095","0.25095" +"GO:0030155","regulation of cell adhesion",15,10,8.21,253,"0.25353","0.25341","0.25341" +"GO:0016575","histone deacetylation",10,7,5.47,265,"0.26013","0.25457","0.25457" +"GO:0007601","visual perception",13,8,7.12,374,"0.41904","0.25576","0.25576" +"GO:2001251","negative regulation of chromosome organi...",18,12,9.85,238,"0.21836","0.25680","0.25680" +"GO:1902882","regulation of response to oxidative stre...",12,8,6.57,293,"0.29757","0.25682","0.25682" +"GO:0009891","positive regulation of biosynthetic proc...",76,43,41.6,372,"0.41824","0.25702","0.25702" +"GO:0051961","negative regulation of nervous system de...",17,8,9.31,789,"0.81141","0.25778","0.25778" +"GO:0008285","negative regulation of cell proliferatio...",30,17,16.42,412,"0.49081","0.25839","0.25839" +"GO:0007219","Notch signaling pathway",16,10,8.76,330,"0.35763","0.26003","0.26003" +"GO:0032270","positive regulation of cellular protein ...",76,44,41.6,317,"0.32981","0.26044","0.26044" +"GO:0045926","negative regulation of growth",19,11,10.4,408,"0.48464","0.26434","0.26434" +"GO:0009566","fertilization",10,4,5.47,962,"0.89535","0.26627","0.26627" +"GO:0071396","cellular response to lipid",33,14,18.06,1073,"0.94556","0.26749","0.26749" +"GO:0015931","nucleobase-containing compound transport",26,14,14.23,546,"0.61586","0.26839","0.26839" +"GO:0045862","positive regulation of proteolysis",19,12,10.4,306,"0.30810","0.27069","0.27069" +"GO:0006334","nucleosome assembly",12,6,6.57,675,"0.73366","0.27110","0.27110" +"GO:0031401","positive regulation of protein modificat...",57,32,31.2,406,"0.46964","0.27205","0.27205" +"GO:0008406","gonad development",16,10,8.76,331,"0.35763","0.27271","0.27271" +"GO:0098542","defense response to other organism",21,10,11.5,763,"0.81022","0.27327","0.27327" +"GO:0035967","cellular response to topologically incor...",16,11,8.76,223,"0.19107","0.27494","0.27494" +"GO:0016055","Wnt signaling pathway",39,20,21.35,640,"0.72614","0.27846","0.27846" +"GO:1905114","cell surface receptor signaling pathway ...",39,20,21.35,641,"0.72614","0.27846","0.27846" +"GO:0051783","regulation of nuclear division",15,7,8.21,803,"0.81335","0.28010","0.28010" +"GO:0005996","monosaccharide metabolic process",11,7,6.02,354,"0.39006","0.28049","0.28049" +"GO:0006414","translational elongation",14,8,7.66,476,"0.53824","0.28075","0.28075" +"GO:0046686","response to cadmium ion",10,6,5.47,418,"0.49758","0.28187","0.28187" +"GO:0002697","regulation of immune effector process",11,8,6.02,220,"0.18588","0.28215","0.28215" +"GO:0007292","female gamete generation",31,17,16.97,518,"0.56956","0.28499","0.28499" +"GO:0006611","protein export from nucleus",16,8,8.76,696,"0.73776","0.28765","0.28765" +"GO:0030522","intracellular receptor signaling pathway",13,7,7.12,574,"0.63679","0.28772","0.28772" +"GO:0034599","cellular response to oxidative stress",17,9,9.31,591,"0.65491","0.28823","0.28823" +"GO:0000910","cytokinesis",14,9,7.66,316,"0.32964","0.28939","0.28939" +"GO:0034968","histone lysine methylation",16,11,8.76,224,"0.19107","0.28954","0.28954" +"GO:0042060","wound healing",17,8,9.31,790,"0.81141","0.28990","0.28990" +"GO:0050767","regulation of neurogenesis",35,18,19.16,636,"0.71549","0.29163","0.29163" +"GO:0045893","positive regulation of transcription, DN...",61,37,33.39,233,"0.20983","0.29177","0.29177" +"GO:1903508","positive regulation of nucleic acid-temp...",61,37,33.39,234,"0.20983","0.29177","0.29177" +"GO:0007552","metamorphosis",14,8,7.66,477,"0.53824","0.29203","0.29203" +"GO:0007560","imaginal disc morphogenesis",14,8,7.66,478,"0.53824","0.29203","0.29203" +"GO:0048563","post-embryonic animal organ morphogenesi...",14,8,7.66,479,"0.53824","0.29203","0.29203" +"GO:0048707","instar larval or pupal morphogenesis",14,8,7.66,480,"0.53824","0.29203","0.29203" +"GO:0010876","lipid localization",30,12,16.42,1111,"0.96510","0.29442","0.29442" +"GO:0098609","cell-cell adhesion",30,16,16.42,569,"0.63463","0.29625","0.29625" +"GO:0050684","regulation of mRNA processing",10,7,5.47,266,"0.26013","0.29749","0.29749" +"GO:0060042","retina morphogenesis in camera-type eye",12,8,6.57,294,"0.29757","0.29848","0.29848" +"GO:0000724","double-strand break repair via homologou...",10,6,5.47,419,"0.49758","0.30280","0.30280" +"GO:0000725","recombinational repair",10,6,5.47,420,"0.49758","0.30280","0.30280" +"GO:0009952","anterior/posterior pattern specification",15,9,8.21,390,"0.44380","0.30315","0.30315" +"GO:0042063","gliogenesis",10,4,5.47,963,"0.89535","0.30387","0.30387" +"GO:0022618","ribonucleoprotein complex assembly",36,21,19.71,360,"0.39660","0.30613","0.30613" +"GO:0071826","ribonucleoprotein complex subunit organi...",36,21,19.71,361,"0.39660","0.30613","0.30613" +"GO:0009628","response to abiotic stimulus",91,47,49.81,725,"0.76133","0.30863","0.30863" +"GO:0034728","nucleosome organization",16,9,8.76,498,"0.55460","0.30894","0.30894" +"GO:0010721","negative regulation of cell development",18,10,9.85,511,"0.56917","0.31131","0.31131" +"GO:0048585","negative regulation of response to stimu...",80,44,43.79,465,"0.52777","0.31322","0.31322" +"GO:1903506","regulation of nucleic acid-templated tra...",388,245,212.39,31,"0.00019","0.00038","0.31359" +"GO:0006913","nucleocytoplasmic transport",45,31,24.63,87,"0.03680","0.04891","0.31611" +"GO:0051169","nuclear transport",45,31,24.63,88,"0.03680","0.04891","0.31611" +"GO:0031099","regeneration",11,6,6.02,556,"0.62660","0.31822","0.31822" +"GO:0051321","meiotic cell cycle",21,12,11.5,436,"0.50194","0.31826","0.31826" +"GO:0043618","regulation of transcription from RNA pol...",12,6,6.57,676,"0.73366","0.31890","0.31890" +"GO:0043620","regulation of DNA-templated transcriptio...",12,6,6.57,677,"0.73366","0.31890","0.31890" +"GO:2001141","regulation of RNA biosynthetic process",389,246,212.93,30,"0.00016","0.00032","0.31942" +"GO:0006342","chromatin silencing",16,11,8.76,225,"0.19107","0.31948","0.31948" +"GO:0045814","negative regulation of gene expression, ...",16,11,8.76,226,"0.19107","0.31948","0.31948" +"GO:0071495","cellular response to endogenous stimulus",63,29,34.49,1049,"0.93698","0.32286","0.32286" +"GO:0009888","tissue development",115,63,62.95,472,"0.53535","0.32504","0.32504" +"GO:0022414","reproductive process",112,62,61.31,409,"0.48625","0.32553","0.32553" +"GO:0009967","positive regulation of signal transducti...",61,35,33.39,345,"0.38799","0.32572","0.32572" +"GO:0006368","transcription elongation from RNA polyme...",15,10,8.21,254,"0.25353","0.32865","0.32865" +"GO:0048523","negative regulation of cellular process",260,154,142.32,127,"0.07139","0.19753","0.32964" +"GO:0009880","embryonic pattern specification",15,10,8.21,255,"0.25353","0.33002","0.33002" +"GO:0072001","renal system development",18,11,9.85,339,"0.38244","0.33110","0.33110" +"GO:0098656","anion transmembrane transport",16,10,8.76,332,"0.35763","0.33218","0.33218" +"GO:0072331","signal transduction by p53 class mediato...",15,9,8.21,391,"0.44380","0.33278","0.33278" +"GO:0006413","translational initiation",16,11,8.76,227,"0.19107","0.33396","0.33396" +"GO:0002757","immune response-activating signal transd...",18,10,9.85,512,"0.56917","0.33464","0.33464" +"GO:0002764","immune response-regulating signaling pat...",18,10,9.85,513,"0.56917","0.33464","0.33464" +"GO:0006869","lipid transport",24,9,13.14,1129,"0.97195","0.33487","0.33487" +"GO:0032535","regulation of cellular component size",26,15,14.23,401,"0.46036","0.33529","0.33529" +"GO:0048869","cellular developmental process",201,112,110.02,371,"0.41486","0.33576","0.33576" +"GO:0046488","phosphatidylinositol metabolic process",17,7,9.31,1003,"0.91467","0.33593","0.33593" +"GO:0071166","ribonucleoprotein complex localization",14,6,7.66,923,"0.87771","0.33640","0.33640" +"GO:0071426","ribonucleoprotein complex export from nu...",14,6,7.66,924,"0.87771","0.33640","0.33640" +"GO:0045931","positive regulation of mitotic cell cycl...",11,6,6.02,557,"0.62660","0.33784","0.33784" +"GO:1903827","regulation of cellular protein localizat...",35,22,19.16,236,"0.21258","0.34068","0.34068" +"GO:0003407","neural retina development",12,7,6.57,449,"0.51954","0.34134","0.34134" +"GO:0034654","nucleobase-containing compound biosynthe...",497,309,272.05,26,"0.00013","0.00029","0.34484" +"GO:0006139","nucleobase-containing compound metabolic...",944,604,516.73,2,"1.1e-12","1.1e-12","0.34500" +"GO:0032984","protein-containing complex disassembly",30,17,16.42,413,"0.49081","0.34514","0.34514" +"GO:0007548","sex differentiation",24,14,13.14,388,"0.44335","0.34639","0.34639" +"GO:0007565","female pregnancy",11,6,6.02,558,"0.62660","0.34657","0.34657" +"GO:0055114","oxidation-reduction process",100,60,54.74,196,"0.16501","0.34775","0.34775" +"GO:0070646","protein modification by small protein re...",37,28,20.25,55,"0.00686","0.01230","0.34854" +"GO:2001020","regulation of response to DNA damage sti...",20,11,10.95,526,"0.58235","0.34867","0.34867" +"GO:0019438","aromatic compound biosynthetic process",506,314,276.98,28,"0.00014","0.00040","0.35032" +"GO:0051606","detection of stimulus",10,5,5.47,646,"0.73321","0.35073","0.35073" +"GO:1903828","negative regulation of cellular protein ...",10,7,5.47,267,"0.26013","0.35131","0.35131" +"GO:0060255","regulation of macromolecule metabolic pr...",565,345,309.27,37,"0.00041","0.00055","0.35145" +"GO:0035107","appendage morphogenesis",18,10,9.85,514,"0.56917","0.35157","0.35157" +"GO:0006464","cellular protein modification process",500,298,273.69,59,"0.00894","0.00628","0.35240" +"GO:0036211","protein modification process",500,298,273.69,60,"0.00894","0.00628","0.35240" +"GO:0007033","vacuole organization",18,11,9.85,340,"0.38244","0.35731","0.35731" +"GO:0022613","ribonucleoprotein complex biogenesis",100,64,54.74,85,"0.03571","0.00482","0.35968" +"GO:0034504","protein localization to nucleus",26,19,14.23,98,"0.04344","0.03601","0.36161" +"GO:0022411","cellular component disassembly",38,21,20.8,489,"0.54122","0.36165","0.36165" +"GO:1901292","nucleoside phosphate catabolic process",10,5,5.47,647,"0.73321","0.36183","0.36183" +"GO:0051028","mRNA transport",13,6,7.12,819,"0.81669","0.36375","0.36375" +"GO:0198738","cell-cell signaling by wnt",40,20,21.9,742,"0.77872","0.36433","0.36433" +"GO:0030178","negative regulation of Wnt signaling pat...",14,6,7.66,925,"0.87771","0.36441","0.36441" +"GO:0045732","positive regulation of protein catabolic...",14,8,7.66,481,"0.53824","0.36441","0.36441" +"GO:0060249","anatomical structure homeostasis",25,16,13.68,245,"0.23317","0.36538","0.36538" +"GO:0030855","epithelial cell differentiation",39,21,21.35,542,"0.60983","0.36641","0.36641" +"GO:0048736","appendage development",21,12,11.5,437,"0.50194","0.36664","0.36664" +"GO:0140013","meiotic nuclear division",14,8,7.66,482,"0.53824","0.36873","0.36873" +"GO:0006415","translational termination",10,4,5.47,964,"0.89535","0.37132","0.37132" +"GO:0043065","positive regulation of apoptotic process",22,14,12.04,272,"0.26731","0.37280","0.37280" +"GO:0031347","regulation of defense response",27,15,14.78,490,"0.54549","0.37336","0.37336" +"GO:0045664","regulation of neuron differentiation",28,12,15.33,1029,"0.92763","0.37407","0.37407" +"GO:0060429","epithelium development",81,43,44.34,595,"0.66238","0.37465","0.37465" +"GO:0072594","establishment of protein localization to...",53,32,29.01,249,"0.24492","0.11531","0.37696" +"GO:0046434","organophosphate catabolic process",15,8,8.21,585,"0.64618","0.37707","0.37707" +"GO:0043632","modification-dependent macromolecule cat...",86,62,47.08,40,"0.00061","0.00012","0.37826" +"GO:0035120","post-embryonic appendage morphogenesis",13,8,7.12,375,"0.41904","0.37925","0.37925" +"GO:0030518","intracellular steroid hormone receptor s...",10,5,5.47,648,"0.73321","0.38395","0.38395" +"GO:0050792","regulation of viral process",10,6,5.47,421,"0.49758","0.38517","0.38517" +"GO:0045137","development of primary sexual characteri...",18,11,9.85,341,"0.38244","0.38700","0.38700" +"GO:0010942","positive regulation of cell death",28,17,15.33,314,"0.32934","0.38747","0.38747" +"GO:0001763","morphogenesis of a branching structure",12,7,6.57,450,"0.51954","0.39197","0.39197" +"GO:0043903","regulation of symbiosis, encompassing mu...",12,7,6.57,451,"0.51954","0.39230","0.39230" +"GO:0044706","multi-multicellular organism process",12,6,6.57,678,"0.73366","0.39499","0.39499" +"GO:0050793","regulation of developmental process",115,66,62.95,308,"0.31361","0.39502","0.39502" +"GO:0048592","eye morphogenesis",33,19,18.06,386,"0.44129","0.39514","0.39514" +"GO:0051241","negative regulation of multicellular org...",39,19,21.35,839,"0.82205","0.39575","0.39575" +"GO:0016070","RNA metabolic process",740,469,405.07,6,"1.9e-08","2.7e-08","0.39691" +"GO:0051345","positive regulation of hydrolase activit...",29,17,15.87,367,"0.40965","0.39709","0.39709" +"GO:0012501","programmed cell death",97,58,53.1,203,"0.18043","0.39758","0.39758" +"GO:0030162","regulation of proteolysis",38,23,20.8,285,"0.29005","0.39803","0.39803" +"GO:0043068","positive regulation of programmed cell d...",24,15,13.14,283,"0.28934","0.39879","0.39879" +"GO:0045807","positive regulation of endocytosis",10,6,5.47,422,"0.49758","0.39988","0.39988" +"GO:0050776","regulation of immune response",39,21,21.35,543,"0.60983","0.40027","0.40027" +"GO:1902903","regulation of supramolecular fiber organ...",26,14,14.23,547,"0.61586","0.40196","0.40196" +"GO:0007600","sensory perception",31,18,16.97,383,"0.42595","0.40299","0.40299" +"GO:0043254","regulation of protein complex assembly",25,13,13.68,621,"0.68503","0.40386","0.40386" +"GO:0002065","columnar/cuboidal epithelial cell differ...",25,14,13.68,470,"0.53213","0.40583","0.40583" +"GO:1901800","positive regulation of proteasomal prote...",10,6,5.47,423,"0.49758","0.40670","0.40670" +"GO:1903052","positive regulation of proteolysis invol...",10,6,5.47,424,"0.49758","0.40670","0.40670" +"GO:1903364","positive regulation of cellular protein ...",10,6,5.47,425,"0.49758","0.40670","0.40670" +"GO:0007166","cell surface receptor signaling pathway",119,65,65.14,493,"0.54892","0.40693","0.40693" +"GO:0048609","multicellular organismal reproductive pr...",69,36,37.77,634,"0.71159","0.40799","0.40799" +"GO:0019058","viral life cycle",12,7,6.57,452,"0.51954","0.40994","0.40994" +"GO:0008544","epidermis development",14,8,7.66,483,"0.53824","0.41086","0.41086" +"GO:0016477","cell migration",43,23,23.54,567,"0.62708","0.41463","0.41463" +"GO:0031570","DNA integrity checkpoint",16,10,8.76,333,"0.35763","0.41764","0.41764" +"GO:0007409","axonogenesis",29,16,15.87,507,"0.55793","0.41802","0.41802" +"GO:0048522","positive regulation of cellular process",273,151,149.44,397,"0.44649","0.42296","0.42296" +"GO:0032501","multicellular organismal process",361,195,197.61,582,"0.63808","0.42332","0.42332" +"GO:0043523","regulation of neuron apoptotic process",10,7,5.47,268,"0.26013","0.42367","0.42367" +"GO:0051402","neuron apoptotic process",10,7,5.47,269,"0.26013","0.42367","0.42367" +"GO:0061138","morphogenesis of a branching epithelium",11,7,6.02,355,"0.39006","0.42392","0.42392" +"GO:0090092","regulation of transmembrane receptor pro...",14,8,7.66,484,"0.53824","0.42407","0.42407" +"GO:0006406","mRNA export from nucleus",11,5,6.02,840,"0.82205","0.42525","0.42525" +"GO:0071427","mRNA-containing ribonucleoprotein comple...",11,5,6.02,841,"0.82205","0.42525","0.42525" +"GO:0060070","canonical Wnt signaling pathway",21,10,11.5,764,"0.81022","0.42713","0.42713" +"GO:0000154","rRNA modification",11,6,6.02,559,"0.62660","0.42731","0.42731" +"GO:0061564","axon development",36,20,19.71,466,"0.52968","0.42734","0.42734" +"GO:0044092","negative regulation of molecular functio...",41,19,22.44,954,"0.89344","0.43089","0.43089" +"GO:0048593","camera-type eye morphogenesis",16,9,8.76,499,"0.55460","0.43210","0.43210" +"GO:0080090","regulation of primary metabolic process",529,325,289.57,35,"0.00033","0.00056","0.43216" +"GO:0071345","cellular response to cytokine stimulus",27,13,14.78,798,"0.81228","0.43235","0.43235" +"GO:0009966","regulation of signal transduction",146,78,79.92,594,"0.66092","0.43267","0.43267" +"GO:0036473","cell death in response to oxidative stre...",10,5,5.47,649,"0.73321","0.43322","0.43322" +"GO:0010608","posttranscriptional regulation of gene e...",51,27,27.92,593,"0.65740","0.43351","0.43351" +"GO:0000902","cell morphogenesis",56,30,30.65,553,"0.62409","0.43354","0.43354" +"GO:0018130","heterocycle biosynthetic process",511,316,279.71,32,"0.00020","0.00061","0.43503" +"GO:0009611","response to wounding",22,10,12.04,889,"0.86275","0.43619","0.43619" +"GO:0000003","reproduction",118,65,64.59,442,"0.50800","0.43653","0.43653" +"GO:0042273","ribosomal large subunit biogenesis",15,8,8.21,586,"0.64618","0.43813","0.43813" +"GO:0007167","enzyme linked receptor protein signaling...",44,22,24.09,749,"0.78537","0.43862","0.43862" +"GO:1901699","cellular response to nitrogen compound",16,6,8.76,1078,"0.94968","0.43941","0.43941" +"GO:0033365","protein localization to organelle",74,43,40.51,311,"0.31965","0.15741","0.43958" +"GO:0051258","protein polymerization",30,18,16.42,326,"0.34759","0.44189","0.44189" +"GO:0001667","ameboidal-type cell migration",12,5,6.57,941,"0.88519","0.44195","0.44195" +"GO:0002443","leukocyte mediated immunity",12,7,6.57,453,"0.51954","0.44195","0.44195" +"GO:0006333","chromatin assembly or disassembly",18,9,9.85,701,"0.74065","0.44555","0.44555" +"GO:0051726","regulation of cell cycle",100,58,54.74,281,"0.28683","0.00334","0.44558" +"GO:0030900","forebrain development",14,7,7.66,684,"0.73534","0.44662","0.44662" +"GO:0030099","myeloid cell differentiation",10,7,5.47,270,"0.26013","0.44738","0.44738" +"GO:0007286","spermatid development",21,13,11.5,319,"0.33177","0.44926","0.44926" +"GO:0007163","establishment or maintenance of cell pol...",13,6,7.12,820,"0.81669","0.45277","0.45277" +"GO:0000077","DNA damage checkpoint",11,7,6.02,356,"0.39006","0.45297","0.45297" +"GO:0018022","peptidyl-lysine methylation",18,11,9.85,342,"0.38244","0.45398","0.45398" +"GO:0010647","positive regulation of cell communicatio...",64,36,35.03,398,"0.45432","0.45606","0.45606" +"GO:0023056","positive regulation of signaling",64,36,35.03,399,"0.45432","0.45606","0.45606" +"GO:0032271","regulation of protein polymerization",20,11,10.95,527,"0.58235","0.45676","0.45676" +"GO:0046661","male sex differentiation",12,7,6.57,454,"0.51954","0.45760","0.45760" +"GO:0071417","cellular response to organonitrogen comp...",13,6,7.12,821,"0.81669","0.45837","0.45837" +"GO:2001242","regulation of intrinsic apoptotic signal...",13,8,7.12,376,"0.41904","0.45837","0.45837" +"GO:0031399","regulation of protein modification proce...",96,55,52.55,323,"0.34301","0.45881","0.45881" +"GO:0048545","response to steroid hormone",34,16,18.61,881,"0.85951","0.45897","0.45897" +"GO:0034097","response to cytokine",29,13,15.87,987,"0.89689","0.46819","0.46819" +"GO:0070979","protein K11-linked ubiquitination",10,6,5.47,426,"0.49758","0.47092","0.47092" +"GO:0009141","nucleoside triphosphate metabolic proces...",22,11,12.04,716,"0.74719","0.47191","0.47191" +"GO:0010970","transport along microtubule",15,9,8.21,392,"0.44380","0.47655","0.47655" +"GO:0030705","cytoskeleton-dependent intracellular tra...",15,9,8.21,393,"0.44380","0.47655","0.47655" +"GO:0099111","microtubule-based transport",15,9,8.21,394,"0.44380","0.47655","0.47655" +"GO:1901654","response to ketone",15,7,8.21,804,"0.81335","0.47655","0.47655" +"GO:0032989","cellular component morphogenesis",68,37,37.22,519,"0.57205","0.47813","0.47813" +"GO:0009636","response to toxic substance",24,10,13.14,1044,"0.93272","0.47827","0.47827" +"GO:0010038","response to metal ion",24,10,13.14,1045,"0.93272","0.47827","0.47827" +"GO:0023051","regulation of signaling",156,84,85.39,552,"0.62373","0.47982","0.47982" +"GO:0006259","DNA metabolic process",181,134,99.08,7,"2.6e-08","8.4e-12","0.47987" +"GO:0034329","cell junction assembly",13,6,7.12,822,"0.81669","0.48198","0.48198" +"GO:0048468","cell development",129,70,70.61,525,"0.58082","0.48224","0.48224" +"GO:0000460","maturation of 5.8S rRNA",11,5,6.02,842,"0.82205","0.48348","0.48348" +"GO:0007472","wing disc morphogenesis",12,7,6.57,455,"0.51954","0.48435","0.48435" +"GO:0032784","regulation of DNA-templated transcriptio...",12,8,6.57,295,"0.29757","0.48435","0.48435" +"GO:0035220","wing disc development",12,7,6.57,456,"0.51954","0.48435","0.48435" +"GO:0043207","response to external biotic stimulus",29,12,15.87,1075,"0.94933","0.48662","0.48662" +"GO:0051707","response to other organism",29,12,15.87,1076,"0.94933","0.48662","0.48662" +"GO:0002520","immune system development",23,15,12.59,235,"0.21189","0.48666","0.48666" +"GO:0007169","transmembrane receptor protein tyrosine ...",19,10,10.4,596,"0.66309","0.48759","0.48759" +"GO:0007154","cell communication",392,203,214.58,1001,"0.90684","0.48795","0.48795" +"GO:0050808","synapse organization",22,10,12.04,890,"0.86275","0.48896","0.48896" +"GO:0016072","rRNA metabolic process",52,36,28.46,75,"0.02268","0.00127","0.48918" +"GO:0007281","germ cell development",45,24,24.63,571,"0.63514","0.49012","0.49012" +"GO:0048762","mesenchymal cell differentiation",10,3,5.47,1124,"0.97175","0.49286","0.49286" +"GO:0001666","response to hypoxia",14,6,7.66,926,"0.87771","0.49434","0.49434" +"GO:0036293","response to decreased oxygen levels",14,6,7.66,927,"0.87771","0.49434","0.49434" +"GO:0070482","response to oxygen levels",14,6,7.66,928,"0.87771","0.49434","0.49434" +"GO:0071214","cellular response to abiotic stimulus",12,6,6.57,679,"0.73366","0.49496","0.49496" +"GO:0104004","cellular response to environmental stimu...",12,6,6.57,680,"0.73366","0.49496","0.49496" +"GO:0016358","dendrite development",10,5,5.47,650,"0.73321","0.49688","0.49688" +"GO:0048588","developmental cell growth",10,5,5.47,651,"0.73321","0.49755","0.49755" +"GO:0060560","developmental growth involved in morphog...",10,5,5.47,652,"0.73321","0.49755","0.49755" +"GO:0032504","multicellular organism reproduction",71,37,38.86,637,"0.71673","0.49858","0.49858" +"GO:0007568","aging",25,12,13.68,787,"0.81125","0.50268","0.50268" +"GO:0009116","nucleoside metabolic process",10,4,5.47,965,"0.89535","0.50360","0.50360" +"GO:0023052","signaling",385,201,210.74,906,"0.87075","0.50450","0.50450" +"GO:0042770","signal transduction in response to DNA d...",10,5,5.47,653,"0.73321","0.50562","0.50562" +"GO:0015849","organic acid transport",21,12,11.5,438,"0.50194","0.50614","0.50614" +"GO:0046942","carboxylic acid transport",21,12,11.5,439,"0.50194","0.50614","0.50614" +"GO:0030163","protein catabolic process",115,75,62.95,66,"0.01297","0.00337","0.50713" +"GO:0001654","eye development",53,28,29.01,603,"0.66427","0.50927","0.50927" +"GO:0048880","sensory system development",53,28,29.01,604,"0.66427","0.50927","0.50927" +"GO:0150063","visual system development",53,28,29.01,605,"0.66427","0.50927","0.50927" +"GO:0002253","activation of immune response",20,11,10.95,528,"0.58235","0.50950","0.50950" +"GO:0046530","photoreceptor cell differentiation",18,12,9.85,239,"0.21836","0.50991","0.50991" +"GO:0007267","cell-cell signaling",69,36,37.77,635,"0.71159","0.51086","0.51086" +"GO:0035690","cellular response to drug",16,7,8.76,907,"0.87215","0.51182","0.51182" +"GO:0042274","ribosomal small subunit biogenesis",13,7,7.12,575,"0.63679","0.51224","0.51224" +"GO:0062012","regulation of small molecule metabolic p...",12,7,6.57,457,"0.51954","0.51304","0.51304" +"GO:0098657","import into cell",36,16,19.71,1024,"0.92154","0.51308","0.51308" +"GO:0001890","placenta development",10,4,5.47,966,"0.89535","0.51373","0.51373" +"GO:1903046","meiotic cell cycle process",18,10,9.85,515,"0.56917","0.51415","0.51415" +"GO:0007389","pattern specification process",41,22,22.44,550,"0.61866","0.51481","0.51481" +"GO:0046578","regulation of Ras protein signal transdu...",21,11,11.5,613,"0.67080","0.51483","0.51483" +"GO:0001701","in utero embryonic development",28,12,15.33,1030,"0.92763","0.51503","0.51503" +"GO:0060485","mesenchyme development",12,4,6.57,1103,"0.96327","0.51638","0.51638" +"GO:0040011","locomotion",80,41,43.79,737,"0.77376","0.51837","0.51837" +"GO:0080135","regulation of cellular response to stres...",54,29,29.56,548,"0.61632","0.51890","0.51890" +"GO:0042254","ribosome biogenesis",75,49,41.05,89,"0.03899","0.00801","0.51964" +"GO:0008219","cell death",110,64,60.21,271,"0.26088","0.52079","0.52079" +"GO:0048870","cell motility",53,28,29.01,606,"0.66427","0.52190","0.52190" +"GO:0051674","localization of cell",53,28,29.01,607,"0.66427","0.52190","0.52190" +"GO:0002164","larval development",11,5,6.02,843,"0.82205","0.52198","0.52198" +"GO:0022008","neurogenesis",98,53,53.64,538,"0.59447","0.52222","0.52222" +"GO:0042026","protein refolding",13,8,7.12,377,"0.41904","0.52283","0.52283" +"GO:0051346","negative regulation of hydrolase activit...",16,7,8.76,908,"0.87215","0.52384","0.52384" +"GO:0009205","purine ribonucleoside triphosphate metab...",17,6,9.31,1115,"0.96878","0.52484","0.52484" +"GO:0022604","regulation of cell morphogenesis",12,7,6.57,458,"0.51954","0.52494","0.52494" +"GO:0040008","regulation of growth",39,23,21.35,328,"0.35638","0.52494","0.52494" +"GO:0060541","respiratory system development",17,8,9.31,791,"0.81141","0.52578","0.52578" +"GO:0006605","protein targeting",42,21,22.99,745,"0.78207","0.52696","0.52696" +"GO:0090287","regulation of cellular response to growt...",15,8,8.21,587,"0.64618","0.53100","0.53100" +"GO:0048666","neuron development",66,36,36.13,509,"0.56379","0.53278","0.53278" +"GO:0050877","nervous system process",48,25,26.27,629,"0.69908","0.53364","0.53364" +"GO:0006664","glycolipid metabolic process",12,4,6.57,1104,"0.96327","0.53578","0.53578" +"GO:1903509","liposaccharide metabolic process",12,4,6.57,1105,"0.96327","0.53578","0.53578" +"GO:0031323","regulation of cellular metabolic process",536,324,293.4,45,"0.00177","0.00307","0.53685" +"GO:0006915","apoptotic process",90,53,49.26,246,"0.24368","0.53739","0.53739" +"GO:0048667","cell morphogenesis involved in neuron di...",33,18,18.06,523,"0.58049","0.53815","0.53815" +"GO:0006575","cellular modified amino acid metabolic p...",10,6,5.47,427,"0.49758","0.53823","0.53823" +"GO:0036503","ERAD pathway",15,12,8.21,94,"0.04024","0.01990","0.53837" +"GO:0015711","organic anion transport",26,15,14.23,402,"0.46036","0.54137","0.54137" +"GO:0042176","regulation of protein catabolic process",31,16,16.97,631,"0.70405","0.54218","0.54218" +"GO:0071772","response to BMP",10,6,5.47,428,"0.49758","0.54234","0.54234" +"GO:0071773","cellular response to BMP stimulus",10,6,5.47,429,"0.49758","0.54234","0.54234" +"GO:0001817","regulation of cytokine production",16,9,8.76,500,"0.55460","0.54243","0.54243" +"GO:0040029","regulation of gene expression, epigeneti...",29,17,15.87,368,"0.40965","0.54293","0.54293" +"GO:0014070","response to organic cyclic compound",51,21,27.92,1152,"0.98224","0.54675","0.54675" +"GO:0051252","regulation of RNA metabolic process",410,256,224.43,36,"0.00039","0.00052","0.54812" +"GO:0010646","regulation of cell communication",154,82,84.3,619,"0.68000","0.54896","0.54896" +"GO:0006952","defense response",55,28,30.11,727,"0.76260","0.54910","0.54910" +"GO:0036294","cellular response to decreased oxygen le...",11,4,6.02,1052,"0.93724","0.54921","0.54921" +"GO:0071456","cellular response to hypoxia",11,4,6.02,1053,"0.93724","0.54921","0.54921" +"GO:0021700","developmental maturation",19,10,10.4,597,"0.66309","0.54976","0.54976" +"GO:0031334","positive regulation of protein complex a...",22,11,12.04,717,"0.74719","0.55130","0.55130" +"GO:0034330","cell junction organization",14,6,7.66,929,"0.87771","0.55261","0.55261" +"GO:0051128","regulation of cellular component organiz...",154,84,84.3,494,"0.55374","0.55284","0.55284" +"GO:0045333","cellular respiration",10,5,5.47,654,"0.73321","0.55538","0.55538" +"GO:0090257","regulation of muscle system process",10,5,5.47,655,"0.73321","0.56019","0.56019" +"GO:0030182","neuron differentiation",83,44,45.43,609,"0.66829","0.56132","0.56132" +"GO:0048515","spermatid differentiation",22,13,12.04,379,"0.42489","0.56366","0.56366" +"GO:0048699","generation of neurons",92,48,50.36,642,"0.72934","0.56446","0.56446" +"GO:0048583","regulation of response to stimulus",201,110,110.02,468,"0.53155","0.56712","0.56712" +"GO:0003006","developmental process involved in reprod...",80,42,43.79,630,"0.69996","0.56765","0.56765" +"GO:0032970","regulation of actin filament-based proce...",25,12,13.68,788,"0.81125","0.56979","0.56979" +"GO:0033157","regulation of intracellular protein tran...",22,13,12.04,380,"0.42489","0.57158","0.57158" +"GO:0009144","purine nucleoside triphosphate metabolic...",18,7,9.85,1065,"0.94435","0.57179","0.57179" +"GO:0009199","ribonucleoside triphosphate metabolic pr...",18,7,9.85,1066,"0.94435","0.57179","0.57179" +"GO:0048812","neuron projection morphogenesis",34,17,18.61,732,"0.76839","0.57268","0.57268" +"GO:0048858","cell projection morphogenesis",34,17,18.61,733,"0.76839","0.57268","0.57268" +"GO:0120039","plasma membrane bounded cell projection ...",34,17,18.61,734,"0.76839","0.57268","0.57268" +"GO:2001234","negative regulation of apoptotic signali...",11,6,6.02,560,"0.62660","0.57285","0.57285" +"GO:2001233","regulation of apoptotic signaling pathwa...",18,11,9.85,343,"0.38244","0.57333","0.57333" +"GO:0001754","eye photoreceptor cell differentiation",15,9,8.21,395,"0.44380","0.57478","0.57478" +"GO:0042594","response to starvation",18,8,9.85,902,"0.86802","0.57581","0.57581" +"GO:1901362","organic cyclic compound biosynthetic pro...",515,317,281.9,34,"0.00033","0.00081","0.57634" +"GO:0007626","locomotory behavior",14,8,7.66,485,"0.53824","0.57721","0.57721" +"GO:0009314","response to radiation",30,16,16.42,570,"0.63463","0.57754","0.57754" +"GO:0042461","photoreceptor cell development",12,8,6.57,296,"0.29757","0.57760","0.57760" +"GO:0048469","cell maturation",15,7,8.21,805,"0.81335","0.57986","0.57986" +"GO:0006955","immune response",55,28,30.11,728,"0.76260","0.58288","0.58288" +"GO:0006820","anion transport",32,17,17.52,583,"0.64322","0.58295","0.58295" +"GO:0035239","tube morphogenesis",48,24,26.27,752,"0.79180","0.58429","0.58429" +"GO:2000145","regulation of cell motility",27,13,14.78,799,"0.81228","0.58460","0.58460" +"GO:0042592","homeostatic process",90,54,49.26,205,"0.18112","0.58489","0.58489" +"GO:0003008","system process",71,36,38.86,755,"0.79206","0.58655","0.58655" +"GO:0007476","imaginal disc-derived wing morphogenesis",11,6,6.02,561,"0.62660","0.58695","0.58695" +"GO:0035114","imaginal disc-derived appendage morphoge...",11,6,6.02,562,"0.62660","0.58695","0.58695" +"GO:0048737","imaginal disc-derived appendage developm...",11,6,6.02,563,"0.62660","0.58695","0.58695" +"GO:0018193","peptidyl-amino acid modification",98,57,53.64,279,"0.27833","0.58908","0.58908" +"GO:2000027","regulation of animal organ morphogenesis",15,8,8.21,588,"0.64618","0.59004","0.59004" +"GO:0048534","hematopoietic or lymphoid organ developm...",22,14,12.04,273,"0.26731","0.59157","0.59157" +"GO:0006497","protein lipidation",19,10,10.4,598,"0.66309","0.59207","0.59207" +"GO:0042158","lipoprotein biosynthetic process",19,10,10.4,599,"0.66309","0.59207","0.59207" +"GO:0042255","ribosome assembly",11,6,6.02,564,"0.62660","0.59223","0.59223" +"GO:0044743","protein transmembrane import into intrac...",14,8,7.66,486,"0.53824","0.59230","0.59230" +"GO:0042127","regulation of cell proliferation",57,31,31.2,520,"0.57621","0.59368","0.59368" +"GO:0009719","response to endogenous stimulus",85,43,46.53,815,"0.81380","0.59448","0.59448" +"GO:0017038","protein import",26,19,14.23,99,"0.04344","0.03601","0.59643" +"GO:0003013","circulatory system process",13,7,7.12,576,"0.63679","0.59656","0.59656" +"GO:0008015","blood circulation",13,7,7.12,577,"0.63679","0.59656","0.59656" +"GO:0001816","cytokine production",18,10,9.85,516,"0.56917","0.60152","0.60152" +"GO:0090596","sensory organ morphogenesis",37,20,20.25,540,"0.60056","0.60272","0.60272" +"GO:1903311","regulation of mRNA metabolic process",20,11,10.95,529,"0.58235","0.60287","0.60287" +"GO:0040012","regulation of locomotion",35,16,19.16,960,"0.89416","0.60405","0.60405" +"GO:0042742","defense response to bacterium",12,5,6.57,942,"0.88519","0.60451","0.60451" +"GO:0007528","neuromuscular junction development",10,4,5.47,967,"0.89535","0.60580","0.60580" +"GO:0097193","intrinsic apoptotic signaling pathway",16,9,8.76,501,"0.55460","0.60609","0.60609" +"GO:0006725","cellular aromatic compound metabolic pro...",958,610,524.4,3,"3.5e-12","4.4e-12","0.60640" +"GO:0016458","gene silencing",27,15,14.78,491,"0.54549","0.60691","0.60691" +"GO:0007265","Ras protein signal transduction",24,11,13.14,885,"0.86119","0.60760","0.60760" +"GO:0080134","regulation of response to stress",82,45,44.89,473,"0.53591","0.60934","0.60934" +"GO:0007519","skeletal muscle tissue development",10,5,5.47,656,"0.73321","0.61065","0.61065" +"GO:0071241","cellular response to inorganic substance",10,5,5.47,657,"0.73321","0.61065","0.61065" +"GO:0007411","axon guidance",21,10,11.5,765,"0.81022","0.61067","0.61067" +"GO:0097485","neuron projection guidance",21,10,11.5,766,"0.81022","0.61067","0.61067" +"GO:0009991","response to extracellular stimulus",30,10,16.42,1193,"0.99476","0.61122","0.61122" +"GO:0031667","response to nutrient levels",30,10,16.42,1194,"0.99476","0.61122","0.61122" +"GO:0007420","brain development",41,19,22.44,955,"0.89344","0.61124","0.61124" +"GO:0048569","post-embryonic animal organ development",17,8,9.31,792,"0.81141","0.61134","0.61134" +"GO:0001751","compound eye photoreceptor cell differen...",11,7,6.02,357,"0.39006","0.61177","0.61177" +"GO:0032880","regulation of protein localization",53,31,29.01,322,"0.34066","0.61249","0.61249" +"GO:0061013","regulation of mRNA catabolic process",10,4,5.47,968,"0.89535","0.61273","0.61273" +"GO:0002682","regulation of immune system process",56,29,30.65,638,"0.72116","0.61277","0.61277" +"GO:0009612","response to mechanical stimulus",12,7,6.57,459,"0.51954","0.61286","0.61286" +"GO:0006796","phosphate-containing compound metabolic ...",327,171,179,867,"0.84253","0.61288","0.61288" +"GO:0050803","regulation of synapse structure or activ...",12,5,6.57,943,"0.88519","0.61438","0.61438" +"GO:0050807","regulation of synapse organization",12,5,6.57,944,"0.88519","0.61438","0.61438" +"GO:1901657","glycosyl compound metabolic process",11,5,6.02,844,"0.82205","0.61441","0.61441" +"GO:0016236","macroautophagy",21,10,11.5,767,"0.81022","0.61842","0.61842" +"GO:0009607","response to biotic stimulus",32,13,17.52,1101,"0.96325","0.61900","0.61900" +"GO:1901796","regulation of signal transduction by p53...",12,7,6.57,460,"0.51954","0.62082","0.62082" +"GO:0051270","regulation of cellular component movemen...",30,14,16.42,876,"0.85926","0.62085","0.62085" +"GO:0044057","regulation of system process",18,11,9.85,344,"0.38244","0.62292","0.62292" +"GO:0009653","anatomical structure morphogenesis",157,87,85.94,403,"0.46409","0.62554","0.62554" +"GO:0015718","monocarboxylic acid transport",10,4,5.47,969,"0.89535","0.62657","0.62657" +"GO:0030334","regulation of cell migration",24,12,13.14,719,"0.75067","0.62668","0.62668" +"GO:0002252","immune effector process",25,14,13.68,471,"0.53213","0.62683","0.62683" +"GO:0060322","head development",42,19,22.99,1016,"0.91933","0.62683","0.62683" +"GO:0043067","regulation of programmed cell death",70,40,38.32,346,"0.38820","0.62697","0.62697" +"GO:0006974","cellular response to DNA damage stimulus",142,97,77.73,38,"0.00050","3.7e-05","0.62721" +"GO:0009792","embryo development ending in birth or eg...",61,31,33.39,738,"0.77432","0.62808","0.62808" +"GO:0007417","central nervous system development",55,27,30.11,864,"0.83814","0.63108","0.63108" +"GO:0009725","response to hormone",60,31,32.84,644,"0.73119","0.63109","0.63109" +"GO:0009790","embryo development",99,53,54.19,581,"0.63690","0.63121","0.63121" +"GO:0030833","regulation of actin filament polymerizat...",17,9,9.31,592,"0.65491","0.63143","0.63143" +"GO:0097305","response to alcohol",20,11,10.95,530,"0.58235","0.63180","0.63180" +"GO:0009123","nucleoside monophosphate metabolic proce...",21,8,11.5,1096,"0.96063","0.63478","0.63478" +"GO:0009605","response to external stimulus",100,43,54.74,1188,"0.99377","0.63535","0.63535" +"GO:0051056","regulation of small GTPase mediated sign...",25,11,13.68,994,"0.90043","0.63559","0.63559" +"GO:2001243","negative regulation of intrinsic apoptot...",10,5,5.47,658,"0.73321","0.63763","0.63763" +"GO:0010605","negative regulation of macromolecule met...",173,98,94.7,318,"0.32994","0.63824","0.63824" +"GO:0048514","blood vessel morphogenesis",13,6,7.12,823,"0.81669","0.64112","0.64112" +"GO:0051093","negative regulation of developmental pro...",43,20,23.54,958,"0.89351","0.64194","0.64194" +"GO:0006793","phosphorus metabolic process",330,173,180.64,863,"0.83120","0.64236","0.64236" +"GO:0042981","regulation of apoptotic process",68,39,37.22,336,"0.37773","0.64408","0.64408" +"GO:2000026","regulation of multicellular organismal d...",72,39,39.41,532,"0.58783","0.64503","0.64503" +"GO:0071453","cellular response to oxygen levels",12,4,6.57,1106,"0.96327","0.64694","0.64694" +"GO:0043086","negative regulation of catalytic activit...",31,12,16.97,1136,"0.97633","0.64744","0.64744" +"GO:0048598","embryonic morphogenesis",55,29,30.11,615,"0.67089","0.64858","0.64858" +"GO:0010035","response to inorganic substance",32,12,17.52,1157,"0.98418","0.64870","0.64870" +"GO:1902850","microtubule cytoskeleton organization in...",12,5,6.57,945,"0.88519","0.64959","0.64959" +"GO:0032990","cell part morphogenesis",37,18,20.25,838,"0.82017","0.65083","0.65083" +"GO:0070301","cellular response to hydrogen peroxide",11,5,6.02,845,"0.82205","0.65433","0.65433" +"GO:0002009","morphogenesis of an epithelium",48,24,26.27,753,"0.79180","0.65615","0.65615" +"GO:0032273","positive regulation of protein polymeriz...",18,9,9.85,702,"0.74065","0.65753","0.65753" +"GO:0048511","rhythmic process",24,13,13.14,541,"0.60552","0.65935","0.65935" +"GO:0031032","actomyosin structure organization",18,9,9.85,703,"0.74065","0.66030","0.66030" +"GO:0070848","response to growth factor",32,14,17.52,1026,"0.92403","0.66106","0.66106" +"GO:0001510","RNA methylation",19,10,10.4,600,"0.66309","0.66144","0.66144" +"GO:0007178","transmembrane receptor protein serine/th...",27,13,14.78,800,"0.81228","0.66204","0.66204" +"GO:0008283","cell proliferation",76,40,41.6,624,"0.68911","0.66346","0.66346" +"GO:0007049","cell cycle",183,114,100.17,72,"0.01981","0.00030","0.66351" +"GO:0008064","regulation of actin polymerization or de...",18,9,9.85,704,"0.74065","0.66491","0.66491" +"GO:0030041","actin filament polymerization",18,9,9.85,705,"0.74065","0.66491","0.66491" +"GO:0030832","regulation of actin filament length",18,9,9.85,706,"0.74065","0.66491","0.66491" +"GO:0046649","lymphocyte activation",14,8,7.66,487,"0.53824","0.66577","0.66577" +"GO:0006897","endocytosis",33,15,18.06,961,"0.89480","0.66605","0.66605" +"GO:0048638","regulation of developmental growth",18,9,9.85,707,"0.74065","0.66828","0.66828" +"GO:0051493","regulation of cytoskeleton organization",28,13,15.33,882,"0.85953","0.66988","0.66988" +"GO:0071695","anatomical structure maturation",10,5,5.47,659,"0.73321","0.66996","0.66996" +"GO:0031344","regulation of cell projection organizati...",32,14,17.52,1027,"0.92403","0.67091","0.67091" +"GO:0120035","regulation of plasma membrane bounded ce...",32,14,17.52,1028,"0.92403","0.67091","0.67091" +"GO:1904029","regulation of cyclin-dependent protein k...",10,5,5.47,660,"0.73321","0.67133","0.67133" +"GO:0071310","cellular response to organic substance",104,51,56.93,995,"0.90139","0.67142","0.67142" +"GO:0055085","transmembrane transport",137,72,74.99,643,"0.73109","0.67326","0.67326" +"GO:0031589","cell-substrate adhesion",12,7,6.57,461,"0.51954","0.67328","0.67328" +"GO:0034622","cellular protein-containing complex asse...",117,62,64.04,623,"0.68607","0.67561","0.67561" +"GO:0051495","positive regulation of cytoskeleton orga...",21,10,11.5,768,"0.81022","0.67670","0.67670" +"GO:0030100","regulation of endocytosis",13,7,7.12,578,"0.63679","0.67693","0.67693" +"GO:0060341","regulation of cellular localization",51,30,27.92,313,"0.32799","0.67726","0.67726" +"GO:0022412","cellular process involved in reproductio...",51,26,27.92,720,"0.75426","0.68073","0.68073" +"GO:0001655","urogenital system development",21,11,11.5,614,"0.67080","0.68095","0.68095" +"GO:0044085","cellular component biogenesis",281,146,153.82,873,"0.85341","0.56675","0.68118" +"GO:0043410","positive regulation of MAPK cascade",15,7,8.21,806,"0.81335","0.68131","0.68131" +"GO:0034976","response to endoplasmic reticulum stress",25,17,13.68,174,"0.12731","0.21686","0.68263" +"GO:0006812","cation transport",65,26,35.58,1191,"0.99443","0.68317","0.68317" +"GO:0051094","positive regulation of developmental pro...",46,24,25.18,626,"0.69306","0.68562","0.68562" +"GO:0090130","tissue migration",11,4,6.02,1054,"0.93724","0.68669","0.68669" +"GO:0090132","epithelium migration",11,4,6.02,1055,"0.93724","0.68669","0.68669" +"GO:0001819","positive regulation of cytokine producti...",11,5,6.02,846,"0.82205","0.68708","0.68708" +"GO:0051716","cellular response to stimulus",542,292,296.68,625,"0.69124","0.32947","0.68761" +"GO:0051347","positive regulation of transferase activ...",20,11,10.95,531,"0.58235","0.68915","0.68915" +"GO:0048518","positive regulation of biological proces...",323,176,176.81,508,"0.56226","0.68965","0.68965" +"GO:0006811","ion transport",110,50,60.21,1148,"0.98166","0.69043","0.69043" +"GO:0009892","negative regulation of metabolic process",183,102,100.17,378,"0.41997","0.69060","0.69060" +"GO:0071363","cellular response to growth factor stimu...",29,12,15.87,1077,"0.94933","0.69169","0.69169" +"GO:0050890","cognition",10,4,5.47,970,"0.89535","0.69177","0.69177" +"GO:0072507","divalent inorganic cation homeostasis",11,7,6.02,358,"0.39006","0.69252","0.69252" +"GO:0030902","hindbrain development",12,7,6.57,462,"0.51954","0.69268","0.69268" +"GO:0034614","cellular response to reactive oxygen spe...",12,5,6.57,946,"0.88519","0.69268","0.69268" +"GO:0042542","response to hydrogen peroxide",12,5,6.57,947,"0.88519","0.69268","0.69268" +"GO:0060538","skeletal muscle organ development",12,5,6.57,948,"0.88519","0.69268","0.69268" +"GO:0071236","cellular response to antibiotic",12,6,6.57,681,"0.73366","0.69268","0.69268" +"GO:0006839","mitochondrial transport",33,16,18.06,816,"0.81663","0.69386","0.69386" +"GO:0010822","positive regulation of mitochondrion org...",13,7,7.12,579,"0.63679","0.69423","0.69423" +"GO:0006909","phagocytosis",16,8,8.76,697,"0.73776","0.69540","0.69540" +"GO:0110053","regulation of actin filament organizatio...",19,9,10.4,776,"0.81045","0.69584","0.69584" +"GO:0032879","regulation of localization",118,63,64.59,590,"0.65448","0.69712","0.69712" +"GO:0010631","epithelial cell migration",10,4,5.47,971,"0.89535","0.69718","0.69718" +"GO:0045454","cell redox homeostasis",22,14,12.04,274,"0.26731","0.69788","0.69788" +"GO:0045944","positive regulation of transcription by ...",40,23,21.9,382,"0.42534","0.69817","0.69817" +"GO:0016311","dephosphorylation",48,20,26.27,1134,"0.97606","0.69848","0.69848" +"GO:0050790","regulation of catalytic activity",103,53,56.38,748,"0.78343","0.70019","0.70019" +"GO:0007416","synapse assembly",11,4,6.02,1056,"0.93724","0.70026","0.70026" +"GO:0007283","spermatogenesis",35,19,19.16,533,"0.59080","0.70066","0.70066" +"GO:0030097","hemopoiesis",21,13,11.5,320,"0.33177","0.70176","0.70176" +"GO:0070585","protein localization to mitochondrion",22,10,12.04,891,"0.86275","0.70308","0.70308" +"GO:0072655","establishment of protein localization to...",22,10,12.04,892,"0.86275","0.70308","0.70308" +"GO:0090090","negative regulation of canonical Wnt sig...",10,4,5.47,972,"0.89535","0.70393","0.70393" +"GO:0030001","metal ion transport",48,21,26.27,1085,"0.95412","0.70425","0.70425" +"GO:0007266","Rho protein signal transduction",15,7,8.21,807,"0.81335","0.70456","0.70456" +"GO:0007029","endoplasmic reticulum organization",10,6,5.47,430,"0.49758","0.70460","0.70460" +"GO:0090150","establishment of protein localization to...",19,10,10.4,601,"0.66309","0.70574","0.70574" +"GO:0071559","response to transforming growth factor b...",18,7,9.85,1067,"0.94435","0.70781","0.70781" +"GO:0071560","cellular response to transforming growth...",18,7,9.85,1068,"0.94435","0.70781","0.70781" +"GO:0031175","neuron projection development",48,23,26.27,900,"0.86511","0.70888","0.70888" +"GO:0048584","positive regulation of response to stimu...",93,50,50.91,549,"0.61821","0.71000","0.71000" +"GO:0001525","angiogenesis",10,4,5.47,973,"0.89535","0.71065","0.71065" +"GO:0043066","negative regulation of apoptotic process",41,22,22.44,551,"0.61866","0.71143","0.71143" +"GO:0006814","sodium ion transport",17,6,9.31,1116,"0.96878","0.71208","0.71208" +"GO:0032956","regulation of actin cytoskeleton organiz...",22,10,12.04,893,"0.86275","0.71261","0.71261" +"GO:0042157","lipoprotein metabolic process",21,10,11.5,769,"0.81022","0.71263","0.71263" +"GO:0000413","protein peptidyl-prolyl isomerization",14,7,7.66,685,"0.73534","0.71282","0.71282" +"GO:0018208","peptidyl-proline modification",14,7,7.66,686,"0.73534","0.71282","0.71282" +"GO:0031647","regulation of protein stability",21,9,11.5,999,"0.90602","0.71375","0.71375" +"GO:0006950","response to stress",287,170,157.1,115,"0.05988","0.00369","0.71480" +"GO:0043547","positive regulation of GTPase activity",16,7,8.76,909,"0.87215","0.71552","0.71552" +"GO:1902905","positive regulation of supramolecular fi...",20,10,10.95,712,"0.74383","0.71683","0.71683" +"GO:0019222","regulation of metabolic process",592,353,324.05,50,"0.00397","0.00679","0.71788" +"GO:0007610","behavior",38,20,20.8,608,"0.66649","0.71802","0.71802" +"GO:0070887","cellular response to chemical stimulus",127,60,69.52,1113,"0.96598","0.71991","0.71991" +"GO:0010468","regulation of gene expression",483,296,264.39,43,"0.00084","0.00141","0.72010" +"GO:0007179","transforming growth factor beta receptor...",16,7,8.76,910,"0.87215","0.72080","0.72080" +"GO:1902115","regulation of organelle assembly",16,5,8.76,1158,"0.98448","0.72080","0.72080" +"GO:0035023","regulation of Rho protein signal transdu...",14,7,7.66,687,"0.73534","0.72129","0.72129" +"GO:0046034","ATP metabolic process",16,5,8.76,1159,"0.98448","0.72175","0.72175" +"GO:0043244","regulation of protein complex disassembl...",11,6,6.02,565,"0.62660","0.72262","0.72262" +"GO:0008154","actin polymerization or depolymerization",20,9,10.95,897,"0.86497","0.72438","0.72438" +"GO:0060491","regulation of cell projection assembly",16,7,8.76,911,"0.87215","0.72564","0.72564" +"GO:0120032","regulation of plasma membrane bounded ce...",16,7,8.76,912,"0.87215","0.72564","0.72564" +"GO:0097237","cellular response to toxic substance",13,6,7.12,824,"0.81669","0.72647","0.72647" +"GO:0043069","negative regulation of programmed cell d...",43,23,23.54,568,"0.62708","0.72725","0.72725" +"GO:0051704","multi-organism process",125,63,68.42,888,"0.86189","0.72816","0.72816" +"GO:0051648","vesicle localization",11,5,6.02,847,"0.82205","0.72819","0.72819" +"GO:0051650","establishment of vesicle localization",11,5,6.02,848,"0.82205","0.72819","0.72819" +"GO:0007264","small GTPase mediated signal transductio...",39,17,21.35,1064,"0.94158","0.73067","0.73067" +"GO:0030030","cell projection organization",77,35,42.15,1098,"0.96184","0.73156","0.73156" +"GO:0120036","plasma membrane bounded cell projection ...",77,35,42.15,1099,"0.96184","0.73156","0.73156" +"GO:0050673","epithelial cell proliferation",11,5,6.02,849,"0.82205","0.73197","0.73197" +"GO:0050678","regulation of epithelial cell proliferat...",11,5,6.02,850,"0.82205","0.73197","0.73197" +"GO:0043933","protein-containing complex subunit organ...",165,86,90.32,744,"0.78169","0.73311","0.73311" +"GO:0048284","organelle fusion",11,5,6.02,851,"0.82205","0.73474","0.73474" +"GO:0048519","negative regulation of biological proces...",315,177,172.43,307,"0.31261","0.49694","0.73691" +"GO:0065009","regulation of molecular function",134,74,73.35,410,"0.49037","0.30598","0.73794" +"GO:0010821","regulation of mitochondrion organization",17,10,9.31,405,"0.46543","0.73918","0.73918" +"GO:0097435","supramolecular fiber organization",52,24,28.46,1011,"0.91837","0.74083","0.74083" +"GO:0007276","gamete generation",61,30,33.39,868,"0.84421","0.74169","0.74169" +"GO:0031400","negative regulation of protein modificat...",33,19,18.06,387,"0.44129","0.74249","0.74249" +"GO:0022603","regulation of anatomical structure morph...",33,17,18.06,633,"0.70988","0.74488","0.74488" +"GO:0007444","imaginal disc development",18,9,9.85,708,"0.74065","0.74521","0.74521" +"GO:1905268","negative regulation of chromatin organiz...",12,7,6.57,463,"0.51954","0.74559","0.74559" +"GO:0034220","ion transmembrane transport",46,23,25.18,750,"0.78861","0.74583","0.74583" +"GO:0006936","muscle contraction",11,5,6.02,852,"0.82205","0.74611","0.74611" +"GO:0035556","intracellular signal transduction",162,83,88.68,866,"0.84249","0.74810","0.74810" +"GO:0031330","negative regulation of cellular cataboli...",16,7,8.76,913,"0.87215","0.74956","0.74956" +"GO:0042177","negative regulation of protein catabolic...",10,5,5.47,661,"0.73321","0.75028","0.75028" +"GO:0009617","response to bacterium",18,6,9.85,1146,"0.98099","0.75075","0.75075" +"GO:0051336","regulation of hydrolase activity",55,26,30.11,983,"0.89599","0.75265","0.75265" +"GO:0097190","apoptotic signaling pathway",23,13,12.59,445,"0.51768","0.75407","0.75407" +"GO:0045595","regulation of cell differentiation",71,39,38.86,475,"0.53648","0.75413","0.75413" +"GO:1903214","regulation of protein targeting to mitoc...",10,5,5.47,662,"0.73321","0.75546","0.75546" +"GO:1903747","regulation of establishment of protein l...",10,5,5.47,663,"0.73321","0.75546","0.75546" +"GO:1903749","positive regulation of establishment of ...",10,5,5.47,664,"0.73321","0.75546","0.75546" +"GO:1903955","positive regulation of protein targeting...",10,5,5.47,665,"0.73321","0.75546","0.75546" +"GO:0022607","cellular component assembly",214,102,117.14,1166,"0.98717","0.75592","0.75592" +"GO:0046483","heterocycle metabolic process",961,611,526.04,4,"5.2e-12","7.0e-12","0.75634" +"GO:0000302","response to reactive oxygen species",14,6,7.66,930,"0.87771","0.75635","0.75635" +"GO:0006508","proteolysis",211,129,115.5,81,"0.03024","0.02521","0.75732" +"GO:0042327","positive regulation of phosphorylation",32,16,17.52,729,"0.76487","0.76146","0.76146" +"GO:0010033","response to organic substance",145,75,79.37,757,"0.79826","0.83939","0.76178" +"GO:0071806","protein transmembrane transport",16,9,8.76,502,"0.55460","0.76253","0.76253" +"GO:0044703","multi-organism reproductive process",76,37,41.6,940,"0.88320","0.76258","0.76258" +"GO:1902531","regulation of intracellular signal trans...",91,47,49.81,726,"0.76133","0.76409","0.76409" +"GO:0050896","response to stimulus",662,348,362.37,1002,"0.90827","0.44160","0.76420" +"GO:0033993","response to lipid",55,26,30.11,984,"0.89599","0.76866","0.76866" +"GO:0044087","regulation of cellular component biogene...",63,29,34.49,1050,"0.93698","0.76874","0.76874" +"GO:0051640","organelle localization",43,17,23.54,1162,"0.98502","0.76945","0.76945" +"GO:0051050","positive regulation of transport",40,20,21.9,743,"0.77872","0.76991","0.76991" +"GO:0006626","protein targeting to mitochondrion",21,9,11.5,1000,"0.90602","0.77146","0.77146" +"GO:0009124","nucleoside monophosphate biosynthetic pr...",10,4,5.47,974,"0.89535","0.77337","0.77337" +"GO:0042391","regulation of membrane potential",10,4,5.47,975,"0.89535","0.77337","0.77337" +"GO:0002376","immune system process",92,45,50.36,959,"0.89381","0.77446","0.77446" +"GO:2001235","positive regulation of apoptotic signali...",10,6,5.47,431,"0.49758","0.77463","0.77463" +"GO:0033043","regulation of organelle organization",100,52,54.74,715,"0.74670","0.77709","0.77709" +"GO:0042752","regulation of circadian rhythm",11,5,6.02,853,"0.82205","0.77766","0.77766" +"GO:0051179","localization",560,281,306.54,1182,"0.99326","0.66516","0.77794" +"GO:0010941","regulation of cell death",82,45,44.89,474,"0.53591","0.77894","0.77894" +"GO:0060548","negative regulation of cell death",50,25,27.37,756,"0.79494","0.78020","0.78020" +"GO:0006753","nucleoside phosphate metabolic process",47,24,25.73,713,"0.74544","0.78043","0.78043" +"GO:0023061","signal release",15,7,8.21,808,"0.81335","0.78285","0.78285" +"GO:0043902","positive regulation of multi-organism pr...",15,6,8.21,1018,"0.92061","0.78285","0.78285" +"GO:0007517","muscle organ development",23,7,12.59,1196,"0.99502","0.78399","0.78399" +"GO:0044403","symbiont process",23,11,12.59,782,"0.81053","0.78399","0.78399" +"GO:0044419","interspecies interaction between organis...",23,11,12.59,783,"0.81053","0.78399","0.78399" +"GO:0006979","response to oxidative stress",30,15,16.42,723,"0.76132","0.78458","0.78458" +"GO:0048871","multicellular organismal homeostasis",16,8,8.76,698,"0.73776","0.78604","0.78604" +"GO:0010256","endomembrane system organization",36,20,19.71,467,"0.52968","0.78625","0.78625" +"GO:0030031","cell projection assembly",25,8,13.68,1189,"0.99391","0.78740","0.78740" +"GO:0120031","plasma membrane bounded cell projection ...",25,8,13.68,1190,"0.99391","0.78740","0.78740" +"GO:0006935","chemotaxis",27,13,14.78,801,"0.81228","0.78819","0.78819" +"GO:0010638","positive regulation of organelle organiz...",57,31,31.2,521,"0.57621","0.78824","0.78824" +"GO:0045010","actin nucleation",13,6,7.12,825,"0.81669","0.79097","0.79097" +"GO:0071840","cellular component organization or bioge...",614,360,336.1,71,"0.01562","0.00291","0.79298" +"GO:0042221","response to chemical",219,110,119.88,1037,"0.92873","0.89119","0.79304" +"GO:0072358","cardiovascular system development",19,9,10.4,777,"0.81045","0.79318","0.79318" +"GO:0006914","autophagy",46,21,25.18,1013,"0.91862","0.79536","0.79536" +"GO:0061919","process utilizing autophagic mechanism",46,21,25.18,1014,"0.91862","0.79536","0.79536" +"GO:0006810","transport",467,230,255.63,1208,"0.99608","0.73546","0.79582" +"GO:0060041","retina development in camera-type eye",22,11,12.04,718,"0.74719","0.79813","0.79813" +"GO:0042110","T cell activation",10,6,5.47,432,"0.49758","0.79827","0.79827" +"GO:0007165","signal transduction",361,184,197.61,1072,"0.94494","0.80017","0.80017" +"GO:0065008","regulation of biological quality",191,99,104.55,837,"0.81908","0.80143","0.80143" +"GO:0007030","Golgi organization",13,7,7.12,580,"0.63679","0.80216","0.80216" +"GO:0050794","regulation of cellular process",943,530,516.19,184,"0.14184","0.04135","0.80245" +"GO:0001775","cell activation",25,13,13.68,622,"0.68503","0.80298","0.80298" +"GO:0019220","regulation of phosphate metabolic proces...",71,33,38.86,1062,"0.93757","0.80571","0.80571" +"GO:0046677","response to antibiotic",16,6,8.76,1079,"0.94968","0.80643","0.80643" +"GO:0003012","muscle system process",16,7,8.76,914,"0.87215","0.80777","0.80777" +"GO:0042493","response to drug",45,22,24.63,861,"0.82796","0.80961","0.80961" +"GO:0001894","tissue homeostasis",14,7,7.66,688,"0.73534","0.81018","0.81018" +"GO:0065002","intracellular protein transmembrane tran...",11,5,6.02,854,"0.82205","0.81074","0.81074" +"GO:1902017","regulation of cilium assembly",10,2,5.47,1198,"0.99534","0.81159","0.81159" +"GO:0045055","regulated exocytosis",10,3,5.47,1125,"0.97175","0.81219","0.81219" +"GO:0043087","regulation of GTPase activity",25,9,13.68,1150,"0.98190","0.81443","0.81443" +"GO:0010927","cellular component assembly involved in ...",12,5,6.57,949,"0.88519","0.81584","0.81584" +"GO:0016050","vesicle organization",22,12,12.04,536,"0.59440","0.81694","0.81694" +"GO:0006402","mRNA catabolic process",38,18,20.8,884,"0.86053","0.81741","0.81741" +"GO:0016032","viral process",19,9,10.4,778,"0.81045","0.81813","0.81813" +"GO:0009887","animal organ morphogenesis",75,37,41.05,875,"0.85785","0.81857","0.81857" +"GO:1903829","positive regulation of cellular protein ...",19,10,10.4,602,"0.66309","0.81864","0.81864" +"GO:0042330","taxis",29,13,15.87,988,"0.89689","0.81879","0.81879" +"GO:0043009","chordate embryonic development",53,25,29.01,982,"0.89539","0.81936","0.81936" +"GO:0065003","protein-containing complex assembly",138,70,75.54,874,"0.85528","0.81938","0.81938" +"GO:0051174","regulation of phosphorus metabolic proce...",72,33,39.41,1081,"0.95105","0.82082","0.82082" +"GO:0051234","establishment of localization",485,239,265.48,1211,"0.99659","0.76677","0.82269" +"GO:0048232","male gamete generation",39,21,21.35,544,"0.60983","0.82320","0.82320" +"GO:0032386","regulation of intracellular transport",32,17,17.52,584,"0.64322","0.82345","0.82345" +"GO:0009150","purine ribonucleotide metabolic process",25,10,13.68,1086,"0.95425","0.82379","0.82379" +"GO:0015672","monovalent inorganic cation transport",25,9,13.68,1151,"0.98190","0.82379","0.82379" +"GO:0002181","cytoplasmic translation",10,4,5.47,976,"0.89535","0.82461","0.82461" +"GO:0046467","membrane lipid biosynthetic process",12,3,6.57,1178,"0.99183","0.82488","0.82488" +"GO:0042325","regulation of phosphorylation",64,30,35.03,1017,"0.91980","0.82529","0.82529" +"GO:0006520","cellular amino acid metabolic process",48,24,26.27,754,"0.79180","0.82617","0.82617" +"GO:0044782","cilium organization",20,3,10.95,1235,"0.99996","0.82624","0.82624" +"GO:0006836","neurotransmitter transport",15,7,8.21,809,"0.81335","0.82873","0.82873" +"GO:0010629","negative regulation of gene expression",134,74,73.35,411,"0.49037","0.82894","0.82894" +"GO:0010817","regulation of hormone levels",17,5,9.31,1177,"0.99103","0.82899","0.82899" +"GO:0055001","muscle cell development",11,5,6.02,855,"0.82205","0.82985","0.82985" +"GO:0048513","animal organ development",186,99,101.81,627,"0.69386","0.83119","0.83119" +"GO:0043010","camera-type eye development",30,14,16.42,877,"0.85926","0.83262","0.83262" +"GO:0043393","regulation of protein binding",16,9,8.76,503,"0.55460","0.83322","0.83322" +"GO:0006040","amino sugar metabolic process",23,8,12.59,1154,"0.98403","0.83330","0.83330" +"GO:1901071","glucosamine-containing compound metaboli...",23,8,12.59,1155,"0.98403","0.83330","0.83330" +"GO:0035295","tube development",63,31,34.49,872,"0.84621","0.83339","0.83339" +"GO:0007399","nervous system development",133,70,72.8,639,"0.72276","0.83440","0.83440" +"GO:0032269","negative regulation of cellular protein ...",51,29,27.92,384,"0.43601","0.83519","0.83519" +"GO:1901605","alpha-amino acid metabolic process",15,8,8.21,589,"0.64618","0.83858","0.83858" +"GO:0035303","regulation of dephosphorylation",10,4,5.47,977,"0.89535","0.83901","0.83901" +"GO:0006022","aminoglycan metabolic process",27,9,14.78,1181,"0.99280","0.83984","0.83984" +"GO:0001568","blood vessel development",16,7,8.76,915,"0.87215","0.84035","0.84035" +"GO:0001944","vasculature development",16,7,8.76,916,"0.87215","0.84035","0.84035" +"GO:0050801","ion homeostasis",24,11,13.14,886,"0.86119","0.84048","0.84048" +"GO:0051099","positive regulation of binding",13,6,7.12,826,"0.81669","0.84092","0.84092" +"GO:0006886","intracellular protein transport",124,63,67.88,865,"0.83950","0.74448","0.84146" +"GO:0060627","regulation of vesicle-mediated transport",21,10,11.5,770,"0.81022","0.84183","0.84183" +"GO:0010959","regulation of metal ion transport",10,6,5.47,433,"0.49758","0.84184","0.84184" +"GO:0043270","positive regulation of ion transport",10,6,5.47,434,"0.49758","0.84184","0.84184" +"GO:0007423","sensory organ development",61,31,33.39,739,"0.77432","0.84196","0.84196" +"GO:0060271","cilium assembly",18,3,9.85,1230,"0.99985","0.84227","0.84227" +"GO:0030838","positive regulation of actin filament po...",15,7,8.21,810,"0.81335","0.84274","0.84274" +"GO:0048646","anatomical structure formation involved ...",68,33,37.22,939,"0.87780","0.84307","0.84307" +"GO:0050821","protein stabilization",11,4,6.02,1057,"0.93724","0.84355","0.84355" +"GO:0060562","epithelial tube morphogenesis",41,19,22.44,956,"0.89344","0.84361","0.84361" +"GO:0048729","tissue morphogenesis",52,25,28.46,901,"0.86743","0.84402","0.84402" +"GO:0055002","striated muscle cell development",10,5,5.47,666,"0.73321","0.84409","0.84409" +"GO:0010720","positive regulation of cell development",18,8,9.85,903,"0.86802","0.84428","0.84428" +"GO:0055086","nucleobase-containing small molecule met...",63,30,34.49,993,"0.89885","0.84517","0.84517" +"GO:0048872","homeostasis of number of cells",12,7,6.57,464,"0.51954","0.84526","0.84526" +"GO:0006030","chitin metabolic process",21,7,11.5,1165,"0.98628","0.84672","0.84672" +"GO:0032006","regulation of TOR signaling",10,5,5.47,667,"0.73321","0.84800","0.84800" +"GO:0045597","positive regulation of cell differentiat...",29,14,15.87,813,"0.81356","0.84808","0.84808" +"GO:0051656","establishment of organelle localization",27,12,14.78,989,"0.89845","0.84908","0.84908" +"GO:0009259","ribonucleotide metabolic process",26,11,14.23,1038,"0.92996","0.84908","0.84908" +"GO:0019693","ribose phosphate metabolic process",26,11,14.23,1039,"0.92996","0.84908","0.84908" +"GO:0006470","protein dephosphorylation",32,15,17.52,878,"0.85927","0.84950","0.84950" +"GO:0031047","gene silencing by RNA",17,8,9.31,793,"0.81141","0.85039","0.85039" +"GO:0030010","establishment of cell polarity",10,4,5.47,978,"0.89535","0.85132","0.85132" +"GO:0009126","purine nucleoside monophosphate metaboli...",20,7,10.95,1137,"0.97773","0.85156","0.85156" +"GO:0009161","ribonucleoside monophosphate metabolic p...",20,7,10.95,1138,"0.97773","0.85156","0.85156" +"GO:0009167","purine ribonucleoside monophosphate meta...",20,7,10.95,1139,"0.97773","0.85156","0.85156" +"GO:0002683","negative regulation of immune system pro...",13,4,7.12,1142,"0.97894","0.85169","0.85169" +"GO:0045666","positive regulation of neuron differenti...",14,7,7.66,689,"0.73534","0.85320","0.85320" +"GO:0007015","actin filament organization",30,12,16.42,1112,"0.96510","0.85410","0.85410" +"GO:0010562","positive regulation of phosphorus metabo...",35,17,19.16,833,"0.81835","0.85474","0.85474" +"GO:0045937","positive regulation of phosphate metabol...",35,17,19.16,834,"0.81835","0.85474","0.85474" +"GO:0019953","sexual reproduction",70,33,38.32,1023,"0.92114","0.85522","0.85522" +"GO:0046474","glycerophospholipid biosynthetic process",16,7,8.76,917,"0.87215","0.85574","0.85574" +"GO:1902533","positive regulation of intracellular sig...",32,16,17.52,730,"0.76487","0.85762","0.85762" +"GO:1901360","organic cyclic compound metabolic proces...",970,613,530.97,5,"2.9e-11","4.7e-11","0.85846" +"GO:0006888","ER to Golgi vesicle-mediated transport",15,5,8.21,1130,"0.97361","0.85898","0.85898" +"GO:0006887","exocytosis",20,6,10.95,1183,"0.99329","0.85967","0.85967" +"GO:0051098","regulation of binding",22,12,12.04,537,"0.59440","0.86030","0.86030" +"GO:0044089","positive regulation of cellular componen...",36,17,19.71,883,"0.85994","0.86174","0.86174" +"GO:0035264","multicellular organism growth",11,5,6.02,856,"0.82205","0.86342","0.86342" +"GO:0051049","regulation of transport",72,37,39.41,721,"0.75804","0.86427","0.86427" +"GO:0021915","neural tube development",11,4,6.02,1058,"0.93724","0.86454","0.86454" +"GO:0009416","response to light stimulus",19,9,10.4,779,"0.81045","0.86485","0.86485" +"GO:2000241","regulation of reproductive process",11,5,6.02,857,"0.82205","0.86848","0.86848" +"GO:1901565","organonitrogen compound catabolic proces...",133,81,72.8,137,"0.08421","0.01872","0.86932" +"GO:0006401","RNA catabolic process",46,23,25.18,751,"0.78861","0.87010","0.87010" +"GO:0031331","positive regulation of cellular cataboli...",20,9,10.95,898,"0.86497","0.87133","0.87133" +"GO:0006954","inflammatory response",10,5,5.47,668,"0.73321","0.87380","0.87380" +"GO:0034765","regulation of ion transmembrane transpor...",10,5,5.47,669,"0.73321","0.87380","0.87380" +"GO:1904062","regulation of cation transmembrane trans...",10,5,5.47,670,"0.73321","0.87380","0.87380" +"GO:0016441","posttranscriptional gene silencing",14,6,7.66,931,"0.87771","0.87518","0.87518" +"GO:0035194","posttranscriptional gene silencing by RN...",14,6,7.66,932,"0.87771","0.87518","0.87518" +"GO:0031329","regulation of cellular catabolic process",52,21,28.46,1167,"0.98734","0.87568","0.87568" +"GO:0010563","negative regulation of phosphorus metabo...",27,11,14.78,1082,"0.95163","0.87630","0.87630" +"GO:0045936","negative regulation of phosphate metabol...",27,11,14.78,1083,"0.95163","0.87630","0.87630" +"GO:0032388","positive regulation of intracellular tra...",16,7,8.76,918,"0.87215","0.87727","0.87727" +"GO:0016331","morphogenesis of embryonic epithelium",12,6,6.57,682,"0.73366","0.87758","0.87758" +"GO:0035148","tube formation",12,6,6.57,683,"0.73366","0.87758","0.87758" +"GO:0044257","cellular protein catabolic process",92,62,50.36,56,"0.00824","0.00396","0.87760" +"GO:0051603","proteolysis involved in cellular protein...",92,62,50.36,57,"0.00824","0.00396","0.87760" +"GO:0010243","response to organonitrogen compound",40,21,21.9,617,"0.67355","0.57813","0.87780" +"GO:0014706","striated muscle tissue development",20,9,10.95,899,"0.86497","0.87828","0.87828" +"GO:0001934","positive regulation of protein phosphory...",30,15,16.42,724,"0.76132","0.87893","0.87893" +"GO:1901701","cellular response to oxygen-containing c...",38,16,20.8,1095,"0.95879","0.88380","0.88380" +"GO:0007268","chemical synaptic transmission",15,6,8.21,1019,"0.92061","0.88452","0.88452" +"GO:0098916","anterograde trans-synaptic signaling",15,6,8.21,1020,"0.92061","0.88452","0.88452" +"GO:0099536","synaptic signaling",15,6,8.21,1021,"0.92061","0.88452","0.88452" +"GO:0099537","trans-synaptic signaling",15,6,8.21,1022,"0.92061","0.88452","0.88452" +"GO:0006643","membrane lipid metabolic process",18,5,9.85,1195,"0.99489","0.88517","0.88517" +"GO:0009057","macromolecule catabolic process",161,99,88.13,100,"0.04479","0.03652","0.88591" +"GO:0034655","nucleobase-containing compound catabolic...",59,30,32.3,735,"0.77051","0.88660","0.88660" +"GO:0048193","Golgi vesicle transport",34,11,18.61,1215,"0.99762","0.88779","0.88779" +"GO:0006418","tRNA aminoacylation for protein translat...",27,12,14.78,990,"0.89845","0.88866","0.88866" +"GO:0043038","amino acid activation",27,12,14.78,991,"0.89845","0.88866","0.88866" +"GO:0043039","tRNA aminoacylation",27,12,14.78,992,"0.89845","0.88866","0.88866" +"GO:0045596","negative regulation of cell differentiat...",35,17,19.16,835,"0.81835","0.88936","0.88936" +"GO:0051338","regulation of transferase activity",42,21,22.99,746,"0.78207","0.89044","0.89044" +"GO:0006790","sulfur compound metabolic process",18,7,9.85,1069,"0.94435","0.89049","0.89049" +"GO:0019725","cellular homeostasis",50,29,27.37,335,"0.37458","0.89082","0.89082" +"GO:0006816","calcium ion transport",14,8,7.66,488,"0.53824","0.89099","0.89099" +"GO:0051051","negative regulation of transport",14,7,7.66,690,"0.73534","0.89182","0.89182" +"GO:0060537","muscle tissue development",21,10,11.5,771,"0.81022","0.89189","0.89189" +"GO:0009117","nucleotide metabolic process",45,22,24.63,862,"0.82796","0.89217","0.89217" +"GO:0006163","purine nucleotide metabolic process",28,12,15.33,1031,"0.92763","0.89249","0.89249" +"GO:0070925","organelle assembly",63,25,34.49,1192,"0.99466","0.89353","0.89353" +"GO:0009267","cellular response to starvation",12,4,6.57,1107,"0.96327","0.89395","0.89395" +"GO:0072657","protein localization to membrane",31,16,16.97,632,"0.70405","0.89442","0.89442" +"GO:0000956","nuclear-transcribed mRNA catabolic proce...",27,13,14.78,802,"0.81228","0.89526","0.89526" +"GO:0051239","regulation of multicellular organismal p...",114,59,62.4,736,"0.77362","0.89532","0.89532" +"GO:0097164","ammonium ion metabolic process",14,2,7.66,1226,"0.99974","0.89728","0.89728" +"GO:0031346","positive regulation of cell projection o...",14,7,7.66,691,"0.73534","0.89841","0.89841" +"GO:0090316","positive regulation of intracellular pro...",13,6,7.12,827,"0.81669","0.89918","0.89918" +"GO:0030278","regulation of ossification",11,3,6.02,1161,"0.98469","0.90065","0.90065" +"GO:0048565","digestive tract development",11,2,6.02,1216,"0.99770","0.90065","0.90065" +"GO:0055123","digestive system development",11,2,6.02,1217,"0.99770","0.90065","0.90065" +"GO:0051248","negative regulation of protein metabolic...",55,29,30.11,616,"0.67089","0.90148","0.90148" +"GO:0045927","positive regulation of growth",11,4,6.02,1059,"0.93724","0.90181","0.90181" +"GO:0051260","protein homooligomerization",12,4,6.57,1108,"0.96327","0.90228","0.90228" +"GO:0044265","cellular macromolecule catabolic process",137,85,74.99,103,"0.04647","0.04864","0.90371" +"GO:0045321","leukocyte activation",21,10,11.5,772,"0.81022","0.90412","0.90412" +"GO:0031668","cellular response to extracellular stimu...",13,4,7.12,1143,"0.97894","0.90508","0.90508" +"GO:0031669","cellular response to nutrient levels",13,4,7.12,1144,"0.97894","0.90508","0.90508" +"GO:0007623","circadian rhythm",16,8,8.76,699,"0.73776","0.90541","0.90541" +"GO:0000226","microtubule cytoskeleton organization",41,19,22.44,957,"0.89344","0.90556","0.90556" +"GO:0048731","system development",240,127,131.37,714,"0.74604","0.90558","0.90558" +"GO:0048878","chemical homeostasis",32,13,17.52,1102,"0.96325","0.90586","0.90586" +"GO:0015980","energy derivation by oxidation of organi...",12,5,6.57,950,"0.88519","0.90684","0.90684" +"GO:0030335","positive regulation of cell migration",15,4,8.21,1185,"0.99342","0.90685","0.90685" +"GO:0045184","establishment of protein localization",167,83,91.41,1025,"0.92332","0.84371","0.90731" +"GO:0042692","muscle cell differentiation",17,7,9.31,1004,"0.91467","0.90784","0.90784" +"GO:0001649","osteoblast differentiation",10,3,5.47,1126,"0.97175","0.90929","0.90929" +"GO:0007498","mesoderm development",10,2,5.47,1199,"0.99534","0.90929","0.90929" +"GO:0043408","regulation of MAPK cascade",22,9,12.04,1046,"0.93598","0.91093","0.91093" +"GO:0098655","cation transmembrane transport",28,12,15.33,1032,"0.92763","0.91148","0.91148" +"GO:0065007","biological regulation",1063,596,581.87,185,"0.14251","0.12761","0.91203" +"GO:0034762","regulation of transmembrane transport",13,6,7.12,828,"0.81669","0.91335","0.91335" +"GO:0016043","cellular component organization",554,320,303.25,118,"0.06037","0.03230","0.91338" +"GO:0001503","ossification",14,4,7.66,1169,"0.98814","0.91386","0.91386" +"GO:0030029","actin filament-based process",57,27,31.2,986,"0.89664","0.91395","0.91395" +"GO:1903533","regulation of protein targeting",11,5,6.02,858,"0.82205","0.91406","0.91406" +"GO:0009260","ribonucleotide biosynthetic process",14,7,7.66,692,"0.73534","0.91423","0.91423" +"GO:0046390","ribose phosphate biosynthetic process",14,7,7.66,693,"0.73534","0.91423","0.91423" +"GO:0009894","regulation of catabolic process",62,25,33.94,1180,"0.99249","0.91436","0.91436" +"GO:0010975","regulation of neuron projection developm...",14,6,7.66,933,"0.87771","0.91446","0.91446" +"GO:0071496","cellular response to external stimulus",14,4,7.66,1170,"0.98814","0.91468","0.91468" +"GO:0043900","regulation of multi-organism process",23,10,12.59,996,"0.90292","0.91518","0.91518" +"GO:0007005","mitochondrion organization",57,23,31.2,1176,"0.99025","0.91729","0.91729" +"GO:0050769","positive regulation of neurogenesis",17,7,9.31,1005,"0.91467","0.91835","0.91835" +"GO:0051962","positive regulation of nervous system de...",17,7,9.31,1006,"0.91467","0.91835","0.91835" +"GO:0006457","protein folding",54,30,29.56,443,"0.50816","0.91914","0.91914" +"GO:0007186","G protein-coupled receptor signaling pat...",23,8,12.59,1156,"0.98403","0.91915","0.91915" +"GO:0045017","glycerolipid biosynthetic process",17,7,9.31,1007,"0.91467","0.91974","0.91974" +"GO:0046907","intracellular transport",195,102,106.74,747,"0.78307","0.81360","0.92065" +"GO:0070727","cellular macromolecule localization",181,95,99.08,722,"0.76049","0.82737","0.92066" +"GO:0051272","positive regulation of cellular componen...",17,4,9.31,1218,"0.99806","0.92086","0.92086" +"GO:2000147","positive regulation of cell motility",17,4,9.31,1219,"0.99806","0.92086","0.92086" +"GO:0051649","establishment of localization in cell",209,107,114.4,921,"0.87323","0.89153","0.92115" +"GO:0051223","regulation of protein transport",32,18,17.52,440,"0.50456","0.92123","0.92123" +"GO:0090087","regulation of peptide transport",32,18,17.52,441,"0.50456","0.92123","0.92123" +"GO:0009152","purine ribonucleotide biosynthetic proce...",13,6,7.12,829,"0.81669","0.92181","0.92181" +"GO:0051235","maintenance of location",13,5,7.12,1033,"0.92800","0.92322","0.92322" +"GO:0032940","secretion by cell",45,19,24.63,1114,"0.96774","0.92442","0.92442" +"GO:0072359","circulatory system development",49,22,26.82,1063,"0.93804","0.92470","0.92470" +"GO:0009056","catabolic process",241,129,131.92,618,"0.67885","0.49940","0.92508" +"GO:0001101","response to acid chemical",17,7,9.31,1008,"0.91467","0.92551","0.92551" +"GO:0033036","macromolecule localization",256,130,140.13,1015,"0.91922","0.78083","0.92559" +"GO:0032101","regulation of response to external stimu...",18,7,9.85,1070,"0.94435","0.92673","0.92673" +"GO:0070588","calcium ion transmembrane transport",11,6,6.02,566,"0.62660","0.92780","0.92780" +"GO:0070201","regulation of establishment of protein l...",33,18,18.06,524,"0.58049","0.92786","0.92786" +"GO:0006650","glycerophospholipid metabolic process",27,11,14.78,1084,"0.95163","0.92823","0.92823" +"GO:0007051","spindle organization",13,5,7.12,1034,"0.92800","0.92982","0.92982" +"GO:0010506","regulation of autophagy",16,4,8.76,1209,"0.99640","0.93034","0.93034" +"GO:1901698","response to nitrogen compound",44,21,24.09,894,"0.86302","0.82898","0.93056" +"GO:0034613","cellular protein localization",178,92,97.43,860,"0.82228","0.86634","0.93074" +"GO:0016482","cytosolic transport",19,9,10.4,780,"0.81045","0.93083","0.93083" +"GO:0043269","regulation of ion transport",15,7,8.21,811,"0.81335","0.93110","0.93110" +"GO:0002790","peptide secretion",18,8,9.85,904,"0.86802","0.93111","0.93111" +"GO:0009306","protein secretion",18,8,9.85,905,"0.86802","0.93111","0.93111" +"GO:0061024","membrane organization",46,18,25.18,1173,"0.98904","0.93224","0.93224" +"GO:0003007","heart morphogenesis",18,3,9.85,1231,"0.99985","0.93236","0.93236" +"GO:0006644","phospholipid metabolic process",43,16,23.54,1187,"0.99346","0.93658","0.93658" +"GO:0072330","monocarboxylic acid biosynthetic process",15,2,8.21,1232,"0.99987","0.93690","0.93690" +"GO:0044248","cellular catabolic process",216,117,118.24,539,"0.59824","0.60889","0.93715" +"GO:0042180","cellular ketone metabolic process",10,3,5.47,1127,"0.97175","0.93815","0.93815" +"GO:0051259","protein complex oligomerization",16,6,8.76,1080,"0.94968","0.93830","0.93830" +"GO:1901652","response to peptide",13,6,7.12,830,"0.81669","0.93992","0.93992" +"GO:0019932","second-messenger-mediated signaling",14,7,7.66,694,"0.73534","0.94087","0.94087" +"GO:0072521","purine-containing compound metabolic pro...",31,13,16.97,1074,"0.94732","0.94147","0.94147" +"GO:1901575","organic substance catabolic process",206,115,112.76,362,"0.40092","0.19359","0.94196" +"GO:0015031","protein transport",157,76,85.94,1092,"0.95732","0.88456","0.94244" +"GO:0015833","peptide transport",157,76,85.94,1093,"0.95732","0.88456","0.94244" +"GO:0042886","amide transport",157,76,85.94,1094,"0.95732","0.88456","0.94244" +"GO:0019439","aromatic compound catabolic process",61,30,33.39,869,"0.84421","0.94341","0.94341" +"GO:0044270","cellular nitrogen compound catabolic pro...",61,30,33.39,870,"0.84421","0.94341","0.94341" +"GO:0046700","heterocycle catabolic process",61,30,33.39,871,"0.84421","0.94341","0.94341" +"GO:0061061","muscle structure development",39,16,21.35,1119,"0.97075","0.94351","0.94351" +"GO:0046903","secretion",52,21,28.46,1168,"0.98734","0.94396","0.94396" +"GO:1902532","negative regulation of intracellular sig...",35,17,19.16,836,"0.81835","0.94436","0.94436" +"GO:0040017","positive regulation of locomotion",22,5,12.04,1225,"0.99952","0.94497","0.94497" +"GO:0006164","purine nucleotide biosynthetic process",14,6,7.66,934,"0.87771","0.94499","0.94499" +"GO:0019637","organophosphate metabolic process",95,40,52,1204,"0.99556","0.94560","0.94560" +"GO:0051186","cofactor metabolic process",38,13,20.8,1212,"0.99683","0.94668","0.94668" +"GO:0009895","negative regulation of catabolic process",20,7,10.95,1140,"0.97773","0.94677","0.94677" +"GO:0008152","metabolic process",1975,1099,1081.09,128,"0.07142","0.19596","0.94731" +"GO:0044283","small molecule biosynthetic process",44,21,24.09,895,"0.86302","0.94742","0.94742" +"GO:0008654","phospholipid biosynthetic process",23,9,12.59,1089,"0.95724","0.94747","0.94747" +"GO:1901361","organic cyclic compound catabolic proces...",62,30,33.94,922,"0.87379","0.94784","0.94784" +"GO:0048568","embryonic organ development",43,17,23.54,1163,"0.98502","0.94801","0.94801" +"GO:0000165","MAPK cascade",26,11,14.23,1040,"0.92996","0.94806","0.94806" +"GO:0023014","signal transduction by protein phosphory...",26,11,14.23,1041,"0.92996","0.94806","0.94806" +"GO:0044262","cellular carbohydrate metabolic process",13,6,7.12,831,"0.81669","0.94942","0.94942" +"GO:0017144","drug metabolic process",58,18,31.75,1234,"0.99993","0.94956","0.94956" +"GO:0044282","small molecule catabolic process",14,5,7.66,1087,"0.95594","0.94956","0.94956" +"GO:0007368","determination of left/right symmetry",13,3,7.12,1205,"0.99570","0.95076","0.95076" +"GO:0009799","specification of symmetry",13,3,7.12,1206,"0.99570","0.95076","0.95076" +"GO:0009855","determination of bilateral symmetry",13,3,7.12,1207,"0.99570","0.95076","0.95076" +"GO:0016192","vesicle-mediated transport",144,56,78.82,1236,"0.99997","0.95089","0.95089" +"GO:0009165","nucleotide biosynthetic process",23,11,12.59,784,"0.81053","0.95243","0.95243" +"GO:1901293","nucleoside phosphate biosynthetic proces...",23,11,12.59,785,"0.81053","0.95243","0.95243" +"GO:1901615","organic hydroxy compound metabolic proce...",18,4,9.85,1222,"0.99896","0.95313","0.95313" +"GO:0006493","protein O-linked glycosylation",12,5,6.57,951,"0.88519","0.95575","0.95575" +"GO:1901700","response to oxygen-containing compound",65,30,35.58,1051,"0.93707","0.95809","0.95809" +"GO:0050789","regulation of biological process",1019,573,557.79,171,"0.12219","0.05796","0.95856" +"GO:0071900","regulation of protein serine/threonine k...",17,8,9.31,794,"0.81141","0.95892","0.95892" +"GO:0051641","cellular localization",267,141,146.15,731,"0.76783","0.91937","0.96080" +"GO:0003143","embryonic heart tube morphogenesis",10,2,5.47,1200,"0.99534","0.96195","0.96195" +"GO:0035050","embryonic heart tube development",10,2,5.47,1201,"0.99534","0.96195","0.96195" +"GO:0060968","regulation of gene silencing",10,2,5.47,1202,"0.99534","0.96195","0.96195" +"GO:0061371","determination of heart left/right asymme...",10,2,5.47,1203,"0.99534","0.96195","0.96195" +"GO:0008104","protein localization",218,110,119.33,1010,"0.91806","0.91942","0.96201" +"GO:0031098","stress-activated protein kinase signalin...",12,5,6.57,952,"0.88519","0.96217","0.96217" +"GO:0072522","purine-containing compound biosynthetic ...",15,7,8.21,812,"0.81335","0.96308","0.96308" +"GO:0055065","metal ion homeostasis",18,10,9.85,517,"0.56917","0.96328","0.96328" +"GO:0051130","positive regulation of cellular componen...",81,42,44.34,700,"0.74043","0.96333","0.96333" +"GO:0016054","organic acid catabolic process",10,4,5.47,979,"0.89535","0.96376","0.96376" +"GO:0046395","carboxylic acid catabolic process",10,4,5.47,980,"0.89535","0.96376","0.96376" +"GO:0008284","positive regulation of cell proliferatio...",23,11,12.59,786,"0.81053","0.96453","0.96453" +"GO:0043170","macromolecule metabolic process",1603,934,877.46,11,"7.6e-06","3.8e-05","0.96487" +"GO:0051403","stress-activated MAPK cascade",11,4,6.02,1060,"0.93724","0.96528","0.96528" +"GO:0046486","glycerolipid metabolic process",30,11,16.42,1164,"0.98555","0.96577","0.96577" +"GO:0006487","protein N-linked glycosylation",14,6,7.66,935,"0.87771","0.96620","0.96620" +"GO:0098660","inorganic ion transmembrane transport",22,9,12.04,1047,"0.93598","0.96716","0.96716" +"GO:0098662","inorganic cation transmembrane transport",22,9,12.04,1048,"0.93598","0.96716","0.96716" +"GO:0051188","cofactor biosynthetic process",23,9,12.59,1090,"0.95724","0.96755","0.96755" +"GO:0007507","heart development",36,14,19.71,1149,"0.98169","0.96756","0.96756" +"GO:1990778","protein localization to cell periphery",11,4,6.02,1061,"0.93724","0.96829","0.96829" +"GO:0044237","cellular metabolic process",1709,955,935.49,125,"0.06802","0.29358","0.96860" +"GO:0033554","cellular response to stress",204,127,111.67,70,"0.01471","0.00205","0.97068" +"GO:0072659","protein localization to plasma membrane",10,3,5.47,1128,"0.97175","0.97114","0.97114" +"GO:0006732","coenzyme metabolic process",20,6,10.95,1184,"0.99329","0.97176","0.97176" +"GO:0051222","positive regulation of protein transport",18,9,9.85,709,"0.74065","0.97178","0.97178" +"GO:1904951","positive regulation of establishment of ...",18,9,9.85,710,"0.74065","0.97178","0.97178" +"GO:0030036","actin cytoskeleton organization",55,26,30.11,985,"0.89599","0.97386","0.97386" +"GO:0071705","nitrogen compound transport",179,90,97.98,997,"0.90587","0.96176","0.97438" +"GO:0090407","organophosphate biosynthetic process",48,20,26.27,1135,"0.97606","0.97464","0.97464" +"GO:0051604","protein maturation",22,8,12.04,1131,"0.97471","0.97522","0.97522" +"GO:0055080","cation homeostasis",21,10,11.5,773,"0.81022","0.97553","0.97553" +"GO:0098771","inorganic ion homeostasis",21,10,11.5,774,"0.81022","0.97553","0.97553" +"GO:0005975","carbohydrate metabolic process",51,21,27.92,1153,"0.98224","0.97712","0.97712" +"GO:0009108","coenzyme biosynthetic process",16,5,8.76,1160,"0.98448","0.97737","0.97737" +"GO:0033674","positive regulation of kinase activity",14,6,7.66,936,"0.87771","0.97801","0.97801" +"GO:0045860","positive regulation of protein kinase ac...",14,6,7.66,937,"0.87771","0.97801","0.97801" +"GO:0051146","striated muscle cell differentiation",14,6,7.66,938,"0.87771","0.97825","0.97825" +"GO:0006486","protein glycosylation",39,16,21.35,1120,"0.97075","0.97835","0.97835" +"GO:0043413","macromolecule glycosylation",39,16,21.35,1121,"0.97075","0.97835","0.97835" +"GO:0070085","glycosylation",39,16,21.35,1122,"0.97075","0.97835","0.97835" +"GO:0051046","regulation of secretion",13,6,7.12,832,"0.81669","0.97957","0.97957" +"GO:0016042","lipid catabolic process",19,6,10.4,1172,"0.98862","0.97989","0.97989" +"GO:0071702","organic substance transport",206,103,112.76,1042,"0.93204","0.93051","0.98011" +"GO:0016197","endosomal transport",21,8,11.5,1097,"0.96063","0.98022","0.98022" +"GO:0009101","glycoprotein biosynthetic process",42,17,22.99,1141,"0.97855","0.98149","0.98149" +"GO:0007010","cytoskeleton organization",101,47,55.29,1100,"0.96293","0.98156","0.98156" +"GO:0001932","regulation of protein phosphorylation",56,26,30.65,1012,"0.91861","0.98198","0.98198" +"GO:0030258","lipid modification",12,3,6.57,1179,"0.99183","0.98208","0.98208" +"GO:0006996","organelle organization",408,240,223.33,95,"0.04058","0.01999","0.98238" +"GO:1901137","carbohydrate derivative biosynthetic pro...",74,33,40.51,1118,"0.97072","0.98239","0.98239" +"GO:0001933","negative regulation of protein phosphory...",17,7,9.31,1009,"0.91467","0.98265","0.98265" +"GO:1903530","regulation of secretion by cell",11,5,6.02,859,"0.82205","0.98270","0.98270" +"GO:0016051","carbohydrate biosynthetic process",10,5,5.47,671,"0.73321","0.98304","0.98304" +"GO:0042326","negative regulation of phosphorylation",23,9,12.59,1091,"0.95724","0.98406","0.98406" +"GO:0006733","oxidoreduction coenzyme metabolic proces...",11,1,6.02,1228,"0.99984","0.98442","0.98442" +"GO:0009100","glycoprotein metabolic process",46,17,25.18,1197,"0.99524","0.98495","0.98495" +"GO:0044255","cellular lipid metabolic process",82,23,44.89,1238,"1.00000","0.98510","0.98510" +"GO:0001505","regulation of neurotransmitter levels",17,8,9.31,795,"0.81141","0.98517","0.98517" +"GO:0009896","positive regulation of catabolic process",24,11,13.14,887,"0.86119","0.98524","0.98524" +"GO:0016485","protein processing",13,5,7.12,1035,"0.92800","0.98533","0.98533" +"GO:0006091","generation of precursor metabolites and ...",18,6,9.85,1147,"0.98099","0.98637","0.98637" +"GO:0044242","cellular lipid catabolic process",14,5,7.66,1088,"0.95594","0.98693","0.98693" +"GO:0043434","response to peptide hormone",12,5,6.57,953,"0.88519","0.98726","0.98726" +"GO:0009987","cellular process",2260,1242,1237.1,321,"0.33257","0.42996","0.98742" +"GO:0031929","TOR signaling",13,5,7.12,1036,"0.92800","0.98786","0.98786" +"GO:0071704","organic substance metabolic process",1816,1023,994.06,61,"0.01131","0.05863","0.98817" +"GO:0006873","cellular ion homeostasis",16,7,8.76,919,"0.87215","0.98852","0.98852" +"GO:0030003","cellular cation homeostasis",16,7,8.76,920,"0.87215","0.98852","0.98852" +"GO:0008610","lipid biosynthetic process",50,15,27.37,1233,"0.99990","0.98856","0.98856" +"GO:0042147","retrograde transport, endosome to Golgi",12,4,6.57,1109,"0.96327","0.98907","0.98907" +"GO:0043549","regulation of kinase activity",32,15,17.52,879,"0.85927","0.98975","0.98975" +"GO:0048732","gland development",17,6,9.31,1117,"0.96878","0.99023","0.99023" +"GO:0006807","nitrogen compound metabolic process",1694,980,927.27,15,"2.2e-05","0.00010","0.99067" +"GO:0045859","regulation of protein kinase activity",29,14,15.87,814,"0.81356","0.99072","0.99072" +"GO:0051240","positive regulation of multicellular org...",53,23,29.01,1110,"0.96492","0.99082","0.99082" +"GO:0006631","fatty acid metabolic process",17,4,9.31,1220,"0.99806","0.99211","0.99211" +"GO:1901135","carbohydrate derivative metabolic proces...",124,49,67.88,1227,"0.99982","0.99315","0.99315" +"GO:0006082","organic acid metabolic process",78,31,42.7,1213,"0.99752","0.99505","0.99505" +"GO:0043436","oxoacid metabolic process",78,31,42.7,1214,"0.99752","0.99505","0.99505" +"GO:0044281","small molecule metabolic process",160,68,87.58,1224,"0.99948","0.99532","0.99532" +"GO:0019752","carboxylic acid metabolic process",77,31,42.15,1210,"0.99654","0.99541","0.99541" +"GO:0140053","mitochondrial gene expression",15,4,8.21,1186,"0.99342","0.99574","0.99574" +"GO:0051348","negative regulation of transferase activ...",13,4,7.12,1145,"0.97894","0.99585","0.99585" +"GO:0032543","mitochondrial translation",14,4,7.66,1171,"0.98814","0.99603","0.99603" +"GO:0043062","extracellular structure organization",19,9,10.4,781,"0.81045","0.99665","0.99665" +"GO:0033673","negative regulation of kinase activity",10,4,5.47,981,"0.89535","0.99681","0.99681" +"GO:0030198","extracellular matrix organization",18,9,9.85,711,"0.74065","0.99682","0.99682" +"GO:0006875","cellular metal ion homeostasis",14,7,7.66,695,"0.73534","0.99718","0.99718" +"GO:0006629","lipid metabolic process",108,37,59.12,1237,"1.00000","0.99784","0.99784" +"GO:0055082","cellular chemical homeostasis",18,7,9.85,1071,"0.94435","0.99793","0.99793" +"GO:0070838","divalent metal ion transport",17,8,9.31,796,"0.81141","0.99804","0.99804" +"GO:0072511","divalent inorganic cation transport",17,8,9.31,797,"0.81141","0.99804","0.99804" +"GO:0044238","primary metabolic process",1748,996,956.83,44,"0.00113","0.00570","0.99908" +"GO:0016053","organic acid biosynthetic process",22,8,12.04,1132,"0.97471","0.99927","0.99927" +"GO:0046394","carboxylic acid biosynthetic process",22,8,12.04,1133,"0.97471","0.99927","0.99927" +"GO:0048562","embryonic organ morphogenesis",24,8,13.14,1175,"0.99007","0.99960","0.99960" +"GO:0032787","monocarboxylic acid metabolic process",24,6,13.14,1223,"0.99929","0.99969","0.99969" +"GO:0001501","skeletal system development",17,4,9.31,1221,"0.99806","0.99972","0.99972" +"GO:0048705","skeletal system morphogenesis",11,1,6.02,1229,"0.99984","0.99982","0.99982" +"GO:0034641","cellular nitrogen compound metabolic pro...",1111,659,608.15,17,"4.3e-05","0.00018","0.99991" +"GO:0006412","translation",169,58,92.51,1243,"1.00000","1.00000","1.00000" +"GO:0006518","peptide metabolic process",186,67,101.81,1240,"1.00000","1.00000","1.00000" +"GO:0008150","biological_process",2775,1519,1519,1245,"1.00000","1.00000","1.00000" +"GO:0009058","biosynthetic process",869,470,475.68,628,"0.69445","0.99953","1.00000" +"GO:0009059","macromolecule biosynthetic process",750,422,410.54,201,"0.17333","0.50760","1.00000" +"GO:0010467","gene expression",898,516,491.55,77,"0.02538","0.01997","1.00000" +"GO:0019538","protein metabolic process",829,444,453.78,758,"0.80429","0.84863","1.00000" +"GO:0019941","modification-dependent protein catabolic...",83,60,45.43,42,"0.00066","0.00015","1.00000" +"GO:0034645","cellular macromolecule biosynthetic proc...",745,418,407.8,230,"0.20207","0.52364","1.00000" +"GO:0043043","peptide biosynthetic process",170,59,93.06,1241,"1.00000","1.00000","1.00000" +"GO:0043603","cellular amide metabolic process",196,70,107.29,1244,"1.00000","1.00000","1.00000" +"GO:0043604","amide biosynthetic process",173,60,94.7,1242,"1.00000","1.00000","1.00000" +"GO:0044249","cellular biosynthetic process",842,459,460.9,522,"0.57910","0.99947","1.00000" +"GO:0044260","cellular macromolecule metabolic process",1261,725,690.26,51,"0.00434","0.01037","1.00000" +"GO:0044267","cellular protein metabolic process",722,387,395.21,741,"0.77569","0.72899","1.00000" +"GO:0044271","cellular nitrogen compound biosynthetic ...",683,375,373.87,407,"0.47789","0.66554","1.00000" +"GO:0044839","cell cycle G2/M phase transition",13,10,7.12,144,"0.08931","0.00130","1.00000" +"GO:1901564","organonitrogen compound metabolic proces...",941,492,515.09,1123,"0.97126","0.90081","1.00000" +"GO:1901566","organonitrogen compound biosynthetic pro...",282,113,154.36,1239,"1.00000","1.00000","1.00000" +"GO:1901576","organic substance biosynthetic process",852,464,466.37,534,"0.59410","0.99950","1.00000" diff --git a/GO_enrichment_output/contrast_laying_nonlaying_upregulated.csv b/GO_enrichment_output/contrast_laying_nonlaying_upregulated.csv index ec67e21..558c272 100644 --- a/GO_enrichment_output/contrast_laying_nonlaying_upregulated.csv +++ b/GO_enrichment_output/contrast_laying_nonlaying_upregulated.csv @@ -1,6 +1,2800 @@ "GO.ID","Term","Annotated","Significant","Expected","Rank in classicFisher","classicFisher","classicKS","elimKS" "GO:0055114","oxidation-reduction process",183,126,97.81,2,"7.4e-06","1.1e-09","1.1e-09" "GO:0055085","transmembrane transport",297,199,158.74,1,"2.8e-07","2.8e-06","0.00036" -"GO:0034220","ion transmembrane transport",115,80,61.46,4,"0.00023","0.0016","0.00092" -"GO:0045214","sarcomere organization",11,10,5.88,23,"0.01062","0.0010","0.00101" -"GO:0003300","cardiac muscle hypertrophy",7,7,3.74,26,"0.01236","0.0012","0.00125" +"GO:0034220","ion transmembrane transport",115,80,61.46,4,"0.00023","0.00159","0.00092" +"GO:0045214","sarcomere organization",11,10,5.88,23,"0.01062","0.00101","0.00101" +"GO:0003300","cardiac muscle hypertrophy",7,7,3.74,26,"0.01236","0.00125","0.00125" +"GO:0035995","detection of muscle stretch",6,6,3.21,47,"0.02318","0.00342","0.00342" +"GO:0055003","cardiac myofibril assembly",6,6,3.21,48,"0.02318","0.00342","0.00342" +"GO:0090175","regulation of establishment of planar po...",6,6,3.21,49,"0.02318","0.00342","0.00342" +"GO:1903919","negative regulation of actin filament se...",6,6,3.21,50,"0.02318","0.00342","0.00342" +"GO:1903920","positive regulation of actin filament se...",6,6,3.21,51,"0.02318","0.00342","0.00342" +"GO:0070527","platelet aggregation",8,8,4.28,12,"0.00659","0.00343","0.00343" +"GO:0006469","negative regulation of protein kinase ac...",14,10,7.48,169,"0.13879","0.00354","0.00354" +"GO:0002026","regulation of the force of heart contrac...",8,8,4.28,13,"0.00659","0.00407","0.00407" +"GO:0006446","regulation of translational initiation",4,4,2.14,94,"0.08142","0.00412","0.00412" +"GO:0032787","monocarboxylic acid metabolic process",45,29,24.05,127,"0.08897","0.00473","0.00473" +"GO:0098655","cation transmembrane transport",73,48,39.02,46,"0.02080","0.00485","0.00485" +"GO:0009108","coenzyme biosynthetic process",37,25,19.78,84,"0.05702","0.00498","0.00498" +"GO:0006874","cellular calcium ion homeostasis",20,17,10.69,5,"0.00321","0.00523","0.00523" +"GO:0006720","isoprenoid metabolic process",21,13,11.22,373,"0.28925","0.00683","0.00683" +"GO:0001974","blood vessel remodeling",8,7,4.28,76,"0.05277","0.00796","0.00796" +"GO:0001895","retina homeostasis",9,6,4.81,388,"0.32587","0.00890","0.00890" +"GO:0098660","inorganic ion transmembrane transport",62,42,33.14,34,"0.01466","0.01093","0.01093" +"GO:0017144","drug metabolic process",111,72,59.33,19,"0.00840","0.01240","0.01240" +"GO:0060048","cardiac muscle contraction",11,8,5.88,258,"0.16344","0.01312","0.01312" +"GO:0098662","inorganic cation transmembrane transport",60,41,32.07,33,"0.01273","0.01334","0.01334" +"GO:0072525","pyridine-containing compound biosyntheti...",17,13,9.09,68,"0.04535","0.01350","0.01350" +"GO:0044272","sulfur compound biosynthetic process",14,11,7.48,72,"0.04960","0.01365","0.01365" +"GO:0007291","sperm individualization",3,3,1.6,193,"0.15251","0.01377","0.01377" +"GO:0016319","mushroom body development",3,3,1.6,194,"0.15251","0.01377","0.01377" +"GO:0035902","response to immobilization stress",3,3,1.6,195,"0.15251","0.01377","0.01377" +"GO:0043044","ATP-dependent chromatin remodeling",3,3,1.6,196,"0.15251","0.01377","0.01377" +"GO:0098974","postsynaptic actin cytoskeleton organiza...",3,3,1.6,197,"0.15251","0.01377","0.01377" +"GO:0099188","postsynaptic cytoskeleton organization",3,3,1.6,198,"0.15251","0.01377","0.01377" +"GO:0010831","positive regulation of myotube different...",7,6,3.74,121,"0.08810","0.01433","0.01433" +"GO:0045662","negative regulation of myoblast differen...",7,6,3.74,122,"0.08810","0.01433","0.01433" +"GO:0045663","positive regulation of myoblast differen...",7,7,3.74,27,"0.01236","0.01433","0.01433" +"GO:0007218","neuropeptide signaling pathway",3,3,1.6,199,"0.15251","0.01495","0.01495" +"GO:0010998","regulation of translational initiation b...",3,3,1.6,200,"0.15251","0.01629","0.01629" +"GO:0043555","regulation of translation in response to...",3,3,1.6,201,"0.15251","0.01629","0.01629" +"GO:0043558","regulation of translational initiation i...",3,3,1.6,202,"0.15251","0.01629","0.01629" +"GO:0072524","pyridine-containing compound metabolic p...",23,17,12.29,64,"0.03655","0.01690","0.01690" +"GO:0019395","fatty acid oxidation",9,7,4.81,158,"0.12819","0.01804","0.01804" +"GO:0034440","lipid oxidation",9,7,4.81,159,"0.12819","0.01804","0.01804" +"GO:0032507","maintenance of protein location in cell",7,7,3.74,28,"0.01236","0.01846","0.01846" +"GO:0051651","maintenance of location in cell",7,7,3.74,29,"0.01236","0.01846","0.01846" +"GO:0007186","G protein-coupled receptor signaling pat...",101,60,53.98,163,"0.13005","0.01968","0.01968" +"GO:0006790","sulfur compound metabolic process",31,22,16.57,62,"0.03533","0.01978","0.01978" +"GO:0048489","synaptic vesicle transport",10,8,5.34,111,"0.08296","0.02116","0.02116" +"GO:0097480","establishment of synaptic vesicle locali...",10,8,5.34,112,"0.08296","0.02116","0.02116" +"GO:0008016","regulation of heart contraction",15,13,8.02,18,"0.00762","0.00015","0.02159" +"GO:0035994","response to muscle stretch",8,8,4.28,14,"0.00659","0.00030","0.02416" +"GO:0006631","fatty acid metabolic process",26,17,13.9,190,"0.15157","0.02427","0.02427" +"GO:0051693","actin filament capping",4,4,2.14,95,"0.08142","0.02434","0.02434" +"GO:0046434","organophosphate catabolic process",22,14,11.76,300,"0.22836","0.02480","0.02480" +"GO:0006941","striated muscle contraction",12,8,6.41,339,"0.26668","0.02561","0.02561" +"GO:0006090","pyruvate metabolic process",13,9,6.95,281,"0.19448","0.02632","0.02632" +"GO:0019362","pyridine nucleotide metabolic process",20,14,10.69,136,"0.10179","0.02891","0.02891" +"GO:0046496","nicotinamide nucleotide metabolic proces...",20,14,10.69,137,"0.10179","0.02891","0.02891" +"GO:0019359","nicotinamide nucleotide biosynthetic pro...",14,10,7.48,170,"0.13879","0.03150","0.03150" +"GO:0019363","pyridine nucleotide biosynthetic process",14,10,7.48,171,"0.13879","0.03150","0.03150" +"GO:0010830","regulation of myotube differentiation",8,6,4.28,271,"0.19408","0.03320","0.03320" +"GO:0051149","positive regulation of muscle cell diffe...",8,6,4.28,272,"0.19408","0.03320","0.03320" +"GO:0051155","positive regulation of striated muscle c...",8,6,4.28,273,"0.19408","0.03320","0.03320" +"GO:0006777","Mo-molybdopterin cofactor biosynthetic p...",3,3,1.6,203,"0.15251","0.03345","0.03345" +"GO:0019720","Mo-molybdopterin cofactor metabolic proc...",3,3,1.6,204,"0.15251","0.03345","0.03345" +"GO:0043545","molybdopterin cofactor metabolic process",3,3,1.6,205,"0.15251","0.03345","0.03345" +"GO:0051189","prosthetic group metabolic process",3,3,1.6,206,"0.15251","0.03345","0.03345" +"GO:0072593","reactive oxygen species metabolic proces...",11,7,5.88,423,"0.35677","0.03366","0.03366" +"GO:0006936","muscle contraction",21,14,11.22,254,"0.15867","0.03388","0.03388" +"GO:0006022","aminoglycan metabolic process",24,15,12.83,334,"0.24696","0.03418","0.03418" +"GO:0006637","acyl-CoA metabolic process",10,8,5.34,113,"0.08296","0.03726","0.03726" +"GO:0035383","thioester metabolic process",10,8,5.34,114,"0.08296","0.03726","0.03726" +"GO:1901071","glucosamine-containing compound metaboli...",24,14,12.83,512,"0.39305","0.03863","0.03863" +"GO:0006096","glycolytic process",9,6,4.81,389,"0.32587","0.03867","0.03867" +"GO:0006757","ATP generation from ADP",9,6,4.81,390,"0.32587","0.03867","0.03867" +"GO:0009135","purine nucleoside diphosphate metabolic ...",9,6,4.81,391,"0.32587","0.03867","0.03867" +"GO:0009179","purine ribonucleoside diphosphate metabo...",9,6,4.81,392,"0.32587","0.03867","0.03867" +"GO:0009185","ribonucleoside diphosphate metabolic pro...",9,6,4.81,393,"0.32587","0.03867","0.03867" +"GO:0042866","pyruvate biosynthetic process",9,6,4.81,394,"0.32587","0.03867","0.03867" +"GO:0046031","ADP metabolic process",9,6,4.81,395,"0.32587","0.03867","0.03867" +"GO:0060341","regulation of cellular localization",40,23,21.38,433,"0.36144","0.04328","0.04328" +"GO:0009642","response to light intensity",6,4,3.21,526,"0.41027","0.04333","0.04333" +"GO:0031589","cell-substrate adhesion",11,8,5.88,259,"0.16344","0.04499","0.04499" +"GO:0001523","retinoid metabolic process",10,6,5.34,584,"0.46405","0.04499","0.04499" +"GO:0006721","terpenoid metabolic process",10,6,5.34,585,"0.46405","0.04499","0.04499" +"GO:0016101","diterpenoid metabolic process",10,6,5.34,586,"0.46405","0.04499","0.04499" +"GO:0007031","peroxisome organization",6,5,3.21,180,"0.14481","0.04635","0.04635" +"GO:0006030","chitin metabolic process",22,13,11.76,503,"0.37720","0.04653","0.04653" +"GO:0016052","carbohydrate catabolic process",14,9,7.48,376,"0.29472","0.04738","0.04738" +"GO:0015988","energy coupled proton transmembrane tran...",15,12,8.02,55,"0.03230","0.04754","0.04754" +"GO:0015991","ATP hydrolysis coupled proton transport",15,12,8.02,56,"0.03230","0.04754","0.04754" +"GO:0090662","ATP hydrolysis coupled transmembrane tra...",15,12,8.02,57,"0.03230","0.04754","0.04754" +"GO:0099131","ATP hydrolysis coupled ion transmembrane...",15,12,8.02,58,"0.03230","0.04754","0.04754" +"GO:0099132","ATP hydrolysis coupled cation transmembr...",15,12,8.02,59,"0.03230","0.04754","0.04754" +"GO:0097191","extrinsic apoptotic signaling pathway",11,9,5.88,79,"0.05277","0.04858","0.04858" +"GO:0003015","heart process",16,13,8.55,43,"0.02077","0.00039","0.04905" +"GO:0060047","heart contraction",16,13,8.55,44,"0.02077","0.00039","0.04905" +"GO:1903522","regulation of blood circulation",16,13,8.55,45,"0.02077","0.00039","0.04905" +"GO:0006081","cellular aldehyde metabolic process",14,10,7.48,172,"0.13879","0.05030","0.05030" +"GO:0006091","generation of precursor metabolites and ...",46,31,24.59,65,"0.03757","0.05496","0.05496" +"GO:0034762","regulation of transmembrane transport",26,17,13.9,191,"0.15157","0.05547","0.05547" +"GO:0030431","sleep",5,5,2.67,66,"0.04345","0.05790","0.05790" +"GO:0006040","amino sugar metabolic process",25,14,13.36,604,"0.47971","0.05801","0.05801" +"GO:0002118","aggressive behavior",4,3,2.14,434,"0.36577","0.05886","0.05886" +"GO:0002121","inter-male aggressive behavior",4,3,2.14,435,"0.36577","0.05886","0.05886" +"GO:0021762","substantia nigra development",4,4,2.14,96,"0.08142","0.05886","0.05886" +"GO:0030901","midbrain development",4,4,2.14,97,"0.08142","0.05886","0.05886" +"GO:0048857","neural nucleus development",4,4,2.14,98,"0.08142","0.05886","0.05886" +"GO:0071257","cellular response to electrical stimulus",4,3,2.14,436,"0.36577","0.05886","0.05886" +"GO:1904030","negative regulation of cyclin-dependent ...",4,3,2.14,437,"0.36577","0.05886","0.05886" +"GO:0051050","positive regulation of transport",49,28,26.19,422,"0.35343","0.06063","0.06063" +"GO:0099173","postsynapse organization",12,9,6.41,144,"0.11182","0.06092","0.06092" +"GO:0006733","oxidoreduction coenzyme metabolic proces...",22,15,11.76,153,"0.11885","0.06104","0.06104" +"GO:0014902","myotube differentiation",12,8,6.41,340,"0.26668","0.06613","0.06613" +"GO:0010035","response to inorganic substance",30,17,16.03,553,"0.43367","0.06633","0.06633" +"GO:0042445","hormone metabolic process",16,11,8.55,260,"0.16380","0.06740","0.06740" +"GO:0000271","polysaccharide biosynthetic process",8,6,4.28,274,"0.19408","0.06808","0.06808" +"GO:0005976","polysaccharide metabolic process",8,6,4.28,275,"0.19408","0.06808","0.06808" +"GO:0043266","regulation of potassium ion transport",3,3,1.6,207,"0.15251","0.06822","0.06822" +"GO:1901016","regulation of potassium ion transmembran...",3,3,1.6,208,"0.15251","0.06822","0.06822" +"GO:1901379","regulation of potassium ion transmembran...",3,3,1.6,209,"0.15251","0.06822","0.06822" +"GO:0006101","citrate metabolic process",14,11,7.48,73,"0.04960","0.07252","0.07252" +"GO:0019693","ribose phosphate metabolic process",76,45,40.62,268,"0.18234","0.07286","0.07286" +"GO:1903825","organic acid transmembrane transport",17,11,9.09,331,"0.24670","0.07459","0.07459" +"GO:1905039","carboxylic acid transmembrane transport",17,11,9.09,332,"0.24670","0.07459","0.07459" +"GO:0006816","calcium ion transport",25,19,13.36,35,"0.01736","0.07649","0.07649" +"GO:0006165","nucleoside diphosphate phosphorylation",10,6,5.34,587,"0.46405","0.07664","0.07664" +"GO:0046939","nucleotide phosphorylation",10,6,5.34,588,"0.46405","0.07664","0.07664" +"GO:0009150","purine ribonucleotide metabolic process",70,42,37.41,257,"0.16006","0.07710","0.07710" +"GO:0009166","nucleotide catabolic process",15,10,8.02,290,"0.22203","0.07764","0.07764" +"GO:1901292","nucleoside phosphate catabolic process",15,10,8.02,291,"0.22203","0.07764","0.07764" +"GO:0097479","synaptic vesicle localization",13,9,6.95,282,"0.19448","0.08076","0.08076" +"GO:0015672","monovalent inorganic cation transport",67,44,35.81,52,"0.02714","0.08730","0.08730" +"GO:0006753","nucleoside phosphate metabolic process",98,60,52.38,90,"0.06979","0.08754","0.08754" +"GO:0051899","membrane depolarization",4,3,2.14,438,"0.36577","0.08755","0.08755" +"GO:0009062","fatty acid catabolic process",7,4,3.74,887,"0.57515","0.08850","0.08850" +"GO:0006811","ion transport",215,143,114.91,3,"3.2e-05","0.00031","0.08971" +"GO:0045921","positive regulation of exocytosis",3,3,1.6,210,"0.15251","0.09225","0.09225" +"GO:0070936","protein K48-linked ubiquitination",4,4,2.14,99,"0.08142","0.09447","0.09447" +"GO:0009644","response to high light intensity",3,2,1.6,639,"0.55165","0.09498","0.09498" +"GO:0010842","retina layer formation",3,2,1.6,640,"0.55165","0.09498","0.09498" +"GO:0016062","adaptation of rhodopsin mediated signali...",3,2,1.6,641,"0.55165","0.09498","0.09498" +"GO:0023058","adaptation of signaling pathway",3,2,1.6,642,"0.55165","0.09498","0.09498" +"GO:0036367","light adaption",3,2,1.6,643,"0.55165","0.09498","0.09498" +"GO:2001238","positive regulation of extrinsic apoptot...",3,2,1.6,644,"0.55165","0.09498","0.09498" +"GO:0009083","branched-chain amino acid catabolic proc...",3,3,1.6,211,"0.15251","0.09610","0.09610" +"GO:0009117","nucleotide metabolic process",97,59,51.84,110,"0.08273","0.09672","0.09672" +"GO:0006163","purine nucleotide metabolic process",73,44,39.02,176,"0.14246","0.09762","0.09762" +"GO:0007016","cytoskeletal anchoring at plasma membran...",3,3,1.6,212,"0.15251","0.09797","0.09797" +"GO:0006084","acetyl-CoA metabolic process",6,5,3.21,181,"0.14481","0.09941","0.09941" +"GO:0006885","regulation of pH",6,5,3.21,182,"0.14481","0.09941","0.09941" +"GO:0055067","monovalent inorganic cation homeostasis",6,5,3.21,183,"0.14481","0.09941","0.09941" +"GO:0098656","anion transmembrane transport",21,12,11.22,581,"0.45390","0.09962","0.09962" +"GO:0009435","NAD biosynthetic process",4,4,2.14,100,"0.08142","0.10172","0.10172" +"GO:0015858","nucleoside transport",3,3,1.6,213,"0.15251","0.10179","0.10179" +"GO:1901642","nucleoside transmembrane transport",3,3,1.6,214,"0.15251","0.10179","0.10179" +"GO:0043648","dicarboxylic acid metabolic process",10,7,5.34,318,"0.23374","0.10270","0.10270" +"GO:0009152","purine ribonucleotide biosynthetic proce...",43,27,22.98,168,"0.13866","0.10301","0.10301" +"GO:0030001","metal ion transport",81,52,43.29,54,"0.03064","0.10325","0.10325" +"GO:0051147","regulation of muscle cell differentiatio...",10,6,5.34,589,"0.46405","0.10419","0.10419" +"GO:0051153","regulation of striated muscle cell diffe...",10,6,5.34,590,"0.46405","0.10419","0.10419" +"GO:0046323","glucose import",3,3,1.6,215,"0.15251","0.10473","0.10473" +"GO:0046324","regulation of glucose import",3,3,1.6,216,"0.15251","0.10473","0.10473" +"GO:0030509","BMP signaling pathway",5,5,2.67,67,"0.04345","0.10514","0.10514" +"GO:0009584","detection of visible light",7,4,3.74,888,"0.57515","0.10816","0.10816" +"GO:0044057","regulation of system process",29,22,15.5,24,"0.01089","0.00338","0.10974" +"GO:0005975","carbohydrate metabolic process",85,51,45.43,164,"0.13053","0.11033","0.11033" +"GO:0046503","glycerolipid catabolic process",8,5,4.28,562,"0.44079","0.11100","0.11100" +"GO:0051090","regulation of DNA-binding transcription ...",15,12,8.02,60,"0.03230","0.11103","0.11103" +"GO:0010565","regulation of cellular ketone metabolic ...",3,3,1.6,217,"0.15251","0.11115","0.11115" +"GO:0019217","regulation of fatty acid metabolic proce...",3,3,1.6,218,"0.15251","0.11115","0.11115" +"GO:0042304","regulation of fatty acid biosynthetic pr...",3,3,1.6,219,"0.15251","0.11115","0.11115" +"GO:0046320","regulation of fatty acid oxidation",3,3,1.6,220,"0.15251","0.11115","0.11115" +"GO:1905475","regulation of protein localization to me...",6,3,3.21,1054,"0.71872","0.11154","0.11154" +"GO:0080135","regulation of cellular response to stres...",32,10,17.1,2468,"0.99686","0.11184","0.11184" +"GO:0006099","tricarboxylic acid cycle",13,10,6.95,91,"0.07508","0.11311","0.11311" +"GO:0017157","regulation of exocytosis",6,5,3.21,184,"0.14481","0.11327","0.11327" +"GO:1901135","carbohydrate derivative metabolic proces...",184,101,98.34,501,"0.37046","0.11470","0.11470" +"GO:0061041","regulation of wound healing",4,3,2.14,439,"0.36577","0.11492","0.11492" +"GO:0050804","modulation of chemical synaptic transmis...",25,17,13.36,138,"0.10200","0.11565","0.11565" +"GO:0099177","regulation of trans-synaptic signaling",25,17,13.36,139,"0.10200","0.11565","0.11565" +"GO:0009259","ribonucleotide metabolic process",71,42,37.95,286,"0.19563","0.11809","0.11809" +"GO:0008625","extrinsic apoptotic signaling pathway vi...",5,4,2.67,302,"0.23330","0.11907","0.11907" +"GO:0015698","inorganic anion transport",12,7,6.41,606,"0.48290","0.11987","0.11987" +"GO:0009612","response to mechanical stimulus",18,14,9.62,53,"0.03033","0.00230","0.12145" +"GO:0032228","regulation of synaptic transmission, GAB...",3,3,1.6,221,"0.15251","0.12302","0.12302" +"GO:0051932","synaptic transmission, GABAergic",3,3,1.6,222,"0.15251","0.12302","0.12302" +"GO:0006541","glutamine metabolic process",3,2,1.6,645,"0.55165","0.12390","0.12390" +"GO:0034765","regulation of ion transmembrane transpor...",21,14,11.22,255,"0.15867","0.12522","0.12522" +"GO:0005977","glycogen metabolic process",7,5,3.74,347,"0.28660","0.12540","0.12540" +"GO:0005978","glycogen biosynthetic process",7,5,3.74,348,"0.28660","0.12540","0.12540" +"GO:0006073","cellular glucan metabolic process",7,5,3.74,349,"0.28660","0.12540","0.12540" +"GO:0006112","energy reserve metabolic process",7,5,3.74,350,"0.28660","0.12540","0.12540" +"GO:0009250","glucan biosynthetic process",7,5,3.74,351,"0.28660","0.12540","0.12540" +"GO:0033692","cellular polysaccharide biosynthetic pro...",7,5,3.74,352,"0.28660","0.12540","0.12540" +"GO:0034637","cellular carbohydrate biosynthetic proce...",7,5,3.74,353,"0.28660","0.12540","0.12540" +"GO:0044042","glucan metabolic process",7,5,3.74,354,"0.28660","0.12540","0.12540" +"GO:0044264","cellular polysaccharide metabolic proces...",7,5,3.74,355,"0.28660","0.12540","0.12540" +"GO:0009110","vitamin biosynthetic process",3,2,1.6,646,"0.55165","0.12541","0.12541" +"GO:0042364","water-soluble vitamin biosynthetic proce...",3,2,1.6,647,"0.55165","0.12541","0.12541" +"GO:0034754","cellular hormone metabolic process",9,6,4.81,396,"0.32587","0.12595","0.12595" +"GO:0035249","synaptic transmission, glutamatergic",3,3,1.6,223,"0.15251","0.12604","0.12604" +"GO:0051966","regulation of synaptic transmission, glu...",3,3,1.6,224,"0.15251","0.12604","0.12604" +"GO:0051968","positive regulation of synaptic transmis...",3,3,1.6,225,"0.15251","0.12604","0.12604" +"GO:0008299","isoprenoid biosynthetic process",9,6,4.81,397,"0.32587","0.12787","0.12787" +"GO:0071804","cellular potassium ion transport",12,7,6.41,607,"0.48290","0.12926","0.12926" +"GO:0071805","potassium ion transmembrane transport",12,7,6.41,608,"0.48290","0.12926","0.12926" +"GO:0010959","regulation of metal ion transport",15,10,8.02,292,"0.22203","0.13026","0.13026" +"GO:0072522","purine-containing compound biosynthetic ...",47,28,25.12,330,"0.24176","0.13038","0.13038" +"GO:0009132","nucleoside diphosphate metabolic process",11,6,5.88,919,"0.59279","0.13132","0.13132" +"GO:0050982","detection of mechanical stimulus",8,8,4.28,15,"0.00659","0.00051","0.13342" +"GO:0048584","positive regulation of response to stimu...",86,37,45.96,2344,"0.98139","0.13471","0.13471" +"GO:0099003","vesicle-mediated transport in synapse",19,11,10.16,556,"0.43905","0.13585","0.13585" +"GO:0061136","regulation of proteasomal protein catabo...",7,4,3.74,889,"0.57515","0.13671","0.13671" +"GO:0007349","cellularization",5,4,2.67,303,"0.23330","0.13801","0.13801" +"GO:0032091","negative regulation of protein binding",5,3,2.67,824,"0.56449","0.13801","0.13801" +"GO:1904029","regulation of cyclin-dependent protein k...",5,3,2.67,825,"0.56449","0.13801","0.13801" +"GO:0016571","histone methylation",3,3,1.6,226,"0.15251","0.13827","0.13827" +"GO:0044088","regulation of vacuole organization",3,3,1.6,227,"0.15251","0.13827","0.13827" +"GO:0051788","response to misfolded protein",3,3,1.6,228,"0.15251","0.13827","0.13827" +"GO:0071218","cellular response to misfolded protein",3,3,1.6,229,"0.15251","0.13827","0.13827" +"GO:2000785","regulation of autophagosome assembly",3,3,1.6,230,"0.15251","0.13827","0.13827" +"GO:1904062","regulation of cation transmembrane trans...",20,13,10.69,287,"0.20841","0.13836","0.13836" +"GO:0061640","cytoskeleton-dependent cytokinesis",11,6,5.88,920,"0.59279","0.13845","0.13845" +"GO:0007610","behavior",57,33,30.47,375,"0.29308","0.13889","0.13889" +"GO:0009060","aerobic respiration",15,11,8.02,128,"0.09717","0.13924","0.13924" +"GO:0072350","tricarboxylic acid metabolic process",15,11,8.02,129,"0.09717","0.13924","0.13924" +"GO:0051091","positive regulation of DNA-binding trans...",14,11,7.48,74,"0.04960","0.14015","0.14015" +"GO:2001233","regulation of apoptotic signaling pathwa...",21,10,11.22,1208,"0.77589","0.14102","0.14102" +"GO:0009126","purine nucleoside monophosphate metaboli...",46,27,24.59,345,"0.28485","0.14331","0.14331" +"GO:0009167","purine ribonucleoside monophosphate meta...",46,27,24.59,346,"0.28485","0.14331","0.14331" +"GO:0006979","response to oxidative stress",48,26,25.65,626,"0.51931","0.14510","0.14510" +"GO:0003333","amino acid transmembrane transport",14,8,7.48,617,"0.49881","0.14651","0.14651" +"GO:0016079","synaptic vesicle exocytosis",4,4,2.14,101,"0.08142","0.14657","0.14657" +"GO:0032835","glomerulus development",3,3,1.6,231,"0.15251","0.14662","0.14662" +"GO:0015980","energy derivation by oxidation of organi...",34,23,18.17,88,"0.06572","0.14749","0.14749" +"GO:0051259","protein complex oligomerization",23,15,12.29,263,"0.17727","0.14763","0.14763" +"GO:0051591","response to cAMP",5,4,2.67,304,"0.23330","0.14774","0.14774" +"GO:2001259","positive regulation of cation channel ac...",5,4,2.67,305,"0.23330","0.14774","0.14774" +"GO:0003013","circulatory system process",18,13,9.62,117,"0.08440","0.00179","0.14813" +"GO:0008015","blood circulation",18,13,9.62,118,"0.08440","0.00179","0.14813" +"GO:0006188","IMP biosynthetic process",3,3,1.6,232,"0.15251","0.14833","0.14833" +"GO:0006189","'de novo' IMP biosynthetic process",3,3,1.6,233,"0.15251","0.14833","0.14833" +"GO:0046040","IMP metabolic process",3,3,1.6,234,"0.15251","0.14833","0.14833" +"GO:0016999","antibiotic metabolic process",17,12,9.09,151,"0.11858","0.14863","0.14863" +"GO:0051602","response to electrical stimulus",8,6,4.28,276,"0.19408","0.14870","0.14870" +"GO:2001234","negative regulation of apoptotic signali...",14,8,7.48,618,"0.49881","0.14903","0.14903" +"GO:0072329","monocarboxylic acid catabolic process",8,5,4.28,563,"0.44079","0.14940","0.14940" +"GO:0006821","chloride transport",5,3,2.67,826,"0.56449","0.14941","0.14941" +"GO:0006937","regulation of muscle contraction",10,6,5.34,591,"0.46405","0.15168","0.15168" +"GO:0090257","regulation of muscle system process",10,6,5.34,592,"0.46405","0.15168","0.15168" +"GO:0006767","water-soluble vitamin metabolic process",7,5,3.74,356,"0.28660","0.15227","0.15227" +"GO:0045333","cellular respiration",27,18,14.43,149,"0.11618","0.15339","0.15339" +"GO:0006633","fatty acid biosynthetic process",10,7,5.34,319,"0.23374","0.15490","0.15490" +"GO:0036473","cell death in response to oxidative stre...",12,6,6.41,989,"0.70267","0.15511","0.15511" +"GO:0071236","cellular response to antibiotic",12,4,6.41,2118,"0.95538","0.15511","0.15511" +"GO:0015837","amine transport",4,4,2.14,102,"0.08142","0.15512","0.15512" +"GO:0051952","regulation of amine transport",4,4,2.14,103,"0.08142","0.15512","0.15512" +"GO:0045445","myoblast differentiation",11,7,5.88,424,"0.35677","0.15565","0.15565" +"GO:0045661","regulation of myoblast differentiation",11,7,5.88,425,"0.35677","0.15565","0.15565" +"GO:0043269","regulation of ion transport",29,20,15.5,87,"0.06561","0.15725","0.15725" +"GO:0006164","purine nucleotide biosynthetic process",45,28,24.05,189,"0.14892","0.15739","0.15739" +"GO:0045766","positive regulation of angiogenesis",8,5,4.28,564,"0.44079","0.15797","0.15797" +"GO:1904018","positive regulation of vasculature devel...",8,5,4.28,565,"0.44079","0.15797","0.15797" +"GO:0097164","ammonium ion metabolic process",15,11,8.02,130,"0.09717","0.16026","0.16026" +"GO:0072521","purine-containing compound metabolic pro...",78,45,41.69,337,"0.25876","0.16026","0.16026" +"GO:0070588","calcium ion transmembrane transport",16,12,8.55,89,"0.06689","0.16058","0.16058" +"GO:0010827","regulation of glucose transmembrane tran...",5,3,2.67,827,"0.56449","0.16089","0.16089" +"GO:1903076","regulation of protein localization to pl...",5,2,2.67,1387,"0.85289","0.16089","0.16089" +"GO:1904375","regulation of protein localization to ce...",5,2,2.67,1388,"0.85289","0.16089","0.16089" +"GO:1904659","glucose transmembrane transport",5,3,2.67,828,"0.56449","0.16089","0.16089" +"GO:0055001","muscle cell development",20,17,10.69,6,"0.00321","0.00231","0.16123" +"GO:0055002","striated muscle cell development",20,17,10.69,7,"0.00321","0.00231","0.16123" +"GO:0006851","mitochondrial calcium ion transmembrane ...",3,3,1.6,235,"0.15251","0.16165","0.16165" +"GO:0036444","calcium import into the mitochondrion",3,3,1.6,236,"0.15251","0.16165","0.16165" +"GO:0051560","mitochondrial calcium ion homeostasis",3,3,1.6,237,"0.15251","0.16165","0.16165" +"GO:0080134","regulation of response to stress",48,16,25.65,2512,"0.99857","0.16171","0.16171" +"GO:0072330","monocarboxylic acid biosynthetic process",22,14,11.76,301,"0.22836","0.16330","0.16330" +"GO:2001236","regulation of extrinsic apoptotic signal...",8,6,4.28,277,"0.19408","0.16357","0.16357" +"GO:0051592","response to calcium ion",8,5,4.28,566,"0.44079","0.16366","0.16366" +"GO:1903827","regulation of cellular protein localizat...",19,9,10.16,1214,"0.77786","0.16415","0.16415" +"GO:0030510","regulation of BMP signaling pathway",4,4,2.14,104,"0.08142","0.16510","0.16510" +"GO:0090101","negative regulation of transmembrane rec...",4,4,2.14,105,"0.08142","0.16510","0.16510" +"GO:0090288","negative regulation of cellular response...",4,4,2.14,106,"0.08142","0.16510","0.16510" +"GO:0008089","anterograde axonal transport",3,3,1.6,238,"0.15251","0.16535","0.16535" +"GO:0030030","cell projection organization",104,51,55.59,1377,"0.84677","0.16540","0.16540" +"GO:0048507","meristem development",3,2,1.6,648,"0.55165","0.16551","0.16551" +"GO:0008291","acetylcholine metabolic process",4,4,2.14,107,"0.08142","0.16618","0.16618" +"GO:1900619","acetate ester metabolic process",4,4,2.14,108,"0.08142","0.16618","0.16618" +"GO:0016053","organic acid biosynthetic process",36,22,19.24,295,"0.22416","0.16667","0.16667" +"GO:0046394","carboxylic acid biosynthetic process",36,22,19.24,296,"0.22416","0.16667","0.16667" +"GO:0052652","cyclic purine nucleotide metabolic proce...",7,6,3.74,123,"0.08810","0.16858","0.16858" +"GO:0050906","detection of stimulus involved in sensor...",8,5,4.28,567,"0.44079","0.16872","0.16872" +"GO:0022898","regulation of transmembrane transporter ...",18,11,9.62,414,"0.34059","0.16888","0.16888" +"GO:0032409","regulation of transporter activity",18,11,9.62,415,"0.34059","0.16888","0.16888" +"GO:0032412","regulation of ion transmembrane transpor...",18,11,9.62,416,"0.34059","0.16888","0.16888" +"GO:0051606","detection of stimulus",21,14,11.22,256,"0.15867","0.00500","0.16900" +"GO:0006865","amino acid transport",15,9,8.02,520,"0.40376","0.17035","0.17035" +"GO:0009260","ribonucleotide biosynthetic process",44,27,23.52,266,"0.18161","0.17272","0.17272" +"GO:0046390","ribose phosphate biosynthetic process",44,27,23.52,267,"0.18161","0.17272","0.17272" +"GO:0031032","actomyosin structure organization",22,18,11.76,11,"0.00543","0.00182","0.17309" +"GO:0045185","maintenance of protein location",9,7,4.81,160,"0.12819","0.17423","0.17423" +"GO:0007160","cell-matrix adhesion",8,6,4.28,278,"0.19408","0.17568","0.17568" +"GO:1902600","proton transmembrane transport",26,18,13.9,92,"0.07576","0.17609","0.17609" +"GO:0050885","neuromuscular process controlling balanc...",4,4,2.14,109,"0.08142","0.17610","0.17610" +"GO:0072348","sulfur compound transport",6,4,3.21,527,"0.41027","0.17621","0.17621" +"GO:0007111","meiosis II cytokinesis",3,2,1.6,649,"0.55165","0.17648","0.17648" +"GO:0033206","meiotic cytokinesis",3,2,1.6,650,"0.55165","0.17648","0.17648" +"GO:0061983","meiosis II cell cycle process",3,2,1.6,651,"0.55165","0.17648","0.17648" +"GO:0048010","vascular endothelial growth factor recep...",4,2,2.14,1111,"0.73753","0.17808","0.17808" +"GO:0017156","calcium ion regulated exocytosis",5,4,2.67,306,"0.23330","0.17866","0.17866" +"GO:0031344","regulation of cell projection organizati...",40,22,21.38,615,"0.48603","0.17940","0.17940" +"GO:0120035","regulation of plasma membrane bounded ce...",40,22,21.38,616,"0.48603","0.17940","0.17940" +"GO:0007568","aging",27,16,14.43,419,"0.34086","0.17948","0.17948" +"GO:0048285","organelle fission",19,8,10.16,1539,"0.88988","0.18125","0.18125" +"GO:0034614","cellular response to reactive oxygen spe...",11,5,5.88,1244,"0.79823","0.18130","0.18130" +"GO:2001023","regulation of response to drug",11,6,5.88,921,"0.59279","0.18130","0.18130" +"GO:0034103","regulation of tissue remodeling",4,3,2.14,440,"0.36577","0.18237","0.18237" +"GO:2001237","negative regulation of extrinsic apoptot...",4,3,2.14,441,"0.36577","0.18237","0.18237" +"GO:0006801","superoxide metabolic process",4,2,2.14,1112,"0.73753","0.18266","0.18266" +"GO:0044242","cellular lipid catabolic process",19,10,10.16,954,"0.62023","0.18344","0.18344" +"GO:0007603","phototransduction, visible light",4,2,2.14,1113,"0.73753","0.18440","0.18440" +"GO:0016056","rhodopsin mediated signaling pathway",4,2,2.14,1114,"0.73753","0.18440","0.18440" +"GO:0042572","retinol metabolic process",4,2,2.14,1115,"0.73753","0.18440","0.18440" +"GO:0042574","retinal metabolic process",4,2,2.14,1116,"0.73753","0.18440","0.18440" +"GO:0045494","photoreceptor cell maintenance",4,2,2.14,1117,"0.73753","0.18440","0.18440" +"GO:0032365","intracellular lipid transport",7,6,3.74,124,"0.08810","0.18500","0.18500" +"GO:0042135","neurotransmitter catabolic process",6,5,3.21,185,"0.14481","0.18617","0.18617" +"GO:0009123","nucleoside monophosphate metabolic proce...",49,29,26.19,335,"0.25258","0.18652","0.18652" +"GO:0009161","ribonucleoside monophosphate metabolic p...",49,29,26.19,336,"0.25258","0.18652","0.18652" +"GO:0090407","organophosphate biosynthetic process",90,54,48.1,155,"0.12214","0.18692","0.18692" +"GO:0019751","polyol metabolic process",7,5,3.74,357,"0.28660","0.18945","0.18945" +"GO:0009636","response to toxic substance",26,11,13.9,1767,"0.91028","0.19117","0.19117" +"GO:0019637","organophosphate metabolic process",159,95,84.98,85,"0.05808","0.19157","0.19157" +"GO:0030038","contractile actin filament bundle assemb...",3,2,1.6,652,"0.55165","0.19207","0.19207" +"GO:0043149","stress fiber assembly",3,2,1.6,653,"0.55165","0.19207","0.19207" +"GO:0051492","regulation of stress fiber assembly",3,2,1.6,654,"0.55165","0.19207","0.19207" +"GO:0110020","regulation of actomyosin structure organ...",3,2,1.6,655,"0.55165","0.19207","0.19207" +"GO:0044281","small molecule metabolic process",280,160,149.65,140,"0.10413","0.07831","0.19364" +"GO:0035384","thioester biosynthetic process",5,4,2.67,307,"0.23330","0.19370","0.19370" +"GO:0071616","acyl-CoA biosynthetic process",5,4,2.67,308,"0.23330","0.19370","0.19370" +"GO:0120036","plasma membrane bounded cell projection ...",100,48,53.45,1537,"0.88841","0.19388","0.19388" +"GO:0097190","apoptotic signaling pathway",26,14,13.9,822,"0.56380","0.19424","0.19424" +"GO:0019674","NAD metabolic process",6,5,3.21,186,"0.14481","0.19715","0.19715" +"GO:0006595","polyamine metabolic process",3,3,1.6,239,"0.15251","0.19817","0.19817" +"GO:0006596","polyamine biosynthetic process",3,3,1.6,240,"0.15251","0.19817","0.19817" +"GO:0009309","amine biosynthetic process",3,3,1.6,241,"0.15251","0.19817","0.19817" +"GO:0042401","cellular biogenic amine biosynthetic pro...",3,3,1.6,242,"0.15251","0.19817","0.19817" +"GO:0009081","branched-chain amino acid metabolic proc...",4,3,2.14,442,"0.36577","0.19842","0.19842" +"GO:0043010","camera-type eye development",29,15,15.5,968,"0.64701","0.19849","0.19849" +"GO:0006479","protein methylation",14,6,7.48,1463,"0.85658","0.19876","0.19876" +"GO:0008213","protein alkylation",14,6,7.48,1464,"0.85658","0.19876","0.19876" +"GO:0009581","detection of external stimulus",19,13,10.16,174,"0.13911","0.00511","0.20085" +"GO:0009582","detection of abiotic stimulus",19,13,10.16,175,"0.13911","0.00511","0.20085" +"GO:0008037","cell recognition",11,5,5.88,1245,"0.79823","0.20109","0.20109" +"GO:0010975","regulation of neuron projection developm...",30,16,16.03,910,"0.57938","0.20306","0.20306" +"GO:0060042","retina morphogenesis in camera-type eye",10,5,5.34,1005,"0.70485","0.20438","0.20438" +"GO:1903409","reactive oxygen species biosynthetic pro...",3,2,1.6,656,"0.55165","0.20586","0.20586" +"GO:0000302","response to reactive oxygen species",16,8,8.55,985,"0.70227","0.20606","0.20606" +"GO:0051348","negative regulation of transferase activ...",15,11,8.02,131,"0.09717","0.00122","0.20613" +"GO:0046034","ATP metabolic process",42,24,22.45,502,"0.37271","0.20747","0.20747" +"GO:1901615","organic hydroxy compound metabolic proce...",41,20,21.91,1213,"0.77733","0.20954","0.20954" +"GO:1901800","positive regulation of proteasomal prote...",4,2,2.14,1118,"0.73753","0.21028","0.21028" +"GO:1903052","positive regulation of proteolysis invol...",4,2,2.14,1119,"0.73753","0.21028","0.21028" +"GO:1903364","positive regulation of cellular protein ...",4,2,2.14,1120,"0.73753","0.21028","0.21028" +"GO:1902115","regulation of organelle assembly",16,11,8.55,261,"0.16380","0.21106","0.21106" +"GO:0050806","positive regulation of synaptic transmis...",12,8,6.41,341,"0.26668","0.21137","0.21137" +"GO:0010038","response to metal ion",22,10,11.76,1363,"0.83393","0.21143","0.21143" +"GO:0008038","neuron recognition",10,5,5.34,1006,"0.70485","0.21189","0.21189" +"GO:0014823","response to activity",10,5,5.34,1007,"0.70485","0.21189","0.21189" +"GO:0021549","cerebellum development",10,4,5.34,1505,"0.87938","0.21189","0.21189" +"GO:0022037","metencephalon development",10,4,5.34,1506,"0.87938","0.21189","0.21189" +"GO:0030902","hindbrain development",10,4,5.34,1507,"0.87938","0.21189","0.21189" +"GO:0043270","positive regulation of ion transport",10,6,5.34,593,"0.46405","0.21189","0.21189" +"GO:1903201","regulation of oxidative stress-induced c...",10,4,5.34,1508,"0.87938","0.21189","0.21189" +"GO:1903202","negative regulation of oxidative stress-...",10,4,5.34,1509,"0.87938","0.21189","0.21189" +"GO:0060996","dendritic spine development",10,7,5.34,320,"0.23374","0.21545","0.21545" +"GO:0060998","regulation of dendritic spine developmen...",10,7,5.34,321,"0.23374","0.21545","0.21545" +"GO:0042391","regulation of membrane potential",14,9,7.48,377,"0.29472","0.21546","0.21546" +"GO:0043200","response to amino acid",4,3,2.14,443,"0.36577","0.21671","0.21671" +"GO:0051385","response to mineralocorticoid",4,3,2.14,444,"0.36577","0.21671","0.21671" +"GO:0032024","positive regulation of insulin secretion",5,4,2.67,309,"0.23330","0.21680","0.21680" +"GO:0060359","response to ammonium ion",6,3,3.21,1055,"0.71872","0.21709","0.21709" +"GO:0000280","nuclear division",17,6,9.09,2175,"0.96044","0.21724","0.21724" +"GO:0009165","nucleotide biosynthetic process",60,37,32.07,156,"0.12231","0.21738","0.21738" +"GO:1901293","nucleoside phosphate biosynthetic proces...",60,37,32.07,157,"0.12231","0.21738","0.21738" +"GO:0000281","mitotic cytokinesis",9,5,4.81,912,"0.58445","0.22112","0.22112" +"GO:2001257","regulation of cation channel activity",15,10,8.02,293,"0.22203","0.22284","0.22284" +"GO:0042133","neurotransmitter metabolic process",10,8,5.34,115,"0.08296","0.22323","0.22323" +"GO:0006171","cAMP biosynthetic process",3,3,1.6,243,"0.15251","0.22414","0.22414" +"GO:0046058","cAMP metabolic process",3,3,1.6,244,"0.15251","0.22414","0.22414" +"GO:0010259","multicellular organism aging",7,5,3.74,358,"0.28660","0.22415","0.22415" +"GO:0030520","intracellular estrogen receptor signalin...",3,3,1.6,245,"0.15251","0.22529","0.22529" +"GO:0033146","regulation of intracellular estrogen rec...",3,3,1.6,246,"0.15251","0.22529","0.22529" +"GO:0035023","regulation of Rho protein signal transdu...",14,9,7.48,378,"0.29472","0.22657","0.22657" +"GO:0015849","organic acid transport",24,16,12.83,165,"0.13546","0.22851","0.22851" +"GO:0046942","carboxylic acid transport",24,16,12.83,166,"0.13546","0.22851","0.22851" +"GO:0051402","neuron apoptotic process",9,3,4.81,1950,"0.94000","0.22891","0.22891" +"GO:0051047","positive regulation of secretion",17,12,9.09,152,"0.11858","0.22974","0.22974" +"GO:0050920","regulation of chemotaxis",3,2,1.6,657,"0.55165","0.23013","0.23013" +"GO:0050921","positive regulation of chemotaxis",3,2,1.6,658,"0.55165","0.23013","0.23013" +"GO:0060326","cell chemotaxis",3,2,1.6,659,"0.55165","0.23013","0.23013" +"GO:0009967","positive regulation of signal transducti...",64,28,34.21,2130,"0.95570","0.23056","0.23056" +"GO:0060401","cytosolic calcium ion transport",7,6,3.74,125,"0.08810","0.23178","0.23178" +"GO:0050908","detection of light stimulus involved in ...",3,2,1.6,660,"0.55165","0.23190","0.23190" +"GO:0050962","detection of light stimulus involved in ...",3,2,1.6,661,"0.55165","0.23190","0.23190" +"GO:1905477","positive regulation of protein localizat...",4,2,2.14,1121,"0.73753","0.23200","0.23200" +"GO:0006820","anion transport",45,26,24.05,410,"0.33223","0.23241","0.23241" +"GO:0030042","actin filament depolymerization",6,4,3.21,528,"0.41027","0.23370","0.23370" +"GO:0030834","regulation of actin filament depolymeriz...",6,4,3.21,529,"0.41027","0.23370","0.23370" +"GO:0030835","negative regulation of actin filament de...",6,4,3.21,530,"0.41027","0.23370","0.23370" +"GO:0030837","negative regulation of actin filament po...",6,4,3.21,531,"0.41027","0.23370","0.23370" +"GO:0008272","sulfate transport",5,3,2.67,829,"0.56449","0.23548","0.23548" +"GO:0009187","cyclic nucleotide metabolic process",12,9,6.41,145,"0.11182","0.23601","0.23601" +"GO:0009190","cyclic nucleotide biosynthetic process",12,9,6.41,146,"0.11182","0.23601","0.23601" +"GO:0001578","microtubule bundle formation",5,2,2.67,1389,"0.85289","0.23625","0.23625" +"GO:0006906","vesicle fusion",3,3,1.6,247,"0.15251","0.23703","0.23703" +"GO:0030301","cholesterol transport",3,3,1.6,248,"0.15251","0.23703","0.23703" +"GO:0032367","intracellular cholesterol transport",3,3,1.6,249,"0.15251","0.23703","0.23703" +"GO:0048284","organelle fusion",3,3,1.6,250,"0.15251","0.23703","0.23703" +"GO:0090174","organelle membrane fusion",3,3,1.6,251,"0.15251","0.23703","0.23703" +"GO:1990504","dense core granule exocytosis",3,3,1.6,252,"0.15251","0.23703","0.23703" +"GO:0031112","positive regulation of microtubule polym...",9,4,4.81,1266,"0.80957","0.23710","0.23710" +"GO:0031113","regulation of microtubule polymerization",9,4,4.81,1267,"0.80957","0.23710","0.23710" +"GO:0031116","positive regulation of microtubule polym...",9,4,4.81,1268,"0.80957","0.23710","0.23710" +"GO:0006739","NADP metabolic process",8,5,4.28,568,"0.44079","0.23722","0.23722" +"GO:0006338","chromatin remodeling",6,3,3.21,1056,"0.71872","0.23975","0.23975" +"GO:0055086","nucleobase-containing small molecule met...",112,66,59.86,167,"0.13669","0.23988","0.23988" +"GO:0007286","spermatid development",15,11,8.02,132,"0.09717","0.24267","0.24267" +"GO:0048515","spermatid differentiation",15,11,8.02,133,"0.09717","0.24267","0.24267" +"GO:0006812","cation transport",135,87,72.15,9,"0.00511","0.03126","0.24417" +"GO:0045765","regulation of angiogenesis",10,5,5.34,1008,"0.70485","0.24655","0.24655" +"GO:1901342","regulation of vasculature development",10,5,5.34,1009,"0.70485","0.24655","0.24655" +"GO:0006082","organic acid metabolic process",123,73,65.74,141,"0.10439","0.00972","0.24728" +"GO:0043436","oxoacid metabolic process",123,73,65.74,142,"0.10439","0.00972","0.24728" +"GO:0007041","lysosomal transport",9,4,4.81,1269,"0.80957","0.24760","0.24760" +"GO:0034764","positive regulation of transmembrane tra...",9,4,4.81,1270,"0.80957","0.24760","0.24760" +"GO:0070301","cellular response to hydrogen peroxide",9,3,4.81,1951,"0.94000","0.24760","0.24760" +"GO:0010647","positive regulation of cell communicatio...",72,34,38.48,1530,"0.88398","0.24775","0.24775" +"GO:0023056","positive regulation of signaling",72,34,38.48,1531,"0.88398","0.24775","0.24775" +"GO:0001505","regulation of neurotransmitter levels",31,20,16.57,177,"0.14382","0.24825","0.24825" +"GO:0016051","carbohydrate biosynthetic process",19,11,10.16,557,"0.43905","0.24854","0.24854" +"GO:0016042","lipid catabolic process",25,13,13.36,962,"0.63700","0.25021","0.25021" +"GO:0046677","response to antibiotic",23,10,12.29,1526,"0.87959","0.25151","0.25151" +"GO:1902882","regulation of response to oxidative stre...",12,4,6.41,2119,"0.95538","0.25217","0.25217" +"GO:1902883","negative regulation of response to oxida...",12,4,6.41,2120,"0.95538","0.25217","0.25217" +"GO:0051705","multi-organism behavior",9,6,4.81,398,"0.32587","0.25236","0.25236" +"GO:0006638","neutral lipid metabolic process",5,4,2.67,310,"0.23330","0.25357","0.25357" +"GO:0006639","acylglycerol metabolic process",5,4,2.67,311,"0.23330","0.25357","0.25357" +"GO:1902017","regulation of cilium assembly",7,5,3.74,359,"0.28660","0.25402","0.25402" +"GO:0042755","eating behavior",4,3,2.14,445,"0.36577","0.25624","0.25624" +"GO:0010657","muscle cell apoptotic process",10,4,5.34,1510,"0.87938","0.25734","0.25734" +"GO:0010660","regulation of muscle cell apoptotic proc...",10,4,5.34,1511,"0.87938","0.25734","0.25734" +"GO:0046461","neutral lipid catabolic process",4,3,2.14,446,"0.36577","0.25860","0.25860" +"GO:0046464","acylglycerol catabolic process",4,3,2.14,447,"0.36577","0.25860","0.25860" +"GO:1903828","negative regulation of cellular protein ...",6,3,3.21,1057,"0.71872","0.25940","0.25940" +"GO:0035690","cellular response to drug",15,6,8.02,1756,"0.90449","0.25981","0.25981" +"GO:0035458","cellular response to interferon-beta",3,2,1.6,662,"0.55165","0.26064","0.26064" +"GO:0071242","cellular response to ammonium ion",3,2,1.6,663,"0.55165","0.26064","0.26064" +"GO:0086001","cardiac muscle cell action potential",3,2,1.6,664,"0.55165","0.26064","0.26064" +"GO:0009127","purine nucleoside monophosphate biosynth...",27,17,14.43,288,"0.21175","0.26119","0.26119" +"GO:0009168","purine ribonucleoside monophosphate bios...",27,17,14.43,289,"0.21175","0.26119","0.26119" +"GO:0071214","cellular response to abiotic stimulus",17,8,9.09,1218,"0.78070","0.26298","0.26298" +"GO:0104004","cellular response to environmental stimu...",17,8,9.09,1219,"0.78070","0.26298","0.26298" +"GO:0006110","regulation of glycolytic process",3,2,1.6,665,"0.55165","0.26319","0.26319" +"GO:0010799","regulation of peptidyl-threonine phospho...",3,2,1.6,666,"0.55165","0.26319","0.26319" +"GO:0018107","peptidyl-threonine phosphorylation",3,2,1.6,667,"0.55165","0.26319","0.26319" +"GO:0030811","regulation of nucleotide catabolic proce...",3,2,1.6,668,"0.55165","0.26319","0.26319" +"GO:0043470","regulation of carbohydrate catabolic pro...",3,2,1.6,669,"0.55165","0.26319","0.26319" +"GO:2001169","regulation of ATP biosynthetic process",3,2,1.6,670,"0.55165","0.26319","0.26319" +"GO:0035150","regulation of tube size",6,3,3.21,1058,"0.71872","0.26345","0.26345" +"GO:0000096","sulfur amino acid metabolic process",4,3,2.14,448,"0.36577","0.26374","0.26374" +"GO:0000097","sulfur amino acid biosynthetic process",4,3,2.14,449,"0.36577","0.26374","0.26374" +"GO:0051186","cofactor metabolic process",73,46,39.02,86,"0.06038","0.00810","0.26456" +"GO:0046683","response to organophosphorus",6,4,3.21,532,"0.41027","0.26480","0.26480" +"GO:0009583","detection of light stimulus",9,4,4.81,1271,"0.80957","0.26527","0.26527" +"GO:0097306","cellular response to alcohol",8,3,4.28,1549,"0.89652","0.26546","0.26546" +"GO:0051046","regulation of secretion",23,15,12.29,264,"0.17727","0.26586","0.26586" +"GO:0003254","regulation of membrane depolarization",3,2,1.6,671,"0.55165","0.26832","0.26832" +"GO:2000045","regulation of G1/S transition of mitotic...",3,2,1.6,672,"0.55165","0.26832","0.26832" +"GO:0009141","nucleoside triphosphate metabolic proces...",45,26,24.05,411,"0.33223","0.26837","0.26837" +"GO:0009144","purine nucleoside triphosphate metabolic...",45,26,24.05,412,"0.33223","0.26837","0.26837" +"GO:0043523","regulation of neuron apoptotic process",8,2,4.28,2257,"0.97771","0.26981","0.26981" +"GO:0001941","postsynaptic membrane organization",7,5,3.74,360,"0.28660","0.27115","0.27115" +"GO:0010469","regulation of signaling receptor activit...",7,5,3.74,361,"0.28660","0.27115","0.27115" +"GO:0046887","positive regulation of hormone secretion",7,5,3.74,362,"0.28660","0.27115","0.27115" +"GO:0099054","presynapse assembly",7,5,3.74,363,"0.28660","0.27115","0.27115" +"GO:0099172","presynapse organization",7,5,3.74,364,"0.28660","0.27115","0.27115" +"GO:0099601","regulation of neurotransmitter receptor ...",7,5,3.74,365,"0.28660","0.27115","0.27115" +"GO:1900449","regulation of glutamate receptor signali...",7,5,3.74,366,"0.28660","0.27115","0.27115" +"GO:0035640","exploration behavior",3,3,1.6,253,"0.15251","0.27200","0.27200" +"GO:0090100","positive regulation of transmembrane rec...",5,4,2.67,312,"0.23330","0.27253","0.27253" +"GO:1901617","organic hydroxy compound biosynthetic pr...",22,13,11.76,504,"0.37720","0.27255","0.27255" +"GO:0015908","fatty acid transport",7,5,3.74,367,"0.28660","0.27400","0.27400" +"GO:0015909","long-chain fatty acid transport",7,5,3.74,368,"0.28660","0.27400","0.27400" +"GO:0006732","coenzyme metabolic process",52,34,27.79,80,"0.05330","0.00614","0.27402" +"GO:0010466","negative regulation of peptidase activit...",6,3,3.21,1059,"0.71872","0.27443","0.27443" +"GO:0055013","cardiac muscle cell development",7,7,3.74,30,"0.01236","0.00133","0.27529" +"GO:0008610","lipid biosynthetic process",65,37,34.74,409,"0.32962","0.27704","0.27704" +"GO:0008340","determination of adult lifespan",6,4,3.21,533,"0.41027","0.27769","0.27769" +"GO:0007266","Rho protein signal transduction",16,10,8.55,381,"0.31908","0.27807","0.27807" +"GO:0097305","response to alcohol",20,8,10.69,1888,"0.92457","0.27873","0.27873" +"GO:0010257","NADH dehydrogenase complex assembly",8,5,4.28,569,"0.44079","0.27904","0.27904" +"GO:0032981","mitochondrial respiratory chain complex ...",8,5,4.28,570,"0.44079","0.27904","0.27904" +"GO:0045862","positive regulation of proteolysis",14,5,7.48,1982,"0.94604","0.27910","0.27910" +"GO:1902041","regulation of extrinsic apoptotic signal...",3,2,1.6,673,"0.55165","0.27923","0.27923" +"GO:0035725","sodium ion transmembrane transport",3,2,1.6,674,"0.55165","0.27945","0.27945" +"GO:0070997","neuron death",11,3,5.88,2335,"0.98106","0.28300","0.28300" +"GO:1900407","regulation of cellular response to oxida...",11,4,5.88,1898,"0.92575","0.28300","0.28300" +"GO:1900408","negative regulation of cellular response...",11,4,5.88,1899,"0.92575","0.28300","0.28300" +"GO:0034655","nucleobase-containing compound catabolic...",25,14,13.36,605,"0.47971","0.28497","0.28497" +"GO:0009611","response to wounding",33,19,17.64,508,"0.38257","0.15711","0.28656" +"GO:0032386","regulation of intracellular transport",15,9,8.02,521,"0.40376","0.28766","0.28766" +"GO:0050808","synapse organization",25,16,13.36,283,"0.19495","0.28888","0.28888" +"GO:0001700","embryonic development via the syncytial ...",8,1,4.28,2494,"0.99782","0.28930","0.28930" +"GO:0036465","synaptic vesicle recycling",8,3,4.28,1550,"0.89652","0.28930","0.28930" +"GO:0046686","response to cadmium ion",8,2,4.28,2258,"0.97771","0.28930","0.28930" +"GO:0072321","chaperone-mediated protein transport",8,2,4.28,2259,"0.97771","0.28930","0.28930" +"GO:1903902","positive regulation of viral life cycle",8,3,4.28,1551,"0.89652","0.28930","0.28930" +"GO:2001024","negative regulation of response to drug",8,3,4.28,1552,"0.89652","0.28930","0.28930" +"GO:0009199","ribonucleoside triphosphate metabolic pr...",44,25,23.52,509,"0.38349","0.29173","0.29173" +"GO:0009205","purine ribonucleoside triphosphate metab...",44,25,23.52,510,"0.38349","0.29173","0.29173" +"GO:0010656","negative regulation of muscle cell apopt...",9,4,4.81,1272,"0.80957","0.29490","0.29490" +"GO:0010658","striated muscle cell apoptotic process",9,4,4.81,1273,"0.80957","0.29490","0.29490" +"GO:0010659","cardiac muscle cell apoptotic process",9,4,4.81,1274,"0.80957","0.29490","0.29490" +"GO:0010662","regulation of striated muscle cell apopt...",9,4,4.81,1275,"0.80957","0.29490","0.29490" +"GO:0010664","negative regulation of striated muscle c...",9,4,4.81,1276,"0.80957","0.29490","0.29490" +"GO:0010665","regulation of cardiac muscle cell apopto...",9,4,4.81,1277,"0.80957","0.29490","0.29490" +"GO:0010667","negative regulation of cardiac muscle ce...",9,4,4.81,1278,"0.80957","0.29490","0.29490" +"GO:0034599","cellular response to oxidative stress",18,8,9.62,1373,"0.84271","0.29508","0.29508" +"GO:0007271","synaptic transmission, cholinergic",4,3,2.14,450,"0.36577","0.29588","0.29588" +"GO:0032222","regulation of synaptic transmission, cho...",4,3,2.14,451,"0.36577","0.29588","0.29588" +"GO:0031348","negative regulation of defense response",3,1,1.6,1586,"0.89926","0.29676","0.29676" +"GO:0032102","negative regulation of response to exter...",3,2,1.6,675,"0.55165","0.29676","0.29676" +"GO:0050727","regulation of inflammatory response",3,2,1.6,676,"0.55165","0.29676","0.29676" +"GO:0009308","amine metabolic process",12,9,6.41,147,"0.11182","0.30054","0.30054" +"GO:0044106","cellular amine metabolic process",12,9,6.41,148,"0.11182","0.30054","0.30054" +"GO:0006813","potassium ion transport",23,13,12.29,600,"0.46737","0.30089","0.30089" +"GO:0019752","carboxylic acid metabolic process",122,72,65.21,154,"0.12011","0.01303","0.30334" +"GO:2001243","negative regulation of intrinsic apoptot...",7,3,3.74,1312,"0.82639","0.30501","0.30501" +"GO:0032594","protein transport within lipid bilayer",3,2,1.6,677,"0.55165","0.30577","0.30577" +"GO:1901137","carbohydrate derivative biosynthetic pro...",100,51,53.45,1108,"0.72743","0.30613","0.30613" +"GO:0019439","aromatic compound catabolic process",35,20,18.71,518,"0.39485","0.30631","0.30631" +"GO:0042542","response to hydrogen peroxide",12,5,6.41,1489,"0.86649","0.30647","0.30647" +"GO:0099504","synaptic vesicle cycle",19,11,10.16,558,"0.43905","0.30672","0.30672" +"GO:0070838","divalent metal ion transport",28,19,14.97,119,"0.08786","0.30824","0.30824" +"GO:0072511","divalent inorganic cation transport",28,19,14.97,120,"0.08786","0.30824","0.30824" +"GO:0007618","mating",5,4,2.67,313,"0.23330","0.30840","0.30840" +"GO:0051668","localization within membrane",12,8,6.41,342,"0.26668","0.30951","0.30951" +"GO:0006749","glutathione metabolic process",3,2,1.6,678,"0.55165","0.30998","0.30998" +"GO:0036314","response to sterol",3,2,1.6,679,"0.55165","0.31068","0.31068" +"GO:0036315","cellular response to sterol",3,2,1.6,680,"0.55165","0.31068","0.31068" +"GO:0070723","response to cholesterol",3,2,1.6,681,"0.55165","0.31068","0.31068" +"GO:0071397","cellular response to cholesterol",3,2,1.6,682,"0.55165","0.31068","0.31068" +"GO:0072006","nephron development",5,4,2.67,314,"0.23330","0.31204","0.31204" +"GO:0007215","glutamate receptor signaling pathway",9,6,4.81,399,"0.32587","0.31220","0.31220" +"GO:0030239","myofibril assembly",16,14,8.55,8,"0.00459","0.00388","0.31392" +"GO:0010817","regulation of hormone levels",31,20,16.57,178,"0.14382","0.31431","0.31431" +"GO:0071786","endoplasmic reticulum tubular network or...",3,2,1.6,683,"0.55165","0.31564","0.31564" +"GO:0030258","lipid modification",19,12,10.16,344,"0.26897","0.31715","0.31715" +"GO:1901214","regulation of neuron death",10,2,5.34,2428,"0.99412","0.31757","0.31757" +"GO:0071320","cellular response to cAMP",3,2,1.6,684,"0.55165","0.31778","0.31778" +"GO:0098739","import across plasma membrane",3,2,1.6,685,"0.55165","0.31778","0.31778" +"GO:1902065","response to L-glutamate",3,2,1.6,686,"0.55165","0.31778","0.31778" +"GO:0090092","regulation of transmembrane receptor pro...",9,7,4.81,161,"0.12819","0.31781","0.31781" +"GO:0000910","cytokinesis",14,7,7.48,982,"0.70199","0.31797","0.31797" +"GO:0018210","peptidyl-threonine modification",8,4,4.28,1022,"0.70951","0.31889","0.31889" +"GO:0071772","response to BMP",6,5,3.21,187,"0.14481","0.32077","0.32077" +"GO:0071773","cellular response to BMP stimulus",6,5,3.21,188,"0.14481","0.32077","0.32077" +"GO:0009615","response to virus",5,2,2.67,1390,"0.85289","0.32497","0.32497" +"GO:0007612","learning",12,7,6.41,609,"0.48290","0.32500","0.32500" +"GO:0007626","locomotory behavior",12,6,6.41,990,"0.70267","0.32500","0.32500" +"GO:0007088","regulation of mitotic nuclear division",7,4,3.74,890,"0.57515","0.32678","0.32678" +"GO:0022900","electron transport chain",15,10,8.02,294,"0.22203","0.32798","0.32798" +"GO:0007179","transforming growth factor beta receptor...",5,4,2.67,315,"0.23330","0.32872","0.32872" +"GO:0009064","glutamine family amino acid metabolic pr...",9,3,4.81,1952,"0.94000","0.32921","0.32921" +"GO:0006699","bile acid biosynthetic process",3,2,1.6,687,"0.55165","0.32932","0.32932" +"GO:0008206","bile acid metabolic process",3,2,1.6,688,"0.55165","0.32932","0.32932" +"GO:0048593","camera-type eye morphogenesis",12,6,6.41,991,"0.70267","0.32961","0.32961" +"GO:1903829","positive regulation of cellular protein ...",14,6,7.48,1465,"0.85658","0.33003","0.33003" +"GO:1903532","positive regulation of secretion by cell",16,11,8.55,262,"0.16380","0.33128","0.33128" +"GO:0006066","alcohol metabolic process",23,12,12.29,960,"0.63167","0.33321","0.33321" +"GO:1903078","positive regulation of protein localizat...",3,1,1.6,1587,"0.89926","0.33445","0.33445" +"GO:1904377","positive regulation of protein localizat...",3,1,1.6,1588,"0.89926","0.33445","0.33445" +"GO:0051049","regulation of transport",84,50,44.9,192,"0.15248","0.33792","0.33792" +"GO:0001906","cell killing",7,3,3.74,1313,"0.82639","0.33797","0.33797" +"GO:0001909","leukocyte mediated cytotoxicity",7,3,3.74,1314,"0.82639","0.33797","0.33797" +"GO:0001910","regulation of leukocyte mediated cytotox...",7,3,3.74,1315,"0.82639","0.33797","0.33797" +"GO:0001912","positive regulation of leukocyte mediate...",7,3,3.74,1316,"0.82639","0.33797","0.33797" +"GO:0002449","lymphocyte mediated immunity",7,3,3.74,1317,"0.82639","0.33797","0.33797" +"GO:0002703","regulation of leukocyte mediated immunit...",7,3,3.74,1318,"0.82639","0.33797","0.33797" +"GO:0002705","positive regulation of leukocyte mediate...",7,3,3.74,1319,"0.82639","0.33797","0.33797" +"GO:0002706","regulation of lymphocyte mediated immuni...",7,3,3.74,1320,"0.82639","0.33797","0.33797" +"GO:0002708","positive regulation of lymphocyte mediat...",7,3,3.74,1321,"0.82639","0.33797","0.33797" +"GO:0007608","sensory perception of smell",7,3,3.74,1322,"0.82639","0.33797","0.33797" +"GO:0031341","regulation of cell killing",7,3,3.74,1323,"0.82639","0.33797","0.33797" +"GO:0031343","positive regulation of cell killing",7,3,3.74,1324,"0.82639","0.33797","0.33797" +"GO:0032411","positive regulation of transporter activ...",7,4,3.74,891,"0.57515","0.33797","0.33797" +"GO:0032414","positive regulation of ion transmembrane...",7,4,3.74,892,"0.57515","0.33797","0.33797" +"GO:0034767","positive regulation of ion transmembrane...",7,4,3.74,893,"0.57515","0.33797","0.33797" +"GO:0036474","cell death in response to hydrogen perox...",7,2,3.74,2133,"0.95742","0.33797","0.33797" +"GO:0044788","modulation by host of viral process",7,3,3.74,1325,"0.82639","0.33797","0.33797" +"GO:0044794","positive regulation by host of viral pro...",7,3,3.74,1326,"0.82639","0.33797","0.33797" +"GO:0044827","modulation by host of viral genome repli...",7,3,3.74,1327,"0.82639","0.33797","0.33797" +"GO:0044829","positive regulation by host of viral gen...",7,3,3.74,1328,"0.82639","0.33797","0.33797" +"GO:0045070","positive regulation of viral genome repl...",7,3,3.74,1329,"0.82639","0.33797","0.33797" +"GO:0046777","protein autophosphorylation",7,3,3.74,1330,"0.82639","0.33797","0.33797" +"GO:0071276","cellular response to cadmium ion",7,2,3.74,2134,"0.95742","0.33797","0.33797" +"GO:1901031","regulation of response to reactive oxyge...",7,2,3.74,2135,"0.95742","0.33797","0.33797" +"GO:1901032","negative regulation of response to react...",7,2,3.74,2136,"0.95742","0.33797","0.33797" +"GO:1903205","regulation of hydrogen peroxide-induced ...",7,2,3.74,2137,"0.95742","0.33797","0.33797" +"GO:1903206","negative regulation of hydrogen peroxide...",7,2,3.74,2138,"0.95742","0.33797","0.33797" +"GO:1904064","positive regulation of cation transmembr...",7,4,3.74,894,"0.57515","0.33797","0.33797" +"GO:1905710","positive regulation of membrane permeabi...",7,3,3.74,1331,"0.82639","0.33797","0.33797" +"GO:2001038","regulation of cellular response to drug",7,2,3.74,2139,"0.95742","0.33797","0.33797" +"GO:2001039","negative regulation of cellular response...",7,2,3.74,2140,"0.95742","0.33797","0.33797" +"GO:0007585","respiratory gaseous exchange",3,2,1.6,689,"0.55165","0.33887","0.33887" +"GO:0009628","response to abiotic stimulus",76,42,40.62,547,"0.41953","0.12062","0.34023" +"GO:0044782","cilium organization",24,10,12.83,1782,"0.91443","0.34265","0.34265" +"GO:0018022","peptidyl-lysine methylation",11,4,5.88,1900,"0.92575","0.34302","0.34302" +"GO:0042035","regulation of cytokine biosynthetic proc...",5,3,2.67,830,"0.56449","0.34395","0.34395" +"GO:0042089","cytokine biosynthetic process",5,3,2.67,831,"0.56449","0.34395","0.34395" +"GO:0042107","cytokine metabolic process",5,3,2.67,832,"0.56449","0.34395","0.34395" +"GO:0042493","response to drug",52,29,27.79,549,"0.42248","0.34494","0.34494" +"GO:0006629","lipid metabolic process",170,98,90.86,179,"0.14448","0.09428","0.34669" +"GO:0050714","positive regulation of protein secretion",7,5,3.74,369,"0.28660","0.34724","0.34724" +"GO:0021987","cerebral cortex development",6,2,3.21,1797,"0.91998","0.34761","0.34761" +"GO:0048518","positive regulation of biological proces...",282,138,150.72,2113,"0.95372","0.29975","0.34773" +"GO:0006766","vitamin metabolic process",11,6,5.88,922,"0.59279","0.34785","0.34785" +"GO:0046578","regulation of Ras protein signal transdu...",19,11,10.16,559,"0.43905","0.34940","0.34940" +"GO:0051260","protein homooligomerization",15,9,8.02,522,"0.40376","0.35067","0.35067" +"GO:0051100","negative regulation of binding",7,3,3.74,1332,"0.82639","0.35085","0.35085" +"GO:0042026","protein refolding",10,5,5.34,1010,"0.70485","0.35252","0.35252" +"GO:0007018","microtubule-based movement",28,11,14.97,2131,"0.95573","0.35547","0.35547" +"GO:0051588","regulation of neurotransmitter transport",3,2,1.6,690,"0.55165","0.35612","0.35612" +"GO:0060041","retina development in camera-type eye",19,9,10.16,1215,"0.77786","0.35633","0.35633" +"GO:0051650","establishment of vesicle localization",14,8,7.48,619,"0.49881","0.35677","0.35677" +"GO:0007602","phototransduction",6,2,3.21,1798,"0.91998","0.35688","0.35688" +"GO:0045471","response to ethanol",11,4,5.88,1901,"0.92575","0.35707","0.35707" +"GO:0060271","cilium assembly",23,10,12.29,1527,"0.87959","0.35844","0.35844" +"GO:0007044","cell-substrate junction assembly",4,3,2.14,452,"0.36577","0.35931","0.35931" +"GO:0007045","cell-substrate adherens junction assembl...",4,3,2.14,453,"0.36577","0.35931","0.35931" +"GO:0010810","regulation of cell-substrate adhesion",4,3,2.14,454,"0.36577","0.35931","0.35931" +"GO:0032231","regulation of actin filament bundle asse...",4,2,2.14,1122,"0.73753","0.35931","0.35931" +"GO:0034332","adherens junction organization",4,3,2.14,455,"0.36577","0.35931","0.35931" +"GO:0034333","adherens junction assembly",4,3,2.14,456,"0.36577","0.35931","0.35931" +"GO:0048041","focal adhesion assembly",4,3,2.14,457,"0.36577","0.35931","0.35931" +"GO:0006954","inflammatory response",11,5,5.88,1246,"0.79823","0.36000","0.36000" +"GO:1903900","regulation of viral life cycle",11,4,5.88,1902,"0.92575","0.36000","0.36000" +"GO:0007519","skeletal muscle tissue development",20,10,10.69,1000,"0.70456","0.36014","0.36014" +"GO:0060538","skeletal muscle organ development",20,10,10.69,1001,"0.70456","0.36014","0.36014" +"GO:0070509","calcium ion import",4,3,2.14,458,"0.36577","0.36152","0.36152" +"GO:0043524","negative regulation of neuron apoptotic ...",6,2,3.21,1799,"0.91998","0.36156","0.36156" +"GO:1905897","regulation of response to endoplasmic re...",6,2,3.21,1800,"0.91998","0.36156","0.36156" +"GO:0006836","neurotransmitter transport",29,18,15.5,297,"0.22772","0.36166","0.36166" +"GO:0006563","L-serine metabolic process",3,2,1.6,691,"0.55165","0.36171","0.36171" +"GO:0009070","serine family amino acid biosynthetic pr...",3,2,1.6,692,"0.55165","0.36171","0.36171" +"GO:0071941","nitrogen cycle metabolic process",4,3,2.14,459,"0.36577","0.36218","0.36218" +"GO:1903050","regulation of proteolysis involved in ce...",8,4,4.28,1023,"0.70951","0.36238","0.36238" +"GO:1903362","regulation of cellular protein catabolic...",8,4,4.28,1024,"0.70951","0.36238","0.36238" +"GO:0007034","vacuolar transport",16,5,8.55,2330,"0.97997","0.36306","0.36306" +"GO:0046475","glycerophospholipid catabolic process",3,2,1.6,693,"0.55165","0.36478","0.36478" +"GO:0006085","acetyl-CoA biosynthetic process",4,3,2.14,460,"0.36577","0.36484","0.36484" +"GO:0030808","regulation of nucleotide biosynthetic pr...",4,3,2.14,461,"0.36577","0.36484","0.36484" +"GO:0051193","regulation of cofactor metabolic process",4,3,2.14,462,"0.36577","0.36484","0.36484" +"GO:0051196","regulation of coenzyme metabolic process",4,3,2.14,463,"0.36577","0.36484","0.36484" +"GO:1900371","regulation of purine nucleotide biosynth...",4,3,2.14,464,"0.36577","0.36484","0.36484" +"GO:2000377","regulation of reactive oxygen species me...",4,3,2.14,465,"0.36577","0.36484","0.36484" +"GO:0003012","muscle system process",25,16,13.36,284,"0.19495","0.11607","0.36566" +"GO:0033866","nucleoside bisphosphate biosynthetic pro...",8,4,4.28,1025,"0.70951","0.36630","0.36630" +"GO:0034030","ribonucleoside bisphosphate biosynthetic...",8,4,4.28,1026,"0.70951","0.36630","0.36630" +"GO:0034033","purine nucleoside bisphosphate biosynthe...",8,4,4.28,1027,"0.70951","0.36630","0.36630" +"GO:0034404","nucleobase-containing small molecule bio...",20,10,10.69,1002,"0.70456","0.36710","0.36710" +"GO:0016266","O-glycan processing",7,3,3.74,1333,"0.82639","0.36802","0.36802" +"GO:0034446","substrate adhesion-dependent cell spread...",4,3,2.14,466,"0.36577","0.36818","0.36818" +"GO:0034605","cellular response to heat",9,2,4.81,2369,"0.98849","0.36829","0.36829" +"GO:0046173","polyol biosynthetic process",5,3,2.67,833,"0.56449","0.36848","0.36848" +"GO:0009124","nucleoside monophosphate biosynthetic pr...",29,18,15.5,298,"0.22772","0.36880","0.36880" +"GO:0009156","ribonucleoside monophosphate biosyntheti...",29,18,15.5,299,"0.22772","0.36880","0.36880" +"GO:0048881","mechanosensory lateral line system devel...",3,2,1.6,694,"0.55165","0.37070","0.37070" +"GO:0048882","lateral line development",3,2,1.6,695,"0.55165","0.37070","0.37070" +"GO:0048925","lateral line system development",3,2,1.6,696,"0.55165","0.37070","0.37070" +"GO:0001525","angiogenesis",13,6,6.95,1233,"0.79033","0.37080","0.37080" +"GO:0006909","phagocytosis",18,8,9.62,1374,"0.84271","0.37242","0.37242" +"GO:0060402","calcium ion transport into cytosol",4,3,2.14,467,"0.36577","0.37266","0.37266" +"GO:0140014","mitotic nuclear division",11,5,5.88,1247,"0.79823","0.37331","0.37331" +"GO:0043408","regulation of MAPK cascade",21,11,11.22,957,"0.62609","0.37339","0.37339" +"GO:0050773","regulation of dendrite development",17,9,9.09,951,"0.61403","0.37407","0.37407" +"GO:0030260","entry into host cell",4,3,2.14,468,"0.36577","0.37491","0.37491" +"GO:0031397","negative regulation of protein ubiquitin...",4,3,2.14,469,"0.36577","0.37491","0.37491" +"GO:0044409","entry into host",4,3,2.14,470,"0.36577","0.37491","0.37491" +"GO:0046718","viral entry into host cell",4,3,2.14,471,"0.36577","0.37491","0.37491" +"GO:0051806","entry into cell of other organism involv...",4,3,2.14,472,"0.36577","0.37491","0.37491" +"GO:0051828","entry into other organism involved in sy...",4,3,2.14,473,"0.36577","0.37491","0.37491" +"GO:1903321","negative regulation of protein modificat...",4,3,2.14,474,"0.36577","0.37491","0.37491" +"GO:0007268","chemical synaptic transmission",41,22,21.91,815,"0.55323","0.37507","0.37507" +"GO:0098916","anterograde trans-synaptic signaling",41,22,21.91,816,"0.55323","0.37507","0.37507" +"GO:0099536","synaptic signaling",41,22,21.91,817,"0.55323","0.37507","0.37507" +"GO:0099537","trans-synaptic signaling",41,22,21.91,818,"0.55323","0.37507","0.37507" +"GO:0070925","organelle assembly",61,38,32.6,135,"0.10088","0.17921","0.37692" +"GO:0030866","cortical actin cytoskeleton organization",8,3,4.28,1553,"0.89652","0.37949","0.37949" +"GO:0009066","aspartate family amino acid metabolic pr...",4,3,2.14,475,"0.36577","0.38010","0.38010" +"GO:0009067","aspartate family amino acid biosynthetic...",4,3,2.14,476,"0.36577","0.38010","0.38010" +"GO:0051703","intraspecies interaction between organis...",9,6,4.81,400,"0.32587","0.38029","0.38029" +"GO:0033674","positive regulation of kinase activity",13,6,6.95,1234,"0.79033","0.38031","0.38031" +"GO:0006576","cellular biogenic amine metabolic proces...",10,7,5.34,322,"0.23374","0.38142","0.38142" +"GO:0006754","ATP biosynthetic process",23,14,12.29,380,"0.30783","0.38223","0.38223" +"GO:0043066","negative regulation of apoptotic process",35,18,18.71,975,"0.66070","0.38279","0.38279" +"GO:0007052","mitotic spindle organization",6,2,3.21,1801,"0.91998","0.38355","0.38355" +"GO:0051225","spindle assembly",6,2,3.21,1802,"0.91998","0.38355","0.38355" +"GO:0090307","mitotic spindle assembly",6,2,3.21,1803,"0.91998","0.38355","0.38355" +"GO:1902850","microtubule cytoskeleton organization in...",6,2,3.21,1804,"0.91998","0.38355","0.38355" +"GO:0006760","folic acid-containing compound metabolic...",3,1,1.6,1589,"0.89926","0.38637","0.38637" +"GO:0002088","lens development in camera-type eye",5,4,2.67,316,"0.23330","0.38666","0.38666" +"GO:0006635","fatty acid beta-oxidation",4,2,2.14,1123,"0.73753","0.38716","0.38716" +"GO:0042060","wound healing",28,16,14.97,548,"0.42112","0.20987","0.38895" +"GO:0045786","negative regulation of cell cycle",20,8,10.69,1889,"0.92457","0.39148","0.39148" +"GO:0043409","negative regulation of MAPK cascade",11,7,5.88,426,"0.35677","0.39184","0.39184" +"GO:0006826","iron ion transport",3,2,1.6,697,"0.55165","0.39192","0.39192" +"GO:0030154","cell differentiation",201,101,107.43,1378,"0.84730","0.29705","0.39324" +"GO:0007611","learning or memory",15,9,8.02,523,"0.40376","0.39419","0.39419" +"GO:0031646","positive regulation of neurological syst...",4,3,2.14,477,"0.36577","0.39474","0.39474" +"GO:0060997","dendritic spine morphogenesis",4,3,2.14,478,"0.36577","0.39474","0.39474" +"GO:0061001","regulation of dendritic spine morphogene...",4,3,2.14,479,"0.36577","0.39474","0.39474" +"GO:0097061","dendritic spine organization",4,3,2.14,480,"0.36577","0.39474","0.39474" +"GO:0099175","regulation of postsynapse organization",4,3,2.14,481,"0.36577","0.39474","0.39474" +"GO:0106027","neuron projection organization",4,3,2.14,482,"0.36577","0.39474","0.39474" +"GO:0001913","T cell mediated cytotoxicity",6,2,3.21,1805,"0.91998","0.39478","0.39478" +"GO:0001914","regulation of T cell mediated cytotoxici...",6,2,3.21,1806,"0.91998","0.39478","0.39478" +"GO:0001916","positive regulation of T cell mediated c...",6,2,3.21,1807,"0.91998","0.39478","0.39478" +"GO:0002250","adaptive immune response",6,2,3.21,1808,"0.91998","0.39478","0.39478" +"GO:0002456","T cell mediated immunity",6,2,3.21,1809,"0.91998","0.39478","0.39478" +"GO:0002460","adaptive immune response based on somati...",6,2,3.21,1810,"0.91998","0.39478","0.39478" +"GO:0002709","regulation of T cell mediated immunity",6,2,3.21,1811,"0.91998","0.39478","0.39478" +"GO:0002711","positive regulation of T cell mediated i...",6,2,3.21,1812,"0.91998","0.39478","0.39478" +"GO:0002819","regulation of adaptive immune response",6,2,3.21,1813,"0.91998","0.39478","0.39478" +"GO:0002821","positive regulation of adaptive immune r...",6,2,3.21,1814,"0.91998","0.39478","0.39478" +"GO:0002822","regulation of adaptive immune response b...",6,2,3.21,1815,"0.91998","0.39478","0.39478" +"GO:0002824","positive regulation of adaptive immune r...",6,2,3.21,1816,"0.91998","0.39478","0.39478" +"GO:0006622","protein targeting to lysosome",6,2,3.21,1817,"0.91998","0.39478","0.39478" +"GO:0007413","axonal fasciculation",6,2,3.21,1818,"0.91998","0.39478","0.39478" +"GO:0010045","response to nickel cation",6,2,3.21,1819,"0.91998","0.39478","0.39478" +"GO:0016191","synaptic vesicle uncoating",6,2,3.21,1820,"0.91998","0.39478","0.39478" +"GO:0016246","RNA interference",6,2,3.21,1821,"0.91998","0.39478","0.39478" +"GO:0033120","positive regulation of RNA splicing",6,2,3.21,1822,"0.91998","0.39478","0.39478" +"GO:0044849","estrous cycle",6,2,3.21,1823,"0.91998","0.39478","0.39478" +"GO:0048026","positive regulation of mRNA splicing, vi...",6,2,3.21,1824,"0.91998","0.39478","0.39478" +"GO:0048488","synaptic vesicle endocytosis",6,2,3.21,1825,"0.91998","0.39478","0.39478" +"GO:0050685","positive regulation of mRNA processing",6,2,3.21,1826,"0.91998","0.39478","0.39478" +"GO:0061083","regulation of protein refolding",6,2,3.21,1827,"0.91998","0.39478","0.39478" +"GO:0061462","protein localization to lysosome",6,2,3.21,1828,"0.91998","0.39478","0.39478" +"GO:0061684","chaperone-mediated autophagy",6,2,3.21,1829,"0.91998","0.39478","0.39478" +"GO:0061738","late endosomal microautophagy",6,2,3.21,1830,"0.91998","0.39478","0.39478" +"GO:0061740","protein targeting to lysosome involved i...",6,2,3.21,1831,"0.91998","0.39478","0.39478" +"GO:0061741","chaperone-mediated protein transport inv...",6,2,3.21,1832,"0.91998","0.39478","0.39478" +"GO:0071211","protein targeting to vacuole involved in...",6,2,3.21,1833,"0.91998","0.39478","0.39478" +"GO:0072318","clathrin coat disassembly",6,2,3.21,1834,"0.91998","0.39478","0.39478" +"GO:0072319","vesicle uncoating",6,2,3.21,1835,"0.91998","0.39478","0.39478" +"GO:0097212","lysosomal membrane organization",6,2,3.21,1836,"0.91998","0.39478","0.39478" +"GO:0097213","regulation of lysosomal membrane permeab...",6,2,3.21,1837,"0.91998","0.39478","0.39478" +"GO:0097214","positive regulation of lysosomal membran...",6,2,3.21,1838,"0.91998","0.39478","0.39478" +"GO:0106030","neuron projection fasciculation",6,2,3.21,1839,"0.91998","0.39478","0.39478" +"GO:0140238","presynaptic endocytosis",6,2,3.21,1840,"0.91998","0.39478","0.39478" +"GO:1903332","regulation of protein folding",6,2,3.21,1841,"0.91998","0.39478","0.39478" +"GO:1903334","positive regulation of protein folding",6,2,3.21,1842,"0.91998","0.39478","0.39478" +"GO:1904592","positive regulation of protein refolding",6,2,3.21,1843,"0.91998","0.39478","0.39478" +"GO:1904764","chaperone-mediated autophagy translocati...",6,2,3.21,1844,"0.91998","0.39478","0.39478" +"GO:1990832","slow axonal transport",6,2,3.21,1845,"0.91998","0.39478","0.39478" +"GO:1990834","response to odorant",6,2,3.21,1846,"0.91998","0.39478","0.39478" +"GO:2001242","regulation of intrinsic apoptotic signal...",10,4,5.34,1512,"0.87938","0.39519","0.39519" +"GO:0046717","acid secretion",5,3,2.67,834,"0.56449","0.39695","0.39695" +"GO:0043065","positive regulation of apoptotic process",18,7,9.62,1921,"0.93077","0.39764","0.39764" +"GO:0043068","positive regulation of programmed cell d...",18,7,9.62,1922,"0.93077","0.39764","0.39764" +"GO:0015850","organic hydroxy compound transport",8,6,4.28,279,"0.19408","0.39813","0.39813" +"GO:0051051","negative regulation of transport",12,7,6.41,610,"0.48290","0.39850","0.39850" +"GO:0051701","interaction with host",5,3,2.67,835,"0.56449","0.39902","0.39902" +"GO:0048869","cellular developmental process",208,102,111.17,1881,"0.92038","0.30385","0.39969" +"GO:1901215","negative regulation of neuron death",8,2,4.28,2260,"0.97771","0.39977","0.39977" +"GO:0002443","leukocyte mediated immunity",12,6,6.41,992,"0.70267","0.40105","0.40105" +"GO:0008088","axo-dendritic transport",12,5,6.41,1490,"0.86649","0.40105","0.40105" +"GO:0048522","positive regulation of cellular process",250,118,133.62,2353,"0.98463","0.34742","0.40296" +"GO:0015711","organic anion transport",30,18,16.03,379,"0.29603","0.40306","0.40306" +"GO:0033108","mitochondrial respiratory chain complex ...",11,6,5.88,923,"0.59279","0.40428","0.40428" +"GO:0010942","positive regulation of cell death",20,8,10.69,1890,"0.92457","0.40551","0.40551" +"GO:0060078","regulation of postsynaptic membrane pote...",3,2,1.6,698,"0.55165","0.40638","0.40638" +"GO:0060079","excitatory postsynaptic potential",3,2,1.6,699,"0.55165","0.40638","0.40638" +"GO:0097090","presynaptic membrane organization",3,2,1.6,700,"0.55165","0.40638","0.40638" +"GO:0097105","presynaptic membrane assembly",3,2,1.6,701,"0.55165","0.40638","0.40638" +"GO:0098815","modulation of excitatory postsynaptic po...",3,2,1.6,702,"0.55165","0.40638","0.40638" +"GO:0099565","chemical synaptic transmission, postsyna...",3,2,1.6,703,"0.55165","0.40638","0.40638" +"GO:0002697","regulation of immune effector process",10,4,5.34,1513,"0.87938","0.40696","0.40696" +"GO:0006098","pentose-phosphate shunt",5,3,2.67,836,"0.56449","0.40735","0.40735" +"GO:0019682","glyceraldehyde-3-phosphate metabolic pro...",5,3,2.67,837,"0.56449","0.40735","0.40735" +"GO:0051156","glucose 6-phosphate metabolic process",5,3,2.67,838,"0.56449","0.40735","0.40735" +"GO:1901700","response to oxygen-containing compound",67,36,35.81,632,"0.53172","0.40755","0.40755" +"GO:0040013","negative regulation of locomotion",9,3,4.81,1953,"0.94000","0.40954","0.40954" +"GO:0000041","transition metal ion transport",7,4,3.74,895,"0.57515","0.40994","0.40994" +"GO:0006952","defense response",47,26,25.12,582,"0.45672","0.41001","0.41001" +"GO:0007517","muscle organ development",36,20,19.24,599,"0.46684","0.41077","0.41077" +"GO:0032101","regulation of response to external stimu...",15,7,8.02,1224,"0.78471","0.41106","0.41106" +"GO:0008277","regulation of G protein-coupled receptor...",4,2,2.14,1124,"0.73753","0.41127","0.41127" +"GO:0043949","regulation of cAMP-mediated signaling",4,3,2.14,483,"0.36577","0.41127","0.41127" +"GO:0014074","response to purine-containing compound",9,5,4.81,913,"0.58445","0.41237","0.41237" +"GO:0072331","signal transduction by p53 class mediato...",6,3,3.21,1060,"0.71872","0.41306","0.41306" +"GO:0008631","intrinsic apoptotic signaling pathway in...",5,3,2.67,839,"0.56449","0.41471","0.41471" +"GO:0050905","neuromuscular process",5,4,2.67,317,"0.23330","0.41471","0.41471" +"GO:0072384","organelle transport along microtubule",5,2,2.67,1391,"0.85289","0.41471","0.41471" +"GO:0098930","axonal transport",5,3,2.67,840,"0.56449","0.41471","0.41471" +"GO:0090287","regulation of cellular response to growt...",13,7,6.95,935,"0.60040","0.41648","0.41648" +"GO:0031960","response to corticosteroid",6,3,3.21,1061,"0.71872","0.41653","0.41653" +"GO:1903034","regulation of response to wounding",6,3,3.21,1062,"0.71872","0.41711","0.41711" +"GO:0030198","extracellular matrix organization",8,4,4.28,1028,"0.70951","0.42020","0.42020" +"GO:0001933","negative regulation of protein phosphory...",25,16,13.36,285,"0.19495","0.12027","0.42127" +"GO:0042462","eye photoreceptor cell development",10,4,5.34,1514,"0.87938","0.42189","0.42189" +"GO:0044843","cell cycle G1/S phase transition",10,5,5.34,1011,"0.70485","0.42189","0.42189" +"GO:0010595","positive regulation of endothelial cell ...",4,2,2.14,1125,"0.73753","0.42262","0.42262" +"GO:0043487","regulation of RNA stability",4,2,2.14,1126,"0.73753","0.42262","0.42262" +"GO:0043488","regulation of mRNA stability",4,2,2.14,1127,"0.73753","0.42262","0.42262" +"GO:0045055","regulated exocytosis",10,6,5.34,594,"0.46405","0.42415","0.42415" +"GO:0009311","oligosaccharide metabolic process",6,3,3.21,1063,"0.71872","0.42467","0.42467" +"GO:0009312","oligosaccharide biosynthetic process",6,3,3.21,1064,"0.71872","0.42467","0.42467" +"GO:0018209","peptidyl-serine modification",6,3,3.21,1065,"0.71872","0.42467","0.42467" +"GO:0097327","response to antineoplastic agent",3,1,1.6,1590,"0.89926","0.42518","0.42518" +"GO:0009411","response to UV",4,2,2.14,1128,"0.73753","0.42595","0.42595" +"GO:0030970","retrograde protein transport, ER to cyto...",3,2,1.6,704,"0.55165","0.42683","0.42683" +"GO:0032387","negative regulation of intracellular tra...",3,2,1.6,705,"0.55165","0.42683","0.42683" +"GO:0032640","tumor necrosis factor production",3,2,1.6,706,"0.55165","0.42683","0.42683" +"GO:0032680","regulation of tumor necrosis factor prod...",3,2,1.6,707,"0.55165","0.42683","0.42683" +"GO:0042533","tumor necrosis factor biosynthetic proce...",3,2,1.6,708,"0.55165","0.42683","0.42683" +"GO:0042534","regulation of tumor necrosis factor bios...",3,2,1.6,709,"0.55165","0.42683","0.42683" +"GO:0071706","tumor necrosis factor superfamily cytoki...",3,2,1.6,710,"0.55165","0.42683","0.42683" +"GO:1903513","endoplasmic reticulum to cytosol transpo...",3,2,1.6,711,"0.55165","0.42683","0.42683" +"GO:1903555","regulation of tumor necrosis factor supe...",3,2,1.6,712,"0.55165","0.42683","0.42683" +"GO:1904292","regulation of ERAD pathway",3,1,1.6,1591,"0.89926","0.42683","0.42683" +"GO:0006955","immune response",40,17,21.38,1974,"0.94054","0.42853","0.42853" +"GO:0032879","regulation of localization",133,74,71.09,413,"0.33339","0.42976","0.42976" +"GO:0015718","monocarboxylic acid transport",9,6,4.81,401,"0.32587","0.42995","0.42995" +"GO:0044270","cellular nitrogen compound catabolic pro...",34,20,18.17,385,"0.32424","0.43032","0.43032" +"GO:0003407","neural retina development",7,3,3.74,1334,"0.82639","0.43038","0.43038" +"GO:0034308","primary alcohol metabolic process",7,3,3.74,1335,"0.82639","0.43038","0.43038" +"GO:2001235","positive regulation of apoptotic signali...",7,2,3.74,2141,"0.95742","0.43038","0.43038" +"GO:0045926","negative regulation of growth",11,7,5.88,427,"0.35677","0.43042","0.43042" +"GO:0032526","response to retinoic acid",3,2,1.6,713,"0.55165","0.43042","0.43042" +"GO:0051783","regulation of nuclear division",9,5,4.81,914,"0.58445","0.43091","0.43091" +"GO:0016241","regulation of macroautophagy",10,6,5.34,595,"0.46405","0.43096","0.43096" +"GO:0046890","regulation of lipid biosynthetic process",10,7,5.34,323,"0.23374","0.43096","0.43096" +"GO:0061635","regulation of protein complex stability",7,2,3.74,2142,"0.95742","0.43183","0.43183" +"GO:0015696","ammonium transport",9,6,4.81,402,"0.32587","0.43235","0.43235" +"GO:1901136","carbohydrate derivative catabolic proces...",9,4,4.81,1279,"0.80957","0.43267","0.43267" +"GO:0098693","regulation of synaptic vesicle cycle",8,5,4.28,571,"0.44079","0.43320","0.43320" +"GO:0045069","regulation of viral genome replication",9,3,4.81,1954,"0.94000","0.43379","0.43379" +"GO:0010927","cellular component assembly involved in ...",19,16,10.16,10,"0.00518","0.00819","0.43523" +"GO:0016575","histone deacetylation",3,2,1.6,714,"0.55165","0.43625","0.43625" +"GO:0001944","vasculature development",22,11,11.76,1017,"0.70623","0.43750","0.43750" +"GO:0072358","cardiovascular system development",22,11,11.76,1018,"0.70623","0.43750","0.43750" +"GO:0006641","triglyceride metabolic process",3,2,1.6,715,"0.55165","0.43931","0.43931" +"GO:0006654","phosphatidic acid biosynthetic process",3,2,1.6,716,"0.55165","0.43931","0.43931" +"GO:0046473","phosphatidic acid metabolic process",3,2,1.6,717,"0.55165","0.43931","0.43931" +"GO:0060191","regulation of lipase activity",3,2,1.6,718,"0.55165","0.43931","0.43931" +"GO:0045860","positive regulation of protein kinase ac...",11,5,5.88,1248,"0.79823","0.44161","0.44161" +"GO:0008645","hexose transmembrane transport",6,3,3.21,1066,"0.71872","0.44253","0.44253" +"GO:0015749","monosaccharide transmembrane transport",6,3,3.21,1067,"0.71872","0.44253","0.44253" +"GO:0034219","carbohydrate transmembrane transport",6,3,3.21,1068,"0.71872","0.44253","0.44253" +"GO:0045595","regulation of cell differentiation",86,42,45.96,1369,"0.83733","0.44450","0.44450" +"GO:0002699","positive regulation of immune effector p...",9,3,4.81,1955,"0.94000","0.44540","0.44540" +"GO:0051924","regulation of calcium ion transport",11,6,5.88,924,"0.59279","0.44953","0.44953" +"GO:0007020","microtubule nucleation",5,2,2.67,1392,"0.85289","0.45012","0.45012" +"GO:0010968","regulation of microtubule nucleation",5,2,2.67,1393,"0.85289","0.45012","0.45012" +"GO:0060236","regulation of mitotic spindle organizati...",5,2,2.67,1394,"0.85289","0.45012","0.45012" +"GO:0090063","positive regulation of microtubule nucle...",5,2,2.67,1395,"0.85289","0.45012","0.45012" +"GO:0090169","regulation of spindle assembly",5,2,2.67,1396,"0.85289","0.45012","0.45012" +"GO:0090224","regulation of spindle organization",5,2,2.67,1397,"0.85289","0.45012","0.45012" +"GO:1901673","regulation of mitotic spindle assembly",5,2,2.67,1398,"0.85289","0.45012","0.45012" +"GO:0002252","immune effector process",24,11,12.83,1360,"0.83081","0.45047","0.45047" +"GO:0007017","microtubule-based process",49,22,26.19,1772,"0.91252","0.45056","0.45056" +"GO:0031644","regulation of neurological system proces...",6,4,3.21,534,"0.41027","0.45106","0.45106" +"GO:0090277","positive regulation of peptide hormone s...",6,4,3.21,535,"0.41027","0.45106","0.45106" +"GO:0060322","head development",54,26,28.86,1307,"0.82333","0.45221","0.45221" +"GO:0030336","negative regulation of cell migration",8,2,4.28,2261,"0.97771","0.45240","0.45240" +"GO:0051271","negative regulation of cellular componen...",8,2,4.28,2262,"0.97771","0.45240","0.45240" +"GO:2000146","negative regulation of cell motility",8,2,4.28,2263,"0.97771","0.45240","0.45240" +"GO:0045087","innate immune response",17,4,9.09,2480,"0.99730","0.45309","0.45309" +"GO:0051648","vesicle localization",17,9,9.09,952,"0.61403","0.45393","0.45393" +"GO:0032270","positive regulation of cellular protein ...",51,20,27.26,2363,"0.98622","0.45593","0.45593" +"GO:0016126","sterol biosynthetic process",9,6,4.81,403,"0.32587","0.45975","0.45975" +"GO:0000082","G1/S transition of mitotic cell cycle",9,4,4.81,1280,"0.80957","0.46007","0.46007" +"GO:0021537","telencephalon development",10,5,5.34,1012,"0.70485","0.46095","0.46095" +"GO:0021543","pallium development",10,5,5.34,1013,"0.70485","0.46095","0.46095" +"GO:0034401","chromatin organization involved in regul...",5,1,2.67,2278,"0.97824","0.46108","0.46108" +"GO:0070828","heterochromatin organization",5,1,2.67,2279,"0.97824","0.46108","0.46108" +"GO:0070868","heterochromatin organization involved in...",5,1,2.67,2280,"0.97824","0.46108","0.46108" +"GO:0097549","chromatin organization involved in negat...",5,1,2.67,2281,"0.97824","0.46108","0.46108" +"GO:0046685","response to arsenic-containing substance",5,0,2.67,2617,"1.00000","0.46108","0.46108" +"GO:0043393","regulation of protein binding",8,3,4.28,1554,"0.89652","0.46125","0.46125" +"GO:0032355","response to estradiol",11,4,5.88,1903,"0.92575","0.46151","0.46151" +"GO:0097237","cellular response to toxic substance",11,3,5.88,2336,"0.98106","0.46151","0.46151" +"GO:0006486","protein glycosylation",41,18,21.91,1788,"0.91824","0.46280","0.46280" +"GO:0043413","macromolecule glycosylation",41,18,21.91,1789,"0.91824","0.46280","0.46280" +"GO:0070085","glycosylation",41,18,21.91,1790,"0.91824","0.46280","0.46280" +"GO:0022904","respiratory electron transport chain",13,8,6.95,506,"0.38219","0.46291","0.46291" +"GO:0032635","interleukin-6 production",3,2,1.6,719,"0.55165","0.46325","0.46325" +"GO:0030308","negative regulation of cell growth",10,7,5.34,324,"0.23374","0.46485","0.46485" +"GO:0006182","cGMP biosynthetic process",4,3,2.14,484,"0.36577","0.46577","0.46577" +"GO:0046068","cGMP metabolic process",4,3,2.14,485,"0.36577","0.46577","0.46577" +"GO:0042220","response to cocaine",3,1,1.6,1592,"0.89926","0.46638","0.46638" +"GO:0032880","regulation of protein localization",40,21,21.38,950,"0.61172","0.46926","0.46926" +"GO:0006914","autophagy",30,15,16.03,1049,"0.71463","0.47112","0.47112" +"GO:0061919","process utilizing autophagic mechanism",30,15,16.03,1050,"0.71463","0.47112","0.47112" +"GO:0001508","action potential",4,2,2.14,1129,"0.73753","0.47121","0.47121" +"GO:0006942","regulation of striated muscle contractio...",4,2,2.14,1130,"0.73753","0.47121","0.47121" +"GO:0035456","response to interferon-beta",4,2,2.14,1131,"0.73753","0.47121","0.47121" +"GO:0035637","multicellular organismal signaling",4,2,2.14,1132,"0.73753","0.47121","0.47121" +"GO:0055117","regulation of cardiac muscle contraction",4,2,2.14,1133,"0.73753","0.47121","0.47121" +"GO:0061337","cardiac conduction",4,2,2.14,1134,"0.73753","0.47121","0.47121" +"GO:0043094","cellular metabolic compound salvage",6,4,3.21,536,"0.41027","0.47135","0.47135" +"GO:0030865","cortical cytoskeleton organization",9,4,4.81,1281,"0.80957","0.47144","0.47144" +"GO:0019627","urea metabolic process",3,2,1.6,720,"0.55165","0.47152","0.47152" +"GO:0006694","steroid biosynthetic process",19,11,10.16,560,"0.43905","0.47172","0.47172" +"GO:0030587","sorocarp development",8,5,4.28,572,"0.44079","0.47332","0.47332" +"GO:0071901","negative regulation of protein serine/th...",8,4,4.28,1029,"0.70951","0.47332","0.47332" +"GO:0090702","non-reproductive fruiting body developme...",8,5,4.28,573,"0.44079","0.47332","0.47332" +"GO:0099120","socially cooperative development",8,5,4.28,574,"0.44079","0.47332","0.47332" +"GO:0071709","membrane assembly",8,5,4.28,575,"0.44079","0.47419","0.47419" +"GO:1901698","response to nitrogen compound",47,24,25.12,979,"0.68459","0.47424","0.47424" +"GO:0043467","regulation of generation of precursor me...",4,2,2.14,1135,"0.73753","0.47518","0.47518" +"GO:1901796","regulation of signal transduction by p53...",4,2,2.14,1136,"0.73753","0.47518","0.47518" +"GO:1903578","regulation of ATP metabolic process",4,2,2.14,1137,"0.73753","0.47518","0.47518" +"GO:0043405","regulation of MAP kinase activity",10,4,5.34,1515,"0.87938","0.47583","0.47583" +"GO:0062013","positive regulation of small molecule me...",5,3,2.67,841,"0.56449","0.47657","0.47657" +"GO:0045664","regulation of neuron differentiation",40,20,21.38,1106,"0.72650","0.47756","0.47756" +"GO:0032309","icosanoid secretion",4,2,2.14,1138,"0.73753","0.47767","0.47767" +"GO:0050482","arachidonic acid secretion",4,2,2.14,1139,"0.73753","0.47767","0.47767" +"GO:0071715","icosanoid transport",4,2,2.14,1140,"0.73753","0.47767","0.47767" +"GO:1901571","fatty acid derivative transport",4,2,2.14,1141,"0.73753","0.47767","0.47767" +"GO:1903963","arachidonate transport",4,2,2.14,1142,"0.73753","0.47767","0.47767" +"GO:0098609","cell-cell adhesion",54,34,28.86,134,"0.09966","0.07577","0.47895" +"GO:0010286","heat acclimation",3,2,1.6,721,"0.55165","0.47927","0.47927" +"GO:0010803","regulation of tumor necrosis factor-medi...",3,2,1.6,722,"0.55165","0.47927","0.47927" +"GO:0032069","regulation of nuclease activity",3,2,1.6,723,"0.55165","0.47927","0.47927" +"GO:0032075","positive regulation of nuclease activity",3,2,1.6,724,"0.55165","0.47927","0.47927" +"GO:0032637","interleukin-8 production",3,2,1.6,725,"0.55165","0.47927","0.47927" +"GO:0032677","regulation of interleukin-8 production",3,2,1.6,726,"0.55165","0.47927","0.47927" +"GO:0032757","positive regulation of interleukin-8 pro...",3,2,1.6,727,"0.55165","0.47927","0.47927" +"GO:0060699","regulation of endoribonuclease activity",3,2,1.6,728,"0.55165","0.47927","0.47927" +"GO:0060700","regulation of ribonuclease activity",3,2,1.6,729,"0.55165","0.47927","0.47927" +"GO:0070370","cellular heat acclimation",3,2,1.6,730,"0.55165","0.47927","0.47927" +"GO:1902380","positive regulation of endoribonuclease ...",3,2,1.6,731,"0.55165","0.47927","0.47927" +"GO:1903265","positive regulation of tumor necrosis fa...",3,2,1.6,732,"0.55165","0.47927","0.47927" +"GO:0009913","epidermal cell differentiation",4,2,2.14,1143,"0.73753","0.47966","0.47966" +"GO:0045682","regulation of epidermis development",3,2,1.6,733,"0.55165","0.48013","0.48013" +"GO:0007155","cell adhesion",87,51,46.5,269,"0.19062","0.12639","0.48132" +"GO:0022610","biological adhesion",87,51,46.5,270,"0.19062","0.12639","0.48132" +"GO:0010389","regulation of G2/M transition of mitotic...",4,2,2.14,1144,"0.73753","0.48315","0.48315" +"GO:1902749","regulation of cell cycle G2/M phase tran...",4,2,2.14,1145,"0.73753","0.48315","0.48315" +"GO:1902806","regulation of cell cycle G1/S phase tran...",4,3,2.14,486,"0.36577","0.48315","0.48315" +"GO:0010332","response to gamma radiation",3,2,1.6,734,"0.55165","0.48445","0.48445" +"GO:0071479","cellular response to ionizing radiation",3,2,1.6,735,"0.55165","0.48445","0.48445" +"GO:0071480","cellular response to gamma radiation",3,2,1.6,736,"0.55165","0.48445","0.48445" +"GO:0045666","positive regulation of neuron differenti...",15,7,8.02,1225,"0.78471","0.48527","0.48527" +"GO:0031175","neuron projection development",70,33,37.41,1529,"0.88392","0.48582","0.48582" +"GO:0030072","peptide hormone secretion",10,7,5.34,325,"0.23374","0.48610","0.48610" +"GO:0046879","hormone secretion",10,7,5.34,326,"0.23374","0.48610","0.48610" +"GO:0050708","regulation of protein secretion",10,7,5.34,327,"0.23374","0.48610","0.48610" +"GO:0010508","positive regulation of autophagy",6,1,3.21,2389,"0.98990","0.48702","0.48702" +"GO:0046700","heterocycle catabolic process",35,19,18.71,630,"0.52958","0.48812","0.48812" +"GO:0007178","transmembrane receptor protein serine/th...",15,9,8.02,524,"0.40376","0.48981","0.48981" +"GO:0018242","protein O-linked glycosylation via serin...",5,2,2.67,1399,"0.85289","0.48998","0.48998" +"GO:0018243","protein O-linked glycosylation via threo...",5,2,2.67,1400,"0.85289","0.48998","0.48998" +"GO:0007399","nervous system development",163,80,87.12,1546,"0.89251","0.49099","0.49099" +"GO:0009395","phospholipid catabolic process",6,3,3.21,1069,"0.71872","0.49132","0.49132" +"GO:0007166","cell surface receptor signaling pathway",112,59,59.86,940,"0.60488","0.49145","0.49145" +"GO:0043086","negative regulation of catalytic activit...",29,16,15.5,622,"0.50167","0.02331","0.49159" +"GO:0048771","tissue remodeling",12,10,6.41,61,"0.03309","0.03215","0.49229" +"GO:0050771","negative regulation of axonogenesis",4,3,2.14,487,"0.36577","0.49242","0.49242" +"GO:1901652","response to peptide",12,8,6.41,343,"0.26668","0.49251","0.49251" +"GO:0009100","glycoprotein metabolic process",47,21,25.12,1773,"0.91373","0.49278","0.49278" +"GO:0006814","sodium ion transport",21,13,11.22,374,"0.28925","0.49282","0.49282" +"GO:0006536","glutamate metabolic process",3,1,1.6,1593,"0.89926","0.49401","0.49401" +"GO:0050764","regulation of phagocytosis",11,5,5.88,1249,"0.79823","0.49458","0.49458" +"GO:0071478","cellular response to radiation",11,5,5.88,1250,"0.79823","0.49458","0.49458" +"GO:0009651","response to salt stress",4,1,2.14,2004,"0.95317","0.49468","0.49468" +"GO:0010212","response to ionizing radiation",4,2,2.14,1146,"0.73753","0.49468","0.49468" +"GO:0032868","response to insulin",4,2,2.14,1147,"0.73753","0.49468","0.49468" +"GO:0032869","cellular response to insulin stimulus",4,2,2.14,1148,"0.73753","0.49468","0.49468" +"GO:0072347","response to anesthetic",4,1,2.14,2005,"0.95317","0.49468","0.49468" +"GO:0071482","cellular response to light stimulus",8,3,4.28,1555,"0.89652","0.49489","0.49489" +"GO:0000045","autophagosome assembly",5,3,2.67,842,"0.56449","0.49560","0.49560" +"GO:1905037","autophagosome organization",5,3,2.67,843,"0.56449","0.49560","0.49560" +"GO:0031099","regeneration",15,4,8.02,2415,"0.99134","0.49567","0.49567" +"GO:0006662","glycerol ether metabolic process",3,2,1.6,737,"0.55165","0.49662","0.49662" +"GO:0018904","ether metabolic process",3,2,1.6,738,"0.55165","0.49662","0.49662" +"GO:0031347","regulation of defense response",14,4,7.48,2354,"0.98480","0.49864","0.49864" +"GO:0002931","response to ischemia",3,2,1.6,739,"0.55165","0.49866","0.49866" +"GO:0032103","positive regulation of response to exter...",7,3,3.74,1336,"0.82639","0.49875","0.49875" +"GO:0009408","response to heat",24,10,12.83,1783,"0.91443","0.50027","0.50027" +"GO:0050770","regulation of axonogenesis",9,4,4.81,1282,"0.80957","0.50201","0.50201" +"GO:0010893","positive regulation of steroid biosynthe...",3,2,1.6,740,"0.55165","0.50215","0.50215" +"GO:0045540","regulation of cholesterol biosynthetic p...",3,2,1.6,741,"0.55165","0.50215","0.50215" +"GO:0045542","positive regulation of cholesterol biosy...",3,2,1.6,742,"0.55165","0.50215","0.50215" +"GO:0045940","positive regulation of steroid metabolic...",3,2,1.6,743,"0.55165","0.50215","0.50215" +"GO:0090181","regulation of cholesterol metabolic proc...",3,2,1.6,744,"0.55165","0.50215","0.50215" +"GO:0090205","positive regulation of cholesterol metab...",3,2,1.6,745,"0.55165","0.50215","0.50215" +"GO:0106120","positive regulation of sterol biosynthet...",3,2,1.6,746,"0.55165","0.50215","0.50215" +"GO:1902932","positive regulation of alcohol biosynthe...",3,2,1.6,747,"0.55165","0.50215","0.50215" +"GO:0003205","cardiac chamber development",7,2,3.74,2143,"0.95742","0.50238","0.50238" +"GO:0007584","response to nutrient",7,4,3.74,896,"0.57515","0.50238","0.50238" +"GO:0043279","response to alkaloid",7,2,3.74,2144,"0.95742","0.50238","0.50238" +"GO:0050796","regulation of insulin secretion",7,5,3.74,370,"0.28660","0.50238","0.50238" +"GO:0010876","lipid localization",30,14,16.03,1310,"0.82478","0.50330","0.50330" +"GO:0010243","response to organonitrogen compound",46,23,24.59,1110,"0.73371","0.50428","0.50428" +"GO:0009314","response to radiation",24,13,12.83,819,"0.55521","0.50773","0.50773" +"GO:0036294","cellular response to decreased oxygen le...",4,2,2.14,1149,"0.73753","0.50781","0.50781" +"GO:0071453","cellular response to oxygen levels",4,2,2.14,1150,"0.73753","0.50781","0.50781" +"GO:0071456","cellular response to hypoxia",4,2,2.14,1151,"0.73753","0.50781","0.50781" +"GO:1903573","negative regulation of response to endop...",4,1,2.14,2006,"0.95317","0.50781","0.50781" +"GO:0060537","muscle tissue development",34,18,18.17,934,"0.59327","0.32507","0.50832" +"GO:1901701","cellular response to oxygen-containing c...",44,20,23.52,1538,"0.88972","0.50861","0.50861" +"GO:0044248","cellular catabolic process",131,66,70.02,1243,"0.79238","0.50875","0.50875" +"GO:0051222","positive regulation of protein transport",16,8,8.55,986,"0.70227","0.50883","0.50883" +"GO:1904951","positive regulation of establishment of ...",16,8,8.55,987,"0.70227","0.50883","0.50883" +"GO:0010564","regulation of cell cycle process",23,11,12.29,1204,"0.77458","0.51038","0.51038" +"GO:0001558","regulation of cell growth",19,8,10.16,1540,"0.88988","0.51100","0.51100" +"GO:0048167","regulation of synaptic plasticity",9,6,4.81,404,"0.32587","0.51249","0.51249" +"GO:0051726","regulation of cell cycle",42,20,22.45,1301,"0.82134","0.51380","0.51380" +"GO:0030162","regulation of proteolysis",29,12,15.5,1935,"0.93296","0.51423","0.51423" +"GO:0043903","regulation of symbiosis, encompassing mu...",15,7,8.02,1226,"0.78471","0.51466","0.51466" +"GO:0008360","regulation of cell shape",5,2,2.67,1401,"0.85289","0.51484","0.51484" +"GO:0016358","dendrite development",20,10,10.69,1003,"0.70456","0.51491","0.51491" +"GO:0030705","cytoskeleton-dependent intracellular tra...",20,7,10.69,2228,"0.97081","0.51662","0.51662" +"GO:0045454","cell redox homeostasis",16,9,8.55,624,"0.51263","0.51685","0.51685" +"GO:0043062","extracellular structure organization",9,4,4.81,1283,"0.80957","0.51826","0.51826" +"GO:1901361","organic cyclic compound catabolic proces...",39,20,20.84,977,"0.66911","0.51895","0.51895" +"GO:0030029","actin filament-based process",67,37,35.81,552,"0.43302","0.05595","0.51971" +"GO:0008306","associative learning",7,4,3.74,897,"0.57515","0.51985","0.51985" +"GO:0030534","adult behavior",7,2,3.74,2145,"0.95742","0.51985","0.51985" +"GO:0140013","meiotic nuclear division",7,1,3.74,2444,"0.99531","0.51985","0.51985" +"GO:0021680","cerebellar Purkinje cell layer developme...",4,2,2.14,1152,"0.73753","0.52001","0.52001" +"GO:0021695","cerebellar cortex development",4,2,2.14,1153,"0.73753","0.52001","0.52001" +"GO:0007420","brain development",52,25,27.79,1306,"0.82278","0.52080","0.52080" +"GO:0050767","regulation of neurogenesis",45,21,24.05,1483,"0.85802","0.52191","0.52191" +"GO:0090151","establishment of protein localization to...",3,1,1.6,1594,"0.89926","0.52209","0.52209" +"GO:0033993","response to lipid",51,26,27.26,980,"0.69175","0.52226","0.52226" +"GO:0006796","phosphate-containing compound metabolic ...",358,193,191.34,579,"0.44733","0.50227","0.52252" +"GO:0042398","cellular modified amino acid biosyntheti...",7,3,3.74,1337,"0.82639","0.52255","0.52255" +"GO:0071216","cellular response to biotic stimulus",7,4,3.74,898,"0.57515","0.52255","0.52255" +"GO:0031396","regulation of protein ubiquitination",11,6,5.88,925,"0.59279","0.52274","0.52274" +"GO:1903320","regulation of protein modification by sm...",11,6,5.88,926,"0.59279","0.52274","0.52274" +"GO:0032259","methylation",26,8,13.9,2439,"0.99460","0.52372","0.52372" +"GO:0009416","response to light stimulus",20,11,10.69,633,"0.53590","0.52406","0.52406" +"GO:0042558","pteridine-containing compound metabolic ...",6,3,3.21,1070,"0.71872","0.52569","0.52569" +"GO:0032273","positive regulation of protein polymeriz...",20,8,10.69,1891,"0.92457","0.52578","0.52578" +"GO:0017015","regulation of transforming growth factor...",4,3,2.14,488,"0.36577","0.52588","0.52588" +"GO:0040019","positive regulation of embryonic develop...",4,3,2.14,489,"0.36577","0.52588","0.52588" +"GO:1903844","regulation of cellular response to trans...",4,3,2.14,490,"0.36577","0.52588","0.52588" +"GO:0007617","mating behavior",3,2,1.6,748,"0.55165","0.52740","0.52740" +"GO:0050830","defense response to Gram-positive bacter...",3,1,1.6,1595,"0.89926","0.52740","0.52740" +"GO:0060324","face development",3,1,1.6,1596,"0.89926","0.52740","0.52740" +"GO:0071711","basement membrane organization",3,2,1.6,749,"0.55165","0.52740","0.52740" +"GO:0002066","columnar/cuboidal epithelial cell develo...",10,2,5.34,2429,"0.99412","0.52940","0.52940" +"GO:0048524","positive regulation of viral process",10,4,5.34,1516,"0.87938","0.52940","0.52940" +"GO:0071241","cellular response to inorganic substance",10,3,5.34,2192,"0.96597","0.52940","0.52940" +"GO:0071248","cellular response to metal ion",10,3,5.34,2193,"0.96597","0.52940","0.52940" +"GO:0043902","positive regulation of multi-organism pr...",15,7,8.02,1227,"0.78471","0.53051","0.53051" +"GO:0006555","methionine metabolic process",3,2,1.6,750,"0.55165","0.53124","0.53124" +"GO:0009086","methionine biosynthetic process",3,2,1.6,751,"0.55165","0.53124","0.53124" +"GO:0019509","L-methionine salvage from methylthioaden...",3,2,1.6,752,"0.55165","0.53124","0.53124" +"GO:0043102","amino acid salvage",3,2,1.6,753,"0.55165","0.53124","0.53124" +"GO:0071265","L-methionine biosynthetic process",3,2,1.6,754,"0.55165","0.53124","0.53124" +"GO:0071267","L-methionine salvage",3,2,1.6,755,"0.55165","0.53124","0.53124" +"GO:0007204","positive regulation of cytosolic calcium...",5,3,2.67,844,"0.56449","0.53196","0.53196" +"GO:0051480","regulation of cytosolic calcium ion conc...",5,3,2.67,845,"0.56449","0.53196","0.53196" +"GO:0006970","response to osmotic stress",6,2,3.21,1847,"0.91998","0.53300","0.53300" +"GO:0032990","cell part morphogenesis",51,24,27.26,1473,"0.85691","0.53333","0.53333" +"GO:0060284","regulation of cell development",51,24,27.26,1474,"0.85691","0.53333","0.53333" +"GO:0006636","unsaturated fatty acid biosynthetic proc...",3,2,1.6,756,"0.55165","0.53390","0.53390" +"GO:0051170","import into nucleus",11,5,5.88,1251,"0.79823","0.53449","0.53449" +"GO:0006206","pyrimidine nucleobase metabolic process",3,1,1.6,1597,"0.89926","0.53508","0.53508" +"GO:0006207","'de novo' pyrimidine nucleobase biosynth...",3,1,1.6,1598,"0.89926","0.53508","0.53508" +"GO:0019856","pyrimidine nucleobase biosynthetic proce...",3,1,1.6,1599,"0.89926","0.53508","0.53508" +"GO:0009409","response to cold",4,1,2.14,2007,"0.95317","0.53844","0.53844" +"GO:0051928","positive regulation of calcium ion trans...",4,1,2.14,2008,"0.95317","0.53844","0.53844" +"GO:0046688","response to copper ion",4,0,2.14,2618,"1.00000","0.53844","0.53844" +"GO:1990138","neuron projection extension",8,1,4.28,2495,"0.99782","0.54210","0.54210" +"GO:0007622","rhythmic behavior",3,2,1.6,757,"0.55165","0.54220","0.54220" +"GO:0048512","circadian behavior",3,2,1.6,758,"0.55165","0.54220","0.54220" +"GO:0002376","immune system process",85,41,45.43,1486,"0.86256","0.54225","0.54225" +"GO:0007283","spermatogenesis",25,15,13.36,387,"0.32497","0.54316","0.54316" +"GO:0051347","positive regulation of transferase activ...",17,7,9.09,1581,"0.89653","0.54329","0.54329" +"GO:0032886","regulation of microtubule-based process",18,6,9.62,2242,"0.97528","0.54444","0.54444" +"GO:0051188","cofactor biosynthetic process",44,28,23.52,143,"0.11162","0.00895","0.54526" +"GO:0043536","positive regulation of blood vessel endo...",3,1,1.6,1600,"0.89926","0.54576","0.54576" +"GO:1902175","regulation of oxidative stress-induced i...",3,1,1.6,1601,"0.89926","0.54576","0.54576" +"GO:1902176","negative regulation of oxidative stress-...",3,1,1.6,1602,"0.89926","0.54576","0.54576" +"GO:0010948","negative regulation of cell cycle proces...",7,3,3.74,1338,"0.82639","0.54699","0.54699" +"GO:0001816","cytokine production",23,13,12.29,601,"0.46737","0.54852","0.54852" +"GO:0006793","phosphorus metabolic process",360,194,192.41,580,"0.45059","0.52770","0.54858" +"GO:0007346","regulation of mitotic cell cycle",15,7,8.02,1228,"0.78471","0.55046","0.55046" +"GO:0045088","regulation of innate immune response",12,2,6.41,2511,"0.99850","0.55104","0.55104" +"GO:0007059","chromosome segregation",7,1,3.74,2445,"0.99531","0.55109","0.55109" +"GO:0098813","nuclear chromosome segregation",7,1,3.74,2446,"0.99531","0.55109","0.55109" +"GO:0014013","regulation of gliogenesis",4,3,2.14,491,"0.36577","0.55156","0.55156" +"GO:0006094","gluconeogenesis",5,3,2.67,846,"0.56449","0.55267","0.55267" +"GO:0019319","hexose biosynthetic process",5,3,2.67,847,"0.56449","0.55267","0.55267" +"GO:0046364","monosaccharide biosynthetic process",5,3,2.67,848,"0.56449","0.55267","0.55267" +"GO:0003231","cardiac ventricle development",6,1,3.21,2390,"0.98990","0.55444","0.55444" +"GO:1903169","regulation of calcium ion transmembrane ...",6,3,3.21,1071,"0.71872","0.55444","0.55444" +"GO:1904950","negative regulation of establishment of ...",6,3,3.21,1072,"0.71872","0.55444","0.55444" +"GO:0045861","negative regulation of proteolysis",11,5,5.88,1252,"0.79823","0.55625","0.55625" +"GO:0051384","response to glucocorticoid",4,2,2.14,1154,"0.73753","0.55802","0.55802" +"GO:0015918","sterol transport",7,5,3.74,371,"0.28660","0.55811","0.55811" +"GO:0048232","male gamete generation",26,15,13.9,525,"0.40763","0.55846","0.55846" +"GO:0007605","sensory perception of sound",4,2,2.14,1155,"0.73753","0.55905","0.55905" +"GO:0032388","positive regulation of intracellular tra...",10,5,5.34,1014,"0.70485","0.56036","0.56036" +"GO:1903747","regulation of establishment of protein l...",10,4,5.34,1517,"0.87938","0.56036","0.56036" +"GO:0009074","aromatic amino acid family catabolic pro...",9,6,4.81,405,"0.32587","0.56059","0.56059" +"GO:0033865","nucleoside bisphosphate metabolic proces...",15,8,8.02,941,"0.60745","0.56249","0.56249" +"GO:0033875","ribonucleoside bisphosphate metabolic pr...",15,8,8.02,942,"0.60745","0.56249","0.56249" +"GO:0034032","purine nucleoside bisphosphate metabolic...",15,8,8.02,943,"0.60745","0.56249","0.56249" +"GO:0043277","apoptotic cell clearance",3,1,1.6,1603,"0.89926","0.56305","0.56305" +"GO:0016054","organic acid catabolic process",24,13,12.83,820,"0.55521","0.56323","0.56323" +"GO:0046395","carboxylic acid catabolic process",24,13,12.83,821,"0.55521","0.56323","0.56323" +"GO:0046903","secretion",62,31,33.14,1195,"0.75227","0.56347","0.56347" +"GO:0001655","urogenital system development",21,8,11.22,1994,"0.94936","0.56401","0.56401" +"GO:0072001","renal system development",21,8,11.22,1995,"0.94936","0.56401","0.56401" +"GO:0048017","inositol lipid-mediated signaling",3,1,1.6,1604,"0.89926","0.56454","0.56454" +"GO:0048514","blood vessel morphogenesis",19,8,10.16,1541,"0.88988","0.56581","0.56581" +"GO:0042559","pteridine-containing compound biosynthet...",5,3,2.67,849,"0.56449","0.56654","0.56654" +"GO:0006730","one-carbon metabolic process",6,3,3.21,1073,"0.71872","0.56668","0.56668" +"GO:0050878","regulation of body fluid levels",14,11,7.48,75,"0.04960","0.02924","0.56871" +"GO:0007589","body fluid secretion",3,2,1.6,759,"0.55165","0.56872","0.56872" +"GO:0030252","growth hormone secretion",3,2,1.6,760,"0.55165","0.56872","0.56872" +"GO:1905954","positive regulation of lipid localizatio...",3,2,1.6,761,"0.55165","0.56872","0.56872" +"GO:0030182","neuron differentiation",98,46,52.38,1883,"0.92250","0.57073","0.57073" +"GO:0009410","response to xenobiotic stimulus",6,2,3.21,1848,"0.91998","0.57092","0.57092" +"GO:0046488","phosphatidylinositol metabolic process",24,14,12.83,513,"0.39305","0.57183","0.57183" +"GO:0048646","anatomical structure formation involved ...",65,31,34.74,1479,"0.85754","0.26945","0.57186" +"GO:0015695","organic cation transport",6,3,3.21,1074,"0.71872","0.57219","0.57219" +"GO:0055088","lipid homeostasis",6,2,3.21,1849,"0.91998","0.57346","0.57346" +"GO:0071219","cellular response to molecule of bacteri...",6,3,3.21,1075,"0.71872","0.57346","0.57346" +"GO:0071222","cellular response to lipopolysaccharide",6,3,3.21,1076,"0.71872","0.57346","0.57346" +"GO:0032872","regulation of stress-activated MAPK casc...",5,2,2.67,1402,"0.85289","0.57349","0.57349" +"GO:0070302","regulation of stress-activated protein k...",5,2,2.67,1403,"0.85289","0.57349","0.57349" +"GO:0001817","regulation of cytokine production",22,12,11.76,637,"0.54595","0.57442","0.57442" +"GO:0070201","regulation of establishment of protein l...",22,11,11.76,1019,"0.70623","0.57442","0.57442" +"GO:0051298","centrosome duplication",5,2,2.67,1404,"0.85289","0.57465","0.57465" +"GO:1900034","regulation of cellular response to heat",5,2,2.67,1405,"0.85289","0.57465","0.57465" +"GO:0000278","mitotic cell cycle",34,14,18.17,1990,"0.94718","0.57540","0.57540" +"GO:0010970","transport along microtubule",19,6,10.16,2359,"0.98481","0.57571","0.57571" +"GO:0099111","microtubule-based transport",19,6,10.16,2360,"0.98481","0.57571","0.57571" +"GO:0010506","regulation of autophagy",17,10,9.09,550,"0.42249","0.57610","0.57610" +"GO:0007127","meiosis I",4,0,2.14,2619,"1.00000","0.57666","0.57666" +"GO:0002793","positive regulation of peptide secretion",8,5,4.28,576,"0.44079","0.57666","0.57666" +"GO:0018193","peptidyl-amino acid modification",51,17,27.26,2514,"0.99892","0.57670","0.57670" +"GO:0098742","cell-cell adhesion via plasma-membrane a...",18,10,9.62,628,"0.52487","0.57670","0.57670" +"GO:0007631","feeding behavior",7,4,3.74,899,"0.57515","0.57691","0.57691" +"GO:0044262","cellular carbohydrate metabolic process",18,11,9.62,417,"0.34059","0.57817","0.57817" +"GO:0097193","intrinsic apoptotic signaling pathway",13,6,6.95,1235,"0.79033","0.57819","0.57819" +"GO:0030031","cell projection assembly",33,14,17.64,1915,"0.92700","0.57888","0.57888" +"GO:0120031","plasma membrane bounded cell projection ...",33,14,17.64,1916,"0.92700","0.57888","0.57888" +"GO:0044091","membrane biogenesis",11,5,5.88,1253,"0.79823","0.57923","0.57923" +"GO:0009142","nucleoside triphosphate biosynthetic pro...",24,14,12.83,514,"0.39305","0.58087","0.58087" +"GO:0009145","purine nucleoside triphosphate biosynthe...",24,14,12.83,515,"0.39305","0.58087","0.58087" +"GO:0009201","ribonucleoside triphosphate biosynthetic...",24,14,12.83,516,"0.39305","0.58087","0.58087" +"GO:0009206","purine ribonucleoside triphosphate biosy...",24,14,12.83,517,"0.39305","0.58087","0.58087" +"GO:0071900","regulation of protein serine/threonine k...",16,7,8.55,1379,"0.84884","0.58113","0.58113" +"GO:0051247","positive regulation of protein metabolic...",53,21,28.33,2361,"0.98541","0.58182","0.58182" +"GO:0046467","membrane lipid biosynthetic process",10,6,5.34,596,"0.46405","0.58334","0.58334" +"GO:0010952","positive regulation of peptidase activit...",4,2,2.14,1156,"0.73753","0.58392","0.58392" +"GO:0006493","protein O-linked glycosylation",15,6,8.02,1757,"0.90449","0.58395","0.58395" +"GO:0007162","negative regulation of cell adhesion",7,4,3.74,900,"0.57515","0.58437","0.58437" +"GO:0014706","striated muscle tissue development",32,17,17.1,918,"0.58651","0.38010","0.58472" +"GO:0051656","establishment of organelle localization",19,9,10.16,1216,"0.77786","0.58527","0.58527" +"GO:0048585","negative regulation of response to stimu...",67,32,35.81,1481,"0.85788","0.58595","0.58595" +"GO:0034097","response to cytokine",20,8,10.69,1892,"0.92457","0.58657","0.58657" +"GO:0050769","positive regulation of neurogenesis",22,10,11.76,1364,"0.83393","0.58697","0.58697" +"GO:0003170","heart valve development",3,2,1.6,762,"0.55165","0.58789","0.58789" +"GO:0003179","heart valve morphogenesis",3,2,1.6,763,"0.55165","0.58789","0.58789" +"GO:0007229","integrin-mediated signaling pathway",3,2,1.6,764,"0.55165","0.58789","0.58789" +"GO:0030511","positive regulation of transforming grow...",3,2,1.6,765,"0.55165","0.58789","0.58789" +"GO:0031532","actin cytoskeleton reorganization",3,1,1.6,1605,"0.89926","0.58789","0.58789" +"GO:0032233","positive regulation of actin filament bu...",3,1,1.6,1606,"0.89926","0.58789","0.58789" +"GO:0045806","negative regulation of endocytosis",3,1,1.6,1607,"0.89926","0.58789","0.58789" +"GO:1903846","positive regulation of cellular response...",3,2,1.6,766,"0.55165","0.58789","0.58789" +"GO:0048812","neuron projection morphogenesis",49,23,26.19,1475,"0.85716","0.58796","0.58796" +"GO:0048858","cell projection morphogenesis",49,23,26.19,1476,"0.85716","0.58796","0.58796" +"GO:0120039","plasma membrane bounded cell projection ...",49,23,26.19,1477,"0.85716","0.58796","0.58796" +"GO:0043407","negative regulation of MAP kinase activi...",3,2,1.6,767,"0.55165","0.58909","0.58909" +"GO:0006111","regulation of gluconeogenesis",3,2,1.6,768,"0.55165","0.58999","0.58999" +"GO:0019896","axonal transport of mitochondrion",3,1,1.6,1608,"0.89926","0.58999","0.58999" +"GO:0032350","regulation of hormone metabolic process",3,2,1.6,769,"0.55165","0.58999","0.58999" +"GO:0032352","positive regulation of hormone metabolic...",3,2,1.6,770,"0.55165","0.58999","0.58999" +"GO:0034643","establishment of mitochondrion localizat...",3,1,1.6,1609,"0.89926","0.58999","0.58999" +"GO:0042711","maternal behavior",3,1,1.6,1610,"0.89926","0.58999","0.58999" +"GO:0043255","regulation of carbohydrate biosynthetic ...",3,2,1.6,771,"0.55165","0.58999","0.58999" +"GO:0047497","mitochondrion transport along microtubul...",3,1,1.6,1611,"0.89926","0.58999","0.58999" +"GO:0051646","mitochondrion localization",3,1,1.6,1612,"0.89926","0.58999","0.58999" +"GO:0051654","establishment of mitochondrion localizat...",3,1,1.6,1613,"0.89926","0.58999","0.58999" +"GO:0060746","parental behavior",3,1,1.6,1614,"0.89926","0.58999","0.58999" +"GO:0030707","ovarian follicle cell development",9,2,4.81,2370,"0.98849","0.59001","0.59001" +"GO:0032272","negative regulation of protein polymeriz...",8,4,4.28,1030,"0.70951","0.59118","0.59118" +"GO:0043242","negative regulation of protein complex d...",8,4,4.28,1031,"0.70951","0.59118","0.59118" +"GO:1901879","regulation of protein depolymerization",8,4,4.28,1032,"0.70951","0.59118","0.59118" +"GO:1901880","negative regulation of protein depolymer...",8,4,4.28,1033,"0.70951","0.59118","0.59118" +"GO:0001568","blood vessel development",20,9,10.69,1370,"0.83784","0.59181","0.59181" +"GO:0044283","small molecule biosynthetic process",67,35,35.81,959,"0.62839","0.59296","0.59296" +"GO:0043113","receptor clustering",5,3,2.67,850,"0.56449","0.59323","0.59323" +"GO:0010594","regulation of endothelial cell migration",5,2,2.67,1406,"0.85289","0.59439","0.59439" +"GO:0010634","positive regulation of epithelial cell m...",5,2,2.67,1407,"0.85289","0.59439","0.59439" +"GO:0010951","negative regulation of endopeptidase act...",5,2,2.67,1408,"0.85289","0.59439","0.59439" +"GO:0043154","negative regulation of cysteine-type end...",5,2,2.67,1409,"0.85289","0.59439","0.59439" +"GO:2000117","negative regulation of cysteine-type end...",5,2,2.67,1410,"0.85289","0.59439","0.59439" +"GO:0044770","cell cycle phase transition",14,5,7.48,1983,"0.94604","0.59459","0.59459" +"GO:0051056","regulation of small GTPase mediated sign...",21,11,11.22,958,"0.62609","0.59583","0.59583" +"GO:0031109","microtubule polymerization or depolymeri...",13,6,6.95,1236,"0.79033","0.59609","0.59609" +"GO:0071103","DNA conformation change",8,4,4.28,1034,"0.70951","0.59669","0.59669" +"GO:1905330","regulation of morphogenesis of an epithe...",8,7,4.28,77,"0.05277","0.00407","0.59737" +"GO:0007033","vacuole organization",14,6,7.48,1466,"0.85658","0.59807","0.59807" +"GO:0042246","tissue regeneration",11,3,5.88,2337,"0.98106","0.59821","0.59821" +"GO:0000902","cell morphogenesis",67,32,35.81,1482,"0.85788","0.59889","0.59889" +"GO:0000226","microtubule cytoskeleton organization",27,12,14.43,1501,"0.87223","0.59932","0.59932" +"GO:0035966","response to topologically incorrect prot...",18,9,9.62,997,"0.70319","0.59954","0.59954" +"GO:0031329","regulation of cellular catabolic process",32,16,17.1,1051,"0.71695","0.59968","0.59968" +"GO:0030855","epithelial cell differentiation",25,9,13.36,2243,"0.97530","0.59986","0.59986" +"GO:0000819","sister chromatid segregation",6,1,3.21,2391,"0.98990","0.60018","0.60018" +"GO:0051094","positive regulation of developmental pro...",70,35,37.41,1197,"0.76105","0.60026","0.60026" +"GO:0098657","import into cell",46,22,24.59,1302,"0.82161","0.60042","0.60042" +"GO:1900037","regulation of cellular response to hypox...",3,1,1.6,1615,"0.89926","0.60169","0.60169" +"GO:0035821","modification of morphology or physiology...",8,3,4.28,1556,"0.89652","0.60221","0.60221" +"GO:0051702","interaction with symbiont",8,3,4.28,1557,"0.89652","0.60221","0.60221" +"GO:0051817","modification of morphology or physiology...",8,3,4.28,1558,"0.89652","0.60221","0.60221" +"GO:0051851","modification by host of symbiont morphol...",8,3,4.28,1559,"0.89652","0.60221","0.60221" +"GO:1903047","mitotic cell cycle process",28,12,14.97,1762,"0.90665","0.60255","0.60255" +"GO:0006869","lipid transport",25,13,13.36,963,"0.63700","0.60300","0.60300" +"GO:0006558","L-phenylalanine metabolic process",3,1,1.6,1616,"0.89926","0.60319","0.60319" +"GO:1902221","erythrose 4-phosphate/phosphoenolpyruvat...",3,1,1.6,1617,"0.89926","0.60319","0.60319" +"GO:0007606","sensory perception of chemical stimulus",9,3,4.81,1956,"0.94000","0.60475","0.60475" +"GO:0008361","regulation of cell size",10,2,5.34,2430,"0.99412","0.60720","0.60720" +"GO:0009101","glycoprotein biosynthetic process",42,18,22.45,1949,"0.93868","0.60749","0.60749" +"GO:0050792","regulation of viral process",13,5,6.95,1776,"0.91409","0.60751","0.60751" +"GO:0010522","regulation of calcium ion transport into...",3,2,1.6,772,"0.55165","0.60769","0.60769" +"GO:0051208","sequestering of calcium ion",3,2,1.6,773,"0.55165","0.60769","0.60769" +"GO:0051209","release of sequestered calcium ion into ...",3,2,1.6,774,"0.55165","0.60769","0.60769" +"GO:0051279","regulation of release of sequestered cal...",3,2,1.6,775,"0.55165","0.60769","0.60769" +"GO:0051282","regulation of sequestering of calcium io...",3,2,1.6,776,"0.55165","0.60769","0.60769" +"GO:0051283","negative regulation of sequestering of c...",3,2,1.6,777,"0.55165","0.60769","0.60769" +"GO:0097553","calcium ion transmembrane import into cy...",3,2,1.6,778,"0.55165","0.60769","0.60769" +"GO:0001819","positive regulation of cytokine producti...",10,5,5.34,1015,"0.70485","0.60884","0.60884" +"GO:0006508","proteolysis",147,75,78.57,1196,"0.75665","0.60889","0.60889" +"GO:1902532","negative regulation of intracellular sig...",22,9,11.76,1792,"0.91916","0.60900","0.60900" +"GO:0009266","response to temperature stimulus",26,11,13.9,1768,"0.91028","0.60928","0.60928" +"GO:0006470","protein dephosphorylation",26,14,13.9,823,"0.56380","0.60969","0.60969" +"GO:0009084","glutamine family amino acid biosynthetic...",4,1,2.14,2009,"0.95317","0.61095","0.61095" +"GO:0006560","proline metabolic process",4,0,2.14,2620,"1.00000","0.61095","0.61095" +"GO:0009072","aromatic amino acid family metabolic pro...",16,10,8.55,382,"0.31908","0.61174","0.61174" +"GO:0003206","cardiac chamber morphogenesis",5,2,2.67,1411,"0.85289","0.61184","0.61184" +"GO:0006939","smooth muscle contraction",5,2,2.67,1412,"0.85289","0.61184","0.61184" +"GO:1903530","regulation of secretion by cell",20,12,10.69,432,"0.35981","0.61281","0.61281" +"GO:0002682","regulation of immune system process",48,18,25.65,2418,"0.99153","0.61298","0.61298" +"GO:0010507","negative regulation of autophagy",3,2,1.6,779,"0.55165","0.61309","0.61309" +"GO:0045747","positive regulation of Notch signaling p...",4,1,2.14,2010,"0.95317","0.61407","0.61407" +"GO:1902905","positive regulation of supramolecular fi...",23,8,12.29,2323,"0.97836","0.61486","0.61486" +"GO:0019725","cellular homeostasis",45,30,24.05,71,"0.04894","0.11721","0.61508" +"GO:0051960","regulation of nervous system development",48,22,25.65,1536,"0.88767","0.61616","0.61616" +"GO:0070507","regulation of microtubule cytoskeleton o...",16,6,8.55,1946,"0.93788","0.61656","0.61656" +"GO:0009888","tissue development",110,54,58.79,1385,"0.84995","0.59476","0.61742" +"GO:0006109","regulation of carbohydrate metabolic pro...",6,4,3.21,537,"0.41027","0.61844","0.61844" +"GO:0052547","regulation of peptidase activity",13,6,6.95,1237,"0.79033","0.61863","0.61863" +"GO:0009069","serine family amino acid metabolic proce...",4,2,2.14,1157,"0.73753","0.61875","0.61875" +"GO:0048878","chemical homeostasis",51,31,27.26,265,"0.17895","0.24021","0.61888" +"GO:0016239","positive regulation of macroautophagy",4,1,2.14,2011,"0.95317","0.61927","0.61927" +"GO:0007339","binding of sperm to zona pellucida",3,1,1.6,1618,"0.89926","0.61970","0.61970" +"GO:0009988","cell-cell recognition",3,1,1.6,1619,"0.89926","0.61970","0.61970" +"GO:0035036","sperm-egg recognition",3,1,1.6,1620,"0.89926","0.61970","0.61970" +"GO:0010976","positive regulation of neuron projection...",12,5,6.41,1491,"0.86649","0.62336","0.62336" +"GO:1901264","carbohydrate derivative transport",5,3,2.67,851,"0.56449","0.62462","0.62462" +"GO:0001666","response to hypoxia",9,4,4.81,1284,"0.80957","0.62539","0.62539" +"GO:0036293","response to decreased oxygen levels",9,4,4.81,1285,"0.80957","0.62539","0.62539" +"GO:0070482","response to oxygen levels",9,4,4.81,1286,"0.80957","0.62539","0.62539" +"GO:0043410","positive regulation of MAPK cascade",10,5,5.34,1016,"0.70485","0.62695","0.62695" +"GO:0048666","neuron development",89,43,47.57,1488,"0.86388","0.62753","0.62753" +"GO:0000422","autophagy of mitochondrion",3,1,1.6,1621,"0.89926","0.62779","0.62779" +"GO:0061726","mitochondrion disassembly",3,1,1.6,1622,"0.89926","0.62779","0.62779" +"GO:1903008","organelle disassembly",3,1,1.6,1623,"0.89926","0.62779","0.62779" +"GO:0033143","regulation of intracellular steroid horm...",6,4,3.21,538,"0.41027","0.62820","0.62820" +"GO:0070841","inclusion body assembly",3,1,1.6,1624,"0.89926","0.62869","0.62869" +"GO:0090083","regulation of inclusion body assembly",3,1,1.6,1625,"0.89926","0.62869","0.62869" +"GO:0090084","negative regulation of inclusion body as...",3,1,1.6,1626,"0.89926","0.62869","0.62869" +"GO:1901021","positive regulation of calcium ion trans...",3,1,1.6,1627,"0.89926","0.62869","0.62869" +"GO:1904427","positive regulation of calcium ion trans...",3,1,1.6,1628,"0.89926","0.62869","0.62869" +"GO:0007140","male meiotic nuclear division",3,0,1.6,2621,"1.00000","0.62869","0.62869" +"GO:1903842","response to arsenite ion",3,0,1.6,2622,"1.00000","0.62869","0.62869" +"GO:0051223","regulation of protein transport",20,10,10.69,1004,"0.70456","0.62913","0.62913" +"GO:0002526","acute inflammatory response",5,2,2.67,1413,"0.85289","0.62927","0.62927" +"GO:0017121","phospholipid scrambling",5,2,2.67,1414,"0.85289","0.62927","0.62927" +"GO:0043462","regulation of ATPase activity",5,1,2.67,2282,"0.97824","0.62927","0.62927" +"GO:0097035","regulation of membrane lipid distributio...",5,2,2.67,1415,"0.85289","0.62927","0.62927" +"GO:0010608","posttranscriptional regulation of gene e...",23,8,12.29,2324,"0.97836","0.57211","0.62996" +"GO:0010771","negative regulation of cell morphogenesi...",5,3,2.67,852,"0.56449","0.63043","0.63043" +"GO:0010977","negative regulation of neuron projection...",5,3,2.67,853,"0.56449","0.63043","0.63043" +"GO:0019233","sensory perception of pain",5,3,2.67,854,"0.56449","0.63043","0.63043" +"GO:0031345","negative regulation of cell projection o...",5,3,2.67,855,"0.56449","0.63043","0.63043" +"GO:0048814","regulation of dendrite morphogenesis",5,3,2.67,856,"0.56449","0.63043","0.63043" +"GO:1990542","mitochondrial transmembrane transport",12,7,6.41,611,"0.48290","0.63147","0.63147" +"GO:0032366","intracellular sterol transport",4,3,2.14,492,"0.36577","0.63147","0.63147" +"GO:0048675","axon extension",6,1,3.21,2392,"0.98990","0.63202","0.63202" +"GO:0061387","regulation of extent of cell growth",6,2,3.21,1850,"0.91998","0.63202","0.63202" +"GO:0042773","ATP synthesis coupled electron transport",11,6,5.88,927,"0.59279","0.63368","0.63368" +"GO:0010821","regulation of mitochondrion organization",9,3,4.81,1957,"0.94000","0.63440","0.63440" +"GO:0010822","positive regulation of mitochondrion org...",9,3,4.81,1958,"0.94000","0.63440","0.63440" +"GO:0007613","memory",7,5,3.74,372,"0.28660","0.63508","0.63508" +"GO:0007267","cell-cell signaling",72,35,38.48,1359,"0.83042","0.63547","0.63547" +"GO:0032271","regulation of protein polymerization",27,12,14.43,1502,"0.87223","0.63580","0.63580" +"GO:0061564","axon development",39,17,20.84,1879,"0.92010","0.63594","0.63594" +"GO:0008652","cellular amino acid biosynthetic process",11,6,5.88,928,"0.59279","0.63681","0.63681" +"GO:1901607","alpha-amino acid biosynthetic process",11,6,5.88,929,"0.59279","0.63681","0.63681" +"GO:0045807","positive regulation of endocytosis",14,3,7.48,2469,"0.99700","0.63704","0.63704" +"GO:0043434","response to peptide hormone",11,7,5.88,428,"0.35677","0.63791","0.63791" +"GO:0007010","cytoskeleton organization",95,52,50.78,561,"0.44041","0.16104","0.63804" +"GO:0006261","DNA-dependent DNA replication",5,2,2.67,1416,"0.85289","0.63855","0.63855" +"GO:0006959","humoral immune response",5,2,2.67,1417,"0.85289","0.63855","0.63855" +"GO:0007062","sister chromatid cohesion",5,1,2.67,2283,"0.97824","0.63855","0.63855" +"GO:0045787","positive regulation of cell cycle",4,3,2.14,493,"0.36577","0.63900","0.63900" +"GO:0090068","positive regulation of cell cycle proces...",4,3,2.14,494,"0.36577","0.63900","0.63900" +"GO:0031349","positive regulation of defense response",9,2,4.81,2371,"0.98849","0.63994","0.63994" +"GO:0032147","activation of protein kinase activity",6,3,3.21,1077,"0.71872","0.64092","0.64092" +"GO:0043406","positive regulation of MAP kinase activi...",6,2,3.21,1851,"0.91998","0.64092","0.64092" +"GO:0071902","positive regulation of protein serine/th...",6,2,3.21,1852,"0.91998","0.64092","0.64092" +"GO:0046834","lipid phosphorylation",4,3,2.14,495,"0.36577","0.64185","0.64185" +"GO:0046854","phosphatidylinositol phosphorylation",4,3,2.14,496,"0.36577","0.64185","0.64185" +"GO:0010824","regulation of centrosome duplication",4,1,2.14,2012,"0.95317","0.64211","0.64211" +"GO:0046605","regulation of centrosome cycle",4,1,2.14,2013,"0.95317","0.64211","0.64211" +"GO:0006928","movement of cell or subcellular componen...",90,41,48.1,1993,"0.94919","0.64253","0.64253" +"GO:0034329","cell junction assembly",10,4,5.34,1518,"0.87938","0.64255","0.64255" +"GO:0034330","cell junction organization",10,4,5.34,1519,"0.87938","0.64255","0.64255" +"GO:0005996","monosaccharide metabolic process",22,12,11.76,638,"0.54595","0.64257","0.64257" +"GO:0006342","chromatin silencing",6,1,3.21,2393,"0.98990","0.64346","0.64346" +"GO:0046883","regulation of hormone secretion",9,6,4.81,406,"0.32587","0.64357","0.64357" +"GO:0090276","regulation of peptide hormone secretion",9,6,4.81,407,"0.32587","0.64357","0.64357" +"GO:0001754","eye photoreceptor cell differentiation",11,4,5.88,1904,"0.92575","0.64386","0.64386" +"GO:0042461","photoreceptor cell development",11,4,5.88,1905,"0.92575","0.64386","0.64386" +"GO:0043535","regulation of blood vessel endothelial c...",4,1,2.14,2014,"0.95317","0.64444","0.64444" +"GO:0008202","steroid metabolic process",25,13,13.36,964,"0.63700","0.64473","0.64473" +"GO:0002119","nematode larval development",5,2,2.67,1418,"0.85289","0.64551","0.64551" +"GO:0051017","actin filament bundle assembly",6,2,3.21,1853,"0.91998","0.64557","0.64557" +"GO:0071384","cellular response to corticosteroid stim...",3,1,1.6,1629,"0.89926","0.64575","0.64575" +"GO:0031333","negative regulation of protein complex a...",11,5,5.88,1254,"0.79823","0.64620","0.64620" +"GO:0021510","spinal cord development",3,0,1.6,2623,"1.00000","0.64665","0.64665" +"GO:0018212","peptidyl-tyrosine modification",7,3,3.74,1339,"0.82639","0.64762","0.64762" +"GO:0044282","small molecule catabolic process",32,16,17.1,1052,"0.71695","0.64817","0.64817" +"GO:0006505","GPI anchor metabolic process",8,4,4.28,1035,"0.70951","0.64997","0.64997" +"GO:0009247","glycolipid biosynthetic process",8,4,4.28,1036,"0.70951","0.64997","0.64997" +"GO:0065008","regulation of biological quality",209,114,111.71,519,"0.39764","0.36824","0.65140" +"GO:0007417","central nervous system development",67,30,35.81,1975,"0.94142","0.65142","0.65142" +"GO:0061588","calcium activated phospholipid scramblin...",3,2,1.6,780,"0.55165","0.65232","0.65232" +"GO:1903311","regulation of mRNA metabolic process",13,5,6.95,1777,"0.91409","0.65321","0.65321" +"GO:0002790","peptide secretion",16,10,8.55,383,"0.31908","0.65542","0.65542" +"GO:0009306","protein secretion",16,10,8.55,384,"0.31908","0.65542","0.65542" +"GO:0019218","regulation of steroid metabolic process",4,3,2.14,497,"0.36577","0.65633","0.65633" +"GO:0050810","regulation of steroid biosynthetic proce...",4,3,2.14,498,"0.36577","0.65633","0.65633" +"GO:0106118","regulation of sterol biosynthetic proces...",4,3,2.14,499,"0.36577","0.65633","0.65633" +"GO:1902930","regulation of alcohol biosynthetic proce...",4,3,2.14,500,"0.36577","0.65633","0.65633" +"GO:0010639","negative regulation of organelle organiz...",20,9,10.69,1371,"0.83784","0.65702","0.65702" +"GO:0006140","regulation of nucleotide metabolic proce...",5,3,2.67,857,"0.56449","0.65707","0.65707" +"GO:1900542","regulation of purine nucleotide metaboli...",5,3,2.67,858,"0.56449","0.65707","0.65707" +"GO:1905952","regulation of lipid localization",6,3,3.21,1078,"0.71872","0.65761","0.65761" +"GO:0050778","positive regulation of immune response",19,5,10.16,2464,"0.99598","0.65790","0.65790" +"GO:0018108","peptidyl-tyrosine phosphorylation",6,2,3.21,1854,"0.91998","0.65824","0.65824" +"GO:0051962","positive regulation of nervous system de...",25,12,13.36,1199,"0.77380","0.65875","0.65875" +"GO:0032989","cellular component morphogenesis",87,47,46.5,621,"0.50088","0.30810","0.65942" +"GO:0022402","cell cycle process",60,22,32.07,2478,"0.99725","0.65983","0.65983" +"GO:0050776","regulation of immune response",25,6,13.36,2534,"0.99938","0.66186","0.66186" +"GO:0006006","glucose metabolic process",10,6,5.34,597,"0.46405","0.66219","0.66219" +"GO:0045597","positive regulation of cell differentiat...",51,26,27.26,981,"0.69175","0.66257","0.66257" +"GO:0060627","regulation of vesicle-mediated transport",33,16,17.64,1201,"0.77404","0.66285","0.66285" +"GO:0006729","tetrahydrobiopterin biosynthetic process",3,2,1.6,781,"0.55165","0.66335","0.66335" +"GO:0034311","diol metabolic process",3,2,1.6,782,"0.55165","0.66335","0.66335" +"GO:0034312","diol biosynthetic process",3,2,1.6,783,"0.55165","0.66335","0.66335" +"GO:0046146","tetrahydrobiopterin metabolic process",3,2,1.6,784,"0.55165","0.66335","0.66335" +"GO:0043069","negative regulation of programmed cell d...",37,18,19.78,1207,"0.77544","0.66388","0.66388" +"GO:1902533","positive regulation of intracellular sig...",29,12,15.5,1936,"0.93296","0.66402","0.66402" +"GO:0007416","synapse assembly",11,6,5.88,930,"0.59279","0.66429","0.66429" +"GO:0010811","positive regulation of cell-substrate ad...",3,2,1.6,785,"0.55165","0.66513","0.66513" +"GO:0007623","circadian rhythm",15,6,8.02,1758,"0.90449","0.66517","0.66517" +"GO:0000086","G2/M transition of mitotic cell cycle",5,2,2.67,1419,"0.85289","0.66629","0.66629" +"GO:0044839","cell cycle G2/M phase transition",5,2,2.67,1420,"0.85289","0.66629","0.66629" +"GO:1901990","regulation of mitotic cell cycle phase t...",5,2,2.67,1421,"0.85289","0.66629","0.66629" +"GO:0006940","regulation of smooth muscle contraction",3,2,1.6,786,"0.55165","0.66632","0.66632" +"GO:0045933","positive regulation of muscle contractio...",3,2,1.6,787,"0.55165","0.66632","0.66632" +"GO:0048008","platelet-derived growth factor receptor ...",3,2,1.6,788,"0.55165","0.66632","0.66632" +"GO:0048659","smooth muscle cell proliferation",3,1,1.6,1630,"0.89926","0.66632","0.66632" +"GO:0048660","regulation of smooth muscle cell prolife...",3,1,1.6,1631,"0.89926","0.66632","0.66632" +"GO:0050803","regulation of synapse structure or activ...",16,9,8.55,625,"0.51263","0.66654","0.66654" +"GO:0010498","proteasomal protein catabolic process",21,10,11.22,1209,"0.77589","0.66658","0.66658" +"GO:0006695","cholesterol biosynthetic process",4,2,2.14,1158,"0.73753","0.66690","0.66690" +"GO:0003158","endothelium development",3,2,1.6,789,"0.55165","0.66810","0.66810" +"GO:0010950","positive regulation of endopeptidase act...",3,1,1.6,1632,"0.89926","0.66810","0.66810" +"GO:0021532","neural tube patterning",3,1,1.6,1633,"0.89926","0.66810","0.66810" +"GO:0031648","protein destabilization",3,2,1.6,790,"0.55165","0.66810","0.66810" +"GO:0045446","endothelial cell differentiation",3,2,1.6,791,"0.55165","0.66810","0.66810" +"GO:2001056","positive regulation of cysteine-type end...",3,1,1.6,1634,"0.89926","0.66810","0.66810" +"GO:1901654","response to ketone",13,6,6.95,1238,"0.79033","0.66855","0.66855" +"GO:0051865","protein autoubiquitination",5,3,2.67,859,"0.56449","0.66859","0.66859" +"GO:0044093","positive regulation of molecular functio...",65,31,34.74,1480,"0.85754","0.67038","0.67038" +"GO:0019079","viral genome replication",10,3,5.34,2194,"0.96597","0.67115","0.67115" +"GO:0050805","negative regulation of synaptic transmis...",3,2,1.6,792,"0.55165","0.67196","0.67196" +"GO:1902473","regulation of protein localization to sy...",3,2,1.6,793,"0.55165","0.67196","0.67196" +"GO:1902474","positive regulation of protein localizat...",3,2,1.6,794,"0.55165","0.67196","0.67196" +"GO:0009566","fertilization",8,4,4.28,1037,"0.70951","0.67241","0.67241" +"GO:0030010","establishment of cell polarity",8,2,4.28,2264,"0.97771","0.67259","0.67259" +"GO:0045089","positive regulation of innate immune res...",8,2,4.28,2265,"0.97771","0.67259","0.67259" +"GO:0009887","animal organ morphogenesis",66,29,35.28,2117,"0.95494","0.44294","0.67323" +"GO:0009063","cellular amino acid catabolic process",17,10,9.09,551,"0.42249","0.67405","0.67405" +"GO:0007015","actin filament organization",32,13,17.1,1999,"0.94979","0.67493","0.67493" +"GO:0023052","signaling",447,237,238.91,939,"0.60058","0.67500","0.67500" +"GO:0044772","mitotic cell cycle phase transition",12,4,6.41,2121,"0.95538","0.67508","0.67508" +"GO:0003208","cardiac ventricle morphogenesis",4,1,2.14,2015,"0.95317","0.67512","0.67512" +"GO:0031102","neuron projection regeneration",4,1,2.14,2016,"0.95317","0.67512","0.67512" +"GO:0051224","negative regulation of protein transport",4,2,2.14,1159,"0.73753","0.67512","0.67512" +"GO:1901019","regulation of calcium ion transmembrane ...",4,1,2.14,2017,"0.95317","0.67512","0.67512" +"GO:0071345","cellular response to cytokine stimulus",18,7,9.62,1923,"0.93077","0.67605","0.67605" +"GO:0035239","tube morphogenesis",37,13,19.78,2419,"0.99235","0.67622","0.67622" +"GO:0019318","hexose metabolic process",18,10,9.62,629,"0.52487","0.67654","0.67654" +"GO:0001101","response to acid chemical",18,11,9.62,418,"0.34059","0.67799","0.67799" +"GO:0040012","regulation of locomotion",36,16,19.24,1548,"0.89601","0.67867","0.67867" +"GO:0035162","embryonic hemopoiesis",5,1,2.67,2284,"0.97824","0.67893","0.67893" +"GO:0045638","negative regulation of myeloid cell diff...",5,2,2.67,1422,"0.85289","0.67893","0.67893" +"GO:0061298","retina vasculature development in camera...",5,1,2.67,2285,"0.97824","0.67893","0.67893" +"GO:0070372","regulation of ERK1 and ERK2 cascade",5,2,2.67,1423,"0.85289","0.67893","0.67893" +"GO:0070373","negative regulation of ERK1 and ERK2 cas...",5,2,2.67,1424,"0.85289","0.67893","0.67893" +"GO:1903707","negative regulation of hemopoiesis",5,2,2.67,1425,"0.85289","0.67893","0.67893" +"GO:0001959","regulation of cytokine-mediated signalin...",4,2,2.14,1160,"0.73753","0.67922","0.67922" +"GO:0001961","positive regulation of cytokine-mediated...",4,2,2.14,1161,"0.73753","0.67922","0.67922" +"GO:0060759","regulation of response to cytokine stimu...",4,2,2.14,1162,"0.73753","0.67922","0.67922" +"GO:0060760","positive regulation of response to cytok...",4,2,2.14,1163,"0.73753","0.67922","0.67922" +"GO:0061077","chaperone-mediated protein folding",16,6,8.55,1947,"0.93788","0.68120","0.68120" +"GO:0046530","photoreceptor cell differentiation",12,4,6.41,2122,"0.95538","0.68190","0.68190" +"GO:0030516","regulation of axon extension",5,1,2.67,2286,"0.97824","0.68236","0.68236" +"GO:0009953","dorsal/ventral pattern formation",11,3,5.88,2338,"0.98106","0.68243","0.68243" +"GO:0032501","multicellular organismal process",358,178,191.34,1978,"0.94441","0.67684","0.68301" +"GO:0002064","epithelial cell development",16,4,8.55,2443,"0.99514","0.68492","0.68492" +"GO:0007269","neurotransmitter secretion",16,7,8.55,1380,"0.84884","0.68492","0.68492" +"GO:0099643","signal release from synapse",16,7,8.55,1381,"0.84884","0.68492","0.68492" +"GO:0044087","regulation of cellular component biogene...",61,31,32.6,1021,"0.70832","0.68557","0.68557" +"GO:0001934","positive regulation of protein phosphory...",24,10,12.83,1784,"0.91443","0.68559","0.68559" +"GO:0051270","regulation of cellular component movemen...",35,15,18.71,1887,"0.92446","0.68613","0.68613" +"GO:0016485","protein processing",7,1,3.74,2447,"0.99531","0.68614","0.68614" +"GO:0009914","hormone transport",11,7,5.88,429,"0.35677","0.68628","0.68628" +"GO:0015937","coenzyme A biosynthetic process",3,0,1.6,2624,"1.00000","0.68674","0.68674" +"GO:1902531","regulation of intracellular signal trans...",77,34,41.15,2179,"0.96220","0.68686","0.68686" +"GO:0007040","lysosome organization",8,3,4.28,1560,"0.89652","0.68691","0.68691" +"GO:0042698","ovulation cycle",8,3,4.28,1561,"0.89652","0.68691","0.68691" +"GO:0080171","lytic vacuole organization",8,3,4.28,1562,"0.89652","0.68691","0.68691" +"GO:0090559","regulation of membrane permeability",8,3,4.28,1563,"0.89652","0.68691","0.68691" +"GO:0002683","negative regulation of immune system pro...",13,6,6.95,1239,"0.79033","0.68776","0.68776" +"GO:0033002","muscle cell proliferation",4,1,2.14,2018,"0.95317","0.68842","0.68842" +"GO:0007050","cell cycle arrest",8,3,4.28,1564,"0.89652","0.68853","0.68853" +"GO:0031101","fin regeneration",8,2,4.28,2266,"0.97771","0.68853","0.68853" +"GO:0015697","quaternary ammonium group transport",4,1,2.14,2019,"0.95317","0.68944","0.68944" +"GO:0000187","activation of MAPK activity",5,2,2.67,1426,"0.85289","0.69035","0.69035" +"GO:0015748","organophosphate ester transport",4,2,2.14,1164,"0.73753","0.69046","0.69046" +"GO:0015914","phospholipid transport",4,2,2.14,1165,"0.73753","0.69046","0.69046" +"GO:0043901","negative regulation of multi-organism pr...",4,1,2.14,2020,"0.95317","0.69046","0.69046" +"GO:0051607","defense response to virus",4,1,2.14,2021,"0.95317","0.69046","0.69046" +"GO:2001020","regulation of response to DNA damage sti...",4,0,2.14,2625,"1.00000","0.69046","0.69046" +"GO:2001022","positive regulation of response to DNA d...",4,0,2.14,2626,"1.00000","0.69046","0.69046" +"GO:0022412","cellular process involved in reproductio...",30,16,16.03,911,"0.57938","0.69124","0.69124" +"GO:0050868","negative regulation of T cell activation",3,2,1.6,795,"0.55165","0.69145","0.69145" +"GO:1903038","negative regulation of leukocyte cell-ce...",3,2,1.6,796,"0.55165","0.69145","0.69145" +"GO:0018205","peptidyl-lysine modification",20,5,10.69,2492,"0.99771","0.69156","0.69156" +"GO:0035418","protein localization to synapse",7,4,3.74,901,"0.57515","0.69174","0.69174" +"GO:0055006","cardiac cell development",8,7,4.28,78,"0.05277","0.00628","0.69256" +"GO:0030032","lamellipodium assembly",4,1,2.14,2022,"0.95317","0.69275","0.69275" +"GO:0033628","regulation of cell adhesion mediated by ...",4,2,2.14,1166,"0.73753","0.69275","0.69275" +"GO:0045598","regulation of fat cell differentiation",4,2,2.14,1167,"0.73753","0.69275","0.69275" +"GO:0097581","lamellipodium organization",4,1,2.14,2023,"0.95317","0.69275","0.69275" +"GO:0040007","growth",53,20,28.33,2424,"0.99309","0.69322","0.69322" +"GO:0007220","Notch receptor processing",3,0,1.6,2627,"1.00000","0.69380","0.69380" +"GO:0014070","response to organic cyclic compound",49,23,26.19,1478,"0.85716","0.69390","0.69390" +"GO:0050801","ion homeostasis",37,27,19.78,25,"0.01158","0.02574","0.69390" +"GO:0006520","cellular amino acid metabolic process",54,28,28.86,970,"0.64728","0.69475","0.69475" +"GO:0051963","regulation of synapse assembly",5,3,2.67,860,"0.56449","0.69491","0.69491" +"GO:0051261","protein depolymerization",14,6,7.48,1467,"0.85658","0.69531","0.69531" +"GO:0032504","multicellular organism reproduction",63,32,33.67,1046,"0.71144","0.69744","0.69744" +"GO:0009112","nucleobase metabolic process",5,2,2.67,1427,"0.85289","0.69831","0.69831" +"GO:0046112","nucleobase biosynthetic process",5,2,2.67,1428,"0.85289","0.69831","0.69831" +"GO:0048168","regulation of neuronal synaptic plastici...",4,2,2.14,1168,"0.73753","0.69859","0.69859" +"GO:0046165","alcohol biosynthetic process",11,6,5.88,931,"0.59279","0.69934","0.69934" +"GO:0000070","mitotic sister chromatid segregation",4,1,2.14,2024,"0.95317","0.69961","0.69961" +"GO:0001654","eye development",43,19,22.98,1785,"0.91657","0.70002","0.70002" +"GO:0048880","sensory system development",43,19,22.98,1786,"0.91657","0.70002","0.70002" +"GO:0150063","visual system development",43,19,22.98,1787,"0.91657","0.70002","0.70002" +"GO:0030335","positive regulation of cell migration",10,6,5.34,598,"0.46405","0.70025","0.70025" +"GO:0019933","cAMP-mediated signaling",6,4,3.21,539,"0.41027","0.70068","0.70068" +"GO:0019935","cyclic-nucleotide-mediated signaling",6,4,3.21,540,"0.41027","0.70068","0.70068" +"GO:0007601","visual perception",15,8,8.02,944,"0.60745","0.70089","0.70089" +"GO:0050953","sensory perception of light stimulus",15,8,8.02,945,"0.60745","0.70089","0.70089" +"GO:0060548","negative regulation of cell death",41,18,21.91,1791,"0.91824","0.70098","0.70098" +"GO:0048640","negative regulation of developmental gro...",3,2,1.6,797,"0.55165","0.70112","0.70112" +"GO:0050807","regulation of synapse organization",14,8,7.48,620,"0.49881","0.70142","0.70142" +"GO:0031398","positive regulation of protein ubiquitin...",6,3,3.21,1079,"0.71872","0.70254","0.70254" +"GO:1903322","positive regulation of protein modificat...",6,3,3.21,1080,"0.71872","0.70254","0.70254" +"GO:0030036","actin cytoskeleton organization",64,35,34.21,602,"0.47140","0.11036","0.70310" +"GO:0019722","calcium-mediated signaling",6,3,3.21,1081,"0.71872","0.70378","0.70378" +"GO:0002791","regulation of peptide secretion",11,7,5.88,430,"0.35677","0.70454","0.70454" +"GO:0048513","animal organ development",185,87,98.88,2231,"0.97124","0.68049","0.70493" +"GO:0048738","cardiac muscle tissue development",17,11,9.09,333,"0.24670","0.42979","0.70602" +"GO:0001892","embryonic placenta development",3,0,1.6,2628,"1.00000","0.70608","0.70608" +"GO:1903313","positive regulation of mRNA metabolic pr...",9,3,4.81,1959,"0.94000","0.70616","0.70616" +"GO:0006515","protein quality control for misfolded or...",3,2,1.6,798,"0.55165","0.70637","0.70637" +"GO:0070534","protein K63-linked ubiquitination",3,2,1.6,799,"0.55165","0.70637","0.70637" +"GO:0031401","positive regulation of protein modificat...",34,15,18.17,1585,"0.89818","0.70853","0.70853" +"GO:0045930","negative regulation of mitotic cell cycl...",4,2,2.14,1169,"0.73753","0.70871","0.70871" +"GO:0031346","positive regulation of cell projection o...",15,7,8.02,1229,"0.78471","0.70939","0.70939" +"GO:0051494","negative regulation of cytoskeleton orga...",16,7,8.55,1382,"0.84884","0.71174","0.71174" +"GO:0007565","female pregnancy",5,3,2.67,861,"0.56449","0.71187","0.71187" +"GO:0043534","blood vessel endothelial cell migration",5,1,2.67,2287,"0.97824","0.71187","0.71187" +"GO:0034248","regulation of cellular amide metabolic p...",18,7,9.62,1924,"0.93077","0.64656","0.71194" +"GO:0009056","catabolic process",150,76,80.17,1232,"0.78551","0.71203","0.71203" +"GO:0023061","signal release",26,11,13.9,1769,"0.91028","0.71273","0.71273" +"GO:0033157","regulation of intracellular protein tran...",8,3,4.28,1565,"0.89652","0.71415","0.71415" +"GO:0090316","positive regulation of intracellular pro...",8,3,4.28,1566,"0.89652","0.71415","0.71415" +"GO:1903214","regulation of protein targeting to mitoc...",8,3,4.28,1567,"0.89652","0.71415","0.71415" +"GO:1903533","regulation of protein targeting",8,3,4.28,1568,"0.89652","0.71415","0.71415" +"GO:1903749","positive regulation of establishment of ...",8,3,4.28,1569,"0.89652","0.71415","0.71415" +"GO:1903955","positive regulation of protein targeting...",8,3,4.28,1570,"0.89652","0.71415","0.71415" +"GO:0006476","protein deacetylation",4,2,2.14,1170,"0.73753","0.71424","0.71424" +"GO:0048589","developmental growth",37,12,19.78,2477,"0.99716","0.71490","0.71490" +"GO:0048583","regulation of response to stimulus",186,87,99.41,2249,"0.97595","0.71504","0.71504" +"GO:0051239","regulation of multicellular organismal p...",142,77,75.9,583,"0.45892","0.59563","0.71513" +"GO:0048468","cell development",149,79,79.64,909,"0.57712","0.53030","0.71545" +"GO:0043900","regulation of multi-organism process",22,9,11.76,1793,"0.91916","0.71547","0.71547" +"GO:0050766","positive regulation of phagocytosis",8,2,4.28,2267,"0.97771","0.71557","0.71557" +"GO:0006334","nucleosome assembly",4,1,2.14,2025,"0.95317","0.71600","0.71600" +"GO:0034728","nucleosome organization",4,1,2.14,2026,"0.95317","0.71600","0.71600" +"GO:0048699","generation of neurons",109,51,58.26,1939,"0.93630","0.71600","0.71600" +"GO:0032874","positive regulation of stress-activated ...",3,1,1.6,1635,"0.89926","0.71654","0.71654" +"GO:0046328","regulation of JNK cascade",3,1,1.6,1636,"0.89926","0.71654","0.71654" +"GO:0070304","positive regulation of stress-activated ...",3,1,1.6,1637,"0.89926","0.71654","0.71654" +"GO:2000145","regulation of cell motility",31,14,16.57,1499,"0.86693","0.71673","0.71673" +"GO:0070647","protein modification by small protein co...",45,19,24.05,2001,"0.95299","0.71712","0.71712" +"GO:0016579","protein deubiquitination",5,2,2.67,1429,"0.85289","0.71749","0.71749" +"GO:0070646","protein modification by small protein re...",5,2,2.67,1430,"0.85289","0.71749","0.71749" +"GO:0006887","exocytosis",26,13,13.9,1044,"0.71019","0.71826","0.71826" +"GO:0006913","nucleocytoplasmic transport",13,6,6.95,1240,"0.79033","0.71868","0.71868" +"GO:0043281","regulation of cysteine-type endopeptidas...",10,4,5.34,1520,"0.87938","0.72018","0.72018" +"GO:0010720","positive regulation of cell development",25,12,13.36,1200,"0.77380","0.72113","0.72113" +"GO:0032502","developmental process",355,173,189.74,2253,"0.97671","0.68810","0.72212" +"GO:0051235","maintenance of location",20,11,10.69,634,"0.53590","0.72325","0.72325" +"GO:0046785","microtubule polymerization",12,5,6.41,1492,"0.86649","0.72459","0.72459" +"GO:0048856","anatomical structure development",330,160,176.38,2256,"0.97768","0.68517","0.72526" +"GO:0045596","negative regulation of cell differentiat...",32,15,17.1,1309,"0.82359","0.72572","0.72572" +"GO:0032008","positive regulation of TOR signaling",4,1,2.14,2027,"0.95317","0.72575","0.72575" +"GO:0002695","negative regulation of leukocyte activat...",4,2,2.14,1171,"0.73753","0.72675","0.72675" +"GO:0050866","negative regulation of cell activation",4,2,2.14,1172,"0.73753","0.72675","0.72675" +"GO:0051250","negative regulation of lymphocyte activa...",4,2,2.14,1173,"0.73753","0.72675","0.72675" +"GO:0140053","mitochondrial gene expression",4,1,2.14,2028,"0.95317","0.72675","0.72675" +"GO:0035295","tube development",41,15,21.91,2410,"0.99053","0.72864","0.72864" +"GO:0042326","negative regulation of phosphorylation",26,16,13.9,338,"0.26435","0.15184","0.72915" +"GO:0046486","glycerolipid metabolic process",44,25,23.52,511,"0.38349","0.72946","0.72946" +"GO:0042981","regulation of apoptotic process",50,23,26.72,1535,"0.88685","0.72958","0.72958" +"GO:0021766","hippocampus development",5,3,2.67,862,"0.56449","0.72976","0.72976" +"GO:0019915","lipid storage",8,2,4.28,2268,"0.97771","0.73129","0.73129" +"GO:0010632","regulation of epithelial cell migration",6,2,3.21,1855,"0.91998","0.73160","0.73160" +"GO:0043542","endothelial cell migration",6,2,3.21,1856,"0.91998","0.73160","0.73160" +"GO:0061013","regulation of mRNA catabolic process",6,3,3.21,1082,"0.71872","0.73160","0.73160" +"GO:0007009","plasma membrane organization",9,3,4.81,1960,"0.94000","0.73172","0.73172" +"GO:0007368","determination of left/right symmetry",9,2,4.81,2372,"0.98849","0.73172","0.73172" +"GO:0009799","specification of symmetry",9,2,4.81,2373,"0.98849","0.73172","0.73172" +"GO:0009855","determination of bilateral symmetry",9,2,4.81,2374,"0.98849","0.73172","0.73172" +"GO:0032527","protein exit from endoplasmic reticulum",5,3,2.67,863,"0.56449","0.73198","0.73198" +"GO:0031334","positive regulation of protein complex a...",21,8,11.22,1996,"0.94936","0.73222","0.73222" +"GO:0030334","regulation of cell migration",29,13,15.5,1500,"0.86936","0.73249","0.73249" +"GO:0043414","macromolecule methylation",22,8,11.76,2212,"0.96662","0.73286","0.73286" +"GO:0001822","kidney development",18,7,9.62,1925,"0.93077","0.73347","0.73347" +"GO:0001777","T cell homeostatic proliferation",4,1,2.14,2029,"0.95317","0.73370","0.73370" +"GO:0002244","hematopoietic progenitor cell differenti...",4,1,2.14,2030,"0.95317","0.73370","0.73370" +"GO:0009299","mRNA transcription",4,1,2.14,2031,"0.95317","0.73370","0.73370" +"GO:0033145","positive regulation of intracellular ste...",4,2,2.14,1174,"0.73753","0.73370","0.73370" +"GO:0035357","peroxisome proliferator activated recept...",4,2,2.14,1175,"0.73753","0.73370","0.73370" +"GO:0042789","mRNA transcription by RNA polymerase II",4,1,2.14,2032,"0.95317","0.73370","0.73370" +"GO:0046013","regulation of T cell homeostatic prolife...",4,1,2.14,2033,"0.95317","0.73370","0.73370" +"GO:0061299","retina vasculature morphogenesis in came...",4,1,2.14,2034,"0.95317","0.73370","0.73370" +"GO:0061304","retinal blood vessel morphogenesis",4,1,2.14,2035,"0.95317","0.73370","0.73370" +"GO:0006664","glycolipid metabolic process",11,5,5.88,1255,"0.79823","0.73371","0.73371" +"GO:1903509","liposaccharide metabolic process",11,5,5.88,1256,"0.79823","0.73371","0.73371" +"GO:0032940","secretion by cell",53,25,28.33,1471,"0.85676","0.73387","0.73387" +"GO:0030522","intracellular receptor signaling pathway",12,7,6.41,612,"0.48290","0.73392","0.73392" +"GO:0001952","regulation of cell-matrix adhesion",3,2,1.6,800,"0.55165","0.73409","0.73409" +"GO:0006684","sphingomyelin metabolic process",4,2,2.14,1176,"0.73753","0.73444","0.73444" +"GO:0010638","positive regulation of organelle organiz...",38,15,20.31,2232,"0.97168","0.73455","0.73455" +"GO:0031667","response to nutrient levels",25,11,13.36,1503,"0.87560","0.73561","0.73561" +"GO:0034612","response to tumor necrosis factor",6,3,3.21,1083,"0.71872","0.73585","0.73585" +"GO:0040008","regulation of growth",30,14,16.03,1311,"0.82478","0.73687","0.73687" +"GO:0035148","tube formation",11,3,5.88,2339,"0.98106","0.73789","0.73789" +"GO:0051098","regulation of binding",11,4,5.88,1906,"0.92575","0.73789","0.73789" +"GO:0002684","positive regulation of immune system pro...",25,8,13.36,2414,"0.99130","0.74007","0.74007" +"GO:0006950","response to stress",204,97,109.03,2222,"0.96709","0.64206","0.74105" +"GO:0045995","regulation of embryonic development",6,3,3.21,1084,"0.71872","0.74169","0.74169" +"GO:0002065","columnar/cuboidal epithelial cell differ...",12,3,6.41,2381,"0.98962","0.74177","0.74177" +"GO:0071806","protein transmembrane transport",12,5,6.41,1493,"0.86649","0.74177","0.74177" +"GO:0035967","cellular response to topologically incor...",14,6,7.48,1468,"0.85658","0.74221","0.74221" +"GO:1901606","alpha-amino acid catabolic process",14,7,7.48,983,"0.70199","0.74234","0.74234" +"GO:0045834","positive regulation of lipid metabolic p...",7,3,3.74,1340,"0.82639","0.74251","0.74251" +"GO:0007281","germ cell development",29,15,15.5,969,"0.64701","0.74345","0.74345" +"GO:0048598","embryonic morphogenesis",38,8,20.31,2558,"0.99999","0.74372","0.74372" +"GO:0051254","positive regulation of RNA metabolic pro...",59,25,31.53,2224,"0.96845","0.74406","0.74406" +"GO:0062012","regulation of small molecule metabolic p...",11,7,5.88,431,"0.35677","0.74427","0.74427" +"GO:0051495","positive regulation of cytoskeleton orga...",25,9,13.36,2244,"0.97530","0.74451","0.74451" +"GO:0007596","blood coagulation",10,9,5.34,38,"0.01828","0.00854","0.74465" +"GO:0007599","hemostasis",10,9,5.34,39,"0.01828","0.00854","0.74465" +"GO:0050817","coagulation",10,9,5.34,40,"0.01828","0.00854","0.74465" +"GO:0002027","regulation of heart rate",3,1,1.6,1638,"0.89926","0.74489","0.74489" +"GO:0043271","negative regulation of ion transport",3,2,1.6,801,"0.55165","0.74489","0.74489" +"GO:0070570","regulation of neuron projection regenera...",3,1,1.6,1639,"0.89926","0.74489","0.74489" +"GO:0086065","cell communication involved in cardiac c...",3,1,1.6,1640,"0.89926","0.74489","0.74489" +"GO:0031103","axon regeneration",3,0,1.6,2629,"1.00000","0.74489","0.74489" +"GO:0048678","response to axon injury",3,0,1.6,2630,"1.00000","0.74489","0.74489" +"GO:0002115","store-operated calcium entry",5,3,2.67,864,"0.56449","0.74521","0.74521" +"GO:2001256","regulation of store-operated calcium ent...",5,3,2.67,865,"0.56449","0.74521","0.74521" +"GO:0032970","regulation of actin filament-based proce...",35,18,18.71,976,"0.66070","0.16629","0.74525" +"GO:0072528","pyrimidine-containing compound biosynthe...",6,2,3.21,1857,"0.91998","0.74629","0.74629" +"GO:0061982","meiosis I cell cycle process",5,0,2.67,2631,"1.00000","0.74631","0.74631" +"GO:0043549","regulation of kinase activity",26,13,13.9,1045,"0.71019","0.15184","0.74637" +"GO:0032543","mitochondrial translation",3,1,1.6,1641,"0.89926","0.74743","0.74743" +"GO:0006417","regulation of translation",16,6,8.55,1948,"0.93788","0.67889","0.74754" +"GO:0002753","cytoplasmic pattern recognition receptor...",3,1,1.6,1642,"0.89926","0.74828","0.74828" +"GO:0051301","cell division",21,7,11.22,2345,"0.98154","0.74871","0.74871" +"GO:0009790","embryo development",68,24,36.34,2533,"0.99926","0.74925","0.74925" +"GO:0061572","actin filament bundle organization",7,2,3.74,2146,"0.95742","0.75009","0.75009" +"GO:0022414","reproductive process",84,38,44.9,2000,"0.95014","0.75120","0.75120" +"GO:0071375","cellular response to peptide hormone sti...",7,3,3.74,1341,"0.82639","0.75157","0.75157" +"GO:1901653","cellular response to peptide",7,3,3.74,1342,"0.82639","0.75157","0.75157" +"GO:0030100","regulation of endocytosis",23,8,12.29,2325,"0.97836","0.75175","0.75175" +"GO:0007409","axonogenesis",34,13,18.17,2245,"0.97540","0.75227","0.75227" +"GO:0043244","regulation of protein complex disassembl...",9,5,4.81,915,"0.58445","0.75270","0.75270" +"GO:0072375","medium-term memory",3,2,1.6,802,"0.55165","0.75278","0.75278" +"GO:0060491","regulation of cell projection assembly",15,8,8.02,946,"0.60745","0.75363","0.75363" +"GO:0120032","regulation of plasma membrane bounded ce...",15,8,8.02,947,"0.60745","0.75363","0.75363" +"GO:0040017","positive regulation of locomotion",15,7,8.02,1230,"0.78471","0.75489","0.75489" +"GO:0048520","positive regulation of behavior",6,2,3.21,1858,"0.91998","0.75585","0.75585" +"GO:0007419","ventral cord development",3,0,1.6,2632,"1.00000","0.75586","0.75586" +"GO:0006659","phosphatidylserine biosynthetic process",3,1,1.6,1643,"0.89926","0.75754","0.75754" +"GO:0045576","mast cell activation",3,1,1.6,1644,"0.89926","0.75754","0.75754" +"GO:0048525","negative regulation of viral process",3,1,1.6,1645,"0.89926","0.75754","0.75754" +"GO:0097194","execution phase of apoptosis",3,1,1.6,1646,"0.89926","0.75754","0.75754" +"GO:1903901","negative regulation of viral life cycle",3,1,1.6,1647,"0.89926","0.75754","0.75754" +"GO:0002431","Fc receptor mediated stimulatory signali...",3,0,1.6,2633,"1.00000","0.75754","0.75754" +"GO:0006953","acute-phase response",3,0,1.6,2634,"1.00000","0.75754","0.75754" +"GO:0032781","positive regulation of ATPase activity",3,0,1.6,2635,"1.00000","0.75754","0.75754" +"GO:0001704","formation of primary germ layer",8,1,4.28,2496,"0.99782","0.75765","0.75765" +"GO:0007389","pattern specification process",34,11,18.17,2466,"0.99624","0.75789","0.75789" +"GO:0006413","translational initiation",9,5,4.81,916,"0.58445","0.07022","0.75842" +"GO:0048580","regulation of post-embryonic development",3,2,1.6,803,"0.55165","0.75977","0.75977" +"GO:0001775","cell activation",35,19,18.71,631,"0.52958","0.61804","0.75981" +"GO:0007249","I-kappaB kinase/NF-kappaB signaling",6,3,3.21,1085,"0.71872","0.76059","0.76059" +"GO:0043122","regulation of I-kappaB kinase/NF-kappaB ...",6,3,3.21,1086,"0.71872","0.76059","0.76059" +"GO:0044706","multi-multicellular organism process",6,4,3.21,541,"0.41027","0.76059","0.76059" +"GO:0045321","leukocyte activation",27,11,14.43,1941,"0.93645","0.76125","0.76125" +"GO:0048568","embryonic organ development",27,5,14.43,2552,"0.99997","0.76125","0.76125" +"GO:0007338","single fertilization",7,3,3.74,1343,"0.82639","0.76128","0.76128" +"GO:0019068","virion assembly",3,1,1.6,1648,"0.89926","0.76172","0.76172" +"GO:0050793","regulation of developmental process",123,63,65.74,1107,"0.72668","0.67859","0.76222" +"GO:0006401","RNA catabolic process",7,4,3.74,902,"0.57515","0.76310","0.76310" +"GO:0006402","mRNA catabolic process",7,4,3.74,903,"0.57515","0.76310","0.76310" +"GO:0016441","posttranscriptional gene silencing",7,2,3.74,2147,"0.95742","0.76310","0.76310" +"GO:0035194","posttranscriptional gene silencing by RN...",7,2,3.74,2148,"0.95742","0.76310","0.76310" +"GO:0051346","negative regulation of hydrolase activit...",15,5,8.02,2219,"0.96682","0.76364","0.76364" +"GO:0001947","heart looping",5,1,2.67,2288,"0.97824","0.76367","0.76367" +"GO:0002429","immune response-activating cell surface ...",5,1,2.67,2289,"0.97824","0.76367","0.76367" +"GO:0003143","embryonic heart tube morphogenesis",5,1,2.67,2290,"0.97824","0.76367","0.76367" +"GO:0033627","cell adhesion mediated by integrin",5,2,2.67,1431,"0.85289","0.76367","0.76367" +"GO:0048754","branching morphogenesis of an epithelial...",5,2,2.67,1432,"0.85289","0.76367","0.76367" +"GO:0061138","morphogenesis of a branching epithelium",5,2,2.67,1433,"0.85289","0.76367","0.76367" +"GO:0061371","determination of heart left/right asymme...",5,1,2.67,2291,"0.97824","0.76367","0.76367" +"GO:0002920","regulation of humoral immune response",3,1,1.6,1649,"0.89926","0.76422","0.76422" +"GO:0008045","motor neuron axon guidance",3,1,1.6,1650,"0.89926","0.76422","0.76422" +"GO:0002440","production of molecular mediator of immu...",3,0,1.6,2636,"1.00000","0.76422","0.76422" +"GO:0019730","antimicrobial humoral response",3,0,1.6,2637,"1.00000","0.76422","0.76422" +"GO:0007265","Ras protein signal transduction",24,12,12.83,1020,"0.70813","0.76509","0.76509" +"GO:0051093","negative regulation of developmental pro...",41,17,21.91,2132,"0.95634","0.76588","0.76588" +"GO:0051241","negative regulation of multicellular org...",41,15,21.91,2411,"0.99053","0.76588","0.76588" +"GO:0006835","dicarboxylic acid transport",6,4,3.21,542,"0.41027","0.76589","0.76589" +"GO:0042073","intraciliary transport",6,1,3.21,2394,"0.98990","0.76667","0.76667" +"GO:0042181","ketone biosynthetic process",3,1,1.6,1651,"0.89926","0.76671","0.76671" +"GO:1901663","quinone biosynthetic process",3,1,1.6,1652,"0.89926","0.76671","0.76671" +"GO:0033500","carbohydrate homeostasis",10,3,5.34,2195,"0.96597","0.76675","0.76675" +"GO:0000165","MAPK cascade",25,13,13.36,965,"0.63700","0.76691","0.76691" +"GO:0023014","signal transduction by protein phosphory...",25,13,13.36,966,"0.63700","0.76691","0.76691" +"GO:0110053","regulation of actin filament organizatio...",22,9,11.76,1794,"0.91916","0.76811","0.76811" +"GO:0033043","regulation of organelle organization",66,30,35.28,1896,"0.92573","0.76827","0.76827" +"GO:0051240","positive regulation of multicellular org...",65,33,34.74,1048,"0.71449","0.76880","0.76880" +"GO:0043484","regulation of RNA splicing",8,2,4.28,2269,"0.97771","0.76990","0.76990" +"GO:0048024","regulation of mRNA splicing, via spliceo...",8,2,4.28,2270,"0.97771","0.76990","0.76990" +"GO:0050684","regulation of mRNA processing",8,2,4.28,2271,"0.97771","0.76990","0.76990" +"GO:0009792","embryo development ending in birth or eg...",40,13,21.38,2502,"0.99785","0.77096","0.77096" +"GO:0006897","endocytosis",42,19,22.45,1544,"0.89099","0.77133","0.77133" +"GO:0000413","protein peptidyl-prolyl isomerization",4,1,2.14,2036,"0.95317","0.77161","0.77161" +"GO:0018208","peptidyl-proline modification",4,1,2.14,2037,"0.95317","0.77161","0.77161" +"GO:0042737","drug catabolic process",5,2,2.67,1434,"0.85289","0.77223","0.77223" +"GO:1901988","negative regulation of cell cycle phase ...",3,1,1.6,1653,"0.89926","0.77250","0.77250" +"GO:1901991","negative regulation of mitotic cell cycl...",3,1,1.6,1654,"0.89926","0.77250","0.77250" +"GO:0001751","compound eye photoreceptor cell differen...",3,0,1.6,2638,"1.00000","0.77250","0.77250" +"GO:0042051","compound eye photoreceptor development",3,0,1.6,2639,"1.00000","0.77250","0.77250" +"GO:0006623","protein targeting to vacuole",7,2,3.74,2149,"0.95742","0.77395","0.77395" +"GO:0072665","protein localization to vacuole",7,2,3.74,2150,"0.95742","0.77395","0.77395" +"GO:0072666","establishment of protein localization to...",7,2,3.74,2151,"0.95742","0.77395","0.77395" +"GO:1901605","alpha-amino acid metabolic process",28,14,14.97,1047,"0.71237","0.77458","0.77458" +"GO:0033044","regulation of chromosome organization",6,2,3.21,1859,"0.91998","0.77485","0.77485" +"GO:0048870","cell motility",47,21,25.12,1774,"0.91373","0.77514","0.77514" +"GO:0051674","localization of cell",47,21,25.12,1775,"0.91373","0.77514","0.77514" +"GO:0023051","regulation of signaling",174,85,93,1766,"0.91018","0.77515","0.77515" +"GO:0032011","ARF protein signal transduction",4,1,2.14,2038,"0.95317","0.77541","0.77541" +"GO:0032012","regulation of ARF protein signal transdu...",4,1,2.14,2039,"0.95317","0.77541","0.77541" +"GO:0008284","positive regulation of cell proliferatio...",20,11,10.69,635,"0.53590","0.77573","0.77573" +"GO:0051129","negative regulation of cellular componen...",38,17,20.31,1547,"0.89411","0.77597","0.77597" +"GO:0009620","response to fungus",4,1,2.14,2040,"0.95317","0.77636","0.77636" +"GO:0007156","homophilic cell adhesion via plasma memb...",7,4,3.74,904,"0.57515","0.77682","0.77682" +"GO:0065009","regulation of molecular function",119,59,63.6,1362,"0.83215","0.21021","0.77696" +"GO:0007154","cell communication",456,240,243.72,978,"0.67085","0.77922","0.77922" +"GO:0015893","drug transport",13,8,6.95,507,"0.38219","0.77949","0.77949" +"GO:0048592","eye morphogenesis",24,9,12.83,2185,"0.96271","0.78059","0.78059" +"GO:0090596","sensory organ morphogenesis",24,9,12.83,2186,"0.96271","0.78059","0.78059" +"GO:0019748","secondary metabolic process",5,1,2.67,2292,"0.97824","0.78070","0.78070" +"GO:0043112","receptor metabolic process",5,2,2.67,1435,"0.85289","0.78070","0.78070" +"GO:0051099","positive regulation of binding",5,1,2.67,2293,"0.97824","0.78070","0.78070" +"GO:0007369","gastrulation",15,3,8.02,2507,"0.99841","0.78149","0.78149" +"GO:0019098","reproductive behavior",13,4,6.95,2235,"0.97373","0.78211","0.78211" +"GO:0072527","pyrimidine-containing compound metabolic...",7,2,3.74,2152,"0.95742","0.78253","0.78253" +"GO:0051128","regulation of cellular component organiz...",122,58,65.21,1886,"0.92444","0.78274","0.78274" +"GO:0002164","larval development",6,2,3.21,1860,"0.91998","0.78372","0.78372" +"GO:0030518","intracellular steroid hormone receptor s...",8,5,4.28,577,"0.44079","0.78413","0.78413" +"GO:0007030","Golgi organization",7,2,3.74,2153,"0.95742","0.78448","0.78448" +"GO:0006890","retrograde vesicle-mediated transport, G...",4,1,2.14,2041,"0.95317","0.78484","0.78484" +"GO:0009991","response to extracellular stimulus",26,11,13.9,1770,"0.91028","0.78611","0.78611" +"GO:0006568","tryptophan metabolic process",5,3,2.67,866,"0.56449","0.78699","0.78699" +"GO:0006569","tryptophan catabolic process",5,3,2.67,867,"0.56449","0.78699","0.78699" +"GO:0006586","indolalkylamine metabolic process",5,3,2.67,868,"0.56449","0.78699","0.78699" +"GO:0009310","amine catabolic process",5,3,2.67,869,"0.56449","0.78699","0.78699" +"GO:0042402","cellular biogenic amine catabolic proces...",5,3,2.67,870,"0.56449","0.78699","0.78699" +"GO:0042436","indole-containing compound catabolic pro...",5,3,2.67,871,"0.56449","0.78699","0.78699" +"GO:0046218","indolalkylamine catabolic process",5,3,2.67,872,"0.56449","0.78699","0.78699" +"GO:0006333","chromatin assembly or disassembly",5,2,2.67,1436,"0.85289","0.78804","0.78804" +"GO:0031497","chromatin assembly",5,2,2.67,1437,"0.85289","0.78804","0.78804" +"GO:0065004","protein-DNA complex assembly",5,1,2.67,2294,"0.97824","0.78804","0.78804" +"GO:0071824","protein-DNA complex subunit organization",5,1,2.67,2295,"0.97824","0.78804","0.78804" +"GO:0060429","epithelium development",62,26,33.14,2246,"0.97558","0.76912","0.78843" +"GO:0046889","positive regulation of lipid biosyntheti...",4,2,2.14,1177,"0.73753","0.78904","0.78904" +"GO:0022008","neurogenesis",111,52,59.33,1940,"0.93633","0.78934","0.78934" +"GO:1902653","secondary alcohol biosynthetic process",6,3,3.21,1087,"0.71872","0.78982","0.78982" +"GO:0002444","myeloid leukocyte mediated immunity",6,4,3.21,543,"0.41027","0.79001","0.79001" +"GO:0002446","neutrophil mediated immunity",6,4,3.21,544,"0.41027","0.79001","0.79001" +"GO:0036230","granulocyte activation",6,4,3.21,545,"0.41027","0.79001","0.79001" +"GO:0042119","neutrophil activation",6,4,3.21,546,"0.41027","0.79001","0.79001" +"GO:1900006","positive regulation of dendrite developm...",6,2,3.21,1861,"0.91998","0.79001","0.79001" +"GO:0001667","ameboidal-type cell migration",15,5,8.02,2220,"0.96682","0.79057","0.79057" +"GO:0016477","cell migration",45,19,24.05,2002,"0.95299","0.79073","0.79073" +"GO:0006119","oxidative phosphorylation",13,7,6.95,936,"0.60040","0.79094","0.79094" +"GO:0061458","reproductive system development",20,8,10.69,1893,"0.92457","0.79100","0.79100" +"GO:0007297","ovarian follicle cell migration",4,1,2.14,2042,"0.95317","0.79137","0.79137" +"GO:0050848","regulation of calcium-mediated signaling",4,2,2.14,1178,"0.73753","0.79137","0.79137" +"GO:0048813","dendrite morphogenesis",7,4,3.74,905,"0.57515","0.79206","0.79206" +"GO:0060795","cell fate commitment involved in formati...",5,1,2.67,2296,"0.97824","0.79220","0.79220" +"GO:0000209","protein polyubiquitination",13,6,6.95,1241,"0.79033","0.79223","0.79223" +"GO:0042180","cellular ketone metabolic process",11,6,5.88,932,"0.59279","0.79230","0.79230" +"GO:0035358","regulation of peroxisome proliferator ac...",3,1,1.6,1655,"0.89926","0.79283","0.79283" +"GO:0035360","positive regulation of peroxisome prolif...",3,1,1.6,1656,"0.89926","0.79283","0.79283" +"GO:0045600","positive regulation of fat cell differen...",3,1,1.6,1657,"0.89926","0.79283","0.79283" +"GO:0045647","negative regulation of erythrocyte diffe...",3,1,1.6,1658,"0.89926","0.79283","0.79283" +"GO:0060218","hematopoietic stem cell differentiation",3,1,1.6,1659,"0.89926","0.79283","0.79283" +"GO:0097066","response to thyroid hormone",3,1,1.6,1660,"0.89926","0.79283","0.79283" +"GO:0097067","cellular response to thyroid hormone sti...",3,1,1.6,1661,"0.89926","0.79283","0.79283" +"GO:1901532","regulation of hematopoietic progenitor c...",3,1,1.6,1662,"0.89926","0.79283","0.79283" +"GO:1902036","regulation of hematopoietic stem cell di...",3,1,1.6,1663,"0.89926","0.79283","0.79283" +"GO:2000322","regulation of glucocorticoid receptor si...",3,1,1.6,1664,"0.89926","0.79283","0.79283" +"GO:2000324","positive regulation of glucocorticoid re...",3,1,1.6,1665,"0.89926","0.79283","0.79283" +"GO:0006650","glycerophospholipid metabolic process",39,21,20.84,636,"0.54574","0.79308","0.79308" +"GO:0006513","protein monoubiquitination",6,3,3.21,1088,"0.71872","0.79380","0.79380" +"GO:0051321","meiotic cell cycle",13,4,6.95,2236,"0.97373","0.79390","0.79390" +"GO:0007007","inner mitochondrial membrane organizatio...",3,2,1.6,804,"0.55165","0.79390","0.79390" +"GO:0016236","macroautophagy",14,7,7.48,984,"0.70199","0.79427","0.79427" +"GO:0006414","translational elongation",6,1,3.21,2395,"0.98990","0.79436","0.79436" +"GO:0050731","positive regulation of peptidyl-tyrosine...",3,1,1.6,1666,"0.89926","0.79523","0.79523" +"GO:0061097","regulation of protein tyrosine kinase ac...",3,1,1.6,1667,"0.89926","0.79523","0.79523" +"GO:0061098","positive regulation of protein tyrosine ...",3,1,1.6,1668,"0.89926","0.79523","0.79523" +"GO:0007165","signal transduction",412,217,220.2,974,"0.65680","0.79571","0.79571" +"GO:0006357","regulation of transcription by RNA polym...",75,36,40.09,1484,"0.85966","0.79624","0.79624" +"GO:0003002","regionalization",28,9,14.97,2426,"0.99342","0.79636","0.79636" +"GO:0031047","gene silencing by RNA",9,2,4.81,2375,"0.98849","0.79652","0.79652" +"GO:0071897","DNA biosynthetic process",7,1,3.74,2448,"0.99531","0.79747","0.79747" +"GO:1902903","regulation of supramolecular fiber organ...",35,14,18.71,2180,"0.96232","0.79762","0.79762" +"GO:0070585","protein localization to mitochondrion",14,5,7.48,1984,"0.94604","0.79798","0.79798" +"GO:0072655","establishment of protein localization to...",14,5,7.48,1985,"0.94604","0.79798","0.79798" +"GO:0071356","cellular response to tumor necrosis fact...",5,3,2.67,873,"0.56449","0.79839","0.79839" +"GO:0006658","phosphatidylserine metabolic process",4,1,2.14,2043,"0.95317","0.79875","0.79875" +"GO:0010883","regulation of lipid storage",4,1,2.14,2044,"0.95317","0.79875","0.79875" +"GO:0010889","regulation of sequestering of triglyceri...",4,1,2.14,2045,"0.95317","0.79875","0.79875" +"GO:0030730","sequestering of triglyceride",4,1,2.14,2046,"0.95317","0.79875","0.79875" +"GO:0198738","cell-cell signaling by wnt",21,8,11.22,1997,"0.94936","0.79880","0.79880" +"GO:1905114","cell surface receptor signaling pathway ...",21,10,11.22,1210,"0.77589","0.79880","0.79880" +"GO:0030856","regulation of epithelial cell differenti...",5,3,2.67,874,"0.56449","0.79941","0.79941" +"GO:0052548","regulation of endopeptidase activity",11,4,5.88,1907,"0.92575","0.79968","0.79968" +"GO:2000116","regulation of cysteine-type endopeptidas...",11,4,5.88,1908,"0.92575","0.79968","0.79968" +"GO:0031110","regulation of microtubule polymerization...",11,4,5.88,1909,"0.92575","0.80023","0.80023" +"GO:0048608","reproductive structure development",19,7,10.16,2114,"0.95463","0.80041","0.80041" +"GO:0007224","smoothened signaling pathway",5,2,2.67,1438,"0.85289","0.80146","0.80146" +"GO:0030326","embryonic limb morphogenesis",5,1,2.67,2297,"0.97824","0.80146","0.80146" +"GO:0035113","embryonic appendage morphogenesis",5,1,2.67,2298,"0.97824","0.80146","0.80146" +"GO:1905515","non-motile cilium assembly",5,3,2.67,875,"0.56449","0.80146","0.80146" +"GO:0090130","tissue migration",14,4,7.48,2355,"0.98480","0.80312","0.80312" +"GO:1901888","regulation of cell junction assembly",3,1,1.6,1669,"0.89926","0.80370","0.80370" +"GO:1901987","regulation of cell cycle phase transitio...",6,3,3.21,1089,"0.71872","0.80411","0.80411" +"GO:0042127","regulation of cell proliferation",47,23,25.12,1222,"0.78079","0.80437","0.80437" +"GO:0006302","double-strand break repair",3,0,1.6,2640,"1.00000","0.80554","0.80554" +"GO:0014015","positive regulation of gliogenesis",3,2,1.6,805,"0.55165","0.80659","0.80659" +"GO:2000058","regulation of ubiquitin-dependent protei...",3,2,1.6,806,"0.55165","0.80659","0.80659" +"GO:0007423","sensory organ development",53,23,28.33,1991,"0.94762","0.80660","0.80660" +"GO:0016049","cell growth",25,10,13.36,1973,"0.94031","0.80767","0.80767" +"GO:0010604","positive regulation of macromolecule met...",108,44,57.72,2487,"0.99752","0.80774","0.80774" +"GO:0016482","cytosolic transport",14,6,7.48,1469,"0.85658","0.80811","0.80811" +"GO:0044089","positive regulation of cellular componen...",39,16,20.84,2169,"0.95819","0.80815","0.80815" +"GO:0048511","rhythmic process",24,9,12.83,2187,"0.96271","0.80851","0.80851" +"GO:0031056","regulation of histone modification",5,2,2.67,1439,"0.85289","0.80858","0.80858" +"GO:0035601","protein deacylation",5,3,2.67,876,"0.56449","0.80858","0.80858" +"GO:0098732","macromolecule deacylation",5,3,2.67,877,"0.56449","0.80858","0.80858" +"GO:1902275","regulation of chromatin organization",5,2,2.67,1440,"0.85289","0.80858","0.80858" +"GO:1990778","protein localization to cell periphery",12,5,6.41,1494,"0.86649","0.80932","0.80932" +"GO:0007275","multicellular organism development",306,144,163.55,2425,"0.99310","0.78834","0.80960" +"GO:0009737","response to abscisic acid",4,2,2.14,1179,"0.73753","0.80990","0.80990" +"GO:0030073","insulin secretion",8,5,4.28,578,"0.44079","0.81017","0.81017" +"GO:0051014","actin filament severing",8,6,4.28,280,"0.19408","0.03320","0.81021" +"GO:0007187","G protein-coupled receptor signaling pat...",3,2,1.6,807,"0.55165","0.81024","0.81024" +"GO:0007188","adenylate cyclase-modulating G protein-c...",3,2,1.6,808,"0.55165","0.81024","0.81024" +"GO:0006626","protein targeting to mitochondrion",13,4,6.95,2237,"0.97373","0.81102","0.81102" +"GO:0044092","negative regulation of molecular functio...",36,17,19.24,1304,"0.82206","0.13388","0.81183" +"GO:0031123","RNA 3'-end processing",3,2,1.6,809,"0.55165","0.81258","0.81258" +"GO:0048609","multicellular organismal reproductive pr...",58,30,31,973,"0.65606","0.81275","0.81275" +"GO:0045893","positive regulation of transcription, DN...",50,22,26.72,1932,"0.93269","0.81300","0.81300" +"GO:1902680","positive regulation of RNA biosynthetic ...",50,22,26.72,1933,"0.93269","0.81300","0.81300" +"GO:1903508","positive regulation of nucleic acid-temp...",50,22,26.72,1934,"0.93269","0.81300","0.81300" +"GO:0001763","morphogenesis of a branching structure",6,3,3.21,1090,"0.71872","0.81425","0.81425" +"GO:0035050","embryonic heart tube development",6,1,3.21,2396,"0.98990","0.81425","0.81425" +"GO:0035282","segmentation",6,2,3.21,1862,"0.91998","0.81425","0.81425" +"GO:0071396","cellular response to lipid",35,16,18.71,1487,"0.86314","0.81460","0.81460" +"GO:0031325","positive regulation of cellular metaboli...",114,47,60.93,2479,"0.99726","0.81467","0.81467" +"GO:0043547","positive regulation of GTPase activity",11,5,5.88,1257,"0.79823","0.81472","0.81472" +"GO:0044743","protein transmembrane import into intrac...",11,4,5.88,1910,"0.92575","0.81526","0.81526" +"GO:0007098","centrosome cycle",7,2,3.74,2154,"0.95742","0.81531","0.81531" +"GO:0031023","microtubule organizing center organizati...",7,2,3.74,2155,"0.95742","0.81531","0.81531" +"GO:0043687","post-translational protein modification",5,2,2.67,1441,"0.85289","0.81561","0.81561" +"GO:0003007","heart morphogenesis",13,5,6.95,1778,"0.91409","0.81587","0.81587" +"GO:0048562","embryonic organ morphogenesis",13,2,6.95,2532,"0.99925","0.81587","0.81587" +"GO:0051272","positive regulation of cellular componen...",13,6,6.95,1242,"0.79033","0.81587","0.81587" +"GO:0060560","developmental growth involved in morphog...",13,4,6.95,2238,"0.97373","0.81587","0.81587" +"GO:0090132","epithelium migration",13,4,6.95,2239,"0.97373","0.81587","0.81587" +"GO:1901699","cellular response to nitrogen compound",13,7,6.95,937,"0.60040","0.81587","0.81587" +"GO:2000241","regulation of reproductive process",13,4,6.95,2240,"0.97373","0.81587","0.81587" +"GO:0065007","biological regulation",866,434,462.86,2435,"0.99414","0.74939","0.81613" +"GO:1901575","organic substance catabolic process",126,63,67.34,1299,"0.81320","0.81656","0.81656" +"GO:0051173","positive regulation of nitrogen compound...",101,43,53.98,2409,"0.99036","0.81658","0.81658" +"GO:0006915","apoptotic process",66,30,35.28,1897,"0.92573","0.81864","0.81864" +"GO:0010629","negative regulation of gene expression",60,18,32.07,2550,"0.99994","0.81906","0.81906" +"GO:0050890","cognition",18,9,9.62,998,"0.70319","0.81922","0.81922" +"GO:0001570","vasculogenesis",4,0,2.14,2641,"1.00000","0.81951","0.81951" +"GO:0043067","regulation of programmed cell death",52,23,27.79,1930,"0.93150","0.81966","0.81966" +"GO:0010669","epithelial structure maintenance",3,1,1.6,1670,"0.89926","0.82004","0.82004" +"GO:0019991","septate junction assembly",3,1,1.6,1671,"0.89926","0.82004","0.82004" +"GO:0035151","regulation of tube size, open tracheal s...",3,1,1.6,1672,"0.89926","0.82004","0.82004" +"GO:0035152","regulation of tube architecture, open tr...",3,1,1.6,1673,"0.89926","0.82004","0.82004" +"GO:0003008","system process",93,52,49.71,421,"0.35258","0.68850","0.82014" +"GO:0002218","activation of innate immune response",4,1,2.14,2047,"0.95317","0.82040","0.82040" +"GO:0002221","pattern recognition receptor signaling p...",4,1,2.14,2048,"0.95317","0.82040","0.82040" +"GO:0002758","innate immune response-activating signal...",4,1,2.14,2049,"0.95317","0.82040","0.82040" +"GO:0035556","intracellular signal transduction",155,74,82.84,1971,"0.94013","0.82085","0.82085" +"GO:0000003","reproduction",91,41,48.64,2172,"0.95932","0.82096","0.82096" +"GO:0051338","regulation of transferase activity",31,15,16.57,1198,"0.77360","0.20199","0.82134" +"GO:0019953","sexual reproduction",51,27,27.26,917,"0.58624","0.82157","0.82157" +"GO:0006855","drug transmembrane transport",7,3,3.74,1344,"0.82639","0.82169","0.82169" +"GO:1902475","L-alpha-amino acid transmembrane transpo...",7,3,3.74,1345,"0.82639","0.82169","0.82169" +"GO:0033559","unsaturated fatty acid metabolic process",4,2,2.14,1180,"0.73753","0.82172","0.82172" +"GO:0051640","organelle localization",30,13,16.03,1755,"0.90345","0.82265","0.82265" +"GO:0042593","glucose homeostasis",9,3,4.81,1961,"0.94000","0.82285","0.82285" +"GO:0010646","regulation of cell communication",170,83,90.86,1765,"0.90894","0.82297","0.82297" +"GO:0018958","phenol-containing compound metabolic pro...",6,1,3.21,2397,"0.98990","0.82313","0.82313" +"GO:0042430","indole-containing compound metabolic pro...",6,3,3.21,1091,"0.71872","0.82313","0.82313" +"GO:0009968","negative regulation of signal transducti...",52,26,27.79,1191,"0.74081","0.82350","0.82350" +"GO:0019216","regulation of lipid metabolic process",17,9,9.09,953,"0.61403","0.82350","0.82350" +"GO:0051704","multi-organism process",115,60,61.46,972,"0.64735","0.82363","0.82363" +"GO:0010256","endomembrane system organization",22,8,11.76,2213,"0.96662","0.82459","0.82459" +"GO:0042775","mitochondrial ATP synthesis coupled elec...",9,4,4.81,1287,"0.80957","0.82476","0.82476" +"GO:0016055","Wnt signaling pathway",18,8,9.62,1375,"0.84271","0.82506","0.82506" +"GO:0042537","benzene-containing compound metabolic pr...",4,1,2.14,2050,"0.95317","0.82568","0.82568" +"GO:0050832","defense response to fungus",3,1,1.6,1674,"0.89926","0.82715","0.82715" +"GO:0002831","regulation of response to biotic stimulu...",3,0,1.6,2642,"1.00000","0.82715","0.82715" +"GO:0019932","second-messenger-mediated signaling",12,7,6.41,613,"0.48290","0.82742","0.82742" +"GO:0051130","positive regulation of cellular componen...",67,30,35.81,1976,"0.94142","0.82879","0.82879" +"GO:0010631","epithelial cell migration",12,4,6.41,2123,"0.95538","0.82881","0.82881" +"GO:0048469","cell maturation",12,5,6.41,1495,"0.86649","0.82881","0.82881" +"GO:0071417","cellular response to organonitrogen comp...",12,6,6.41,993,"0.70267","0.82881","0.82881" +"GO:0043009","chordate embryonic development",29,9,15.5,2463,"0.99588","0.82888","0.82888" +"GO:0031331","positive regulation of cellular cataboli...",16,5,8.55,2331,"0.97997","0.82913","0.82913" +"GO:0045637","regulation of myeloid cell differentiati...",10,4,5.34,1521,"0.87938","0.82917","0.82917" +"GO:0009950","dorsal/ventral axis specification",4,1,2.14,2051,"0.95317","0.83004","0.83004" +"GO:0050829","defense response to Gram-negative bacter...",4,1,2.14,2052,"0.95317","0.83091","0.83091" +"GO:0045785","positive regulation of cell adhesion",8,4,4.28,1038,"0.70951","0.83098","0.83098" +"GO:1903046","meiotic cell cycle process",12,4,6.41,2124,"0.95538","0.83120","0.83120" +"GO:0006685","sphingomyelin catabolic process",3,1,1.6,1675,"0.89926","0.83142","0.83142" +"GO:1902904","negative regulation of supramolecular fi...",21,9,11.22,1532,"0.88430","0.83174","0.83174" +"GO:0051146","striated muscle cell differentiation",26,18,13.9,93,"0.07576","0.03263","0.83320" +"GO:0051248","negative regulation of protein metabolic...",48,26,25.65,627,"0.51931","0.55220","0.83357" +"GO:0043123","positive regulation of I-kappaB kinase/N...",3,1,1.6,1676,"0.89926","0.83391","0.83391" +"GO:0030099","myeloid cell differentiation",17,5,9.09,2368,"0.98811","0.83398","0.83398" +"GO:0043254","regulation of protein complex assembly",31,13,16.57,1919,"0.92983","0.83459","0.83459" +"GO:0006606","protein import into nucleus",9,3,4.81,1962,"0.94000","0.83462","0.83462" +"GO:0046474","glycerophospholipid biosynthetic process",17,8,9.09,1220,"0.78070","0.83493","0.83493" +"GO:0009891","positive regulation of biosynthetic proc...",59,26,31.53,1979,"0.94453","0.83517","0.83517" +"GO:0010675","regulation of cellular carbohydrate meta...",5,3,2.67,878,"0.56449","0.83713","0.83713" +"GO:0010906","regulation of glucose metabolic process",5,3,2.67,879,"0.56449","0.83713","0.83713" +"GO:0042733","embryonic digit morphogenesis",4,1,2.14,2053,"0.95317","0.83780","0.83780" +"GO:0043085","positive regulation of catalytic activit...",44,18,23.52,2217,"0.96680","0.83798","0.83798" +"GO:0015931","nucleobase-containing compound transport",8,4,4.28,1039,"0.70951","0.83814","0.83814" +"GO:0006643","membrane lipid metabolic process",18,9,9.62,999,"0.70319","0.83836","0.83836" +"GO:0040011","locomotion",83,41,44.36,1265,"0.80666","0.83859","0.83859" +"GO:0006323","DNA packaging",6,3,3.21,1092,"0.71872","0.83888","0.83888" +"GO:0007298","border follicle cell migration",3,1,1.6,1677,"0.89926","0.83910","0.83910" +"GO:0042147","retrograde transport, endosome to Golgi",11,5,5.88,1258,"0.79823","0.83925","0.83925" +"GO:0017148","negative regulation of translation",4,2,2.14,1181,"0.73753","0.83972","0.83972" +"GO:0034249","negative regulation of cellular amide me...",4,2,2.14,1182,"0.73753","0.83972","0.83972" +"GO:0048638","regulation of developmental growth",13,5,6.95,1779,"0.91409","0.83974","0.83974" +"GO:0008593","regulation of Notch signaling pathway",7,1,3.74,2449,"0.99531","0.84021","0.84021" +"GO:0007029","endoplasmic reticulum organization",5,2,2.67,1442,"0.85289","0.84094","0.84094" +"GO:0009893","positive regulation of metabolic process",125,52,66.81,2490,"0.99760","0.84113","0.84113" +"GO:0032446","protein modification by small protein co...",39,17,20.84,1880,"0.92010","0.84126","0.84126" +"GO:0048731","system development",265,130,141.64,1977,"0.94365","0.75075","0.84138" +"GO:0090087","regulation of peptide transport",21,10,11.22,1211,"0.77589","0.84150","0.84150" +"GO:0007049","cell cycle",74,28,39.55,2503,"0.99787","0.84150","0.84150" +"GO:0042692","muscle cell differentiation",27,18,14.43,150,"0.11618","0.04527","0.84163" +"GO:0008544","epidermis development",11,5,5.88,1259,"0.79823","0.84194","0.84194" +"GO:0048588","developmental cell growth",11,2,5.88,2474,"0.99702","0.84194","0.84194" +"GO:2000147","positive regulation of cell motility",11,6,5.88,933,"0.59279","0.84194","0.84194" +"GO:0007276","gamete generation",42,21,22.45,1109,"0.72891","0.84215","0.84215" +"GO:0010648","negative regulation of cell communicatio...",54,27,28.86,1192,"0.74314","0.84229","0.84229" +"GO:0023057","negative regulation of signaling",54,27,28.86,1193,"0.74314","0.84229","0.84229" +"GO:0000075","cell cycle checkpoint",3,1,1.6,1678,"0.89926","0.84278","0.84278" +"GO:0001501","skeletal system development",17,6,9.09,2176,"0.96044","0.84280","0.84280" +"GO:0002694","regulation of leukocyte activation",17,4,9.09,2481,"0.99730","0.84280","0.84280" +"GO:0046649","lymphocyte activation",17,4,9.09,2482,"0.99730","0.84280","0.84280" +"GO:0050865","regulation of cell activation",17,4,9.09,2483,"0.99730","0.84280","0.84280" +"GO:0006575","cellular modified amino acid metabolic p...",12,5,6.41,1496,"0.86649","0.84308","0.84308" +"GO:0042752","regulation of circadian rhythm",9,2,4.81,2376,"0.98849","0.84371","0.84371" +"GO:2001252","positive regulation of chromosome organi...",4,1,2.14,2054,"0.95317","0.84374","0.84374" +"GO:0042327","positive regulation of phosphorylation",29,11,15.5,2227,"0.96964","0.84399","0.84399" +"GO:0007548","sex differentiation",11,5,5.88,1260,"0.79823","0.84614","0.84614" +"GO:0003018","vascular process in circulatory system",3,1,1.6,1679,"0.89926","0.84690","0.84690" +"GO:0098542","defense response to other organism",22,10,11.76,1365,"0.83393","0.84708","0.84708" +"GO:0009890","negative regulation of biosynthetic proc...",50,13,26.72,2554,"0.99998","0.84738","0.84738" +"GO:0031327","negative regulation of cellular biosynth...",50,13,26.72,2555,"0.99998","0.84738","0.84738" +"GO:0071363","cellular response to growth factor stimu...",20,9,10.69,1372,"0.83784","0.84756","0.84756" +"GO:0044255","cellular lipid metabolic process",114,63,60.93,505,"0.38201","0.24054","0.84800" +"GO:0002253","activation of immune response",10,3,5.34,2196,"0.96597","0.84873","0.84873" +"GO:0002764","immune response-regulating signaling pat...",10,3,5.34,2197,"0.96597","0.84873","0.84873" +"GO:0009798","axis specification",10,2,5.34,2431,"0.99412","0.84873","0.84873" +"GO:0050795","regulation of behavior",10,2,5.34,2432,"0.99412","0.84873","0.84873" +"GO:0071229","cellular response to acid chemical",9,4,4.81,1288,"0.80957","0.84875","0.84875" +"GO:0016567","protein ubiquitination",37,16,19.78,1882,"0.92216","0.84887","0.84887" +"GO:0021700","developmental maturation",14,6,7.48,1470,"0.85658","0.84900","0.84900" +"GO:0044703","multi-organism reproductive process",54,28,28.86,971,"0.64728","0.84939","0.84939" +"GO:0001818","negative regulation of cytokine producti...",6,3,3.21,1093,"0.71872","0.84972","0.84972" +"GO:0010558","negative regulation of macromolecule bio...",49,12,26.19,2560,"0.99999","0.85025","0.85025" +"GO:0031623","receptor internalization",3,2,1.6,810,"0.55165","0.85027","0.85027" +"GO:0031214","biomineral tissue development",5,1,2.67,2299,"0.97824","0.85033","0.85033" +"GO:1901568","fatty acid derivative metabolic process",5,2,2.67,1443,"0.85289","0.85033","0.85033" +"GO:0009791","post-embryonic development",20,8,10.69,1894,"0.92457","0.85037","0.85037" +"GO:0002768","immune response-regulating cell surface ...",7,2,3.74,2156,"0.95742","0.85179","0.85179" +"GO:0031328","positive regulation of cellular biosynth...",55,24,29.4,1989,"0.94651","0.85242","0.85242" +"GO:0010769","regulation of cell morphogenesis involve...",16,7,8.55,1383,"0.84884","0.85284","0.85284" +"GO:0010941","regulation of cell death",61,26,32.6,2223,"0.96759","0.85291","0.85291" +"GO:0045934","negative regulation of nucleobase-contai...",48,11,25.65,2568,"1.00000","0.85313","0.85313" +"GO:0072659","protein localization to plasma membrane",9,3,4.81,1963,"0.94000","0.85345","0.85345" +"GO:0010557","positive regulation of macromolecule bio...",54,23,28.86,2174,"0.96037","0.85406","0.85406" +"GO:0009894","regulation of catabolic process",37,17,19.78,1485,"0.86169","0.85469","0.85469" +"GO:0045444","fat cell differentiation",10,3,5.34,2198,"0.96597","0.85527","0.85527" +"GO:0048729","tissue morphogenesis",43,17,22.98,2255,"0.97732","0.83481","0.85576" +"GO:2000113","negative regulation of cellular macromol...",47,11,25.12,2562,"0.99999","0.85601","0.85601" +"GO:0097435","supramolecular fiber organization",60,30,32.07,1194,"0.75002","0.13361","0.85688" +"GO:0022604","regulation of cell morphogenesis",22,10,11.76,1366,"0.83393","0.85707","0.85707" +"GO:0060562","epithelial tube morphogenesis",19,3,10.16,2547,"0.99988","0.85734","0.85734" +"GO:0051169","nuclear transport",15,6,8.02,1759,"0.90449","0.85742","0.85742" +"GO:0072359","circulatory system development",53,26,28.33,1231,"0.78472","0.52342","0.85755" +"GO:0006490","oligosaccharide-lipid intermediate biosy...",5,0,2.67,2643,"1.00000","0.85769","0.85769" +"GO:0017004","cytochrome complex assembly",3,1,1.6,1680,"0.89926","0.85787","0.85787" +"GO:0065002","intracellular protein transmembrane tran...",6,3,3.21,1094,"0.71872","0.85795","0.85795" +"GO:0010628","positive regulation of gene expression",66,28,35.28,2241,"0.97413","0.85864","0.85864" +"GO:0071310","cellular response to organic substance",83,36,44.36,2252,"0.97637","0.85891","0.85891" +"GO:0048599","oocyte development",6,2,3.21,1863,"0.91998","0.85944","0.85944" +"GO:0043207","response to external biotic stimulus",33,16,17.64,1202,"0.77404","0.85953","0.85953" +"GO:0051707","response to other organism",33,16,17.64,1203,"0.77404","0.85953","0.85953" +"GO:0045935","positive regulation of nucleobase-contai...",60,25,32.07,2251,"0.97636","0.85987","0.85987" +"GO:0051249","regulation of lymphocyte activation",15,4,8.02,2416,"0.99134","0.86005","0.86005" +"GO:0001701","in utero embryonic development",14,2,7.48,2540,"0.99963","0.86130","0.86130" +"GO:1903706","regulation of hemopoiesis",14,4,7.48,2356,"0.98480","0.86130","0.86130" +"GO:0045793","positive regulation of cell size",3,0,1.6,2644,"1.00000","0.86138","0.86138" +"GO:0051253","negative regulation of RNA metabolic pro...",45,10,24.05,2564,"1.00000","0.86181","0.86181" +"GO:1902679","negative regulation of RNA biosynthetic ...",45,10,24.05,2565,"1.00000","0.86181","0.86181" +"GO:1903507","negative regulation of nucleic acid-temp...",45,10,24.05,2566,"1.00000","0.86181","0.86181" +"GO:0032878","regulation of establishment or maintenan...",3,1,1.6,1681,"0.89926","0.86208","0.86208" +"GO:0044860","protein localization to plasma membrane ...",3,1,1.6,1682,"0.89926","0.86208","0.86208" +"GO:1903044","protein localization to membrane raft",3,1,1.6,1683,"0.89926","0.86208","0.86208" +"GO:2000114","regulation of establishment of cell pola...",3,1,1.6,1684,"0.89926","0.86208","0.86208" +"GO:0006582","melanin metabolic process",3,0,1.6,2645,"1.00000","0.86208","0.86208" +"GO:0032092","positive regulation of protein binding",3,0,1.6,2646,"1.00000","0.86208","0.86208" +"GO:0035006","melanization defense response",3,0,1.6,2647,"1.00000","0.86208","0.86208" +"GO:0042982","amyloid precursor protein metabolic proc...",3,0,1.6,2648,"1.00000","0.86208","0.86208" +"GO:0042987","amyloid precursor protein catabolic proc...",3,0,1.6,2649,"1.00000","0.86208","0.86208" +"GO:0045844","positive regulation of striated muscle t...",3,0,1.6,2650,"1.00000","0.86208","0.86208" +"GO:0048636","positive regulation of muscle organ deve...",3,0,1.6,2651,"1.00000","0.86208","0.86208" +"GO:0048641","regulation of skeletal muscle tissue dev...",3,0,1.6,2652,"1.00000","0.86208","0.86208" +"GO:0061355","Wnt protein secretion",3,0,1.6,2653,"1.00000","0.86208","0.86208" +"GO:1901863","positive regulation of muscle tissue dev...",3,0,1.6,2654,"1.00000","0.86208","0.86208" +"GO:1902991","regulation of amyloid precursor protein ...",3,0,1.6,2655,"1.00000","0.86208","0.86208" +"GO:0002757","immune response-activating signal transd...",9,2,4.81,2377,"0.98849","0.86282","0.86282" +"GO:0006898","receptor-mediated endocytosis",9,2,4.81,2378,"0.98849","0.86282","0.86282" +"GO:0007498","mesoderm development",9,1,4.81,2516,"0.99899","0.86282","0.86282" +"GO:0021915","neural tube development",9,1,4.81,2517,"0.99899","0.86282","0.86282" +"GO:0051246","regulation of protein metabolic process",108,44,57.72,2488,"0.99752","0.77407","0.86353" +"GO:0045892","negative regulation of transcription, DN...",44,10,23.52,2561,"0.99999","0.86472","0.86472" +"GO:1901565","organonitrogen compound catabolic proces...",80,37,42.76,1884,"0.92310","0.86485","0.86485" +"GO:0022603","regulation of anatomical structure morph...",44,23,23.52,956,"0.62280","0.40371","0.86509" +"GO:0048667","cell morphogenesis involved in neuron di...",41,16,21.91,2326,"0.97869","0.86560","0.86560" +"GO:0019441","tryptophan catabolic process to kynureni...",3,1,1.6,1685,"0.89926","0.86624","0.86624" +"GO:0070189","kynurenine metabolic process",3,1,1.6,1686,"0.89926","0.86624","0.86624" +"GO:0006260","DNA replication",11,4,5.88,1911,"0.92575","0.86650","0.86650" +"GO:0006986","response to unfolded protein",10,4,5.34,1522,"0.87938","0.86741","0.86741" +"GO:0070848","response to growth factor",22,10,11.76,1367,"0.83393","0.86766","0.86766" +"GO:0072657","protein localization to membrane",28,12,14.97,1763,"0.90665","0.86773","0.86773" +"GO:0006310","DNA recombination",9,1,4.81,2518,"0.99899","0.86814","0.86814" +"GO:0006457","protein folding",32,9,17.1,2528,"0.99905","0.86828","0.86828" +"GO:0001503","ossification",9,4,4.81,1289,"0.80957","0.86880","0.86880" +"GO:0001706","endoderm formation",3,1,1.6,1687,"0.89926","0.86966","0.86966" +"GO:0001711","endodermal cell fate commitment",3,1,1.6,1688,"0.89926","0.86966","0.86966" +"GO:0001714","endodermal cell fate specification",3,1,1.6,1689,"0.89926","0.86966","0.86966" +"GO:0035987","endodermal cell differentiation",3,1,1.6,1690,"0.89926","0.86966","0.86966" +"GO:0030111","regulation of Wnt signaling pathway",13,5,6.95,1780,"0.91409","0.87059","0.87059" +"GO:0042110","T cell activation",13,3,6.95,2437,"0.99438","0.87059","0.87059" +"GO:0001707","mesoderm formation",4,0,2.14,2656,"1.00000","0.87064","0.87064" +"GO:0019058","viral life cycle",14,4,7.48,2357,"0.98480","0.87111","0.87111" +"GO:0009607","response to biotic stimulus",34,17,18.17,1104,"0.71931","0.87132","0.87132" +"GO:0007507","heart development",38,18,20.31,1303,"0.82164","0.82152","0.87200" +"GO:0032570","response to progesterone",9,3,4.81,1964,"0.94000","0.87234","0.87234" +"GO:0032269","negative regulation of cellular protein ...",46,25,24.59,623,"0.51153","0.47784","0.87250" +"GO:0003006","developmental process involved in reprod...",50,21,26.72,2189,"0.96271","0.87447","0.87447" +"GO:0007169","transmembrane receptor protein tyrosine ...",22,9,11.76,1795,"0.91916","0.87455","0.87455" +"GO:0015800","acidic amino acid transport",3,2,1.6,811,"0.55165","0.87530","0.87530" +"GO:0002274","myeloid leukocyte activation",8,4,4.28,1040,"0.70951","0.87713","0.87713" +"GO:0018991","oviposition",8,1,4.28,2497,"0.99782","0.87713","0.87713" +"GO:0042098","T cell proliferation",8,2,4.28,2272,"0.97771","0.87713","0.87713" +"GO:0045646","regulation of erythrocyte differentiatio...",8,3,4.28,1571,"0.89652","0.87713","0.87713" +"GO:0030900","forebrain development",23,9,12.29,1980,"0.94460","0.87736","0.87736" +"GO:0002009","morphogenesis of an epithelium",37,15,19.78,2173,"0.96019","0.62702","0.87795" +"GO:0002237","response to molecule of bacterial origin",8,3,4.28,1572,"0.89652","0.87808","0.87808" +"GO:0046545","development of primary female sexual cha...",4,1,2.14,2055,"0.95317","0.87821","0.87821" +"GO:0046660","female sex differentiation",4,1,2.14,2056,"0.95317","0.87821","0.87821" +"GO:0002262","myeloid cell homeostasis",12,4,6.41,2125,"0.95538","0.87997","0.87997" +"GO:0030218","erythrocyte differentiation",12,4,6.41,2126,"0.95538","0.87997","0.87997" +"GO:0034101","erythrocyte homeostasis",12,4,6.41,2127,"0.95538","0.87997","0.87997" +"GO:0050863","regulation of T cell activation",12,3,6.41,2382,"0.98962","0.87997","0.87997" +"GO:0060070","canonical Wnt signaling pathway",12,5,6.41,1497,"0.86649","0.87997","0.87997" +"GO:0006366","transcription by RNA polymerase II",80,37,42.76,1885,"0.92310","0.88017","0.88017" +"GO:0072523","purine-containing compound catabolic pro...",3,1,1.6,1691,"0.89926","0.88018","0.88018" +"GO:0031058","positive regulation of histone modificat...",3,1,1.6,1692,"0.89926","0.88040","0.88040" +"GO:0035065","regulation of histone acetylation",3,1,1.6,1693,"0.89926","0.88040","0.88040" +"GO:1901983","regulation of protein acetylation",3,1,1.6,1694,"0.89926","0.88040","0.88040" +"GO:1905269","positive regulation of chromatin organiz...",3,1,1.6,1695,"0.89926","0.88040","0.88040" +"GO:2000756","regulation of peptidyl-lysine acetylatio...",3,1,1.6,1696,"0.89926","0.88040","0.88040" +"GO:0050954","sensory perception of mechanical stimulu...",6,3,3.21,1095,"0.71872","0.88080","0.88080" +"GO:0014020","primary neural tube formation",6,0,3.21,2657,"1.00000","0.88080","0.88080" +"GO:0042594","response to starvation",18,7,9.62,1926,"0.93077","0.88098","0.88098" +"GO:0009895","negative regulation of catabolic process",7,4,3.74,906,"0.57515","0.88123","0.88123" +"GO:0031330","negative regulation of cellular cataboli...",7,4,3.74,907,"0.57515","0.88123","0.88123" +"GO:0009605","response to external stimulus",120,63,64.14,955,"0.62141","0.52647","0.88132" +"GO:0008654","phospholipid biosynthetic process",23,11,12.29,1205,"0.77458","0.88145","0.88145" +"GO:0046847","filopodium assembly",5,1,2.67,2300,"0.97824","0.88146","0.88146" +"GO:0010154","fruit development",3,1,1.6,1697,"0.89926","0.88150","0.88150" +"GO:0048316","seed development",3,1,1.6,1698,"0.89926","0.88150","0.88150" +"GO:0016310","phosphorylation",209,105,111.71,1386,"0.85246","0.83875","0.88207" +"GO:0042303","molting cycle",8,4,4.28,1041,"0.70951","0.88253","0.88253" +"GO:0045732","positive regulation of protein catabolic...",8,3,4.28,1573,"0.89652","0.88253","0.88253" +"GO:0001838","embryonic epithelial tube formation",8,0,4.28,2658,"1.00000","0.88253","0.88253" +"GO:0072175","epithelial tube formation",8,0,4.28,2659,"1.00000","0.88253","0.88253" +"GO:0051493","regulation of cytoskeleton organization",40,15,21.38,2362,"0.98620","0.88341","0.88341" +"GO:0007219","Notch signaling pathway",10,2,5.34,2433,"0.99412","0.88393","0.88393" +"GO:0006488","dolichol-linked oligosaccharide biosynth...",4,0,2.14,2660,"1.00000","0.88448","0.88448" +"GO:0045859","regulation of protein kinase activity",23,12,12.29,961,"0.63167","0.06962","0.88469" +"GO:0051084","'de novo' posttranslational protein fold...",10,3,5.34,2199,"0.96597","0.88512","0.88512" +"GO:0051085","chaperone cofactor-dependent protein ref...",10,3,5.34,2200,"0.96597","0.88512","0.88512" +"GO:0070265","necrotic cell death",3,1,1.6,1699,"0.89926","0.88542","0.88542" +"GO:0097352","autophagosome maturation",3,2,1.6,812,"0.55165","0.88542","0.88542" +"GO:0090066","regulation of anatomical structure size",35,14,18.71,2181,"0.96232","0.88586","0.88586" +"GO:0061061","muscle structure development",58,33,31,420,"0.34567","0.41481","0.88598" +"GO:0031098","stress-activated protein kinase signalin...",7,3,3.74,1346,"0.82639","0.88635","0.88635" +"GO:0051403","stress-activated MAPK cascade",7,3,3.74,1347,"0.82639","0.88635","0.88635" +"GO:0006506","GPI anchor biosynthetic process",7,3,3.74,1348,"0.82639","0.88706","0.88706" +"GO:0030858","positive regulation of epithelial cell d...",3,2,1.6,813,"0.55165","0.88778","0.88778" +"GO:0045667","regulation of osteoblast differentiation",3,2,1.6,814,"0.55165","0.88778","0.88778" +"GO:0061025","membrane fusion",5,3,2.67,880,"0.56449","0.88818","0.88818" +"GO:0032496","response to lipopolysaccharide",7,3,3.74,1349,"0.82639","0.88860","0.88860" +"GO:0021761","limbic system development",7,4,3.74,908,"0.57515","0.88888","0.88888" +"GO:0045137","development of primary sexual characteri...",7,3,3.74,1350,"0.82639","0.88888","0.88888" +"GO:0045176","apical protein localization",3,1,1.6,1700,"0.89926","0.88928","0.88928" +"GO:0060219","camera-type eye photoreceptor cell diffe...",3,1,1.6,1701,"0.89926","0.88928","0.88928" +"GO:1901655","cellular response to ketone",3,1,1.6,1702,"0.89926","0.88928","0.88928" +"GO:0016458","gene silencing",11,2,5.88,2475,"0.99702","0.88944","0.88944" +"GO:0045665","negative regulation of neuron differenti...",11,4,5.88,1912,"0.92575","0.88944","0.88944" +"GO:0060828","regulation of canonical Wnt signaling pa...",11,4,5.88,1913,"0.92575","0.88944","0.88944" +"GO:0022409","positive regulation of cell-cell adhesio...",5,2,2.67,1444,"0.85289","0.88983","0.88983" +"GO:0015807","L-amino acid transport",8,3,4.28,1574,"0.89652","0.89006","0.89006" +"GO:0045944","positive regulation of transcription by ...",40,18,21.38,1545,"0.89244","0.89024","0.89024" +"GO:0008285","negative regulation of cell proliferatio...",18,7,9.62,1927,"0.93077","0.89053","0.89053" +"GO:0061014","positive regulation of mRNA catabolic pr...",3,1,1.6,1703,"0.89926","0.89077","0.89077" +"GO:0001890","placenta development",5,1,2.67,2301,"0.97824","0.89147","0.89147" +"GO:0007159","leukocyte cell-cell adhesion",7,3,3.74,1351,"0.82639","0.89167","0.89167" +"GO:0042129","regulation of T cell proliferation",7,2,3.74,2157,"0.95742","0.89167","0.89167" +"GO:0048259","regulation of receptor-mediated endocyto...",7,1,3.74,2450,"0.99531","0.89167","0.89167" +"GO:0001841","neural tube formation",7,0,3.74,2661,"1.00000","0.89167","0.89167" +"GO:0046662","regulation of oviposition",7,0,3.74,2662,"1.00000","0.89167","0.89167" +"GO:0002263","cell activation involved in immune respo...",5,3,2.67,881,"0.56449","0.89229","0.89229" +"GO:0002275","myeloid cell activation involved in immu...",5,3,2.67,882,"0.56449","0.89229","0.89229" +"GO:0002283","neutrophil activation involved in immune...",5,3,2.67,883,"0.56449","0.89229","0.89229" +"GO:0002366","leukocyte activation involved in immune ...",5,3,2.67,884,"0.56449","0.89229","0.89229" +"GO:0043299","leukocyte degranulation",5,3,2.67,885,"0.56449","0.89229","0.89229" +"GO:0043312","neutrophil degranulation",5,3,2.67,886,"0.56449","0.89229","0.89229" +"GO:0120034","positive regulation of plasma membrane b...",5,2,2.67,1445,"0.85289","0.89229","0.89229" +"GO:0010721","negative regulation of cell development",14,5,7.48,1986,"0.94604","0.89300","0.89300" +"GO:0048863","stem cell differentiation",14,2,7.48,2541,"0.99963","0.89300","0.89300" +"GO:0051961","negative regulation of nervous system de...",14,5,7.48,1987,"0.94604","0.89300","0.89300" +"GO:0016125","sterol metabolic process",12,6,6.41,994,"0.70267","0.89301","0.89301" +"GO:0051276","chromosome organization",58,17,31,2551,"0.99995","0.89306","0.89306" +"GO:0009966","regulation of signal transduction",146,67,78.03,2248,"0.97582","0.89530","0.89530" +"GO:0030155","regulation of cell adhesion",17,7,9.09,1582,"0.89653","0.89632","0.89632" +"GO:0030178","negative regulation of Wnt signaling pat...",7,3,3.74,1352,"0.82639","0.89647","0.89647" +"GO:0035108","limb morphogenesis",7,2,3.74,2158,"0.95742","0.89647","0.89647" +"GO:0048565","digestive tract development",7,1,3.74,2451,"0.99531","0.89647","0.89647" +"GO:0048705","skeletal system morphogenesis",7,1,3.74,2452,"0.99531","0.89647","0.89647" +"GO:0055123","digestive system development",7,1,3.74,2453,"0.99531","0.89647","0.89647" +"GO:0060173","limb development",7,2,3.74,2159,"0.95742","0.89647","0.89647" +"GO:0060348","bone development",7,1,3.74,2454,"0.99531","0.89647","0.89647" +"GO:0070371","ERK1 and ERK2 cascade",7,2,3.74,2160,"0.95742","0.89647","0.89647" +"GO:0001745","compound eye morphogenesis",8,2,4.28,2273,"0.97771","0.89701","0.89701" +"GO:0042063","gliogenesis",10,4,5.34,1523,"0.87938","0.89900","0.89900" +"GO:0007635","chemosensory behavior",5,0,2.67,2663,"1.00000","0.89954","0.89954" +"GO:0006325","chromatin organization",43,14,22.98,2506,"0.99837","0.89994","0.89994" +"GO:1903918","regulation of actin filament severing",7,6,3.74,126,"0.08810","0.01433","0.90016" +"GO:0043087","regulation of GTPase activity",16,8,8.55,988,"0.70227","0.90021","0.90021" +"GO:0050768","negative regulation of neurogenesis",13,5,6.95,1781,"0.91409","0.90029","0.90029" +"GO:0033365","protein localization to organelle",41,16,21.91,2327,"0.97869","0.90091","0.90091" +"GO:0006120","mitochondrial electron transport, NADH t...",6,2,3.21,1864,"0.91998","0.90131","0.90131" +"GO:0043588","skin development",11,5,5.88,1261,"0.79823","0.90131","0.90131" +"GO:0000904","cell morphogenesis involved in different...",49,20,26.19,2234,"0.97357","0.90244","0.90244" +"GO:0050789","regulation of biological process",806,399,430.79,2489,"0.99757","0.84912","0.90250" +"GO:0009952","anterior/posterior pattern specification",9,4,4.81,1290,"0.80957","0.90302","0.90302" +"GO:0071559","response to transforming growth factor b...",9,4,4.81,1291,"0.80957","0.90302","0.90302" +"GO:0071560","cellular response to transforming growth...",9,4,4.81,1292,"0.80957","0.90302","0.90302" +"GO:0006839","mitochondrial transport",25,11,13.36,1504,"0.87560","0.90390","0.90390" +"GO:0006403","RNA localization",4,1,2.14,2057,"0.95317","0.90403","0.90403" +"GO:0007308","oocyte construction",4,1,2.14,2058,"0.95317","0.90403","0.90403" +"GO:0007309","oocyte axis specification",4,1,2.14,2059,"0.95317","0.90403","0.90403" +"GO:0051489","regulation of filopodium assembly",4,1,2.14,2060,"0.95317","0.90403","0.90403" +"GO:0051965","positive regulation of synapse assembly",4,2,2.14,1183,"0.73753","0.90403","0.90403" +"GO:0031400","negative regulation of protein modificat...",34,20,18.17,386,"0.32424","0.32148","0.90452" +"GO:0032943","mononuclear cell proliferation",10,3,5.34,2201,"0.96597","0.90457","0.90457" +"GO:0046651","lymphocyte proliferation",10,3,5.34,2202,"0.96597","0.90457","0.90457" +"GO:0070661","leukocyte proliferation",10,3,5.34,2203,"0.96597","0.90457","0.90457" +"GO:0140029","exocytic process",9,3,4.81,1965,"0.94000","0.90511","0.90511" +"GO:0021953","central nervous system neuron differenti...",7,3,3.74,1353,"0.82639","0.90541","0.90541" +"GO:0015985","energy coupled proton transport, down el...",12,6,6.41,995,"0.70267","0.90544","0.90544" +"GO:0015986","ATP synthesis coupled proton transport",12,6,6.41,996,"0.70267","0.90544","0.90544" +"GO:0072503","cellular divalent inorganic cation homeo...",21,17,11.22,20,"0.00847","0.01378","0.90607" +"GO:0001776","leukocyte homeostasis",6,1,3.21,2398,"0.98990","0.90643","0.90643" +"GO:0002260","lymphocyte homeostasis",6,1,3.21,2399,"0.98990","0.90643","0.90643" +"GO:0010171","body morphogenesis",6,2,3.21,1865,"0.91998","0.90643","0.90643" +"GO:1903037","regulation of leukocyte cell-cell adhesi...",6,2,3.21,1866,"0.91998","0.90643","0.90643" +"GO:2000026","regulation of multicellular organismal d...",95,47,50.78,1300,"0.81543","0.75860","0.90698" +"GO:0048736","appendage development",12,3,6.41,2383,"0.98962","0.90763","0.90763" +"GO:0030041","actin filament polymerization",17,7,9.09,1583,"0.89653","0.90826","0.90826" +"GO:0030833","regulation of actin filament polymerizat...",17,7,9.09,1584,"0.89653","0.90826","0.90826" +"GO:0071407","cellular response to organic cyclic comp...",26,11,13.9,1771,"0.91028","0.90846","0.90846" +"GO:0010001","glial cell differentiation",9,3,4.81,1966,"0.94000","0.90866","0.90866" +"GO:0016202","regulation of striated muscle tissue dev...",9,4,4.81,1293,"0.80957","0.90866","0.90866" +"GO:0048634","regulation of muscle organ development",9,4,4.81,1294,"0.80957","0.90866","0.90866" +"GO:1901861","regulation of muscle tissue development",9,4,4.81,1295,"0.80957","0.90866","0.90866" +"GO:0070887","cellular response to chemical stimulus",102,46,54.52,2211,"0.96626","0.90996","0.90996" +"GO:0009719","response to endogenous stimulus",67,34,35.81,1053,"0.71748","0.91014","0.91014" +"GO:0043161","proteasome-mediated ubiquitin-dependent ...",15,8,8.02,948,"0.60745","0.91022","0.91022" +"GO:0001649","osteoblast differentiation",6,3,3.21,1096,"0.71872","0.91061","0.91061" +"GO:0001942","hair follicle development",6,3,3.21,1097,"0.71872","0.91061","0.91061" +"GO:0022404","molting cycle process",6,3,3.21,1098,"0.71872","0.91061","0.91061" +"GO:0022405","hair cycle process",6,3,3.21,1099,"0.71872","0.91061","0.91061" +"GO:0042633","hair cycle",6,3,3.21,1100,"0.71872","0.91061","0.91061" +"GO:0090090","negative regulation of canonical Wnt sig...",6,2,3.21,1867,"0.91998","0.91061","0.91061" +"GO:0098773","skin epidermis development",6,3,3.21,1101,"0.71872","0.91061","0.91061" +"GO:0071495","cellular response to endogenous stimulus",48,21,25.65,1938,"0.93400","0.91102","0.91102" +"GO:0048278","vesicle docking",8,3,4.28,1575,"0.89652","0.91104","0.91104" +"GO:0045639","positive regulation of myeloid cell diff...",5,2,2.67,1446,"0.85289","0.91115","0.91115" +"GO:0045648","positive regulation of erythrocyte diffe...",5,2,2.67,1447,"0.85289","0.91115","0.91115" +"GO:0055076","transition metal ion homeostasis",5,2,2.67,1448,"0.85289","0.91115","0.91115" +"GO:1903708","positive regulation of hemopoiesis",5,2,2.67,1449,"0.85289","0.91115","0.91115" +"GO:0055080","cation homeostasis",33,24,17.64,36,"0.01824","0.04105","0.91127" +"GO:0098771","inorganic ion homeostasis",33,24,17.64,37,"0.01824","0.04105","0.91127" +"GO:0045017","glycerolipid biosynthetic process",19,9,10.16,1217,"0.77786","0.91157","0.91157" +"GO:0010172","embryonic body morphogenesis",4,1,2.14,2061,"0.95317","0.91173","0.91173" +"GO:0050896","response to stimulus",642,331,343.13,1528,"0.87975","0.90951","0.91196" +"GO:0012501","programmed cell death",71,32,37.95,1972,"0.94022","0.91300","0.91300" +"GO:0008406","gonad development",6,3,3.21,1102,"0.71872","0.91308","0.91308" +"GO:0050794","regulation of cellular process",778,383,415.82,2505,"0.99831","0.88491","0.91324" +"GO:0032268","regulation of cellular protein metabolic...",99,43,52.91,2351,"0.98391","0.82752","0.91325" +"GO:0032944","regulation of mononuclear cell prolifera...",9,3,4.81,1967,"0.94000","0.91372","0.91372" +"GO:0050670","regulation of lymphocyte proliferation",9,3,4.81,1968,"0.94000","0.91372","0.91372" +"GO:0070663","regulation of leukocyte proliferation",9,3,4.81,1969,"0.94000","0.91372","0.91372" +"GO:0007163","establishment or maintenance of cell pol...",14,4,7.48,2358,"0.98480","0.91391","0.91391" +"GO:0022407","regulation of cell-cell adhesion",11,5,5.88,1262,"0.79823","0.91503","0.91503" +"GO:0035107","appendage morphogenesis",11,2,5.88,2476,"0.99702","0.91503","0.91503" +"GO:0000122","negative regulation of transcription by ...",27,6,14.43,2544,"0.99980","0.91527","0.91527" +"GO:0044419","interspecies interaction between organis...",21,7,11.22,2346,"0.98154","0.91543","0.91543" +"GO:0032956","regulation of actin cytoskeleton organiz...",26,10,13.9,2171,"0.95908","0.91560","0.91560" +"GO:0065003","protein-containing complex assembly",88,42,47.03,1534,"0.88590","0.91577","0.91577" +"GO:0008643","carbohydrate transport",10,4,5.34,1524,"0.87938","0.91634","0.91634" +"GO:0009743","response to carbohydrate",7,2,3.74,2161,"0.95742","0.91699","0.91699" +"GO:0006281","DNA repair",19,5,10.16,2465,"0.99598","0.91706","0.91706" +"GO:0007411","axon guidance",19,4,10.16,2530,"0.99919","0.91819","0.91819" +"GO:0097485","neuron projection guidance",19,4,10.16,2531,"0.99919","0.91819","0.91819" +"GO:0007264","small GTPase mediated signal transductio...",44,18,23.52,2218,"0.96680","0.91826","0.91826" +"GO:0050730","regulation of peptidyl-tyrosine phosphor...",4,1,2.14,2062,"0.95317","0.91834","0.91834" +"GO:0072089","stem cell proliferation",8,3,4.28,1576,"0.89652","0.91842","0.91842" +"GO:0009896","positive regulation of catabolic process",20,6,10.69,2412,"0.99080","0.91877","0.91877" +"GO:0048519","negative regulation of biological proces...",215,94,114.91,2515,"0.99893","0.83364","0.91882" +"GO:0071496","cellular response to external stimulus",12,4,6.41,2128,"0.95538","0.91919","0.91919" +"GO:0009653","anatomical structure morphogenesis",173,81,92.46,2230,"0.97083","0.77227","0.92030" +"GO:0006012","galactose metabolic process",3,1,1.6,1704,"0.89926","0.92042","0.92042" +"GO:0022406","membrane docking",9,4,4.81,1296,"0.80957","0.92059","0.92059" +"GO:0140056","organelle localization by membrane tethe...",9,4,4.81,1297,"0.80957","0.92059","0.92059" +"GO:0090114","COPII-coated vesicle budding",4,1,2.14,2063,"0.95317","0.92124","0.92124" +"GO:0009880","embryonic pattern specification",5,1,2.67,2302,"0.97824","0.92143","0.92143" +"GO:0043029","T cell homeostasis",5,1,2.67,2303,"0.97824","0.92143","0.92143" +"GO:0048260","positive regulation of receptor-mediated...",5,1,2.67,2304,"0.97824","0.92143","0.92143" +"GO:0001843","neural tube closure",5,0,2.67,2664,"1.00000","0.92143","0.92143" +"GO:0048332","mesoderm morphogenesis",5,0,2.67,2665,"1.00000","0.92143","0.92143" +"GO:0060606","tube closure",5,0,2.67,2666,"1.00000","0.92143","0.92143" +"GO:0071695","anatomical structure maturation",7,3,3.74,1354,"0.82639","0.92164","0.92164" +"GO:0033209","tumor necrosis factor-mediated signaling...",4,2,2.14,1184,"0.73753","0.92220","0.92220" +"GO:0001738","morphogenesis of a polarized epithelium",10,7,5.34,328,"0.23374","0.10419","0.92245" +"GO:0007164","establishment of tissue polarity",10,8,5.34,116,"0.08296","0.03938","0.92245" +"GO:0048749","compound eye development",10,2,5.34,2434,"0.99412","0.92248","0.92248" +"GO:0043624","cellular protein complex disassembly",15,6,8.02,1760,"0.90449","0.92253","0.92253" +"GO:0045814","negative regulation of gene expression, ...",8,2,4.28,2274,"0.97771","0.92296","0.92296" +"GO:0048545","response to steroid hormone",31,13,16.57,1920,"0.92983","0.92476","0.92476" +"GO:0044265","cellular macromolecule catabolic process",45,19,24.05,2003,"0.95299","0.92489","0.92489" +"GO:0030278","regulation of ossification",5,2,2.67,1450,"0.85289","0.92496","0.92496" +"GO:0043583","ear development",5,2,2.67,1451,"0.85289","0.92496","0.92496" +"GO:0048839","inner ear development",5,2,2.67,1452,"0.85289","0.92496","0.92496" +"GO:0060425","lung morphogenesis",5,1,2.67,2305,"0.97824","0.92496","0.92496" +"GO:0072091","regulation of stem cell proliferation",5,2,2.67,1453,"0.85289","0.92496","0.92496" +"GO:2000243","positive regulation of reproductive proc...",5,1,2.67,2306,"0.97824","0.92496","0.92496" +"GO:0048546","digestive tract morphogenesis",5,0,2.67,2667,"1.00000","0.92496","0.92496" +"GO:0043297","apical junction assembly",4,1,2.14,2064,"0.95317","0.92535","0.92535" +"GO:0120192","tight junction assembly",4,1,2.14,2065,"0.95317","0.92535","0.92535" +"GO:0120193","tight junction organization",4,1,2.14,2066,"0.95317","0.92535","0.92535" +"GO:0006259","DNA metabolic process",40,11,21.38,2543,"0.99978","0.92553","0.92553" +"GO:0017038","protein import",15,5,8.02,2221,"0.96682","0.92579","0.92579" +"GO:0050657","nucleic acid transport",3,1,1.6,1705,"0.89926","0.92715","0.92715" +"GO:0050658","RNA transport",3,1,1.6,1706,"0.89926","0.92715","0.92715" +"GO:0051236","establishment of RNA localization",3,1,1.6,1707,"0.89926","0.92715","0.92715" +"GO:0009725","response to hormone",54,26,28.86,1308,"0.82333","0.92732","0.92732" +"GO:0022411","cellular component disassembly",21,8,11.22,1998,"0.94936","0.92746","0.92746" +"GO:0034976","response to endoplasmic reticulum stress",23,9,12.29,1981,"0.94460","0.92747","0.92747" +"GO:0006665","sphingolipid metabolic process",9,4,4.81,1298,"0.80957","0.92825","0.92825" +"GO:0001708","cell fate specification",7,1,3.74,2455,"0.99531","0.92827","0.92827" +"GO:0002521","leukocyte differentiation",7,1,3.74,2456,"0.99531","0.92827","0.92827" +"GO:0051216","cartilage development",7,1,3.74,2457,"0.99531","0.92827","0.92827" +"GO:0061448","connective tissue development",7,1,3.74,2458,"0.99531","0.92827","0.92827" +"GO:0061515","myeloid cell development",7,1,3.74,2459,"0.99531","0.92827","0.92827" +"GO:0036503","ERAD pathway",14,5,7.48,1988,"0.94604","0.92830","0.92830" +"GO:0042221","response to chemical",199,95,106.36,2178,"0.96085","0.92921","0.92921" +"GO:0055082","cellular chemical homeostasis",30,21,16.03,70,"0.04842","0.08330","0.93111" +"GO:0051258","protein polymerization",29,12,15.5,1937,"0.93296","0.93115","0.93115" +"GO:0042440","pigment metabolic process",7,2,3.74,2162,"0.95742","0.93149","0.93149" +"GO:0018345","protein palmitoylation",3,0,1.6,2668,"1.00000","0.93293","0.93293" +"GO:0001932","regulation of protein phosphorylation",47,23,25.12,1223,"0.78079","0.64712","0.93306" +"GO:0002520","immune system development",28,10,14.97,2348,"0.98165","0.93311","0.93311" +"GO:0048534","hematopoietic or lymphoid organ developm...",28,10,14.97,2349,"0.98165","0.93311","0.93311" +"GO:0048806","genitalia development",4,2,2.14,1185,"0.73753","0.93313","0.93313" +"GO:0030149","sphingolipid catabolic process",4,1,2.14,2067,"0.95317","0.93446","0.93446" +"GO:0046466","membrane lipid catabolic process",4,1,2.14,2068,"0.95317","0.93446","0.93446" +"GO:0016569","covalent chromatin modification",27,8,14.43,2467,"0.99668","0.93637","0.93637" +"GO:0007350","blastoderm segmentation",4,1,2.14,2069,"0.95317","0.93666","0.93666" +"GO:0007492","endoderm development",4,1,2.14,2070,"0.95317","0.93666","0.93666" +"GO:0042074","cell migration involved in gastrulation",4,0,2.14,2669,"1.00000","0.93666","0.93666" +"GO:0006605","protein targeting",24,9,12.83,2188,"0.96271","0.93675","0.93675" +"GO:0042742","defense response to bacterium",11,5,5.88,1263,"0.79823","0.93688","0.93688" +"GO:2000736","regulation of stem cell differentiation",8,1,4.28,2498,"0.99782","0.93754","0.93754" +"GO:0007444","imaginal disc development",8,0,4.28,2670,"1.00000","0.93754","0.93754" +"GO:0048732","gland development",10,3,5.34,2204,"0.96597","0.93783","0.93783" +"GO:0035051","cardiocyte differentiation",12,7,6.41,614,"0.48290","0.11194","0.93791" +"GO:0001764","neuron migration",6,1,3.21,2400,"0.98990","0.93822","0.93822" +"GO:0048645","animal organ formation",6,1,3.21,2401,"0.98990","0.93822","0.93822" +"GO:0048821","erythrocyte development",6,1,3.21,2402,"0.98990","0.93822","0.93822" +"GO:0032870","cellular response to hormone stimulus",33,13,17.64,2191,"0.96461","0.93833","0.93833" +"GO:0006775","fat-soluble vitamin metabolic process",3,1,1.6,1708,"0.89926","0.93834","0.93834" +"GO:0042048","olfactory behavior",3,0,1.6,2671,"1.00000","0.93850","0.93850" +"GO:0051604","protein maturation",9,1,4.81,2519,"0.99899","0.93884","0.93884" +"GO:0001510","RNA methylation",7,2,3.74,2163,"0.95742","0.93925","0.93925" +"GO:0006367","transcription initiation from RNA polyme...",4,1,2.14,2071,"0.95317","0.93953","0.93953" +"GO:0007272","ensheathment of neurons",4,1,2.14,2072,"0.95317","0.93953","0.93953" +"GO:0008366","axon ensheathment",4,1,2.14,2073,"0.95317","0.93953","0.93953" +"GO:0019827","stem cell population maintenance",4,1,2.14,2074,"0.95317","0.93953","0.93953" +"GO:0030279","negative regulation of ossification",4,2,2.14,1186,"0.73753","0.93953","0.93953" +"GO:0035270","endocrine system development",4,1,2.14,2075,"0.95317","0.93953","0.93953" +"GO:0046661","male sex differentiation",4,2,2.14,1187,"0.73753","0.93953","0.93953" +"GO:0098727","maintenance of cell number",4,1,2.14,2076,"0.95317","0.93953","0.93953" +"GO:0030282","bone mineralization",4,0,2.14,2672,"1.00000","0.93953","0.93953" +"GO:0035265","organ growth",4,0,2.14,2673,"1.00000","0.93953","0.93953" +"GO:0051716","cellular response to stimulus",507,257,270.98,1917,"0.92736","0.93968","0.93968" +"GO:0048523","negative regulation of cellular process",191,83,102.08,2510,"0.99847","0.86755","0.93987" +"GO:0030097","hemopoiesis",27,10,14.43,2233,"0.97239","0.94009","0.94009" +"GO:0009116","nucleoside metabolic process",19,8,10.16,1542,"0.88988","0.94116","0.94116" +"GO:1901657","glycosyl compound metabolic process",19,8,10.16,1543,"0.88988","0.94116","0.94116" +"GO:1901661","quinone metabolic process",4,1,2.14,2077,"0.95317","0.94123","0.94123" +"GO:0050900","leukocyte migration",3,1,1.6,1709,"0.89926","0.94129","0.94129" +"GO:0048706","embryonic skeletal system development",6,2,3.21,1868,"0.91998","0.94169","0.94169" +"GO:0016570","histone modification",24,7,12.83,2462,"0.99572","0.94331","0.94331" +"GO:0016331","morphogenesis of embryonic epithelium",14,2,7.48,2542,"0.99963","0.94360","0.94360" +"GO:0010562","positive regulation of phosphorus metabo...",30,11,16.03,2328,"0.97948","0.94385","0.94385" +"GO:0045937","positive regulation of phosphate metabol...",30,11,16.03,2329,"0.97948","0.94385","0.94385" +"GO:0006935","chemotaxis",30,9,16.03,2484,"0.99744","0.94435","0.94435" +"GO:0008064","regulation of actin polymerization or de...",18,7,9.62,1928,"0.93077","0.94440","0.94440" +"GO:0030832","regulation of actin filament length",18,7,9.62,1929,"0.93077","0.94440","0.94440" +"GO:0032984","protein-containing complex disassembly",18,8,9.62,1376,"0.84271","0.94440","0.94440" +"GO:0031668","cellular response to extracellular stimu...",8,3,4.28,1577,"0.89652","0.94547","0.94547" +"GO:0007167","enzyme linked receptor protein signaling...",35,17,18.71,1206,"0.77467","0.94596","0.94596" +"GO:0040029","regulation of gene expression, epigeneti...",12,4,6.41,2129,"0.95538","0.94601","0.94601" +"GO:0006904","vesicle docking involved in exocytosis",6,1,3.21,2403,"0.98990","0.94640","0.94640" +"GO:0009889","regulation of biosynthetic process",269,107,143.77,2575,"1.00000","0.94596","0.94719" +"GO:0030838","positive regulation of actin filament po...",10,3,5.34,2205,"0.96597","0.94749","0.94749" +"GO:0009109","coenzyme catabolic process",3,1,1.6,1710,"0.89926","0.94791","0.94791" +"GO:0010468","regulation of gene expression",267,103,142.7,2584,"1.00000","0.94670","0.94793" +"GO:0007405","neuroblast proliferation",5,1,2.67,2307,"0.97824","0.94827","0.94827" +"GO:0048663","neuron fate commitment",5,1,2.67,2308,"0.97824","0.94827","0.94827" +"GO:0048709","oligodendrocyte differentiation",5,1,2.67,2309,"0.97824","0.94827","0.94827" +"GO:1902105","regulation of leukocyte differentiation",5,1,2.67,2310,"0.97824","0.94827","0.94827" +"GO:0030098","lymphocyte differentiation",5,0,2.67,2674,"1.00000","0.94827","0.94827" +"GO:0022408","negative regulation of cell-cell adhesio...",4,2,2.14,1188,"0.73753","0.94859","0.94859" +"GO:0031326","regulation of cellular biosynthetic proc...",264,103,141.1,2580,"1.00000","0.94782","0.94905" +"GO:0051252","regulation of RNA metabolic process",246,96,131.48,2577,"1.00000","0.94997","0.94997" +"GO:0060485","mesenchyme development",8,3,4.28,1578,"0.89652","0.94999","0.94999" +"GO:0042330","taxis",31,10,16.57,2442,"0.99503","0.95010","0.95010" +"GO:0009892","negative regulation of metabolic process",101,41,53.98,2473,"0.99701","0.92211","0.95024" +"GO:0010556","regulation of macromolecule biosynthetic...",259,100,138.43,2581,"1.00000","0.94966","0.95089" +"GO:0002696","positive regulation of leukocyte activat...",5,1,2.67,2311,"0.97824","0.95119","0.95119" +"GO:0050867","positive regulation of cell activation",5,1,2.67,2312,"0.97824","0.95119","0.95119" +"GO:0051251","positive regulation of lymphocyte activa...",5,1,2.67,2313,"0.97824","0.95119","0.95119" +"GO:0051345","positive regulation of hydrolase activit...",24,11,12.83,1361,"0.83081","0.95120","0.95120" +"GO:0006873","cellular ion homeostasis",27,19,14.43,81,"0.05555","0.09862","0.95132" +"GO:0030003","cellular cation homeostasis",27,19,14.43,82,"0.05555","0.09862","0.95132" +"GO:0055065","metal ion homeostasis",27,19,14.43,83,"0.05555","0.09862","0.95132" +"GO:2000112","regulation of cellular macromolecule bio...",257,99,137.36,2582,"1.00000","0.95040","0.95163" +"GO:0016050","vesicle organization",13,7,6.95,938,"0.60040","0.95176","0.95176" +"GO:0007173","epidermal growth factor receptor signali...",4,1,2.14,2078,"0.95317","0.95197","0.95197" +"GO:0038127","ERBB signaling pathway",4,1,2.14,2079,"0.95317","0.95197","0.95197" +"GO:0000578","embryonic axis specification",3,1,1.6,1711,"0.89926","0.95213","0.95213" +"GO:0000768","syncytium formation by plasma membrane f...",3,1,1.6,1712,"0.89926","0.95213","0.95213" +"GO:0006911","phagocytosis, engulfment",3,1,1.6,1713,"0.89926","0.95213","0.95213" +"GO:0006949","syncytium formation",3,1,1.6,1714,"0.89926","0.95213","0.95213" +"GO:0007351","tripartite regional subdivision",3,1,1.6,1715,"0.89926","0.95213","0.95213" +"GO:0007520","myoblast fusion",3,1,1.6,1716,"0.89926","0.95213","0.95213" +"GO:0008595","anterior/posterior axis specification, e...",3,1,1.6,1717,"0.89926","0.95213","0.95213" +"GO:0009948","anterior/posterior axis specification",3,1,1.6,1718,"0.89926","0.95213","0.95213" +"GO:0010324","membrane invagination",3,1,1.6,1719,"0.89926","0.95213","0.95213" +"GO:0030952","establishment or maintenance of cytoskel...",3,1,1.6,1720,"0.89926","0.95213","0.95213" +"GO:0046631","alpha-beta T cell activation",3,1,1.6,1721,"0.89926","0.95213","0.95213" +"GO:0046634","regulation of alpha-beta T cell activati...",3,1,1.6,1722,"0.89926","0.95213","0.95213" +"GO:0099024","plasma membrane invagination",3,1,1.6,1723,"0.89926","0.95213","0.95213" +"GO:0140253","cell-cell fusion",3,1,1.6,1724,"0.89926","0.95213","0.95213" +"GO:0022416","chaeta development",3,0,1.6,2675,"1.00000","0.95213","0.95213" +"GO:0030183","B cell differentiation",3,0,1.6,2676,"1.00000","0.95213","0.95213" +"GO:0042113","B cell activation",3,0,1.6,2677,"1.00000","0.95213","0.95213" +"GO:0050870","positive regulation of T cell activation",3,0,1.6,2678,"1.00000","0.95213","0.95213" +"GO:0072583","clathrin-dependent endocytosis",3,0,1.6,2679,"1.00000","0.95213","0.95213" +"GO:1901046","positive regulation of oviposition",3,0,1.6,2680,"1.00000","0.95213","0.95213" +"GO:1903039","positive regulation of leukocyte cell-ce...",3,0,1.6,2681,"1.00000","0.95213","0.95213" +"GO:2000369","regulation of clathrin-dependent endocyt...",3,0,1.6,2682,"1.00000","0.95213","0.95213" +"GO:0009267","cellular response to starvation",7,3,3.74,1355,"0.82639","0.95214","0.95214" +"GO:0031669","cellular response to nutrient levels",7,3,3.74,1356,"0.82639","0.95214","0.95214" +"GO:0001678","cellular glucose homeostasis",6,2,3.21,1869,"0.91998","0.95219","0.95219" +"GO:0071322","cellular response to carbohydrate stimul...",6,2,3.21,1870,"0.91998","0.95219","0.95219" +"GO:0044403","symbiont process",19,7,10.16,2115,"0.95463","0.95251","0.95251" +"GO:0045010","actin nucleation",9,2,4.81,2379,"0.98849","0.95264","0.95264" +"GO:0009886","post-embryonic animal morphogenesis",6,0,3.21,2683,"1.00000","0.95282","0.95282" +"GO:0048569","post-embryonic animal organ development",6,0,3.21,2684,"1.00000","0.95282","0.95282" +"GO:0019219","regulation of nucleobase-containing comp...",250,98,133.62,2576,"1.00000","0.95296","0.95296" +"GO:0008543","fibroblast growth factor receptor signal...",3,0,1.6,2685,"1.00000","0.95301","0.95301" +"GO:0040036","regulation of fibroblast growth factor r...",3,0,1.6,2686,"1.00000","0.95301","0.95301" +"GO:0044344","cellular response to fibroblast growth f...",3,0,1.6,2687,"1.00000","0.95301","0.95301" +"GO:0048701","embryonic cranial skeleton morphogenesis",3,0,1.6,2688,"1.00000","0.95301","0.95301" +"GO:0048704","embryonic skeletal system morphogenesis",3,0,1.6,2689,"1.00000","0.95301","0.95301" +"GO:0071774","response to fibroblast growth factor",3,0,1.6,2690,"1.00000","0.95301","0.95301" +"GO:1904888","cranial skeletal system development",3,0,1.6,2691,"1.00000","0.95301","0.95301" +"GO:0033554","cellular response to stress",97,32,51.84,2557,"0.99999","0.95303","0.95303" +"GO:0010605","negative regulation of macromolecule met...",96,37,51.31,2527,"0.99902","0.93330","0.95313" +"GO:0016311","dephosphorylation",38,19,20.31,1105,"0.72410","0.95316","0.95316" +"GO:0030433","ubiquitin-dependent ERAD pathway",9,3,4.81,1970,"0.94000","0.95340","0.95340" +"GO:0008585","female gonad development",3,1,1.6,1725,"0.89926","0.95374","0.95374" +"GO:0008154","actin polymerization or depolymerization",20,7,10.69,2229,"0.97081","0.95403","0.95403" +"GO:0009057","macromolecule catabolic process",59,25,31.53,2225,"0.96845","0.95410","0.95410" +"GO:0002052","positive regulation of neuroblast prolif...",3,1,1.6,1726,"0.89926","0.95432","0.95432" +"GO:0030879","mammary gland development",3,1,1.6,1727,"0.89926","0.95432","0.95432" +"GO:0035019","somatic stem cell population maintenance",3,1,1.6,1728,"0.89926","0.95432","0.95432" +"GO:0035914","skeletal muscle cell differentiation",3,1,1.6,1729,"0.89926","0.95432","0.95432" +"GO:0042471","ear morphogenesis",3,1,1.6,1730,"0.89926","0.95432","0.95432" +"GO:0042472","inner ear morphogenesis",3,1,1.6,1731,"0.89926","0.95432","0.95432" +"GO:0060441","epithelial tube branching involved in lu...",3,1,1.6,1732,"0.89926","0.95432","0.95432" +"GO:1902692","regulation of neuroblast proliferation",3,1,1.6,1733,"0.89926","0.95432","0.95432" +"GO:2000179","positive regulation of neural precursor ...",3,1,1.6,1734,"0.89926","0.95432","0.95432" +"GO:2000648","positive regulation of stem cell prolife...",3,1,1.6,1735,"0.89926","0.95432","0.95432" +"GO:0030500","regulation of bone mineralization",3,0,1.6,2692,"1.00000","0.95432","0.95432" +"GO:0030903","notochord development",3,0,1.6,2693,"1.00000","0.95432","0.95432" +"GO:0042552","myelination",3,0,1.6,2694,"1.00000","0.95432","0.95432" +"GO:0048864","stem cell development",3,0,1.6,2695,"1.00000","0.95432","0.95432" +"GO:0048865","stem cell fate commitment",3,0,1.6,2696,"1.00000","0.95432","0.95432" +"GO:0060349","bone morphogenesis",3,0,1.6,2697,"1.00000","0.95432","0.95432" +"GO:0060350","endochondral bone morphogenesis",3,0,1.6,2698,"1.00000","0.95432","0.95432" +"GO:0060351","cartilage development involved in endoch...",3,0,1.6,2699,"1.00000","0.95432","0.95432" +"GO:0060428","lung epithelium development",3,0,1.6,2700,"1.00000","0.95432","0.95432" +"GO:0070167","regulation of biomineral tissue developm...",3,0,1.6,2701,"1.00000","0.95432","0.95432" +"GO:0071260","cellular response to mechanical stimulus",3,0,1.6,2702,"1.00000","0.95432","0.95432" +"GO:0072132","mesenchyme morphogenesis",3,0,1.6,2703,"1.00000","0.95432","0.95432" +"GO:2000278","regulation of DNA biosynthetic process",4,0,2.14,2704,"1.00000","0.95437","0.95437" +"GO:0031324","negative regulation of cellular metaboli...",93,37,49.71,2485,"0.99746","0.93985","0.95487" +"GO:0051187","cofactor catabolic process",4,1,2.14,2080,"0.95317","0.95500","0.95500" +"GO:0010033","response to organic substance",129,54,68.95,2486,"0.99747","0.95592","0.95592" +"GO:0061351","neural precursor cell proliferation",7,2,3.74,2164,"0.95742","0.95612","0.95612" +"GO:0042176","regulation of protein catabolic process",12,5,6.41,1498,"0.86649","0.95615","0.95615" +"GO:0006355","regulation of transcription, DNA-templat...",241,94,128.81,2572,"1.00000","0.95622","0.95622" +"GO:1903506","regulation of nucleic acid-templated tra...",241,94,128.81,2573,"1.00000","0.95622","0.95622" +"GO:2001141","regulation of RNA biosynthetic process",241,94,128.81,2574,"1.00000","0.95622","0.95622" +"GO:0048639","positive regulation of developmental gro...",5,0,2.67,2705,"1.00000","0.95625","0.95625" +"GO:0051172","negative regulation of nitrogen compound...",90,34,48.1,2529,"0.99919","0.93802","0.95660" +"GO:0043933","protein-containing complex subunit organ...",95,44,50.78,1945,"0.93655","0.95711","0.95711" +"GO:0055007","cardiac muscle cell differentiation",10,7,5.34,329,"0.23374","0.03938","0.95820" +"GO:0008219","cell death",79,34,42.22,2254,"0.97727","0.95833","0.95833" +"GO:0019222","regulation of metabolic process",350,140,187.07,2592,"1.00000","0.95401","0.95839" +"GO:0008052","sensory organ boundary specification",4,1,2.14,2081,"0.95317","0.95841","0.95841" +"GO:0009649","entrainment of circadian clock",4,1,2.14,2082,"0.95317","0.95841","0.95841" +"GO:0010160","formation of animal organ boundary",4,1,2.14,2083,"0.95317","0.95841","0.95841" +"GO:0016360","sensory organ precursor cell fate determ...",4,1,2.14,2084,"0.95317","0.95841","0.95841" +"GO:0021536","diencephalon development",4,1,2.14,2085,"0.95317","0.95841","0.95841" +"GO:0021781","glial cell fate commitment",4,1,2.14,2086,"0.95317","0.95841","0.95841" +"GO:0040034","regulation of development, heterochronic",4,1,2.14,2087,"0.95317","0.95841","0.95841" +"GO:0048859","formation of anatomical boundary",4,1,2.14,2088,"0.95317","0.95841","0.95841" +"GO:0055024","regulation of cardiac muscle tissue deve...",4,1,2.14,2089,"0.95317","0.95841","0.95841" +"GO:0060581","cell fate commitment involved in pattern...",4,1,2.14,2090,"0.95317","0.95841","0.95841" +"GO:0060582","cell fate determination involved in patt...",4,1,2.14,2091,"0.95317","0.95841","0.95841" +"GO:2001222","regulation of neuron migration",4,1,2.14,2092,"0.95317","0.95841","0.95841" +"GO:0017145","stem cell division",4,0,2.14,2706,"1.00000","0.95841","0.95841" +"GO:0045619","regulation of lymphocyte differentiation",4,0,2.14,2707,"1.00000","0.95841","0.95841" +"GO:1905207","regulation of cardiocyte differentiation",4,0,2.14,2708,"1.00000","0.95841","0.95841" +"GO:0007424","open tracheal system development",10,3,5.34,2206,"0.96597","0.95945","0.95945" +"GO:0061024","membrane organization",51,19,27.26,2427,"0.99361","0.95947","0.95947" +"GO:0008203","cholesterol metabolic process",6,2,3.21,1871,"0.91998","0.96010","0.96010" +"GO:0046148","pigment biosynthetic process",4,2,2.14,1189,"0.73753","0.96031","0.96031" +"GO:0045168","cell-cell signaling involved in cell fat...",5,2,2.67,1454,"0.85289","0.96054","0.96054" +"GO:0046331","lateral inhibition",5,2,2.67,1455,"0.85289","0.96054","0.96054" +"GO:0002165","instar larval or pupal development",5,0,2.67,2709,"1.00000","0.96054","0.96054" +"GO:0035220","wing disc development",5,0,2.67,2710,"1.00000","0.96054","0.96054" +"GO:0030163","protein catabolic process",50,20,26.72,2334,"0.98081","0.96112","0.96112" +"GO:0034504","protein localization to nucleus",12,3,6.41,2384,"0.98962","0.96166","0.96166" +"GO:0019221","cytokine-mediated signaling pathway",6,2,3.21,1872,"0.91998","0.96228","0.96228" +"GO:0048762","mesenchymal cell differentiation",6,3,3.21,1103,"0.71872","0.96228","0.96228" +"GO:0071383","cellular response to steroid hormone sti...",20,8,10.69,1895,"0.92457","0.96237","0.96237" +"GO:0031323","regulation of cellular metabolic process",337,132,180.12,2599,"1.00000","0.95843","0.96275" +"GO:0044257","cellular protein catabolic process",35,14,18.71,2182,"0.96232","0.96367","0.96367" +"GO:0051603","proteolysis involved in cellular protein...",35,14,18.71,2183,"0.96232","0.96367","0.96367" +"GO:0042058","regulation of epidermal growth factor re...",3,1,1.6,1736,"0.89926","0.96377","0.96377" +"GO:0042059","negative regulation of epidermal growth ...",3,1,1.6,1737,"0.89926","0.96377","0.96377" +"GO:1901184","regulation of ERBB signaling pathway",3,1,1.6,1738,"0.89926","0.96377","0.96377" +"GO:1901185","negative regulation of ERBB signaling pa...",3,1,1.6,1739,"0.89926","0.96377","0.96377" +"GO:0030435","sporulation resulting in formation of a ...",3,0,1.6,2711,"1.00000","0.96377","0.96377" +"GO:0043934","sporulation",3,0,1.6,2712,"1.00000","0.96377","0.96377" +"GO:0034502","protein localization to chromosome",3,0,1.6,2713,"1.00000","0.96390","0.96390" +"GO:0009755","hormone-mediated signaling pathway",19,7,10.16,2116,"0.95463","0.96423","0.96423" +"GO:0009617","response to bacterium",22,10,11.76,1368,"0.83393","0.96423","0.96423" +"GO:0099402","plant organ development",3,1,1.6,1740,"0.89926","0.96454","0.96454" +"GO:0035264","multicellular organism growth",4,0,2.14,2714,"1.00000","0.96486","0.96486" +"GO:0006875","cellular metal ion homeostasis",25,18,13.36,69,"0.04582","0.06056","0.96501" +"GO:0051289","protein homotetramerization",5,2,2.67,1456,"0.85289","0.96511","0.96511" +"GO:0080090","regulation of primary metabolic process",329,129,175.84,2594,"1.00000","0.96110","0.96538" +"GO:0031929","TOR signaling",9,1,4.81,2520,"0.99899","0.96545","0.96545" +"GO:0010039","response to iron ion",5,2,2.67,1457,"0.85289","0.96560","0.96560" +"GO:0006458","'de novo' protein folding",11,3,5.88,2340,"0.98106","0.96594","0.96594" +"GO:0042592","homeostatic process",94,51,50.24,603,"0.47908","0.38729","0.96598" +"GO:0009164","nucleoside catabolic process",3,0,1.6,2715,"1.00000","0.96607","0.96607" +"GO:0034656","nucleobase-containing small molecule cat...",3,0,1.6,2716,"1.00000","0.96607","0.96607" +"GO:0042454","ribonucleoside catabolic process",3,0,1.6,2717,"1.00000","0.96607","0.96607" +"GO:1901658","glycosyl compound catabolic process",3,0,1.6,2718,"1.00000","0.96607","0.96607" +"GO:0060541","respiratory system development",18,5,9.62,2421,"0.99304","0.96609","0.96609" +"GO:0007051","spindle organization",8,2,4.28,2275,"0.97771","0.96677","0.96677" +"GO:0060255","regulation of macromolecule metabolic pr...",324,128,173.17,2591,"1.00000","0.96275","0.96699" +"GO:0001837","epithelial to mesenchymal transition",5,2,2.67,1458,"0.85289","0.96753","0.96753" +"GO:0006644","phospholipid metabolic process",52,27,27.79,967,"0.64269","0.96756","0.96756" +"GO:0048871","multicellular organismal homeostasis",17,8,9.09,1221,"0.78070","0.10541","0.96781" +"GO:0009746","response to hexose",4,1,2.14,2093,"0.95317","0.96790","0.96790" +"GO:0009749","response to glucose",4,1,2.14,2094,"0.95317","0.96790","0.96790" +"GO:0034284","response to monosaccharide",4,1,2.14,2095,"0.95317","0.96790","0.96790" +"GO:0071326","cellular response to monosaccharide stim...",4,1,2.14,2096,"0.95317","0.96790","0.96790" +"GO:0071331","cellular response to hexose stimulus",4,1,2.14,2097,"0.95317","0.96790","0.96790" +"GO:0071333","cellular response to glucose stimulus",4,1,2.14,2098,"0.95317","0.96790","0.96790" +"GO:0031647","regulation of protein stability",17,6,9.09,2177,"0.96044","0.96796","0.96796" +"GO:0072507","divalent inorganic cation homeostasis",22,17,11.76,41,"0.01881","0.02380","0.96820" +"GO:0034314","Arp2/3 complex-mediated actin nucleation",6,1,3.21,2404,"0.98990","0.96821","0.96821" +"GO:1901068","guanosine-containing compound metabolic ...",4,1,2.14,2099,"0.95317","0.96821","0.96821" +"GO:0007552","metamorphosis",4,0,2.14,2719,"1.00000","0.96832","0.96832" +"GO:0007560","imaginal disc morphogenesis",4,0,2.14,2720,"1.00000","0.96832","0.96832" +"GO:0035120","post-embryonic appendage morphogenesis",4,0,2.14,2721,"1.00000","0.96832","0.96832" +"GO:0048563","post-embryonic animal organ morphogenesi...",4,0,2.14,2722,"1.00000","0.96832","0.96832" +"GO:0048707","instar larval or pupal morphogenesis",4,0,2.14,2723,"1.00000","0.96832","0.96832" +"GO:0050680","negative regulation of epithelial cell p...",5,1,2.67,2314,"0.97824","0.96848","0.96848" +"GO:2000177","regulation of neural precursor cell prol...",5,2,2.67,1459,"0.85289","0.96848","0.96848" +"GO:0051171","regulation of nitrogen compound metaboli...",319,124,170.5,2596,"1.00000","0.96437","0.96858" +"GO:0002062","chondrocyte differentiation",3,0,1.6,2724,"1.00000","0.96866","0.96866" +"GO:0030177","positive regulation of Wnt signaling pat...",3,0,1.6,2725,"1.00000","0.96866","0.96866" +"GO:0030217","T cell differentiation",3,0,1.6,2726,"1.00000","0.96866","0.96866" +"GO:0032330","regulation of chondrocyte differentiatio...",3,0,1.6,2727,"1.00000","0.96866","0.96866" +"GO:0032332","positive regulation of chondrocyte diffe...",3,0,1.6,2728,"1.00000","0.96866","0.96866" +"GO:0042492","gamma-delta T cell differentiation",3,0,1.6,2729,"1.00000","0.96866","0.96866" +"GO:0045580","regulation of T cell differentiation",3,0,1.6,2730,"1.00000","0.96866","0.96866" +"GO:0045586","regulation of gamma-delta T cell differe...",3,0,1.6,2731,"1.00000","0.96866","0.96866" +"GO:0045843","negative regulation of striated muscle t...",3,0,1.6,2732,"1.00000","0.96866","0.96866" +"GO:0046629","gamma-delta T cell activation",3,0,1.6,2733,"1.00000","0.96866","0.96866" +"GO:0046643","regulation of gamma-delta T cell activat...",3,0,1.6,2734,"1.00000","0.96866","0.96866" +"GO:0048635","negative regulation of muscle organ deve...",3,0,1.6,2735,"1.00000","0.96866","0.96866" +"GO:0048708","astrocyte differentiation",3,0,1.6,2736,"1.00000","0.96866","0.96866" +"GO:0051148","negative regulation of muscle cell diffe...",3,0,1.6,2737,"1.00000","0.96866","0.96866" +"GO:0051154","negative regulation of striated muscle c...",3,0,1.6,2738,"1.00000","0.96866","0.96866" +"GO:0061035","regulation of cartilage development",3,0,1.6,2739,"1.00000","0.96866","0.96866" +"GO:0061036","positive regulation of cartilage develop...",3,0,1.6,2740,"1.00000","0.96866","0.96866" +"GO:0072497","mesenchymal stem cell differentiation",3,0,1.6,2741,"1.00000","0.96866","0.96866" +"GO:0098722","asymmetric stem cell division",3,0,1.6,2742,"1.00000","0.96866","0.96866" +"GO:1901862","negative regulation of muscle tissue dev...",3,0,1.6,2743,"1.00000","0.96866","0.96866" +"GO:2000725","regulation of cardiac muscle cell differ...",3,0,1.6,2744,"1.00000","0.96866","0.96866" +"GO:2000738","positive regulation of stem cell differe...",3,0,1.6,2745,"1.00000","0.96866","0.96866" +"GO:2000739","regulation of mesenchymal stem cell diff...",3,0,1.6,2746,"1.00000","0.96866","0.96866" +"GO:2000741","positive regulation of mesenchymal stem ...",3,0,1.6,2747,"1.00000","0.96866","0.96866" +"GO:0032006","regulation of TOR signaling",8,1,4.28,2499,"0.99782","0.96924","0.96924" +"GO:0043401","steroid hormone mediated signaling pathw...",16,7,8.55,1384,"0.84884","0.96983","0.96983" +"GO:0016574","histone ubiquitination",3,1,1.6,1741,"0.89926","0.97045","0.97045" +"GO:0032946","positive regulation of mononuclear cell ...",3,1,1.6,1742,"0.89926","0.97045","0.97045" +"GO:0050671","positive regulation of lymphocyte prolif...",3,1,1.6,1743,"0.89926","0.97045","0.97045" +"GO:0070665","positive regulation of leukocyte prolife...",3,1,1.6,1744,"0.89926","0.97045","0.97045" +"GO:0045927","positive regulation of growth",9,2,4.81,2380,"0.98849","0.97114","0.97114" +"GO:0043543","protein acylation",12,1,6.41,2548,"0.99990","0.97139","0.97139" +"GO:0034654","nucleobase-containing compound biosynthe...",321,135,171.57,2563,"1.00000","0.97189","0.97189" +"GO:0006879","cellular iron ion homeostasis",4,1,2.14,2100,"0.95317","0.97240","0.97240" +"GO:0043618","regulation of transcription from RNA pol...",4,1,2.14,2101,"0.95317","0.97240","0.97240" +"GO:0043620","regulation of DNA-templated transcriptio...",4,1,2.14,2102,"0.95317","0.97240","0.97240" +"GO:0046916","cellular transition metal ion homeostasi...",4,1,2.14,2103,"0.95317","0.97240","0.97240" +"GO:0051101","regulation of DNA binding",4,1,2.14,2104,"0.95317","0.97240","0.97240" +"GO:0055072","iron ion homeostasis",4,1,2.14,2105,"0.95317","0.97240","0.97240" +"GO:0070727","cellular macromolecule localization",116,58,62,1264,"0.80495","0.97276","0.97276" +"GO:0090305","nucleic acid phosphodiester bond hydroly...",4,1,2.14,2106,"0.95317","0.97279","0.97279" +"GO:0032774","RNA biosynthetic process",256,97,136.83,2588,"1.00000","0.97326","0.97326" +"GO:0051125","regulation of actin nucleation",5,0,2.67,2748,"1.00000","0.97345","0.97345" +"GO:0051127","positive regulation of actin nucleation",5,0,2.67,2749,"1.00000","0.97345","0.97345" +"GO:0032535","regulation of cellular component size",29,10,15.5,2367,"0.98797","0.97347","0.97347" +"GO:0006364","rRNA processing",3,0,1.6,2750,"1.00000","0.97354","0.97354" +"GO:0016072","rRNA metabolic process",3,0,1.6,2751,"1.00000","0.97354","0.97354" +"GO:0040014","regulation of multicellular organism gro...",3,0,1.6,2752,"1.00000","0.97354","0.97354" +"GO:0051336","regulation of hydrolase activity",47,18,25.12,2366,"0.98789","0.97359","0.97359" +"GO:0007006","mitochondrial membrane organization",7,3,3.74,1357,"0.82639","0.97414","0.97414" +"GO:0006351","transcription, DNA-templated",255,97,136.29,2585,"1.00000","0.97430","0.97430" +"GO:0097659","nucleic acid-templated transcription",255,97,136.29,2586,"1.00000","0.97430","0.97430" +"GO:0010563","negative regulation of phosphorus metabo...",30,17,16.03,554,"0.43367","0.31403","0.97433" +"GO:0045936","negative regulation of phosphate metabol...",30,17,16.03,555,"0.43367","0.31403","0.97433" +"GO:0042325","regulation of phosphorylation",56,25,29.93,1918,"0.92943","0.87129","0.97465" +"GO:0010770","positive regulation of cell morphogenesi...",4,0,2.14,2753,"1.00000","0.97472","0.97472" +"GO:0061008","hepaticobiliary system development",4,0,2.14,2754,"1.00000","0.97472","0.97472" +"GO:0015936","coenzyme A metabolic process",4,0,2.14,2755,"1.00000","0.97509","0.97509" +"GO:0016071","mRNA metabolic process",27,9,14.43,2387,"0.98964","0.97577","0.97577" +"GO:0001894","tissue homeostasis",15,8,8.02,949,"0.60745","0.05370","0.97578" +"GO:0035773","insulin secretion involved in cellular r...",3,0,1.6,2756,"1.00000","0.97583","0.97583" +"GO:0060249","anatomical structure homeostasis",22,9,11.76,1796,"0.91916","0.30847","0.97593" +"GO:0001736","establishment of planar polarity",9,7,4.81,162,"0.12819","0.06304","0.97603" +"GO:0006661","phosphatidylinositol biosynthetic proces...",8,3,4.28,1579,"0.89652","0.97611","0.97611" +"GO:0007472","wing disc morphogenesis",3,0,1.6,2757,"1.00000","0.97615","0.97615" +"GO:0007476","imaginal disc-derived wing morphogenesis",3,0,1.6,2758,"1.00000","0.97615","0.97615" +"GO:0035114","imaginal disc-derived appendage morphoge...",3,0,1.6,2759,"1.00000","0.97615","0.97615" +"GO:0035215","genital disc development",3,0,1.6,2760,"1.00000","0.97615","0.97615" +"GO:0048737","imaginal disc-derived appendage developm...",3,0,1.6,2761,"1.00000","0.97615","0.97615" +"GO:0034613","cellular protein localization",115,58,61.46,1212,"0.77660","0.97628","0.97628" +"GO:0007043","cell-cell junction assembly",5,1,2.67,2315,"0.97824","0.97680","0.97680" +"GO:0045216","cell-cell junction organization",5,1,2.67,2316,"0.97824","0.97680","0.97680" +"GO:0006354","DNA-templated transcription, elongation",5,2,2.67,1460,"0.85289","0.97721","0.97721" +"GO:0007600","sensory perception",34,16,18.17,1305,"0.82270","0.97755","0.97755" +"GO:0046835","carbohydrate phosphorylation",5,2,2.67,1461,"0.85289","0.97761","0.97761" +"GO:0006473","protein acetylation",9,1,4.81,2521,"0.99899","0.97849","0.97849" +"GO:0006475","internal protein amino acid acetylation",9,1,4.81,2522,"0.99899","0.97849","0.97849" +"GO:0018393","internal peptidyl-lysine acetylation",9,1,4.81,2523,"0.99899","0.97849","0.97849" +"GO:0018394","peptidyl-lysine acetylation",9,1,4.81,2524,"0.99899","0.97849","0.97849" +"GO:0006996","organelle organization",244,110,130.41,2491,"0.99769","0.97648","0.97858" +"GO:0006511","ubiquitin-dependent protein catabolic pr...",27,11,14.43,1942,"0.93645","0.97902","0.97902" +"GO:0019941","modification-dependent protein catabolic...",27,11,14.43,1943,"0.93645","0.97902","0.97902" +"GO:0043632","modification-dependent macromolecule cat...",27,11,14.43,1944,"0.93645","0.97902","0.97902" +"GO:0051179","localization",664,375,354.89,63,"0.03556","0.13212","0.97903" +"GO:0016032","viral process",16,5,8.55,2332,"0.97997","0.97951","0.97951" +"GO:0016226","iron-sulfur cluster assembly",8,4,4.28,1042,"0.70951","0.97974","0.97974" +"GO:0031163","metallo-sulfur cluster assembly",8,4,4.28,1043,"0.70951","0.97974","0.97974" +"GO:0033036","macromolecule localization",186,87,99.41,2250,"0.97595","0.98040","0.98040" +"GO:0030968","endoplasmic reticulum unfolded protein r...",6,2,3.21,1873,"0.91998","0.98069","0.98069" +"GO:0034620","cellular response to unfolded protein",6,2,3.21,1874,"0.91998","0.98069","0.98069" +"GO:0016573","histone acetylation",8,1,4.28,2500,"0.99782","0.98087","0.98087" +"GO:2000027","regulation of animal organ morphogenesis",9,6,4.81,408,"0.32587","0.06304","0.98089" +"GO:0008283","cell proliferation",57,24,30.47,2226,"0.96937","0.98090","0.98090" +"GO:0001889","liver development",3,0,1.6,2762,"1.00000","0.98098","0.98098" +"GO:0050821","protein stabilization",10,4,5.34,1525,"0.87938","0.98108","0.98108" +"GO:0016197","endosomal transport",21,9,11.22,1533,"0.88430","0.98225","0.98225" +"GO:0006974","cellular response to DNA damage stimulus",35,6,18.71,2570,"1.00000","0.98325","0.98325" +"GO:0007005","mitochondrion organization",35,14,18.71,2184,"0.96232","0.98325","0.98325" +"GO:0031111","negative regulation of microtubule polym...",5,1,2.67,2317,"0.97824","0.98389","0.98389" +"GO:0036498","IRE1-mediated unfolded protein response",5,1,2.67,2318,"0.97824","0.98389","0.98389" +"GO:0055074","calcium ion homeostasis",21,17,11.22,21,"0.00847","0.01378","0.98398" +"GO:0071702","organic substance transport",156,72,83.38,2247,"0.97567","0.98424","0.98424" +"GO:0030323","respiratory tube development",8,1,4.28,2501,"0.99782","0.98485","0.98485" +"GO:0006298","mismatch repair",3,1,1.6,1745,"0.89926","0.98553","0.98553" +"GO:1901362","organic cyclic compound biosynthetic pro...",360,156,192.41,2556,"0.99999","0.98589","0.98589" +"GO:0050790","regulation of catalytic activity",83,34,44.36,2420,"0.99252","0.75485","0.98613" +"GO:0006368","transcription elongation from RNA polyme...",3,0,1.6,2763,"1.00000","0.98627","0.98627" +"GO:0030324","lung development",7,1,3.74,2460,"0.99531","0.98674","0.98674" +"GO:0030307","positive regulation of cell growth",4,0,2.14,2764,"1.00000","0.98710","0.98710" +"GO:0032007","negative regulation of TOR signaling",3,0,1.6,2765,"1.00000","0.98746","0.98746" +"GO:0050673","epithelial cell proliferation",15,4,8.02,2417,"0.99134","0.98835","0.98835" +"GO:0000723","telomere maintenance",6,1,3.21,2405,"0.98990","0.98863","0.98863" +"GO:0032200","telomere organization",6,1,3.21,2406,"0.98990","0.98863","0.98863" +"GO:0006487","protein N-linked glycosylation",10,3,5.34,2207,"0.96597","0.98872","0.98872" +"GO:0042177","negative regulation of protein catabolic...",3,1,1.6,1746,"0.89926","0.98890","0.98890" +"GO:1903051","negative regulation of proteolysis invol...",3,1,1.6,1747,"0.89926","0.98890","0.98890" +"GO:1903363","negative regulation of cellular protein ...",3,1,1.6,1748,"0.89926","0.98890","0.98890" +"GO:0031399","regulation of protein modification proce...",68,33,36.34,1358,"0.82861","0.96099","0.98920" +"GO:0018130","heterocycle biosynthetic process",343,147,183.33,2559,"0.99999","0.98921","0.98921" +"GO:0090150","establishment of protein localization to...",12,3,6.41,2385,"0.98962","0.98925","0.98925" +"GO:0006893","Golgi to plasma membrane transport",3,1,1.6,1749,"0.89926","0.98940","0.98940" +"GO:0098876","vesicle-mediated transport to the plasma...",3,1,1.6,1750,"0.89926","0.98940","0.98940" +"GO:0048286","lung alveolus development",3,1,1.6,1751,"0.89926","0.98983","0.98983" +"GO:0042157","lipoprotein metabolic process",11,4,5.88,1914,"0.92575","0.98992","0.98992" +"GO:0006892","post-Golgi vesicle-mediated transport",5,1,2.67,2319,"0.97824","0.98999","0.98999" +"GO:0019220","regulation of phosphate metabolic proces...",63,27,33.67,2214,"0.96677","0.94178","0.99022" +"GO:0051174","regulation of phosphorus metabolic proce...",63,27,33.67,2215,"0.96677","0.94178","0.99022" +"GO:0045292","mRNA cis splicing, via spliceosome",3,0,1.6,2766,"1.00000","0.99031","0.99031" +"GO:0043966","histone H3 acetylation",4,1,2.14,2107,"0.95317","0.99040","0.99040" +"GO:0019438","aromatic compound biosynthetic process",336,142,179.58,2567,"1.00000","0.99048","0.99048" +"GO:0051052","regulation of DNA metabolic process",5,0,2.67,2767,"1.00000","0.99052","0.99052" +"GO:1901564","organonitrogen compound metabolic proces...",720,348,384.82,2538,"0.99960","0.98282","0.99063" +"GO:0006497","protein lipidation",10,3,5.34,2208,"0.96597","0.99083","0.99083" +"GO:0042158","lipoprotein biosynthetic process",10,3,5.34,2209,"0.96597","0.99083","0.99083" +"GO:0070972","protein localization to endoplasmic reti...",4,2,2.14,1190,"0.73753","0.99121","0.99121" +"GO:0045165","cell fate commitment",20,5,10.69,2493,"0.99771","0.99209","0.99209" +"GO:0007254","JNK cascade",4,1,2.14,2108,"0.95317","0.99241","0.99241" +"GO:0031958","corticosteroid receptor signaling pathwa...",4,1,2.14,2109,"0.95317","0.99241","0.99241" +"GO:0042921","glucocorticoid receptor signaling pathwa...",4,1,2.14,2110,"0.95317","0.99241","0.99241" +"GO:0008104","protein localization",156,76,83.38,1761,"0.90461","0.99252","0.99252" +"GO:0007292","female gamete generation",21,7,11.22,2347,"0.98154","0.99303","0.99303" +"GO:1902652","secondary alcohol metabolic process",8,3,4.28,1580,"0.89652","0.99352","0.99352" +"GO:0048477","oogenesis",18,5,9.62,2422,"0.99304","0.99403","0.99403" +"GO:0006810","transport",586,338,313.2,22,"0.00995","0.03673","0.99408" +"GO:0006278","RNA-dependent DNA biosynthetic process",3,0,1.6,2768,"1.00000","0.99430","0.99430" +"GO:0051054","positive regulation of DNA metabolic pro...",3,0,1.6,2769,"1.00000","0.99430","0.99430" +"GO:0051972","regulation of telomerase activity",3,0,1.6,2770,"1.00000","0.99430","0.99430" +"GO:0051973","positive regulation of telomerase activi...",3,0,1.6,2771,"1.00000","0.99430","0.99430" +"GO:2000573","positive regulation of DNA biosynthetic ...",3,0,1.6,2772,"1.00000","0.99430","0.99430" +"GO:0051234","establishment of localization",597,341,319.08,42,"0.02072","0.09855","0.99433" +"GO:0006418","tRNA aminoacylation for protein translat...",11,3,5.88,2341,"0.98106","0.99438","0.99438" +"GO:0043038","amino acid activation",11,3,5.88,2342,"0.98106","0.99438","0.99438" +"GO:0043039","tRNA aminoacylation",11,3,5.88,2343,"0.98106","0.99438","0.99438" +"GO:0006778","porphyrin-containing compound metabolic ...",3,1,1.6,1752,"0.89926","0.99446","0.99446" +"GO:0050678","regulation of epithelial cell proliferat...",7,2,3.74,2165,"0.95742","0.99457","0.99457" +"GO:0048193","Golgi vesicle transport",23,6,12.29,2504,"0.99811","0.99469","0.99469" +"GO:0048872","homeostasis of number of cells",16,5,8.55,2333,"0.97997","0.99470","0.99470" +"GO:0001935","endothelial cell proliferation",6,1,3.21,2407,"0.98990","0.99534","0.99534" +"GO:0035303","regulation of dephosphorylation",8,0,4.28,2773,"1.00000","0.99553","0.99553" +"GO:0071705","nitrogen compound transport",126,59,67.34,1992,"0.94764","0.99569","0.99569" +"GO:0006464","cellular protein modification process",322,148,172.1,2508,"0.99845","0.99130","0.99570" +"GO:0036211","protein modification process",322,148,172.1,2509,"0.99845","0.99130","0.99570" +"GO:0032456","endocytic recycling",5,2,2.67,1462,"0.85289","0.99577","0.99577" +"GO:0034622","cellular protein-containing complex asse...",63,27,33.67,2216,"0.96677","0.99599","0.99599" +"GO:0010921","regulation of phosphatase activity",7,0,3.74,2774,"1.00000","0.99609","0.99609" +"GO:0035304","regulation of protein dephosphorylation",6,0,3.21,2775,"1.00000","0.99665","0.99665" +"GO:0001709","cell fate determination",10,1,5.34,2535,"0.99953","0.99669","0.99669" +"GO:0031503","protein-containing complex localization",10,3,5.34,2210,"0.96597","0.99669","0.99669" +"GO:0044085","cellular component biogenesis",177,84,94.6,2170,"0.95894","0.97251","0.99676" +"GO:0022607","cellular component assembly",170,82,90.86,1931,"0.93236","0.95769","0.99691" +"GO:0010923","negative regulation of phosphatase activ...",5,0,2.67,2776,"1.00000","0.99721","0.99721" +"GO:0035305","negative regulation of dephosphorylation",5,0,2.67,2777,"1.00000","0.99721","0.99721" +"GO:0043666","regulation of phosphoprotein phosphatase...",5,0,2.67,2778,"1.00000","0.99721","0.99721" +"GO:0009119","ribonucleoside metabolic process",9,1,4.81,2525,"0.99899","0.99722","0.99722" +"GO:0006888","ER to Golgi vesicle-mediated transport",12,3,6.41,2386,"0.98962","0.99724","0.99724" +"GO:0016192","vesicle-mediated transport",132,54,70.55,2513,"0.99890","0.99726","0.99726" +"GO:0019538","protein metabolic process",514,223,274.72,2583,"1.00000","0.99770","0.99741" +"GO:0019236","response to pheromone",3,1,1.6,1753,"0.89926","0.99767","0.99767" +"GO:0050679","positive regulation of epithelial cell p...",3,1,1.6,1754,"0.89926","0.99767","0.99767" +"GO:0009994","oocyte differentiation",7,2,3.74,2166,"0.95742","0.99768","0.99768" +"GO:0032515","negative regulation of phosphoprotein ph...",4,0,2.14,2779,"1.00000","0.99777","0.99777" +"GO:0035308","negative regulation of protein dephospho...",4,0,2.14,2780,"1.00000","0.99777","0.99777" +"GO:0042278","purine nucleoside metabolic process",7,1,3.74,2461,"0.99531","0.99784","0.99784" +"GO:0042254","ribosome biogenesis",7,2,3.74,2167,"0.95742","0.99812","0.99812" +"GO:0046128","purine ribonucleoside metabolic process",6,1,3.21,2408,"0.98990","0.99815","0.99815" +"GO:0050877","nervous system process",59,28,31.53,1472,"0.85684","0.99820","0.99820" +"GO:0009451","RNA modification",15,2,8.02,2545,"0.99982","0.99821","0.99821" +"GO:0006396","RNA processing",47,8,25.12,2590,"1.00000","0.99824","0.99824" +"GO:0006468","protein phosphorylation",166,81,88.72,1764,"0.90771","0.90006","0.99838" +"GO:0009163","nucleoside biosynthetic process",5,0,2.67,2781,"1.00000","0.99846","0.99846" +"GO:0042455","ribonucleoside biosynthetic process",5,0,2.67,2782,"1.00000","0.99846","0.99846" +"GO:1901659","glycosyl compound biosynthetic process",5,0,2.67,2783,"1.00000","0.99846","0.99846" +"GO:0008356","asymmetric cell division",4,0,2.14,2784,"1.00000","0.99868","0.99868" +"GO:0006220","pyrimidine nucleotide metabolic process",4,0,2.14,2785,"1.00000","0.99876","0.99876" +"GO:0006221","pyrimidine nucleotide biosynthetic proce...",4,0,2.14,2786,"1.00000","0.99876","0.99876" +"GO:0051641","cellular localization",189,87,101.02,2364,"0.98629","0.99879","0.99879" +"GO:0006900","vesicle budding from membrane",5,1,2.67,2320,"0.97824","0.99885","0.99885" +"GO:0048194","Golgi vesicle budding",5,1,2.67,2321,"0.97824","0.99885","0.99885" +"GO:0006397","mRNA processing",18,5,9.62,2423,"0.99304","0.99888","0.99888" +"GO:0033013","tetrapyrrole metabolic process",6,2,3.21,1875,"0.91998","0.99893","0.99893" +"GO:0042451","purine nucleoside biosynthetic process",3,0,1.6,2787,"1.00000","0.99896","0.99896" +"GO:0046129","purine ribonucleoside biosynthetic proce...",3,0,1.6,2788,"1.00000","0.99896","0.99896" +"GO:0006213","pyrimidine nucleoside metabolic process",3,0,1.6,2789,"1.00000","0.99907","0.99907" +"GO:0046131","pyrimidine ribonucleoside metabolic proc...",3,0,1.6,2790,"1.00000","0.99907","0.99907" +"GO:0051649","establishment of localization in cell",147,64,78.57,2441,"0.99494","0.99908","0.99908" +"GO:0006903","vesicle targeting",4,0,2.14,2791,"1.00000","0.99908","0.99908" +"GO:0033014","tetrapyrrole biosynthetic process",5,1,2.67,2322,"0.97824","0.99911","0.99911" +"GO:0046839","phospholipid dephosphorylation",6,2,3.21,1876,"0.91998","0.99912","0.99912" +"GO:0046856","phosphatidylinositol dephosphorylation",6,2,3.21,1877,"0.91998","0.99912","0.99912" +"GO:0000375","RNA splicing, via transesterification re...",14,3,7.48,2470,"0.99700","0.99913","0.99913" +"GO:0000377","RNA splicing, via transesterification re...",14,3,7.48,2471,"0.99700","0.99913","0.99913" +"GO:0000398","mRNA splicing, via spliceosome",14,3,7.48,2472,"0.99700","0.99913","0.99913" +"GO:0046907","intracellular transport",132,57,70.55,2436,"0.99416","0.99918","0.99918" +"GO:0022613","ribonucleoprotein complex biogenesis",13,3,6.95,2438,"0.99438","0.99919","0.99919" +"GO:0006400","tRNA modification",6,0,3.21,2792,"1.00000","0.99929","0.99929" +"GO:0034470","ncRNA processing",19,1,10.16,2578,"1.00000","0.99930","0.99930" +"GO:0006901","vesicle coating",3,0,1.6,2793,"1.00000","0.99931","0.99931" +"GO:0048199","vesicle targeting, to, from or within Go...",3,0,1.6,2794,"1.00000","0.99931","0.99931" +"GO:0045184","establishment of protein localization",107,46,57.19,2388,"0.98976","0.99934","0.99934" +"GO:0008380","RNA splicing",17,3,9.09,2537,"0.99957","0.99937","0.99937" +"GO:0042886","amide transport",101,44,53.98,2350,"0.98365","0.99938","0.99938" +"GO:0015833","peptide transport",100,43,53.45,2365,"0.98750","0.99939","0.99939" +"GO:0015031","protein transport",99,43,52.91,2352,"0.98391","0.99939","0.99939" +"GO:0043412","macromolecule modification",337,150,180.12,2546,"0.99985","0.99809","0.99944" +"GO:0022618","ribonucleoprotein complex assembly",8,2,4.28,2276,"0.97771","0.99950","0.99950" +"GO:0071826","ribonucleoprotein complex subunit organi...",8,2,4.28,2277,"0.97771","0.99950","0.99950" +"GO:0008033","tRNA processing",12,1,6.41,2549,"0.99990","0.99956","0.99956" +"GO:0006886","intracellular protein transport",69,30,36.88,2190,"0.96457","0.99958","0.99958" +"GO:0018196","peptidyl-asparagine modification",4,1,2.14,2111,"0.95317","0.99962","0.99962" +"GO:0018279","protein N-linked glycosylation via aspar...",4,1,2.14,2112,"0.95317","0.99962","0.99962" +"GO:0072594","establishment of protein localization to...",26,8,13.9,2440,"0.99460","0.99965","0.99965" +"GO:0015693","magnesium ion transport",3,0,1.6,2795,"1.00000","0.99972","0.99972" +"GO:0051262","protein tetramerization",6,2,3.21,1878,"0.91998","0.99982","0.99982" +"GO:0071840","cellular component organization or bioge...",372,170,198.82,2536,"0.99955","0.99984","0.99984" +"GO:0016043","cellular component organization",366,169,195.62,2526,"0.99900","0.99984","0.99984" +"GO:1901360","organic cyclic compound metabolic proces...",502,211,268.31,2602,"1.00000","0.99989","0.99989" +"GO:0044238","primary metabolic process",1129,530,603.42,2606,"1.00000","0.99997","0.99992" +"GO:0008152","metabolic process",1443,744,771.25,2413,"0.99113","0.74280","0.99992" +"GO:0006612","protein targeting to membrane",3,0,1.6,2796,"1.00000","0.99996","0.99996" +"GO:0006352","DNA-templated transcription, initiation",7,2,3.74,2168,"0.95742","0.99998","0.99998" +"GO:0006725","cellular aromatic compound metabolic pro...",476,199,254.41,2600,"1.00000","0.99999","0.99999" +"GO:0071704","organic substance metabolic process",1212,584,647.78,2587,"1.00000","0.99988","1.00000" +"GO:0046483","heterocycle metabolic process",472,195,252.27,2604,"1.00000","1.00000","1.00000" +"GO:0006139","nucleobase-containing compound metabolic...",444,181,237.31,2605,"1.00000","1.00000","1.00000" +"GO:0006399","tRNA metabolic process",24,4,12.83,2553,"0.99997","1.00000","1.00000" +"GO:0006412","translation",67,14,35.81,2595,"1.00000","1.00000","1.00000" +"GO:0006518","peptide metabolic process",81,19,43.29,2598,"1.00000","1.00000","1.00000" +"GO:0006807","nitrogen compound metabolic process",999,449,533.94,2611,"1.00000","1.00000","1.00000" +"GO:0008150","biological_process",2335,1248,1248,2797,"1.00000","1.00000","1.00000" +"GO:0009058","biosynthetic process",575,252,307.32,2589,"1.00000","1.00000","1.00000" +"GO:0009059","macromolecule biosynthetic process",390,140,208.45,2614,"1.00000","1.00000","1.00000" +"GO:0009987","cellular process",1616,787,863.71,2609,"1.00000","1.00000","1.00000" +"GO:0010467","gene expression",373,121,199.36,2798,"1.00000","1.00000","1.00000" +"GO:0014896","muscle hypertrophy",7,7,3.74,31,"0.01236","0.00125","1.00000" +"GO:0014897","striated muscle hypertrophy",7,7,3.74,32,"0.01236","0.00125","1.00000" +"GO:0016070","RNA metabolic process",311,109,166.22,2610,"1.00000","1.00000","1.00000" +"GO:0030168","platelet activation",8,8,4.28,16,"0.00659","0.00343","1.00000" +"GO:0033673","negative regulation of kinase activity",14,10,7.48,173,"0.13879","0.00354","1.00000" +"GO:0034109","homotypic cell-cell adhesion",8,8,4.28,17,"0.00659","0.00343","1.00000" +"GO:0034641","cellular nitrogen compound metabolic pro...",540,214,288.62,2612,"1.00000","1.00000","1.00000" +"GO:0034645","cellular macromolecule biosynthetic proc...",385,136,205.77,2615,"1.00000","1.00000","1.00000" +"GO:0034660","ncRNA metabolic process",31,4,16.57,2579,"1.00000","1.00000","1.00000" +"GO:0043043","peptide biosynthetic process",69,15,36.88,2593,"1.00000","1.00000","1.00000" +"GO:0043170","macromolecule metabolic process",822,348,439.34,2616,"1.00000","1.00000","1.00000" +"GO:0043603","cellular amide metabolic process",103,33,55.05,2569,"1.00000","1.00000","1.00000" +"GO:0043604","amide biosynthetic process",79,22,42.22,2571,"1.00000","1.00000","1.00000" +"GO:0044237","cellular metabolic process",1078,500,576.16,2608,"1.00000","1.00000","1.00000" +"GO:0044249","cellular biosynthetic process",540,230,288.62,2601,"1.00000","1.00000","1.00000" +"GO:0044260","cellular macromolecule metabolic process",656,260,350.62,2799,"1.00000","1.00000","1.00000" +"GO:0044267","cellular protein metabolic process",415,168,221.81,2603,"1.00000","1.00000","1.00000" +"GO:0044271","cellular nitrogen compound biosynthetic ...",412,164,220.2,2607,"1.00000","1.00000","1.00000" +"GO:0090304","nucleic acid metabolic process",340,118,181.72,2613,"1.00000","1.00000","1.00000" +"GO:1901566","organonitrogen compound biosynthetic pro...",217,93,115.98,2539,"0.99960","1.00000","1.00000" +"GO:1901576","organic substance biosynthetic process",556,239,297.17,2597,"1.00000","1.00000","1.00000" diff --git a/GO_enrichment_output/contrast_laying_postlaying_downregulated.csv b/GO_enrichment_output/contrast_laying_postlaying_downregulated.csv index 4ccf4e3..d83da86 100644 --- a/GO_enrichment_output/contrast_laying_postlaying_downregulated.csv +++ b/GO_enrichment_output/contrast_laying_postlaying_downregulated.csv @@ -1,6 +1,1216 @@ "GO.ID","Term","Annotated","Significant","Expected","Rank in classicFisher","classicFisher","classicKS","elimKS" +"GO:0006281","DNA repair",105,68,51.92,25,"0.00090","1.0e-05","1.0e-05" "GO:0006260","DNA replication",69,51,34.12,6,"2.4e-05","1.4e-07","2.5e-05" -"GO:0006281","DNA repair",105,68,51.92,25,"0.00090","1.0e-05","0.00013" "GO:0006325","chromatin organization",126,91,62.31,2,"8.7e-08","9.7e-08","0.00020" "GO:0006511","ubiquitin-dependent protein catabolic pr...",79,57,39.06,7,"2.7e-05","5.5e-05","0.00032" -"GO:0006270","DNA replication initiation",10,10,4.94,23,"0.00086","4e-04","0.00040" +"GO:0006270","DNA replication initiation",10,10,4.94,23,"0.00086","0.00040","0.00040" +"GO:0006364","rRNA processing",44,32,21.76,26,"0.00134","0.00064","0.00064" +"GO:0000280","nuclear division",40,26,19.78,106,"0.03361","0.00075","0.00075" +"GO:0006310","DNA recombination",29,18,14.34,244,"0.11881","0.00109","0.00109" +"GO:0090068","positive regulation of cell cycle proces...",10,8,4.94,131,"0.05060","0.00147","0.00147" +"GO:0007346","regulation of mitotic cell cycle",33,21,16.32,170,"0.07098","0.00268","0.00268" +"GO:0070936","protein K48-linked ubiquitination",12,10,5.93,74,"0.01738","0.00302","0.00302" +"GO:0016570","histone modification",78,55,38.57,13,"0.00011","3.7e-05","0.00317" +"GO:0007059","chromosome segregation",38,24,18.79,156,"0.06144","0.00475","0.00475" +"GO:0070076","histone lysine demethylation",11,9,5.44,101,"0.02988","0.00506","0.00506" +"GO:0051052","regulation of DNA metabolic process",23,16,11.37,115,"0.04097","0.00524","0.00524" +"GO:0030433","ubiquitin-dependent ERAD pathway",12,11,5.93,32,"0.00279","0.00562","0.00562" +"GO:0006366","transcription by RNA polymerase II",152,89,75.16,66,"0.01280","0.00568","0.00568" +"GO:0071103","DNA conformation change",25,17,12.36,127,"0.04732","0.00603","0.00603" +"GO:0006513","protein monoubiquitination",18,15,8.9,34,"0.00320","0.00645","0.00645" +"GO:0016579","protein deubiquitination",35,24,17.31,73,"0.01688","0.00652","0.00652" +"GO:0070534","protein K63-linked ubiquitination",11,10,5.44,41,"0.00522","0.00751","0.00751" +"GO:0031396","regulation of protein ubiquitination",20,16,9.89,39,"0.00500","0.00932","0.00932" +"GO:0031401","positive regulation of protein modificat...",54,37,26.7,35,"0.00329","0.00966","0.00966" +"GO:0016571","histone methylation",19,14,9.4,97,"0.02807","0.00972","0.00972" +"GO:0051170","import into nucleus",17,14,8.41,43,"0.00548","0.00985","0.00985" +"GO:0006986","response to unfolded protein",14,12,6.92,44,"0.00567","0.01010","0.01010" +"GO:0006606","protein import into nucleus",16,13,7.91,53,"0.00930","0.01038","0.01038" +"GO:0006464","cellular protein modification process",503,287,248.73,10,"8.9e-05","4.9e-06","0.01075" +"GO:0036211","protein modification process",503,287,248.73,11,"8.9e-05","4.9e-06","0.01075" +"GO:0006468","protein phosphorylation",206,120,101.87,40,"0.00518","0.01096","0.01096" +"GO:0044706","multi-multicellular organism process",10,8,4.94,132,"0.05060","0.01189","0.01189" +"GO:0002165","instar larval or pupal development",19,15,9.4,50,"0.00826","0.01238","0.01238" +"GO:0031398","positive regulation of protein ubiquitin...",16,13,7.91,54,"0.00930","0.01270","0.01270" +"GO:1903322","positive regulation of protein modificat...",16,13,7.91,55,"0.00930","0.01270","0.01270" +"GO:1901987","regulation of cell cycle phase transitio...",21,14,10.38,194,"0.08549","0.01333","0.01333" +"GO:0032434","regulation of proteasomal ubiquitin-depe...",11,10,5.44,42,"0.00522","0.01504","0.01504" +"GO:0043412","macromolecule modification",557,314,275.43,14,"0.00014","1.4e-05","0.01616" +"GO:0006323","DNA packaging",20,13,9.89,250,"0.12039","0.01689","0.01689" +"GO:0006997","nucleus organization",15,12,7.42,71,"0.01559","0.01732","0.01732" +"GO:0007093","mitotic cell cycle checkpoint",14,10,6.92,185,"0.08267","0.01759","0.01759" +"GO:0010468","regulation of gene expression",487,262,240.82,80,"0.01891","0.01809","0.01809" +"GO:0090305","nucleic acid phosphodiester bond hydroly...",24,18,11.87,56,"0.00956","0.01826","0.01826" +"GO:0051276","chromosome organization",181,125,89.5,1,"2.5e-08","3.2e-09","0.01894" +"GO:0140014","mitotic nuclear division",25,16,12.36,214,"0.10330","0.01941","0.01941" +"GO:0051129","negative regulation of cellular componen...",51,33,25.22,81,"0.01931","0.01998","0.01998" +"GO:0098813","nuclear chromosome segregation",34,21,16.81,210,"0.10125","0.02002","0.02002" +"GO:0035120","post-embryonic appendage morphogenesis",14,11,6.92,93,"0.02579","0.02010","0.02010" +"GO:0051054","positive regulation of DNA metabolic pro...",14,10,6.92,186,"0.08267","0.02096","0.02096" +"GO:0048736","appendage development",21,16,10.38,63,"0.01141","0.02152","0.02152" +"GO:0031349","positive regulation of defense response",17,11,8.41,296,"0.15418","0.02265","0.02265" +"GO:0071824","protein-DNA complex subunit organization",24,15,11.87,274,"0.14010","0.02297","0.02297" +"GO:0022402","cell cycle process",127,76,62.8,61,"0.01031","0.00454","0.02370" +"GO:0019827","stem cell population maintenance",19,15,9.4,51,"0.00826","0.02383","0.02383" +"GO:0098727","maintenance of cell number",19,15,9.4,52,"0.00826","0.02383","0.02383" +"GO:1903825","organic acid transmembrane transport",12,9,5.93,162,"0.06737","0.02481","0.02481" +"GO:1905039","carboxylic acid transmembrane transport",12,9,5.93,163,"0.06737","0.02481","0.02481" +"GO:0016310","phosphorylation",230,130,113.73,69,"0.01469","0.02482","0.02482" +"GO:0009886","post-embryonic animal morphogenesis",17,13,8.41,87,"0.02170","0.02614","0.02614" +"GO:0043161","proteasome-mediated ubiquitin-dependent ...",39,31,19.29,12,"0.00010","0.00067","0.02637" +"GO:1903047","mitotic cell cycle process",74,44,36.59,140,"0.05141","0.02667","0.02667" +"GO:0006357","regulation of transcription by RNA polym...",126,72,62.31,124,"0.04646","0.02796","0.02796" +"GO:0007472","wing disc morphogenesis",13,10,6.43,118,"0.04204","0.02959","0.02959" +"GO:0018022","peptidyl-lysine methylation",16,10,7.91,382,"0.21330","0.02964","0.02964" +"GO:0045089","positive regulation of innate immune res...",15,10,7.42,275,"0.14031","0.03019","0.03019" +"GO:0033044","regulation of chromosome organization",34,22,16.81,142,"0.05224","0.03282","0.03282" +"GO:0010564","regulation of cell cycle process",42,28,20.77,77,"0.01759","0.00088","0.03386" +"GO:2001020","regulation of response to DNA damage sti...",18,14,8.9,67,"0.01347","0.03466","0.03466" +"GO:0031326","regulation of cellular biosynthetic proc...",445,233,220.05,208,"0.09766","0.03474","0.03474" +"GO:0016574","histone ubiquitination",12,10,5.93,75,"0.01738","0.03492","0.03492" +"GO:0090304","nucleic acid metabolic process",874,483,432.19,5,"1.5e-05","3.8e-06","0.03501" +"GO:0080135","regulation of cellular response to stres...",47,31,23.24,72,"0.01584","0.03602","0.03602" +"GO:0090092","regulation of transmembrane receptor pro...",14,11,6.92,94,"0.02579","0.03625","0.03625" +"GO:0043543","protein acylation",39,23,19.29,290,"0.14978","0.03770","0.03770" +"GO:0034968","histone lysine methylation",15,10,7.42,276,"0.14031","0.03839","0.03839" +"GO:0000278","mitotic cell cycle",88,54,43.52,70,"0.01496","0.00446","0.04121" +"GO:0097193","intrinsic apoptotic signaling pathway",14,11,6.92,95,"0.02579","0.04192","0.04192" +"GO:0007476","imaginal disc-derived wing morphogenesis",12,9,5.93,164,"0.06737","0.04346","0.04346" +"GO:0035114","imaginal disc-derived appendage morphoge...",12,9,5.93,165,"0.06737","0.04346","0.04346" +"GO:0048737","imaginal disc-derived appendage developm...",12,9,5.93,166,"0.06737","0.04346","0.04346" +"GO:0035107","appendage morphogenesis",19,14,9.4,98,"0.02807","0.04360","0.04360" +"GO:0000819","sister chromatid segregation",30,18,14.83,320,"0.16388","0.04360","0.04360" +"GO:2000058","regulation of ubiquitin-dependent protei...",12,10,5.93,76,"0.01738","0.04387","0.04387" +"GO:0009889","regulation of biosynthetic process",448,234,221.53,229,"0.10723","0.04392","0.04392" +"GO:0080134","regulation of response to stress",73,45,36.1,89,"0.02275","0.04596","0.04596" +"GO:0003333","amino acid transmembrane transport",10,7,4.94,306,"0.16252","0.04604","0.04604" +"GO:0006865","amino acid transport",10,7,4.94,307,"0.16252","0.04604","0.04604" +"GO:0090501","RNA phosphodiester bond hydrolysis",19,14,9.4,99,"0.02807","0.04654","0.04654" +"GO:0010556","regulation of macromolecule biosynthetic...",442,231,218.57,227,"0.10663","0.04661","0.04661" +"GO:0031123","RNA 3'-end processing",16,12,7.91,109,"0.03446","0.04775","0.04775" +"GO:2000112","regulation of cellular macromolecule bio...",439,230,217.08,207,"0.09704","0.04802","0.04802" +"GO:0051783","regulation of nuclear division",12,9,5.93,167,"0.06737","0.04942","0.04942" +"GO:0006793","phosphorus metabolic process",342,182,169.12,175,"0.07551","0.05153","0.05153" +"GO:0009791","post-embryonic development",37,25,18.3,82,"0.01935","0.05172","0.05172" +"GO:0006396","RNA processing",226,126,111.76,96,"0.02784","0.00947","0.05178" +"GO:0016070","RNA metabolic process",738,394,364.94,47,"0.00658","0.00079","0.05340" +"GO:0007552","metamorphosis",15,11,7.42,146,"0.05385","0.05439","0.05439" +"GO:0007560","imaginal disc morphogenesis",15,11,7.42,147,"0.05385","0.05439","0.05439" +"GO:0048563","post-embryonic animal organ morphogenesi...",15,11,7.42,148,"0.05385","0.05439","0.05439" +"GO:0048707","instar larval or pupal morphogenesis",15,11,7.42,149,"0.05385","0.05439","0.05439" +"GO:0006333","chromatin assembly or disassembly",16,11,7.91,204,"0.09652","0.05446","0.05446" +"GO:0061136","regulation of proteasomal protein catabo...",17,13,8.41,88,"0.02170","0.05461","0.05461" +"GO:0065004","protein-DNA complex assembly",21,12,10.38,507,"0.31280","0.05496","0.05496" +"GO:0030522","intracellular receptor signaling pathway",11,8,5.44,217,"0.10586","0.05538","0.05538" +"GO:0051304","chromosome separation",10,8,4.94,133,"0.05060","0.05554","0.05554" +"GO:0045930","negative regulation of mitotic cell cycl...",17,11,8.41,297,"0.15418","0.05557","0.05557" +"GO:0035966","response to topologically incorrect prot...",21,15,10.38,110,"0.03453","0.05567","0.05567" +"GO:0001736","establishment of planar polarity",12,8,5.93,345,"0.18282","0.05867","0.05867" +"GO:0007164","establishment of tissue polarity",12,8,5.93,346,"0.18282","0.05867","0.05867" +"GO:0031497","chromatin assembly",12,8,5.93,347,"0.18282","0.05945","0.05945" +"GO:0015711","organic anion transport",27,16,13.35,373,"0.20308","0.06026","0.06026" +"GO:0045814","negative regulation of gene expression, ...",15,11,7.42,150,"0.05385","0.06091","0.06091" +"GO:0045935","positive regulation of nucleobase-contai...",80,49,39.56,86,"0.02090","0.06116","0.06116" +"GO:0044770","cell cycle phase transition",37,24,18.3,116,"0.04185","0.06126","0.06126" +"GO:0010639","negative regulation of organelle organiz...",30,18,14.83,321,"0.16388","0.06130","0.06130" +"GO:0006796","phosphate-containing compound metabolic ...",340,180,168.13,200,"0.09309","0.06205","0.06205" +"GO:0006261","DNA-dependent DNA replication",32,23,15.82,49,"0.00816","0.00024","0.06247" +"GO:0043632","modification-dependent macromolecule cat...",82,60,40.55,4,"7.8e-06","1.9e-05","0.06435" +"GO:0010256","endomembrane system organization",34,20,16.81,336,"0.17684","0.06508","0.06508" +"GO:0045088","regulation of innate immune response",19,11,9.4,501,"0.30588","0.06542","0.06542" +"GO:0034605","cellular response to heat",10,8,4.94,134,"0.05060","0.06604","0.06604" +"GO:0001819","positive regulation of cytokine producti...",10,8,4.94,135,"0.05060","0.06653","0.06653" +"GO:0031056","regulation of histone modification",16,10,7.91,383,"0.21330","0.06810","0.06810" +"GO:1901215","negative regulation of neuron death",11,8,5.44,218,"0.10586","0.06811","0.06811" +"GO:1901990","regulation of mitotic cell cycle phase t...",19,12,9.4,324,"0.16634","0.06914","0.06914" +"GO:0007178","transmembrane receptor protein serine/th...",28,18,13.85,184,"0.08201","0.07063","0.07063" +"GO:0007286","spermatid development",19,12,9.4,325,"0.16634","0.07111","0.07111" +"GO:0042493","response to drug",40,26,19.78,107,"0.03361","0.07167","0.07167" +"GO:2001251","negative regulation of chromosome organi...",17,11,8.41,298,"0.15418","0.07207","0.07207" +"GO:0008380","RNA splicing",70,36,34.61,622,"0.41499","0.07229","0.07229" +"GO:0006259","DNA metabolic process",180,118,89.01,3,"4.7e-06","2.7e-09","0.07333" +"GO:2001242","regulation of intrinsic apoptotic signal...",11,9,5.44,102,"0.02988","0.07385","0.07385" +"GO:0044772","mitotic cell cycle phase transition",32,21,15.82,128,"0.04747","0.07395","0.07395" +"GO:0051252","regulation of RNA metabolic process",426,225,210.65,171,"0.07137","0.07590","0.07590" +"GO:2001141","regulation of RNA biosynthetic process",407,213,201.26,240,"0.11273","0.07730","0.07730" +"GO:0035220","wing disc development",14,10,6.92,187,"0.08267","0.07789","0.07789" +"GO:0034728","nucleosome organization",15,10,7.42,277,"0.14031","0.07860","0.07860" +"GO:0007062","sister chromatid cohesion",13,8,6.43,457,"0.27634","0.08169","0.08169" +"GO:0006302","double-strand break repair",19,11,9.4,502,"0.30588","0.08216","0.08216" +"GO:0031347","regulation of defense response",24,14,11.87,426,"0.25192","0.08392","0.08392" +"GO:0000070","mitotic sister chromatid segregation",22,13,10.88,415,"0.24412","0.08398","0.08398" +"GO:1903506","regulation of nucleic acid-templated tra...",406,213,200.76,213,"0.10263","0.08458","0.08458" +"GO:0018345","protein palmitoylation",10,6,4.94,541,"0.36322","0.08538","0.08538" +"GO:0043484","regulation of RNA splicing",12,9,5.93,168,"0.06737","0.08609","0.08609" +"GO:0019219","regulation of nucleobase-containing comp...",440,235,217.58,112,"0.03850","0.04360","0.08616" +"GO:0051090","regulation of DNA-binding transcription ...",17,12,8.41,158,"0.06507","0.08778","0.08778" +"GO:0006338","chromatin remodeling",23,15,11.37,201,"0.09471","0.09231","0.09231" +"GO:0006355","regulation of transcription, DNA-templat...",405,212,200.27,238,"0.11249","0.09242","0.09242" +"GO:0070979","protein K11-linked ubiquitination",10,7,4.94,308,"0.16252","0.09390","0.09390" +"GO:0007088","regulation of mitotic nuclear division",10,7,4.94,309,"0.16252","0.09405","0.09405" +"GO:0010941","regulation of cell death",79,47,39.06,123,"0.04445","0.09507","0.09507" +"GO:0006139","nucleobase-containing compound metabolic...",930,504,459.88,15,"0.00019","6.1e-05","0.09537" +"GO:0010721","negative regulation of cell development",17,12,8.41,159,"0.06507","0.09563","0.09563" +"GO:0035556","intracellular signal transduction",174,94,86.04,253,"0.12094","0.09571","0.09571" +"GO:1902275","regulation of chromatin organization",21,13,10.38,337,"0.17710","0.09592","0.09592" +"GO:1902531","regulation of intracellular signal trans...",91,51,45,246,"0.12017","0.09700","0.09700" +"GO:0006820","anion transport",33,20,16.32,268,"0.13238","0.09780","0.09780" +"GO:0065009","regulation of molecular function",126,72,62.31,125,"0.04646","0.09851","0.09851" +"GO:0043393","regulation of protein binding",12,9,5.93,169,"0.06737","0.09950","0.09950" +"GO:0006342","chromatin silencing",14,10,6.92,188,"0.08267","0.10082","0.10082" +"GO:0048285","organelle fission",46,31,22.75,59,"0.01011","0.00030","0.10435" +"GO:1903050","regulation of proteolysis involved in ce...",18,13,8.9,122,"0.04309","0.10568","0.10568" +"GO:0018193","peptidyl-amino acid modification",91,51,45,247,"0.12017","0.10652","0.10652" +"GO:0007369","gastrulation",20,14,9.89,141,"0.05152","0.10693","0.10693" +"GO:0007017","microtubule-based process",75,43,37.09,212,"0.10224","0.10827","0.10827" +"GO:0000075","cell cycle checkpoint",26,15,12.86,432,"0.25885","0.10919","0.10919" +"GO:0000082","G1/S transition of mitotic cell cycle",11,8,5.44,219,"0.10586","0.11020","0.11020" +"GO:0010498","proteasomal protein catabolic process",43,31,21.26,30,"0.00201","0.00986","0.11357" +"GO:0035601","protein deacylation",17,10,8.41,490,"0.29777","0.11359","0.11359" +"GO:0098732","macromolecule deacylation",17,10,8.41,491,"0.29777","0.11359","0.11359" +"GO:0140013","meiotic nuclear division",13,8,6.43,458,"0.27634","0.11449","0.11449" +"GO:0006334","nucleosome assembly",11,7,5.44,436,"0.26169","0.11452","0.11452" +"GO:0048515","spermatid differentiation",20,12,9.89,408,"0.23526","0.11592","0.11592" +"GO:0000460","maturation of 5.8S rRNA",10,7,4.94,310,"0.16252","0.11756","0.11756" +"GO:0010948","negative regulation of cell cycle proces...",15,10,7.42,278,"0.14031","0.11839","0.11839" +"GO:0001666","response to hypoxia",13,7,6.43,685,"0.48382","0.11883","0.11883" +"GO:0036293","response to decreased oxygen levels",13,7,6.43,686,"0.48382","0.11883","0.11883" +"GO:0070482","response to oxygen levels",13,7,6.43,687,"0.48382","0.11883","0.11883" +"GO:0060255","regulation of macromolecule metabolic pr...",566,300,279.88,104,"0.03133","0.02724","0.12166" +"GO:1902532","negative regulation of intracellular sig...",32,21,15.82,129,"0.04747","0.12479","0.12479" +"GO:0006397","mRNA processing",82,44,40.55,430,"0.25393","0.12746","0.12746" +"GO:0071772","response to BMP",10,8,4.94,136,"0.05060","0.12809","0.12809" +"GO:0071773","cellular response to BMP stimulus",10,8,4.94,137,"0.05060","0.12809","0.12809" +"GO:0007018","microtubule-based movement",35,21,17.31,272,"0.13854","0.13020","0.13020" +"GO:2001252","positive regulation of chromosome organi...",13,8,6.43,459,"0.27634","0.13032","0.13032" +"GO:0060042","retina morphogenesis in camera-type eye",10,8,4.94,138,"0.05060","0.13252","0.13252" +"GO:0002684","positive regulation of immune system pro...",33,20,16.32,269,"0.13238","0.13381","0.13381" +"GO:0007611","learning or memory",12,8,5.93,348,"0.18282","0.13702","0.13702" +"GO:0051321","meiotic cell cycle",20,13,9.89,251,"0.12039","0.13913","0.13913" +"GO:0044093","positive regulation of molecular functio...",76,45,37.58,145,"0.05340","0.14017","0.14017" +"GO:0002221","pattern recognition receptor signaling p...",10,6,4.94,542,"0.36322","0.14099","0.14099" +"GO:0033045","regulation of sister chromatid segregati...",11,8,5.44,220,"0.10586","0.14117","0.14117" +"GO:0051983","regulation of chromosome segregation",11,8,5.44,221,"0.10586","0.14117","0.14117" +"GO:0006479","protein methylation",30,20,14.83,120,"0.04261","0.00663","0.14127" +"GO:0008213","protein alkylation",30,20,14.83,121,"0.04261","0.00663","0.14127" +"GO:0050778","positive regulation of immune response",29,16,14.34,527,"0.33264","0.14158","0.14158" +"GO:0010562","positive regulation of phosphorus metabo...",34,22,16.81,143,"0.05224","0.14643","0.14643" +"GO:0045937","positive regulation of phosphate metabol...",34,22,16.81,144,"0.05224","0.14643","0.14643" +"GO:0010769","regulation of cell morphogenesis involve...",11,8,5.44,222,"0.10586","0.14683","0.14683" +"GO:0097190","apoptotic signaling pathway",22,15,10.88,155,"0.05966","0.14918","0.14918" +"GO:0044839","cell cycle G2/M phase transition",13,8,6.43,460,"0.27634","0.14983","0.14983" +"GO:0010628","positive regulation of gene expression",82,48,40.55,153,"0.05920","0.15030","0.15030" +"GO:0046483","heterocycle metabolic process",944,510,466.8,16,"0.00026","0.00012","0.15219" +"GO:0016180","snRNA processing",11,8,5.44,223,"0.10586","0.15272","0.15272" +"GO:0007610","behavior",38,22,18.79,360,"0.18805","0.15479","0.15479" +"GO:0048523","negative regulation of cellular process",256,137,126.59,203,"0.09613","0.15574","0.15574" +"GO:0009611","response to wounding",19,13,9.4,176,"0.07562","0.15615","0.15615" +"GO:0001738","morphogenesis of a polarized epithelium",13,8,6.43,461,"0.27634","0.15736","0.15736" +"GO:0006725","cellular aromatic compound metabolic pro...",944,509,466.8,18,"0.00035","0.00017","0.15818" +"GO:0045787","positive regulation of cell cycle",13,11,6.43,57,"0.00998","0.00377","0.15911" +"GO:0048593","camera-type eye morphogenesis",14,10,6.92,189,"0.08267","0.15990","0.15990" +"GO:0070997","neuron death",13,9,6.43,256,"0.12437","0.16006","0.16006" +"GO:1901214","regulation of neuron death",13,9,6.43,257,"0.12437","0.16006","0.16006" +"GO:0042981","regulation of apoptotic process",66,39,32.64,172,"0.07167","0.16089","0.16089" +"GO:0015849","organic acid transport",22,13,10.88,416,"0.24412","0.16459","0.16459" +"GO:0046942","carboxylic acid transport",22,13,10.88,417,"0.24412","0.16459","0.16459" +"GO:0001934","positive regulation of protein phosphory...",29,19,14.34,154,"0.05953","0.16558","0.16558" +"GO:0043067","regulation of programmed cell death",68,40,33.63,174,"0.07423","0.16560","0.16560" +"GO:0045786","negative regulation of cell cycle",42,23,20.77,488,"0.29520","0.16695","0.16695" +"GO:0048569","post-embryonic animal organ development",18,12,8.9,230,"0.10905","0.16821","0.16821" +"GO:1902882","regulation of response to oxidative stre...",10,7,4.94,311,"0.16252","0.16857","0.16857" +"GO:0048519","negative regulation of biological proces...",298,158,147.36,226,"0.10606","0.16982","0.16982" +"GO:0007528","neuromuscular junction development",10,7,4.94,312,"0.16252","0.17087","0.17087" +"GO:0098656","anion transmembrane transport",16,10,7.91,384,"0.21330","0.17277","0.17277" +"GO:0007409","axonogenesis",31,19,15.33,262,"0.12581","0.17374","0.17374" +"GO:0018205","peptidyl-lysine modification",46,25,22.75,498,"0.30107","0.17454","0.17454" +"GO:0001817","regulation of cytokine production",16,11,7.91,205,"0.09652","0.17544","0.17544" +"GO:0070887","cellular response to chemical stimulus",127,70,62.8,237,"0.11143","0.17692","0.17692" +"GO:0051171","regulation of nitrogen compound metaboli...",532,278,263.07,181,"0.08063","0.04623","0.17869" +"GO:0042327","positive regulation of phosphorylation",31,20,15.33,160,"0.06535","0.18084","0.18084" +"GO:1903362","regulation of cellular protein catabolic...",19,13,9.4,177,"0.07562","0.18198","0.18198" +"GO:0032774","RNA biosynthetic process",472,254,233.4,85,"0.02053","0.02155","0.18498" +"GO:0046777","protein autophosphorylation",10,7,4.94,313,"0.16252","0.18907","0.18907" +"GO:0002218","activation of innate immune response",11,6,5.44,698,"0.48507","0.19111","0.19111" +"GO:0002758","innate immune response-activating signal...",11,6,5.44,699,"0.48507","0.19111","0.19111" +"GO:0035967","cellular response to topologically incor...",15,10,7.42,279,"0.14031","0.19143","0.19143" +"GO:0072331","signal transduction by p53 class mediato...",15,10,7.42,280,"0.14031","0.19143","0.19143" +"GO:0031325","positive regulation of cellular metaboli...",143,84,70.71,68,"0.01381","0.04755","0.19157" +"GO:0034655","nucleobase-containing compound catabolic...",50,30,24.72,195,"0.08610","0.19499","0.19499" +"GO:0040029","regulation of gene expression, epigeneti...",25,16,12.36,215,"0.10330","0.19595","0.19595" +"GO:0007626","locomotory behavior",13,9,6.43,258,"0.12437","0.19610","0.19610" +"GO:0001816","cytokine production",18,12,8.9,231,"0.10905","0.19709","0.19709" +"GO:0030308","negative regulation of cell growth",14,10,6.92,190,"0.08267","0.19884","0.19884" +"GO:0050768","negative regulation of neurogenesis",13,9,6.43,259,"0.12437","0.19963","0.19963" +"GO:0016073","snRNA metabolic process",15,10,7.42,281,"0.14031","0.19977","0.19977" +"GO:0042060","wound healing",16,11,7.91,206,"0.09652","0.20165","0.20165" +"GO:0034504","protein localization to nucleus",25,16,12.36,216,"0.10330","0.20229","0.20229" +"GO:0051254","positive regulation of RNA metabolic pro...",70,41,34.61,178,"0.07675","0.20403","0.20403" +"GO:1901988","negative regulation of cell cycle phase ...",11,7,5.44,437,"0.26169","0.20476","0.20476" +"GO:1901991","negative regulation of mitotic cell cycl...",11,7,5.44,438,"0.26169","0.20476","0.20476" +"GO:0097659","nucleic acid-templated transcription",468,252,231.42,84,"0.02030","0.02374","0.20570" +"GO:0045859","regulation of protein kinase activity",27,17,13.35,236,"0.11131","0.20629","0.20629" +"GO:0009314","response to radiation",28,17,13.85,302,"0.15660","0.20658","0.20658" +"GO:0006417","regulation of translation",25,13,12.36,656,"0.47772","0.20707","0.20707" +"GO:0034248","regulation of cellular amide metabolic p...",25,13,12.36,657,"0.47772","0.20707","0.20707" +"GO:0044843","cell cycle G1/S phase transition",12,8,5.93,349,"0.18282","0.20762","0.20762" +"GO:0046661","male sex differentiation",12,8,5.93,350,"0.18282","0.20762","0.20762" +"GO:0016569","covalent chromatin modification",81,57,40.05,9,"8.6e-05","2.1e-05","0.20765" +"GO:0008285","negative regulation of cell proliferatio...",31,19,15.33,263,"0.12581","0.20795","0.20795" +"GO:0006476","protein deacetylation",14,8,6.92,575,"0.37889","0.21042","0.21042" +"GO:0007179","transforming growth factor beta receptor...",16,9,7.91,581,"0.38426","0.21044","0.21044" +"GO:0007548","sex differentiation",23,14,11.37,356,"0.18669","0.21099","0.21099" +"GO:1901700","response to oxygen-containing compound",55,32,27.2,249,"0.12036","0.21648","0.21648" +"GO:0017038","protein import",25,14,12.36,518,"0.32398","0.21728","0.21728" +"GO:0001522","pseudouridine synthesis",11,7,5.44,439,"0.26169","0.21880","0.21880" +"GO:0019932","second-messenger-mediated signaling",11,8,5.44,224,"0.10586","0.21907","0.21907" +"GO:0051338","regulation of transferase activity",37,23,18.3,182,"0.08161","0.21986","0.21986" +"GO:0045893","positive regulation of transcription, DN...",63,37,31.15,196,"0.08615","0.22000","0.22000" +"GO:1903508","positive regulation of nucleic acid-temp...",63,37,31.15,197,"0.08615","0.22000","0.22000" +"GO:0010035","response to inorganic substance",20,13,9.89,252,"0.12039","0.22114","0.22114" +"GO:0000910","cytokinesis",17,9,8.41,672,"0.48156","0.22322","0.22322" +"GO:0030097","hemopoiesis",26,15,12.86,433,"0.25885","0.22362","0.22362" +"GO:0006351","transcription, DNA-templated",467,251,230.93,90,"0.02288","0.02665","0.22460" +"GO:2001234","negative regulation of apoptotic signali...",10,7,4.94,314,"0.16252","0.22491","0.22491" +"GO:0009968","negative regulation of signal transducti...",65,36,32.14,370,"0.19952","0.22671","0.22671" +"GO:0002429","immune response-activating cell surface ...",12,6,5.93,773,"0.59804","0.22689","0.22689" +"GO:0002768","immune response-regulating cell surface ...",12,6,5.93,774,"0.59804","0.22689","0.22689" +"GO:1903311","regulation of mRNA metabolic process",18,12,8.9,232,"0.10905","0.22726","0.22726" +"GO:0050953","sensory perception of light stimulus",12,5,5.93,947,"0.79588","0.22844","0.22844" +"GO:1903046","meiotic cell cycle process",18,11,8.9,398,"0.22509","0.23001","0.23001" +"GO:0061564","axon development",36,22,17.8,228,"0.10704","0.23280","0.23280" +"GO:0000375","RNA splicing, via transesterification re...",54,26,26.7,812,"0.62925","0.23632","0.23632" +"GO:0000377","RNA splicing, via transesterification re...",54,26,26.7,813,"0.62925","0.23632","0.23632" +"GO:0000398","mRNA splicing, via spliceosome",54,26,26.7,814,"0.62925","0.23632","0.23632" +"GO:0008033","tRNA processing",47,21,23.24,939,"0.78995","0.23695","0.23695" +"GO:0071236","cellular response to antibiotic",10,7,4.94,315,"0.16252","0.23796","0.23796" +"GO:0097237","cellular response to toxic substance",10,7,4.94,316,"0.16252","0.23796","0.23796" +"GO:0006473","protein acetylation",26,15,12.86,434,"0.25885","0.23927","0.23927" +"GO:0043549","regulation of kinase activity",29,18,14.34,245,"0.11881","0.23979","0.23979" +"GO:1902533","positive regulation of intracellular sig...",29,17,14.34,380,"0.21014","0.23979","0.23979" +"GO:0048232","male gamete generation",36,19,17.8,612,"0.40733","0.24423","0.24423" +"GO:0034470","ncRNA processing",99,58,48.95,113,"0.03979","0.01118","0.24464" +"GO:1903706","regulation of hemopoiesis",10,7,4.94,317,"0.16252","0.24521","0.24521" +"GO:1901653","cellular response to peptide",10,6,4.94,543,"0.36322","0.24710","0.24710" +"GO:0002164","larval development",11,8,5.44,225,"0.10586","0.25069","0.25069" +"GO:0007266","Rho protein signal transduction",17,10,8.41,492,"0.29777","0.25240","0.25240" +"GO:0045861","negative regulation of proteolysis",15,10,7.42,282,"0.14031","0.25253","0.25253" +"GO:0007166","cell surface receptor signaling pathway",122,62,60.33,620,"0.41392","0.25425","0.25425" +"GO:0035282","segmentation",22,13,10.88,418,"0.24412","0.25620","0.25620" +"GO:0007049","cell cycle",179,98,88.51,183,"0.08200","0.01468","0.25655" +"GO:0035690","cellular response to drug",13,9,6.43,260,"0.12437","0.25766","0.25766" +"GO:0031323","regulation of cellular metabolic process",544,282,269,242,"0.11448","0.08383","0.26147" +"GO:2001233","regulation of apoptotic signaling pathwa...",18,12,8.9,233,"0.10905","0.26311","0.26311" +"GO:0008544","epidermis development",14,9,6.92,369,"0.19943","0.26408","0.26408" +"GO:0006497","protein lipidation",20,11,9.89,591,"0.39221","0.26417","0.26417" +"GO:0042158","lipoprotein biosynthetic process",20,11,9.89,592,"0.39221","0.26417","0.26417" +"GO:0000956","nuclear-transcribed mRNA catabolic proce...",23,14,11.37,357,"0.18669","0.26457","0.26457" +"GO:1901701","cellular response to oxygen-containing c...",33,19,16.32,396,"0.22248","0.26504","0.26504" +"GO:0071417","cellular response to organonitrogen comp...",13,7,6.43,688,"0.48382","0.26662","0.26662" +"GO:0006368","transcription elongation from RNA polyme...",15,9,7.42,475,"0.28810","0.26807","0.26807" +"GO:0050890","cognition",14,8,6.92,576,"0.37889","0.26991","0.26991" +"GO:0048585","negative regulation of response to stimu...",79,44,39.06,301,"0.15545","0.27084","0.27084" +"GO:0008219","cell death",109,61,53.9,209,"0.09820","0.27152","0.27152" +"GO:0019222","regulation of metabolic process",591,308,292.25,179,"0.07705","0.09184","0.27304" +"GO:0031324","negative regulation of cellular metaboli...",133,72,65.77,295,"0.15379","0.27336","0.27336" +"GO:0034404","nucleobase-containing small molecule bio...",13,8,6.43,462,"0.27634","0.27494","0.27494" +"GO:1902680","positive regulation of RNA biosynthetic ...",64,37,31.65,234,"0.10959","0.27732","0.27732" +"GO:0007601","visual perception",11,4,5.44,1011,"0.87996","0.28045","0.28045" +"GO:0007411","axon guidance",21,13,10.38,338,"0.17710","0.28095","0.28095" +"GO:0097485","neuron projection guidance",21,13,10.38,339,"0.17710","0.28095","0.28095" +"GO:0045165","cell fate commitment",23,14,11.37,358,"0.18669","0.28157","0.28157" +"GO:0000904","cell morphogenesis involved in different...",50,28,24.72,391,"0.21410","0.28184","0.28184" +"GO:0090287","regulation of cellular response to growt...",17,11,8.41,299,"0.15418","0.28315","0.28315" +"GO:0010605","negative regulation of macromolecule met...",164,88,81.1,292,"0.15086","0.28585","0.28585" +"GO:0002757","immune response-activating signal transd...",19,9,9.4,832,"0.65910","0.28615","0.28615" +"GO:0002764","immune response-regulating signaling pat...",19,9,9.4,833,"0.65910","0.28615","0.28615" +"GO:0035023","regulation of Rho protein signal transdu...",16,10,7.91,385,"0.21330","0.28702","0.28702" +"GO:0080090","regulation of primary metabolic process",538,278,266.04,270,"0.13390","0.08995","0.28841" +"GO:0050789","regulation of biological process",1018,519,503.39,241,"0.11330","0.13225","0.28868" +"GO:0006928","movement of cell or subcellular componen...",105,57,51.92,342,"0.18090","0.28960","0.28960" +"GO:0032269","negative regulation of cellular protein ...",46,26,22.75,378,"0.20645","0.29000","0.29000" +"GO:0006611","protein export from nucleus",15,7,7.42,845,"0.68157","0.29079","0.29079" +"GO:0010648","negative regulation of cell communicatio...",66,36,32.64,410,"0.23769","0.29092","0.29092" +"GO:0023057","negative regulation of signaling",66,36,32.64,411,"0.23769","0.29092","0.29092" +"GO:0043410","positive regulation of MAPK cascade",15,10,7.42,283,"0.14031","0.29133","0.29133" +"GO:0009892","negative regulation of metabolic process",171,91,84.56,333,"0.17366","0.29199","0.29199" +"GO:0051172","negative regulation of nitrogen compound...",130,70,64.28,335,"0.17402","0.29234","0.29234" +"GO:0071453","cellular response to oxygen levels",10,5,4.94,788,"0.60964","0.29364","0.29364" +"GO:0007029","endoplasmic reticulum organization",10,6,4.94,544,"0.36322","0.29442","0.29442" +"GO:0002520","immune system development",28,16,13.85,451,"0.26506","0.29481","0.29481" +"GO:0051098","regulation of binding",19,12,9.4,326,"0.16634","0.29542","0.29542" +"GO:0000724","double-strand break repair via homologou...",11,5,5.44,881,"0.71344","0.29673","0.29673" +"GO:0000725","recombinational repair",11,5,5.44,882,"0.71344","0.29673","0.29673" +"GO:0002694","regulation of leukocyte activation",10,6,4.94,545,"0.36322","0.29786","0.29786" +"GO:0050865","regulation of cell activation",10,6,4.94,546,"0.36322","0.29786","0.29786" +"GO:0051249","regulation of lymphocyte activation",10,6,4.94,547,"0.36322","0.29786","0.29786" +"GO:0061458","reproductive system development",37,22,18.3,284,"0.14433","0.29981","0.29981" +"GO:0009636","response to toxic substance",16,10,7.91,386,"0.21330","0.30362","0.30362" +"GO:0034599","cellular response to oxidative stress",16,10,7.91,387,"0.21330","0.30362","0.30362" +"GO:0006354","DNA-templated transcription, elongation",21,12,10.38,508,"0.31280","0.30909","0.30909" +"GO:0007041","lysosomal transport",12,8,5.93,351,"0.18282","0.31155","0.31155" +"GO:0030182","neuron differentiation",87,49,43.02,243,"0.11602","0.31159","0.31159" +"GO:0009141","nucleoside triphosphate metabolic proces...",15,9,7.42,476,"0.28810","0.31274","0.31274" +"GO:0009967","positive regulation of signal transducti...",59,32,29.18,454,"0.27025","0.31286","0.31286" +"GO:0010942","positive regulation of cell death",28,17,13.85,303,"0.15660","0.31391","0.31391" +"GO:0003002","regionalization",31,19,15.33,264,"0.12581","0.31439","0.31439" +"GO:0007030","Golgi organization",12,7,5.93,564,"0.37210","0.31722","0.31722" +"GO:0042461","photoreceptor cell development",13,9,6.43,261,"0.12437","0.31734","0.31734" +"GO:1901360","organic cyclic compound metabolic proces...",956,512,472.74,22,"0.00084","0.00061","0.31800" +"GO:0009719","response to endogenous stimulus",85,44,42.03,572,"0.37303","0.31824","0.31824" +"GO:0046488","phosphatidylinositol metabolic process",18,11,8.9,399,"0.22509","0.32120","0.32120" +"GO:0033674","positive regulation of kinase activity",12,8,5.93,352,"0.18282","0.32338","0.32338" +"GO:0045860","positive regulation of protein kinase ac...",12,8,5.93,353,"0.18282","0.32338","0.32338" +"GO:0043408","regulation of MAPK cascade",21,12,10.38,509,"0.31280","0.32549","0.32549" +"GO:0019439","aromatic compound catabolic process",52,30,25.71,285,"0.14438","0.32760","0.32760" +"GO:0044270","cellular nitrogen compound catabolic pro...",52,30,25.71,286,"0.14438","0.32760","0.32760" +"GO:0046700","heterocycle catabolic process",52,30,25.71,287,"0.14438","0.32760","0.32760" +"GO:0006406","mRNA export from nucleus",10,5,4.94,789,"0.60964","0.32792","0.32792" +"GO:0071427","mRNA-containing ribonucleoprotein comple...",10,5,4.94,790,"0.60964","0.32792","0.32792" +"GO:0048812","neuron projection morphogenesis",37,21,18.3,405,"0.23292","0.32909","0.32909" +"GO:0048858","cell projection morphogenesis",37,21,18.3,406,"0.23292","0.32909","0.32909" +"GO:0120039","plasma membrane bounded cell projection ...",37,21,18.3,407,"0.23292","0.32909","0.32909" +"GO:0040007","growth",77,43,38.08,293,"0.15304","0.32912","0.32912" +"GO:0061640","cytoskeleton-dependent cytokinesis",12,7,5.93,565,"0.37210","0.32961","0.32961" +"GO:0051650","establishment of vesicle localization",12,6,5.93,775,"0.59804","0.33069","0.33069" +"GO:0002682","regulation of immune system process",48,28,23.74,271,"0.13632","0.33155","0.33155" +"GO:0043254","regulation of protein complex assembly",29,14,14.34,804,"0.62262","0.33220","0.33220" +"GO:0010604","positive regulation of macromolecule met...",139,81,68.73,83,"0.02001","0.06887","0.33434" +"GO:0046434","organophosphate catabolic process",13,6,6.43,864,"0.69594","0.33570","0.33570" +"GO:0022008","neurogenesis",99,55,48.95,267,"0.12789","0.33573","0.33573" +"GO:0071495","cellular response to endogenous stimulus",67,34,33.13,636,"0.46349","0.33714","0.33714" +"GO:0044092","negative regulation of molecular functio...",34,18,16.81,610,"0.40621","0.33796","0.33796" +"GO:0051345","positive regulation of hydrolase activit...",32,19,15.82,331,"0.17060","0.33875","0.33875" +"GO:0000226","microtubule cytoskeleton organization",37,19,18.3,644,"0.47293","0.33955","0.33955" +"GO:0000077","DNA damage checkpoint",11,6,5.44,700,"0.48507","0.34152","0.34152" +"GO:0009893","positive regulation of metabolic process",156,89,77.14,103,"0.03026","0.09383","0.34171" +"GO:0034654","nucleobase-containing compound biosynthe...",508,270,251.2,111,"0.03533","0.04816","0.34296" +"GO:0051261","protein depolymerization",12,7,5.93,566,"0.37210","0.34535","0.34535" +"GO:0006413","translational initiation",16,6,7.91,1022,"0.88736","0.34541","0.34541" +"GO:0042157","lipoprotein metabolic process",21,11,10.38,663,"0.47955","0.34789","0.34789" +"GO:0043170","macromolecule metabolic process",1500,783,741.74,20,"0.00066","0.00043","0.34792" +"GO:0051961","negative regulation of nervous system de...",16,10,7.91,388,"0.21330","0.34820","0.34820" +"GO:0006401","RNA catabolic process",39,23,19.29,291,"0.14978","0.34855","0.34855" +"GO:0048534","hematopoietic or lymphoid organ developm...",27,15,13.35,521,"0.32857","0.34869","0.34869" +"GO:0042221","response to chemical",208,114,102.85,157,"0.06193","0.12889","0.35005" +"GO:0010557","positive regulation of macromolecule bio...",69,38,34.12,376,"0.20481","0.35212","0.35212" +"GO:0010647","positive regulation of cell communicatio...",61,32,30.16,557,"0.36462","0.35413","0.35413" +"GO:0023056","positive regulation of signaling",61,32,30.16,558,"0.36462","0.35413","0.35413" +"GO:0012501","programmed cell death",97,54,47.97,265,"0.12603","0.35559","0.35559" +"GO:0010608","posttranscriptional regulation of gene e...",43,22,21.26,641,"0.47081","0.35706","0.35706" +"GO:0051173","positive regulation of nitrogen compound...",134,78,66.26,91,"0.02299","0.05942","0.35733" +"GO:0045087","innate immune response",29,14,14.34,805,"0.62262","0.35790","0.35790" +"GO:0007350","blastoderm segmentation",10,6,4.94,548,"0.36322","0.35823","0.35823" +"GO:0033043","regulation of organelle organization",103,54,50.93,499,"0.30289","0.35841","0.35841" +"GO:0000086","G2/M transition of mitotic cell cycle",11,6,5.44,701,"0.48507","0.35886","0.35886" +"GO:0016071","mRNA metabolic process",115,61,56.87,421,"0.24419","0.35956","0.35956" +"GO:0050790","regulation of catalytic activity",97,54,47.97,266,"0.12603","0.36006","0.36006" +"GO:0003013","circulatory system process",10,6,4.94,549,"0.36322","0.36058","0.36058" +"GO:0008015","blood circulation",10,6,4.94,550,"0.36322","0.36058","0.36058" +"GO:0072527","pyrimidine-containing compound metabolic...",11,5,5.44,883,"0.71344","0.36123","0.36123" +"GO:0071345","cellular response to cytokine stimulus",22,13,10.88,419,"0.24412","0.36191","0.36191" +"GO:0009890","negative regulation of biosynthetic proc...",96,51,47.47,449,"0.26443","0.36249","0.36249" +"GO:0031327","negative regulation of cellular biosynth...",96,51,47.47,450,"0.26443","0.36249","0.36249" +"GO:0045862","positive regulation of proteolysis",19,12,9.4,327,"0.16634","0.36281","0.36281" +"GO:0010629","negative regulation of gene expression",128,69,63.3,332,"0.17275","0.36540","0.36540" +"GO:0006915","apoptotic process",90,49,44.5,367,"0.19570","0.36556","0.36556" +"GO:0008593","regulation of Notch signaling pathway",11,7,5.44,440,"0.26169","0.36597","0.36597" +"GO:0031330","negative regulation of cellular cataboli...",12,8,5.93,354,"0.18282","0.36603","0.36603" +"GO:0031334","positive regulation of protein complex a...",23,11,11.37,821,"0.64205","0.36729","0.36729" +"GO:0009952","anterior/posterior pattern specification",18,11,8.9,400,"0.22509","0.36741","0.36741" +"GO:0071897","DNA biosynthetic process",13,6,6.43,865,"0.69594","0.36912","0.36912" +"GO:0051301","cell division",38,22,18.79,361,"0.18805","0.37124","0.37124" +"GO:0019438","aromatic compound biosynthetic process",517,275,255.65,105,"0.03219","0.05755","0.37341" +"GO:0050821","protein stabilization",11,6,5.44,702,"0.48507","0.37436","0.37436" +"GO:0050776","regulation of immune response",35,18,17.31,645,"0.47367","0.37519","0.37519" +"GO:0042254","ribosome biogenesis",65,45,32.14,24,"0.00086","0.00274","0.37533" +"GO:0048592","eye morphogenesis",35,21,17.31,273,"0.13854","0.37689","0.37689" +"GO:0043085","positive regulation of catalytic activit...",54,31,26.7,289,"0.14815","0.37736","0.37736" +"GO:0048608","reproductive structure development",36,21,17.8,343,"0.18264","0.37811","0.37811" +"GO:0048754","branching morphogenesis of an epithelial...",10,7,4.94,318,"0.16252","0.37865","0.37865" +"GO:0048699","generation of neurons",94,52,46.48,288,"0.14590","0.37975","0.37975" +"GO:0016575","histone deacetylation",11,6,5.44,703,"0.48507","0.37980","0.37980" +"GO:0000154","rRNA modification",12,6,5.93,776,"0.59804","0.38054","0.38054" +"GO:0006399","tRNA metabolic process",70,28,34.61,1109,"0.95806","0.38143","0.38143" +"GO:0009798","axis specification",17,11,8.41,300,"0.15418","0.38506","0.38506" +"GO:0016573","histone acetylation",23,13,11.37,512,"0.31877","0.38570","0.38570" +"GO:0003407","neural retina development",10,7,4.94,319,"0.16252","0.38759","0.38759" +"GO:2000113","negative regulation of cellular macromol...",92,49,45.49,447,"0.26170","0.38811","0.38811" +"GO:0007034","vacuolar transport",23,12,11.37,660,"0.47862","0.39242","0.39242" +"GO:0051248","negative regulation of protein metabolic...",50,28,24.72,392,"0.21410","0.39460","0.39460" +"GO:0060284","regulation of cell development",45,26,22.25,322,"0.16437","0.39474","0.39474" +"GO:0051247","positive regulation of protein metabolic...",78,47,38.57,108,"0.03390","0.06494","0.39578" +"GO:0006470","protein dephosphorylation",33,18,16.32,530,"0.33955","0.39666","0.39666" +"GO:0042127","regulation of cell proliferation",60,34,29.67,304,"0.15853","0.39810","0.39810" +"GO:0046677","response to antibiotic",11,7,5.44,441,"0.26169","0.39956","0.39956" +"GO:0018130","heterocycle biosynthetic process",521,276,257.63,114,"0.04019","0.06538","0.40059" +"GO:0010038","response to metal ion",16,10,7.91,389,"0.21330","0.40093","0.40093" +"GO:0032271","regulation of protein polymerization",23,12,11.37,661,"0.47862","0.40230","0.40230" +"GO:1905268","negative regulation of chromatin organiz...",11,6,5.44,704,"0.48507","0.40467","0.40467" +"GO:0050794","regulation of cellular process",955,480,472.24,468,"0.27808","0.18061","0.40479" +"GO:0098742","cell-cell adhesion via plasma-membrane a...",13,7,6.43,689,"0.48382","0.40607","0.40607" +"GO:0006979","response to oxidative stress",27,16,13.35,374,"0.20308","0.40630","0.40630" +"GO:0002253","activation of immune response",21,9,10.38,942,"0.79510","0.40700","0.40700" +"GO:0016311","dephosphorylation",49,26,24.23,540,"0.35712","0.40808","0.40808" +"GO:0048511","rhythmic process",19,10,9.4,666,"0.48053","0.40830","0.40830" +"GO:0042274","ribosomal small subunit biogenesis",12,8,5.93,355,"0.18282","0.40892","0.40892" +"GO:0006367","transcription initiation from RNA polyme...",16,8,7.91,756,"0.58105","0.41215","0.41215" +"GO:0030162","regulation of proteolysis",36,21,17.8,344,"0.18264","0.41270","0.41270" +"GO:0045010","actin nucleation",13,6,6.43,866,"0.69594","0.41405","0.41405" +"GO:0032990","cell part morphogenesis",38,21,18.79,480,"0.28836","0.41529","0.41529" +"GO:0051347","positive regulation of transferase activ...",19,12,9.4,328,"0.16634","0.41531","0.41531" +"GO:0051253","negative regulation of RNA metabolic pro...",88,47,43.52,431,"0.25877","0.41532","0.41532" +"GO:0065007","biological regulation",1061,538,524.66,294,"0.15372","0.22323","0.41541" +"GO:0048667","cell morphogenesis involved in neuron di...",36,20,17.8,474,"0.28450","0.41558","0.41558" +"GO:0198738","cell-cell signaling by wnt",41,20,20.27,770,"0.59590","0.41649","0.41649" +"GO:1905114","cell surface receptor signaling pathway ...",41,20,20.27,771,"0.59590","0.41649","0.41649" +"GO:0050877","nervous system process",47,22,23.24,863,"0.69550","0.41671","0.41671" +"GO:0051648","vesicle localization",13,6,6.43,867,"0.69594","0.42010","0.42010" +"GO:0016458","gene silencing",23,13,11.37,513,"0.31877","0.42158","0.42158" +"GO:0030258","lipid modification",13,8,6.43,463,"0.27634","0.42373","0.42373" +"GO:1902850","microtubule cytoskeleton organization in...",10,4,4.94,966,"0.81941","0.42417","0.42417" +"GO:0016055","Wnt signaling pathway",40,20,19.78,725,"0.53521","0.42562","0.42562" +"GO:0051099","positive regulation of binding",11,6,5.44,705,"0.48507","0.42577","0.42577" +"GO:0090066","regulation of anatomical structure size",33,18,16.32,531,"0.33955","0.42679","0.42679" +"GO:0046530","photoreceptor cell differentiation",19,12,9.4,329,"0.16634","0.42820","0.42820" +"GO:0060041","retina development in camera-type eye",19,12,9.4,330,"0.16634","0.42820","0.42820" +"GO:0071310","cellular response to organic substance",104,55,51.43,453,"0.26933","0.42868","0.42868" +"GO:0009895","negative regulation of catabolic process",15,9,7.42,477,"0.28810","0.43082","0.43082" +"GO:0051091","positive regulation of DNA-binding trans...",11,7,5.44,442,"0.26169","0.43166","0.43166" +"GO:0010558","negative regulation of macromolecule bio...",94,50,46.48,448,"0.26309","0.43216","0.43216" +"GO:0007444","imaginal disc development",20,12,9.89,409,"0.23526","0.43363","0.43363" +"GO:0001558","regulation of cell growth",23,14,11.37,359,"0.18669","0.43489","0.43489" +"GO:0051246","regulation of protein metabolic process",153,81,75.66,379,"0.20989","0.10865","0.43648" +"GO:0052547","regulation of peptidase activity",14,8,6.92,577,"0.37889","0.43693","0.43693" +"GO:0052548","regulation of endopeptidase activity",14,8,6.92,578,"0.37889","0.43693","0.43693" +"GO:0070848","response to growth factor",33,18,16.32,532,"0.33955","0.44119","0.44119" +"GO:0032535","regulation of cellular component size",29,15,14.34,650,"0.47602","0.44139","0.44139" +"GO:0097305","response to alcohol",15,8,7.42,680,"0.48266","0.44154","0.44154" +"GO:0030833","regulation of actin filament polymerizat...",20,10,9.89,744,"0.56886","0.44236","0.44236" +"GO:1901605","alpha-amino acid metabolic process",15,4,7.42,1151,"0.98077","0.44310","0.44310" +"GO:0031328","positive regulation of cellular biosynth...",73,39,36.1,473,"0.28430","0.44418","0.44418" +"GO:0006352","DNA-templated transcription, initiation",34,18,16.81,611,"0.40621","0.44495","0.44495" +"GO:0034097","response to cytokine",23,13,11.37,514,"0.31877","0.44602","0.44602" +"GO:0000003","reproduction",112,60,55.38,381,"0.21329","0.44668","0.44668" +"GO:0007283","spermatogenesis",32,17,15.82,606,"0.40494","0.44892","0.44892" +"GO:0006403","RNA localization",27,13,13.35,807,"0.62847","0.44953","0.44953" +"GO:0009966","regulation of signal transduction",149,75,73.68,630,"0.44487","0.44982","0.44982" +"GO:0071559","response to transforming growth factor b...",19,9,9.4,834,"0.65910","0.45037","0.45037" +"GO:0071560","cellular response to transforming growth...",19,9,9.4,835,"0.65910","0.45037","0.45037" +"GO:1902679","negative regulation of RNA biosynthetic ...",87,46,43.02,486,"0.29442","0.45304","0.45304" +"GO:1903507","negative regulation of nucleic acid-temp...",87,46,43.02,487,"0.29442","0.45304","0.45304" +"GO:0006974","cellular response to DNA damage stimulus",138,84,68.24,37,"0.00372","3.7e-05","0.45458" +"GO:1901652","response to peptide",12,6,5.93,777,"0.59804","0.45766","0.45766" +"GO:0032504","multicellular organism reproduction",67,37,33.13,371,"0.20222","0.45937","0.45937" +"GO:0046578","regulation of Ras protein signal transdu...",24,14,11.87,427,"0.25192","0.46159","0.46159" +"GO:0007219","Notch signaling pathway",17,9,8.41,673,"0.48156","0.46272","0.46272" +"GO:0007600","sensory perception",28,13,13.85,862,"0.69488","0.46374","0.46374" +"GO:0050678","regulation of epithelial cell proliferat...",11,6,5.44,706,"0.48507","0.46938","0.46938" +"GO:0042273","ribosomal large subunit biogenesis",11,7,5.44,443,"0.26169","0.47416","0.47416" +"GO:0099402","plant organ development",12,6,5.93,778,"0.59804","0.47500","0.47500" +"GO:0007281","germ cell development",44,25,21.76,372,"0.20227","0.47535","0.47535" +"GO:0071363","cellular response to growth factor stimu...",30,16,14.83,604,"0.40350","0.47567","0.47567" +"GO:0051168","nuclear export",20,8,9.89,1003,"0.85846","0.47625","0.47625" +"GO:0006475","internal protein amino acid acetylation",24,13,11.87,597,"0.39778","0.47850","0.47850" +"GO:0018393","internal peptidyl-lysine acetylation",24,13,11.87,598,"0.39778","0.47850","0.47850" +"GO:0018394","peptidyl-lysine acetylation",24,13,11.87,599,"0.39778","0.47850","0.47850" +"GO:0006816","calcium ion transport",12,7,5.93,567,"0.37210","0.48036","0.48036" +"GO:1901654","response to ketone",10,6,4.94,551,"0.36322","0.48328","0.48328" +"GO:0002790","peptide secretion",13,7,6.43,690,"0.48382","0.48342","0.48342" +"GO:0009306","protein secretion",13,7,6.43,691,"0.48382","0.48342","0.48342" +"GO:1901361","organic cyclic compound catabolic proces...",54,30,26.7,393,"0.22094","0.48343","0.48343" +"GO:0051258","protein polymerization",33,18,16.32,533,"0.33955","0.48374","0.48374" +"GO:0009266","response to temperature stimulus",27,16,13.35,375,"0.20308","0.48492","0.48492" +"GO:0023051","regulation of signaling",158,79,78.13,649,"0.47569","0.48518","0.48518" +"GO:0043065","positive regulation of apoptotic process",23,13,11.37,515,"0.31877","0.48743","0.48743" +"GO:0048872","homeostasis of number of cells",13,8,6.43,464,"0.27634","0.49120","0.49120" +"GO:0032270","positive regulation of cellular protein ...",73,46,36.1,65,"0.01254","0.03398","0.49198" +"GO:0045892","negative regulation of transcription, DN...",86,45,42.53,526,"0.33259","0.49237","0.49237" +"GO:0001101","response to acid chemical",14,7,6.92,764,"0.58874","0.49406","0.49406" +"GO:0007417","central nervous system development",53,30,26.21,340,"0.18050","0.49470","0.49470" +"GO:0031399","regulation of protein modification proce...",96,55,47.47,173,"0.07178","0.16176","0.49550" +"GO:0072358","cardiovascular system development",22,13,10.88,420,"0.24412","0.49550","0.49550" +"GO:0022414","reproductive process",107,57,52.91,413,"0.23933","0.50070","0.50070" +"GO:0031331","positive regulation of cellular cataboli...",18,11,8.9,401,"0.22509","0.50199","0.50199" +"GO:0006402","mRNA catabolic process",33,19,16.32,397,"0.22248","0.50301","0.50301" +"GO:0060249","anatomical structure homeostasis",24,14,11.87,428,"0.25192","0.50413","0.50413" +"GO:0022618","ribonucleoprotein complex assembly",32,17,15.82,607,"0.40494","0.50470","0.50470" +"GO:0071826","ribonucleoprotein complex subunit organi...",32,17,15.82,608,"0.40494","0.50470","0.50470" +"GO:0048583","regulation of response to stimulus",199,102,98.4,517,"0.32398","0.50699","0.50699" +"GO:1901362","organic cyclic compound biosynthetic pro...",527,278,260.6,130,"0.04981","0.09746","0.50730" +"GO:0016567","protein ubiquitination",78,52,38.57,27,"0.00138","0.00656","0.50855" +"GO:0007420","brain development",38,22,18.79,362,"0.18805","0.50908","0.50908" +"GO:0060322","head development",38,22,18.79,363,"0.18805","0.50908","0.50908" +"GO:0045926","negative regulation of growth",18,11,8.9,402,"0.22509","0.50963","0.50963" +"GO:0001932","regulation of protein phosphorylation",54,30,26.7,394,"0.22094","0.50981","0.50981" +"GO:0034660","ncRNA metabolic process",129,66,63.79,574,"0.37867","0.25500","0.50998" +"GO:0006914","autophagy",43,23,21.26,537,"0.35190","0.51208","0.51208" +"GO:0061919","process utilizing autophagic mechanism",43,23,21.26,538,"0.35190","0.51208","0.51208" +"GO:0008064","regulation of actin polymerization or de...",21,10,10.38,828,"0.65005","0.51287","0.51287" +"GO:0030041","actin filament polymerization",21,11,10.38,664,"0.47955","0.51287","0.51287" +"GO:0030832","regulation of actin filament length",21,10,10.38,829,"0.65005","0.51287","0.51287" +"GO:0007399","nervous system development",131,70,64.78,368,"0.19868","0.51619","0.51619" +"GO:0030155","regulation of cell adhesion",16,9,7.91,582,"0.38426","0.51909","0.51909" +"GO:0009199","ribonucleoside triphosphate metabolic pr...",11,6,5.44,707,"0.48507","0.51972","0.51972" +"GO:0001822","kidney development",16,10,7.91,390,"0.21330","0.52113","0.52113" +"GO:0001745","compound eye morphogenesis",18,11,8.9,403,"0.22509","0.52114","0.52114" +"GO:0016072","rRNA metabolic process",49,34,24.23,36,"0.00348","0.00103","0.52125" +"GO:0009408","response to heat",24,14,11.87,429,"0.25192","0.52538","0.52538" +"GO:0000165","MAPK cascade",24,13,11.87,600,"0.39778","0.52576","0.52576" +"GO:0023014","signal transduction by protein phosphory...",24,13,11.87,601,"0.39778","0.52576","0.52576" +"GO:0043062","extracellular structure organization",19,11,9.4,503,"0.30588","0.52603","0.52603" +"GO:0042147","retrograde transport, endosome to Golgi",13,8,6.43,465,"0.27634","0.52692","0.52692" +"GO:0046649","lymphocyte activation",15,8,7.42,681,"0.48266","0.52743","0.52743" +"GO:0030900","forebrain development",15,9,7.42,478,"0.28810","0.52931","0.52931" +"GO:0032273","positive regulation of protein polymeriz...",18,9,8.9,750,"0.57452","0.52960","0.52960" +"GO:0048609","multicellular organismal reproductive pr...",66,36,32.64,412,"0.23769","0.53044","0.53044" +"GO:0048863","stem cell differentiation",22,9,10.88,987,"0.84580","0.53136","0.53136" +"GO:0006952","defense response",50,24,24.72,819,"0.63637","0.53296","0.53296" +"GO:0002066","columnar/cuboidal epithelial cell develo...",19,10,9.4,667,"0.48053","0.53313","0.53313" +"GO:0045934","negative regulation of nucleobase-contai...",93,49,45.99,495,"0.29791","0.53586","0.53586" +"GO:0009451","RNA modification",50,25,24.72,724,"0.52533","0.53647","0.53647" +"GO:0032970","regulation of actin filament-based proce...",29,13,14.34,917,"0.75359","0.53939","0.53939" +"GO:1901699","cellular response to nitrogen compound",16,8,7.91,757,"0.58105","0.53978","0.53978" +"GO:0022613","ribonucleoprotein complex biogenesis",89,56,44.01,46,"0.00643","0.00738","0.54132" +"GO:0034622","cellular protein-containing complex asse...",107,54,52.91,631,"0.45360","0.54352","0.54352" +"GO:0062012","regulation of small molecule metabolic p...",11,6,5.44,708,"0.48507","0.54469","0.54469" +"GO:0030154","cell differentiation",196,102,96.92,424,"0.24824","0.54794","0.54794" +"GO:0032446","protein modification by small protein co...",87,54,43.02,62,"0.01094","0.02536","0.54870" +"GO:1903827","regulation of cellular protein localizat...",34,19,16.81,469,"0.28030","0.54942","0.54942" +"GO:0033993","response to lipid",49,24,24.23,762,"0.58307","0.55004","0.55004" +"GO:0043068","positive regulation of programmed cell d...",25,14,12.36,519,"0.32398","0.55023","0.55023" +"GO:0044260","cellular macromolecule metabolic process",1195,635,590.92,17,"0.00032","0.00080","0.55127" +"GO:0050793","regulation of developmental process",123,66,60.82,366,"0.19382","0.55160","0.55160" +"GO:0008284","positive regulation of cell proliferatio...",27,15,13.35,522,"0.32857","0.55200","0.55200" +"GO:0023052","signaling",411,201,203.24,799,"0.61552","0.55277","0.55277" +"GO:0034329","cell junction assembly",15,7,7.42,846,"0.68157","0.55360","0.55360" +"GO:0043281","regulation of cysteine-type endopeptidas...",11,6,5.44,709,"0.48507","0.55448","0.55448" +"GO:0009653","anatomical structure morphogenesis",164,87,81.1,364,"0.19176","0.55652","0.55652" +"GO:0046486","glycerolipid metabolic process",31,16,15.33,647,"0.47521","0.55766","0.55766" +"GO:0044267","cellular protein metabolic process",647,338,319.94,151,"0.05589","0.00713","0.55899" +"GO:0051656","establishment of organelle localization",27,12,13.35,922,"0.76262","0.55944","0.55944" +"GO:0006414","translational elongation",12,3,5.93,1142,"0.97910","0.55958","0.55958" +"GO:0090596","sensory organ morphogenesis",38,21,18.79,481,"0.28836","0.55977","0.55977" +"GO:0043414","macromolecule methylation",51,28,25.22,435,"0.25954","0.09754","0.56008" +"GO:0042594","response to starvation",15,9,7.42,479,"0.28810","0.56131","0.56131" +"GO:0051051","negative regulation of transport",11,7,5.44,444,"0.26169","0.56154","0.56154" +"GO:0045017","glycerolipid biosynthetic process",16,8,7.91,758,"0.58105","0.56155","0.56155" +"GO:0032259","methylation",58,32,28.68,404,"0.22709","0.14790","0.56237" +"GO:0010646","regulation of cell communication",156,78,77.14,654,"0.47627","0.56463","0.56463" +"GO:0032268","regulation of cellular protein metabolic...",143,78,70.71,254,"0.12150","0.15614","0.56499" +"GO:0030111","regulation of Wnt signaling pathway",25,11,12.36,925,"0.77246","0.56633","0.56633" +"GO:0008356","asymmetric cell division",10,6,4.94,552,"0.36322","0.56735","0.56735" +"GO:0048856","anatomical structure development",317,163,156.75,423,"0.24565","0.56769","0.56769" +"GO:0031667","response to nutrient levels",23,13,11.37,516,"0.31877","0.56790","0.56790" +"GO:0070647","protein modification by small protein co...",117,73,57.86,31,"0.00272","0.00179","0.56848" +"GO:0045785","positive regulation of cell adhesion",10,6,4.94,553,"0.36322","0.56968","0.56968" +"GO:0006913","nucleocytoplasmic transport",42,25,20.77,255,"0.12274","0.05917","0.57001" +"GO:0001510","RNA methylation",20,8,9.89,1004,"0.85846","0.57050","0.57050" +"GO:0051260","protein homooligomerization",11,7,5.44,445,"0.26169","0.57069","0.57069" +"GO:0051028","mRNA transport",13,6,6.43,868,"0.69594","0.57658","0.57658" +"GO:1901796","regulation of signal transduction by p53...",12,7,5.93,568,"0.37210","0.57817","0.57817" +"GO:0007165","signal transduction",386,188,190.87,825,"0.64493","0.57906","0.57906" +"GO:0048589","developmental growth",52,28,25.71,505,"0.30846","0.57965","0.57965" +"GO:0002683","negative regulation of immune system pro...",11,7,5.44,446,"0.26169","0.58291","0.58291" +"GO:0015718","monocarboxylic acid transport",11,6,5.44,710,"0.48507","0.58332","0.58332" +"GO:0010467","gene expression",819,420,404.99,235,"0.11089","0.06751","0.58363" +"GO:0006650","glycerophospholipid metabolic process",29,15,14.34,651,"0.47602","0.58662","0.58662" +"GO:0044262","cellular carbohydrate metabolic process",11,6,5.44,711,"0.48507","0.58736","0.58736" +"GO:0030838","positive regulation of actin filament po...",15,7,7.42,847,"0.68157","0.58915","0.58915" +"GO:0006909","phagocytosis",17,10,8.41,493,"0.29777","0.59213","0.59213" +"GO:0034330","cell junction organization",16,7,7.91,919,"0.75975","0.59255","0.59255" +"GO:0016482","cytosolic transport",22,12,10.88,595,"0.39522","0.59510","0.59510" +"GO:0071214","cellular response to abiotic stimulus",13,8,6.43,466,"0.27634","0.59641","0.59641" +"GO:0104004","cellular response to environmental stimu...",13,8,6.43,467,"0.27634","0.59641","0.59641" +"GO:0006813","potassium ion transport",10,4,4.94,967,"0.81941","0.59766","0.59766" +"GO:0051493","regulation of cytoskeleton organization",34,16,16.81,842,"0.67430","0.59816","0.59816" +"GO:0007167","enzyme linked receptor protein signaling...",49,24,24.23,763,"0.58307","0.60257","0.60257" +"GO:0071396","cellular response to lipid",32,14,15.82,945,"0.79551","0.60357","0.60357" +"GO:0031647","regulation of protein stability",20,10,9.89,745,"0.56886","0.60396","0.60396" +"GO:0022411","cellular component disassembly",39,20,19.29,643,"0.47220","0.60470","0.60470" +"GO:0006400","tRNA modification",25,11,12.36,926,"0.77246","0.60497","0.60497" +"GO:2000116","regulation of cysteine-type endopeptidas...",13,7,6.43,692,"0.48382","0.60563","0.60563" +"GO:0008154","actin polymerization or depolymerization",23,12,11.37,662,"0.47862","0.60760","0.60760" +"GO:0051223","regulation of protein transport",29,15,14.34,652,"0.47602","0.60769","0.60769" +"GO:0090087","regulation of peptide transport",29,15,14.34,653,"0.47602","0.60769","0.60769" +"GO:0051495","positive regulation of cytoskeleton orga...",23,11,11.37,822,"0.64205","0.60866","0.60866" +"GO:0031570","DNA integrity checkpoint",16,8,7.91,759,"0.58105","0.60988","0.60988" +"GO:0019220","regulation of phosphate metabolic proces...",71,37,35.11,560,"0.36890","0.61271","0.61271" +"GO:0009628","response to abiotic stimulus",85,46,42.03,395,"0.22223","0.61293","0.61293" +"GO:0060070","canonical Wnt signaling pathway",23,11,11.37,823,"0.64205","0.61387","0.61387" +"GO:0043009","chordate embryonic development",55,27,27.2,754,"0.57506","0.61444","0.61444" +"GO:0007389","pattern specification process",45,25,22.25,425,"0.24964","0.61523","0.61523" +"GO:0071900","regulation of protein serine/threonine k...",17,9,8.41,674,"0.48156","0.61533","0.61533" +"GO:0006955","immune response",52,26,25.71,723,"0.52363","0.61648","0.61648" +"GO:0030198","extracellular matrix organization",17,10,8.41,494,"0.29777","0.61690","0.61690" +"GO:0048762","mesenchymal cell differentiation",11,5,5.44,884,"0.71344","0.61895","0.61895" +"GO:0043066","negative regulation of apoptotic process",40,22,19.78,484,"0.29191","0.61951","0.61951" +"GO:0051403","stress-activated MAPK cascade",10,6,4.94,554,"0.36322","0.61984","0.61984" +"GO:2000027","regulation of animal organ morphogenesis",16,8,7.91,760,"0.58105","0.62097","0.62097" +"GO:0007292","female gamete generation",32,18,15.82,456,"0.27569","0.62290","0.62290" +"GO:0007154","cell communication",418,204,206.7,816,"0.63343","0.62294","0.62294" +"GO:0043069","negative regulation of programmed cell d...",42,23,20.77,489,"0.29520","0.62348","0.62348" +"GO:0022412","cellular process involved in reproductio...",50,27,24.72,504,"0.30616","0.62397","0.62397" +"GO:0001701","in utero embryonic development",27,14,13.35,655,"0.47685","0.62458","0.62458" +"GO:0031329","regulation of cellular catabolic process",44,24,21.76,496,"0.29824","0.62693","0.62693" +"GO:0030707","ovarian follicle cell development",17,9,8.41,675,"0.48156","0.62866","0.62866" +"GO:0045664","regulation of neuron differentiation",30,16,14.83,605,"0.40350","0.63085","0.63085" +"GO:0045137","development of primary sexual characteri...",18,9,8.9,751,"0.57452","0.63129","0.63129" +"GO:0071407","cellular response to organic cyclic comp...",33,13,16.32,1044,"0.91002","0.63397","0.63397" +"GO:0055114","oxidation-reduction process",94,46,46.48,761,"0.58155","0.63419","0.63419" +"GO:0050767","regulation of neurogenesis",38,21,18.79,482,"0.28836","0.63607","0.63607" +"GO:0098542","defense response to other organism",21,11,10.38,665,"0.47955","0.63718","0.63718" +"GO:0031400","negative regulation of protein modificat...",33,17,16.32,646,"0.47443","0.64065","0.64065" +"GO:0010033","response to organic substance",138,76,68.24,211,"0.10203","0.26175","0.64264" +"GO:0035239","tube morphogenesis",55,30,27.2,452,"0.26520","0.64264","0.64264" +"GO:0045596","negative regulation of cell differentiat...",38,21,18.79,483,"0.28836","0.64387","0.64387" +"GO:0031503","protein-containing complex localization",22,9,10.88,988,"0.84580","0.64564","0.64564" +"GO:0110053","regulation of actin filament organizatio...",23,11,11.37,824,"0.64205","0.64854","0.64854" +"GO:0006493","protein O-linked glycosylation",10,5,4.94,791,"0.60964","0.64868","0.64868" +"GO:0051960","regulation of nervous system development",40,22,19.78,485,"0.29191","0.64880","0.64880" +"GO:0003008","system process",69,32,34.12,909,"0.73846","0.64892","0.64892" +"GO:0050803","regulation of synapse structure or activ...",14,8,6.92,579,"0.37889","0.64927","0.64927" +"GO:0050807","regulation of synapse organization",14,8,6.92,580,"0.37889","0.64927","0.64927" +"GO:0032880","regulation of protein localization",52,28,25.71,506,"0.30846","0.65003","0.65003" +"GO:0032956","regulation of actin cytoskeleton organiz...",27,12,13.35,923,"0.76262","0.65195","0.65195" +"GO:0072594","establishment of protein localization to...",57,24,28.19,1027,"0.89551","0.65272","0.65272" +"GO:0035329","hippo signaling",10,4,4.94,968,"0.81941","0.65303","0.65303" +"GO:0030099","myeloid cell differentiation",12,7,5.93,569,"0.37210","0.65324","0.65324" +"GO:0002065","columnar/cuboidal epithelial cell differ...",25,13,12.36,658,"0.47772","0.65817","0.65817" +"GO:0007265","Ras protein signal transduction",28,14,13.85,732,"0.55185","0.65849","0.65849" +"GO:0007267","cell-cell signaling",69,35,34.12,635,"0.46294","0.65970","0.65970" +"GO:0007623","circadian rhythm",12,6,5.93,779,"0.59804","0.66025","0.66025" +"GO:0030278","regulation of ossification",12,5,5.93,948,"0.79588","0.66104","0.66104" +"GO:0051169","nuclear transport",43,25,21.26,305,"0.15978","0.08037","0.66179" +"GO:0016050","vesicle organization",22,11,10.88,739,"0.56389","0.66572","0.66572" +"GO:0035295","tube development",69,37,34.12,470,"0.28077","0.66644","0.66644" +"GO:0031589","cell-substrate adhesion",14,7,6.92,765,"0.58874","0.66814","0.66814" +"GO:0048666","neuron development",71,38,35.11,472,"0.28258","0.66891","0.66891" +"GO:0006289","nucleotide-excision repair",16,9,7.91,583,"0.38426","0.67177","0.67177" +"GO:0031669","cellular response to nutrient levels",11,6,5.44,712,"0.48507","0.67200","0.67200" +"GO:0043902","positive regulation of multi-organism pr...",11,6,5.44,713,"0.48507","0.67200","0.67200" +"GO:0042325","regulation of phosphorylation",63,33,31.15,559,"0.36559","0.67396","0.67396" +"GO:0043434","response to peptide hormone",11,5,5.44,885,"0.71344","0.67461","0.67461" +"GO:0017145","stem cell division",11,6,5.44,714,"0.48507","0.67502","0.67502" +"GO:0032784","regulation of DNA-templated transcriptio...",12,5,5.93,949,"0.79588","0.67752","0.67752" +"GO:0009891","positive regulation of biosynthetic proc...",77,40,38.08,562,"0.37089","0.67797","0.67797" +"GO:0033157","regulation of intracellular protein tran...",22,12,10.88,596,"0.39522","0.67995","0.67995" +"GO:0060828","regulation of canonical Wnt signaling pa...",18,8,8.9,912,"0.74545","0.68307","0.68307" +"GO:0009991","response to extracellular stimulus",24,13,11.87,602,"0.39778","0.68320","0.68320" +"GO:0009792","embryo development ending in birth or eg...",63,31,31.15,742,"0.56589","0.68345","0.68345" +"GO:0001649","osteoblast differentiation",11,4,5.44,1012,"0.87996","0.68434","0.68434" +"GO:0071166","ribonucleoprotein complex localization",13,5,6.43,994,"0.85834","0.68523","0.68523" +"GO:0071426","ribonucleoprotein complex export from nu...",13,5,6.43,995,"0.85834","0.68523","0.68523" +"GO:0048749","compound eye development",21,12,10.38,510,"0.31280","0.68569","0.68569" +"GO:0034641","cellular nitrogen compound metabolic pro...",1027,532,507.84,100,"0.02934","0.04061","0.68745" +"GO:0032502","developmental process",356,181,176.04,500,"0.30555","0.69019","0.69019" +"GO:0006091","generation of precursor metabolites and ...",11,5,5.44,886,"0.71344","0.69022","0.69022" +"GO:0007264","small GTPase mediated signal transductio...",49,23,24.23,861,"0.69076","0.69134","0.69134" +"GO:0002443","leukocyte mediated immunity",13,7,6.43,693,"0.48382","0.69164","0.69164" +"GO:0051174","regulation of phosphorus metabolic proce...",72,37,35.6,623,"0.41510","0.69183","0.69183" +"GO:0002252","immune effector process",26,14,12.86,603,"0.39997","0.69358","0.69358" +"GO:1901565","organonitrogen compound catabolic proces...",126,72,62.31,126,"0.04646","0.04997","0.69521" +"GO:0043547","positive regulation of GTPase activity",18,10,8.9,588,"0.38861","0.69557","0.69557" +"GO:0006520","cellular amino acid metabolic process",41,13,20.27,1176,"0.99335","0.69696","0.69696" +"GO:0007416","synapse assembly",12,7,5.93,570,"0.37210","0.69714","0.69714" +"GO:0010927","cellular component assembly involved in ...",12,6,5.93,780,"0.59804","0.69714","0.69714" +"GO:0051259","protein complex oligomerization",15,8,7.42,682,"0.48266","0.69862","0.69862" +"GO:0006869","lipid transport",24,9,11.87,1045,"0.91715","0.69865","0.69865" +"GO:0001568","blood vessel development",20,11,9.89,593,"0.39221","0.70048","0.70048" +"GO:0001944","vasculature development",20,11,9.89,594,"0.39221","0.70048","0.70048" +"GO:0048871","multicellular organismal homeostasis",15,8,7.42,683,"0.48266","0.70048","0.70048" +"GO:0007568","aging",21,12,10.38,511,"0.31280","0.70306","0.70306" +"GO:0060562","epithelial tube morphogenesis",44,24,21.76,497,"0.29824","0.70312","0.70312" +"GO:0006415","translational termination",10,2,4.94,1163,"0.98838","0.70462","0.70462" +"GO:0043618","regulation of transcription from RNA pol...",11,5,5.44,887,"0.71344","0.70611","0.70611" +"GO:0043620","regulation of DNA-templated transcriptio...",11,5,5.44,888,"0.71344","0.70611","0.70611" +"GO:0030178","negative regulation of Wnt signaling pat...",16,5,7.91,1110,"0.95825","0.71280","0.71280" +"GO:0031032","actomyosin structure organization",19,10,9.4,668,"0.48053","0.71392","0.71392" +"GO:0008283","cell proliferation",80,42,39.56,523,"0.32973","0.71427","0.71427" +"GO:0009607","response to biotic stimulus",27,13,13.35,808,"0.62847","0.71453","0.71453" +"GO:2000026","regulation of multicellular organismal d...",82,43,40.55,524,"0.33073","0.71703","0.71703" +"GO:0051239","regulation of multicellular organismal p...",118,61,58.35,534,"0.34272","0.71941","0.71941" +"GO:0016577","histone demethylation",13,10,6.43,119,"0.04204","0.02427","0.71944" +"GO:0010876","lipid localization",30,11,14.83,1085,"0.94517","0.72027","0.72027" +"GO:0048477","oogenesis",29,16,14.34,528,"0.33264","0.72089","0.72089" +"GO:0033036","macromolecule localization",255,115,126.1,1073,"0.93688","0.72380","0.72380" +"GO:0014070","response to organic cyclic compound",47,21,23.24,940,"0.78995","0.72411","0.72411" +"GO:0007276","gamete generation",59,30,29.18,637,"0.46577","0.72427","0.72427" +"GO:0009205","purine ribonucleoside triphosphate metab...",10,5,4.94,792,"0.60964","0.72464","0.72464" +"GO:0001933","negative regulation of protein phosphory...",17,9,8.41,676,"0.48156","0.72555","0.72555" +"GO:0009987","cellular process",2140,1062,1058.21,563,"0.37142","0.16298","0.72623" +"GO:0045732","positive regulation of protein catabolic...",15,7,7.42,848,"0.68157","0.72665","0.72665" +"GO:0051726","regulation of cell cycle",91,51,45,248,"0.12017","0.04463","0.72755" +"GO:2001235","positive regulation of apoptotic signali...",10,6,4.94,555,"0.36322","0.72980","0.72980" +"GO:0072001","renal system development",18,10,8.9,589,"0.38861","0.73001","0.73001" +"GO:0051056","regulation of small GTPase mediated sign...",30,15,14.83,728,"0.54853","0.73243","0.73243" +"GO:0001894","tissue homeostasis",13,7,6.43,694,"0.48382","0.73471","0.73471" +"GO:0031098","stress-activated protein kinase signalin...",11,6,5.44,715,"0.48507","0.73581","0.73581" +"GO:0051270","regulation of cellular component movemen...",33,15,16.32,908,"0.73751","0.73586","0.73586" +"GO:0010243","response to organonitrogen compound",36,23,17.8,152,"0.05690","0.08047","0.73697" +"GO:0046474","glycerophospholipid biosynthetic process",15,7,7.42,849,"0.68157","0.73711","0.73711" +"GO:0042462","eye photoreceptor cell development",10,6,4.94,556,"0.36322","0.73814","0.73814" +"GO:0060548","negative regulation of cell death",48,25,23.74,617,"0.41184","0.74053","0.74053" +"GO:0003012","muscle system process",14,4,6.92,1126,"0.96886","0.74192","0.74192" +"GO:0030855","epithelial cell differentiation",41,22,20.27,536,"0.34985","0.74415","0.74415" +"GO:0061138","morphogenesis of a branching epithelium",12,7,5.93,571,"0.37210","0.74440","0.74440" +"GO:0048468","cell development",134,69,66.26,535,"0.34569","0.74611","0.74611" +"GO:0030902","hindbrain development",11,6,5.44,716,"0.48507","0.74700","0.74700" +"GO:0006935","chemotaxis",29,16,14.34,529,"0.33264","0.74701","0.74701" +"GO:0044057","regulation of system process",17,8,8.41,839,"0.66948","0.74790","0.74790" +"GO:0051704","multi-organism process",117,54,57.86,941,"0.79493","0.74893","0.74893" +"GO:0044237","cellular metabolic process",1603,811,792.67,180,"0.07722","0.06923","0.74923" +"GO:0044703","multi-organism reproductive process",73,36,36.1,735,"0.55623","0.74954","0.74954" +"GO:0008406","gonad development",16,9,7.91,584,"0.38426","0.74970","0.74970" +"GO:0033365","protein localization to organelle",78,33,38.57,1049,"0.91884","0.75014","0.75014" +"GO:0001503","ossification",15,7,7.42,850,"0.68157","0.75185","0.75185" +"GO:0048513","animal organ development",184,93,90.99,613,"0.40846","0.75286","0.75286" +"GO:0070201","regulation of establishment of protein l...",30,15,14.83,729,"0.54853","0.75517","0.75517" +"GO:0001667","ameboidal-type cell migration",18,7,8.9,1008,"0.87226","0.75552","0.75552" +"GO:0060491","regulation of cell projection assembly",18,6,8.9,1086,"0.94760","0.75552","0.75552" +"GO:0120032","regulation of plasma membrane bounded ce...",18,6,8.9,1087,"0.94760","0.75552","0.75552" +"GO:0031344","regulation of cell projection organizati...",35,16,17.31,901,"0.73032","0.75765","0.75765" +"GO:0120035","regulation of plasma membrane bounded ce...",35,16,17.31,902,"0.73032","0.75765","0.75765" +"GO:0022604","regulation of cell morphogenesis",16,9,7.91,585,"0.38426","0.75834","0.75834" +"GO:0050896","response to stimulus",670,335,331.31,587,"0.38763","0.64395","0.76191" +"GO:1902115","regulation of organelle assembly",14,6,6.92,929,"0.77633","0.76271","0.76271" +"GO:0006405","RNA export from nucleus",17,6,8.41,1057,"0.92249","0.76441","0.76441" +"GO:0006807","nitrogen compound metabolic process",1584,810,783.28,79,"0.01839","0.01705","0.76464" +"GO:0050673","epithelial cell proliferation",13,6,6.43,869,"0.69594","0.76557","0.76557" +"GO:0065003","protein-containing complex assembly",128,64,63.3,718,"0.48508","0.76699","0.76699" +"GO:0021700","developmental maturation",21,9,10.38,943,"0.79510","0.76837","0.76837" +"GO:1902904","negative regulation of supramolecular fi...",13,6,6.43,870,"0.69594","0.77028","0.77028" +"GO:0009725","response to hormone",57,29,28.19,639,"0.46636","0.77056","0.77056" +"GO:1903320","regulation of protein modification by sm...",21,16,10.38,64,"0.01141","0.01621","0.77231" +"GO:0051093","negative regulation of developmental pro...",47,25,23.24,539,"0.35552","0.77601","0.77601" +"GO:0090090","negative regulation of canonical Wnt sig...",12,3,5.93,1143,"0.97910","0.77606","0.77606" +"GO:0071383","cellular response to steroid hormone sti...",25,10,12.36,1010,"0.87529","0.77656","0.77656" +"GO:0002376","immune system process",86,44,42.53,625,"0.41540","0.77713","0.77713" +"GO:0001754","eye photoreceptor cell differentiation",16,9,7.91,586,"0.38426","0.78114","0.78114" +"GO:0051128","regulation of cellular component organiz...",158,80,78.13,616,"0.41098","0.78198","0.78198" +"GO:0007368","determination of left/right symmetry",14,4,6.92,1127,"0.96886","0.78370","0.78370" +"GO:0009799","specification of symmetry",14,4,6.92,1128,"0.96886","0.78370","0.78370" +"GO:0009855","determination of bilateral symmetry",14,4,6.92,1129,"0.96886","0.78370","0.78370" +"GO:0051494","negative regulation of cytoskeleton orga...",10,4,4.94,969,"0.81941","0.78569","0.78569" +"GO:0007169","transmembrane receptor protein tyrosine ...",24,8,11.87,1115,"0.96463","0.78671","0.78671" +"GO:0045944","positive regulation of transcription by ...",42,22,20.77,614,"0.40997","0.78860","0.78860" +"GO:0007033","vacuole organization",19,10,9.4,669,"0.48053","0.78895","0.78895" +"GO:0033673","negative regulation of kinase activity",10,4,4.94,970,"0.81941","0.78909","0.78909" +"GO:0051348","negative regulation of transferase activ...",10,4,4.94,971,"0.81941","0.78909","0.78909" +"GO:0032870","cellular response to hormone stimulus",37,17,18.3,900,"0.72359","0.79011","0.79011" +"GO:0061572","actin filament bundle organization",11,6,5.44,717,"0.48507","0.79196","0.79196" +"GO:0042176","regulation of protein catabolic process",30,15,14.83,730,"0.54853","0.79225","0.79225" +"GO:0016331","morphogenesis of embryonic epithelium",13,5,6.43,996,"0.85834","0.79447","0.79447" +"GO:1902905","positive regulation of supramolecular fi...",22,11,10.88,740,"0.56389","0.79545","0.79545" +"GO:0009612","response to mechanical stimulus",12,6,5.93,781,"0.59804","0.79619","0.79619" +"GO:0008104","protein localization",216,99,106.81,1020,"0.88113","0.79688","0.79688" +"GO:0043933","protein-containing complex subunit organ...",155,78,76.65,629,"0.44372","0.79705","0.79705" +"GO:0000122","negative regulation of transcription by ...",44,19,21.76,984,"0.83903","0.79839","0.79839" +"GO:0016197","endosomal transport",26,12,12.86,877,"0.70300","0.79858","0.79858" +"GO:0072657","protein localization to membrane",36,11,17.8,1177,"0.99349","0.79937","0.79937" +"GO:0051640","organelle localization",42,18,20.77,986,"0.84542","0.80019","0.80019" +"GO:0009267","cellular response to starvation",10,5,4.94,793,"0.60964","0.80050","0.80050" +"GO:0001775","cell activation",24,12,11.87,737,"0.55946","0.80240","0.80240" +"GO:0048514","blood vessel morphogenesis",19,10,9.4,670,"0.48053","0.80370","0.80370" +"GO:0009790","embryo development",105,54,51.92,573,"0.37658","0.80417","0.80417" +"GO:0032386","regulation of intracellular transport",30,15,14.83,731,"0.54853","0.80428","0.80428" +"GO:0007010","cytoskeleton organization",102,51,50.44,719,"0.49489","0.80484","0.80484" +"GO:0048646","anatomical structure formation involved ...",71,37,35.11,561,"0.36890","0.80632","0.80632" +"GO:0043207","response to external biotic stimulus",25,12,12.36,817,"0.63491","0.80710","0.80710" +"GO:0051707","response to other organism",25,12,12.36,818,"0.63491","0.80710","0.80710" +"GO:0003143","embryonic heart tube morphogenesis",10,2,4.94,1164,"0.98838","0.80969","0.80969" +"GO:0061371","determination of heart left/right asymme...",10,2,4.94,1165,"0.98838","0.80969","0.80969" +"GO:0006644","phospholipid metabolic process",46,21,22.75,916,"0.74775","0.81034","0.81034" +"GO:0098660","inorganic ion transmembrane transport",19,9,9.4,836,"0.65910","0.81063","0.81063" +"GO:0098662","inorganic cation transmembrane transport",19,9,9.4,837,"0.65910","0.81063","0.81063" +"GO:0016049","cell growth",32,17,15.82,609,"0.40494","0.81313","0.81313" +"GO:0061061","muscle structure development",42,16,20.77,1094,"0.95007","0.81651","0.81651" +"GO:0042326","negative regulation of phosphorylation",22,11,10.88,741,"0.56389","0.81738","0.81738" +"GO:0032501","multicellular organismal process",350,176,173.07,590,"0.39020","0.81755","0.81755" +"GO:0001751","compound eye photoreceptor cell differen...",13,7,6.43,695,"0.48382","0.82077","0.82077" +"GO:0002064","epithelial cell development",26,13,12.86,734,"0.55547","0.82248","0.82248" +"GO:0010821","regulation of mitochondrion organization",18,8,8.9,913,"0.74545","0.82303","0.82303" +"GO:0043900","regulation of multi-organism process",18,9,8.9,752,"0.57452","0.82303","0.82303" +"GO:0055065","metal ion homeostasis",17,7,8.41,982,"0.82295","0.82406","0.82406" +"GO:1901698","response to nitrogen compound",39,24,19.29,198,"0.08662","0.16485","0.82424" +"GO:0097164","ammonium ion metabolic process",10,1,4.94,1198,"0.99893","0.82677","0.82677" +"GO:0035265","organ growth",10,3,4.94,1079,"0.94168","0.82714","0.82714" +"GO:0060429","epithelium development",86,44,42.53,626,"0.41540","0.82722","0.82722" +"GO:0031668","cellular response to extracellular stimu...",12,6,5.93,782,"0.59804","0.82728","0.82728" +"GO:0016236","macroautophagy",20,10,9.89,746,"0.56886","0.82779","0.82779" +"GO:0098609","cell-cell adhesion",35,16,17.31,903,"0.73032","0.82861","0.82861" +"GO:0050808","synapse organization",25,13,12.36,659,"0.47772","0.82870","0.82870" +"GO:0071695","anatomical structure maturation",11,3,5.44,1116,"0.96482","0.82987","0.82987" +"GO:0051241","negative regulation of multicellular org...",44,23,21.76,615,"0.41067","0.83036","0.83036" +"GO:0016477","cell migration",51,23,25.22,937,"0.77885","0.83122","0.83122" +"GO:0044403","symbiont process",17,6,8.41,1058,"0.92249","0.83205","0.83205" +"GO:0044419","interspecies interaction between organis...",17,6,8.41,1059,"0.92249","0.83205","0.83205" +"GO:0009880","embryonic pattern specification",17,8,8.41,840,"0.66948","0.83251","0.83251" +"GO:0099173","postsynapse organization",10,5,4.94,794,"0.60964","0.83287","0.83287" +"GO:0001655","urogenital system development",21,10,10.38,830,"0.65005","0.83296","0.83296" +"GO:0006457","protein folding",41,18,20.27,963,"0.80861","0.83505","0.83505" +"GO:0070838","divalent metal ion transport",15,7,7.42,851,"0.68157","0.83680","0.83680" +"GO:0072511","divalent inorganic cation transport",15,7,7.42,852,"0.68157","0.83680","0.83680" +"GO:0005996","monosaccharide metabolic process",11,5,5.44,889,"0.71344","0.83703","0.83703" +"GO:0019318","hexose metabolic process",11,5,5.44,890,"0.71344","0.83703","0.83703" +"GO:0071840","cellular component organization or bioge...",590,326,291.75,21,"0.00080","0.00122","0.83747" +"GO:0055001","muscle cell development",11,5,5.44,891,"0.71344","0.83829","0.83829" +"GO:0007275","multicellular organism development",293,147,144.89,627,"0.42069","0.83878","0.83878" +"GO:0098657","import into cell",38,16,18.79,1005,"0.85901","0.84077","0.84077" +"GO:0048584","positive regulation of response to stimu...",88,45,43.52,624,"0.41539","0.84163","0.84163" +"GO:0051235","maintenance of location",14,4,6.92,1130,"0.96886","0.84172","0.84172" +"GO:0006753","nucleoside phosphate metabolic process",40,15,19.78,1099,"0.95448","0.84193","0.84193" +"GO:0045597","positive regulation of cell differentiat...",37,15,18.3,1028,"0.89599","0.84208","0.84208" +"GO:0070646","protein modification by small protein re...",37,24,18.3,117,"0.04185","0.01834","0.84226" +"GO:0048869","cellular developmental process",203,102,100.38,628,"0.43505","0.84241","0.84241" +"GO:0006482","protein demethylation",14,10,6.92,191,"0.08267","0.04385","0.84373" +"GO:0008214","protein dealkylation",14,10,6.92,192,"0.08267","0.04385","0.84373" +"GO:0070988","demethylation",14,10,6.92,193,"0.08267","0.04385","0.84373" +"GO:0048638","regulation of developmental growth",17,9,8.41,677,"0.48156","0.84610","0.84610" +"GO:0055085","transmembrane transport",132,63,65.27,860,"0.68966","0.84698","0.84698" +"GO:0000902","cell morphogenesis",62,32,30.66,621,"0.41431","0.84772","0.84772" +"GO:0000209","protein polyubiquitination",29,21,14.34,58,"0.00999","0.02026","0.84784" +"GO:1902903","regulation of supramolecular fiber organ...",31,15,15.33,801,"0.61727","0.84789","0.84789" +"GO:0010638","positive regulation of organelle organiz...",60,29,29.67,803,"0.61971","0.84900","0.84900" +"GO:0051336","regulation of hydrolase activity",58,30,28.68,619,"0.41381","0.84916","0.84916" +"GO:0043086","negative regulation of catalytic activit...",25,11,12.36,927,"0.77246","0.84955","0.84955" +"GO:0048878","chemical homeostasis",28,9,13.85,1150,"0.97997","0.85017","0.85017" +"GO:0060485","mesenchyme development",14,6,6.92,930,"0.77633","0.85019","0.85019" +"GO:0010822","positive regulation of mitochondrion org...",15,5,7.42,1067,"0.93609","0.85035","0.85035" +"GO:0003006","developmental process involved in reprod...",78,39,38.57,720,"0.50630","0.85084","0.85084" +"GO:0051046","regulation of secretion",13,5,6.43,997,"0.85834","0.85107","0.85107" +"GO:0071496","cellular response to external stimulus",13,6,6.43,871,"0.69594","0.85220","0.85220" +"GO:1901575","organic substance catabolic process",191,104,94.45,199,"0.08683","0.23076","0.85263" +"GO:0042592","homeostatic process",82,43,40.55,525,"0.33073","0.85292","0.85292" +"GO:0009755","hormone-mediated signaling pathway",22,9,10.88,989,"0.84580","0.85296","0.85296" +"GO:0009888","tissue development",123,61,60.82,722,"0.52362","0.85615","0.85615" +"GO:0009117","nucleotide metabolic process",38,13,18.79,1153,"0.98090","0.85717","0.85717" +"GO:0010817","regulation of hormone levels",14,4,6.92,1131,"0.96886","0.85935","0.85935" +"GO:0009116","nucleoside metabolic process",11,4,5.44,1013,"0.87996","0.85936","0.85936" +"GO:0009123","nucleoside monophosphate metabolic proce...",14,5,6.92,1035,"0.90390","0.85964","0.85964" +"GO:0031047","gene silencing by RNA",14,6,6.92,931,"0.77633","0.85964","0.85964" +"GO:0043244","regulation of protein complex disassembl...",12,5,5.93,950,"0.79588","0.86031","0.86031" +"GO:0006836","neurotransmitter transport",14,7,6.92,766,"0.58874","0.86136","0.86136" +"GO:0060541","respiratory system development",19,10,9.4,671,"0.48053","0.86389","0.86389" +"GO:0009144","purine nucleoside triphosphate metabolic...",11,5,5.44,892,"0.71344","0.86443","0.86443" +"GO:0032989","cellular component morphogenesis",73,37,36.1,634,"0.46186","0.86631","0.86631" +"GO:0010563","negative regulation of phosphorus metabo...",27,13,13.35,809,"0.62847","0.86638","0.86638" +"GO:0043087","regulation of GTPase activity",27,13,13.35,810,"0.62847","0.86638","0.86638" +"GO:0045936","negative regulation of phosphate metabol...",27,13,13.35,811,"0.62847","0.86638","0.86638" +"GO:0006887","exocytosis",20,9,9.89,905,"0.73293","0.86649","0.86649" +"GO:0002521","leukocyte differentiation",11,5,5.44,893,"0.71344","0.86709","0.86709" +"GO:1901657","glycosyl compound metabolic process",12,5,5.93,951,"0.79588","0.86760","0.86760" +"GO:0031175","neuron projection development",53,27,26.21,640,"0.46757","0.86776","0.86776" +"GO:0009161","ribonucleoside monophosphate metabolic p...",13,4,6.43,1096,"0.95030","0.86902","0.86902" +"GO:0016032","viral process",13,5,6.43,998,"0.85834","0.86902","0.86902" +"GO:0007498","mesoderm development",13,5,6.43,999,"0.85834","0.87154","0.87154" +"GO:0032101","regulation of response to external stimu...",13,7,6.43,696,"0.48382","0.87154","0.87154" +"GO:0040013","negative regulation of locomotion",13,6,6.43,872,"0.69594","0.87221","0.87221" +"GO:0051271","negative regulation of cellular componen...",13,6,6.43,873,"0.69594","0.87221","0.87221" +"GO:2000146","negative regulation of cell motility",13,6,6.43,874,"0.69594","0.87221","0.87221" +"GO:0006875","cellular metal ion homeostasis",12,4,5.93,1050,"0.92200","0.87255","0.87255" +"GO:0051222","positive regulation of protein transport",19,6,9.4,1121,"0.96514","0.87276","0.87276" +"GO:1904951","positive regulation of establishment of ...",19,6,9.4,1122,"0.96514","0.87276","0.87276" +"GO:0045595","regulation of cell differentiation",77,39,38.08,633,"0.46081","0.87373","0.87373" +"GO:0034762","regulation of transmembrane transport",10,4,4.94,972,"0.81941","0.87438","0.87438" +"GO:0010506","regulation of autophagy",13,6,6.43,875,"0.69594","0.87538","0.87538" +"GO:0006839","mitochondrial transport",34,12,16.81,1125,"0.96758","0.87573","0.87573" +"GO:0048518","positive regulation of biological proces...",307,158,151.81,422,"0.24473","0.62061","0.87626" +"GO:0051017","actin filament bundle assembly",10,5,4.94,795,"0.60964","0.87656","0.87656" +"GO:0023061","signal release",14,6,6.92,932,"0.77633","0.87664","0.87664" +"GO:0032984","protein-containing complex disassembly",31,15,15.33,802,"0.61727","0.87671","0.87671" +"GO:0002009","morphogenesis of an epithelium",54,28,26.7,618,"0.41315","0.87697","0.87697" +"GO:0043401","steroid hormone mediated signaling pathw...",21,9,10.38,944,"0.79510","0.87757","0.87757" +"GO:0006790","sulfur compound metabolic process",12,5,5.93,952,"0.79588","0.87801","0.87801" +"GO:0009126","purine nucleoside monophosphate metaboli...",12,4,5.93,1051,"0.92200","0.87850","0.87850" +"GO:0009167","purine ribonucleoside monophosphate meta...",12,4,5.93,1052,"0.92200","0.87850","0.87850" +"GO:1903214","regulation of protein targeting to mitoc...",12,3,5.93,1144,"0.97910","0.87850","0.87850" +"GO:1903747","regulation of establishment of protein l...",12,3,5.93,1145,"0.97910","0.87850","0.87850" +"GO:1903749","positive regulation of establishment of ...",12,3,5.93,1146,"0.97910","0.87850","0.87850" +"GO:1903955","positive regulation of protein targeting...",12,3,5.93,1147,"0.97910","0.87850","0.87850" +"GO:0044271","cellular nitrogen compound biosynthetic ...",621,306,307.08,736,"0.55764","0.77034","0.87985" +"GO:0007186","G protein-coupled receptor signaling pat...",28,7,13.85,1195,"0.99787","0.88023","0.88023" +"GO:0050801","ion homeostasis",22,8,10.88,1064,"0.92697","0.88052","0.88052" +"GO:2000241","regulation of reproductive process",12,6,5.93,783,"0.59804","0.88085","0.88085" +"GO:0048729","tissue morphogenesis",58,29,28.68,721,"0.51891","0.88114","0.88114" +"GO:0007155","cell adhesion",64,30,31.65,878,"0.70635","0.88172","0.88172" +"GO:0022610","biological adhesion",64,30,31.65,879,"0.70635","0.88172","0.88172" +"GO:0051716","cellular response to stimulus",557,282,275.43,471,"0.28125","0.39127","0.88204" +"GO:0015931","nucleobase-containing compound transport",26,10,12.86,1040,"0.90772","0.88347","0.88347" +"GO:0030031","cell projection assembly",29,9,14.34,1155,"0.98639","0.88426","0.88426" +"GO:0030334","regulation of cell migration",29,12,14.34,993,"0.85568","0.88426","0.88426" +"GO:0120031","plasma membrane bounded cell projection ...",29,9,14.34,1156,"0.98639","0.88426","0.88426" +"GO:0007015","actin filament organization",35,17,17.31,785,"0.60779","0.88496","0.88496" +"GO:0032456","endocytic recycling",10,3,4.94,1080,"0.94168","0.88573","0.88573" +"GO:0070727","cellular macromolecule localization",182,82,90,1039,"0.90428","0.88750","0.88750" +"GO:0006486","protein glycosylation",31,12,15.33,1046,"0.91738","0.88756","0.88756" +"GO:0043413","macromolecule glycosylation",31,12,15.33,1047,"0.91738","0.88756","0.88756" +"GO:0070085","glycosylation",31,12,15.33,1048,"0.91738","0.88756","0.88756" +"GO:0007519","skeletal muscle tissue development",11,3,5.44,1117,"0.96482","0.88807","0.88807" +"GO:0034613","cellular protein localization",179,79,88.51,1078,"0.93966","0.88937","0.88937" +"GO:0006518","peptide metabolic process",109,34,53.9,1209,"0.99997","0.88970","0.88970" +"GO:0040008","regulation of growth",41,21,20.27,642,"0.47150","0.88973","0.88973" +"GO:0051346","negative regulation of hydrolase activit...",14,6,6.92,933,"0.77633","0.89024","0.89024" +"GO:0035050","embryonic heart tube development",11,2,5.44,1178,"0.99361","0.89025","0.89025" +"GO:0055080","cation homeostasis",20,7,9.89,1074,"0.93714","0.89084","0.89084" +"GO:0098771","inorganic ion homeostasis",20,7,9.89,1075,"0.93714","0.89084","0.89084" +"GO:0015672","monovalent inorganic cation transport",22,7,10.88,1136,"0.97099","0.89088","0.89088" +"GO:0048545","response to steroid hormone",32,14,15.82,946,"0.79551","0.89176","0.89176" +"GO:0072507","divalent inorganic cation homeostasis",10,5,4.94,796,"0.60964","0.89268","0.89268" +"GO:0030163","protein catabolic process",109,67,53.9,48,"0.00670","0.01396","0.89300" +"GO:0051179","localization",554,251,273.95,1159,"0.98758","0.91668","0.89442" +"GO:2000145","regulation of cell motility",31,13,15.33,992,"0.84671","0.89449","0.89449" +"GO:0051049","regulation of transport",70,34,34.61,784,"0.60618","0.89534","0.89534" +"GO:0040011","locomotion",87,44,43.02,632,"0.45828","0.89724","0.89724" +"GO:0009165","nucleotide biosynthetic process",18,6,8.9,1088,"0.94760","0.89748","0.89748" +"GO:1901293","nucleoside phosphate biosynthetic proces...",18,6,8.9,1089,"0.94760","0.89748","0.89748" +"GO:0010975","regulation of neuron projection developm...",17,9,8.41,678,"0.48156","0.89760","0.89760" +"GO:0016441","posttranscriptional gene silencing",10,4,4.94,973,"0.81941","0.89775","0.89775" +"GO:0019058","viral life cycle",10,4,4.94,974,"0.81941","0.89775","0.89775" +"GO:0035194","posttranscriptional gene silencing by RN...",10,4,4.94,975,"0.81941","0.89775","0.89775" +"GO:0009260","ribonucleotide biosynthetic process",11,4,5.44,1014,"0.87996","0.89801","0.89801" +"GO:0046390","ribose phosphate biosynthetic process",11,4,5.44,1015,"0.87996","0.89801","0.89801" +"GO:0090316","positive regulation of intracellular pro...",15,5,7.42,1068,"0.93609","0.89828","0.89828" +"GO:0048284","organelle fusion",11,5,5.44,894,"0.71344","0.89840","0.89840" +"GO:0017144","drug metabolic process",43,11,21.26,1203,"0.99964","0.89876","0.89876" +"GO:0046903","secretion",52,25,25.71,815,"0.63272","0.89946","0.89946" +"GO:0002263","cell activation involved in immune respo...",10,5,4.94,797,"0.60964","0.89974","0.89974" +"GO:0002366","leukocyte activation involved in immune ...",10,5,4.94,798,"0.60964","0.89974","0.89974" +"GO:0048546","digestive tract morphogenesis",10,2,4.94,1166,"0.98838","0.89974","0.89974" +"GO:0030336","negative regulation of cell migration",12,5,5.93,953,"0.79588","0.90052","0.90052" +"GO:0043624","cellular protein complex disassembly",22,9,10.88,990,"0.84580","0.90192","0.90192" +"GO:0006418","tRNA aminoacylation for protein translat...",22,6,10.88,1169,"0.99055","0.90245","0.90245" +"GO:0043038","amino acid activation",22,6,10.88,1170,"0.99055","0.90245","0.90245" +"GO:0043039","tRNA aminoacylation",22,6,10.88,1171,"0.99055","0.90245","0.90245" +"GO:0051234","establishment of localization",482,219,238.35,1140,"0.97732","0.92619","0.90282" +"GO:0043269","regulation of ion transport",12,5,5.93,954,"0.79588","0.90286","0.90286" +"GO:0048732","gland development",18,8,8.9,914,"0.74545","0.90311","0.90311" +"GO:0055002","striated muscle cell development",10,4,4.94,976,"0.81941","0.90330","0.90330" +"GO:0010720","positive regulation of cell development",22,10,10.88,899,"0.72185","0.90338","0.90338" +"GO:0009056","catabolic process",226,119,111.76,334,"0.17399","0.39471","0.90378" +"GO:0035303","regulation of dephosphorylation",12,4,5.93,1053,"0.92200","0.90393","0.90393" +"GO:0021915","neural tube development",12,4,5.93,1054,"0.92200","0.90500","0.90500" +"GO:0035148","tube formation",12,5,5.93,955,"0.79588","0.90500","0.90500" +"GO:0044265","cellular macromolecule catabolic process",125,80,61.81,19,"0.00056","0.00211","0.90579" +"GO:1903829","positive regulation of cellular protein ...",22,8,10.88,1065,"0.92697","0.90628","0.90628" +"GO:0006950","response to stress",279,154,137.96,92,"0.02451","0.02017","0.90772" +"GO:0000413","protein peptidyl-prolyl isomerization",12,5,5.93,956,"0.79588","0.90853","0.90853" +"GO:0018208","peptidyl-proline modification",12,5,5.93,957,"0.79588","0.90853","0.90853" +"GO:0032940","secretion by cell",43,21,21.26,769,"0.59241","0.90947","0.90947" +"GO:0043010","camera-type eye development",28,14,13.85,733,"0.55185","0.90962","0.90962" +"GO:0032879","regulation of localization",120,55,59.34,965,"0.81707","0.90977","0.90977" +"GO:0001654","eye development",57,28,28.19,747,"0.57262","0.91043","0.91043" +"GO:0048880","sensory system development",57,28,28.19,748,"0.57262","0.91043","0.91043" +"GO:0150063","visual system development",57,28,28.19,749,"0.57262","0.91043","0.91043" +"GO:1903533","regulation of protein targeting",13,3,6.43,1160,"0.98773","0.91128","0.91128" +"GO:0050769","positive regulation of neurogenesis",20,9,9.89,906,"0.73293","0.91183","0.91183" +"GO:0051962","positive regulation of nervous system de...",20,9,9.89,907,"0.73293","0.91183","0.91183" +"GO:0001763","morphogenesis of a branching structure",13,7,6.43,697,"0.48382","0.91203","0.91203" +"GO:0060341","regulation of cellular localization",51,25,25.22,755,"0.58027","0.91205","0.91205" +"GO:0051188","cofactor biosynthetic process",17,9,8.41,679,"0.48156","0.91404","0.91404" +"GO:1901564","organonitrogen compound metabolic proces...",837,407,413.89,904,"0.73191","0.53860","0.91419" +"GO:0009605","response to external stimulus",92,42,45.49,961,"0.80160","0.91424","0.91424" +"GO:0048870","cell motility",60,28,29.67,896,"0.71426","0.91538","0.91538" +"GO:0051674","localization of cell",60,28,29.67,897,"0.71426","0.91538","0.91538" +"GO:0006810","transport",463,212,228.95,1114,"0.96307","0.93796","0.91571" +"GO:0016358","dendrite development",13,6,6.43,876,"0.69594","0.91604","0.91604" +"GO:0051272","positive regulation of cellular componen...",16,5,7.91,1111,"0.95825","0.91653","0.91653" +"GO:2000147","positive regulation of cell motility",16,5,7.91,1112,"0.95825","0.91653","0.91653" +"GO:0055082","cellular chemical homeostasis",15,4,7.42,1152,"0.98077","0.91711","0.91711" +"GO:0045055","regulated exocytosis",12,4,5.93,1055,"0.92200","0.91785","0.91785" +"GO:0001525","angiogenesis",15,8,7.42,684,"0.48266","0.91794","0.91794" +"GO:0009101","glycoprotein biosynthetic process",34,13,16.81,1066,"0.93242","0.91879","0.91879" +"GO:0043043","peptide biosynthetic process",97,29,47.97,1210,"0.99998","0.91960","0.91960" +"GO:0008654","phospholipid biosynthetic process",22,9,10.88,991,"0.84580","0.92134","0.92134" +"GO:0030335","positive regulation of cell migration",15,5,7.42,1069,"0.93609","0.92156","0.92156" +"GO:0006412","translation",96,28,47.47,1211,"0.99999","0.92202","0.92202" +"GO:0006886","intracellular protein transport",126,56,62.31,1026,"0.89314","0.92240","0.92240" +"GO:0006873","cellular ion homeostasis",14,4,6.92,1132,"0.96886","0.92245","0.92245" +"GO:0030003","cellular cation homeostasis",14,4,6.92,1133,"0.96886","0.92245","0.92245" +"GO:0051641","cellular localization",264,124,130.55,981,"0.81973","0.94416","0.92247" +"GO:0045321","leukocyte activation",21,10,10.38,831,"0.65005","0.92266","0.92266" +"GO:0048598","embryonic morphogenesis",59,30,29.18,638,"0.46577","0.92305","0.92305" +"GO:0003007","heart morphogenesis",18,6,8.9,1090,"0.94760","0.92308","0.92308" +"GO:0006814","sodium ion transport",14,5,6.92,1036,"0.90390","0.92343","0.92343" +"GO:0010631","epithelial cell migration",14,6,6.92,934,"0.77633","0.92551","0.92551" +"GO:0044249","cellular biosynthetic process",769,379,380.27,738,"0.56011","0.85712","0.92567" +"GO:0070585","protein localization to mitochondrion",24,7,11.87,1157,"0.98731","0.92586","0.92586" +"GO:0072655","establishment of protein localization to...",24,7,11.87,1158,"0.98731","0.92586","0.92586" +"GO:0042330","taxis",31,16,15.33,648,"0.47521","0.92631","0.92631" +"GO:0036503","ERAD pathway",14,12,6.92,45,"0.00567","0.01010","0.92842" +"GO:0032388","positive regulation of intracellular tra...",18,6,8.9,1091,"0.94760","0.92863","0.92863" +"GO:0006626","protein targeting to mitochondrion",23,6,11.37,1180,"0.99402","0.92886","0.92886" +"GO:0007163","establishment or maintenance of cell pol...",16,6,7.91,1023,"0.88736","0.92892","0.92892" +"GO:0031346","positive regulation of cell projection o...",16,6,7.91,1024,"0.88736","0.92892","0.92892" +"GO:0045666","positive regulation of neuron differenti...",16,7,7.91,920,"0.75975","0.92892","0.92892" +"GO:0061024","membrane organization",47,18,23.24,1100,"0.95511","0.92907","0.92907" +"GO:0019953","sexual reproduction",68,33,33.63,787,"0.60868","0.92911","0.92911" +"GO:0071702","organic substance transport",209,96,103.35,1007,"0.87117","0.92954","0.92954" +"GO:0009617","response to bacterium",14,6,6.92,935,"0.77633","0.92969","0.92969" +"GO:0098655","cation transmembrane transport",26,11,12.86,983,"0.82340","0.93046","0.93046" +"GO:0048469","cell maturation",17,5,8.41,1137,"0.97314","0.93139","0.93139" +"GO:0019725","cellular homeostasis",41,20,20.27,772,"0.59590","0.93162","0.93162" +"GO:0034220","ion transmembrane transport",44,21,21.76,827,"0.64853","0.93352","0.93352" +"GO:0090132","epithelium migration",15,6,7.42,985,"0.83951","0.93372","0.93372" +"GO:0001505","regulation of neurotransmitter levels",16,7,7.91,921,"0.75975","0.93407","0.93407" +"GO:0009058","biosynthetic process",790,390,390.65,727,"0.53891","0.81866","0.93432" +"GO:0009100","glycoprotein metabolic process",36,14,17.8,1063,"0.92620","0.93439","0.93439" +"GO:0008152","metabolic process",1846,923,912.83,377,"0.20525","0.42585","0.93461" +"GO:0009059","macromolecule biosynthetic process",687,350,339.72,365,"0.19259","0.38070","0.93464" +"GO:0040012","regulation of locomotion",38,17,18.79,928,"0.77267","0.93525","0.93525" +"GO:0090130","tissue migration",16,6,7.91,1025,"0.88736","0.93531","0.93531" +"GO:0051050","positive regulation of transport",42,17,20.77,1043,"0.90831","0.93649","0.93649" +"GO:0030029","actin filament-based process",62,30,30.66,800,"0.61679","0.93816","0.93816" +"GO:0019538","protein metabolic process",737,373,364.44,414,"0.24206","0.06555","0.93873" +"GO:0006605","protein targeting",45,13,22.25,1197,"0.99856","0.93905","0.93905" +"GO:0034645","cellular macromolecule biosynthetic proc...",682,348,337.24,341,"0.18075","0.37414","0.93920" +"GO:0042742","defense response to bacterium",12,5,5.93,958,"0.79588","0.93946","0.93946" +"GO:0009416","response to light stimulus",18,9,8.9,753,"0.57452","0.94042","0.94042" +"GO:0019637","organophosphate metabolic process",90,36,44.5,1138,"0.97365","0.94112","0.94112" +"GO:0043603","cellular amide metabolic process",118,35,58.35,1214,"1.00000","0.94169","0.94169" +"GO:0022603","regulation of anatomical structure morph...",40,20,19.78,726,"0.53521","0.94237","0.94237" +"GO:0016192","vesicle-mediated transport",148,58,73.18,1188,"0.99614","0.94241","0.94241" +"GO:0045927","positive regulation of growth",14,4,6.92,1134,"0.96886","0.94321","0.94321" +"GO:0009057","macromolecule catabolic process",148,90,73.18,33,"0.00282","0.01074","0.94364" +"GO:1990778","protein localization to cell periphery",13,3,6.43,1161,"0.98773","0.94370","0.94370" +"GO:0006897","endocytosis",37,15,18.3,1029,"0.89599","0.94394","0.94394" +"GO:1901576","organic substance biosynthetic process",778,382,384.72,786,"0.60820","0.88112","0.94410" +"GO:0048565","digestive tract development",14,3,6.92,1172,"0.99288","0.94412","0.94412" +"GO:0048588","developmental cell growth",14,6,6.92,936,"0.77633","0.94412","0.94412" +"GO:0055123","digestive system development",14,3,6.92,1173,"0.99288","0.94412","0.94412" +"GO:0060560","developmental growth involved in morphog...",14,5,6.92,1037,"0.90390","0.94412","0.94412" +"GO:0051186","cofactor metabolic process",29,11,14.34,1062,"0.92495","0.94444","0.94444" +"GO:0060627","regulation of vesicle-mediated transport",26,10,12.86,1041,"0.90772","0.94551","0.94551" +"GO:0045444","fat cell differentiation",12,5,5.93,959,"0.79588","0.94628","0.94628" +"GO:0045807","positive regulation of endocytosis",12,5,5.93,960,"0.79588","0.94628","0.94628" +"GO:0033554","cellular response to stress",197,112,97.42,78,"0.01838","0.00625","0.94635" +"GO:0071705","nitrogen compound transport",180,84,89.01,962,"0.80253","0.94662","0.94662" +"GO:0072659","protein localization to plasma membrane",12,2,5.93,1189,"0.99651","0.94793","0.94793" +"GO:0009896","positive regulation of catabolic process",24,11,11.87,880,"0.71194","0.94829","0.94829" +"GO:0048522","positive regulation of cellular process",265,135,131.04,520,"0.32699","0.64373","0.94875" +"GO:0044087","regulation of cellular component biogene...",67,31,33.13,910,"0.74232","0.94935","0.94935" +"GO:0006022","aminoglycan metabolic process",21,5,10.38,1186,"0.99595","0.94962","0.94962" +"GO:0030010","establishment of cell polarity",11,3,5.44,1118,"0.96482","0.95067","0.95067" +"GO:0007517","muscle organ development",24,5,11.87,1200,"0.99912","0.95268","0.95268" +"GO:0044242","cellular lipid catabolic process",15,3,7.42,1185,"0.99591","0.95269","0.95269" +"GO:0071806","protein transmembrane transport",15,5,7.42,1070,"0.93609","0.95315","0.95315" +"GO:0007005","mitochondrion organization",53,21,26.21,1084,"0.94393","0.95337","0.95337" +"GO:0045184","establishment of protein localization",168,76,83.07,1021,"0.88656","0.95350","0.95350" +"GO:0030323","respiratory tube development",10,4,4.94,977,"0.81941","0.95352","0.95352" +"GO:0030324","lung development",10,4,4.94,978,"0.81941","0.95352","0.95352" +"GO:0044257","cellular protein catabolic process",87,57,43.02,28,"0.00155","0.00121","0.95357" +"GO:0051603","proteolysis involved in cellular protein...",87,57,43.02,29,"0.00155","0.00121","0.95357" +"GO:0016485","protein processing",11,3,5.44,1119,"0.96482","0.95395","0.95395" +"GO:0044248","cellular catabolic process",199,110,98.4,139,"0.05083","0.18162","0.95458" +"GO:0010976","positive regulation of neuron projection...",10,4,4.94,979,"0.81941","0.95507","0.95507" +"GO:1901615","organic hydroxy compound metabolic proce...",19,2,9.4,1208,"0.99996","0.95626","0.95626" +"GO:0006040","amino sugar metabolic process",18,3,8.9,1201,"0.99926","0.95671","0.95671" +"GO:1901071","glucosamine-containing compound metaboli...",18,3,8.9,1202,"0.99926","0.95671","0.95671" +"GO:0007423","sensory organ development",67,31,33.13,911,"0.74232","0.95767","0.95767" +"GO:0071704","organic substance metabolic process",1702,857,841.63,239,"0.11263","0.11704","0.95847" +"GO:0044743","protein transmembrane import into intrac...",13,4,6.43,1097,"0.95030","0.95930","0.95930" +"GO:0051649","establishment of localization in cell",211,97,104.34,1006,"0.86980","0.97112","0.95935" +"GO:0006892","post-Golgi vesicle-mediated transport",10,2,4.94,1167,"0.98838","0.95982","0.95982" +"GO:0015031","protein transport",156,70,77.14,1031,"0.89653","0.96024","0.96024" +"GO:0015833","peptide transport",156,70,77.14,1032,"0.89653","0.96024","0.96024" +"GO:0042886","amide transport",156,70,77.14,1033,"0.89653","0.96024","0.96024" +"GO:0090407","organophosphate biosynthetic process",41,15,20.27,1124,"0.96620","0.96143","0.96143" +"GO:0006030","chitin metabolic process",16,3,7.91,1194,"0.99767","0.96146","0.96146" +"GO:0040017","positive regulation of locomotion",20,7,9.89,1076,"0.93714","0.96198","0.96198" +"GO:1903530","regulation of secretion by cell",11,3,5.44,1120,"0.96482","0.96369","0.96369" +"GO:0030100","regulation of endocytosis",17,6,8.41,1060,"0.92249","0.96415","0.96415" +"GO:0097435","supramolecular fiber organization",56,27,27.69,806,"0.62592","0.96496","0.96496" +"GO:0044283","small molecule biosynthetic process",40,14,19.78,1141,"0.97807","0.96539","0.96539" +"GO:0065002","intracellular protein transmembrane tran...",11,2,5.44,1179,"0.99361","0.96548","0.96548" +"GO:0007507","heart development",37,15,18.3,1030,"0.89599","0.96601","0.96601" +"GO:0044238","primary metabolic process",1648,834,814.92,161,"0.06727","0.08252","0.96705" +"GO:0051240","positive regulation of multicellular org...",63,31,31.15,743,"0.56589","0.96706","0.96706" +"GO:0006811","ion transport",108,52,53.41,826,"0.64577","0.96728","0.96728" +"GO:0008610","lipid biosynthetic process",47,16,23.24,1168,"0.98922","0.96737","0.96737" +"GO:0046907","intracellular transport",196,92,96.92,938,"0.78952","0.97789","0.96877" +"GO:0030030","cell projection organization",82,39,40.55,843,"0.67688","0.96998","0.96998" +"GO:0120036","plasma membrane bounded cell projection ...",82,39,40.55,844,"0.67688","0.96998","0.96998" +"GO:0090150","establishment of protein localization to...",22,5,10.88,1192,"0.99754","0.96999","0.96999" +"GO:0030001","metal ion transport",44,18,21.76,1034,"0.90262","0.97127","0.97127" +"GO:0006163","purine nucleotide metabolic process",21,7,10.38,1103,"0.95698","0.97246","0.97246" +"GO:0019693","ribose phosphate metabolic process",21,7,10.38,1104,"0.95698","0.97246","0.97246" +"GO:0060537","muscle tissue development",21,7,10.38,1105,"0.95698","0.97246","0.97246" +"GO:0050657","nucleic acid transport",21,7,10.38,1106,"0.95698","0.97269","0.97269" +"GO:0050658","RNA transport",21,7,10.38,1107,"0.95698","0.97269","0.97269" +"GO:0051236","establishment of RNA localization",21,7,10.38,1108,"0.95698","0.97269","0.97269" +"GO:0043604","amide biosynthetic process",101,29,49.94,1213,"1.00000","0.97347","0.97347" +"GO:0006612","protein targeting to membrane",10,3,4.94,1081,"0.94168","0.97350","0.97350" +"GO:0006812","cation transport",62,26,30.66,1042,"0.90786","0.97407","0.97407" +"GO:0044085","cellular component biogenesis",261,137,129.06,323,"0.16600","0.35873","0.97592" +"GO:0030036","actin cytoskeleton organization",61,29,30.16,838,"0.66652","0.97596","0.97596" +"GO:0055086","nucleobase-containing small molecule met...",55,20,27.2,1154,"0.98258","0.97628","0.97628" +"GO:0065008","regulation of biological quality",180,88,89.01,767,"0.59201","0.97661","0.97661" +"GO:0051094","positive regulation of developmental pro...",59,27,29.18,918,"0.75921","0.97677","0.97677" +"GO:0007268","chemical synaptic transmission",15,7,7.42,853,"0.68157","0.97707","0.97707" +"GO:0098916","anterograde trans-synaptic signaling",15,7,7.42,854,"0.68157","0.97707","0.97707" +"GO:0099536","synaptic signaling",15,7,7.42,855,"0.68157","0.97707","0.97707" +"GO:0099537","trans-synaptic signaling",15,7,7.42,856,"0.68157","0.97707","0.97707" +"GO:0070925","organelle assembly",57,23,28.19,1072,"0.93654","0.97725","0.97725" +"GO:0006996","organelle organization",399,222,197.3,38,"0.00425","0.00087","0.97816" +"GO:0009259","ribonucleotide metabolic process",20,7,9.89,1077,"0.93714","0.97836","0.97836" +"GO:0048731","system development",235,115,116.21,768,"0.59210","0.97846","0.97846" +"GO:0010970","transport along microtubule",15,7,7.42,857,"0.68157","0.97878","0.97878" +"GO:0030705","cytoskeleton-dependent intracellular tra...",15,7,7.42,858,"0.68157","0.97878","0.97878" +"GO:0099111","microtubule-based transport",15,7,7.42,859,"0.68157","0.97878","0.97878" +"GO:0006508","proteolysis",193,100,95.44,455,"0.27171","0.22538","0.97984" +"GO:0016043","cellular component organization",537,290,265.54,60,"0.01022","0.01578","0.98053" +"GO:0099504","synaptic vesicle cycle",11,5,5.44,895,"0.71344","0.98316","0.98316" +"GO:0014706","striated muscle tissue development",19,6,9.4,1123,"0.96514","0.98378","0.98378" +"GO:0044255","cellular lipid metabolic process",79,28,39.06,1187,"0.99611","0.98384","0.98384" +"GO:0022607","cellular component assembly",201,96,99.39,898,"0.71606","0.98425","0.98425" +"GO:0016042","lipid catabolic process",22,5,10.88,1193,"0.99754","0.98433","0.98433" +"GO:0006643","membrane lipid metabolic process",18,6,8.9,1092,"0.94760","0.98649","0.98649" +"GO:0005975","carbohydrate metabolic process",47,18,23.24,1101,"0.95511","0.98684","0.98684" +"GO:0048568","embryonic organ development",45,18,22.25,1061,"0.92398","0.98699","0.98699" +"GO:0044281","small molecule metabolic process",139,45,68.73,1212,"0.99999","0.98800","0.98800" +"GO:0009150","purine ribonucleotide metabolic process",18,6,8.9,1093,"0.94760","0.98865","0.98865" +"GO:0009894","regulation of catabolic process",55,25,27.2,924,"0.76864","0.98886","0.98886" +"GO:0009887","animal organ morphogenesis",81,39,40.05,820,"0.63688","0.98944","0.98944" +"GO:0042692","muscle cell differentiation",18,7,8.9,1009,"0.87226","0.98960","0.98960" +"GO:0006629","lipid metabolic process",106,39,52.42,1191,"0.99724","0.98991","0.98991" +"GO:0006664","glycolipid metabolic process",13,5,6.43,1000,"0.85834","0.99024","0.99024" +"GO:1903509","liposaccharide metabolic process",13,5,6.43,1001,"0.85834","0.99024","0.99024" +"GO:0060271","cilium assembly",18,4,8.9,1183,"0.99579","0.99125","0.99125" +"GO:0046467","membrane lipid biosynthetic process",11,4,5.44,1016,"0.87996","0.99175","0.99175" +"GO:0006082","organic acid metabolic process",63,18,31.15,1204,"0.99980","0.99198","0.99198" +"GO:0019752","carboxylic acid metabolic process",63,18,31.15,1205,"0.99980","0.99198","0.99198" +"GO:0043436","oxoacid metabolic process",63,18,31.15,1206,"0.99980","0.99198","0.99198" +"GO:0051604","protein maturation",16,5,7.91,1113,"0.95825","0.99206","0.99206" +"GO:0016053","organic acid biosynthetic process",17,4,8.41,1174,"0.99294","0.99298","0.99298" +"GO:0046394","carboxylic acid biosynthetic process",17,4,8.41,1175,"0.99294","0.99298","0.99298" +"GO:0045454","cell redox homeostasis",17,8,8.41,841,"0.66948","0.99320","0.99320" +"GO:0051130","positive regulation of cellular componen...",88,38,43.52,1038,"0.90416","0.99323","0.99323" +"GO:1901135","carbohydrate derivative metabolic proces...",105,37,51.92,1199,"0.99901","0.99377","0.99377" +"GO:0051146","striated muscle cell differentiation",15,5,7.42,1071,"0.93609","0.99406","0.99406" +"GO:1901137","carbohydrate derivative biosynthetic pro...",63,25,31.15,1102,"0.95561","0.99426","0.99426" +"GO:0072359","circulatory system development",52,23,25.71,964,"0.81591","0.99465","0.99465" +"GO:0060538","skeletal muscle organ development",13,4,6.43,1098,"0.95030","0.99485","0.99485" +"GO:0019216","regulation of lipid metabolic process",10,3,4.94,1082,"0.94168","0.99538","0.99538" +"GO:0044089","positive regulation of cellular componen...",42,16,20.77,1095,"0.95007","0.99539","0.99539" +"GO:0044782","cilium organization",20,4,9.89,1196,"0.99854","0.99577","0.99577" +"GO:0048562","embryonic organ morphogenesis",26,7,12.86,1181,"0.99470","0.99735","0.99735" +"GO:0032787","monocarboxylic acid metabolic process",18,4,8.9,1184,"0.99579","0.99779","0.99779" +"GO:1901566","organonitrogen compound biosynthetic pro...",197,72,97.42,1207,"0.99994","0.99800","0.99800" +"GO:0034976","response to endoplasmic reticulum stress",23,15,11.37,202,"0.09471","0.15895","0.99834" +"GO:0006732","coenzyme metabolic process",16,4,7.91,1162,"0.98828","0.99850","0.99850" +"GO:0072521","purine-containing compound metabolic pro...",25,8,12.36,1139,"0.97589","0.99857","0.99857" +"GO:0008202","steroid metabolic process",12,2,5.93,1190,"0.99651","0.99887","0.99887" +"GO:0072522","purine-containing compound biosynthetic ...",12,4,5.93,1056,"0.92200","0.99887","0.99887" +"GO:0009108","coenzyme biosynthetic process",11,4,5.44,1017,"0.87996","0.99897","0.99897" +"GO:0006164","purine nucleotide biosynthetic process",10,3,4.94,1083,"0.94168","0.99906","0.99906" +"GO:0048193","Golgi vesicle transport",34,10,16.81,1182,"0.99481","0.99920","0.99920" +"GO:0006888","ER to Golgi vesicle-mediated transport",13,5,6.43,1002,"0.85834","0.99969","0.99969" +"GO:0001501","skeletal system development",18,8,8.9,915,"0.74545","0.99987","0.99987" +"GO:0048705","skeletal system morphogenesis",12,3,5.93,1148,"0.97910","0.99991","0.99991" +"GO:0048706","embryonic skeletal system development",10,4,4.94,980,"0.81941","0.99993","0.99993" +"GO:0044282","small molecule catabolic process",14,4,6.92,1135,"0.96886","1.00000","1.00000" +"GO:0006631","fatty acid metabolic process",12,3,5.93,1149,"0.97910","1.00000","1.00000" +"GO:0016054","organic acid catabolic process",11,4,5.44,1018,"0.87996","1.00000","1.00000" +"GO:0046395","carboxylic acid catabolic process",11,4,5.44,1019,"0.87996","1.00000","1.00000" +"GO:0008150","biological_process",2633,1302,1302,1215,"1.00000","1.00000","1.00000" +"GO:0019941","modification-dependent protein catabolic...",79,57,39.06,8,"2.7e-05","5.5e-05","1.00000" diff --git a/GO_enrichment_output/contrast_laying_postlaying_upregulated.csv b/GO_enrichment_output/contrast_laying_postlaying_upregulated.csv index fbc8429..d075f54 100644 --- a/GO_enrichment_output/contrast_laying_postlaying_upregulated.csv +++ b/GO_enrichment_output/contrast_laying_postlaying_upregulated.csv @@ -1,6 +1,2834 @@ "GO.ID","Term","Annotated","Significant","Expected","Rank in classicFisher","classicFisher","classicKS","elimKS" -"GO:0055114","oxidation-reduction process",189,126,84.82,1,"2.9e-10","1e-11","2.5e-10" +"GO:0055114","oxidation-reduction process",189,126,84.82,1,"2.9e-10","1.0e-11","2.5e-10" "GO:0070527","platelet aggregation",8,7,3.59,31,"0.0177","0.00034","0.00034" "GO:0003300","cardiac muscle hypertrophy",7,7,3.14,12,"0.0036","0.00047","0.00047" "GO:0006081","cellular aldehyde metabolic process",14,12,6.28,7,"0.0020","0.00057","0.00057" "GO:0017144","drug metabolic process",127,67,56.99,90,"0.0412","0.00059","0.00059" +"GO:0055085","transmembrane transport",303,161,135.98,3,"0.0013","0.00029","0.00103" +"GO:0045214","sarcomere organization",11,10,4.94,8,"0.0021","0.00103","0.00103" +"GO:0034220","ion transmembrane transport",117,63,52.51,51,"0.0288","0.00133","0.00112" +"GO:0035995","detection of muscle stretch",6,6,2.69,16,"0.0081","0.00140","0.00140" +"GO:0055003","cardiac myofibril assembly",6,6,2.69,17,"0.0081","0.00140","0.00140" +"GO:0090175","regulation of establishment of planar po...",6,6,2.69,18,"0.0081","0.00140","0.00140" +"GO:1903919","negative regulation of actin filament se...",6,6,2.69,19,"0.0081","0.00140","0.00140" +"GO:1903920","positive regulation of actin filament se...",6,6,2.69,20,"0.0081","0.00140","0.00140" +"GO:0006732","coenzyme metabolic process",56,36,25.13,9,"0.0024","0.00305","0.00305" +"GO:0044242","cellular lipid catabolic process",18,12,8.08,118,"0.0519","0.00323","0.00323" +"GO:0034754","cellular hormone metabolic process",8,8,3.59,4,"0.0016","0.00421","0.00421" +"GO:0019395","fatty acid oxidation",8,7,3.59,32,"0.0177","0.00438","0.00438" +"GO:0001895","retina homeostasis",9,7,4.04,104,"0.0487","0.00620","0.00620" +"GO:0010831","positive regulation of myotube different...",7,6,3.14,59,"0.0350","0.00678","0.00678" +"GO:0045662","negative regulation of myoblast differen...",7,6,3.14,60,"0.0350","0.00678","0.00678" +"GO:0045663","positive regulation of myoblast differen...",7,6,3.14,61,"0.0350","0.00678","0.00678" +"GO:0044272","sulfur compound biosynthetic process",14,11,6.28,25,"0.0110","0.00680","0.00680" +"GO:0035902","response to immobilization stress",3,3,1.35,156,"0.0902","0.00691","0.00691" +"GO:0043044","ATP-dependent chromatin remodeling",3,3,1.35,157,"0.0902","0.00691","0.00691" +"GO:0098974","postsynaptic actin cytoskeleton organiza...",3,3,1.35,158,"0.0902","0.00691","0.00691" +"GO:1904030","negative regulation of cyclin-dependent ...",3,3,1.35,159,"0.0902","0.00691","0.00691" +"GO:0098655","cation transmembrane transport",75,35,33.66,539,"0.4200","0.00693","0.00693" +"GO:0001974","blood vessel remodeling",9,7,4.04,105,"0.0487","0.00799","0.00799" +"GO:0002026","regulation of the force of heart contrac...",9,7,4.04,106,"0.0487","0.00799","0.00799" +"GO:0010998","regulation of translational initiation b...",3,3,1.35,160,"0.0902","0.00848","0.00848" +"GO:0045333","cellular respiration",30,18,13.46,143,"0.0684","0.00877","0.00877" +"GO:0015698","inorganic anion transport",12,7,5.39,365,"0.2574","0.00908","0.00908" +"GO:0044281","small molecule metabolic process",303,159,135.98,10,"0.0028","0.00539","0.00940" +"GO:0006720","isoprenoid metabolic process",21,14,9.42,69,"0.0364","0.00961","0.00961" +"GO:0055086","nucleobase-containing small molecule met...",121,64,54.3,98,"0.0427","0.01243","0.01243" +"GO:0015849","organic acid transport",23,15,10.32,75,"0.0394","0.01352","0.01352" +"GO:0046942","carboxylic acid transport",23,15,10.32,76,"0.0394","0.01352","0.01352" +"GO:0006753","nucleoside phosphate metabolic process",106,55,47.57,145,"0.0836","0.01396","0.01396" +"GO:0006767","water-soluble vitamin metabolic process",7,6,3.14,62,"0.0350","0.01448","0.01448" +"GO:0019637","organophosphate metabolic process",165,86,74.05,54,"0.0321","0.01509","0.01509" +"GO:0009117","nucleotide metabolic process",105,54,47.12,207,"0.1007","0.01546","0.01546" +"GO:1903825","organic acid transmembrane transport",16,11,7.18,99,"0.0471","0.01593","0.01593" +"GO:1905039","carboxylic acid transmembrane transport",16,11,7.18,100,"0.0471","0.01593","0.01593" +"GO:0051091","positive regulation of DNA-binding trans...",14,10,6.28,91,"0.0413","0.01639","0.01639" +"GO:0031032","actomyosin structure organization",21,16,9.42,11,"0.0035","2.8e-05","0.01668" +"GO:0032388","positive regulation of intracellular tra...",9,5,4.04,448,"0.3755","0.01748","0.01748" +"GO:0019693","ribose phosphate metabolic process",82,42,36.8,252,"0.1444","0.01766","0.01766" +"GO:0030837","negative regulation of actin filament po...",4,4,1.8,81,"0.0404","0.01771","0.01771" +"GO:0051693","actin filament capping",4,4,1.8,82,"0.0404","0.01771","0.01771" +"GO:0007218","neuropeptide signaling pathway",3,3,1.35,161,"0.0902","0.01868","0.01868" +"GO:0072521","purine-containing compound metabolic pro...",85,42,38.15,286,"0.2280","0.01923","0.01923" +"GO:0006637","acyl-CoA metabolic process",10,8,4.49,44,"0.0267","0.01963","0.01963" +"GO:0035383","thioester metabolic process",10,8,4.49,45,"0.0267","0.01963","0.01963" +"GO:0098660","inorganic ion transmembrane transport",65,31,29.17,445,"0.3672","0.02010","0.02010" +"GO:0006163","purine nucleotide metabolic process",81,40,36.35,291,"0.2368","0.02119","0.02119" +"GO:0009074","aromatic amino acid family catabolic pro...",9,8,4.04,21,"0.0088","0.02194","0.02194" +"GO:0006189","'de novo' IMP biosynthetic process",3,3,1.35,162,"0.0902","0.02286","0.02286" +"GO:0098662","inorganic cation transmembrane transport",63,30,28.27,447,"0.3751","0.02478","0.02478" +"GO:1903829","positive regulation of cellular protein ...",12,4,5.39,1703,"0.8643","0.02555","0.02555" +"GO:0051188","cofactor biosynthetic process",50,31,22.44,24,"0.0104","0.02572","0.02572" +"GO:0072524","pyridine-containing compound metabolic p...",25,17,11.22,29,"0.0164","0.02739","0.02739" +"GO:0009141","nucleoside triphosphate metabolic proces...",53,23,23.79,997,"0.6384","0.02750","0.02750" +"GO:0009144","purine nucleoside triphosphate metabolic...",53,23,23.79,998,"0.6384","0.02750","0.02750" +"GO:0033865","nucleoside bisphosphate metabolic proces...",14,10,6.28,92,"0.0413","0.02779","0.02779" +"GO:0033875","ribonucleoside bisphosphate metabolic pr...",14,10,6.28,93,"0.0413","0.02779","0.02779" +"GO:0034032","purine nucleoside bisphosphate metabolic...",14,10,6.28,94,"0.0413","0.02779","0.02779" +"GO:0072525","pyridine-containing compound biosyntheti...",20,12,8.98,222,"0.1274","0.02860","0.02860" +"GO:0006098","pentose-phosphate shunt",4,4,1.8,83,"0.0404","0.02894","0.02894" +"GO:0019682","glyceraldehyde-3-phosphate metabolic pro...",4,4,1.8,84,"0.0404","0.02894","0.02894" +"GO:0051156","glucose 6-phosphate metabolic process",4,4,1.8,85,"0.0404","0.02894","0.02894" +"GO:0002118","aggressive behavior",4,3,1.8,293,"0.2397","0.03049","0.03049" +"GO:0002121","inter-male aggressive behavior",4,3,1.8,294,"0.2397","0.03049","0.03049" +"GO:0007291","sperm individualization",4,3,1.8,295,"0.2397","0.03049","0.03049" +"GO:0016319","mushroom body development",4,3,1.8,296,"0.2397","0.03049","0.03049" +"GO:0021762","substantia nigra development",4,4,1.8,86,"0.0404","0.03049","0.03049" +"GO:0030901","midbrain development",4,4,1.8,87,"0.0404","0.03049","0.03049" +"GO:0048857","neural nucleus development",4,4,1.8,88,"0.0404","0.03049","0.03049" +"GO:0071257","cellular response to electrical stimulus",4,3,1.8,297,"0.2397","0.03049","0.03049" +"GO:0048489","synaptic vesicle transport",9,6,4.04,263,"0.1635","0.03050","0.03050" +"GO:0097480","establishment of synaptic vesicle locali...",9,6,4.04,264,"0.1635","0.03050","0.03050" +"GO:0051090","regulation of DNA-binding transcription ...",15,11,6.73,42,"0.0246","0.03100","0.03100" +"GO:0030431","sleep",5,5,2.24,37,"0.0181","0.03212","0.03212" +"GO:0006865","amino acid transport",14,9,6.28,211,"0.1163","0.03308","0.03308" +"GO:0044282","small molecule catabolic process",32,20,14.36,58,"0.0332","0.03338","0.03338" +"GO:0009199","ribonucleoside triphosphate metabolic pr...",52,22,23.34,1074,"0.6962","0.03387","0.03387" +"GO:0009205","purine ribonucleoside triphosphate metab...",52,22,23.34,1075,"0.6962","0.03387","0.03387" +"GO:0009642","response to light intensity",6,5,2.69,139,"0.0681","0.03388","0.03388" +"GO:0046890","regulation of lipid biosynthetic process",8,6,3.59,147,"0.0870","0.03515","0.03515" +"GO:0009150","purine ribonucleotide metabolic process",78,38,35,402,"0.2812","0.03605","0.03605" +"GO:0009259","ribonucleotide metabolic process",78,38,35,403,"0.2812","0.03605","0.03605" +"GO:0009126","purine nucleoside monophosphate metaboli...",55,24,24.68,967,"0.6254","0.03753","0.03753" +"GO:0009167","purine ribonucleoside monophosphate meta...",55,24,24.68,968,"0.6254","0.03753","0.03753" +"GO:0009062","fatty acid catabolic process",6,4,2.69,350,"0.2530","0.03789","0.03789" +"GO:0009108","coenzyme biosynthetic process",42,25,18.85,74,"0.0388","0.03861","0.03861" +"GO:0000281","mitotic cytokinesis",7,6,3.14,63,"0.0350","0.03862","0.03862" +"GO:0060048","cardiac muscle contraction",13,9,5.83,137,"0.0681","0.03922","0.03922" +"GO:0009123","nucleoside monophosphate metabolic proce...",57,25,25.58,962,"0.6128","0.03923","0.03923" +"GO:0009161","ribonucleoside monophosphate metabolic p...",57,25,25.58,963,"0.6128","0.03923","0.03923" +"GO:0009060","aerobic respiration",16,10,7.18,218,"0.1213","0.03949","0.03949" +"GO:1901016","regulation of potassium ion transmembran...",3,3,1.35,163,"0.0902","0.04114","0.04114" +"GO:1901379","regulation of potassium ion transmembran...",3,3,1.35,164,"0.0902","0.04114","0.04114" +"GO:0006469","negative regulation of protein kinase ac...",13,9,5.83,138,"0.0681","0.00189","0.04124" +"GO:0035994","response to muscle stretch",8,8,3.59,5,"0.0016","0.00015","0.04135" +"GO:0001523","retinoid metabolic process",9,7,4.04,107,"0.0487","0.04171","0.04171" +"GO:0006721","terpenoid metabolic process",9,7,4.04,108,"0.0487","0.04171","0.04171" +"GO:0016101","diterpenoid metabolic process",9,7,4.04,109,"0.0487","0.04171","0.04171" +"GO:0006099","tricarboxylic acid cycle",14,9,6.28,212,"0.1163","0.04197","0.04197" +"GO:0003333","amino acid transmembrane transport",13,8,5.83,270,"0.1758","0.04226","0.04226" +"GO:0031589","cell-substrate adhesion",9,7,4.04,110,"0.0487","0.04248","0.04248" +"GO:0090316","positive regulation of intracellular pro...",7,3,3.14,1023,"0.6814","0.04308","0.04308" +"GO:1903214","regulation of protein targeting to mitoc...",7,3,3.14,1024,"0.6814","0.04308","0.04308" +"GO:1903533","regulation of protein targeting",7,3,3.14,1025,"0.6814","0.04308","0.04308" +"GO:1903749","positive regulation of establishment of ...",7,3,3.14,1026,"0.6814","0.04308","0.04308" +"GO:1903955","positive regulation of protein targeting...",7,3,3.14,1027,"0.6814","0.04308","0.04308" +"GO:0016054","organic acid catabolic process",23,15,10.32,77,"0.0394","0.04438","0.04438" +"GO:0046395","carboxylic acid catabolic process",23,15,10.32,78,"0.0394","0.04438","0.04438" +"GO:0006874","cellular calcium ion homeostasis",23,15,10.32,79,"0.0394","0.04457","0.04457" +"GO:0055074","calcium ion homeostasis",23,15,10.32,80,"0.0394","0.04457","0.04457" +"GO:0007031","peroxisome organization",6,5,2.69,140,"0.0681","0.04513","0.04513" +"GO:0006739","NADP metabolic process",7,6,3.14,64,"0.0350","0.04557","0.04557" +"GO:0006022","aminoglycan metabolic process",31,16,13.91,401,"0.2809","0.04593","0.04593" +"GO:0061640","cytoskeleton-dependent cytokinesis",9,7,4.04,111,"0.0487","0.04861","0.04861" +"GO:0042737","drug catabolic process",5,4,2.24,225,"0.1298","0.04868","0.04868" +"GO:0045765","regulation of angiogenesis",7,4,3.14,463,"0.3890","0.04960","0.04960" +"GO:0045766","positive regulation of angiogenesis",7,4,3.14,464,"0.3890","0.04960","0.04960" +"GO:1901342","regulation of vasculature development",7,4,3.14,465,"0.3890","0.04960","0.04960" +"GO:1904018","positive regulation of vasculature devel...",7,4,3.14,466,"0.3890","0.04960","0.04960" +"GO:0010565","regulation of cellular ketone metabolic ...",3,3,1.35,165,"0.0902","0.04977","0.04977" +"GO:0019217","regulation of fatty acid metabolic proce...",3,3,1.35,166,"0.0902","0.04977","0.04977" +"GO:0042304","regulation of fatty acid biosynthetic pr...",3,3,1.35,167,"0.0902","0.04977","0.04977" +"GO:0046320","regulation of fatty acid oxidation",3,3,1.35,168,"0.0902","0.04977","0.04977" +"GO:0046034","ATP metabolic process",50,21,22.44,1085,"0.7098","0.05089","0.05089" +"GO:0030001","metal ion transport",85,44,38.15,217,"0.1176","0.05130","0.05130" +"GO:0016052","carbohydrate catabolic process",15,8,6.73,425,"0.3425","0.05182","0.05182" +"GO:0005978","glycogen biosynthetic process",7,5,3.14,254,"0.1510","0.05209","0.05209" +"GO:0009250","glucan biosynthetic process",7,5,3.14,255,"0.1510","0.05209","0.05209" +"GO:0033692","cellular polysaccharide biosynthetic pro...",7,5,3.14,256,"0.1510","0.05209","0.05209" +"GO:0009072","aromatic amino acid family metabolic pro...",16,11,7.18,101,"0.0471","0.05423","0.05423" +"GO:0051705","multi-organism behavior",8,6,3.59,148,"0.0870","0.05596","0.05596" +"GO:0015858","nucleoside transport",3,3,1.35,169,"0.0902","0.05715","0.05715" +"GO:1901642","nucleoside transmembrane transport",3,3,1.35,170,"0.0902","0.05715","0.05715" +"GO:0006979","response to oxidative stress",51,26,22.89,287,"0.2282","0.05745","0.05745" +"GO:1901071","glucosamine-containing compound metaboli...",29,15,13.01,406,"0.2873","0.05780","0.05780" +"GO:0006694","steroid biosynthetic process",16,11,7.18,102,"0.0471","0.05814","0.05814" +"GO:0035601","protein deacylation",3,3,1.35,171,"0.0902","0.05831","0.05831" +"GO:0098732","macromolecule deacylation",3,3,1.35,172,"0.0902","0.05831","0.05831" +"GO:0098656","anion transmembrane transport",21,12,9.42,282,"0.1801","0.05927","0.05927" +"GO:0032272","negative regulation of protein polymeriz...",5,4,2.24,226,"0.1298","0.06178","0.06178" +"GO:0005975","carbohydrate metabolic process",89,46,39.94,210,"0.1140","0.06192","0.06192" +"GO:0009063","cellular amino acid catabolic process",17,12,7.63,52,"0.0290","0.06249","0.06249" +"GO:0030866","cortical actin cytoskeleton organization",4,3,1.8,298,"0.2397","0.06330","0.06330" +"GO:0046503","glycerolipid catabolic process",8,5,3.59,368,"0.2577","0.06626","0.06626" +"GO:0051602","response to electrical stimulus",8,4,3.59,730,"0.5202","0.06732","0.06732" +"GO:0097479","synaptic vesicle localization",11,7,4.94,269,"0.1711","0.06817","0.06817" +"GO:0050801","ion homeostasis",40,24,17.95,73,"0.0380","0.06833","0.06833" +"GO:0046461","neutral lipid catabolic process",5,4,2.24,227,"0.1298","0.06880","0.06880" +"GO:0046464","acylglycerol catabolic process",5,4,2.24,228,"0.1298","0.06880","0.06880" +"GO:0032355","response to estradiol",14,4,6.28,2040,"0.9362","0.06936","0.06936" +"GO:0046434","organophosphate catabolic process",24,15,10.77,132,"0.0623","0.07025","0.07025" +"GO:0006820","anion transport",44,25,19.75,144,"0.0734","0.00653","0.07158" +"GO:0051668","localization within membrane",8,5,3.59,369,"0.2577","0.07194","0.07194" +"GO:0006101","citrate metabolic process",15,9,6.73,274,"0.1785","0.07242","0.07242" +"GO:0006030","chitin metabolic process",27,14,12.12,407,"0.2941","0.07271","0.07271" +"GO:0009395","phospholipid catabolic process",5,4,2.24,229,"0.1298","0.07290","0.07290" +"GO:0033673","negative regulation of kinase activity",14,9,6.28,213,"0.1163","0.00425","0.07325" +"GO:0009612","response to mechanical stimulus",19,14,8.53,22,"0.0104","0.00104","0.07336" +"GO:0007349","cellularization",5,3,2.24,489,"0.4045","0.07381","0.07381" +"GO:0030042","actin filament depolymerization",5,4,2.24,230,"0.1298","0.07417","0.07417" +"GO:0030834","regulation of actin filament depolymeriz...",5,4,2.24,231,"0.1298","0.07417","0.07417" +"GO:0030835","negative regulation of actin filament de...",5,4,2.24,232,"0.1298","0.07417","0.07417" +"GO:0043242","negative regulation of protein complex d...",5,4,2.24,233,"0.1298","0.07417","0.07417" +"GO:1901879","regulation of protein depolymerization",5,4,2.24,234,"0.1298","0.07417","0.07417" +"GO:1901880","negative regulation of protein depolymer...",5,4,2.24,235,"0.1298","0.07417","0.07417" +"GO:0072503","cellular divalent inorganic cation homeo...",24,15,10.77,133,"0.0623","0.07418","0.07418" +"GO:0072507","divalent inorganic cation homeostasis",24,15,10.77,134,"0.0623","0.07418","0.07418" +"GO:0009644","response to high light intensity",3,3,1.35,173,"0.0902","0.07439","0.07439" +"GO:0016062","adaptation of rhodopsin mediated signali...",3,3,1.35,174,"0.0902","0.07439","0.07439" +"GO:0023058","adaptation of signaling pathway",3,3,1.35,175,"0.0902","0.07439","0.07439" +"GO:0036367","light adaption",3,3,1.35,176,"0.0902","0.07439","0.07439" +"GO:0042572","retinol metabolic process",3,3,1.35,177,"0.0902","0.07439","0.07439" +"GO:0042574","retinal metabolic process",3,3,1.35,178,"0.0902","0.07439","0.07439" +"GO:0032271","regulation of protein polymerization",25,12,11.22,682,"0.4523","0.07532","0.07532" +"GO:0008037","cell recognition",13,6,5.83,800,"0.5699","0.07551","0.07551" +"GO:0007160","cell-matrix adhesion",6,5,2.69,141,"0.0681","0.07562","0.07562" +"GO:0006941","striated muscle contraction",14,9,6.28,214,"0.1163","0.07595","0.07595" +"GO:1902904","negative regulation of supramolecular fi...",17,8,7.63,739,"0.5217","0.07699","0.07699" +"GO:0072329","monocarboxylic acid catabolic process",7,4,3.14,467,"0.3890","0.07789","0.07789" +"GO:0006040","amino sugar metabolic process",30,15,13.46,432,"0.3493","0.07925","0.07925" +"GO:0015672","monovalent inorganic cation transport",70,32,31.41,703,"0.4901","0.07936","0.07936" +"GO:0051648","vesicle localization",16,7,7.18,969,"0.6307","0.08295","0.08295" +"GO:0051650","establishment of vesicle localization",14,6,6.28,1010,"0.6597","0.08388","0.08388" +"GO:0072348","sulfur compound transport",6,4,2.69,351,"0.2530","0.08417","0.08417" +"GO:0006513","protein monoubiquitination",5,2,2.24,1122,"0.7422","0.08417","0.08417" +"GO:0043094","cellular metabolic compound salvage",7,5,3.14,257,"0.1510","0.08458","0.08458" +"GO:0001525","angiogenesis",8,4,3.59,731,"0.5202","0.08582","0.08582" +"GO:0006793","phosphorus metabolic process",354,170,158.87,209,"0.1100","0.05465","0.08605" +"GO:0006796","phosphate-containing compound metabolic ...",351,169,157.52,208,"0.1019","0.05468","0.08626" +"GO:0043648","dicarboxylic acid metabolic process",10,7,4.49,201,"0.1001","0.08639","0.08639" +"GO:0031110","regulation of microtubule polymerization...",10,3,4.49,1808,"0.8995","0.08644","0.08644" +"GO:0031112","positive regulation of microtubule polym...",10,3,4.49,1809,"0.8995","0.08644","0.08644" +"GO:0031113","regulation of microtubule polymerization",10,3,4.49,1810,"0.8995","0.08644","0.08644" +"GO:0031116","positive regulation of microtubule polym...",10,3,4.49,1811,"0.8995","0.08644","0.08644" +"GO:0050982","detection of mechanical stimulus",8,8,3.59,6,"0.0016","0.00015","0.08882" +"GO:0006654","phosphatidic acid biosynthetic process",3,3,1.35,179,"0.0902","0.08968","0.08968" +"GO:0046473","phosphatidic acid metabolic process",3,3,1.35,180,"0.0902","0.08968","0.08968" +"GO:0060191","regulation of lipase activity",3,3,1.35,181,"0.0902","0.08968","0.08968" +"GO:0051222","positive regulation of protein transport",16,6,7.18,1289,"0.8004","0.09137","0.09137" +"GO:1904951","positive regulation of establishment of ...",16,6,7.18,1290,"0.8004","0.09137","0.09137" +"GO:0006816","calcium ion transport",27,15,12.12,272,"0.1768","0.09261","0.09261" +"GO:0032507","maintenance of protein location in cell",8,5,3.59,370,"0.2577","0.09280","0.09280" +"GO:0051651","maintenance of location in cell",8,5,3.59,371,"0.2577","0.09280","0.09280" +"GO:0015711","organic anion transport",29,17,13.01,198,"0.0956","0.09301","0.09301" +"GO:0006188","IMP biosynthetic process",4,3,1.8,299,"0.2397","0.09410","0.09410" +"GO:0046040","IMP metabolic process",4,3,1.8,300,"0.2397","0.09410","0.09410" +"GO:0099003","vesicle-mediated transport in synapse",20,9,8.98,809,"0.5817","0.09553","0.09553" +"GO:0010822","positive regulation of mitochondrion org...",8,3,3.59,1248,"0.7782","0.09937","0.09937" +"GO:1901606","alpha-amino acid catabolic process",14,10,6.28,95,"0.0413","0.10123","0.10123" +"GO:0031109","microtubule polymerization or depolymeri...",13,5,5.83,1226,"0.7700","0.10232","0.10232" +"GO:0017157","regulation of exocytosis",6,5,2.69,142,"0.0681","0.10378","0.10378" +"GO:0015985","energy coupled proton transport, down el...",13,5,5.83,1227,"0.7700","0.10459","0.10459" +"GO:0015986","ATP synthesis coupled proton transport",13,5,5.83,1228,"0.7700","0.10459","0.10459" +"GO:0019752","carboxylic acid metabolic process",137,71,61.48,123,"0.0558","0.05893","0.10482" +"GO:0055080","cation homeostasis",35,21,15.71,116,"0.0508","0.10519","0.10519" +"GO:0098771","inorganic ion homeostasis",35,21,15.71,117,"0.0508","0.10519","0.10519" +"GO:0006576","cellular biogenic amine metabolic proces...",10,7,4.49,202,"0.1001","0.10704","0.10704" +"GO:0001578","microtubule bundle formation",4,2,1.8,837,"0.6071","0.10791","0.10791" +"GO:0006936","muscle contraction",23,13,10.32,276,"0.1793","0.10888","0.10888" +"GO:0009124","nucleoside monophosphate biosynthetic pr...",33,15,14.81,744,"0.5410","0.10893","0.10893" +"GO:0009156","ribonucleoside monophosphate biosyntheti...",33,15,14.81,745,"0.5410","0.10893","0.10893" +"GO:0045921","positive regulation of exocytosis",3,3,1.35,182,"0.0902","0.10917","0.10917" +"GO:0046323","glucose import",4,3,1.8,301,"0.2397","0.10985","0.10985" +"GO:0046324","regulation of glucose import",4,3,1.8,302,"0.2397","0.10985","0.10985" +"GO:0022904","respiratory electron transport chain",15,9,6.73,275,"0.1785","0.10998","0.10998" +"GO:1902600","proton transmembrane transport",28,10,12.57,1748,"0.8800","0.11125","0.11125" +"GO:0000271","polysaccharide biosynthetic process",8,6,3.59,149,"0.0870","0.11178","0.11178" +"GO:0005977","glycogen metabolic process",8,5,3.59,372,"0.2577","0.11178","0.11178" +"GO:0006073","cellular glucan metabolic process",8,5,3.59,373,"0.2577","0.11178","0.11178" +"GO:0006112","energy reserve metabolic process",8,5,3.59,374,"0.2577","0.11178","0.11178" +"GO:0034637","cellular carbohydrate biosynthetic proce...",8,5,3.59,375,"0.2577","0.11178","0.11178" +"GO:0044042","glucan metabolic process",8,5,3.59,376,"0.2577","0.11178","0.11178" +"GO:0044264","cellular polysaccharide metabolic proces...",8,5,3.59,377,"0.2577","0.11178","0.11178" +"GO:0015980","energy derivation by oxidation of organi...",38,23,17.05,72,"0.0370","0.02277","0.11213" +"GO:0009083","branched-chain amino acid catabolic proc...",3,3,1.35,183,"0.0902","0.11219","0.11219" +"GO:0009127","purine nucleoside monophosphate biosynth...",32,15,14.36,695,"0.4778","0.11314","0.11314" +"GO:0009168","purine ribonucleoside monophosphate bios...",32,15,14.36,696,"0.4778","0.11314","0.11314" +"GO:0006906","vesicle fusion",3,3,1.35,184,"0.0902","0.11449","0.11449" +"GO:0032367","intracellular cholesterol transport",3,3,1.35,185,"0.0902","0.11449","0.11449" +"GO:0048284","organelle fusion",3,3,1.35,186,"0.0902","0.11449","0.11449" +"GO:0090174","organelle membrane fusion",3,3,1.35,187,"0.0902","0.11449","0.11449" +"GO:0019216","regulation of lipid metabolic process",16,10,7.18,219,"0.1213","0.11606","0.11606" +"GO:0051494","negative regulation of cytoskeleton orga...",10,6,4.49,387,"0.2586","0.11663","0.11663" +"GO:0007111","meiosis II cytokinesis",3,2,1.35,540,"0.4234","0.11740","0.11740" +"GO:0033206","meiotic cytokinesis",3,2,1.35,541,"0.4234","0.11740","0.11740" +"GO:0061983","meiosis II cell cycle process",3,2,1.35,542,"0.4234","0.11740","0.11740" +"GO:1901135","carbohydrate derivative metabolic proces...",206,98,92.45,289,"0.2297","0.11924","0.11924" +"GO:0006082","organic acid metabolic process",139,72,62.38,119,"0.0550","0.06856","0.12004" +"GO:0043436","oxoacid metabolic process",139,72,62.38,120,"0.0550","0.06856","0.12004" +"GO:0022900","electron transport chain",18,11,8.08,220,"0.1249","0.12277","0.12277" +"GO:0009142","nucleoside triphosphate biosynthetic pro...",28,12,12.57,1004,"0.6557","0.12325","0.12325" +"GO:0009145","purine nucleoside triphosphate biosynthe...",28,12,12.57,1005,"0.6557","0.12325","0.12325" +"GO:0009201","ribonucleoside triphosphate biosynthetic...",28,12,12.57,1006,"0.6557","0.12325","0.12325" +"GO:0009206","purine ribonucleoside triphosphate biosy...",28,12,12.57,1007,"0.6557","0.12325","0.12325" +"GO:0016125","sterol metabolic process",8,6,3.59,150,"0.0870","0.12333","0.12333" +"GO:0016126","sterol biosynthetic process",8,6,3.59,151,"0.0870","0.12333","0.12333" +"GO:0006638","neutral lipid metabolic process",6,4,2.69,352,"0.2530","0.12368","0.12368" +"GO:0006639","acylglycerol metabolic process",6,4,2.69,353,"0.2530","0.12368","0.12368" +"GO:1901605","alpha-amino acid metabolic process",28,17,12.57,136,"0.0667","0.12375","0.12375" +"GO:0045666","positive regulation of neuron differenti...",14,6,6.28,1011,"0.6597","0.12497","0.12497" +"GO:0072522","purine-containing compound biosynthetic ...",50,24,22.44,456,"0.3788","0.12529","0.12529" +"GO:0008272","sulfate transport",5,3,2.24,490,"0.4045","0.12725","0.12725" +"GO:0030512","negative regulation of transforming grow...",3,3,1.35,188,"0.0902","0.12729","0.12729" +"GO:1903845","negative regulation of cellular response...",3,3,1.35,189,"0.0902","0.12729","0.12729" +"GO:0043254","regulation of protein complex assembly",28,13,12.57,726,"0.5074","0.13086","0.13086" +"GO:0070838","divalent metal ion transport",30,15,13.46,433,"0.3493","0.13128","0.13128" +"GO:0072511","divalent inorganic cation transport",30,15,13.46,434,"0.3493","0.13128","0.13128" +"GO:1901617","organic hydroxy compound biosynthetic pr...",21,13,9.42,154,"0.0880","0.13141","0.13141" +"GO:0000096","sulfur amino acid metabolic process",4,3,1.8,303,"0.2397","0.13178","0.13178" +"GO:0000097","sulfur amino acid biosynthetic process",4,3,1.8,304,"0.2397","0.13178","0.13178" +"GO:0032091","negative regulation of protein binding",6,3,2.69,750,"0.5561","0.13238","0.13238" +"GO:0001959","regulation of cytokine-mediated signalin...",5,2,2.24,1123,"0.7422","0.13244","0.13244" +"GO:0001961","positive regulation of cytokine-mediated...",5,2,2.24,1124,"0.7422","0.13244","0.13244" +"GO:0060759","regulation of response to cytokine stimu...",5,2,2.24,1125,"0.7422","0.13244","0.13244" +"GO:0060760","positive regulation of response to cytok...",5,2,2.24,1126,"0.7422","0.13244","0.13244" +"GO:0034446","substrate adhesion-dependent cell spread...",3,2,1.35,543,"0.4234","0.13340","0.13340" +"GO:0051258","protein polymerization",26,12,11.67,742,"0.5238","0.13418","0.13418" +"GO:0071941","nitrogen cycle metabolic process",4,3,1.8,305,"0.2397","0.13479","0.13479" +"GO:0008038","neuron recognition",11,5,4.94,818,"0.5999","0.13611","0.13611" +"GO:0006568","tryptophan metabolic process",5,4,2.24,236,"0.1298","0.13769","0.13769" +"GO:0006569","tryptophan catabolic process",5,4,2.24,237,"0.1298","0.13769","0.13769" +"GO:0006586","indolalkylamine metabolic process",5,4,2.24,238,"0.1298","0.13769","0.13769" +"GO:0009310","amine catabolic process",5,4,2.24,239,"0.1298","0.13769","0.13769" +"GO:0042402","cellular biogenic amine catabolic proces...",5,4,2.24,240,"0.1298","0.13769","0.13769" +"GO:0042436","indole-containing compound catabolic pro...",5,4,2.24,241,"0.1298","0.13769","0.13769" +"GO:0046218","indolalkylamine catabolic process",5,4,2.24,242,"0.1298","0.13769","0.13769" +"GO:0044057","regulation of system process",31,20,13.91,41,"0.0213","0.02547","0.13790" +"GO:1901136","carbohydrate derivative catabolic proces...",10,7,4.49,203,"0.1001","0.13826","0.13826" +"GO:0006164","purine nucleotide biosynthetic process",49,23,21.99,673,"0.4394","0.13849","0.13849" +"GO:0010498","proteasomal protein catabolic process",24,9,10.77,1334,"0.8251","0.13970","0.13970" +"GO:0019362","pyridine nucleotide metabolic process",22,14,9.87,124,"0.0594","0.14018","0.14018" +"GO:0046496","nicotinamide nucleotide metabolic proces...",22,14,9.87,125,"0.0594","0.14018","0.14018" +"GO:0006084","acetyl-CoA metabolic process",5,4,2.24,243,"0.1298","0.14067","0.14067" +"GO:0008299","isoprenoid biosynthetic process",9,6,4.04,265,"0.1635","0.14098","0.14098" +"GO:0000910","cytokinesis",11,8,4.94,130,"0.0596","0.14168","0.14168" +"GO:0006821","chloride transport",5,3,2.24,491,"0.4045","0.14177","0.14177" +"GO:0051050","positive regulation of transport",48,19,21.54,1325,"0.8132","0.14272","0.14272" +"GO:0002088","lens development in camera-type eye",5,4,2.24,244,"0.1298","0.14309","0.14309" +"GO:0009110","vitamin biosynthetic process",3,3,1.35,190,"0.0902","0.14388","0.14388" +"GO:0042364","water-soluble vitamin biosynthetic proce...",3,3,1.35,191,"0.0902","0.14388","0.14388" +"GO:0008202","steroid metabolic process",21,13,9.42,155,"0.0880","0.14406","0.14406" +"GO:1902806","regulation of cell cycle G1/S phase tran...",4,3,1.8,306,"0.2397","0.14460","0.14460" +"GO:0007603","phototransduction, visible light",4,3,1.8,307,"0.2397","0.14586","0.14586" +"GO:0016056","rhodopsin mediated signaling pathway",4,3,1.8,308,"0.2397","0.14586","0.14586" +"GO:0045494","photoreceptor cell maintenance",4,3,1.8,309,"0.2397","0.14586","0.14586" +"GO:0061588","calcium activated phospholipid scramblin...",3,3,1.35,192,"0.0902","0.14587","0.14587" +"GO:0046785","microtubule polymerization",12,4,5.39,1704,"0.8643","0.14591","0.14591" +"GO:0030865","cortical cytoskeleton organization",5,3,2.24,492,"0.4045","0.14771","0.14771" +"GO:0032365","intracellular lipid transport",7,5,3.14,258,"0.1510","0.14793","0.14793" +"GO:0006635","fatty acid beta-oxidation",3,2,1.35,544,"0.4234","0.14814","0.14814" +"GO:0009165","nucleotide biosynthetic process",65,30,29.17,684,"0.4652","0.14821","0.14821" +"GO:1901293","nucleoside phosphate biosynthetic proces...",65,30,29.17,685,"0.4652","0.14821","0.14821" +"GO:0006754","ATP biosynthetic process",27,12,12.12,815,"0.5921","0.15236","0.15236" +"GO:0010594","regulation of endothelial cell migration",3,2,1.35,545,"0.4234","0.15428","0.15428" +"GO:0010595","positive regulation of endothelial cell ...",3,2,1.35,546,"0.4234","0.15428","0.15428" +"GO:0043542","endothelial cell migration",3,2,1.35,547,"0.4234","0.15428","0.15428" +"GO:0048010","vascular endothelial growth factor recep...",3,2,1.35,548,"0.4234","0.15428","0.15428" +"GO:0050921","positive regulation of chemotaxis",3,2,1.35,549,"0.4234","0.15428","0.15428" +"GO:0060326","cell chemotaxis",3,2,1.35,550,"0.4234","0.15428","0.15428" +"GO:1900034","regulation of cellular response to heat",7,2,3.14,1768,"0.8967","0.15500","0.15500" +"GO:0090407","organophosphate biosynthetic process",97,46,43.53,423,"0.3400","0.15839","0.15839" +"GO:0009952","anterior/posterior pattern specification",6,3,2.69,751,"0.5561","0.15910","0.15910" +"GO:0043266","regulation of potassium ion transport",4,3,1.8,310,"0.2397","0.15929","0.15929" +"GO:0071214","cellular response to abiotic stimulus",16,8,7.18,667,"0.4330","0.15935","0.15935" +"GO:0104004","cellular response to environmental stimu...",16,8,7.18,668,"0.4330","0.15935","0.15935" +"GO:0099504","synaptic vesicle cycle",18,8,8.08,832,"0.6049","0.16039","0.16039" +"GO:0099173","postsynapse organization",9,7,4.04,112,"0.0487","0.01098","0.16121" +"GO:1903747","regulation of establishment of protein l...",9,3,4.04,1643,"0.8492","0.16171","0.16171" +"GO:0009408","response to heat",27,9,12.12,1998,"0.9219","0.16205","0.16205" +"GO:0006909","phagocytosis",18,7,8.08,1243,"0.7719","0.16220","0.16220" +"GO:0002252","immune effector process",25,10,11.22,1214,"0.7549","0.16238","0.16238" +"GO:0007585","respiratory gaseous exchange",3,2,1.35,551,"0.4234","0.16376","0.16376" +"GO:0032228","regulation of synaptic transmission, GAB...",3,2,1.35,552,"0.4234","0.16376","0.16376" +"GO:0035249","synaptic transmission, glutamatergic",3,2,1.35,553,"0.4234","0.16376","0.16376" +"GO:0051932","synaptic transmission, GABAergic",3,2,1.35,554,"0.4234","0.16376","0.16376" +"GO:0051966","regulation of synaptic transmission, glu...",3,2,1.35,555,"0.4234","0.16376","0.16376" +"GO:0051968","positive regulation of synaptic transmis...",3,2,1.35,556,"0.4234","0.16376","0.16376" +"GO:0060997","dendritic spine morphogenesis",3,2,1.35,557,"0.4234","0.16376","0.16376" +"GO:0061001","regulation of dendritic spine morphogene...",3,2,1.35,558,"0.4234","0.16376","0.16376" +"GO:0097061","dendritic spine organization",3,2,1.35,559,"0.4234","0.16376","0.16376" +"GO:0099175","regulation of postsynapse organization",3,2,1.35,560,"0.4234","0.16376","0.16376" +"GO:0106027","neuron projection organization",3,2,1.35,561,"0.4234","0.16376","0.16376" +"GO:0072350","tricarboxylic acid metabolic process",16,9,7.18,343,"0.2520","0.16484","0.16484" +"GO:0031333","negative regulation of protein complex a...",8,5,3.59,378,"0.2577","0.16592","0.16592" +"GO:0030587","sorocarp development",7,4,3.14,468,"0.3890","0.16765","0.16765" +"GO:0090702","non-reproductive fruiting body developme...",7,4,3.14,469,"0.3890","0.16765","0.16765" +"GO:0099120","socially cooperative development",7,4,3.14,470,"0.3890","0.16765","0.16765" +"GO:0006777","Mo-molybdopterin cofactor biosynthetic p...",4,3,1.8,311,"0.2397","0.16831","0.16831" +"GO:0019720","Mo-molybdopterin cofactor metabolic proc...",4,3,1.8,312,"0.2397","0.16831","0.16831" +"GO:0043545","molybdopterin cofactor metabolic process",4,3,1.8,313,"0.2397","0.16831","0.16831" +"GO:0051189","prosthetic group metabolic process",4,3,1.8,314,"0.2397","0.16831","0.16831" +"GO:0071804","cellular potassium ion transport",11,6,4.94,439,"0.3635","0.16861","0.16861" +"GO:0071805","potassium ion transmembrane transport",11,6,4.94,440,"0.3635","0.16861","0.16861" +"GO:0009152","purine ribonucleotide biosynthetic proce...",47,22,21.09,678,"0.4501","0.16872","0.16872" +"GO:0009260","ribonucleotide biosynthetic process",47,22,21.09,679,"0.4501","0.16872","0.16872" +"GO:0046390","ribose phosphate biosynthetic process",47,22,21.09,680,"0.4501","0.16872","0.16872" +"GO:0034762","regulation of transmembrane transport",29,14,13.01,665,"0.4255","0.17162","0.17162" +"GO:0006090","pyruvate metabolic process",15,8,6.73,426,"0.3425","0.17568","0.17568" +"GO:0007033","vacuole organization",14,5,6.28,1349,"0.8312","0.17581","0.17581" +"GO:0006835","dicarboxylic acid transport",6,4,2.69,354,"0.2530","0.17712","0.17712" +"GO:0010720","positive regulation of cell development",22,10,9.87,797,"0.5607","0.17716","0.17716" +"GO:0010827","regulation of glucose transmembrane tran...",5,3,2.24,493,"0.4045","0.17860","0.17860" +"GO:1904659","glucose transmembrane transport",5,3,2.24,494,"0.4045","0.17860","0.17860" +"GO:0006119","oxidative phosphorylation",16,8,7.18,669,"0.4330","0.17880","0.17880" +"GO:0055065","metal ion homeostasis",29,17,13.01,199,"0.0956","0.18064","0.18064" +"GO:0010656","negative regulation of muscle cell apopt...",10,4,4.49,1098,"0.7318","0.18192","0.18192" +"GO:0010658","striated muscle cell apoptotic process",10,4,4.49,1099,"0.7318","0.18192","0.18192" +"GO:0010659","cardiac muscle cell apoptotic process",10,4,4.49,1100,"0.7318","0.18192","0.18192" +"GO:0010662","regulation of striated muscle cell apopt...",10,4,4.49,1101,"0.7318","0.18192","0.18192" +"GO:0010664","negative regulation of striated muscle c...",10,4,4.49,1102,"0.7318","0.18192","0.18192" +"GO:0010665","regulation of cardiac muscle cell apopto...",10,4,4.49,1103,"0.7318","0.18192","0.18192" +"GO:0010667","negative regulation of cardiac muscle ce...",10,4,4.49,1104,"0.7318","0.18192","0.18192" +"GO:0042698","ovulation cycle",10,3,4.49,1812,"0.8995","0.18192","0.18192" +"GO:1903902","positive regulation of viral life cycle",10,3,4.49,1813,"0.8995","0.18192","0.18192" +"GO:0006446","regulation of translational initiation",4,4,1.8,89,"0.0404","0.00172","0.18228" +"GO:0006855","drug transmembrane transport",7,3,3.14,1028,"0.6814","0.18276","0.18276" +"GO:0015807","L-amino acid transport",7,3,3.14,1029,"0.6814","0.18276","0.18276" +"GO:1902475","L-alpha-amino acid transmembrane transpo...",7,3,3.14,1030,"0.6814","0.18276","0.18276" +"GO:0034308","primary alcohol metabolic process",7,5,3.14,259,"0.1510","0.18287","0.18287" +"GO:0009066","aspartate family amino acid metabolic pr...",4,3,1.8,315,"0.2397","0.18306","0.18306" +"GO:0009067","aspartate family amino acid biosynthetic...",4,3,1.8,316,"0.2397","0.18306","0.18306" +"GO:2001238","positive regulation of extrinsic apoptot...",3,2,1.35,562,"0.4234","0.18444","0.18444" +"GO:0007044","cell-substrate junction assembly",3,2,1.35,563,"0.4234","0.18586","0.18586" +"GO:0007045","cell-substrate adherens junction assembl...",3,2,1.35,564,"0.4234","0.18586","0.18586" +"GO:0008360","regulation of cell shape",3,2,1.35,565,"0.4234","0.18586","0.18586" +"GO:0010810","regulation of cell-substrate adhesion",3,2,1.35,566,"0.4234","0.18586","0.18586" +"GO:0032231","regulation of actin filament bundle asse...",3,2,1.35,567,"0.4234","0.18586","0.18586" +"GO:0048041","focal adhesion assembly",3,2,1.35,568,"0.4234","0.18586","0.18586" +"GO:0046545","development of primary female sexual cha...",4,2,1.8,838,"0.6071","0.18620","0.18620" +"GO:0046660","female sex differentiation",4,2,1.8,839,"0.6071","0.18620","0.18620" +"GO:0006801","superoxide metabolic process",4,2,1.8,840,"0.6071","0.18730","0.18730" +"GO:0007018","microtubule-based movement",31,11,13.91,1762,"0.8934","0.18776","0.18776" +"GO:0035384","thioester biosynthetic process",4,3,1.8,317,"0.2397","0.18799","0.18799" +"GO:0071616","acyl-CoA biosynthetic process",4,3,1.8,318,"0.2397","0.18799","0.18799" +"GO:1900006","positive regulation of dendrite developm...",3,0,1.35,2640,"1.0000","0.18841","0.18841" +"GO:0070841","inclusion body assembly",6,2,2.69,1585,"0.8352","0.19056","0.19056" +"GO:0090083","regulation of inclusion body assembly",6,2,2.69,1586,"0.8352","0.19056","0.19056" +"GO:0090084","negative regulation of inclusion body as...",6,2,2.69,1587,"0.8352","0.19056","0.19056" +"GO:0006664","glycolipid metabolic process",10,5,4.49,709,"0.4924","0.19203","0.19203" +"GO:1903509","liposaccharide metabolic process",10,5,4.49,710,"0.4924","0.19203","0.19203" +"GO:0042773","ATP synthesis coupled electron transport",13,7,5.83,435,"0.3525","0.19542","0.19542" +"GO:0000041","transition metal ion transport",7,5,3.14,260,"0.1510","0.19643","0.19643" +"GO:0005976","polysaccharide metabolic process",9,6,4.04,266,"0.1635","0.19667","0.19667" +"GO:0019627","urea metabolic process",3,2,1.35,569,"0.4234","0.19751","0.19751" +"GO:0019359","nicotinamide nucleotide biosynthetic pro...",17,9,7.63,421,"0.3332","0.19808","0.19808" +"GO:0019363","pyridine nucleotide biosynthetic process",17,9,7.63,422,"0.3332","0.19808","0.19808" +"GO:0010286","heat acclimation",4,2,1.8,841,"0.6071","0.19856","0.19856" +"GO:0010803","regulation of tumor necrosis factor-medi...",4,2,1.8,842,"0.6071","0.19856","0.19856" +"GO:0032069","regulation of nuclease activity",4,2,1.8,843,"0.6071","0.19856","0.19856" +"GO:0032075","positive regulation of nuclease activity",4,2,1.8,844,"0.6071","0.19856","0.19856" +"GO:0032637","interleukin-8 production",4,2,1.8,845,"0.6071","0.19856","0.19856" +"GO:0032677","regulation of interleukin-8 production",4,2,1.8,846,"0.6071","0.19856","0.19856" +"GO:0032757","positive regulation of interleukin-8 pro...",4,2,1.8,847,"0.6071","0.19856","0.19856" +"GO:0033209","tumor necrosis factor-mediated signaling...",4,2,1.8,848,"0.6071","0.19856","0.19856" +"GO:0060699","regulation of endoribonuclease activity",4,2,1.8,849,"0.6071","0.19856","0.19856" +"GO:0060700","regulation of ribonuclease activity",4,2,1.8,850,"0.6071","0.19856","0.19856" +"GO:0070370","cellular heat acclimation",4,2,1.8,851,"0.6071","0.19856","0.19856" +"GO:1902380","positive regulation of endoribonuclease ...",4,2,1.8,852,"0.6071","0.19856","0.19856" +"GO:1903265","positive regulation of tumor necrosis fa...",4,2,1.8,853,"0.6071","0.19856","0.19856" +"GO:0061025","membrane fusion",5,4,2.24,245,"0.1298","0.20021","0.20021" +"GO:0072331","signal transduction by p53 class mediato...",6,3,2.69,752,"0.5561","0.20172","0.20172" +"GO:0006839","mitochondrial transport",25,11,11.22,961,"0.6116","0.20307","0.20307" +"GO:0008284","positive regulation of cell proliferatio...",16,9,7.18,344,"0.2520","0.20374","0.20374" +"GO:0016999","antibiotic metabolic process",19,10,8.53,419,"0.3244","0.20416","0.20416" +"GO:0006662","glycerol ether metabolic process",3,2,1.35,570,"0.4234","0.20827","0.20827" +"GO:0018904","ether metabolic process",3,2,1.35,571,"0.4234","0.20827","0.20827" +"GO:0018212","peptidyl-tyrosine modification",8,4,3.59,732,"0.5202","0.20840","0.20840" +"GO:0071478","cellular response to radiation",10,5,4.49,711,"0.4924","0.20886","0.20886" +"GO:0007016","cytoskeletal anchoring at plasma membran...",3,1,1.35,1355,"0.8327","0.20982","0.20982" +"GO:0044283","small molecule biosynthetic process",71,38,31.86,146,"0.0865","0.21012","0.21012" +"GO:1901615","organic hydroxy compound metabolic proce...",40,22,17.95,223,"0.1279","0.21069","0.21069" +"GO:0036473","cell death in response to oxidative stre...",15,5,6.73,1728,"0.8784","0.21106","0.21106" +"GO:0071236","cellular response to antibiotic",15,5,6.73,1729,"0.8784","0.21106","0.21106" +"GO:0090100","positive regulation of transmembrane rec...",4,3,1.8,319,"0.2397","0.21117","0.21117" +"GO:0016079","synaptic vesicle exocytosis",4,3,1.8,320,"0.2397","0.21267","0.21267" +"GO:1902903","regulation of supramolecular fiber organ...",30,14,13.46,704,"0.4921","0.21285","0.21285" +"GO:0032526","response to retinoic acid",3,2,1.35,572,"0.4234","0.21328","0.21328" +"GO:0030509","BMP signaling pathway",5,3,2.24,495,"0.4045","0.21626","0.21626" +"GO:0090101","negative regulation of transmembrane rec...",5,3,2.24,496,"0.4045","0.21626","0.21626" +"GO:0090288","negative regulation of cellular response...",5,3,2.24,497,"0.4045","0.21626","0.21626" +"GO:0050764","regulation of phagocytosis",12,4,5.39,1705,"0.8643","0.21690","0.21690" +"GO:0090287","regulation of cellular response to growt...",12,5,5.39,1059,"0.6930","0.21690","0.21690" +"GO:0007186","G protein-coupled receptor signaling pat...",97,48,43.53,284,"0.2040","0.21992","0.21992" +"GO:0034599","cellular response to oxidative stress",20,7,8.98,1718,"0.8687","0.22029","0.22029" +"GO:0006875","cellular metal ion homeostasis",28,16,12.57,251,"0.1313","0.22053","0.22053" +"GO:0030705","cytoskeleton-dependent intracellular tra...",21,7,9.42,1833,"0.9027","0.22097","0.22097" +"GO:0006851","mitochondrial calcium ion transmembrane ...",3,2,1.35,573,"0.4234","0.22300","0.22300" +"GO:0036444","calcium import into the mitochondrion",3,2,1.35,574,"0.4234","0.22300","0.22300" +"GO:0051560","mitochondrial calcium ion homeostasis",3,2,1.35,575,"0.4234","0.22300","0.22300" +"GO:0031334","positive regulation of protein complex a...",21,8,9.42,1300,"0.8008","0.22314","0.22314" +"GO:0032273","positive regulation of protein polymeriz...",21,8,9.42,1301,"0.8008","0.22314","0.22314" +"GO:0045185","maintenance of protein location",9,5,4.04,449,"0.3755","0.22437","0.22437" +"GO:0032787","monocarboxylic acid metabolic process",51,29,22.89,121,"0.0556","0.01829","0.22591" +"GO:0006091","generation of precursor metabolites and ...",53,30,23.79,122,"0.0557","0.01956","0.22592" +"GO:0042533","tumor necrosis factor biosynthetic proce...",3,1,1.35,1356,"0.8327","0.22678","0.22678" +"GO:0042534","regulation of tumor necrosis factor bios...",3,1,1.35,1357,"0.8327","0.22678","0.22678" +"GO:0010639","negative regulation of organelle organiz...",16,9,7.18,345,"0.2520","0.22684","0.22684" +"GO:1901800","positive regulation of proteasomal prote...",6,3,2.69,753,"0.5561","0.22768","0.22768" +"GO:1903052","positive regulation of proteolysis invol...",6,3,2.69,754,"0.5561","0.22768","0.22768" +"GO:1903364","positive regulation of cellular protein ...",6,3,2.69,755,"0.5561","0.22768","0.22768" +"GO:0009308","amine metabolic process",14,8,6.28,361,"0.2550","0.22846","0.22846" +"GO:0044106","cellular amine metabolic process",14,8,6.28,362,"0.2550","0.22846","0.22846" +"GO:0051703","intraspecies interaction between organis...",8,4,3.59,733,"0.5202","0.22889","0.22889" +"GO:0002697","regulation of immune effector process",13,5,5.83,1229,"0.7700","0.22902","0.22902" +"GO:0051261","protein depolymerization",13,6,5.83,801,"0.5699","0.22902","0.22902" +"GO:0030301","cholesterol transport",4,3,1.8,321,"0.2397","0.23029","0.23029" +"GO:0032366","intracellular sterol transport",4,3,1.8,322,"0.2397","0.23029","0.23029" +"GO:0051259","protein complex oligomerization",24,12,10.77,457,"0.3797","0.23059","0.23059" +"GO:0002443","leukocyte mediated immunity",13,5,5.83,1230,"0.7700","0.23362","0.23362" +"GO:0021549","cerebellum development",13,4,5.83,1844,"0.9062","0.23362","0.23362" +"GO:0022037","metencephalon development",13,4,5.83,1845,"0.9062","0.23362","0.23362" +"GO:0030902","hindbrain development",13,4,5.83,1846,"0.9062","0.23362","0.23362" +"GO:0045834","positive regulation of lipid metabolic p...",6,4,2.69,355,"0.2530","0.23457","0.23457" +"GO:0030808","regulation of nucleotide biosynthetic pr...",5,3,2.24,498,"0.4045","0.23661","0.23661" +"GO:0032024","positive regulation of insulin secretion",5,3,2.24,499,"0.4045","0.23661","0.23661" +"GO:0051193","regulation of cofactor metabolic process",5,3,2.24,500,"0.4045","0.23661","0.23661" +"GO:0051196","regulation of coenzyme metabolic process",5,3,2.24,501,"0.4045","0.23661","0.23661" +"GO:1900371","regulation of purine nucleotide biosynth...",5,3,2.24,502,"0.4045","0.23661","0.23661" +"GO:0006733","oxidoreduction coenzyme metabolic proces...",26,15,11.67,248,"0.1310","0.23735","0.23735" +"GO:0048167","regulation of synaptic plasticity",8,5,3.59,379,"0.2577","0.23853","0.23853" +"GO:0050796","regulation of insulin secretion",8,5,3.59,380,"0.2577","0.23853","0.23853" +"GO:0060996","dendritic spine development",8,5,3.59,381,"0.2577","0.23853","0.23853" +"GO:0060998","regulation of dendritic spine developmen...",8,5,3.59,382,"0.2577","0.23853","0.23853" +"GO:0008016","regulation of heart contraction",18,13,8.08,30,"0.0175","0.01679","0.23873" +"GO:0043269","regulation of ion transport",32,15,14.36,697,"0.4778","0.23930","0.23930" +"GO:0045862","positive regulation of proteolysis",15,5,6.73,1730,"0.8784","0.24012","0.24012" +"GO:0009266","response to temperature stimulus",29,9,13.01,2187,"0.9570","0.24081","0.24081" +"GO:0001906","cell killing",9,3,4.04,1644,"0.8492","0.24209","0.24209" +"GO:0001909","leukocyte mediated cytotoxicity",9,3,4.04,1645,"0.8492","0.24209","0.24209" +"GO:0001910","regulation of leukocyte mediated cytotox...",9,3,4.04,1646,"0.8492","0.24209","0.24209" +"GO:0001912","positive regulation of leukocyte mediate...",9,3,4.04,1647,"0.8492","0.24209","0.24209" +"GO:0002449","lymphocyte mediated immunity",9,3,4.04,1648,"0.8492","0.24209","0.24209" +"GO:0002703","regulation of leukocyte mediated immunit...",9,3,4.04,1649,"0.8492","0.24209","0.24209" +"GO:0002705","positive regulation of leukocyte mediate...",9,3,4.04,1650,"0.8492","0.24209","0.24209" +"GO:0002706","regulation of lymphocyte mediated immuni...",9,3,4.04,1651,"0.8492","0.24209","0.24209" +"GO:0002708","positive regulation of lymphocyte mediat...",9,3,4.04,1652,"0.8492","0.24209","0.24209" +"GO:0007040","lysosome organization",9,3,4.04,1653,"0.8492","0.24209","0.24209" +"GO:0007608","sensory perception of smell",9,3,4.04,1654,"0.8492","0.24209","0.24209" +"GO:0031341","regulation of cell killing",9,3,4.04,1655,"0.8492","0.24209","0.24209" +"GO:0031343","positive regulation of cell killing",9,3,4.04,1656,"0.8492","0.24209","0.24209" +"GO:0044788","modulation by host of viral process",9,3,4.04,1657,"0.8492","0.24209","0.24209" +"GO:0044794","positive regulation by host of viral pro...",9,3,4.04,1658,"0.8492","0.24209","0.24209" +"GO:0044827","modulation by host of viral genome repli...",9,3,4.04,1659,"0.8492","0.24209","0.24209" +"GO:0044829","positive regulation by host of viral gen...",9,3,4.04,1660,"0.8492","0.24209","0.24209" +"GO:0045070","positive regulation of viral genome repl...",9,3,4.04,1661,"0.8492","0.24209","0.24209" +"GO:0046777","protein autophosphorylation",9,3,4.04,1662,"0.8492","0.24209","0.24209" +"GO:0050766","positive regulation of phagocytosis",9,2,4.04,2212,"0.9611","0.24209","0.24209" +"GO:0061635","regulation of protein complex stability",9,3,4.04,1663,"0.8492","0.24209","0.24209" +"GO:0080171","lytic vacuole organization",9,3,4.04,1664,"0.8492","0.24209","0.24209" +"GO:1905710","positive regulation of membrane permeabi...",9,3,4.04,1665,"0.8492","0.24209","0.24209" +"GO:1901565","organonitrogen compound catabolic proces...",89,39,39.94,966,"0.6215","0.24411","0.24411" +"GO:0009116","nucleoside metabolic process",18,10,8.08,338,"0.2486","0.24418","0.24418" +"GO:1901657","glycosyl compound metabolic process",18,10,8.08,339,"0.2486","0.24418","0.24418" +"GO:0001763","morphogenesis of a branching structure",5,3,2.24,503,"0.4045","0.24435","0.24435" +"GO:0009166","nucleotide catabolic process",17,10,7.63,279,"0.1799","0.24465","0.24465" +"GO:1901292","nucleoside phosphate catabolic process",17,10,7.63,280,"0.1799","0.24465","0.24465" +"GO:0030260","entry into host cell",4,1,1.8,1867,"0.9079","0.24487","0.24487" +"GO:0044409","entry into host",4,1,1.8,1868,"0.9079","0.24487","0.24487" +"GO:0046718","viral entry into host cell",4,1,1.8,1869,"0.9079","0.24487","0.24487" +"GO:0051806","entry into cell of other organism involv...",4,1,1.8,1870,"0.9079","0.24487","0.24487" +"GO:0051828","entry into other organism involved in sy...",4,1,1.8,1871,"0.9079","0.24487","0.24487" +"GO:0035459","cargo loading into vesicle",3,1,1.35,1358,"0.8327","0.24635","0.24635" +"GO:0055082","cellular chemical homeostasis",34,19,15.26,247,"0.1304","0.24725","0.24725" +"GO:0045785","positive regulation of cell adhesion",6,3,2.69,756,"0.5561","0.24792","0.24792" +"GO:0007423","sensory organ development",47,18,21.09,1698,"0.8565","0.25191","0.25191" +"GO:0032640","tumor necrosis factor production",4,1,1.8,1872,"0.9079","0.25220","0.25220" +"GO:0032680","regulation of tumor necrosis factor prod...",4,1,1.8,1873,"0.9079","0.25220","0.25220" +"GO:0071706","tumor necrosis factor superfamily cytoki...",4,1,1.8,1874,"0.9079","0.25220","0.25220" +"GO:1901796","regulation of signal transduction by p53...",4,2,1.8,854,"0.6071","0.25220","0.25220" +"GO:1903555","regulation of tumor necrosis factor supe...",4,1,1.8,1875,"0.9079","0.25220","0.25220" +"GO:0006885","regulation of pH",6,4,2.69,356,"0.2530","0.25465","0.25465" +"GO:0055067","monovalent inorganic cation homeostasis",6,4,2.69,357,"0.2530","0.25465","0.25465" +"GO:0090277","positive regulation of peptide hormone s...",6,3,2.69,757,"0.5561","0.25659","0.25659" +"GO:0051865","protein autoubiquitination",4,2,1.8,855,"0.6071","0.25831","0.25831" +"GO:0015718","monocarboxylic acid transport",8,5,3.59,383,"0.2577","0.26016","0.26016" +"GO:0009112","nucleobase metabolic process",3,2,1.35,576,"0.4234","0.26217","0.26217" +"GO:0046112","nucleobase biosynthetic process",3,2,1.35,577,"0.4234","0.26217","0.26217" +"GO:0010842","retina layer formation",4,3,1.8,323,"0.2397","0.26399","0.26399" +"GO:0010959","regulation of metal ion transport",18,9,8.08,535,"0.4177","0.26482","0.26482" +"GO:0042493","response to drug",58,24,26.03,1213,"0.7494","0.26543","0.26543" +"GO:0052547","regulation of peptidase activity",13,8,5.83,271,"0.1758","0.26594","0.26594" +"GO:0010243","response to organonitrogen compound",50,20,22.44,1286,"0.8002","0.26738","0.26738" +"GO:0006629","lipid metabolic process",172,92,77.19,26,"0.0117","0.01590","0.26779" +"GO:0010968","regulation of microtubule nucleation",7,2,3.14,1769,"0.8967","0.26785","0.26785" +"GO:0060236","regulation of mitotic spindle organizati...",7,2,3.14,1770,"0.8967","0.26785","0.26785" +"GO:0090063","positive regulation of microtubule nucle...",7,2,3.14,1771,"0.8967","0.26785","0.26785" +"GO:0090169","regulation of spindle assembly",7,2,3.14,1772,"0.8967","0.26785","0.26785" +"GO:0090224","regulation of spindle organization",7,2,3.14,1773,"0.8967","0.26785","0.26785" +"GO:1901673","regulation of mitotic spindle assembly",7,2,3.14,1774,"0.8967","0.26785","0.26785" +"GO:0010257","NADH dehydrogenase complex assembly",10,7,4.49,204,"0.1001","0.26796","0.26796" +"GO:0032981","mitochondrial respiratory chain complex ...",10,7,4.49,205,"0.1001","0.26796","0.26796" +"GO:0030149","sphingolipid catabolic process",4,3,1.8,324,"0.2397","0.26799","0.26799" +"GO:0046466","membrane lipid catabolic process",4,3,1.8,325,"0.2397","0.26799","0.26799" +"GO:0006066","alcohol metabolic process",23,13,10.32,277,"0.1793","0.26908","0.26908" +"GO:0010466","negative regulation of peptidase activit...",9,5,4.04,450,"0.3755","0.26938","0.26938" +"GO:1990542","mitochondrial transmembrane transport",13,6,5.83,802,"0.5699","0.27002","0.27002" +"GO:0045597","positive regulation of cell differentiat...",44,21,19.75,533,"0.4071","0.12623","0.27064" +"GO:0006695","cholesterol biosynthetic process",3,2,1.35,578,"0.4234","0.27103","0.27103" +"GO:0008203","cholesterol metabolic process",3,2,1.35,579,"0.4234","0.27103","0.27103" +"GO:0019218","regulation of steroid metabolic process",3,2,1.35,580,"0.4234","0.27103","0.27103" +"GO:0050810","regulation of steroid biosynthetic proce...",3,2,1.35,581,"0.4234","0.27103","0.27103" +"GO:0106118","regulation of sterol biosynthetic proces...",3,2,1.35,582,"0.4234","0.27103","0.27103" +"GO:1902930","regulation of alcohol biosynthetic proce...",3,2,1.35,583,"0.4234","0.27103","0.27103" +"GO:0051100","negative regulation of binding",8,3,3.59,1249,"0.7782","0.27149","0.27149" +"GO:0048878","chemical homeostasis",56,29,25.13,278,"0.1798","0.27152","0.27152" +"GO:0051702","interaction with symbiont",10,3,4.49,1814,"0.8995","0.27163","0.27163" +"GO:0051851","modification by host of symbiont morphol...",10,3,4.49,1815,"0.8995","0.27163","0.27163" +"GO:0010821","regulation of mitochondrion organization",9,3,4.04,1666,"0.8492","0.27279","0.27279" +"GO:0010970","transport along microtubule",20,6,8.98,2122,"0.9442","0.27365","0.27365" +"GO:0034404","nucleobase-containing small molecule bio...",20,11,8.98,337,"0.2449","0.27365","0.27365" +"GO:0050769","positive regulation of neurogenesis",20,8,8.98,1210,"0.7453","0.27365","0.27365" +"GO:0099111","microtubule-based transport",20,6,8.98,2123,"0.9442","0.27365","0.27365" +"GO:0010799","regulation of peptidyl-threonine phospho...",3,2,1.35,584,"0.4234","0.27409","0.27409" +"GO:0010800","positive regulation of peptidyl-threonin...",3,2,1.35,585,"0.4234","0.27409","0.27409" +"GO:0018107","peptidyl-threonine phosphorylation",3,2,1.35,586,"0.4234","0.27409","0.27409" +"GO:0006631","fatty acid metabolic process",31,19,13.91,103,"0.0480","0.01143","0.27695" +"GO:0009584","detection of visible light",8,5,3.59,384,"0.2577","0.27727","0.27727" +"GO:0061077","chaperone-mediated protein folding",21,8,9.42,1302,"0.8008","0.27767","0.27767" +"GO:0045103","intermediate filament-based process",3,2,1.35,587,"0.4234","0.27799","0.27799" +"GO:0045104","intermediate filament cytoskeleton organ...",3,2,1.35,588,"0.4234","0.27799","0.27799" +"GO:0009435","NAD biosynthetic process",5,4,2.24,246,"0.1298","0.27916","0.27916" +"GO:0006873","cellular ion homeostasis",30,17,13.46,249,"0.1312","0.28221","0.28221" +"GO:0030003","cellular cation homeostasis",30,17,13.46,250,"0.1312","0.28221","0.28221" +"GO:0070588","calcium ion transmembrane transport",18,10,8.08,340,"0.2486","0.28248","0.28248" +"GO:0008585","female gonad development",3,1,1.35,1359,"0.8327","0.28360","0.28360" +"GO:0009109","coenzyme catabolic process",3,1,1.35,1360,"0.8327","0.28360","0.28360" +"GO:0051017","actin filament bundle assembly",5,3,2.24,504,"0.4045","0.28545","0.28545" +"GO:0061572","actin filament bundle organization",5,3,2.24,505,"0.4045","0.28545","0.28545" +"GO:0043161","proteasome-mediated ubiquitin-dependent ...",19,7,8.53,1336,"0.8255","0.29083","0.29083" +"GO:0015893","drug transport",13,6,5.83,803,"0.5699","0.29284","0.29284" +"GO:0070301","cellular response to hydrogen peroxide",13,3,5.83,2320,"0.9729","0.29284","0.29284" +"GO:1900407","regulation of cellular response to oxida...",13,4,5.83,1847,"0.9062","0.29284","0.29284" +"GO:1900408","negative regulation of cellular response...",13,4,5.83,1848,"0.9062","0.29284","0.29284" +"GO:1903201","regulation of oxidative stress-induced c...",13,4,5.83,1849,"0.9062","0.29284","0.29284" +"GO:1903202","negative regulation of oxidative stress-...",13,4,5.83,1850,"0.9062","0.29284","0.29284" +"GO:0006766","vitamin metabolic process",12,7,5.39,366,"0.2574","0.29286","0.29286" +"GO:0007127","meiosis I",4,0,1.8,2641,"1.0000","0.29316","0.29316" +"GO:0010632","regulation of epithelial cell migration",4,2,1.8,856,"0.6071","0.29353","0.29353" +"GO:0010634","positive regulation of epithelial cell m...",4,2,1.8,857,"0.6071","0.29353","0.29353" +"GO:0050920","regulation of chemotaxis",4,2,1.8,858,"0.6071","0.29353","0.29353" +"GO:0032386","regulation of intracellular transport",18,8,8.08,833,"0.6049","0.29354","0.29354" +"GO:0030510","regulation of BMP signaling pathway",4,2,1.8,859,"0.6071","0.29390","0.29390" +"GO:0034765","regulation of ion transmembrane transpor...",24,11,10.77,746,"0.5415","0.29397","0.29397" +"GO:1903332","regulation of protein folding",9,2,4.04,2213,"0.9611","0.29453","0.29453" +"GO:0019751","polyol metabolic process",9,4,4.04,978,"0.6361","0.29540","0.29540" +"GO:0001941","postsynaptic membrane organization",5,3,2.24,506,"0.4045","0.29548","0.29548" +"GO:0031644","regulation of neurological system proces...",5,3,2.24,507,"0.4045","0.29548","0.29548" +"GO:0035418","protein localization to synapse",5,3,2.24,508,"0.4045","0.29548","0.29548" +"GO:0098693","regulation of synaptic vesicle cycle",5,3,2.24,509,"0.4045","0.29548","0.29548" +"GO:0099054","presynapse assembly",5,3,2.24,510,"0.4045","0.29548","0.29548" +"GO:0099172","presynapse organization",5,3,2.24,511,"0.4045","0.29548","0.29548" +"GO:0002699","positive regulation of immune effector p...",12,4,5.39,1706,"0.8643","0.29607","0.29607" +"GO:0032570","response to progesterone",12,2,5.39,2467,"0.9916","0.29607","0.29607" +"GO:0044843","cell cycle G1/S phase transition",12,5,5.39,1060,"0.6930","0.29607","0.29607" +"GO:0051962","positive regulation of nervous system de...",23,10,10.32,974,"0.6325","0.29622","0.29622" +"GO:0016569","covalent chromatin modification",24,7,10.77,2240,"0.9633","0.29656","0.29656" +"GO:0006096","glycolytic process",11,5,4.94,819,"0.5999","0.29704","0.29704" +"GO:0006757","ATP generation from ADP",11,5,4.94,820,"0.5999","0.29704","0.29704" +"GO:0009135","purine nucleoside diphosphate metabolic ...",11,5,4.94,821,"0.5999","0.29704","0.29704" +"GO:0009179","purine ribonucleoside diphosphate metabo...",11,5,4.94,822,"0.5999","0.29704","0.29704" +"GO:0009185","ribonucleoside diphosphate metabolic pro...",11,5,4.94,823,"0.5999","0.29704","0.29704" +"GO:0042866","pyruvate biosynthetic process",11,5,4.94,824,"0.5999","0.29704","0.29704" +"GO:0046031","ADP metabolic process",11,5,4.94,825,"0.5999","0.29704","0.29704" +"GO:1903522","regulation of blood circulation",20,14,8.98,38,"0.0204","0.02878","0.29713" +"GO:0051092","positive regulation of NF-kappaB transcr...",3,2,1.35,589,"0.4234","0.29760","0.29760" +"GO:0097201","negative regulation of transcription fro...",3,1,1.35,1361,"0.8327","0.29760","0.29760" +"GO:0006140","regulation of nucleotide metabolic proce...",7,3,3.14,1031,"0.6814","0.29791","0.29791" +"GO:1900542","regulation of purine nucleotide metaboli...",7,3,3.14,1032,"0.6814","0.29791","0.29791" +"GO:1903321","negative regulation of protein modificat...",7,3,3.14,1033,"0.6814","0.29791","0.29791" +"GO:0007034","vacuolar transport",18,5,8.08,2206,"0.9586","0.30058","0.30058" +"GO:0010817","regulation of hormone levels",34,17,15.26,420,"0.3318","0.21085","0.30295" +"GO:0009628","response to abiotic stimulus",83,39,37.25,462,"0.3882","0.16900","0.30356" +"GO:0051348","negative regulation of transferase activ...",18,10,8.08,341,"0.2486","0.04037","0.30456" +"GO:0018108","peptidyl-tyrosine phosphorylation",6,3,2.69,758,"0.5561","0.30873","0.30873" +"GO:0021675","nerve development",3,2,1.35,590,"0.4234","0.30978","0.30978" +"GO:0030308","negative regulation of cell growth",10,6,4.49,388,"0.2586","0.31121","0.31121" +"GO:0042430","indole-containing compound metabolic pro...",6,4,2.69,358,"0.2530","0.31123","0.31123" +"GO:0043281","regulation of cysteine-type endopeptidas...",10,6,4.49,389,"0.2586","0.31303","0.31303" +"GO:0052548","regulation of endopeptidase activity",10,6,4.49,390,"0.2586","0.31303","0.31303" +"GO:2000116","regulation of cysteine-type endopeptidas...",10,6,4.49,391,"0.2586","0.31303","0.31303" +"GO:1990504","dense core granule exocytosis",3,2,1.35,591,"0.4234","0.31332","0.31332" +"GO:0034605","cellular response to heat",13,3,5.83,2321,"0.9729","0.31388","0.31388" +"GO:0006110","regulation of glycolytic process",4,2,1.8,860,"0.6071","0.31581","0.31581" +"GO:0010212","response to ionizing radiation",4,2,1.8,861,"0.6071","0.31581","0.31581" +"GO:0030811","regulation of nucleotide catabolic proce...",4,2,1.8,862,"0.6071","0.31581","0.31581" +"GO:0043470","regulation of carbohydrate catabolic pro...",4,2,1.8,863,"0.6071","0.31581","0.31581" +"GO:0045639","positive regulation of myeloid cell diff...",4,1,1.8,1876,"0.9079","0.31581","0.31581" +"GO:0045648","positive regulation of erythrocyte diffe...",4,1,1.8,1877,"0.9079","0.31581","0.31581" +"GO:1903708","positive regulation of hemopoiesis",4,1,1.8,1878,"0.9079","0.31581","0.31581" +"GO:2001169","regulation of ATP biosynthetic process",4,2,1.8,864,"0.6071","0.31581","0.31581" +"GO:0051235","maintenance of location",19,9,8.53,720,"0.5017","0.31721","0.31721" +"GO:0015697","quaternary ammonium group transport",4,1,1.8,1879,"0.9079","0.31890","0.31890" +"GO:0016310","phosphorylation",201,88,90.2,999,"0.6547","0.20421","0.31906" +"GO:0033157","regulation of intracellular protein tran...",9,3,4.04,1667,"0.8492","0.32024","0.32024" +"GO:0001913","T cell mediated cytotoxicity",8,2,3.59,2047,"0.9363","0.32030","0.32030" +"GO:0001914","regulation of T cell mediated cytotoxici...",8,2,3.59,2048,"0.9363","0.32030","0.32030" +"GO:0001916","positive regulation of T cell mediated c...",8,2,3.59,2049,"0.9363","0.32030","0.32030" +"GO:0002250","adaptive immune response",8,2,3.59,2050,"0.9363","0.32030","0.32030" +"GO:0002456","T cell mediated immunity",8,2,3.59,2051,"0.9363","0.32030","0.32030" +"GO:0002460","adaptive immune response based on somati...",8,2,3.59,2052,"0.9363","0.32030","0.32030" +"GO:0002709","regulation of T cell mediated immunity",8,2,3.59,2053,"0.9363","0.32030","0.32030" +"GO:0002711","positive regulation of T cell mediated i...",8,2,3.59,2054,"0.9363","0.32030","0.32030" +"GO:0002819","regulation of adaptive immune response",8,2,3.59,2055,"0.9363","0.32030","0.32030" +"GO:0002821","positive regulation of adaptive immune r...",8,2,3.59,2056,"0.9363","0.32030","0.32030" +"GO:0002822","regulation of adaptive immune response b...",8,2,3.59,2057,"0.9363","0.32030","0.32030" +"GO:0002824","positive regulation of adaptive immune r...",8,2,3.59,2058,"0.9363","0.32030","0.32030" +"GO:0006622","protein targeting to lysosome",8,2,3.59,2059,"0.9363","0.32030","0.32030" +"GO:0006623","protein targeting to vacuole",8,2,3.59,2060,"0.9363","0.32030","0.32030" +"GO:0010045","response to nickel cation",8,2,3.59,2061,"0.9363","0.32030","0.32030" +"GO:0016191","synaptic vesicle uncoating",8,2,3.59,2062,"0.9363","0.32030","0.32030" +"GO:0033120","positive regulation of RNA splicing",8,2,3.59,2063,"0.9363","0.32030","0.32030" +"GO:0044849","estrous cycle",8,2,3.59,2064,"0.9363","0.32030","0.32030" +"GO:0048026","positive regulation of mRNA splicing, vi...",8,2,3.59,2065,"0.9363","0.32030","0.32030" +"GO:0050685","positive regulation of mRNA processing",8,2,3.59,2066,"0.9363","0.32030","0.32030" +"GO:0061083","regulation of protein refolding",8,2,3.59,2067,"0.9363","0.32030","0.32030" +"GO:0061462","protein localization to lysosome",8,2,3.59,2068,"0.9363","0.32030","0.32030" +"GO:0061684","chaperone-mediated autophagy",8,2,3.59,2069,"0.9363","0.32030","0.32030" +"GO:0061738","late endosomal microautophagy",8,2,3.59,2070,"0.9363","0.32030","0.32030" +"GO:0061740","protein targeting to lysosome involved i...",8,2,3.59,2071,"0.9363","0.32030","0.32030" +"GO:0061741","chaperone-mediated protein transport inv...",8,2,3.59,2072,"0.9363","0.32030","0.32030" +"GO:0071211","protein targeting to vacuole involved in...",8,2,3.59,2073,"0.9363","0.32030","0.32030" +"GO:0072318","clathrin coat disassembly",8,2,3.59,2074,"0.9363","0.32030","0.32030" +"GO:0072319","vesicle uncoating",8,2,3.59,2075,"0.9363","0.32030","0.32030" +"GO:0072665","protein localization to vacuole",8,2,3.59,2076,"0.9363","0.32030","0.32030" +"GO:0072666","establishment of protein localization to...",8,2,3.59,2077,"0.9363","0.32030","0.32030" +"GO:0097212","lysosomal membrane organization",8,2,3.59,2078,"0.9363","0.32030","0.32030" +"GO:0097213","regulation of lysosomal membrane permeab...",8,2,3.59,2079,"0.9363","0.32030","0.32030" +"GO:0097214","positive regulation of lysosomal membran...",8,2,3.59,2080,"0.9363","0.32030","0.32030" +"GO:1903334","positive regulation of protein folding",8,2,3.59,2081,"0.9363","0.32030","0.32030" +"GO:1904592","positive regulation of protein refolding",8,2,3.59,2082,"0.9363","0.32030","0.32030" +"GO:1904764","chaperone-mediated autophagy translocati...",8,2,3.59,2083,"0.9363","0.32030","0.32030" +"GO:1990832","slow axonal transport",8,2,3.59,2084,"0.9363","0.32030","0.32030" +"GO:1990834","response to odorant",8,2,3.59,2085,"0.9363","0.32030","0.32030" +"GO:0042755","eating behavior",5,2,2.24,1127,"0.7422","0.32238","0.32238" +"GO:0060627","regulation of vesicle-mediated transport",29,11,13.01,1345,"0.8272","0.32268","0.32268" +"GO:0071356","cellular response to tumor necrosis fact...",5,2,2.24,1128,"0.7422","0.32290","0.32290" +"GO:0051186","cofactor metabolic process",82,51,36.8,2,"0.0010","0.00267","0.32320" +"GO:0008610","lipid biosynthetic process",68,35,30.52,262,"0.1623","0.32335","0.32335" +"GO:1904062","regulation of cation transmembrane trans...",23,11,10.32,686,"0.4674","0.32631","0.32631" +"GO:0009581","detection of external stimulus",21,14,9.42,70,"0.0364","0.01160","0.32635" +"GO:0009582","detection of abiotic stimulus",21,14,9.42,71,"0.0364","0.01160","0.32635" +"GO:0006643","membrane lipid metabolic process",18,9,8.08,536,"0.4177","0.32709","0.32709" +"GO:0006749","glutathione metabolic process",4,3,1.8,326,"0.2397","0.32789","0.32789" +"GO:0043010","camera-type eye development",31,13,13.91,1072,"0.6941","0.32939","0.32939" +"GO:0090092","regulation of transmembrane receptor pro...",10,6,4.49,392,"0.2586","0.32967","0.32967" +"GO:0043244","regulation of protein complex disassembl...",7,4,3.14,471,"0.3890","0.33016","0.33016" +"GO:1901698","response to nitrogen compound",52,21,23.34,1280,"0.7873","0.33116","0.33116" +"GO:0032434","regulation of proteasomal ubiquitin-depe...",4,3,1.8,327,"0.2397","0.33145","0.33145" +"GO:2000058","regulation of ubiquitin-dependent protei...",4,3,1.8,328,"0.2397","0.33145","0.33145" +"GO:0055013","cardiac muscle cell development",7,7,3.14,13,"0.0036","0.00047","0.33171" +"GO:0008089","anterograde axonal transport",3,2,1.35,592,"0.4234","0.33270","0.33270" +"GO:0055088","lipid homeostasis",6,3,2.69,759,"0.5561","0.33288","0.33288" +"GO:0007610","behavior",57,22,25.58,1713,"0.8644","0.33392","0.33392" +"GO:0072593","reactive oxygen species metabolic proces...",12,7,5.39,367,"0.2574","0.33620","0.33620" +"GO:0042775","mitochondrial ATP synthesis coupled elec...",11,5,4.94,826,"0.5999","0.33667","0.33667" +"GO:0006813","potassium ion transport",21,10,9.42,699,"0.4837","0.33777","0.33777" +"GO:0007215","glutamate receptor signaling pathway",9,4,4.04,979,"0.6361","0.33788","0.33788" +"GO:1905952","regulation of lipid localization",5,3,2.24,512,"0.4045","0.34009","0.34009" +"GO:0033108","mitochondrial respiratory chain complex ...",14,9,6.28,215,"0.1163","0.34168","0.34168" +"GO:0007015","actin filament organization",27,15,12.12,273,"0.1768","0.34195","0.34195" +"GO:0050804","modulation of chemical synaptic transmis...",25,13,11.22,409,"0.3011","0.34251","0.34251" +"GO:0099177","regulation of trans-synaptic signaling",25,13,11.22,410,"0.3011","0.34251","0.34251" +"GO:0062013","positive regulation of small molecule me...",6,3,2.69,760,"0.5561","0.34483","0.34483" +"GO:0071901","negative regulation of protein serine/th...",6,3,2.69,761,"0.5561","0.34483","0.34483" +"GO:0042542","response to hydrogen peroxide",17,6,7.63,1693,"0.8514","0.34612","0.34612" +"GO:0061041","regulation of wound healing",4,3,1.8,329,"0.2397","0.34689","0.34689" +"GO:0006555","methionine metabolic process",3,2,1.35,593,"0.4234","0.34730","0.34730" +"GO:0009086","methionine biosynthetic process",3,2,1.35,594,"0.4234","0.34730","0.34730" +"GO:0019509","L-methionine salvage from methylthioaden...",3,2,1.35,595,"0.4234","0.34730","0.34730" +"GO:0043102","amino acid salvage",3,2,1.35,596,"0.4234","0.34730","0.34730" +"GO:0071265","L-methionine biosynthetic process",3,2,1.35,597,"0.4234","0.34730","0.34730" +"GO:0071267","L-methionine salvage",3,2,1.35,598,"0.4234","0.34730","0.34730" +"GO:0044088","regulation of vacuole organization",3,2,1.35,599,"0.4234","0.34824","0.34824" +"GO:2000785","regulation of autophagosome assembly",3,2,1.35,600,"0.4234","0.34824","0.34824" +"GO:0034332","adherens junction organization",4,2,1.8,865,"0.6071","0.34872","0.34872" +"GO:0034333","adherens junction assembly",4,2,1.8,866,"0.6071","0.34872","0.34872" +"GO:1902905","positive regulation of supramolecular fi...",22,8,9.87,1638,"0.8466","0.35111","0.35111" +"GO:0008631","intrinsic apoptotic signaling pathway in...",6,2,2.69,1588,"0.8352","0.35432","0.35432" +"GO:0031397","negative regulation of protein ubiquitin...",6,3,2.69,762,"0.5561","0.35432","0.35432" +"GO:0043467","regulation of generation of precursor me...",6,2,2.69,1589,"0.8352","0.35432","0.35432" +"GO:1903578","regulation of ATP metabolic process",6,2,2.69,1590,"0.8352","0.35432","0.35432" +"GO:0015908","fatty acid transport",7,4,3.14,472,"0.3890","0.35455","0.35455" +"GO:0015909","long-chain fatty acid transport",7,4,3.14,473,"0.3890","0.35455","0.35455" +"GO:0001944","vasculature development",18,7,8.08,1244,"0.7719","0.35542","0.35542" +"GO:0048514","blood vessel morphogenesis",13,4,5.83,1851,"0.9062","0.35591","0.35591" +"GO:0043268","positive regulation of potassium ion tra...",3,2,1.35,601,"0.4234","0.35604","0.35604" +"GO:0019674","NAD metabolic process",7,5,3.14,261,"0.1510","0.35626","0.35626" +"GO:0061136","regulation of proteasomal protein catabo...",11,4,4.94,1306,"0.8072","0.35651","0.35651" +"GO:1903050","regulation of proteolysis involved in ce...",11,4,4.94,1307,"0.8072","0.35651","0.35651" +"GO:1903362","regulation of cellular protein catabolic...",11,4,4.94,1308,"0.8072","0.35651","0.35651" +"GO:0051094","positive regulation of developmental pro...",58,29,26.03,360,"0.2540","0.17750","0.35974" +"GO:0016053","organic acid biosynthetic process",41,21,18.4,348,"0.2523","0.36212","0.36212" +"GO:0046394","carboxylic acid biosynthetic process",41,21,18.4,349,"0.2523","0.36212","0.36212" +"GO:0070507","regulation of microtubule cytoskeleton o...",15,5,6.73,1731,"0.8784","0.36592","0.36592" +"GO:0060401","cytosolic calcium ion transport",8,5,3.59,385,"0.2577","0.36729","0.36729" +"GO:0001654","eye development",39,15,17.5,1579,"0.8349","0.36799","0.36799" +"GO:0048880","sensory system development",39,15,17.5,1580,"0.8349","0.36799","0.36799" +"GO:0150063","visual system development",39,15,17.5,1581,"0.8349","0.36799","0.36799" +"GO:2000045","regulation of G1/S transition of mitotic...",3,2,1.35,602,"0.4234","0.36801","0.36801" +"GO:0097435","supramolecular fiber organization",57,31,25.58,197,"0.0928","0.07010","0.37034" +"GO:0042537","benzene-containing compound metabolic pr...",4,3,1.8,330,"0.2397","0.37253","0.37253" +"GO:0006812","cation transport",138,67,61.93,285,"0.2103","0.00836","0.37260" +"GO:0006685","sphingomyelin catabolic process",3,2,1.35,603,"0.4234","0.37262","0.37262" +"GO:0098742","cell-cell adhesion via plasma-membrane a...",17,7,7.63,1078,"0.7069","0.37522","0.37522" +"GO:0006633","fatty acid biosynthetic process",14,7,6.28,675,"0.4501","0.37664","0.37664" +"GO:0043462","regulation of ATPase activity",8,3,3.59,1250,"0.7782","0.37786","0.37786" +"GO:0000082","G1/S transition of mitotic cell cycle",11,4,4.94,1309,"0.8072","0.37912","0.37912" +"GO:0010657","muscle cell apoptotic process",11,4,4.94,1310,"0.8072","0.37912","0.37912" +"GO:0010660","regulation of muscle cell apoptotic proc...",11,4,4.94,1311,"0.8072","0.37912","0.37912" +"GO:1903313","positive regulation of mRNA metabolic pr...",11,2,4.94,2412,"0.9859","0.38053","0.38053" +"GO:1905515","non-motile cilium assembly",4,3,1.8,331,"0.2397","0.38526","0.38526" +"GO:0097191","extrinsic apoptotic signaling pathway",14,7,6.28,676,"0.4501","0.38542","0.38542" +"GO:0001505","regulation of neurotransmitter levels",32,12,14.36,1642,"0.8470","0.38638","0.38638" +"GO:0050773","regulation of dendrite development",13,5,5.83,1231,"0.7700","0.38732","0.38732" +"GO:0070936","protein K48-linked ubiquitination",5,3,2.24,513,"0.4045","0.38904","0.38904" +"GO:0050830","defense response to Gram-positive bacter...",3,2,1.35,604,"0.4234","0.39007","0.39007" +"GO:0048881","mechanosensory lateral line system devel...",3,1,1.35,1362,"0.8327","0.39032","0.39032" +"GO:0048882","lateral line development",3,1,1.35,1363,"0.8327","0.39032","0.39032" +"GO:0048925","lateral line system development",3,1,1.35,1364,"0.8327","0.39032","0.39032" +"GO:0035239","tube morphogenesis",30,10,13.46,2011,"0.9300","0.39037","0.39037" +"GO:0006520","cellular amino acid metabolic process",62,27,27.82,973,"0.6324","0.39404","0.39404" +"GO:0006165","nucleoside diphosphate phosphorylation",12,5,5.39,1061,"0.6930","0.39409","0.39409" +"GO:0046939","nucleotide phosphorylation",12,5,5.39,1062,"0.6930","0.39409","0.39409" +"GO:0050808","synapse organization",22,13,9.87,224,"0.1292","0.10182","0.39426" +"GO:0006937","regulation of muscle contraction",11,6,4.94,441,"0.3635","0.39452","0.39452" +"GO:0090257","regulation of muscle system process",11,6,4.94,442,"0.3635","0.39452","0.39452" +"GO:0022409","positive regulation of cell-cell adhesio...",4,2,1.8,867,"0.6071","0.39495","0.39495" +"GO:0048754","branching morphogenesis of an epithelial...",4,2,1.8,868,"0.6071","0.39495","0.39495" +"GO:0061138","morphogenesis of a branching epithelium",4,2,1.8,869,"0.6071","0.39495","0.39495" +"GO:0003015","heart process",19,13,8.53,56,"0.0329","0.03358","0.39552" +"GO:0060047","heart contraction",19,13,8.53,57,"0.0329","0.03358","0.39552" +"GO:0050906","detection of stimulus involved in sensor...",8,4,3.59,734,"0.5202","0.39622","0.39622" +"GO:0010976","positive regulation of neuron projection...",10,3,4.49,1816,"0.8995","0.39654","0.39654" +"GO:1901700","response to oxygen-containing compound",78,31,35,1692,"0.8514","0.39695","0.39695" +"GO:0010927","cellular component assembly involved in ...",19,14,8.53,23,"0.0104","0.00163","0.39728" +"GO:0046148","pigment biosynthetic process",4,3,1.8,332,"0.2397","0.39733","0.39733" +"GO:0072528","pyrimidine-containing compound biosynthe...",5,2,2.24,1129,"0.7422","0.39812","0.39812" +"GO:0019933","cAMP-mediated signaling",7,3,3.14,1034,"0.6814","0.39902","0.39902" +"GO:0019935","cyclic-nucleotide-mediated signaling",7,3,3.14,1035,"0.6814","0.39902","0.39902" +"GO:0050954","sensory perception of mechanical stimulu...",6,3,2.69,763,"0.5561","0.39942","0.39942" +"GO:0034614","cellular response to reactive oxygen spe...",16,5,7.18,1978,"0.9138","0.39991","0.39991" +"GO:0022898","regulation of transmembrane transporter ...",21,9,9.42,1000,"0.6552","0.40026","0.40026" +"GO:0032409","regulation of transporter activity",21,9,9.42,1001,"0.6552","0.40026","0.40026" +"GO:0032412","regulation of ion transmembrane transpor...",21,9,9.42,1002,"0.6552","0.40026","0.40026" +"GO:0007568","aging",32,15,14.36,698,"0.4778","0.40075","0.40075" +"GO:0006665","sphingolipid metabolic process",9,5,4.04,451,"0.3755","0.40145","0.40145" +"GO:0021575","hindbrain morphogenesis",3,2,1.35,605,"0.4234","0.40157","0.40157" +"GO:0021587","cerebellum morphogenesis",3,2,1.35,606,"0.4234","0.40157","0.40157" +"GO:0072358","cardiovascular system development",19,7,8.53,1337,"0.8255","0.40195","0.40195" +"GO:0036503","ERAD pathway",15,4,6.73,2189,"0.9572","0.40262","0.40262" +"GO:0008645","hexose transmembrane transport",6,3,2.69,764,"0.5561","0.40262","0.40262" +"GO:0015749","monosaccharide transmembrane transport",6,3,2.69,765,"0.5561","0.40262","0.40262" +"GO:0034219","carbohydrate transmembrane transport",6,3,2.69,766,"0.5561","0.40262","0.40262" +"GO:2001024","negative regulation of response to drug",11,2,4.94,2413,"0.9859","0.40306","0.40306" +"GO:0002793","positive regulation of peptide secretion",9,3,4.04,1668,"0.8492","0.40408","0.40408" +"GO:0006684","sphingomyelin metabolic process",4,2,1.8,870,"0.6071","0.40496","0.40496" +"GO:0017015","regulation of transforming growth factor...",4,3,1.8,333,"0.2397","0.40518","0.40518" +"GO:0040019","positive regulation of embryonic develop...",4,3,1.8,334,"0.2397","0.40518","0.40518" +"GO:1903844","regulation of cellular response to trans...",4,3,1.8,335,"0.2397","0.40518","0.40518" +"GO:0010332","response to gamma radiation",3,2,1.35,607,"0.4234","0.40536","0.40536" +"GO:0071479","cellular response to ionizing radiation",3,2,1.35,608,"0.4234","0.40536","0.40536" +"GO:0071480","cellular response to gamma radiation",3,2,1.35,609,"0.4234","0.40536","0.40536" +"GO:0015748","organophosphate ester transport",4,2,1.8,871,"0.6071","0.40979","0.40979" +"GO:0015914","phospholipid transport",4,2,1.8,872,"0.6071","0.40979","0.40979" +"GO:0046486","glycerolipid metabolic process",43,19,19.3,817,"0.5953","0.41081","0.41081" +"GO:0042035","regulation of cytokine biosynthetic proc...",5,2,2.24,1130,"0.7422","0.41322","0.41322" +"GO:0042089","cytokine biosynthetic process",5,2,2.24,1131,"0.7422","0.41322","0.41322" +"GO:0042107","cytokine metabolic process",5,2,2.24,1132,"0.7422","0.41322","0.41322" +"GO:0043624","cellular protein complex disassembly",14,6,6.28,1012,"0.6597","0.41373","0.41373" +"GO:0071806","protein transmembrane transport",14,5,6.28,1350,"0.8312","0.41373","0.41373" +"GO:1903900","regulation of viral life cycle",14,3,6.28,2385,"0.9829","0.41373","0.41373" +"GO:0048199","vesicle targeting, to, from or within Go...",4,0,1.8,2642,"1.0000","0.41465","0.41465" +"GO:0051260","protein homooligomerization",16,8,7.18,670,"0.4330","0.41776","0.41776" +"GO:0006650","glycerophospholipid metabolic process",37,18,16.6,460,"0.3811","0.41814","0.41814" +"GO:0007413","axonal fasciculation",7,2,3.14,1775,"0.8967","0.42033","0.42033" +"GO:0106030","neuron projection fasciculation",7,2,3.14,1776,"0.8967","0.42033","0.42033" +"GO:0032868","response to insulin",5,2,2.24,1133,"0.7422","0.42135","0.42135" +"GO:2000377","regulation of reactive oxygen species me...",5,3,2.24,514,"0.4045","0.42135","0.42135" +"GO:0000422","autophagy of mitochondrion",3,1,1.35,1365,"0.8327","0.42143","0.42143" +"GO:0003018","vascular process in circulatory system",3,2,1.35,610,"0.4234","0.42143","0.42143" +"GO:0006111","regulation of gluconeogenesis",3,2,1.35,611,"0.4234","0.42143","0.42143" +"GO:0035296","regulation of tube diameter",3,2,1.35,612,"0.4234","0.42143","0.42143" +"GO:0043255","regulation of carbohydrate biosynthetic ...",3,2,1.35,613,"0.4234","0.42143","0.42143" +"GO:0045913","positive regulation of carbohydrate meta...",3,1,1.35,1366,"0.8327","0.42143","0.42143" +"GO:0050880","regulation of blood vessel size",3,2,1.35,614,"0.4234","0.42143","0.42143" +"GO:0061726","mitochondrion disassembly",3,1,1.35,1367,"0.8327","0.42143","0.42143" +"GO:0097746","regulation of blood vessel diameter",3,2,1.35,615,"0.4234","0.42143","0.42143" +"GO:0097755","positive regulation of blood vessel diam...",3,2,1.35,616,"0.4234","0.42143","0.42143" +"GO:1903008","organelle disassembly",3,1,1.35,1368,"0.8327","0.42143","0.42143" +"GO:0097190","apoptotic signaling pathway",29,10,13.01,1865,"0.9078","0.42183","0.42183" +"GO:0009069","serine family amino acid metabolic proce...",4,3,1.8,336,"0.2397","0.42287","0.42287" +"GO:0008277","regulation of G protein-coupled receptor...",4,2,1.8,873,"0.6071","0.42353","0.42353" +"GO:0070509","calcium ion import",4,2,1.8,874,"0.6071","0.42353","0.42353" +"GO:0072347","response to anesthetic",4,1,1.8,1880,"0.9079","0.42353","0.42353" +"GO:0009615","response to virus",5,2,2.24,1134,"0.7422","0.42775","0.42775" +"GO:0043487","regulation of RNA stability",5,2,2.24,1135,"0.7422","0.42775","0.42775" +"GO:0043488","regulation of mRNA stability",5,2,2.24,1136,"0.7422","0.42775","0.42775" +"GO:0019725","cellular homeostasis",55,29,24.68,253,"0.1477","0.42888","0.42888" +"GO:1901264","carbohydrate derivative transport",5,3,2.24,515,"0.4045","0.42996","0.42996" +"GO:0051047","positive regulation of secretion",16,7,7.18,970,"0.6307","0.43007","0.43007" +"GO:0045995","regulation of embryonic development",5,3,2.24,516,"0.4045","0.43016","0.43016" +"GO:0010469","regulation of signaling receptor activit...",7,3,3.14,1036,"0.6814","0.43031","0.43031" +"GO:0099601","regulation of neurotransmitter receptor ...",7,3,3.14,1037,"0.6814","0.43031","0.43031" +"GO:1900449","regulation of glutamate receptor signali...",7,3,3.14,1038,"0.6814","0.43031","0.43031" +"GO:0006811","ion transport",217,113,97.38,28,"0.0156","0.00168","0.43042" +"GO:0033866","nucleoside bisphosphate biosynthetic pro...",7,4,3.14,474,"0.3890","0.43116","0.43116" +"GO:0034030","ribonucleoside bisphosphate biosynthetic...",7,4,3.14,475,"0.3890","0.43116","0.43116" +"GO:0034033","purine nucleoside bisphosphate biosynthe...",7,4,3.14,476,"0.3890","0.43116","0.43116" +"GO:0042135","neurotransmitter catabolic process",6,2,2.69,1591,"0.8352","0.43142","0.43142" +"GO:0006085","acetyl-CoA biosynthetic process",3,2,1.35,617,"0.4234","0.43280","0.43280" +"GO:0007162","negative regulation of cell adhesion",7,4,3.14,477,"0.3890","0.43422","0.43422" +"GO:0015988","energy coupled proton transmembrane tran...",15,5,6.73,1732,"0.8784","0.43550","0.43550" +"GO:0015991","ATP hydrolysis coupled proton transport",15,5,6.73,1733,"0.8784","0.43550","0.43550" +"GO:0090662","ATP hydrolysis coupled transmembrane tra...",15,5,6.73,1734,"0.8784","0.43550","0.43550" +"GO:0099131","ATP hydrolysis coupled ion transmembrane...",15,5,6.73,1735,"0.8784","0.43550","0.43550" +"GO:0099132","ATP hydrolysis coupled cation transmembr...",15,5,6.73,1736,"0.8784","0.43550","0.43550" +"GO:0032880","regulation of protein localization",44,16,19.75,1838,"0.9038","0.43643","0.43643" +"GO:0032436","positive regulation of proteasomal ubiqu...",3,2,1.35,618,"0.4234","0.43697","0.43697" +"GO:2000060","positive regulation of ubiquitin-depende...",3,2,1.35,619,"0.4234","0.43697","0.43697" +"GO:0051301","cell division",16,9,7.18,346,"0.2520","0.43844","0.43844" +"GO:0032886","regulation of microtubule-based process",17,5,7.63,2114,"0.9399","0.43907","0.43907" +"GO:0044270","cellular nitrogen compound catabolic pro...",44,21,19.75,534,"0.4071","0.44049","0.44049" +"GO:0045732","positive regulation of protein catabolic...",8,4,3.59,735,"0.5202","0.44132","0.44132" +"GO:0015918","sterol transport",8,5,3.59,386,"0.2577","0.44164","0.44164" +"GO:0051606","detection of stimulus",22,14,9.87,126,"0.0594","0.02152","0.44169" +"GO:0046173","polyol biosynthetic process",6,3,2.69,767,"0.5561","0.44398","0.44398" +"GO:0015850","organic hydroxy compound transport",10,6,4.49,393,"0.2586","0.44557","0.44557" +"GO:0006790","sulfur compound metabolic process",37,23,16.6,43,"0.0250","0.01568","0.44665" +"GO:0006814","sodium ion transport",24,12,10.77,458,"0.3797","0.44705","0.44705" +"GO:2000145","regulation of cell motility",27,13,12.12,671,"0.4384","0.44802","0.44802" +"GO:0016050","vesicle organization",13,6,5.83,804,"0.5699","0.44818","0.44818" +"GO:2001237","negative regulation of extrinsic apoptot...",7,2,3.14,1777,"0.8967","0.44830","0.44830" +"GO:0007519","skeletal muscle tissue development",20,9,8.98,810,"0.5817","0.44898","0.44898" +"GO:0060538","skeletal muscle organ development",20,9,8.98,811,"0.5817","0.44898","0.44898" +"GO:0044782","cilium organization",25,9,11.22,1715,"0.8646","0.45119","0.45119" +"GO:0008643","carbohydrate transport",9,4,4.04,980,"0.6361","0.45147","0.45147" +"GO:1903311","regulation of mRNA metabolic process",16,4,7.18,2268,"0.9716","0.45294","0.45294" +"GO:0009605","response to external stimulus",130,58,58.34,796,"0.5594","0.21173","0.45380" +"GO:0051656","establishment of organelle localization",20,7,8.98,1719,"0.8687","0.45608","0.45608" +"GO:0006109","regulation of carbohydrate metabolic pro...",7,4,3.14,478,"0.3890","0.45627","0.45627" +"GO:0035150","regulation of tube size",7,4,3.14,479,"0.3890","0.45627","0.45627" +"GO:0045646","regulation of erythrocyte differentiatio...",7,1,3.14,2397,"0.9846","0.45627","0.45627" +"GO:0071482","cellular response to light stimulus",7,3,3.14,1039,"0.6814","0.45627","0.45627" +"GO:0050730","regulation of peptidyl-tyrosine phosphor...",4,1,1.8,1881,"0.9079","0.45709","0.45709" +"GO:0050731","positive regulation of peptidyl-tyrosine...",4,1,1.8,1882,"0.9079","0.45709","0.45709" +"GO:0070585","protein localization to mitochondrion",13,4,5.83,1852,"0.9062","0.45735","0.45735" +"GO:0072655","establishment of protein localization to...",13,4,5.83,1853,"0.9062","0.45735","0.45735" +"GO:0042445","hormone metabolic process",17,10,7.63,281,"0.1799","0.20144","0.45775" +"GO:0051146","striated muscle cell differentiation",25,16,11.22,97,"0.0420","0.00769","0.45798" +"GO:0097237","cellular response to toxic substance",15,3,6.73,2437,"0.9893","0.46018","0.46018" +"GO:0042462","eye photoreceptor cell development",9,4,4.04,981,"0.6361","0.46021","0.46021" +"GO:0006903","vesicle targeting",5,0,2.24,2643,"1.0000","0.46092","0.46092" +"GO:0061982","meiosis I cell cycle process",5,0,2.24,2644,"1.0000","0.46092","0.46092" +"GO:0019439","aromatic compound catabolic process",45,22,20.19,431,"0.3452","0.46100","0.46100" +"GO:0010975","regulation of neuron projection developm...",27,11,12.12,1117,"0.7336","0.46232","0.46232" +"GO:0030334","regulation of cell migration",24,12,10.77,459,"0.3797","0.46380","0.46380" +"GO:0016570","histone modification",21,7,9.42,1834,"0.9027","0.46446","0.46446" +"GO:0007179","transforming growth factor beta receptor...",6,4,2.69,359,"0.2530","0.46460","0.46460" +"GO:0048593","camera-type eye morphogenesis",14,6,6.28,1013,"0.6597","0.46466","0.46466" +"GO:0051701","interaction with host",6,1,2.69,2274,"0.9721","0.46479","0.46479" +"GO:0051240","positive regulation of multicellular org...",57,26,25.58,725,"0.5068","0.46491","0.46491" +"GO:0018022","peptidyl-lysine methylation",13,3,5.83,2322,"0.9729","0.46491","0.46491" +"GO:0006836","neurotransmitter transport",30,14,13.46,705,"0.4921","0.46724","0.46724" +"GO:0050727","regulation of inflammatory response",5,2,2.24,1137,"0.7422","0.46816","0.46816" +"GO:0072527","pyrimidine-containing compound metabolic...",6,3,2.69,768,"0.5561","0.46819","0.46819" +"GO:0031348","negative regulation of defense response",3,2,1.35,620,"0.4234","0.47006","0.47006" +"GO:0015696","ammonium transport",10,5,4.49,712,"0.4924","0.47078","0.47078" +"GO:0030073","insulin secretion",10,5,4.49,713,"0.4924","0.47078","0.47078" +"GO:0036474","cell death in response to hydrogen perox...",10,2,4.49,2333,"0.9765","0.47078","0.47078" +"GO:1901031","regulation of response to reactive oxyge...",10,2,4.49,2334,"0.9765","0.47078","0.47078" +"GO:1901032","negative regulation of response to react...",10,2,4.49,2335,"0.9765","0.47078","0.47078" +"GO:1903205","regulation of hydrogen peroxide-induced ...",10,2,4.49,2336,"0.9765","0.47078","0.47078" +"GO:1903206","negative regulation of hydrogen peroxide...",10,2,4.49,2337,"0.9765","0.47078","0.47078" +"GO:2001038","regulation of cellular response to drug",10,2,4.49,2338,"0.9765","0.47078","0.47078" +"GO:2001039","negative regulation of cellular response...",10,2,4.49,2339,"0.9765","0.47078","0.47078" +"GO:0046165","alcohol biosynthetic process",12,6,5.39,687,"0.4696","0.47186","0.47186" +"GO:0007249","I-kappaB kinase/NF-kappaB signaling",7,4,3.14,480,"0.3890","0.47236","0.47236" +"GO:0043122","regulation of I-kappaB kinase/NF-kappaB ...",7,4,3.14,481,"0.3890","0.47236","0.47236" +"GO:0007339","binding of sperm to zona pellucida",5,2,2.24,1138,"0.7422","0.47315","0.47315" +"GO:0009988","cell-cell recognition",5,2,2.24,1139,"0.7422","0.47315","0.47315" +"GO:0035036","sperm-egg recognition",5,2,2.24,1140,"0.7422","0.47315","0.47315" +"GO:2001236","regulation of extrinsic apoptotic signal...",11,4,4.94,1312,"0.8072","0.47321","0.47321" +"GO:0042133","neurotransmitter metabolic process",11,4,4.94,1313,"0.8072","0.47476","0.47476" +"GO:0030162","regulation of proteolysis",33,12,14.81,1743,"0.8788","0.47535","0.47535" +"GO:0060271","cilium assembly",24,8,10.77,1975,"0.9129","0.47541","0.47541" +"GO:1901652","response to peptide",13,7,5.83,436,"0.3525","0.47718","0.47718" +"GO:1901568","fatty acid derivative metabolic process",6,3,2.69,769,"0.5561","0.47731","0.47731" +"GO:0036314","response to sterol",3,1,1.35,1369,"0.8327","0.47758","0.47758" +"GO:0036315","cellular response to sterol",3,1,1.35,1370,"0.8327","0.47758","0.47758" +"GO:0070723","response to cholesterol",3,1,1.35,1371,"0.8327","0.47758","0.47758" +"GO:0071397","cellular response to cholesterol",3,1,1.35,1372,"0.8327","0.47758","0.47758" +"GO:0035148","tube formation",11,4,4.94,1314,"0.8072","0.47814","0.47814" +"GO:0030100","regulation of endocytosis",20,6,8.98,2124,"0.9442","0.47916","0.47916" +"GO:0007606","sensory perception of chemical stimulus",10,3,4.49,1817,"0.8995","0.47949","0.47949" +"GO:0036465","synaptic vesicle recycling",10,3,4.49,1818,"0.8995","0.47949","0.47949" +"GO:0072321","chaperone-mediated protein transport",10,2,4.49,2340,"0.9765","0.47949","0.47949" +"GO:0090559","regulation of membrane permeability",10,3,4.49,1819,"0.8995","0.47949","0.47949" +"GO:0009056","catabolic process",167,68,74.95,1756,"0.8850","0.38546","0.48031" +"GO:0007338","single fertilization",9,3,4.04,1669,"0.8492","0.48113","0.48113" +"GO:0006730","one-carbon metabolic process",6,2,2.69,1592,"0.8352","0.48132","0.48132" +"GO:0044089","positive regulation of cellular componen...",34,14,15.26,1095,"0.7277","0.48297","0.48297" +"GO:0015800","acidic amino acid transport",3,2,1.35,621,"0.4234","0.48325","0.48325" +"GO:0007286","spermatid development",17,7,7.63,1079,"0.7069","0.48543","0.48543" +"GO:0048515","spermatid differentiation",17,7,7.63,1080,"0.7069","0.48543","0.48543" +"GO:0007601","visual perception",17,6,7.63,1694,"0.8514","0.48748","0.48748" +"GO:0050953","sensory perception of light stimulus",17,6,7.63,1695,"0.8514","0.48748","0.48748" +"GO:0046578","regulation of Ras protein signal transdu...",16,6,7.18,1291,"0.8004","0.48762","0.48762" +"GO:0051056","regulation of small GTPase mediated sign...",16,6,7.18,1292,"0.8004","0.48762","0.48762" +"GO:0031646","positive regulation of neurological syst...",4,2,1.8,875,"0.6071","0.48896","0.48896" +"GO:0043113","receptor clustering",4,2,1.8,876,"0.6071","0.48896","0.48896" +"GO:0048814","regulation of dendrite morphogenesis",4,2,1.8,877,"0.6071","0.48896","0.48896" +"GO:0050885","neuromuscular process controlling balanc...",4,2,1.8,878,"0.6071","0.48896","0.48896" +"GO:0051924","regulation of calcium ion transport",13,5,5.83,1232,"0.7700","0.48942","0.48942" +"GO:0055001","muscle cell development",20,14,8.98,39,"0.0204","0.00222","0.49058" +"GO:0055002","striated muscle cell development",20,14,8.98,40,"0.0204","0.00222","0.49058" +"GO:0016239","positive regulation of macroautophagy",4,2,1.8,879,"0.6071","0.49061","0.49061" +"GO:1903532","positive regulation of secretion by cell",15,7,6.73,748,"0.5442","0.49095","0.49095" +"GO:0014823","response to activity",13,4,5.83,1854,"0.9062","0.49191","0.49191" +"GO:0050714","positive regulation of protein secretion",8,3,3.59,1251,"0.7782","0.49244","0.49244" +"GO:0043200","response to amino acid",5,3,2.24,517,"0.4045","0.49307","0.49307" +"GO:0009132","nucleoside diphosphate metabolic process",13,5,5.83,1233,"0.7700","0.49322","0.49322" +"GO:0035690","cellular response to drug",19,6,8.53,1994,"0.9215","0.49354","0.49354" +"GO:0030239","myofibril assembly",16,12,7.18,27,"0.0143","0.00125","0.49420" +"GO:0050878","regulation of body fluid levels",14,9,6.28,216,"0.1163","0.00182","0.49484" +"GO:0010951","negative regulation of endopeptidase act...",7,4,3.14,482,"0.3890","0.49612","0.49612" +"GO:0043154","negative regulation of cysteine-type end...",7,4,3.14,483,"0.3890","0.49612","0.49612" +"GO:2000117","negative regulation of cysteine-type end...",7,4,3.14,484,"0.3890","0.49612","0.49612" +"GO:0030163","protein catabolic process",57,16,25.58,2551,"0.9972","0.49704","0.49704" +"GO:0045814","negative regulation of gene expression, ...",9,2,4.04,2214,"0.9611","0.50014","0.50014" +"GO:0002673","regulation of acute inflammatory respons...",4,2,1.8,880,"0.6071","0.50100","0.50100" +"GO:0032869","cellular response to insulin stimulus",4,2,1.8,881,"0.6071","0.50100","0.50100" +"GO:0060135","maternal process involved in female preg...",4,1,1.8,1883,"0.9079","0.50100","0.50100" +"GO:1902175","regulation of oxidative stress-induced i...",4,1,1.8,1884,"0.9079","0.50100","0.50100" +"GO:1902176","negative regulation of oxidative stress-...",4,1,1.8,1885,"0.9079","0.50100","0.50100" +"GO:0016482","cytosolic transport",11,4,4.94,1315,"0.8072","0.50287","0.50287" +"GO:0001819","positive regulation of cytokine producti...",12,4,5.39,1707,"0.8643","0.50461","0.50461" +"GO:0060402","calcium ion transport into cytosol",5,3,2.24,518,"0.4045","0.50874","0.50874" +"GO:0030111","regulation of Wnt signaling pathway",11,5,4.94,827,"0.5999","0.50918","0.50918" +"GO:0044743","protein transmembrane import into intrac...",13,4,5.83,1855,"0.9062","0.50981","0.50981" +"GO:0045807","positive regulation of endocytosis",13,2,5.83,2518,"0.9951","0.50981","0.50981" +"GO:0048524","positive regulation of viral process",13,4,5.83,1856,"0.9062","0.50981","0.50981" +"GO:0051170","import into nucleus",13,5,5.83,1234,"0.7700","0.50981","0.50981" +"GO:0032870","cellular response to hormone stimulus",30,12,13.46,1222,"0.7645","0.51021","0.51021" +"GO:0006959","humoral immune response",5,3,2.24,519,"0.4045","0.51066","0.51066" +"GO:0007596","blood coagulation",10,8,4.49,46,"0.0267","0.00034","0.51271" +"GO:0007599","hemostasis",10,8,4.49,47,"0.0267","0.00034","0.51271" +"GO:0050817","coagulation",10,8,4.49,48,"0.0267","0.00034","0.51271" +"GO:2001233","regulation of apoptotic signaling pathwa...",23,7,10.32,2131,"0.9486","0.51370","0.51370" +"GO:0035282","segmentation",4,2,1.8,882,"0.6071","0.51622","0.51622" +"GO:0060795","cell fate commitment involved in formati...",4,2,1.8,883,"0.6071","0.51622","0.51622" +"GO:0035821","modification of morphology or physiology...",11,3,4.94,2021,"0.9342","0.51637","0.51637" +"GO:0051817","modification of morphology or physiology...",11,3,4.94,2022,"0.9342","0.51637","0.51637" +"GO:0006901","vesicle coating",3,0,1.35,2645,"1.0000","0.51686","0.51686" +"GO:0035964","COPI-coated vesicle budding",3,0,1.35,2646,"1.0000","0.51686","0.51686" +"GO:0048200","Golgi transport vesicle coating",3,0,1.35,2647,"1.0000","0.51686","0.51686" +"GO:0048205","COPI coating of Golgi vesicle",3,0,1.35,2648,"1.0000","0.51686","0.51686" +"GO:0006120","mitochondrial electron transport, NADH t...",8,4,3.59,736,"0.5202","0.51780","0.51780" +"GO:0110053","regulation of actin filament organizatio...",18,10,8.08,342,"0.2486","0.51948","0.51948" +"GO:0016049","cell growth",19,9,8.53,721,"0.5017","0.52055","0.52055" +"GO:0007041","lysosomal transport",11,2,4.94,2414,"0.9859","0.52114","0.52114" +"GO:0090066","regulation of anatomical structure size",33,17,14.81,397,"0.2748","0.52138","0.52138" +"GO:0014902","myotube differentiation",10,8,4.49,49,"0.0267","0.02077","0.52407" +"GO:0001666","response to hypoxia",10,4,4.49,1105,"0.7318","0.52448","0.52448" +"GO:0036293","response to decreased oxygen levels",10,4,4.49,1106,"0.7318","0.52448","0.52448" +"GO:0070482","response to oxygen levels",10,4,4.49,1107,"0.7318","0.52448","0.52448" +"GO:0042220","response to cocaine",3,1,1.35,1373,"0.8327","0.52514","0.52514" +"GO:0001568","blood vessel development",16,5,7.18,1979,"0.9138","0.52655","0.52655" +"GO:0051049","regulation of transport",87,36,39.04,1274,"0.7811","0.52668","0.52668" +"GO:0042692","muscle cell differentiation",26,16,11.67,135,"0.0647","0.01133","0.52677" +"GO:0042176","regulation of protein catabolic process",14,5,6.28,1351,"0.8312","0.52696","0.52696" +"GO:1902883","negative regulation of response to oxida...",14,4,6.28,2041,"0.9362","0.52696","0.52696" +"GO:2001023","regulation of response to drug",14,4,6.28,2042,"0.9362","0.52696","0.52696" +"GO:0010259","multicellular organism aging",8,4,3.59,737,"0.5202","0.52729","0.52729" +"GO:0010880","regulation of release of sequestered cal...",3,2,1.35,622,"0.4234","0.52736","0.52736" +"GO:0014808","release of sequestered calcium ion into ...",3,2,1.35,623,"0.4234","0.52736","0.52736" +"GO:0060343","trabecula formation",3,2,1.35,624,"0.4234","0.52736","0.52736" +"GO:0060347","heart trabecula formation",3,2,1.35,625,"0.4234","0.52736","0.52736" +"GO:0061383","trabecula morphogenesis",3,2,1.35,626,"0.4234","0.52736","0.52736" +"GO:0061384","heart trabecula morphogenesis",3,2,1.35,627,"0.4234","0.52736","0.52736" +"GO:0070296","sarcoplasmic reticulum calcium ion trans...",3,2,1.35,628,"0.4234","0.52736","0.52736" +"GO:1903514","release of sequestered calcium ion into ...",3,2,1.35,629,"0.4234","0.52736","0.52736" +"GO:1990000","amyloid fibril formation",3,2,1.35,630,"0.4234","0.52736","0.52736" +"GO:0009119","ribonucleoside metabolic process",7,4,3.14,485,"0.3890","0.52874","0.52874" +"GO:0007020","microtubule nucleation",8,2,3.59,2086,"0.9363","0.52899","0.52899" +"GO:0019221","cytokine-mediated signaling pathway",8,3,3.59,1252,"0.7782","0.52899","0.52899" +"GO:0001933","negative regulation of protein phosphory...",25,13,11.22,411,"0.3011","0.10527","0.53067" +"GO:0045859","regulation of protein kinase activity",25,10,11.22,1215,"0.7549","0.10527","0.53067" +"GO:0008625","extrinsic apoptotic signaling pathway vi...",6,3,2.69,770,"0.5561","0.53155","0.53155" +"GO:0032989","cellular component morphogenesis",82,40,36.8,396,"0.2704","0.09171","0.53200" +"GO:0006935","chemotaxis",28,10,12.57,1749,"0.8800","0.53298","0.53298" +"GO:0042147","retrograde transport, endosome to Golgi",10,3,4.49,1820,"0.8995","0.53543","0.53543" +"GO:2001257","regulation of cation channel activity",18,8,8.08,834,"0.6049","0.53592","0.53592" +"GO:0002119","nematode larval development",5,3,2.24,520,"0.4045","0.53766","0.53766" +"GO:0048646","anatomical structure formation involved ...",63,31,28.27,404,"0.2831","0.05823","0.53836" +"GO:0060042","retina morphogenesis in camera-type eye",12,5,5.39,1063,"0.6930","0.53850","0.53850" +"GO:0043393","regulation of protein binding",12,4,5.39,1708,"0.8643","0.53934","0.53934" +"GO:0042127","regulation of cell proliferation",45,18,20.19,1282,"0.7919","0.54127","0.54127" +"GO:0030198","extracellular matrix organization",10,4,4.49,1108,"0.7318","0.54153","0.54153" +"GO:0043062","extracellular structure organization",10,4,4.49,1109,"0.7318","0.54153","0.54153" +"GO:0060070","canonical Wnt signaling pathway",10,5,4.49,714,"0.4924","0.54153","0.54153" +"GO:0048520","positive regulation of behavior",4,2,1.8,884,"0.6071","0.54262","0.54262" +"GO:0030520","intracellular estrogen receptor signalin...",4,2,1.8,885,"0.6071","0.54335","0.54335" +"GO:0033146","regulation of intracellular estrogen rec...",4,2,1.8,886,"0.6071","0.54335","0.54335" +"GO:0006479","protein methylation",16,3,7.18,2492,"0.9933","0.54380","0.54380" +"GO:0008213","protein alkylation",16,3,7.18,2493,"0.9933","0.54380","0.54380" +"GO:0034764","positive regulation of transmembrane tra...",12,3,5.39,2198,"0.9575","0.54380","0.54380" +"GO:0018193","peptidyl-amino acid modification",58,17,26.03,2524,"0.9952","0.54463","0.54463" +"GO:0034401","chromatin organization involved in regul...",6,1,2.69,2275,"0.9721","0.54493","0.54493" +"GO:0070828","heterochromatin organization",6,1,2.69,2276,"0.9721","0.54493","0.54493" +"GO:0070868","heterochromatin organization involved in...",6,1,2.69,2277,"0.9721","0.54493","0.54493" +"GO:0097549","chromatin organization involved in negat...",6,1,2.69,2278,"0.9721","0.54493","0.54493" +"GO:0032102","negative regulation of response to exter...",4,2,1.8,887,"0.6071","0.54504","0.54504" +"GO:0001837","epithelial to mesenchymal transition",4,2,1.8,888,"0.6071","0.54552","0.54552" +"GO:0071772","response to BMP",6,3,2.69,771,"0.5561","0.54611","0.54611" +"GO:0071773","cellular response to BMP stimulus",6,3,2.69,772,"0.5561","0.54611","0.54611" +"GO:0043086","negative regulation of catalytic activit...",38,19,17.05,416,"0.3160","0.15930","0.54689" +"GO:0021761","limbic system development",7,2,3.14,1778,"0.8967","0.54695","0.54695" +"GO:0001558","regulation of cell growth",15,7,6.73,749,"0.5442","0.54832","0.54832" +"GO:0008652","cellular amino acid biosynthetic process",11,6,4.94,443,"0.3635","0.54845","0.54845" +"GO:1901607","alpha-amino acid biosynthetic process",11,6,4.94,444,"0.3635","0.54845","0.54845" +"GO:0030031","cell projection assembly",30,11,13.46,1701,"0.8635","0.55235","0.55235" +"GO:0120031","plasma membrane bounded cell projection ...",30,11,13.46,1702,"0.8635","0.55235","0.55235" +"GO:0071709","membrane assembly",6,3,2.69,773,"0.5561","0.55283","0.55283" +"GO:0009914","hormone transport",13,6,5.83,805,"0.5699","0.55426","0.55426" +"GO:0035295","tube development",35,12,15.71,2009,"0.9265","0.55460","0.55460" +"GO:0002115","store-operated calcium entry",5,1,2.24,2134,"0.9493","0.55538","0.55538" +"GO:0050905","neuromuscular process",5,2,2.24,1141,"0.7422","0.55538","0.55538" +"GO:2001256","regulation of store-operated calcium ent...",5,1,2.24,2135,"0.9493","0.55538","0.55538" +"GO:0051928","positive regulation of calcium ion trans...",5,0,2.24,2649,"1.0000","0.55538","0.55538" +"GO:0061097","regulation of protein tyrosine kinase ac...",3,1,1.35,1374,"0.8327","0.55603","0.55603" +"GO:0061098","positive regulation of protein tyrosine ...",3,1,1.35,1375,"0.8327","0.55603","0.55603" +"GO:0006413","translational initiation",9,5,4.04,452,"0.3755","0.02939","0.55659" +"GO:1901575","organic substance catabolic process",143,61,64.17,1121,"0.7372","0.26793","0.55664" +"GO:0019441","tryptophan catabolic process to kynureni...",3,2,1.35,631,"0.4234","0.55827","0.55827" +"GO:0070189","kynurenine metabolic process",3,2,1.35,632,"0.4234","0.55827","0.55827" +"GO:0042391","regulation of membrane potential",17,8,7.63,740,"0.5217","0.55926","0.55926" +"GO:0003013","circulatory system process",22,14,9.87,127,"0.0594","0.08983","0.55945" +"GO:0008015","blood circulation",22,14,9.87,128,"0.0594","0.08983","0.55945" +"GO:0072330","monocarboxylic acid biosynthetic process",28,13,12.57,727,"0.5074","0.55949","0.55949" +"GO:0007626","locomotory behavior",13,4,5.83,1857,"0.9062","0.56194","0.56194" +"GO:0008088","axo-dendritic transport",13,4,5.83,1858,"0.9062","0.56194","0.56194" +"GO:0017156","calcium ion regulated exocytosis",5,3,2.24,521,"0.4045","0.56275","0.56275" +"GO:0021680","cerebellar Purkinje cell layer developme...",5,2,2.24,1142,"0.7422","0.56405","0.56405" +"GO:0021695","cerebellar cortex development",5,2,2.24,1143,"0.7422","0.56405","0.56405" +"GO:0006826","iron ion transport",3,2,1.35,633,"0.4234","0.56443","0.56443" +"GO:1905114","cell surface receptor signaling pathway ...",19,7,8.53,1338,"0.8255","0.56483","0.56483" +"GO:0009164","nucleoside catabolic process",3,2,1.35,634,"0.4234","0.56499","0.56499" +"GO:0034656","nucleobase-containing small molecule cat...",3,2,1.35,635,"0.4234","0.56499","0.56499" +"GO:0042454","ribonucleoside catabolic process",3,2,1.35,636,"0.4234","0.56499","0.56499" +"GO:1901658","glycosyl compound catabolic process",3,2,1.35,637,"0.4234","0.56499","0.56499" +"GO:0006626","protein targeting to mitochondrion",12,4,5.39,1709,"0.8643","0.56537","0.56537" +"GO:0010896","regulation of triglyceride catabolic pro...",3,2,1.35,638,"0.4234","0.56555","0.56555" +"GO:0010898","positive regulation of triglyceride cata...",3,2,1.35,639,"0.4234","0.56555","0.56555" +"GO:0019433","triglyceride catabolic process",3,2,1.35,640,"0.4234","0.56555","0.56555" +"GO:0050994","regulation of lipid catabolic process",3,2,1.35,641,"0.4234","0.56555","0.56555" +"GO:0050996","positive regulation of lipid catabolic p...",3,2,1.35,642,"0.4234","0.56555","0.56555" +"GO:0090207","regulation of triglyceride metabolic pro...",3,2,1.35,643,"0.4234","0.56555","0.56555" +"GO:0090208","positive regulation of triglyceride meta...",3,2,1.35,644,"0.4234","0.56555","0.56555" +"GO:0061013","regulation of mRNA catabolic process",7,2,3.14,1779,"0.8967","0.56564","0.56564" +"GO:0006006","glucose metabolic process",11,5,4.94,828,"0.5999","0.56600","0.56600" +"GO:0060041","retina development in camera-type eye",22,8,9.87,1639,"0.8466","0.56603","0.56603" +"GO:0006644","phospholipid metabolic process",49,23,21.99,674,"0.4394","0.56821","0.56821" +"GO:0045444","fat cell differentiation",8,3,3.59,1253,"0.7782","0.56866","0.56866" +"GO:0042330","taxis",29,10,13.01,1866,"0.9078","0.56904","0.56904" +"GO:0098609","cell-cell adhesion",50,26,22.44,283,"0.1894","0.06874","0.57051" +"GO:0006468","protein phosphorylation",157,66,70.46,1283,"0.7942","0.38944","0.57070" +"GO:0042558","pteridine-containing compound metabolic ...",6,3,2.69,774,"0.5561","0.57086","0.57086" +"GO:0045815","positive regulation of gene expression, ...",3,0,1.35,2650,"1.0000","0.57200","0.57200" +"GO:0035023","regulation of Rho protein signal transdu...",12,5,5.39,1064,"0.6930","0.57281","0.57281" +"GO:0030041","actin filament polymerization",14,8,6.28,363,"0.2550","0.57330","0.57330" +"GO:0030833","regulation of actin filament polymerizat...",14,8,6.28,364,"0.2550","0.57330","0.57330" +"GO:0007623","circadian rhythm",19,9,8.53,722,"0.5017","0.57333","0.57333" +"GO:0000302","response to reactive oxygen species",22,9,9.87,1091,"0.7206","0.57372","0.57372" +"GO:0010035","response to inorganic substance",43,14,19.3,2251,"0.9651","0.57402","0.57402" +"GO:0007622","rhythmic behavior",4,2,1.8,889,"0.6071","0.57437","0.57437" +"GO:0048512","circadian behavior",4,2,1.8,890,"0.6071","0.57437","0.57437" +"GO:0042073","intraciliary transport",6,2,2.69,1593,"0.8352","0.57463","0.57463" +"GO:0010038","response to metal ion",31,8,13.91,2461,"0.9916","0.57492","0.57492" +"GO:0001667","ameboidal-type cell migration",9,4,4.04,982,"0.6361","0.57592","0.57592" +"GO:0060560","developmental growth involved in morphog...",9,5,4.04,453,"0.3755","0.57592","0.57592" +"GO:0060828","regulation of canonical Wnt signaling pa...",9,4,4.04,983,"0.6361","0.57592","0.57592" +"GO:0071229","cellular response to acid chemical",9,4,4.04,984,"0.6361","0.57592","0.57592" +"GO:0007602","phototransduction",7,3,3.14,1040,"0.6814","0.57594","0.57594" +"GO:0007178","transmembrane receptor protein serine/th...",15,8,6.73,427,"0.3425","0.57656","0.57656" +"GO:0002164","larval development",6,3,2.69,775,"0.5561","0.57721","0.57721" +"GO:0046834","lipid phosphorylation",4,2,1.8,891,"0.6071","0.57802","0.57802" +"GO:0046854","phosphatidylinositol phosphorylation",4,2,1.8,892,"0.6071","0.57802","0.57802" +"GO:0098930","axonal transport",4,2,1.8,893,"0.6071","0.57850","0.57850" +"GO:0010876","lipid localization",30,14,13.46,706,"0.4921","0.57971","0.57971" +"GO:0042180","cellular ketone metabolic process",15,8,6.73,428,"0.3425","0.57984","0.57984" +"GO:0030072","peptide hormone secretion",12,6,5.39,688,"0.4696","0.58013","0.58013" +"GO:0046879","hormone secretion",12,6,5.39,689,"0.4696","0.58013","0.58013" +"GO:0006094","gluconeogenesis",6,2,2.69,1594,"0.8352","0.58059","0.58059" +"GO:0019319","hexose biosynthetic process",6,2,2.69,1595,"0.8352","0.58059","0.58059" +"GO:0046364","monosaccharide biosynthetic process",6,2,2.69,1596,"0.8352","0.58059","0.58059" +"GO:0051345","positive regulation of hydrolase activit...",23,12,10.32,413,"0.3085","0.58232","0.58232" +"GO:0043409","negative regulation of MAPK cascade",10,3,4.49,1821,"0.8995","0.58300","0.58300" +"GO:0014015","positive regulation of gliogenesis",3,2,1.35,645,"0.4234","0.58436","0.58436" +"GO:2001234","negative regulation of apoptotic signali...",17,5,7.63,2115,"0.9399","0.58479","0.58479" +"GO:0045860","positive regulation of protein kinase ac...",13,4,5.83,1859,"0.9062","0.58518","0.58518" +"GO:0006342","chromatin silencing",8,1,3.59,2450,"0.9916","0.58778","0.58778" +"GO:0000904","cell morphogenesis involved in different...",44,16,19.75,1839,"0.9038","0.58828","0.58828" +"GO:0050868","negative regulation of T cell activation",3,2,1.35,646,"0.4234","0.58858","0.58858" +"GO:1903038","negative regulation of leukocyte cell-ce...",3,2,1.35,647,"0.4234","0.58858","0.58858" +"GO:0065008","regulation of biological quality",222,103,99.63,424,"0.3418","0.25869","0.58950" +"GO:0046887","positive regulation of hormone secretion",7,3,3.14,1041,"0.6814","0.59141","0.59141" +"GO:0030155","regulation of cell adhesion",16,6,7.18,1293,"0.8004","0.59150","0.59150" +"GO:0044248","cellular catabolic process",149,60,66.87,1765,"0.8950","0.42167","0.59150" +"GO:0006325","chromatin organization",43,13,19.3,2392,"0.9836","0.44912","0.59190" +"GO:0045930","negative regulation of mitotic cell cycl...",4,1,1.8,1886,"0.9079","0.59263","0.59263" +"GO:0007617","mating behavior",3,2,1.35,648,"0.4234","0.59280","0.59280" +"GO:0009719","response to endogenous stimulus",68,28,30.52,1242,"0.7714","0.59288","0.59288" +"GO:0007618","mating",5,3,2.24,522,"0.4045","0.59300","0.59300" +"GO:0045137","development of primary sexual characteri...",7,3,3.14,1042,"0.6814","0.59528","0.59528" +"GO:0001504","neurotransmitter uptake",3,1,1.35,1376,"0.8327","0.59562","0.59562" +"GO:0015844","monoamine transport",3,2,1.35,649,"0.4234","0.59562","0.59562" +"GO:0015872","dopamine transport",3,2,1.35,650,"0.4234","0.59562","0.59562" +"GO:0051937","catecholamine transport",3,2,1.35,651,"0.4234","0.59562","0.59562" +"GO:2000378","negative regulation of reactive oxygen s...",3,1,1.35,1377,"0.8327","0.59562","0.59562" +"GO:0006517","protein deglycosylation",3,0,1.35,2651,"1.0000","0.59562","0.59562" +"GO:0008344","adult locomotory behavior",3,0,1.35,2652,"1.0000","0.59562","0.59562" +"GO:0043457","regulation of cellular respiration",3,0,1.35,2653,"1.0000","0.59562","0.59562" +"GO:0044087","regulation of cellular component biogene...",59,27,26.48,719,"0.4959","0.59582","0.59582" +"GO:0009887","animal organ morphogenesis",60,27,26.93,747,"0.5429","0.45116","0.59594" +"GO:0043949","regulation of cAMP-mediated signaling",5,2,2.24,1144,"0.7422","0.59606","0.59606" +"GO:0008291","acetylcholine metabolic process",6,1,2.69,2279,"0.9721","0.59631","0.59631" +"GO:1900619","acetate ester metabolic process",6,1,2.69,2280,"0.9721","0.59631","0.59631" +"GO:0048488","synaptic vesicle endocytosis",9,2,4.04,2215,"0.9611","0.59656","0.59656" +"GO:0071276","cellular response to cadmium ion",9,2,4.04,2216,"0.9611","0.59656","0.59656" +"GO:0140238","presynaptic endocytosis",9,2,4.04,2217,"0.9611","0.59656","0.59656" +"GO:0033365","protein localization to organelle",38,15,17.05,1284,"0.7987","0.59696","0.59696" +"GO:0006869","lipid transport",25,12,11.22,683,"0.4523","0.59714","0.59714" +"GO:0007007","inner mitochondrial membrane organizatio...",5,2,2.24,1145,"0.7422","0.59715","0.59715" +"GO:0019932","second-messenger-mediated signaling",15,6,6.73,1118,"0.7368","0.59774","0.59774" +"GO:0071375","cellular response to peptide hormone sti...",6,3,2.69,776,"0.5561","0.59811","0.59811" +"GO:1901653","cellular response to peptide",6,3,2.69,777,"0.5561","0.59811","0.59811" +"GO:0051084","'de novo' posttranslational protein fold...",12,2,5.39,2468,"0.9916","0.59845","0.59845" +"GO:0051085","chaperone cofactor-dependent protein ref...",12,2,5.39,2469,"0.9916","0.59845","0.59845" +"GO:0045926","negative regulation of growth",13,6,5.83,806,"0.5699","0.59981","0.59981" +"GO:0006261","DNA-dependent DNA replication",5,2,2.24,1146,"0.7422","0.60086","0.60086" +"GO:0045055","regulated exocytosis",9,3,4.04,1670,"0.8492","0.60242","0.60242" +"GO:0030335","positive regulation of cell migration",10,5,4.49,715,"0.4924","0.60368","0.60368" +"GO:0021537","telencephalon development",9,3,4.04,1671,"0.8492","0.60372","0.60372" +"GO:0021543","pallium development",9,3,4.04,1672,"0.8492","0.60372","0.60372" +"GO:0097193","intrinsic apoptotic signaling pathway",17,4,7.63,2372,"0.9814","0.60376","0.60376" +"GO:0006505","GPI anchor metabolic process",8,3,3.59,1254,"0.7782","0.60382","0.60382" +"GO:0007265","Ras protein signal transduction",20,7,8.98,1720,"0.8687","0.60392","0.60392" +"GO:0009566","fertilization",11,4,4.94,1316,"0.8072","0.60527","0.60527" +"GO:0018205","peptidyl-lysine modification",19,4,8.53,2481,"0.9922","0.60529","0.60529" +"GO:0046467","membrane lipid biosynthetic process",11,4,4.94,1317,"0.8072","0.60703","0.60703" +"GO:0009891","positive regulation of biosynthetic proc...",57,25,25.58,964,"0.6128","0.60755","0.60755" +"GO:0008283","cell proliferation",54,21,24.23,1689,"0.8493","0.60904","0.60904" +"GO:0009880","embryonic pattern specification",3,1,1.35,1378,"0.8327","0.60913","0.60913" +"GO:0042398","cellular modified amino acid biosyntheti...",7,4,3.14,486,"0.3890","0.60967","0.60967" +"GO:0045861","negative regulation of proteolysis",16,6,7.18,1294,"0.8004","0.61129","0.61129" +"GO:0019915","lipid storage",6,2,2.69,1597,"0.8352","0.61165","0.61165" +"GO:0010563","negative regulation of phosphorus metabo...",30,14,13.46,707,"0.4921","0.19457","0.61245" +"GO:0045936","negative regulation of phosphate metabol...",30,14,13.46,708,"0.4921","0.19457","0.61245" +"GO:0010631","epithelial cell migration",8,3,3.59,1255,"0.7782","0.61245","0.61245" +"GO:0042326","negative regulation of phosphorylation",27,13,12.12,672,"0.4384","0.14696","0.61273" +"GO:1902115","regulation of organelle assembly",19,8,8.53,1021,"0.6799","0.61382","0.61382" +"GO:0006171","cAMP biosynthetic process",3,1,1.35,1379,"0.8327","0.61448","0.61448" +"GO:0046058","cAMP metabolic process",3,1,1.35,1380,"0.8327","0.61448","0.61448" +"GO:2001243","negative regulation of intrinsic apoptot...",11,3,4.94,2023,"0.9342","0.61572","0.61572" +"GO:0045069","regulation of viral genome replication",12,3,5.39,2199,"0.9575","0.61777","0.61777" +"GO:0008340","determination of adult lifespan",6,3,2.69,778,"0.5561","0.61902","0.61902" +"GO:0034612","response to tumor necrosis factor",6,2,2.69,1598,"0.8352","0.61902","0.61902" +"GO:0032101","regulation of response to external stimu...",20,9,8.98,812,"0.5817","0.61946","0.61946" +"GO:0016242","negative regulation of macroautophagy",3,1,1.35,1381,"0.8327","0.62124","0.62124" +"GO:0040012","regulation of locomotion",33,14,14.81,1017,"0.6757","0.62212","0.62212" +"GO:0042026","protein refolding",16,6,7.18,1295,"0.8004","0.62290","0.62290" +"GO:0009084","glutamine family amino acid biosynthetic...",3,1,1.35,1382,"0.8327","0.62292","0.62292" +"GO:0072523","purine-containing compound catabolic pro...",3,2,1.35,652,"0.4234","0.62320","0.62320" +"GO:0030029","actin filament-based process",63,36,28.27,55,"0.0322","0.01170","0.62352" +"GO:0043647","inositol phosphate metabolic process",3,1,1.35,1383,"0.8327","0.62377","0.62377" +"GO:1901068","guanosine-containing compound metabolic ...",4,2,1.8,894,"0.6071","0.62384","0.62384" +"GO:0032418","lysosome localization",4,2,1.8,895,"0.6071","0.62433","0.62433" +"GO:0023061","signal release",27,9,12.12,1999,"0.9219","0.62467","0.62467" +"GO:1901021","positive regulation of calcium ion trans...",4,0,1.8,2654,"1.0000","0.62482","0.62482" +"GO:1904427","positive regulation of calcium ion trans...",4,0,1.8,2655,"1.0000","0.62482","0.62482" +"GO:0007269","neurotransmitter secretion",15,5,6.73,1737,"0.8784","0.62563","0.62563" +"GO:0099643","signal release from synapse",15,5,6.73,1738,"0.8784","0.62563","0.62563" +"GO:0048870","cell motility",40,20,17.95,414,"0.3086","0.62598","0.62598" +"GO:0051674","localization of cell",40,20,17.95,415,"0.3086","0.62598","0.62598" +"GO:0006470","protein dephosphorylation",26,14,11.67,290,"0.2333","0.62608","0.62608" +"GO:0007589","body fluid secretion",3,1,1.35,1384,"0.8327","0.62630","0.62630" +"GO:0030178","negative regulation of Wnt signaling pat...",5,2,2.24,1147,"0.7422","0.62659","0.62659" +"GO:0033627","cell adhesion mediated by integrin",3,1,1.35,1385,"0.8327","0.62771","0.62771" +"GO:0033628","regulation of cell adhesion mediated by ...",3,1,1.35,1386,"0.8327","0.62771","0.62771" +"GO:0051965","positive regulation of synapse assembly",3,1,1.35,1387,"0.8327","0.62855","0.62855" +"GO:0010171","body morphogenesis",4,2,1.8,896,"0.6071","0.62871","0.62871" +"GO:0050807","regulation of synapse organization",12,6,5.39,690,"0.4696","0.62904","0.62904" +"GO:0007266","Rho protein signal transduction",14,6,6.28,1014,"0.6597","0.62956","0.62956" +"GO:0048706","embryonic skeletal system development",4,2,1.8,897,"0.6071","0.62993","0.62993" +"GO:0050908","detection of light stimulus involved in ...",4,2,1.8,898,"0.6071","0.62993","0.62993" +"GO:0050962","detection of light stimulus involved in ...",4,2,1.8,899,"0.6071","0.62993","0.62993" +"GO:0009416","response to light stimulus",21,9,9.42,1003,"0.6552","0.63001","0.63001" +"GO:0009791","post-embryonic development",21,8,9.42,1303,"0.8008","0.63001","0.63001" +"GO:0033559","unsaturated fatty acid metabolic process",5,2,2.24,1148,"0.7422","0.63030","0.63030" +"GO:0040013","negative regulation of locomotion",5,2,2.24,1149,"0.7422","0.63030","0.63030" +"GO:0046717","acid secretion",5,2,2.24,1150,"0.7422","0.63030","0.63030" +"GO:0016055","Wnt signaling pathway",17,6,7.63,1696,"0.8514","0.63115","0.63115" +"GO:0044262","cellular carbohydrate metabolic process",20,10,8.98,488,"0.4040","0.63181","0.63181" +"GO:0043903","regulation of symbiosis, encompassing mu...",19,5,8.53,2272,"0.9718","0.63299","0.63299" +"GO:0032103","positive regulation of response to exter...",10,5,4.49,716,"0.4924","0.63547","0.63547" +"GO:0046883","regulation of hormone secretion",10,5,4.49,717,"0.4924","0.63547","0.63547" +"GO:0090276","regulation of peptide hormone secretion",10,5,4.49,718,"0.4924","0.63547","0.63547" +"GO:0007631","feeding behavior",9,4,4.04,985,"0.6361","0.63576","0.63576" +"GO:0002790","peptide secretion",21,7,9.42,1835,"0.9027","0.63683","0.63683" +"GO:0009306","protein secretion",21,7,9.42,1836,"0.9027","0.63683","0.63683" +"GO:0003170","heart valve development",3,1,1.35,1388,"0.8327","0.63726","0.63726" +"GO:0003179","heart valve morphogenesis",3,1,1.35,1389,"0.8327","0.63726","0.63726" +"GO:0031532","actin cytoskeleton reorganization",3,1,1.35,1390,"0.8327","0.63726","0.63726" +"GO:0045806","negative regulation of endocytosis",3,1,1.35,1391,"0.8327","0.63726","0.63726" +"GO:0043270","positive regulation of ion transport",14,4,6.28,2043,"0.9362","0.63881","0.63881" +"GO:0035966","response to topologically incorrect prot...",19,6,8.53,1995,"0.9215","0.63937","0.63937" +"GO:1901701","cellular response to oxygen-containing c...",50,20,22.44,1287,"0.8002","0.63979","0.63979" +"GO:1902652","secondary alcohol metabolic process",5,3,2.24,523,"0.4045","0.63988","0.63988" +"GO:1902653","secondary alcohol biosynthetic process",5,3,2.24,524,"0.4045","0.63988","0.63988" +"GO:0045637","regulation of myeloid cell differentiati...",9,1,4.04,2525,"0.9954","0.64047","0.64047" +"GO:0007584","response to nutrient",11,5,4.94,829,"0.5999","0.64087","0.64087" +"GO:0046677","response to antibiotic",29,11,13.01,1346,"0.8272","0.64269","0.64269" +"GO:1902017","regulation of cilium assembly",8,3,3.59,1256,"0.7782","0.64416","0.64416" +"GO:0043950","positive regulation of cAMP-mediated sig...",3,1,1.35,1392,"0.8327","0.64652","0.64652" +"GO:0045840","positive regulation of mitotic nuclear d...",3,1,1.35,1393,"0.8327","0.64652","0.64652" +"GO:0048240","sperm capacitation",3,1,1.35,1394,"0.8327","0.64652","0.64652" +"GO:0051412","response to corticosterone",3,1,1.35,1395,"0.8327","0.64652","0.64652" +"GO:0051785","positive regulation of nuclear division",3,1,1.35,1396,"0.8327","0.64652","0.64652" +"GO:0060408","regulation of acetylcholine metabolic pr...",3,1,1.35,1397,"0.8327","0.64652","0.64652" +"GO:0060409","positive regulation of acetylcholine met...",3,1,1.35,1398,"0.8327","0.64652","0.64652" +"GO:0046700","heterocycle catabolic process",45,20,20.19,808,"0.5812","0.64720","0.64720" +"GO:0051098","regulation of binding",14,5,6.28,1352,"0.8312","0.64727","0.64727" +"GO:0090114","COPII-coated vesicle budding",4,1,1.8,1887,"0.9079","0.64744","0.64744" +"GO:0007267","cell-cell signaling",72,28,32.31,1726,"0.8767","0.64762","0.64762" +"GO:0030522","intracellular receptor signaling pathway",15,5,6.73,1739,"0.8784","0.64879","0.64879" +"GO:0033143","regulation of intracellular steroid horm...",8,2,3.59,2087,"0.9363","0.64966","0.64966" +"GO:0021766","hippocampus development",5,1,2.24,2136,"0.9493","0.65009","0.65009" +"GO:0051384","response to glucocorticoid",5,1,2.24,2137,"0.9493","0.65009","0.65009" +"GO:0046849","bone remodeling",3,2,1.35,653,"0.4234","0.65100","0.65100" +"GO:0046850","regulation of bone remodeling",3,2,1.35,654,"0.4234","0.65100","0.65100" +"GO:0048588","developmental cell growth",7,3,3.14,1043,"0.6814","0.65127","0.65127" +"GO:0051216","cartilage development",7,2,3.14,1780,"0.8967","0.65127","0.65127" +"GO:0061448","connective tissue development",7,2,3.14,1781,"0.8967","0.65127","0.65127" +"GO:0072089","stem cell proliferation",7,3,3.14,1044,"0.6814","0.65127","0.65127" +"GO:0030036","actin cytoskeleton organization",59,34,26.48,53,"0.0317","0.01094","0.65220" +"GO:0006437","tyrosyl-tRNA aminoacylation",3,1,1.35,1399,"0.8327","0.65240","0.65240" +"GO:0006729","tetrahydrobiopterin biosynthetic process",3,2,1.35,655,"0.4234","0.65268","0.65268" +"GO:0034311","diol metabolic process",3,2,1.35,656,"0.4234","0.65268","0.65268" +"GO:0034312","diol biosynthetic process",3,2,1.35,657,"0.4234","0.65268","0.65268" +"GO:0046146","tetrahydrobiopterin metabolic process",3,2,1.35,658,"0.4234","0.65268","0.65268" +"GO:0043687","post-translational protein modification",4,2,1.8,900,"0.6071","0.65350","0.65350" +"GO:0016477","cell migration",37,18,16.6,461,"0.3811","0.65370","0.65370" +"GO:0040011","locomotion",76,36,34.11,446,"0.3709","0.65415","0.65415" +"GO:0071383","cellular response to steroid hormone sti...",19,7,8.53,1339,"0.8255","0.65423","0.65423" +"GO:0003008","system process",96,37,43.08,1988,"0.9165","0.55396","0.65468" +"GO:0007416","synapse assembly",10,4,4.49,1110,"0.7318","0.65531","0.65531" +"GO:0000045","autophagosome assembly",4,2,1.8,901,"0.6071","0.65641","0.65641" +"GO:1905037","autophagosome organization",4,2,1.8,902,"0.6071","0.65641","0.65641" +"GO:0009247","glycolipid biosynthetic process",8,3,3.59,1257,"0.7782","0.65738","0.65738" +"GO:0051495","positive regulation of cytoskeleton orga...",24,8,10.77,1976,"0.9129","0.65792","0.65792" +"GO:0016197","endosomal transport",16,6,7.18,1296,"0.8004","0.65859","0.65859" +"GO:0016311","dephosphorylation",38,19,17.05,417,"0.3160","0.65889","0.65889" +"GO:0046902","regulation of mitochondrial membrane per...",3,2,1.35,659,"0.4234","0.65939","0.65939" +"GO:1901699","cellular response to nitrogen compound",13,7,5.83,437,"0.3525","0.65970","0.65970" +"GO:0007605","sensory perception of sound",5,2,2.24,1151,"0.7422","0.66027","0.66027" +"GO:0043066","negative regulation of apoptotic process",39,14,17.5,1840,"0.9040","0.66158","0.66158" +"GO:0062012","regulation of small molecule metabolic p...",12,6,5.39,691,"0.4696","0.66175","0.66175" +"GO:0043434","response to peptide hormone",12,6,5.39,692,"0.4696","0.66287","0.66287" +"GO:2000241","regulation of reproductive process",12,2,5.39,2470,"0.9916","0.66287","0.66287" +"GO:0032368","regulation of lipid transport",3,1,1.35,1400,"0.8327","0.66330","0.66330" +"GO:0032370","positive regulation of lipid transport",3,1,1.35,1401,"0.8327","0.66330","0.66330" +"GO:1905954","positive regulation of lipid localizatio...",3,1,1.35,1402,"0.8327","0.66330","0.66330" +"GO:0048771","tissue remodeling",14,10,6.28,96,"0.0413","0.03204","0.66436" +"GO:1903827","regulation of cellular protein localizat...",22,6,9.87,2316,"0.9727","0.66504","0.66504" +"GO:0009743","response to carbohydrate",9,3,4.04,1673,"0.8492","0.66505","0.66505" +"GO:0015695","organic cation transport",6,1,2.69,2281,"0.9721","0.66545","0.66545" +"GO:0018991","oviposition",6,0,2.69,2656,"1.0000","0.66545","0.66545" +"GO:0050803","regulation of synapse structure or activ...",14,7,6.28,677,"0.4501","0.66556","0.66556" +"GO:0032411","positive regulation of transporter activ...",10,3,4.49,1822,"0.8995","0.66603","0.66603" +"GO:0034767","positive regulation of ion transmembrane...",10,3,4.49,1823,"0.8995","0.66603","0.66603" +"GO:1904064","positive regulation of cation transmembr...",10,3,4.49,1824,"0.8995","0.66603","0.66603" +"GO:0061564","axon development",39,15,17.5,1582,"0.8349","0.66633","0.66633" +"GO:0001501","skeletal system development",16,7,7.18,971,"0.6307","0.66634","0.66634" +"GO:0061458","reproductive system development",24,7,10.77,2241,"0.9633","0.66684","0.66684" +"GO:1901987","regulation of cell cycle phase transitio...",7,3,3.14,1045,"0.6814","0.66701","0.66701" +"GO:0006641","triglyceride metabolic process",4,2,1.8,903,"0.6071","0.66729","0.66729" +"GO:0097305","response to alcohol",26,7,11.67,2380,"0.9819","0.66757","0.66757" +"GO:0010824","regulation of centrosome duplication",4,1,1.8,1888,"0.9079","0.66826","0.66826" +"GO:0046605","regulation of centrosome cycle",4,1,1.8,1889,"0.9079","0.66826","0.66826" +"GO:0009755","hormone-mediated signaling pathway",18,6,8.08,1760,"0.8912","0.66912","0.66912" +"GO:0043902","positive regulation of multi-organism pr...",20,6,8.98,2125,"0.9442","0.66988","0.66988" +"GO:0042559","pteridine-containing compound biosynthet...",5,3,2.24,525,"0.4045","0.67021","0.67021" +"GO:0009620","response to fungus",5,2,2.24,1152,"0.7422","0.67064","0.67064" +"GO:0010508","positive regulation of autophagy",5,2,2.24,1153,"0.7422","0.67064","0.67064" +"GO:0045927","positive regulation of growth",5,1,2.24,2138,"0.9493","0.67064","0.67064" +"GO:0048645","animal organ formation",5,2,2.24,1154,"0.7422","0.67064","0.67064" +"GO:0061387","regulation of extent of cell growth",5,3,2.24,526,"0.4045","0.67064","0.67064" +"GO:1990138","neuron projection extension",5,2,2.24,1155,"0.7422","0.67064","0.67064" +"GO:0032872","regulation of stress-activated MAPK casc...",5,0,2.24,2657,"1.0000","0.67064","0.67064" +"GO:0046662","regulation of oviposition",5,0,2.24,2658,"1.0000","0.67064","0.67064" +"GO:0070302","regulation of stress-activated protein k...",5,0,2.24,2659,"1.0000","0.67064","0.67064" +"GO:0007517","muscle organ development",36,17,16.16,681,"0.4517","0.67090","0.67090" +"GO:0007283","spermatogenesis",29,12,13.01,1087,"0.7134","0.67125","0.67125" +"GO:0048545","response to steroid hormone",34,11,15.26,2182,"0.9525","0.67257","0.67257" +"GO:0010769","regulation of cell morphogenesis involve...",13,5,5.83,1235,"0.7700","0.67339","0.67339" +"GO:0030203","glycosaminoglycan metabolic process",3,1,1.35,1403,"0.8327","0.67416","0.67416" +"GO:0008285","negative regulation of cell proliferatio...",18,5,8.08,2207,"0.9586","0.67527","0.67527" +"GO:0065009","regulation of molecular function",131,55,58.79,1273,"0.7802","0.53710","0.67715" +"GO:0071900","regulation of protein serine/threonine k...",16,5,7.18,1980,"0.9138","0.67721","0.67721" +"GO:0002931","response to ischemia",5,3,2.24,527,"0.4045","0.67882","0.67882" +"GO:0008045","motor neuron axon guidance",4,2,1.8,904,"0.6071","0.67933","0.67933" +"GO:0070201","regulation of establishment of protein l...",26,8,11.67,2184,"0.9529","0.67971","0.67971" +"GO:0014074","response to purine-containing compound",12,4,5.39,1710,"0.8643","0.68126","0.68126" +"GO:0019098","reproductive behavior",12,3,5.39,2200,"0.9575","0.68126","0.68126" +"GO:0071417","cellular response to organonitrogen comp...",12,6,5.39,693,"0.4696","0.68126","0.68126" +"GO:0045747","positive regulation of Notch signaling p...",4,2,1.8,905,"0.6071","0.68197","0.68197" +"GO:0051899","membrane depolarization",6,3,2.69,779,"0.5561","0.68255","0.68255" +"GO:0033674","positive regulation of kinase activity",15,5,6.73,1740,"0.8784","0.68290","0.68290" +"GO:0009225","nucleotide-sugar metabolic process",4,1,1.8,1890,"0.9079","0.68293","0.68293" +"GO:0017121","phospholipid scrambling",5,3,2.24,528,"0.4045","0.68333","0.68333" +"GO:0097035","regulation of membrane lipid distributio...",5,3,2.24,529,"0.4045","0.68333","0.68333" +"GO:0044257","cellular protein catabolic process",41,12,18.4,2424,"0.9869","0.68345","0.68345" +"GO:0051603","proteolysis involved in cellular protein...",41,12,18.4,2425,"0.9869","0.68345","0.68345" +"GO:0009583","detection of light stimulus",11,5,4.94,830,"0.5999","0.68478","0.68478" +"GO:0032527","protein exit from endoplasmic reticulum",7,0,3.14,2660,"1.0000","0.68521","0.68521" +"GO:0007268","chemical synaptic transmission",41,16,18.4,1329,"0.8204","0.68586","0.68586" +"GO:0098916","anterograde trans-synaptic signaling",41,16,18.4,1330,"0.8204","0.68586","0.68586" +"GO:0099536","synaptic signaling",41,16,18.4,1331,"0.8204","0.68586","0.68586" +"GO:0099537","trans-synaptic signaling",41,16,18.4,1332,"0.8204","0.68586","0.68586" +"GO:0044091","membrane biogenesis",8,3,3.59,1258,"0.7782","0.68669","0.68669" +"GO:0009314","response to radiation",27,12,12.12,816,"0.5921","0.68671","0.68671" +"GO:0043549","regulation of kinase activity",29,12,13.01,1088,"0.7134","0.19470","0.68712" +"GO:0003254","regulation of membrane depolarization",4,2,1.8,906,"0.6071","0.68892","0.68892" +"GO:0035725","sodium ion transmembrane transport",4,2,1.8,907,"0.6071","0.68892","0.68892" +"GO:0071242","cellular response to ammonium ion",4,2,1.8,908,"0.6071","0.68892","0.68892" +"GO:0071320","cellular response to cAMP",4,2,1.8,909,"0.6071","0.68892","0.68892" +"GO:0086001","cardiac muscle cell action potential",4,2,1.8,910,"0.6071","0.68892","0.68892" +"GO:1902065","response to L-glutamate",4,2,1.8,911,"0.6071","0.68892","0.68892" +"GO:0048017","inositol lipid-mediated signaling",3,1,1.35,1404,"0.8327","0.68912","0.68912" +"GO:0051493","regulation of cytoskeleton organization",34,14,15.26,1096,"0.7277","0.69021","0.69021" +"GO:0051129","negative regulation of cellular componen...",38,15,17.05,1285,"0.7987","0.69025","0.69025" +"GO:0001942","hair follicle development",6,2,2.69,1599,"0.8352","0.69252","0.69252" +"GO:0008406","gonad development",6,2,2.69,1600,"0.8352","0.69252","0.69252" +"GO:0022404","molting cycle process",6,2,2.69,1601,"0.8352","0.69252","0.69252" +"GO:0022405","hair cycle process",6,2,2.69,1602,"0.8352","0.69252","0.69252" +"GO:0042633","hair cycle",6,2,2.69,1603,"0.8352","0.69252","0.69252" +"GO:0061351","neural precursor cell proliferation",6,2,2.69,1604,"0.8352","0.69252","0.69252" +"GO:0098773","skin epidermis development",6,2,2.69,1605,"0.8352","0.69252","0.69252" +"GO:0006699","bile acid biosynthetic process",3,1,1.35,1405,"0.8327","0.69298","0.69298" +"GO:0008206","bile acid metabolic process",3,1,1.35,1406,"0.8327","0.69298","0.69298" +"GO:0001764","neuron migration",4,2,1.8,912,"0.6071","0.69346","0.69346" +"GO:0008052","sensory organ boundary specification",4,2,1.8,913,"0.6071","0.69346","0.69346" +"GO:0009649","entrainment of circadian clock",4,2,1.8,914,"0.6071","0.69346","0.69346" +"GO:0010160","formation of animal organ boundary",4,2,1.8,915,"0.6071","0.69346","0.69346" +"GO:0016360","sensory organ precursor cell fate determ...",4,2,1.8,916,"0.6071","0.69346","0.69346" +"GO:0021536","diencephalon development",4,2,1.8,917,"0.6071","0.69346","0.69346" +"GO:0040034","regulation of development, heterochronic",4,2,1.8,918,"0.6071","0.69346","0.69346" +"GO:0048859","formation of anatomical boundary",4,2,1.8,919,"0.6071","0.69346","0.69346" +"GO:0060581","cell fate commitment involved in pattern...",4,2,1.8,920,"0.6071","0.69346","0.69346" +"GO:0060582","cell fate determination involved in patt...",4,2,1.8,921,"0.6071","0.69346","0.69346" +"GO:2001222","regulation of neuron migration",4,2,1.8,922,"0.6071","0.69346","0.69346" +"GO:0065002","intracellular protein transmembrane tran...",6,3,2.69,780,"0.5561","0.69428","0.69428" +"GO:0031400","negative regulation of protein modificat...",35,17,15.71,487,"0.3912","0.27133","0.69512" +"GO:0019722","calcium-mediated signaling",8,3,3.59,1259,"0.7782","0.69599","0.69599" +"GO:0043279","response to alkaloid",8,2,3.59,2088,"0.9363","0.69599","0.69599" +"GO:1903169","regulation of calcium ion transmembrane ...",8,3,3.59,1260,"0.7782","0.69599","0.69599" +"GO:0000413","protein peptidyl-prolyl isomerization",6,2,2.69,1606,"0.8352","0.69700","0.69700" +"GO:0018208","peptidyl-proline modification",6,2,2.69,1607,"0.8352","0.69700","0.69700" +"GO:0071559","response to transforming growth factor b...",9,5,4.04,454,"0.3755","0.69708","0.69708" +"GO:0071560","cellular response to transforming growth...",9,5,4.04,455,"0.3755","0.69708","0.69708" +"GO:0002444","myeloid leukocyte mediated immunity",5,2,2.24,1156,"0.7422","0.69723","0.69723" +"GO:0002446","neutrophil mediated immunity",5,2,2.24,1157,"0.7422","0.69723","0.69723" +"GO:0036230","granulocyte activation",5,2,2.24,1158,"0.7422","0.69723","0.69723" +"GO:0042119","neutrophil activation",5,2,2.24,1159,"0.7422","0.69723","0.69723" +"GO:0031344","regulation of cell projection organizati...",37,15,16.6,1216,"0.7572","0.69803","0.69803" +"GO:0120035","regulation of plasma membrane bounded ce...",37,15,16.6,1217,"0.7572","0.69803","0.69803" +"GO:0097327","response to antineoplastic agent",4,1,1.8,1891,"0.9079","0.69846","0.69846" +"GO:0006563","L-serine metabolic process",3,2,1.35,660,"0.4234","0.69848","0.69848" +"GO:0009070","serine family amino acid biosynthetic pr...",3,2,1.35,661,"0.4234","0.69848","0.69848" +"GO:1902074","response to salt",3,1,1.35,1407,"0.8327","0.69958","0.69958" +"GO:0048232","male gamete generation",30,12,13.46,1223,"0.7645","0.69977","0.69977" +"GO:0060541","respiratory system development",16,3,7.18,2494,"0.9933","0.70177","0.70177" +"GO:0031175","neuron projection development",64,25,28.72,1700,"0.8590","0.70193","0.70193" +"GO:0009163","nucleoside biosynthetic process",3,1,1.35,1408,"0.8327","0.70205","0.70205" +"GO:0042451","purine nucleoside biosynthetic process",3,1,1.35,1409,"0.8327","0.70205","0.70205" +"GO:0042455","ribonucleoside biosynthetic process",3,1,1.35,1410,"0.8327","0.70205","0.70205" +"GO:0046129","purine ribonucleoside biosynthetic proce...",3,1,1.35,1411,"0.8327","0.70205","0.70205" +"GO:1901659","glycosyl compound biosynthetic process",3,1,1.35,1412,"0.8327","0.70205","0.70205" +"GO:1990778","protein localization to cell periphery",11,3,4.94,2024,"0.9342","0.70207","0.70207" +"GO:0035640","exploration behavior",3,1,1.35,1413,"0.8327","0.70287","0.70287" +"GO:0051592","response to calcium ion",11,4,4.94,1318,"0.8072","0.70350","0.70350" +"GO:0072594","establishment of protein localization to...",23,6,10.32,2371,"0.9813","0.70384","0.70384" +"GO:0009894","regulation of catabolic process",45,14,20.19,2362,"0.9800","0.70585","0.70585" +"GO:0009746","response to hexose",6,2,2.69,1608,"0.8352","0.70747","0.70747" +"GO:0009749","response to glucose",6,2,2.69,1609,"0.8352","0.70747","0.70747" +"GO:0034284","response to monosaccharide",6,2,2.69,1610,"0.8352","0.70747","0.70747" +"GO:0030433","ubiquitin-dependent ERAD pathway",11,1,4.94,2564,"0.9986","0.70751","0.70751" +"GO:0010675","regulation of cellular carbohydrate meta...",5,3,2.24,530,"0.4045","0.70763","0.70763" +"GO:0010906","regulation of glucose metabolic process",5,3,2.24,531,"0.4045","0.70763","0.70763" +"GO:0007030","Golgi organization",8,2,3.59,2089,"0.9363","0.70809","0.70809" +"GO:0042592","homeostatic process",104,50,46.67,405,"0.2839","0.45353","0.70823" +"GO:0032350","regulation of hormone metabolic process",4,1,1.8,1892,"0.9079","0.70866","0.70866" +"GO:0032352","positive regulation of hormone metabolic...",4,1,1.8,1893,"0.9079","0.70866","0.70866" +"GO:0033238","regulation of cellular amine metabolic p...",4,1,1.8,1894,"0.9079","0.70866","0.70866" +"GO:0033240","positive regulation of cellular amine me...",4,1,1.8,1895,"0.9079","0.70866","0.70866" +"GO:0010638","positive regulation of organelle organiz...",36,11,16.16,2329,"0.9736","0.70906","0.70906" +"GO:0022604","regulation of cell morphogenesis",18,8,8.08,835,"0.6049","0.70911","0.70911" +"GO:0036337","Fas signaling pathway",3,1,1.35,1414,"0.8327","0.70943","0.70943" +"GO:0060312","regulation of blood vessel remodeling",3,1,1.35,1415,"0.8327","0.70943","0.70943" +"GO:1902042","negative regulation of extrinsic apoptot...",3,1,1.35,1416,"0.8327","0.70943","0.70943" +"GO:1902044","regulation of Fas signaling pathway",3,1,1.35,1417,"0.8327","0.70943","0.70943" +"GO:1902045","negative regulation of Fas signaling pat...",3,1,1.35,1418,"0.8327","0.70943","0.70943" +"GO:1903077","negative regulation of protein localizat...",3,1,1.35,1419,"0.8327","0.70943","0.70943" +"GO:1904376","negative regulation of protein localizat...",3,1,1.35,1420,"0.8327","0.70943","0.70943" +"GO:1905476","negative regulation of protein localizat...",3,1,1.35,1421,"0.8327","0.70943","0.70943" +"GO:2000504","positive regulation of blood vessel remo...",3,1,1.35,1422,"0.8327","0.70943","0.70943" +"GO:0032469","endoplasmic reticulum calcium ion homeos...",3,0,1.35,2661,"1.0000","0.70943","0.70943" +"GO:0046839","phospholipid dephosphorylation",5,2,2.24,1160,"0.7422","0.71017","0.71017" +"GO:0046856","phosphatidylinositol dephosphorylation",5,2,2.24,1161,"0.7422","0.71017","0.71017" +"GO:0006182","cGMP biosynthetic process",4,2,1.8,923,"0.6071","0.71102","0.71102" +"GO:0046068","cGMP metabolic process",4,2,1.8,924,"0.6071","0.71102","0.71102" +"GO:0009725","response to hormone",58,22,26.03,1757,"0.8874","0.71146","0.71146" +"GO:0033993","response to lipid",58,23,26.03,1344,"0.8269","0.71146","0.71146" +"GO:1903047","mitotic cell cycle process",33,13,14.81,1281,"0.7913","0.71153","0.71153" +"GO:0006558","L-phenylalanine metabolic process",3,2,1.35,662,"0.4234","0.71243","0.71243" +"GO:1902221","erythrose 4-phosphate/phosphoenolpyruvat...",3,2,1.35,663,"0.4234","0.71243","0.71243" +"GO:0071495","cellular response to endogenous stimulus",45,19,20.19,1073,"0.6943","0.71246","0.71246" +"GO:0051346","negative regulation of hydrolase activit...",19,9,8.53,723,"0.5017","0.71288","0.71288" +"GO:0097164","ammonium ion metabolic process",19,6,8.53,1996,"0.9215","0.71288","0.71288" +"GO:0009636","response to toxic substance",35,11,15.71,2249,"0.9644","0.71309","0.71309" +"GO:0001754","eye photoreceptor cell differentiation",10,4,4.49,1111,"0.7318","0.71412","0.71412" +"GO:0042461","photoreceptor cell development",10,4,4.49,1112,"0.7318","0.71412","0.71412" +"GO:0046488","phosphatidylinositol metabolic process",23,10,10.32,975,"0.6325","0.71433","0.71433" +"GO:0043065","positive regulation of apoptotic process",17,4,7.63,2373,"0.9814","0.71450","0.71450" +"GO:0043068","positive regulation of programmed cell d...",17,4,7.63,2374,"0.9814","0.71450","0.71450" +"GO:0043401","steroid hormone mediated signaling pathw...",15,6,6.73,1119,"0.7368","0.71575","0.71575" +"GO:0007062","sister chromatid cohesion",4,1,1.8,1896,"0.9079","0.71621","0.71621" +"GO:0051130","positive regulation of cellular componen...",61,22,27.38,2109,"0.9382","0.71862","0.71862" +"GO:1901361","organic cyclic compound catabolic proces...",48,22,21.54,724,"0.5029","0.72117","0.72117" +"GO:0046686","response to cadmium ion",12,2,5.39,2471,"0.9916","0.72149","0.72149" +"GO:0070997","neuron death",12,3,5.39,2201,"0.9575","0.72149","0.72149" +"GO:0006323","DNA packaging",7,2,3.14,1782,"0.8967","0.72339","0.72339" +"GO:0006333","chromatin assembly or disassembly",7,1,3.14,2398,"0.9846","0.72339","0.72339" +"GO:0032879","regulation of localization",134,58,60.14,1022,"0.6802","0.72351","0.72351" +"GO:0032984","protein-containing complex disassembly",17,7,7.63,1081,"0.7069","0.72364","0.72364" +"GO:0050792","regulation of viral process",17,4,7.63,2375,"0.9814","0.72364","0.72364" +"GO:0001655","urogenital system development",22,5,9.87,2464,"0.9916","0.72396","0.72396" +"GO:0072001","renal system development",22,5,9.87,2465,"0.9916","0.72396","0.72396" +"GO:0001947","heart looping",5,2,2.24,1162,"0.7422","0.72468","0.72468" +"GO:0003143","embryonic heart tube morphogenesis",5,2,2.24,1163,"0.7422","0.72468","0.72468" +"GO:0021987","cerebral cortex development",5,2,2.24,1164,"0.7422","0.72468","0.72468" +"GO:0035050","embryonic heart tube development",5,2,2.24,1165,"0.7422","0.72468","0.72468" +"GO:0055076","transition metal ion homeostasis",5,2,2.24,1166,"0.7422","0.72468","0.72468" +"GO:0061371","determination of heart left/right asymme...",5,2,2.24,1167,"0.7422","0.72468","0.72468" +"GO:0016246","RNA interference",8,2,3.59,2090,"0.9363","0.72573","0.72573" +"GO:0002920","regulation of humoral immune response",3,2,1.35,664,"0.4234","0.72625","0.72625" +"GO:0002440","production of molecular mediator of immu...",4,1,1.8,1897,"0.9079","0.72652","0.72652" +"GO:0002753","cytoplasmic pattern recognition receptor...",4,1,1.8,1898,"0.9079","0.72652","0.72652" +"GO:0009651","response to salt stress",4,1,1.8,1899,"0.9079","0.72652","0.72652" +"GO:0030516","regulation of axon extension",4,2,1.8,925,"0.6071","0.72652","0.72652" +"GO:0048675","axon extension",4,2,1.8,926,"0.6071","0.72652","0.72652" +"GO:0048806","genitalia development",4,1,1.8,1900,"0.9079","0.72652","0.72652" +"GO:0050832","defense response to fungus",4,1,1.8,1901,"0.9079","0.72652","0.72652" +"GO:0009409","response to cold",4,0,1.8,2662,"1.0000","0.72652","0.72652" +"GO:0002526","acute inflammatory response",7,2,3.14,1783,"0.8967","0.72657","0.72657" +"GO:0007565","female pregnancy",7,3,3.14,1046,"0.6814","0.72657","0.72657" +"GO:0030534","adult behavior",7,1,3.14,2399,"0.9846","0.72657","0.72657" +"GO:2001235","positive regulation of apoptotic signali...",7,2,3.14,1784,"0.8967","0.72657","0.72657" +"GO:0022412","cellular process involved in reproductio...",31,11,13.91,1763,"0.8934","0.72679","0.72679" +"GO:0009913","epidermal cell differentiation",4,1,1.8,1902,"0.9079","0.72816","0.72816" +"GO:0010522","regulation of calcium ion transport into...",4,2,1.8,927,"0.6071","0.72816","0.72816" +"GO:0051208","sequestering of calcium ion",4,2,1.8,928,"0.6071","0.72816","0.72816" +"GO:0051209","release of sequestered calcium ion into ...",4,2,1.8,929,"0.6071","0.72816","0.72816" +"GO:0051279","regulation of release of sequestered cal...",4,2,1.8,930,"0.6071","0.72816","0.72816" +"GO:0051282","regulation of sequestering of calcium io...",4,2,1.8,931,"0.6071","0.72816","0.72816" +"GO:0051283","negative regulation of sequestering of c...",4,2,1.8,932,"0.6071","0.72816","0.72816" +"GO:0097553","calcium ion transmembrane import into cy...",4,2,1.8,933,"0.6071","0.72816","0.72816" +"GO:0001678","cellular glucose homeostasis",7,3,3.14,1047,"0.6814","0.72834","0.72834" +"GO:0071322","cellular response to carbohydrate stimul...",7,3,3.14,1048,"0.6814","0.72834","0.72834" +"GO:0035967","cellular response to topologically incor...",14,4,6.28,2044,"0.9362","0.73048","0.73048" +"GO:0021953","central nervous system neuron differenti...",8,3,3.59,1261,"0.7782","0.73101","0.73101" +"GO:0048608","reproductive structure development",22,6,9.87,2317,"0.9727","0.73184","0.73184" +"GO:0090068","positive regulation of cell cycle proces...",7,2,3.14,1785,"0.8967","0.73204","0.73204" +"GO:0006606","protein import into nucleus",11,3,4.94,2025,"0.9342","0.73286","0.73286" +"GO:0032414","positive regulation of ion transmembrane...",9,3,4.04,1674,"0.8492","0.73290","0.73290" +"GO:0072359","circulatory system development",50,20,22.44,1288,"0.8002","0.65787","0.73321" +"GO:0032990","cell part morphogenesis",50,19,22.44,1724,"0.8714","0.73326","0.73326" +"GO:0000902","cell morphogenesis",61,26,27.38,1058,"0.6862","0.73339","0.73339" +"GO:0007050","cell cycle arrest",9,3,4.04,1675,"0.8492","0.73398","0.73398" +"GO:0032970","regulation of actin filament-based proce...",31,18,13.91,200,"0.0965","0.09716","0.73421" +"GO:0008064","regulation of actin polymerization or de...",15,8,6.73,429,"0.3425","0.73474","0.73474" +"GO:0030832","regulation of actin filament length",15,8,6.73,430,"0.3425","0.73474","0.73474" +"GO:0090087","regulation of peptide transport",25,8,11.22,2039,"0.9356","0.73530","0.73530" +"GO:0048762","mesenchymal cell differentiation",5,2,2.24,1168,"0.7422","0.73572","0.73572" +"GO:0001508","action potential",6,3,2.69,781,"0.5561","0.73580","0.73580" +"GO:0006942","regulation of striated muscle contractio...",6,3,2.69,782,"0.5561","0.73580","0.73580" +"GO:0007204","positive regulation of cytosolic calcium...",6,3,2.69,783,"0.5561","0.73580","0.73580" +"GO:0035637","multicellular organismal signaling",6,3,2.69,784,"0.5561","0.73580","0.73580" +"GO:0051480","regulation of cytosolic calcium ion conc...",6,3,2.69,785,"0.5561","0.73580","0.73580" +"GO:0055117","regulation of cardiac muscle contraction",6,3,2.69,786,"0.5561","0.73580","0.73580" +"GO:0061337","cardiac conduction",6,3,2.69,787,"0.5561","0.73580","0.73580" +"GO:0001649","osteoblast differentiation",5,2,2.24,1169,"0.7422","0.73634","0.73634" +"GO:0007405","neuroblast proliferation",5,2,2.24,1170,"0.7422","0.73634","0.73634" +"GO:0048709","oligodendrocyte differentiation",5,2,2.24,1171,"0.7422","0.73634","0.73634" +"GO:0060348","bone development",5,1,2.24,2139,"0.9493","0.73634","0.73634" +"GO:0007098","centrosome cycle",5,2,2.24,1172,"0.7422","0.73759","0.73759" +"GO:0031023","microtubule organizing center organizati...",5,2,2.24,1173,"0.7422","0.73759","0.73759" +"GO:0051298","centrosome duplication",5,2,2.24,1174,"0.7422","0.73759","0.73759" +"GO:0003012","muscle system process",27,14,12.12,408,"0.2941","0.11862","0.73849" +"GO:0000209","protein polyubiquitination",14,5,6.28,1353,"0.8312","0.73856","0.73856" +"GO:0006890","retrograde vesicle-mediated transport, G...",7,0,3.14,2663,"1.0000","0.73940","0.73940" +"GO:0034504","protein localization to nucleus",14,4,6.28,2045,"0.9362","0.74029","0.74029" +"GO:0043618","regulation of transcription from RNA pol...",6,1,2.69,2282,"0.9721","0.74090","0.74090" +"GO:0043620","regulation of DNA-templated transcriptio...",6,1,2.69,2283,"0.9721","0.74090","0.74090" +"GO:0050877","nervous system process",61,18,27.38,2531,"0.9956","0.74124","0.74124" +"GO:0007010","cytoskeleton organization",96,47,43.08,292,"0.2368","0.09711","0.74135" +"GO:0007369","gastrulation",12,4,5.39,1711,"0.8643","0.74152","0.74152" +"GO:0031346","positive regulation of cell projection o...",13,4,5.83,1860,"0.9062","0.74167","0.74167" +"GO:0030900","forebrain development",23,7,10.32,2132,"0.9486","0.74195","0.74195" +"GO:0030148","sphingolipid biosynthetic process",3,1,1.35,1423,"0.8327","0.74206","0.74206" +"GO:0031214","biomineral tissue development",3,1,1.35,1424,"0.8327","0.74206","0.74206" +"GO:1901570","fatty acid derivative biosynthetic proce...",3,1,1.35,1425,"0.8327","0.74206","0.74206" +"GO:0006298","mismatch repair",3,1,1.35,1426,"0.8327","0.74339","0.74339" +"GO:0007224","smoothened signaling pathway",6,3,2.69,788,"0.5561","0.74391","0.74391" +"GO:1903828","negative regulation of cellular protein ...",9,1,4.04,2526,"0.9954","0.74400","0.74400" +"GO:0009888","tissue development",103,47,46.22,694,"0.4765","0.68577","0.74409" +"GO:0007600","sensory perception",38,12,17.05,2260,"0.9677","0.74420","0.74420" +"GO:0000226","microtubule cytoskeleton organization",32,11,14.36,1991,"0.9177","0.74524","0.74524" +"GO:0032781","positive regulation of ATPase activity",5,1,2.24,2140,"0.9493","0.74543","0.74543" +"GO:0060711","labyrinthine layer development",5,1,2.24,2141,"0.9493","0.74543","0.74543" +"GO:0031331","positive regulation of cellular cataboli...",19,7,8.53,1340,"0.8255","0.74546","0.74546" +"GO:0045454","cell redox homeostasis",21,10,9.42,700,"0.4837","0.74695","0.74695" +"GO:0002429","immune response-activating cell surface ...",4,1,1.8,1903,"0.9079","0.74759","0.74759" +"GO:0033273","response to vitamin",4,2,1.8,934,"0.6071","0.74759","0.74759" +"GO:0045598","regulation of fat cell differentiation",4,1,1.8,1904,"0.9079","0.74759","0.74759" +"GO:0045944","positive regulation of transcription by ...",37,17,16.6,728,"0.5116","0.74789","0.74789" +"GO:0006595","polyamine metabolic process",3,1,1.35,1427,"0.8327","0.74816","0.74816" +"GO:0006596","polyamine biosynthetic process",3,1,1.35,1428,"0.8327","0.74816","0.74816" +"GO:0009309","amine biosynthetic process",3,1,1.35,1429,"0.8327","0.74816","0.74816" +"GO:0042401","cellular biogenic amine biosynthetic pro...",3,1,1.35,1430,"0.8327","0.74816","0.74816" +"GO:0007409","axonogenesis",32,11,14.36,1992,"0.9177","0.74899","0.74899" +"GO:0030518","intracellular steroid hormone receptor s...",10,3,4.49,1825,"0.8995","0.74988","0.74988" +"GO:0048872","homeostasis of number of cells",15,4,6.73,2190,"0.9572","0.75166","0.75166" +"GO:0002791","regulation of peptide secretion",13,5,5.83,1236,"0.7700","0.75250","0.75250" +"GO:0003007","heart morphogenesis",13,5,5.83,1237,"0.7700","0.75351","0.75351" +"GO:0016571","histone methylation",4,2,1.8,935,"0.6071","0.75376","0.75376" +"GO:0006418","tRNA aminoacylation for protein translat...",16,3,7.18,2495,"0.9933","0.75410","0.75410" +"GO:0043038","amino acid activation",16,3,7.18,2496,"0.9933","0.75410","0.75410" +"GO:0043039","tRNA aminoacylation",16,3,7.18,2497,"0.9933","0.75410","0.75410" +"GO:0035357","peroxisome proliferator activated recept...",4,1,1.8,1905,"0.9079","0.75444","0.75444" +"GO:0033145","positive regulation of intracellular ste...",4,0,1.8,2664,"1.0000","0.75444","0.75444" +"GO:0042278","purine nucleoside metabolic process",7,3,3.14,1049,"0.6814","0.75518","0.75518" +"GO:0032835","glomerulus development",3,1,1.35,1431,"0.8327","0.75528","0.75528" +"GO:0006536","glutamate metabolic process",3,1,1.35,1432,"0.8327","0.75581","0.75581" +"GO:0006760","folic acid-containing compound metabolic...",3,1,1.35,1433,"0.8327","0.75581","0.75581" +"GO:0046128","purine ribonucleoside metabolic process",6,3,2.69,789,"0.5561","0.75717","0.75717" +"GO:0006636","unsaturated fatty acid biosynthetic proc...",4,2,1.8,936,"0.6071","0.75740","0.75740" +"GO:0031497","chromatin assembly",6,1,2.69,2284,"0.9721","0.75772","0.75772" +"GO:0065004","protein-DNA complex assembly",6,2,2.69,1611,"0.8352","0.75772","0.75772" +"GO:0071824","protein-DNA complex subunit organization",6,2,2.69,1612,"0.8352","0.75772","0.75772" +"GO:0048736","appendage development",12,3,5.39,2202,"0.9575","0.75793","0.75793" +"GO:0007155","cell adhesion",80,39,35.9,398,"0.2757","0.16765","0.75811" +"GO:0022610","biological adhesion",80,39,35.9,399,"0.2757","0.16765","0.75811" +"GO:0060341","regulation of cellular localization",42,17,18.85,1225,"0.7678","0.75856","0.75856" +"GO:0061061","muscle structure development",56,27,25.13,438,"0.3537","0.13537","0.75929" +"GO:0097306","cellular response to alcohol",8,3,3.59,1262,"0.7782","0.75946","0.75946" +"GO:0070534","protein K63-linked ubiquitination",4,1,1.8,1906,"0.9079","0.75966","0.75966" +"GO:0030177","positive regulation of Wnt signaling pat...",3,1,1.35,1434,"0.8327","0.76000","0.76000" +"GO:0055024","regulation of cardiac muscle tissue deve...",3,1,1.35,1435,"0.8327","0.76000","0.76000" +"GO:0090151","establishment of protein localization to...",3,1,1.35,1436,"0.8327","0.76026","0.76026" +"GO:0042303","molting cycle",8,2,3.59,2091,"0.9363","0.76058","0.76058" +"GO:0050795","regulation of behavior",8,2,3.59,2092,"0.9363","0.76058","0.76058" +"GO:0032446","protein modification by small protein co...",45,16,20.19,2003,"0.9233","0.76060","0.76060" +"GO:0014070","response to organic cyclic compound",54,20,24.23,1842,"0.9056","0.76127","0.76127" +"GO:0006458","'de novo' protein folding",14,3,6.28,2386,"0.9829","0.76183","0.76183" +"GO:0016241","regulation of macroautophagy",13,5,5.83,1238,"0.7700","0.76184","0.76184" +"GO:0010039","response to iron ion",6,1,2.69,2285,"0.9721","0.76216","0.76216" +"GO:0031102","neuron projection regeneration",6,2,2.69,1613,"0.8352","0.76216","0.76216" +"GO:1901019","regulation of calcium ion transmembrane ...",6,1,2.69,2286,"0.9721","0.76216","0.76216" +"GO:0032535","regulation of cellular component size",26,12,11.67,743,"0.5238","0.76229","0.76229" +"GO:0006220","pyrimidine nucleotide metabolic process",3,0,1.35,2665,"1.0000","0.76235","0.76235" +"GO:0006221","pyrimidine nucleotide biosynthetic proce...",3,0,1.35,2666,"1.0000","0.76235","0.76235" +"GO:0015837","amine transport",4,2,1.8,937,"0.6071","0.76238","0.76238" +"GO:0051952","regulation of amine transport",4,2,1.8,938,"0.6071","0.76238","0.76238" +"GO:1902041","regulation of extrinsic apoptotic signal...",4,1,1.8,1907,"0.9079","0.76238","0.76238" +"GO:0032956","regulation of actin cytoskeleton organiz...",21,10,9.42,701,"0.4837","0.76250","0.76250" +"GO:1903409","reactive oxygen species biosynthetic pro...",4,2,1.8,939,"0.6071","0.76328","0.76328" +"GO:0065003","protein-containing complex assembly",98,41,43.98,1221,"0.7640","0.76455","0.76455" +"GO:0022407","regulation of cell-cell adhesion",10,4,4.49,1113,"0.7318","0.76611","0.76611" +"GO:0048812","neuron projection morphogenesis",46,18,20.64,1341,"0.8263","0.76713","0.76713" +"GO:0048858","cell projection morphogenesis",46,18,20.64,1342,"0.8263","0.76713","0.76713" +"GO:0120039","plasma membrane bounded cell projection ...",46,18,20.64,1343,"0.8263","0.76713","0.76713" +"GO:1902882","regulation of response to oxidative stre...",15,4,6.73,2191,"0.9572","0.76725","0.76725" +"GO:1901654","response to ketone",19,4,8.53,2482,"0.9922","0.76732","0.76732" +"GO:0030030","cell projection organization",99,39,44.43,1759,"0.8897","0.76737","0.76737" +"GO:0044092","negative regulation of molecular functio...",46,20,20.64,972,"0.6320","0.33165","0.76751" +"GO:0018105","peptidyl-serine phosphorylation",3,1,1.35,1437,"0.8327","0.76936","0.76936" +"GO:0001101","response to acid chemical",21,10,9.42,702,"0.4837","0.76979","0.76979" +"GO:0051402","neuron apoptotic process",11,2,4.94,2415,"0.9859","0.76995","0.76995" +"GO:1901214","regulation of neuron death",11,2,4.94,2416,"0.9859","0.76995","0.76995" +"GO:0016567","protein ubiquitination",43,15,19.3,2018,"0.9324","0.77007","0.77007" +"GO:0051270","regulation of cellular component movemen...",32,14,14.36,965,"0.6186","0.77056","0.77056" +"GO:2001242","regulation of intrinsic apoptotic signal...",14,3,6.28,2387,"0.9829","0.77062","0.77062" +"GO:0048580","regulation of post-embryonic development",3,1,1.35,1438,"0.8327","0.77246","0.77246" +"GO:0007017","microtubule-based process",58,21,26.03,2014,"0.9312","0.77416","0.77416" +"GO:0017038","protein import",17,5,7.63,2116,"0.9399","0.77425","0.77425" +"GO:0098542","defense response to other organism",23,10,10.32,976,"0.6325","0.77441","0.77441" +"GO:0031960","response to corticosteroid",8,2,3.59,2093,"0.9363","0.77456","0.77456" +"GO:0046683","response to organophosphorus",8,3,3.59,1263,"0.7782","0.77456","0.77456" +"GO:0052652","cyclic purine nucleotide metabolic proce...",7,3,3.14,1050,"0.6814","0.77460","0.77460" +"GO:0008361","regulation of cell size",9,3,4.04,1676,"0.8492","0.77468","0.77468" +"GO:0022411","cellular component disassembly",20,7,8.98,1721,"0.8687","0.77617","0.77617" +"GO:0006399","tRNA metabolic process",32,7,14.36,2559,"0.9982","0.77714","0.77714" +"GO:0045893","positive regulation of transcription, DN...",47,20,21.09,1018,"0.6797","0.77813","0.77813" +"GO:1902680","positive regulation of RNA biosynthetic ...",47,20,21.09,1019,"0.6797","0.77813","0.77813" +"GO:1903508","positive regulation of nucleic acid-temp...",47,20,21.09,1020,"0.6797","0.77813","0.77813" +"GO:0002262","myeloid cell homeostasis",11,3,4.94,2026,"0.9342","0.77815","0.77815" +"GO:0030218","erythrocyte differentiation",11,3,4.94,2027,"0.9342","0.77815","0.77815" +"GO:0034101","erythrocyte homeostasis",11,3,4.94,2028,"0.9342","0.77815","0.77815" +"GO:0043087","regulation of GTPase activity",14,6,6.28,1015,"0.6597","0.77932","0.77932" +"GO:0006928","movement of cell or subcellular componen...",87,37,39.04,1086,"0.7107","0.78026","0.78026" +"GO:0034329","cell junction assembly",8,3,3.59,1264,"0.7782","0.78162","0.78162" +"GO:0034330","cell junction organization",8,3,3.59,1265,"0.7782","0.78162","0.78162" +"GO:0009737","response to abscisic acid",6,2,2.69,1614,"0.8352","0.78186","0.78186" +"GO:0000956","nuclear-transcribed mRNA catabolic proce...",6,0,2.69,2667,"1.0000","0.78186","0.78186" +"GO:0046474","glycerophospholipid biosynthetic process",18,8,8.08,836,"0.6049","0.78224","0.78224" +"GO:0006367","transcription initiation from RNA polyme...",4,2,1.8,940,"0.6071","0.78290","0.78290" +"GO:0021781","glial cell fate commitment",4,2,1.8,941,"0.6071","0.78290","0.78290" +"GO:0030278","regulation of ossification",4,1,1.8,1908,"0.9079","0.78290","0.78290" +"GO:0030279","negative regulation of ossification",4,1,1.8,1909,"0.9079","0.78290","0.78290" +"GO:0035270","endocrine system development",4,1,1.8,1910,"0.9079","0.78290","0.78290" +"GO:0042471","ear morphogenesis",4,1,1.8,1911,"0.9079","0.78290","0.78290" +"GO:0042472","inner ear morphogenesis",4,1,1.8,1912,"0.9079","0.78290","0.78290" +"GO:0046661","male sex differentiation",4,2,1.8,942,"0.6071","0.78290","0.78290" +"GO:0048565","digestive tract development",4,1,1.8,1913,"0.9079","0.78290","0.78290" +"GO:0055123","digestive system development",4,1,1.8,1914,"0.9079","0.78290","0.78290" +"GO:0072091","regulation of stem cell proliferation",4,1,1.8,1915,"0.9079","0.78290","0.78290" +"GO:0090090","negative regulation of canonical Wnt sig...",4,1,1.8,1916,"0.9079","0.78290","0.78290" +"GO:2000177","regulation of neural precursor cell prol...",4,1,1.8,1917,"0.9079","0.78290","0.78290" +"GO:2000243","positive regulation of reproductive proc...",4,0,1.8,2668,"1.0000","0.78290","0.78290" +"GO:0043588","skin development",11,4,4.94,1319,"0.8072","0.78428","0.78428" +"GO:0046530","photoreceptor cell differentiation",11,4,4.94,1320,"0.8072","0.78428","0.78428" +"GO:0007052","mitotic spindle organization",9,2,4.04,2218,"0.9611","0.78472","0.78472" +"GO:0090307","mitotic spindle assembly",9,2,4.04,2219,"0.9611","0.78472","0.78472" +"GO:1902850","microtubule cytoskeleton organization in...",9,2,4.04,2220,"0.9611","0.78472","0.78472" +"GO:0002700","regulation of production of molecular me...",3,1,1.35,1439,"0.8327","0.78701","0.78701" +"GO:0002702","positive regulation of production of mol...",3,1,1.35,1440,"0.8327","0.78701","0.78701" +"GO:0002833","positive regulation of response to bioti...",3,1,1.35,1441,"0.8327","0.78701","0.78701" +"GO:0007297","ovarian follicle cell migration",3,1,1.35,1442,"0.8327","0.78701","0.78701" +"GO:0007298","border follicle cell migration",3,1,1.35,1443,"0.8327","0.78701","0.78701" +"GO:0009411","response to UV",3,1,1.35,1444,"0.8327","0.78701","0.78701" +"GO:0019730","antimicrobial humoral response",3,1,1.35,1445,"0.8327","0.78701","0.78701" +"GO:0035872","nucleotide-binding domain, leucine rich ...",3,1,1.35,1446,"0.8327","0.78701","0.78701" +"GO:0070423","nucleotide-binding oligomerization domai...",3,1,1.35,1447,"0.8327","0.78701","0.78701" +"GO:0071711","basement membrane organization",3,1,1.35,1448,"0.8327","0.78701","0.78701" +"GO:0097501","stress response to metal ion",3,1,1.35,1449,"0.8327","0.78701","0.78701" +"GO:0007140","male meiotic nuclear division",3,0,1.35,2669,"1.0000","0.78701","0.78701" +"GO:0038066","p38MAPK cascade",3,0,1.35,2670,"1.0000","0.78701","0.78701" +"GO:0043277","apoptotic cell clearance",3,0,1.35,2671,"1.0000","0.78701","0.78701" +"GO:0048639","positive regulation of developmental gro...",3,0,1.35,2672,"1.0000","0.78701","0.78701" +"GO:0007005","mitochondrion organization",40,16,17.95,1276,"0.7831","0.78706","0.78706" +"GO:0009410","response to xenobiotic stimulus",7,2,3.14,1786,"0.8967","0.78712","0.78712" +"GO:0048562","embryonic organ morphogenesis",11,3,4.94,2029,"0.9342","0.78720","0.78720" +"GO:0007166","cell surface receptor signaling pathway",112,50,50.26,795,"0.5577","0.78752","0.78752" +"GO:0006605","protein targeting",22,6,9.87,2318,"0.9727","0.78862","0.78862" +"GO:0003407","neural retina development",9,4,4.04,986,"0.6361","0.78998","0.78998" +"GO:0048731","system development",272,111,122.07,2020,"0.9328","0.58212","0.79000" +"GO:0055006","cardiac cell development",8,7,3.59,33,"0.0177","0.00234","0.79001" +"GO:0051223","regulation of protein transport",24,8,10.77,1977,"0.9129","0.79026","0.79026" +"GO:0071407","cellular response to organic cyclic comp...",26,9,11.67,1766,"0.8965","0.79097","0.79097" +"GO:1905330","regulation of morphogenesis of an epithe...",9,7,4.04,113,"0.0487","0.00799","0.79166" +"GO:0001503","ossification",8,2,3.59,2094,"0.9363","0.79200","0.79200" +"GO:0043069","negative regulation of programmed cell d...",41,14,18.4,2121,"0.9410","0.79248","0.79248" +"GO:0090130","tissue migration",9,3,4.04,1677,"0.8492","0.79288","0.79288" +"GO:0090132","epithelium migration",9,3,4.04,1678,"0.8492","0.79288","0.79288" +"GO:0006575","cellular modified amino acid metabolic p...",13,6,5.83,807,"0.5699","0.79313","0.79313" +"GO:0006334","nucleosome assembly",5,1,2.24,2142,"0.9493","0.79366","0.79366" +"GO:0034728","nucleosome organization",5,1,2.24,2143,"0.9493","0.79366","0.79366" +"GO:0031098","stress-activated protein kinase signalin...",8,1,3.59,2451,"0.9916","0.79446","0.79446" +"GO:0051403","stress-activated MAPK cascade",8,1,3.59,2452,"0.9916","0.79446","0.79446" +"GO:0009790","embryo development",63,25,28.27,1578,"0.8334","0.79449","0.79449" +"GO:0051788","response to misfolded protein",4,1,1.8,1918,"0.9079","0.79535","0.79535" +"GO:0071218","cellular response to misfolded protein",4,1,1.8,1919,"0.9079","0.79535","0.79535" +"GO:1903046","meiotic cell cycle process",12,3,5.39,2203,"0.9575","0.79639","0.79639" +"GO:0045934","negative regulation of nucleobase-contai...",46,14,20.64,2410,"0.9850","0.79701","0.79701" +"GO:0051347","positive regulation of transferase activ...",18,5,8.08,2208,"0.9586","0.79710","0.79710" +"GO:0006939","smooth muscle contraction",5,2,2.24,1175,"0.7422","0.79753","0.79753" +"GO:0031103","axon regeneration",5,1,2.24,2144,"0.9493","0.79753","0.79753" +"GO:0043271","negative regulation of ion transport",5,2,2.24,1176,"0.7422","0.79753","0.79753" +"GO:0048678","response to axon injury",5,1,2.24,2145,"0.9493","0.79753","0.79753" +"GO:0050848","regulation of calcium-mediated signaling",5,2,2.24,1177,"0.7422","0.79753","0.79753" +"GO:0070570","regulation of neuron projection regenera...",5,2,2.24,1178,"0.7422","0.79753","0.79753" +"GO:0071326","cellular response to monosaccharide stim...",5,2,2.24,1179,"0.7422","0.79753","0.79753" +"GO:0071331","cellular response to hexose stimulus",5,2,2.24,1180,"0.7422","0.79753","0.79753" +"GO:0071333","cellular response to glucose stimulus",5,2,2.24,1181,"0.7422","0.79753","0.79753" +"GO:1905477","positive regulation of protein localizat...",3,0,1.35,2673,"1.0000","0.79805","0.79805" +"GO:0001822","kidney development",20,5,8.98,2369,"0.9810","0.79817","0.79817" +"GO:0198738","cell-cell signaling by wnt",20,6,8.98,2126,"0.9442","0.79817","0.79817" +"GO:0009991","response to extracellular stimulus",33,12,14.81,1744,"0.8788","0.79858","0.79858" +"GO:0031667","response to nutrient levels",33,12,14.81,1745,"0.8788","0.79858","0.79858" +"GO:0051262","protein tetramerization",7,2,3.14,1787,"0.8967","0.79976","0.79976" +"GO:0051591","response to cAMP",7,3,3.14,1051,"0.6814","0.79976","0.79976" +"GO:2001259","positive regulation of cation channel ac...",7,3,3.14,1052,"0.6814","0.79976","0.79976" +"GO:0006887","exocytosis",27,8,12.12,2252,"0.9660","0.80029","0.80029" +"GO:0045931","positive regulation of mitotic cell cycl...",5,1,2.24,2146,"0.9493","0.80042","0.80042" +"GO:0051963","regulation of synapse assembly",5,2,2.24,1182,"0.7422","0.80099","0.80099" +"GO:0010033","response to organic substance",137,47,61.48,2541,"0.9962","0.80111","0.80111" +"GO:0007220","Notch receptor processing",3,1,1.35,1450,"0.8327","0.80127","0.80127" +"GO:0044706","multi-multicellular organism process",8,3,3.59,1266,"0.7782","0.80193","0.80193" +"GO:0035051","cardiocyte differentiation",11,8,4.94,131,"0.0596","0.04388","0.80340" +"GO:0044093","positive regulation of molecular functio...",71,30,31.86,1089,"0.7153","0.80370","0.80370" +"GO:0051051","negative regulation of transport",16,6,7.18,1297,"0.8004","0.80374","0.80374" +"GO:0030336","negative regulation of cell migration",4,2,1.8,943,"0.6071","0.80480","0.80480" +"GO:0032309","icosanoid secretion",4,1,1.8,1920,"0.9079","0.80480","0.80480" +"GO:0050482","arachidonic acid secretion",4,1,1.8,1921,"0.9079","0.80480","0.80480" +"GO:0051271","negative regulation of cellular componen...",4,2,1.8,944,"0.6071","0.80480","0.80480" +"GO:0071715","icosanoid transport",4,1,1.8,1922,"0.9079","0.80480","0.80480" +"GO:1901571","fatty acid derivative transport",4,1,1.8,1923,"0.9079","0.80480","0.80480" +"GO:1903963","arachidonate transport",4,1,1.8,1924,"0.9079","0.80480","0.80480" +"GO:2000146","negative regulation of cell motility",4,2,1.8,945,"0.6071","0.80480","0.80480" +"GO:0048667","cell morphogenesis involved in neuron di...",38,13,17.05,2036,"0.9342","0.80488","0.80488" +"GO:0031329","regulation of cellular catabolic process",41,13,18.4,2264,"0.9707","0.80635","0.80635" +"GO:0034976","response to endoplasmic reticulum stress",26,9,11.67,1767,"0.8965","0.80883","0.80883" +"GO:0016358","dendrite development",17,5,7.63,2117,"0.9399","0.81028","0.81028" +"GO:0022603","regulation of anatomical structure morph...",38,19,17.05,418,"0.3160","0.17836","0.81096" +"GO:1901990","regulation of mitotic cell cycle phase t...",6,2,2.69,1615,"0.8352","0.81251","0.81251" +"GO:1903034","regulation of response to wounding",8,4,3.59,738,"0.5202","0.81320","0.81320" +"GO:0006511","ubiquitin-dependent protein catabolic pr...",32,9,14.36,2393,"0.9837","0.81328","0.81328" +"GO:0019941","modification-dependent protein catabolic...",32,9,14.36,2394,"0.9837","0.81328","0.81328" +"GO:0043632","modification-dependent macromolecule cat...",32,9,14.36,2395,"0.9837","0.81328","0.81328" +"GO:0032147","activation of protein kinase activity",6,2,2.69,1616,"0.8352","0.81389","0.81389" +"GO:0060491","regulation of cell projection assembly",13,5,5.83,1239,"0.7700","0.81449","0.81449" +"GO:0120032","regulation of plasma membrane bounded ce...",13,5,5.83,1240,"0.7700","0.81449","0.81449" +"GO:0001704","formation of primary germ layer",6,2,2.69,1617,"0.8352","0.81457","0.81457" +"GO:0043123","positive regulation of I-kappaB kinase/N...",4,2,1.8,946,"0.6071","0.81516","0.81516" +"GO:2000147","positive regulation of cell motility",12,5,5.39,1065,"0.6930","0.81583","0.81583" +"GO:0030252","growth hormone secretion",3,1,1.35,1451,"0.8327","0.81595","0.81595" +"GO:0007006","mitochondrial membrane organization",9,4,4.04,987,"0.6361","0.81608","0.81608" +"GO:0008154","actin polymerization or depolymerization",17,8,7.63,741,"0.5217","0.81621","0.81621" +"GO:0019321","pentose metabolic process",3,1,1.35,1452,"0.8327","0.81667","0.81667" +"GO:0051248","negative regulation of protein metabolic...",55,22,24.68,1323,"0.8081","0.45562","0.81682" +"GO:0002683","negative regulation of immune system pro...",15,5,6.73,1741,"0.8784","0.81692","0.81692" +"GO:0006915","apoptotic process",69,25,30.97,2129,"0.9448","0.81719","0.81719" +"GO:0007167","enzyme linked receptor protein signaling...",31,14,13.91,793,"0.5570","0.81730","0.81730" +"GO:0007548","sex differentiation",12,5,5.39,1066,"0.6930","0.81740","0.81740" +"GO:0120036","plasma membrane bounded cell projection ...",95,37,42.63,1831,"0.9020","0.81789","0.81789" +"GO:0016236","macroautophagy",15,5,6.73,1742,"0.8784","0.81832","0.81832" +"GO:0051187","cofactor catabolic process",5,1,2.24,2147,"0.9493","0.81840","0.81840" +"GO:0000086","G2/M transition of mitotic cell cycle",5,2,2.24,1183,"0.7422","0.81877","0.81877" +"GO:0010389","regulation of G2/M transition of mitotic...",5,2,2.24,1184,"0.7422","0.81877","0.81877" +"GO:0044839","cell cycle G2/M phase transition",5,2,2.24,1185,"0.7422","0.81877","0.81877" +"GO:1902749","regulation of cell cycle G2/M phase tran...",5,2,2.24,1186,"0.7422","0.81877","0.81877" +"GO:0006879","cellular iron ion homeostasis",4,1,1.8,1925,"0.9079","0.81892","0.81892" +"GO:0046916","cellular transition metal ion homeostasi...",4,1,1.8,1926,"0.9079","0.81892","0.81892" +"GO:0055072","iron ion homeostasis",4,1,1.8,1927,"0.9079","0.81892","0.81892" +"GO:0048598","embryonic morphogenesis",35,10,15.71,2409,"0.9848","0.81899","0.81899" +"GO:0002066","columnar/cuboidal epithelial cell develo...",10,2,4.49,2341,"0.9765","0.81913","0.81913" +"GO:0043523","regulation of neuron apoptotic process",10,1,4.49,2552,"0.9974","0.81913","0.81913" +"GO:0007424","open tracheal system development",9,1,4.04,2527,"0.9954","0.81984","0.81984" +"GO:0000187","activation of MAPK activity",5,1,2.24,2148,"0.9493","0.82045","0.82045" +"GO:0009081","branched-chain amino acid metabolic proc...",6,3,2.69,790,"0.5561","0.82071","0.82071" +"GO:0019068","virion assembly",3,1,1.35,1453,"0.8327","0.82076","0.82076" +"GO:0006775","fat-soluble vitamin metabolic process",4,1,1.8,1928,"0.9079","0.82121","0.82121" +"GO:0044255","cellular lipid metabolic process",117,60,52.51,196,"0.0918","0.03216","0.82177" +"GO:0042742","defense response to bacterium",11,5,4.94,831,"0.5999","0.82208","0.82208" +"GO:0051046","regulation of secretion",23,10,10.32,977,"0.6325","0.82422","0.82422" +"GO:0042440","pigment metabolic process",6,3,2.69,791,"0.5561","0.82510","0.82510" +"GO:0007043","cell-cell junction assembly",3,1,1.35,1454,"0.8327","0.82577","0.82577" +"GO:0010669","epithelial structure maintenance",3,1,1.35,1455,"0.8327","0.82577","0.82577" +"GO:0035151","regulation of tube size, open tracheal s...",3,1,1.35,1456,"0.8327","0.82577","0.82577" +"GO:0035152","regulation of tube architecture, open tr...",3,1,1.35,1457,"0.8327","0.82577","0.82577" +"GO:0043297","apical junction assembly",3,1,1.35,1458,"0.8327","0.82577","0.82577" +"GO:0045216","cell-cell junction organization",3,1,1.35,1459,"0.8327","0.82577","0.82577" +"GO:0120192","tight junction assembly",3,1,1.35,1460,"0.8327","0.82577","0.82577" +"GO:0120193","tight junction organization",3,1,1.35,1461,"0.8327","0.82577","0.82577" +"GO:0051385","response to mineralocorticoid",6,2,2.69,1618,"0.8352","0.82577","0.82577" +"GO:0043414","macromolecule methylation",23,5,10.32,2515,"0.9945","0.82603","0.82603" +"GO:0031328","positive regulation of cellular biosynth...",55,23,24.68,1093,"0.7240","0.82686","0.82686" +"GO:0032387","negative regulation of intracellular tra...",5,1,2.24,2149,"0.9493","0.82690","0.82690" +"GO:0098754","detoxification",3,0,1.35,2674,"1.0000","0.82813","0.82813" +"GO:1990748","cellular detoxification",3,0,1.35,2675,"1.0000","0.82813","0.82813" +"GO:0008104","protein localization",160,58,71.8,2448,"0.9910","0.82876","0.82876" +"GO:0097352","autophagosome maturation",3,1,1.35,1462,"0.8327","0.82955","0.82955" +"GO:0001818","negative regulation of cytokine producti...",4,2,1.8,947,"0.6071","0.82963","0.82963" +"GO:0007264","small GTPase mediated signal transductio...",33,10,14.81,2266,"0.9712","0.83023","0.83023" +"GO:0008544","epidermis development",11,3,4.94,2030,"0.9342","0.83075","0.83075" +"GO:0051336","regulation of hydrolase activity",47,21,21.09,799,"0.5676","0.83155","0.83155" +"GO:0070265","necrotic cell death",3,1,1.35,1463,"0.8327","0.83166","0.83166" +"GO:0050771","negative regulation of axonogenesis",4,2,1.8,948,"0.6071","0.83167","0.83167" +"GO:0002052","positive regulation of neuroblast prolif...",3,1,1.35,1464,"0.8327","0.83236","0.83236" +"GO:0002062","chondrocyte differentiation",3,1,1.35,1465,"0.8327","0.83236","0.83236" +"GO:0030858","positive regulation of epithelial cell d...",3,1,1.35,1466,"0.8327","0.83236","0.83236" +"GO:0030879","mammary gland development",3,1,1.35,1467,"0.8327","0.83236","0.83236" +"GO:0032330","regulation of chondrocyte differentiatio...",3,1,1.35,1468,"0.8327","0.83236","0.83236" +"GO:0032332","positive regulation of chondrocyte diffe...",3,1,1.35,1469,"0.8327","0.83236","0.83236" +"GO:0035019","somatic stem cell population maintenance",3,1,1.35,1470,"0.8327","0.83236","0.83236" +"GO:0048708","astrocyte differentiation",3,1,1.35,1471,"0.8327","0.83236","0.83236" +"GO:0050679","positive regulation of epithelial cell p...",3,1,1.35,1472,"0.8327","0.83236","0.83236" +"GO:0061035","regulation of cartilage development",3,1,1.35,1473,"0.8327","0.83236","0.83236" +"GO:0061036","positive regulation of cartilage develop...",3,1,1.35,1474,"0.8327","0.83236","0.83236" +"GO:0072497","mesenchymal stem cell differentiation",3,1,1.35,1475,"0.8327","0.83236","0.83236" +"GO:1902692","regulation of neuroblast proliferation",3,1,1.35,1476,"0.8327","0.83236","0.83236" +"GO:2000179","positive regulation of neural precursor ...",3,1,1.35,1477,"0.8327","0.83236","0.83236" +"GO:2000648","positive regulation of stem cell prolife...",3,1,1.35,1478,"0.8327","0.83236","0.83236" +"GO:2000738","positive regulation of stem cell differe...",3,1,1.35,1479,"0.8327","0.83236","0.83236" +"GO:2000739","regulation of mesenchymal stem cell diff...",3,1,1.35,1480,"0.8327","0.83236","0.83236" +"GO:2000741","positive regulation of mesenchymal stem ...",3,1,1.35,1481,"0.8327","0.83236","0.83236" +"GO:0006368","transcription elongation from RNA polyme...",3,0,1.35,2676,"1.0000","0.83236","0.83236" +"GO:0043491","protein kinase B signaling",3,0,1.35,2677,"1.0000","0.83236","0.83236" +"GO:0048546","digestive tract morphogenesis",3,0,1.35,2678,"1.0000","0.83236","0.83236" +"GO:0048864","stem cell development",3,0,1.35,2679,"1.0000","0.83236","0.83236" +"GO:0071260","cellular response to mechanical stimulus",3,0,1.35,2680,"1.0000","0.83236","0.83236" +"GO:0051147","regulation of muscle cell differentiatio...",9,7,4.04,114,"0.0487","0.03732","0.83258" +"GO:0051153","regulation of striated muscle cell diffe...",9,7,4.04,115,"0.0487","0.03732","0.83258" +"GO:0019079","viral genome replication",13,3,5.83,2323,"0.9729","0.83294","0.83294" +"GO:0044770","cell cycle phase transition",16,5,7.18,1981,"0.9138","0.83347","0.83347" +"GO:0055007","cardiac muscle cell differentiation",10,8,4.49,50,"0.0267","0.01750","0.83418" +"GO:0034763","negative regulation of transmembrane tra...",4,1,1.8,1929,"0.9079","0.83450","0.83450" +"GO:0034766","negative regulation of ion transmembrane...",4,1,1.8,1930,"0.9079","0.83450","0.83450" +"GO:0035773","insulin secretion involved in cellular r...",4,1,1.8,1931,"0.9079","0.83450","0.83450" +"GO:0048679","regulation of axon regeneration",4,1,1.8,1932,"0.9079","0.83450","0.83450" +"GO:0048680","positive regulation of axon regeneration",4,1,1.8,1933,"0.9079","0.83450","0.83450" +"GO:0070572","positive regulation of neuron projection...",4,1,1.8,1934,"0.9079","0.83450","0.83450" +"GO:1903036","positive regulation of response to wound...",4,1,1.8,1935,"0.9079","0.83450","0.83450" +"GO:1903523","negative regulation of blood circulation",4,2,1.8,949,"0.6071","0.83450","0.83450" +"GO:0071396","cellular response to lipid",36,14,16.16,1326,"0.8146","0.83484","0.83484" +"GO:0009896","positive regulation of catabolic process",21,8,9.42,1304,"0.8008","0.83601","0.83601" +"GO:0046903","secretion",63,19,28.27,2516,"0.9946","0.83652","0.83652" +"GO:0046835","carbohydrate phosphorylation",4,2,1.8,950,"0.6071","0.83652","0.83652" +"GO:0032496","response to lipopolysaccharide",10,2,4.49,2342,"0.9765","0.83839","0.83839" +"GO:0071216","cellular response to biotic stimulus",10,3,4.49,1826,"0.8995","0.83839","0.83839" +"GO:0002181","cytoplasmic translation",4,1,1.8,1936,"0.9079","0.83932","0.83932" +"GO:0043583","ear development",6,1,2.69,2287,"0.9721","0.83967","0.83967" +"GO:0048839","inner ear development",6,1,2.69,2288,"0.9721","0.83967","0.83967" +"GO:0060485","mesenchyme development",6,2,2.69,1619,"0.8352","0.83967","0.83967" +"GO:0050708","regulation of protein secretion",12,5,5.39,1067,"0.6930","0.83984","0.83984" +"GO:0033013","tetrapyrrole metabolic process",7,3,3.14,1053,"0.6814","0.83994","0.83994" +"GO:0007368","determination of left/right symmetry",8,2,3.59,2095,"0.9363","0.84046","0.84046" +"GO:0009799","specification of symmetry",8,2,3.59,2096,"0.9363","0.84046","0.84046" +"GO:0009855","determination of bilateral symmetry",8,2,3.59,2097,"0.9363","0.84046","0.84046" +"GO:0045017","glycerolipid biosynthetic process",20,8,8.98,1211,"0.7453","0.84057","0.84057" +"GO:0019953","sexual reproduction",54,20,24.23,1843,"0.9056","0.84079","0.84079" +"GO:0048194","Golgi vesicle budding",5,1,2.24,2150,"0.9493","0.84100","0.84100" +"GO:0007276","gamete generation",45,16,20.19,2004,"0.9233","0.84186","0.84186" +"GO:0032502","developmental process",358,148,160.66,2037,"0.9349","0.83294","0.84444" +"GO:0019233","sensory perception of pain",6,2,2.69,1620,"0.8352","0.84453","0.84453" +"GO:0051607","defense response to virus",4,1,1.8,1937,"0.9079","0.84508","0.84508" +"GO:2001022","positive regulation of response to DNA d...",4,0,1.8,2681,"1.0000","0.84508","0.84508" +"GO:0043484","regulation of RNA splicing",10,2,4.49,2343,"0.9765","0.84581","0.84581" +"GO:0048024","regulation of mRNA splicing, via spliceo...",10,2,4.49,2344,"0.9765","0.84581","0.84581" +"GO:0050684","regulation of mRNA processing",10,2,4.49,2345,"0.9765","0.84581","0.84581" +"GO:0006986","response to unfolded protein",10,4,4.49,1114,"0.7318","0.84643","0.84643" +"GO:0072375","medium-term memory",3,1,1.35,1482,"0.8327","0.84665","0.84665" +"GO:0007271","synaptic transmission, cholinergic",5,2,2.24,1187,"0.7422","0.84684","0.84684" +"GO:0032222","regulation of synaptic transmission, cho...",5,2,2.24,1188,"0.7422","0.84684","0.84684" +"GO:0030097","hemopoiesis",22,8,9.87,1640,"0.8466","0.84734","0.84734" +"GO:0048592","eye morphogenesis",22,8,9.87,1641,"0.8466","0.84734","0.84734" +"GO:0006913","nucleocytoplasmic transport",17,5,7.63,2118,"0.9399","0.84785","0.84785" +"GO:0051169","nuclear transport",17,5,7.63,2119,"0.9399","0.84785","0.84785" +"GO:0007156","homophilic cell adhesion via plasma memb...",8,2,3.59,2098,"0.9363","0.84842","0.84842" +"GO:0010942","positive regulation of cell death",20,5,8.98,2370,"0.9810","0.84862","0.84862" +"GO:0001932","regulation of protein phosphorylation",50,19,22.44,1725,"0.8714","0.42856","0.85035" +"GO:0007088","regulation of mitotic nuclear division",11,3,4.94,2031,"0.9342","0.85070","0.85070" +"GO:0002244","hematopoietic progenitor cell differenti...",3,0,1.35,2682,"1.0000","0.85094","0.85094" +"GO:0009299","mRNA transcription",3,0,1.35,2683,"1.0000","0.85094","0.85094" +"GO:0035358","regulation of peroxisome proliferator ac...",3,0,1.35,2684,"1.0000","0.85094","0.85094" +"GO:0035360","positive regulation of peroxisome prolif...",3,0,1.35,2685,"1.0000","0.85094","0.85094" +"GO:0042789","mRNA transcription by RNA polymerase II",3,0,1.35,2686,"1.0000","0.85094","0.85094" +"GO:0045600","positive regulation of fat cell differen...",3,0,1.35,2687,"1.0000","0.85094","0.85094" +"GO:0045647","negative regulation of erythrocyte diffe...",3,0,1.35,2688,"1.0000","0.85094","0.85094" +"GO:0060218","hematopoietic stem cell differentiation",3,0,1.35,2689,"1.0000","0.85094","0.85094" +"GO:0070373","negative regulation of ERK1 and ERK2 cas...",3,0,1.35,2690,"1.0000","0.85094","0.85094" +"GO:0097066","response to thyroid hormone",3,0,1.35,2691,"1.0000","0.85094","0.85094" +"GO:0097067","cellular response to thyroid hormone sti...",3,0,1.35,2692,"1.0000","0.85094","0.85094" +"GO:1901532","regulation of hematopoietic progenitor c...",3,0,1.35,2693,"1.0000","0.85094","0.85094" +"GO:1902036","regulation of hematopoietic stem cell di...",3,0,1.35,2694,"1.0000","0.85094","0.85094" +"GO:2000322","regulation of glucocorticoid receptor si...",3,0,1.35,2695,"1.0000","0.85094","0.85094" +"GO:2000324","positive regulation of glucocorticoid re...",3,0,1.35,2696,"1.0000","0.85094","0.85094" +"GO:0006354","DNA-templated transcription, elongation",5,1,2.24,2151,"0.9493","0.85173","0.85173" +"GO:0045664","regulation of neuron differentiation",39,15,17.5,1583,"0.8349","0.85176","0.85176" +"GO:0009611","response to wounding",36,16,16.16,814,"0.5853","0.14088","0.85186" +"GO:0022008","neurogenesis",111,41,49.81,2254,"0.9663","0.85199","0.85199" +"GO:1903842","response to arsenite ion",4,0,1.8,2697,"1.0000","0.85212","0.85212" +"GO:0002027","regulation of heart rate",5,2,2.24,1189,"0.7422","0.85259","0.85259" +"GO:0035458","cellular response to interferon-beta",5,2,2.24,1190,"0.7422","0.85259","0.85259" +"GO:0051289","protein homotetramerization",5,2,2.24,1191,"0.7422","0.85259","0.85259" +"GO:0086065","cell communication involved in cardiac c...",5,2,2.24,1192,"0.7422","0.85259","0.85259" +"GO:0110096","cellular response to aldehyde",5,1,2.24,2152,"0.9493","0.85259","0.85259" +"GO:1901655","cellular response to ketone",5,1,2.24,2153,"0.9493","0.85259","0.85259" +"GO:0010507","negative regulation of autophagy",6,1,2.69,2289,"0.9721","0.85331","0.85331" +"GO:0010948","negative regulation of cell cycle proces...",8,3,3.59,1267,"0.7782","0.85365","0.85365" +"GO:0065007","biological regulation",871,355,390.88,2572,"0.9990","0.86153","0.85439" +"GO:0002263","cell activation involved in immune respo...",4,1,1.8,1938,"0.9079","0.85521","0.85521" +"GO:0002275","myeloid cell activation involved in immu...",4,1,1.8,1939,"0.9079","0.85521","0.85521" +"GO:0002283","neutrophil activation involved in immune...",4,1,1.8,1940,"0.9079","0.85521","0.85521" +"GO:0002366","leukocyte activation involved in immune ...",4,1,1.8,1941,"0.9079","0.85521","0.85521" +"GO:0043299","leukocyte degranulation",4,1,1.8,1942,"0.9079","0.85521","0.85521" +"GO:0043312","neutrophil degranulation",4,1,1.8,1943,"0.9079","0.85521","0.85521" +"GO:0010557","positive regulation of macromolecule bio...",53,22,23.79,1120,"0.7371","0.85521","0.85521" +"GO:0040017","positive regulation of locomotion",17,6,7.63,1697,"0.8514","0.85522","0.85522" +"GO:1901661","quinone metabolic process",6,2,2.69,1621,"0.8352","0.85598","0.85598" +"GO:0001709","cell fate determination",7,3,3.14,1054,"0.6814","0.85695","0.85695" +"GO:0030323","respiratory tube development",7,1,3.14,2400,"0.9846","0.85695","0.85695" +"GO:0048666","neuron development",83,33,37.25,1699,"0.8569","0.85793","0.85793" +"GO:0050896","response to stimulus",636,271,285.42,1987,"0.9161","0.72075","0.85794" +"GO:0009187","cyclic nucleotide metabolic process",12,5,5.39,1068,"0.6930","0.85824","0.85824" +"GO:0009190","cyclic nucleotide biosynthetic process",12,5,5.39,1069,"0.6930","0.85824","0.85824" +"GO:0035108","limb morphogenesis",7,2,3.14,1788,"0.8967","0.85897","0.85897" +"GO:0050678","regulation of epithelial cell proliferat...",7,2,3.14,1789,"0.8967","0.85897","0.85897" +"GO:0060173","limb development",7,2,3.14,1790,"0.8967","0.85897","0.85897" +"GO:0031056","regulation of histone modification",4,0,1.8,2698,"1.0000","0.85903","0.85903" +"GO:0002274","myeloid leukocyte activation",7,2,3.14,1791,"0.8967","0.85912","0.85912" +"GO:0051321","meiotic cell cycle",14,3,6.28,2388,"0.9829","0.85941","0.85941" +"GO:0022618","ribonucleoprotein complex assembly",11,0,4.94,2699,"1.0000","0.85953","0.85953" +"GO:0071826","ribonucleoprotein complex subunit organi...",11,0,4.94,2700,"1.0000","0.85953","0.85953" +"GO:0010646","regulation of cell communication",171,66,76.74,2247,"0.9639","0.86056","0.86056" +"GO:0051101","regulation of DNA binding",3,1,1.35,1483,"0.8327","0.86091","0.86091" +"GO:0045168","cell-cell signaling involved in cell fat...",5,2,2.24,1193,"0.7422","0.86184","0.86184" +"GO:0046331","lateral inhibition",5,2,2.24,1194,"0.7422","0.86184","0.86184" +"GO:0034097","response to cytokine",27,8,12.12,2253,"0.9660","0.86236","0.86236" +"GO:0048568","embryonic organ development",26,6,11.67,2512,"0.9942","0.86261","0.86261" +"GO:0008589","regulation of smoothened signaling pathw...",3,1,1.35,1484,"0.8327","0.86266","0.86266" +"GO:0048511","rhythmic process",30,12,13.46,1224,"0.7645","0.86341","0.86341" +"GO:0071219","cellular response to molecule of bacteri...",9,2,4.04,2221,"0.9611","0.86376","0.86376" +"GO:0071222","cellular response to lipopolysaccharide",9,2,4.04,2222,"0.9611","0.86376","0.86376" +"GO:0071496","cellular response to external stimulus",13,5,5.83,1241,"0.7700","0.86420","0.86420" +"GO:0072006","nephron development",5,1,2.24,2154,"0.9493","0.86453","0.86453" +"GO:0030258","lipid modification",18,11,8.08,221,"0.1249","0.21810","0.86493" +"GO:0140029","exocytic process",10,4,4.49,1115,"0.7318","0.86562","0.86562" +"GO:0048638","regulation of developmental growth",14,6,6.28,1016,"0.6597","0.86698","0.86698" +"GO:0032940","secretion by cell",56,16,25.13,2539,"0.9962","0.86782","0.86782" +"GO:0030707","ovarian follicle cell development",9,2,4.04,2223,"0.9611","0.86787","0.86787" +"GO:1901215","negative regulation of neuron death",9,2,4.04,2224,"0.9611","0.86787","0.86787" +"GO:0009792","embryo development ending in birth or eg...",39,15,17.5,1584,"0.8349","0.86847","0.86847" +"GO:0033500","carbohydrate homeostasis",13,4,5.83,1861,"0.9062","0.86886","0.86886" +"GO:0014013","regulation of gliogenesis",4,2,1.8,951,"0.6071","0.86899","0.86899" +"GO:0030217","T cell differentiation",3,1,1.35,1485,"0.8327","0.86934","0.86934" +"GO:0046631","alpha-beta T cell activation",3,1,1.35,1486,"0.8327","0.86934","0.86934" +"GO:0050663","cytokine secretion",3,0,1.35,2701,"1.0000","0.86934","0.86934" +"GO:0050789","regulation of biological process",810,325,363.51,2588,"0.9996","0.88489","0.87023" +"GO:0002768","immune response-regulating cell surface ...",6,1,2.69,2290,"0.9721","0.87088","0.87088" +"GO:0043406","positive regulation of MAP kinase activi...",6,1,2.69,2291,"0.9721","0.87088","0.87088" +"GO:0071902","positive regulation of protein serine/th...",6,1,2.69,2292,"0.9721","0.87088","0.87088" +"GO:0001890","placenta development",10,2,4.49,2346,"0.9765","0.87242","0.87242" +"GO:0002695","negative regulation of leukocyte activat...",4,2,1.8,952,"0.6071","0.87267","0.87267" +"GO:0022408","negative regulation of cell-cell adhesio...",4,2,1.8,953,"0.6071","0.87267","0.87267" +"GO:0050866","negative regulation of cell activation",4,2,1.8,954,"0.6071","0.87267","0.87267" +"GO:0051250","negative regulation of lymphocyte activa...",4,2,1.8,955,"0.6071","0.87267","0.87267" +"GO:0002792","negative regulation of peptide secretion",3,1,1.35,1487,"0.8327","0.87316","0.87316" +"GO:0031000","response to caffeine",3,1,1.35,1488,"0.8327","0.87316","0.87316" +"GO:0032410","negative regulation of transporter activ...",3,1,1.35,1489,"0.8327","0.87316","0.87316" +"GO:0032413","negative regulation of ion transmembrane...",3,1,1.35,1490,"0.8327","0.87316","0.87316" +"GO:0033197","response to vitamin E",3,1,1.35,1491,"0.8327","0.87316","0.87316" +"GO:0035584","calcium-mediated signaling using intrace...",3,1,1.35,1492,"0.8327","0.87316","0.87316" +"GO:0036270","response to diuretic",3,1,1.35,1493,"0.8327","0.87316","0.87316" +"GO:0046888","negative regulation of hormone secretion",3,1,1.35,1494,"0.8327","0.87316","0.87316" +"GO:0048644","muscle organ morphogenesis",3,1,1.35,1495,"0.8327","0.87316","0.87316" +"GO:0050709","negative regulation of protein secretion",3,1,1.35,1496,"0.8327","0.87316","0.87316" +"GO:0051048","negative regulation of secretion",3,1,1.35,1497,"0.8327","0.87316","0.87316" +"GO:0055008","cardiac muscle tissue morphogenesis",3,1,1.35,1498,"0.8327","0.87316","0.87316" +"GO:0060314","regulation of ryanodine-sensitive calciu...",3,1,1.35,1499,"0.8327","0.87316","0.87316" +"GO:0060415","muscle tissue morphogenesis",3,1,1.35,1500,"0.8327","0.87316","0.87316" +"GO:0061178","regulation of insulin secretion involved...",3,1,1.35,1501,"0.8327","0.87316","0.87316" +"GO:0090278","negative regulation of peptide hormone s...",3,1,1.35,1502,"0.8327","0.87316","0.87316" +"GO:1903531","negative regulation of secretion by cell",3,1,1.35,1503,"0.8327","0.87316","0.87316" +"GO:1904063","negative regulation of cation transmembr...",3,1,1.35,1504,"0.8327","0.87316","0.87316" +"GO:2001258","negative regulation of cation channel ac...",3,1,1.35,1505,"0.8327","0.87316","0.87316" +"GO:0048856","anatomical structure development",332,134,148.99,2258,"0.9672","0.88867","0.87334" +"GO:0045786","negative regulation of cell cycle",19,6,8.53,1997,"0.9215","0.87338","0.87338" +"GO:0043207","response to external biotic stimulus",38,14,17.05,1746,"0.8792","0.87394","0.87394" +"GO:0051707","response to other organism",38,14,17.05,1747,"0.8792","0.87394","0.87394" +"GO:0071241","cellular response to inorganic substance",13,3,5.83,2324,"0.9729","0.87468","0.87468" +"GO:0071248","cellular response to metal ion",13,3,5.83,2325,"0.9729","0.87468","0.87468" +"GO:0042711","maternal behavior",4,1,1.8,1944,"0.9079","0.87468","0.87468" +"GO:0060746","parental behavior",4,1,1.8,1945,"0.9079","0.87468","0.87468" +"GO:0072384","organelle transport along microtubule",4,1,1.8,1946,"0.9079","0.87468","0.87468" +"GO:1901989","positive regulation of cell cycle phase ...",3,1,1.35,1506,"0.8327","0.87506","0.87506" +"GO:0050770","regulation of axonogenesis",8,3,3.59,1268,"0.7782","0.87527","0.87527" +"GO:0001817","regulation of cytokine production",23,8,10.32,1752,"0.8836","0.87531","0.87531" +"GO:0008033","tRNA processing",15,3,6.73,2438,"0.9893","0.87569","0.87569" +"GO:0009953","dorsal/ventral pattern formation",10,3,4.49,1827,"0.8995","0.87588","0.87588" +"GO:0002685","regulation of leukocyte migration",3,1,1.35,1507,"0.8327","0.87589","0.87589" +"GO:0032878","regulation of establishment or maintenan...",3,1,1.35,1508,"0.8327","0.87589","0.87589" +"GO:0050900","leukocyte migration",3,1,1.35,1509,"0.8327","0.87589","0.87589" +"GO:2000114","regulation of establishment of cell pola...",3,1,1.35,1510,"0.8327","0.87589","0.87589" +"GO:0003206","cardiac chamber morphogenesis",6,2,2.69,1622,"0.8352","0.87610","0.87610" +"GO:0030324","lung development",6,1,2.69,2293,"0.9721","0.87610","0.87610" +"GO:0048705","skeletal system morphogenesis",6,1,2.69,2294,"0.9721","0.87610","0.87610" +"GO:0035264","multicellular organism growth",6,0,2.69,2702,"1.0000","0.87610","0.87610" +"GO:0050767","regulation of neurogenesis",43,16,19.3,1751,"0.8805","0.87643","0.87643" +"GO:1990823","response to leukemia inhibitory factor",3,0,1.35,2703,"1.0000","0.87756","0.87756" +"GO:1990830","cellular response to leukemia inhibitory...",3,0,1.35,2704,"1.0000","0.87756","0.87756" +"GO:0030855","epithelial cell differentiation",23,7,10.32,2133,"0.9486","0.87758","0.87758" +"GO:0033043","regulation of organelle organization",63,23,28.27,2017,"0.9317","0.87808","0.87808" +"GO:0022406","membrane docking",9,4,4.04,988,"0.6361","0.87825","0.87825" +"GO:0140056","organelle localization by membrane tethe...",9,4,4.04,989,"0.6361","0.87825","0.87825" +"GO:0042181","ketone biosynthetic process",5,2,2.24,1195,"0.7422","0.87850","0.87850" +"GO:1901663","quinone biosynthetic process",5,2,2.24,1196,"0.7422","0.87850","0.87850" +"GO:0051253","negative regulation of RNA metabolic pro...",42,13,18.85,2355,"0.9780","0.87903","0.87903" +"GO:1902679","negative regulation of RNA biosynthetic ...",42,13,18.85,2356,"0.9780","0.87903","0.87903" +"GO:1903507","negative regulation of nucleic acid-temp...",42,13,18.85,2357,"0.9780","0.87903","0.87903" +"GO:0043547","positive regulation of GTPase activity",9,4,4.04,990,"0.6361","0.87969","0.87969" +"GO:0051338","regulation of transferase activity",36,13,16.16,1761,"0.8922","0.39120","0.88003" +"GO:0070647","protein modification by small protein co...",51,18,22.89,2111,"0.9385","0.88003","0.88003" +"GO:0060081","membrane hyperpolarization",4,1,1.8,1947,"0.9079","0.88027","0.88027" +"GO:0060219","camera-type eye photoreceptor cell diffe...",4,1,1.8,1948,"0.9079","0.88027","0.88027" +"GO:0098739","import across plasma membrane",4,1,1.8,1949,"0.9079","0.88027","0.88027" +"GO:0048585","negative regulation of response to stimu...",70,22,31.41,2489,"0.9929","0.88044","0.88044" +"GO:0000278","mitotic cell cycle",40,14,17.95,2006,"0.9244","0.88078","0.88078" +"GO:0044772","mitotic cell cycle phase transition",15,4,6.73,2192,"0.9572","0.88127","0.88127" +"GO:0016579","protein deubiquitination",5,1,2.24,2155,"0.9493","0.88186","0.88186" +"GO:0070646","protein modification by small protein re...",5,1,2.24,2156,"0.9493","0.88186","0.88186" +"GO:0051239","regulation of multicellular organismal p...",140,61,62.83,1008,"0.6572","0.60483","0.88235" +"GO:0023051","regulation of signaling",175,66,78.54,2366,"0.9805","0.88255","0.88255" +"GO:0042594","response to starvation",22,7,9.87,2010,"0.9288","0.88262","0.88262" +"GO:0033014","tetrapyrrole biosynthetic process",6,2,2.69,1623,"0.8352","0.88313","0.88313" +"GO:0034654","nucleobase-containing compound biosynthe...",310,123,139.12,2360,"0.9791","0.88391","0.88391" +"GO:0009414","response to water deprivation",3,1,1.35,1511,"0.8327","0.88436","0.88436" +"GO:0009415","response to water",3,1,1.35,1512,"0.8327","0.88436","0.88436" +"GO:0000288","nuclear-transcribed mRNA catabolic proce...",3,0,1.35,2705,"1.0000","0.88436","0.88436" +"GO:2000027","regulation of animal organ morphogenesis",8,6,3.59,152,"0.0870","0.02145","0.88438" +"GO:0006338","chromatin remodeling",5,3,2.24,532,"0.4045","0.07381","0.88464" +"GO:1904950","negative regulation of establishment of ...",9,1,4.04,2528,"0.9954","0.88466","0.88466" +"GO:0008654","phospholipid biosynthetic process",24,10,10.77,1076,"0.6976","0.88479","0.88479" +"GO:0040014","regulation of multicellular organism gro...",3,0,1.35,2706,"1.0000","0.88497","0.88497" +"GO:0034103","regulation of tissue remodeling",6,3,2.69,792,"0.5561","0.88529","0.88529" +"GO:0000165","MAPK cascade",27,6,12.12,2537,"0.9962","0.88535","0.88535" +"GO:0023014","signal transduction by protein phosphory...",27,6,12.12,2538,"0.9962","0.88535","0.88535" +"GO:0019748","secondary metabolic process",4,2,1.8,956,"0.6071","0.88576","0.88576" +"GO:0044703","multi-organism reproductive process",58,21,26.03,2015,"0.9312","0.88593","0.88593" +"GO:0060359","response to ammonium ion",8,3,3.59,1269,"0.7782","0.88651","0.88651" +"GO:0042219","cellular modified amino acid catabolic p...",3,0,1.35,2707,"1.0000","0.88679","0.88679" +"GO:0042060","wound healing",29,14,13.01,666,"0.4255","0.07561","0.88701" +"GO:0050790","regulation of catalytic activity",93,35,41.74,2113,"0.9387","0.74495","0.88705" +"GO:0018209","peptidyl-serine modification",9,2,4.04,2225,"0.9611","0.88840","0.88840" +"GO:1901362","organic cyclic compound biosynthetic pro...",348,147,156.17,1722,"0.8696","0.88850","0.88850" +"GO:0034622","cellular protein-containing complex asse...",73,30,32.76,1275,"0.7814","0.88899","0.88899" +"GO:0016331","morphogenesis of embryonic epithelium",13,3,5.83,2326,"0.9729","0.88900","0.88900" +"GO:0050673","epithelial cell proliferation",13,2,5.83,2519,"0.9951","0.88900","0.88900" +"GO:0008543","fibroblast growth factor receptor signal...",3,0,1.35,2708,"1.0000","0.88900","0.88900" +"GO:0036010","protein localization to endosome",3,0,1.35,2709,"1.0000","0.88900","0.88900" +"GO:0040036","regulation of fibroblast growth factor r...",3,0,1.35,2710,"1.0000","0.88900","0.88900" +"GO:0044344","cellular response to fibroblast growth f...",3,0,1.35,2711,"1.0000","0.88900","0.88900" +"GO:0071774","response to fibroblast growth factor",3,0,1.35,2712,"1.0000","0.88900","0.88900" +"GO:1902946","protein localization to early endosome",3,0,1.35,2713,"1.0000","0.88900","0.88900" +"GO:0009064","glutamine family amino acid metabolic pr...",8,3,3.59,1270,"0.7782","0.88909","0.88909" +"GO:0060429","epithelium development",57,22,25.58,1714,"0.8644","0.74742","0.88937" +"GO:0006897","endocytosis",39,12,17.5,2332,"0.9759","0.89075","0.89075" +"GO:0032269","negative regulation of cellular protein ...",53,21,23.79,1328,"0.8202","0.50159","0.89090" +"GO:0048278","vesicle docking",8,3,3.59,1271,"0.7782","0.89105","0.89105" +"GO:0050890","cognition",14,3,6.28,2389,"0.9829","0.89145","0.89145" +"GO:0007254","JNK cascade",4,0,1.8,2714,"1.0000","0.89149","0.89149" +"GO:0031958","corticosteroid receptor signaling pathwa...",4,0,1.8,2715,"1.0000","0.89149","0.89149" +"GO:0042921","glucocorticoid receptor signaling pathwa...",4,0,1.8,2716,"1.0000","0.89149","0.89149" +"GO:1904292","regulation of ERAD pathway",5,1,2.24,2157,"0.9493","0.89171","0.89171" +"GO:0030970","retrograde protein transport, ER to cyto...",5,0,2.24,2717,"1.0000","0.89171","0.89171" +"GO:1902275","regulation of chromatin organization",5,0,2.24,2718,"1.0000","0.89171","0.89171" +"GO:1903513","endoplasmic reticulum to cytosol transpo...",5,0,2.24,2719,"1.0000","0.89171","0.89171" +"GO:0006402","mRNA catabolic process",13,3,5.83,2327,"0.9729","0.89206","0.89206" +"GO:0007281","germ cell development",30,10,13.46,2012,"0.9300","0.89220","0.89220" +"GO:0006952","defense response",54,23,24.23,1057,"0.6828","0.89226","0.89226" +"GO:0009653","anatomical structure morphogenesis",168,71,75.39,1277,"0.7838","0.44434","0.89275" +"GO:0048168","regulation of neuronal synaptic plastici...",4,2,1.8,957,"0.6071","0.89354","0.89354" +"GO:0003208","cardiac ventricle morphogenesis",5,1,2.24,2158,"0.9493","0.89567","0.89567" +"GO:0030856","regulation of epithelial cell differenti...",5,1,2.24,2159,"0.9493","0.89567","0.89567" +"GO:0048663","neuron fate commitment",5,2,2.24,1197,"0.7422","0.89567","0.89567" +"GO:0071897","DNA biosynthetic process",5,2,2.24,1198,"0.7422","0.89567","0.89567" +"GO:0048468","cell development",144,61,64.62,1220,"0.7612","0.55483","0.89613" +"GO:0051783","regulation of nuclear division",13,4,5.83,1862,"0.9062","0.89678","0.89678" +"GO:0030326","embryonic limb morphogenesis",5,1,2.24,2160,"0.9493","0.89718","0.89718" +"GO:0035113","embryonic appendage morphogenesis",5,1,2.24,2161,"0.9493","0.89718","0.89718" +"GO:0050680","negative regulation of epithelial cell p...",5,1,2.24,2162,"0.9493","0.89718","0.89718" +"GO:0042593","glucose homeostasis",12,4,5.39,1712,"0.8643","0.89761","0.89761" +"GO:0016042","lipid catabolic process",22,14,9.87,129,"0.0594","0.02011","0.89788" +"GO:0045892","negative regulation of transcription, DN...",41,13,18.4,2265,"0.9707","0.89789","0.89789" +"GO:0007411","axon guidance",19,4,8.53,2483,"0.9922","0.89790","0.89790" +"GO:0097485","neuron projection guidance",19,4,8.53,2484,"0.9922","0.89790","0.89790" +"GO:0009057","macromolecule catabolic process",74,20,33.21,2586,"0.9996","0.89854","0.89854" +"GO:0006414","translational elongation",8,2,3.59,2099,"0.9363","0.89861","0.89861" +"GO:0006886","intracellular protein transport",68,21,30.52,2507,"0.9940","0.89980","0.89980" +"GO:0005996","monosaccharide metabolic process",22,10,9.87,798,"0.5607","0.90005","0.90005" +"GO:0010107","potassium ion import",3,1,1.35,1513,"0.8327","0.90017","0.90017" +"GO:0030048","actin filament-based movement",3,1,1.35,1514,"0.8327","0.90017","0.90017" +"GO:0042670","retinal cone cell differentiation",3,1,1.35,1515,"0.8327","0.90017","0.90017" +"GO:0045176","apical protein localization",3,1,1.35,1516,"0.8327","0.90017","0.90017" +"GO:0045759","negative regulation of action potential",3,1,1.35,1517,"0.8327","0.90017","0.90017" +"GO:0046549","retinal cone cell development",3,1,1.35,1518,"0.8327","0.90017","0.90017" +"GO:0070252","actin-mediated cell contraction",3,1,1.35,1519,"0.8327","0.90017","0.90017" +"GO:0070305","response to cGMP",3,1,1.35,1520,"0.8327","0.90017","0.90017" +"GO:0071321","cellular response to cGMP",3,1,1.35,1521,"0.8327","0.90017","0.90017" +"GO:0071384","cellular response to corticosteroid stim...",3,1,1.35,1522,"0.8327","0.90017","0.90017" +"GO:0071389","cellular response to mineralocorticoid s...",3,1,1.35,1523,"0.8327","0.90017","0.90017" +"GO:0071867","response to monoamine",3,1,1.35,1524,"0.8327","0.90017","0.90017" +"GO:0071868","cellular response to monoamine stimulus",3,1,1.35,1525,"0.8327","0.90017","0.90017" +"GO:0071869","response to catecholamine",3,1,1.35,1526,"0.8327","0.90017","0.90017" +"GO:0071870","cellular response to catecholamine stimu...",3,1,1.35,1527,"0.8327","0.90017","0.90017" +"GO:0072718","response to cisplatin",3,1,1.35,1528,"0.8327","0.90017","0.90017" +"GO:0086003","cardiac muscle cell contraction",3,1,1.35,1529,"0.8327","0.90017","0.90017" +"GO:0086004","regulation of cardiac muscle cell contra...",3,1,1.35,1530,"0.8327","0.90017","0.90017" +"GO:0086010","membrane depolarization during action po...",3,1,1.35,1531,"0.8327","0.90017","0.90017" +"GO:0086012","membrane depolarization during cardiac m...",3,1,1.35,1532,"0.8327","0.90017","0.90017" +"GO:0086015","SA node cell action potential",3,1,1.35,1533,"0.8327","0.90017","0.90017" +"GO:0086018","SA node cell to atrial cardiac muscle ce...",3,1,1.35,1534,"0.8327","0.90017","0.90017" +"GO:0086019","cell-cell signaling involved in cardiac ...",3,1,1.35,1535,"0.8327","0.90017","0.90017" +"GO:0086046","membrane depolarization during SA node c...",3,1,1.35,1536,"0.8327","0.90017","0.90017" +"GO:0086070","SA node cell to atrial cardiac muscle ce...",3,1,1.35,1537,"0.8327","0.90017","0.90017" +"GO:0086091","regulation of heart rate by cardiac cond...",3,1,1.35,1538,"0.8327","0.90017","0.90017" +"GO:0098659","inorganic cation import across plasma me...",3,1,1.35,1539,"0.8327","0.90017","0.90017" +"GO:0098719","sodium ion import across plasma membrane",3,1,1.35,1540,"0.8327","0.90017","0.90017" +"GO:0098900","regulation of action potential",3,1,1.35,1541,"0.8327","0.90017","0.90017" +"GO:0098901","regulation of cardiac muscle cell action...",3,1,1.35,1542,"0.8327","0.90017","0.90017" +"GO:0098909","regulation of cardiac muscle cell action...",3,1,1.35,1543,"0.8327","0.90017","0.90017" +"GO:0099587","inorganic ion import across plasma membr...",3,1,1.35,1544,"0.8327","0.90017","0.90017" +"GO:1902630","regulation of membrane hyperpolarization",3,1,1.35,1545,"0.8327","0.90017","0.90017" +"GO:1903115","regulation of actin filament-based movem...",3,1,1.35,1546,"0.8327","0.90017","0.90017" +"GO:1903350","response to dopamine",3,1,1.35,1547,"0.8327","0.90017","0.90017" +"GO:1903351","cellular response to dopamine",3,1,1.35,1548,"0.8327","0.90017","0.90017" +"GO:1904044","response to aldosterone",3,1,1.35,1549,"0.8327","0.90017","0.90017" +"GO:1904045","cellular response to aldosterone",3,1,1.35,1550,"0.8327","0.90017","0.90017" +"GO:1990573","potassium ion import across plasma membr...",3,1,1.35,1551,"0.8327","0.90017","0.90017" +"GO:0048583","regulation of response to stimulus",192,74,86.16,2315,"0.9726","0.90091","0.90091" +"GO:0006743","ubiquinone metabolic process",4,1,1.8,1950,"0.9079","0.90160","0.90160" +"GO:0006744","ubiquinone biosynthetic process",4,1,1.8,1951,"0.9079","0.90160","0.90160" +"GO:0006778","porphyrin-containing compound metabolic ...",5,2,2.24,1199,"0.7422","0.90165","0.90165" +"GO:1903530","regulation of secretion by cell",20,9,8.98,813,"0.5817","0.90175","0.90175" +"GO:0007569","cell aging",3,1,1.35,1552,"0.8327","0.90227","0.90227" +"GO:0012501","programmed cell death",74,25,33.21,2378,"0.9816","0.90229","0.90229" +"GO:0001892","embryonic placenta development",7,1,3.14,2401,"0.9846","0.90242","0.90242" +"GO:0035265","organ growth",3,0,1.35,2720,"1.0000","0.90265","0.90265" +"GO:0023052","signaling",422,177,189.38,1990,"0.9170","0.90274","0.90274" +"GO:0071310","cellular response to organic substance",84,30,37.7,2259,"0.9673","0.90278","0.90278" +"GO:0001816","cytokine production",24,9,10.77,1335,"0.8251","0.90279","0.90279" +"GO:1903320","regulation of protein modification by sm...",17,7,7.63,1082,"0.7069","0.90284","0.90284" +"GO:0031099","regeneration",18,4,8.08,2431,"0.9879","0.90304","0.90304" +"GO:0006904","vesicle docking involved in exocytosis",7,2,3.14,1792,"0.8967","0.90403","0.90403" +"GO:0009267","cellular response to starvation",9,4,4.04,991,"0.6361","0.90404","0.90404" +"GO:0031668","cellular response to extracellular stimu...",9,4,4.04,992,"0.6361","0.90404","0.90404" +"GO:0031669","cellular response to nutrient levels",9,4,4.04,993,"0.6361","0.90404","0.90404" +"GO:0043009","chordate embryonic development",28,11,12.57,1278,"0.7840","0.90412","0.90412" +"GO:0010923","negative regulation of phosphatase activ...",4,1,1.8,1952,"0.9079","0.90422","0.90422" +"GO:0032515","negative regulation of phosphoprotein ph...",4,1,1.8,1953,"0.9079","0.90422","0.90422" +"GO:0035305","negative regulation of dephosphorylation",4,1,1.8,1954,"0.9079","0.90422","0.90422" +"GO:0035308","negative regulation of protein dephospho...",4,1,1.8,1955,"0.9079","0.90422","0.90422" +"GO:0030154","cell differentiation",200,81,89.75,1986,"0.9153","0.76999","0.90458" +"GO:1902531","regulation of intracellular signal trans...",79,23,35.45,2570,"0.9988","0.90505","0.90505" +"GO:0051179","localization",673,309,302.03,400,"0.2783","0.18923","0.90515" +"GO:0007507","heart development",37,14,16.6,1690,"0.8495","0.82876","0.90536" +"GO:0021510","spinal cord development",3,0,1.35,2721,"1.0000","0.90585","0.90585" +"GO:0045471","response to ethanol",14,3,6.28,2390,"0.9829","0.90619","0.90619" +"GO:0007611","learning or memory",12,3,5.39,2204,"0.9575","0.90627","0.90627" +"GO:0018130","heterocycle biosynthetic process",333,137,149.44,2108,"0.9375","0.90632","0.90632" +"GO:0010648","negative regulation of cell communicatio...",54,18,24.23,2262,"0.9700","0.90703","0.90703" +"GO:0023057","negative regulation of signaling",54,18,24.23,2263,"0.9700","0.90703","0.90703" +"GO:0048699","generation of neurons",108,40,48.47,2239,"0.9627","0.90735","0.90735" +"GO:0007154","cell communication",431,182,193.42,1807,"0.8981","0.90760","0.90760" +"GO:0050794","regulation of cellular process",769,309,345.11,2582,"0.9993","0.92258","0.90801" +"GO:0031396","regulation of protein ubiquitination",16,6,7.18,1298,"0.8004","0.90832","0.90832" +"GO:0009968","negative regulation of signal transducti...",53,17,23.79,2364,"0.9802","0.90871","0.90871" +"GO:0051224","negative regulation of protein transport",7,1,3.14,2402,"0.9846","0.90916","0.90916" +"GO:0010506","regulation of autophagy",20,6,8.98,2127,"0.9442","0.91039","0.91039" +"GO:0017148","negative regulation of translation",6,1,2.69,2295,"0.9721","0.91043","0.91043" +"GO:0034249","negative regulation of cellular amide me...",6,1,2.69,2296,"0.9721","0.91043","0.91043" +"GO:0006508","proteolysis",167,69,74.95,1691,"0.8505","0.91052","0.91052" +"GO:0006260","DNA replication",13,2,5.83,2520,"0.9951","0.91059","0.91059" +"GO:0034314","Arp2/3 complex-mediated actin nucleation",4,0,1.8,2722,"1.0000","0.91129","0.91129" +"GO:0070925","organelle assembly",69,29,30.97,1094,"0.7265","0.66444","0.91135" +"GO:0019438","aromatic compound biosynthetic process",325,132,145.85,2197,"0.9573","0.91167","0.91167" +"GO:0001510","RNA methylation",6,2,2.69,1624,"0.8352","0.91288","0.91288" +"GO:0040007","growth",50,15,22.44,2444,"0.9898","0.91325","0.91325" +"GO:0030182","neuron differentiation",95,37,42.63,1832,"0.9020","0.91371","0.91371" +"GO:0017004","cytochrome complex assembly",4,2,1.8,958,"0.6071","0.91427","0.91427" +"GO:0071705","nitrogen compound transport",126,46,56.55,2361,"0.9795","0.91427","0.91427" +"GO:0043524","negative regulation of neuron apoptotic ...",8,1,3.59,2453,"0.9916","0.91437","0.91437" +"GO:0071345","cellular response to cytokine stimulus",24,7,10.77,2242,"0.9633","0.91496","0.91496" +"GO:0006996","organelle organization",255,96,114.44,2513,"0.9943","0.89964","0.91500" +"GO:0051604","protein maturation",15,3,6.73,2439,"0.9893","0.91504","0.91504" +"GO:0060284","regulation of cell development",49,19,21.99,1637,"0.8444","0.91543","0.91543" +"GO:0060324","face development",4,1,1.8,1956,"0.9079","0.91566","0.91566" +"GO:0060425","lung morphogenesis",4,1,1.8,1957,"0.9079","0.91566","0.91566" +"GO:2000278","regulation of DNA biosynthetic process",4,1,1.8,1958,"0.9079","0.91566","0.91566" +"GO:0051054","positive regulation of DNA metabolic pro...",4,0,1.8,2723,"1.0000","0.91566","0.91566" +"GO:0048640","negative regulation of developmental gro...",5,2,2.24,1200,"0.7422","0.91580","0.91580" +"GO:0042177","negative regulation of protein catabolic...",5,0,2.24,2724,"1.0000","0.91580","0.91580" +"GO:0090596","sensory organ morphogenesis",23,8,10.32,1753,"0.8836","0.91662","0.91662" +"GO:0042733","embryonic digit morphogenesis",4,1,1.8,1959,"0.9079","0.91689","0.91689" +"GO:0080135","regulation of cellular response to stres...",42,10,18.85,2567,"0.9987","0.91729","0.91729" +"GO:0051131","chaperone-mediated protein complex assem...",3,1,1.35,1553,"0.8327","0.91749","0.91749" +"GO:0006690","icosanoid metabolic process",3,0,1.35,2725,"1.0000","0.91749","0.91749" +"GO:0006692","prostanoid metabolic process",3,0,1.35,2726,"1.0000","0.91749","0.91749" +"GO:0006693","prostaglandin metabolic process",3,0,1.35,2727,"1.0000","0.91749","0.91749" +"GO:0007165","signal transduction",388,161,174.12,2038,"0.9352","0.91767","0.91767" +"GO:0003002","regionalization",25,9,11.22,1716,"0.8646","0.91770","0.91770" +"GO:0007389","pattern specification process",30,10,13.46,2013,"0.9300","0.91860","0.91860" +"GO:0002064","epithelial cell development",15,4,6.73,2193,"0.9572","0.91862","0.91862" +"GO:0051588","regulation of neurotransmitter transport",3,0,1.35,2728,"1.0000","0.91908","0.91908" +"GO:0008152","metabolic process",1582,702,709.96,1219,"0.7608","0.62355","0.91940" +"GO:0032774","RNA biosynthetic process",239,90,107.26,2488,"0.9927","0.91957","0.91957" +"GO:0070887","cellular response to chemical stimulus",103,38,46.22,2237,"0.9620","0.92060","0.92060" +"GO:0006351","transcription, DNA-templated",238,89,106.81,2510,"0.9942","0.92078","0.92078" +"GO:0097659","nucleic acid-templated transcription",238,89,106.81,2511,"0.9942","0.92078","0.92078" +"GO:0034655","nucleobase-containing compound catabolic...",35,14,15.71,1246,"0.7740","0.92130","0.92130" +"GO:0007612","learning",10,2,4.49,2347,"0.9765","0.92132","0.92132" +"GO:0090305","nucleic acid phosphodiester bond hydroly...",4,2,1.8,959,"0.6071","0.92145","0.92145" +"GO:0001843","neural tube closure",5,1,2.24,2163,"0.9493","0.92178","0.92178" +"GO:0060606","tube closure",5,1,2.24,2164,"0.9493","0.92178","0.92178" +"GO:0032943","mononuclear cell proliferation",9,3,4.04,1679,"0.8492","0.92189","0.92189" +"GO:0046651","lymphocyte proliferation",9,3,4.04,1680,"0.8492","0.92189","0.92189" +"GO:0048732","gland development",9,3,4.04,1681,"0.8492","0.92189","0.92189" +"GO:0070661","leukocyte proliferation",9,3,4.04,1682,"0.8492","0.92189","0.92189" +"GO:0048609","multicellular organismal reproductive pr...",62,23,27.82,1989,"0.9165","0.92207","0.92207" +"GO:0060322","head development",60,18,26.93,2508,"0.9941","0.92305","0.92305" +"GO:0042157","lipoprotein metabolic process",11,3,4.94,2032,"0.9342","0.92502","0.92502" +"GO:0048729","tissue morphogenesis",37,15,16.6,1218,"0.7572","0.66499","0.92598" +"GO:0098657","import into cell",45,14,20.19,2363,"0.9800","0.92678","0.92678" +"GO:0010921","regulation of phosphatase activity",7,2,3.14,1793,"0.8967","0.92692","0.92692" +"GO:0035303","regulation of dephosphorylation",7,2,3.14,1794,"0.8967","0.92692","0.92692" +"GO:0000075","cell cycle checkpoint",3,0,1.35,2729,"1.0000","0.92730","0.92730" +"GO:0006464","cellular protein modification process",328,127,147.2,2501,"0.9934","0.88668","0.92763" +"GO:0036211","protein modification process",328,127,147.2,2502,"0.9934","0.88668","0.92763" +"GO:0048513","animal organ development",190,74,85.27,2245,"0.9635","0.77279","0.92863" +"GO:0050806","positive regulation of synaptic transmis...",12,5,5.39,1070,"0.6930","0.92888","0.92888" +"GO:0006506","GPI anchor biosynthetic process",7,2,3.14,1795,"0.8967","0.92910","0.92910" +"GO:0007292","female gamete generation",20,3,8.98,2574,"0.9991","0.92948","0.92948" +"GO:1905897","regulation of response to endoplasmic re...",11,3,4.94,2033,"0.9342","0.93017","0.93017" +"GO:0001838","embryonic epithelial tube formation",8,1,3.59,2454,"0.9916","0.93029","0.93029" +"GO:0003205","cardiac chamber development",8,2,3.59,2100,"0.9363","0.93029","0.93029" +"GO:0021915","neural tube development",8,2,3.59,2101,"0.9363","0.93029","0.93029" +"GO:0042098","T cell proliferation",8,2,3.59,2102,"0.9363","0.93029","0.93029" +"GO:0072175","epithelial tube formation",8,1,3.59,2455,"0.9916","0.93029","0.93029" +"GO:0051640","organelle localization",32,11,14.36,1993,"0.9177","0.93069","0.93069" +"GO:0008219","cell death",83,28,37.25,2423,"0.9865","0.93085","0.93085" +"GO:1902532","negative regulation of intracellular sig...",27,7,12.12,2426,"0.9875","0.93111","0.93111" +"GO:0007420","brain development",57,17,25.58,2503,"0.9936","0.93161","0.93161" +"GO:0032259","methylation",28,6,12.57,2553,"0.9975","0.93186","0.93186" +"GO:0002253","activation of immune response",10,3,4.49,1828,"0.8995","0.93253","0.93253" +"GO:0043408","regulation of MAPK cascade",22,5,9.87,2466,"0.9916","0.93254","0.93254" +"GO:0042255","ribosome assembly",5,0,2.24,2730,"1.0000","0.93367","0.93367" +"GO:0051272","positive regulation of cellular componen...",14,5,6.28,1354,"0.8312","0.93369","0.93369" +"GO:0015931","nucleobase-containing compound transport",8,3,3.59,1272,"0.7782","0.93397","0.93397" +"GO:0071363","cellular response to growth factor stimu...",20,8,8.98,1212,"0.7453","0.93409","0.93409" +"GO:0051704","multi-organism process",125,48,56.1,2128,"0.9443","0.93418","0.93418" +"GO:0051649","establishment of localization in cell",146,47,65.52,2585,"0.9995","0.93441","0.93441" +"GO:0002065","columnar/cuboidal epithelial cell differ...",12,3,5.39,2205,"0.9575","0.93442","0.93442" +"GO:0070727","cellular macromolecule localization",117,43,52.51,2314,"0.9724","0.93500","0.93500" +"GO:0009966","regulation of signal transduction",146,52,65.52,2486,"0.9923","0.93521","0.93521" +"GO:0060669","embryonic placenta morphogenesis",3,1,1.35,1554,"0.8327","0.93608","0.93608" +"GO:0060706","cell differentiation involved in embryon...",3,1,1.35,1555,"0.8327","0.93608","0.93608" +"GO:0060713","labyrinthine layer morphogenesis",3,1,1.35,1556,"0.8327","0.93608","0.93608" +"GO:0007419","ventral cord development",3,0,1.35,2731,"1.0000","0.93608","0.93608" +"GO:0045682","regulation of epidermis development",3,0,1.35,2732,"1.0000","0.93608","0.93608" +"GO:0051972","regulation of telomerase activity",3,0,1.35,2733,"1.0000","0.93608","0.93608" +"GO:0051973","positive regulation of telomerase activi...",3,0,1.35,2734,"1.0000","0.93608","0.93608" +"GO:0060428","lung epithelium development",3,0,1.35,2735,"1.0000","0.93608","0.93608" +"GO:2000573","positive regulation of DNA biosynthetic ...",3,0,1.35,2736,"1.0000","0.93608","0.93608" +"GO:0019827","stem cell population maintenance",4,1,1.8,1960,"0.9079","0.93648","0.93648" +"GO:0098727","maintenance of cell number",4,1,1.8,1961,"0.9079","0.93648","0.93648" +"GO:0042221","response to chemical",211,79,94.69,2447,"0.9908","0.93673","0.93673" +"GO:0035304","regulation of protein dephosphorylation",6,2,2.69,1625,"0.8352","0.93704","0.93704" +"GO:0043666","regulation of phosphoprotein phosphatase...",6,2,2.69,1626,"0.8352","0.93704","0.93704" +"GO:0034613","cellular protein localization",116,43,52.06,2256,"0.9669","0.93722","0.93722" +"GO:0006352","DNA-templated transcription, initiation",7,3,3.14,1055,"0.6814","0.93732","0.93732" +"GO:0006914","autophagy",34,9,15.26,2478,"0.9919","0.93746","0.93746" +"GO:0061919","process utilizing autophagic mechanism",34,9,15.26,2479,"0.9919","0.93746","0.93746" +"GO:0015693","magnesium ion transport",3,0,1.35,2737,"1.0000","0.93749","0.93749" +"GO:0030099","myeloid cell differentiation",15,3,6.73,2440,"0.9893","0.93830","0.93830" +"GO:0006355","regulation of transcription, DNA-templat...",223,83,100.08,2504,"0.9937","0.93840","0.93840" +"GO:1903506","regulation of nucleic acid-templated tra...",223,83,100.08,2505,"0.9937","0.93840","0.93840" +"GO:2001141","regulation of RNA biosynthetic process",223,83,100.08,2506,"0.9937","0.93840","0.93840" +"GO:0042325","regulation of phosphorylation",58,21,26.03,2016,"0.9312","0.60379","0.93861" +"GO:0001841","neural tube formation",7,1,3.14,2403,"0.9846","0.93875","0.93875" +"GO:0003231","cardiac ventricle development",7,1,3.14,2404,"0.9846","0.93875","0.93875" +"GO:0032944","regulation of mononuclear cell prolifera...",7,2,3.14,1796,"0.8967","0.93875","0.93875" +"GO:0050670","regulation of lymphocyte proliferation",7,2,3.14,1797,"0.8967","0.93875","0.93875" +"GO:0070663","regulation of leukocyte proliferation",7,2,3.14,1798,"0.8967","0.93875","0.93875" +"GO:0006139","nucleobase-containing compound metabolic...",458,167,205.54,2606,"1.0000","0.93889","0.93889" +"GO:1905475","regulation of protein localization to me...",6,1,2.69,2297,"0.9721","0.93892","0.93892" +"GO:0009798","axis specification",9,2,4.04,2226,"0.9611","0.93902","0.93902" +"GO:0042246","tissue regeneration",11,2,4.94,2417,"0.9859","0.93974","0.93974" +"GO:0022402","cell cycle process",66,23,29.62,2248,"0.9641","0.93977","0.93977" +"GO:0048477","oogenesis",17,3,7.63,2533,"0.9959","0.93980","0.93980" +"GO:0006779","porphyrin-containing compound biosynthet...",3,1,1.35,1557,"0.8327","0.93982","0.93982" +"GO:0042254","ribosome biogenesis",17,1,7.63,2605,"1.0000","0.94090","0.94090" +"GO:0071786","endoplasmic reticulum tubular network or...",4,1,1.8,1962,"0.9079","0.94144","0.94144" +"GO:0042273","ribosomal large subunit biogenesis",5,0,2.24,2738,"1.0000","0.94153","0.94153" +"GO:0070584","mitochondrion morphogenesis",3,0,1.35,2739,"1.0000","0.94165","0.94165" +"GO:0009607","response to biotic stimulus",40,15,17.95,1717,"0.8660","0.94183","0.94183" +"GO:0070972","protein localization to endoplasmic reti...",4,2,1.8,960,"0.6071","0.94275","0.94275" +"GO:0006560","proline metabolic process",4,0,1.8,2740,"1.0000","0.94301","0.94301" +"GO:0006486","protein glycosylation",50,18,22.44,2000,"0.9230","0.94324","0.94324" +"GO:0043413","macromolecule glycosylation",50,18,22.44,2001,"0.9230","0.94324","0.94324" +"GO:0070085","glycosylation",50,18,22.44,2002,"0.9230","0.94324","0.94324" +"GO:0070848","response to growth factor",22,9,9.87,1092,"0.7206","0.94361","0.94361" +"GO:0051234","establishment of localization",602,276,270.16,412,"0.3075","0.17576","0.94403" +"GO:0001701","in utero embryonic development",16,4,7.18,2269,"0.9716","0.94430","0.94430" +"GO:0046483","heterocycle metabolic process",489,184,219.45,2600,"0.9999","0.94474","0.94474" +"GO:0007059","chromosome segregation",7,2,3.14,1799,"0.8967","0.94567","0.94567" +"GO:0098813","nuclear chromosome segregation",7,2,3.14,1800,"0.8967","0.94567","0.94567" +"GO:0009101","glycoprotein biosynthetic process",51,18,22.89,2112,"0.9385","0.94574","0.94574" +"GO:0051641","cellular localization",195,67,87.51,2581,"0.9993","0.94634","0.94634" +"GO:0051960","regulation of nervous system development",47,17,21.09,1984,"0.9140","0.94641","0.94641" +"GO:0007399","nervous system development",166,64,74.5,2238,"0.9627","0.94668","0.94668" +"GO:0070861","regulation of protein exit from endoplas...",4,0,1.8,2741,"1.0000","0.94710","0.94710" +"GO:0070862","negative regulation of protein exit from...",4,0,1.8,2742,"1.0000","0.94710","0.94710" +"GO:0090317","negative regulation of intracellular pro...",4,0,1.8,2743,"1.0000","0.94710","0.94710" +"GO:1901799","negative regulation of proteasomal prote...",4,0,1.8,2744,"1.0000","0.94710","0.94710" +"GO:1903051","negative regulation of proteolysis invol...",4,0,1.8,2745,"1.0000","0.94710","0.94710" +"GO:1903363","negative regulation of cellular protein ...",4,0,1.8,2746,"1.0000","0.94710","0.94710" +"GO:1904152","regulation of retrograde protein transpo...",4,0,1.8,2747,"1.0000","0.94710","0.94710" +"GO:1904153","negative regulation of retrograde protei...",4,0,1.8,2748,"1.0000","0.94710","0.94710" +"GO:1904293","negative regulation of ERAD pathway",4,0,1.8,2749,"1.0000","0.94710","0.94710" +"GO:0001708","cell fate specification",6,2,2.69,1627,"0.8352","0.94729","0.94729" +"GO:0007498","mesoderm development",6,2,2.69,1628,"0.8352","0.94729","0.94729" +"GO:0014020","primary neural tube formation",6,1,2.69,2298,"0.9721","0.94729","0.94729" +"GO:0042129","regulation of T cell proliferation",6,1,2.69,2299,"0.9721","0.94729","0.94729" +"GO:0048821","erythrocyte development",6,1,2.69,2300,"0.9721","0.94729","0.94729" +"GO:0061515","myeloid cell development",6,1,2.69,2301,"0.9721","0.94729","0.94729" +"GO:0001776","leukocyte homeostasis",6,0,2.69,2750,"1.0000","0.94729","0.94729" +"GO:0002260","lymphocyte homeostasis",6,0,2.69,2751,"1.0000","0.94729","0.94729" +"GO:0043933","protein-containing complex subunit organ...",105,42,47.12,1723,"0.8704","0.94742","0.94742" +"GO:0031398","positive regulation of protein ubiquitin...",9,3,4.04,1683,"0.8492","0.94749","0.94749" +"GO:1903322","positive regulation of protein modificat...",9,3,4.04,1684,"0.8492","0.94749","0.94749" +"GO:0018210","peptidyl-threonine modification",10,3,4.49,1829,"0.8995","0.94757","0.94757" +"GO:0016485","protein processing",9,2,4.04,2227,"0.9611","0.94824","0.94824" +"GO:0001934","positive regulation of protein phosphory...",25,7,11.22,2330,"0.9741","0.94832","0.94832" +"GO:0007169","transmembrane receptor protein tyrosine ...",17,7,7.63,1083,"0.7069","0.95023","0.95023" +"GO:0031101","fin regeneration",9,1,4.04,2529,"0.9954","0.95046","0.95046" +"GO:0019058","viral life cycle",17,3,7.63,2534,"0.9959","0.95082","0.95082" +"GO:0007275","multicellular organism development",308,124,138.22,2250,"0.9646","0.86493","0.95092" +"GO:2000983","regulation of ATP citrate synthase activ...",3,1,1.35,1558,"0.8327","0.95168","0.95168" +"GO:2000984","negative regulation of ATP citrate synth...",3,1,1.35,1559,"0.8327","0.95168","0.95168" +"GO:0007613","memory",6,2,2.69,1629,"0.8352","0.95210","0.95210" +"GO:0008306","associative learning",6,1,2.69,2302,"0.9721","0.95210","0.95210" +"GO:0071695","anatomical structure maturation",6,1,2.69,2303,"0.9721","0.95210","0.95210" +"GO:0072657","protein localization to membrane",24,7,10.77,2243,"0.9633","0.95210","0.95210" +"GO:1902533","positive regulation of intracellular sig...",33,8,14.81,2536,"0.9960","0.95231","0.95231" +"GO:0021700","developmental maturation",12,2,5.39,2472,"0.9916","0.95234","0.95234" +"GO:0051225","spindle assembly",10,2,4.49,2348,"0.9765","0.95260","0.95260" +"GO:0002757","immune response-activating signal transd...",9,2,4.04,2228,"0.9611","0.95295","0.95295" +"GO:0043405","regulation of MAP kinase activity",9,2,4.04,2229,"0.9611","0.95295","0.95295" +"GO:1901360","organic cyclic compound metabolic proces...",516,199,231.57,2584,"0.9995","0.95312","0.95312" +"GO:0000819","sister chromatid segregation",6,2,2.69,1630,"0.8352","0.95327","0.95327" +"GO:0009889","regulation of biosynthetic process",256,97,114.89,2490,"0.9929","0.95086","0.95345" +"GO:0032224","positive regulation of synaptic transmis...",3,0,1.35,2752,"1.0000","0.95374","0.95374" +"GO:0051254","positive regulation of RNA metabolic pro...",58,22,26.03,1758,"0.8874","0.95377","0.95377" +"GO:1903573","negative regulation of response to endop...",9,1,4.04,2530,"0.9954","0.95406","0.95406" +"GO:0048589","developmental growth",36,10,16.16,2435,"0.9891","0.95447","0.95447" +"GO:0002520","immune system development",23,8,10.32,1754,"0.8836","0.95514","0.95514" +"GO:0048534","hematopoietic or lymphoid organ developm...",23,8,10.32,1755,"0.8836","0.95514","0.95514" +"GO:2001020","regulation of response to DNA damage sti...",6,0,2.69,2753,"1.0000","0.95538","0.95538" +"GO:0006970","response to osmotic stress",7,1,3.14,2405,"0.9846","0.95568","0.95568" +"GO:0072659","protein localization to plasma membrane",8,2,3.59,2103,"0.9363","0.95578","0.95578" +"GO:0001700","embryonic development via the syncytial ...",8,1,3.59,2456,"0.9916","0.95586","0.95586" +"GO:0035162","embryonic hemopoiesis",5,0,2.24,2754,"1.0000","0.95589","0.95589" +"GO:0061298","retina vasculature development in camera...",5,0,2.24,2755,"1.0000","0.95589","0.95589" +"GO:0002009","morphogenesis of an epithelium",31,14,13.91,794,"0.5570","0.40020","0.95613" +"GO:0045184","establishment of protein localization",107,33,48.02,2575,"0.9991","0.95623","0.95623" +"GO:0045665","negative regulation of neuron differenti...",11,4,4.94,1321,"0.8072","0.95624","0.95624" +"GO:0033036","macromolecule localization",189,70,84.82,2446,"0.9905","0.95640","0.95640" +"GO:0040008","regulation of growth",28,11,12.57,1279,"0.7840","0.95650","0.95650" +"GO:0022613","ribonucleoprotein complex biogenesis",23,1,10.32,2617,"1.0000","0.95654","0.95654" +"GO:0009890","negative regulation of biosynthetic proc...",51,16,22.89,2391,"0.9834","0.95661","0.95661" +"GO:0006515","protein quality control for misfolded or...",3,1,1.35,1560,"0.8327","0.95683","0.95683" +"GO:0031648","protein destabilization",3,1,1.35,1561,"0.8327","0.95683","0.95683" +"GO:0034968","histone lysine methylation",3,1,1.35,1562,"0.8327","0.95683","0.95683" +"GO:0006661","phosphatidylinositol biosynthetic proces...",8,2,3.59,2104,"0.9363","0.95708","0.95708" +"GO:0003006","developmental process involved in reprod...",53,17,23.79,2365,"0.9802","0.95717","0.95717" +"GO:0048813","dendrite morphogenesis",7,2,3.14,1801,"0.8967","0.95802","0.95802" +"GO:0031326","regulation of cellular biosynthetic proc...",251,93,112.64,2549,"0.9967","0.95572","0.95822" +"GO:0060548","negative regulation of cell death",46,15,20.64,2261,"0.9685","0.95856","0.95856" +"GO:0006465","signal peptide processing",3,1,1.35,1563,"0.8327","0.95892","0.95892" +"GO:0031503","protein-containing complex localization",9,3,4.04,1685,"0.8492","0.95932","0.95932" +"GO:0050829","defense response to Gram-negative bacter...",5,1,2.24,2165,"0.9493","0.95944","0.95944" +"GO:1903076","regulation of protein localization to pl...",5,1,2.24,2166,"0.9493","0.95993","0.95993" +"GO:1904375","regulation of protein localization to ce...",5,1,2.24,2167,"0.9493","0.95993","0.95993" +"GO:0048469","cell maturation",10,2,4.49,2349,"0.9765","0.96016","0.96016" +"GO:0051716","cellular response to stimulus",494,200,221.69,2428,"0.9877","0.95860","0.96029" +"GO:0046685","response to arsenic-containing substance",6,0,2.69,2756,"1.0000","0.96036","0.96036" +"GO:0045787","positive regulation of cell cycle",9,2,4.04,2230,"0.9611","0.96050","0.96050" +"GO:0009100","glycoprotein metabolic process",58,19,26.03,2359,"0.9790","0.96054","0.96054" +"GO:0016226","iron-sulfur cluster assembly",9,4,4.04,994,"0.6361","0.96123","0.96123" +"GO:0031163","metallo-sulfur cluster assembly",9,4,4.04,995,"0.6361","0.96123","0.96123" +"GO:0045596","negative regulation of cell differentiat...",29,11,13.01,1347,"0.8272","0.73874","0.96131" +"GO:0006810","transport",592,274,265.67,288,"0.2293","0.10349","0.96163" +"GO:0032504","multicellular organism reproduction",68,24,30.52,2210,"0.9597","0.96166","0.96166" +"GO:0032501","multicellular organismal process",371,152,166.5,2186,"0.9554","0.83189","0.96215" +"GO:0035107","appendage morphogenesis",10,2,4.49,2350,"0.9765","0.96297","0.96297" +"GO:0046907","intracellular transport",131,41,58.79,2587,"0.9996","0.96315","0.96315" +"GO:0097428","protein maturation by iron-sulfur cluste...",3,0,1.35,2757,"1.0000","0.96343","0.96343" +"GO:0010556","regulation of macromolecule biosynthetic...",245,91,109.95,2535,"0.9959","0.96132","0.96373" +"GO:0006950","response to stress",214,92,96.04,1209,"0.7425","0.63193","0.96390" +"GO:0042886","amide transport",103,32,46.22,2568,"0.9988","0.96401","0.96401" +"GO:0048518","positive regulation of biological proces...",299,117,134.18,2420,"0.9861","0.98596","0.96410" +"GO:0001777","T cell homeostatic proliferation",4,0,1.8,2758,"1.0000","0.96457","0.96457" +"GO:0001935","endothelial cell proliferation",4,0,1.8,2759,"1.0000","0.96457","0.96457" +"GO:0043029","T cell homeostasis",4,0,1.8,2760,"1.0000","0.96457","0.96457" +"GO:0046013","regulation of T cell homeostatic prolife...",4,0,1.8,2761,"1.0000","0.96457","0.96457" +"GO:0061299","retina vasculature morphogenesis in came...",4,0,1.8,2762,"1.0000","0.96457","0.96457" +"GO:0061304","retinal blood vessel morphogenesis",4,0,1.8,2763,"1.0000","0.96457","0.96457" +"GO:0010647","positive regulation of cell communicatio...",76,25,34.11,2432,"0.9886","0.96504","0.96504" +"GO:0023056","positive regulation of signaling",76,25,34.11,2433,"0.9886","0.96504","0.96504" +"GO:2000112","regulation of cellular macromolecule bio...",243,90,109.05,2540,"0.9962","0.96314","0.96550" +"GO:0016070","RNA metabolic process",313,101,140.47,2619,"1.0000","0.96586","0.96586" +"GO:0015833","peptide transport",102,32,45.78,2561,"0.9984","0.96589","0.96589" +"GO:0019219","regulation of nucleobase-containing comp...",236,87,105.91,2544,"0.9964","0.96602","0.96602" +"GO:0031623","receptor internalization",3,1,1.35,1564,"0.8327","0.96607","0.96607" +"GO:0045576","mast cell activation",3,1,1.35,1565,"0.8327","0.96607","0.96607" +"GO:0050778","positive regulation of immune response",22,6,9.87,2319,"0.9727","0.96655","0.96655" +"GO:0008593","regulation of Notch signaling pathway",7,2,3.14,1802,"0.8967","0.96660","0.96660" +"GO:0032008","positive regulation of TOR signaling",4,1,1.8,1963,"0.9079","0.96663","0.96663" +"GO:0048738","cardiac muscle tissue development",18,9,8.08,537,"0.4177","0.44776","0.96668" +"GO:0046688","response to copper ion",6,0,2.69,2764,"1.0000","0.96673","0.96673" +"GO:0031330","negative regulation of cellular cataboli...",11,1,4.94,2565,"0.9986","0.96681","0.96681" +"GO:0033554","cellular response to stress",106,30,47.57,2601,"0.9999","0.96165","0.96714" +"GO:0002764","immune response-regulating signaling pat...",10,2,4.49,2351,"0.9765","0.96754","0.96754" +"GO:0043410","positive regulation of MAPK cascade",10,2,4.49,2352,"0.9765","0.96754","0.96754" +"GO:0015031","protein transport",101,32,45.33,2557,"0.9979","0.96773","0.96773" +"GO:0006490","oligosaccharide-lipid intermediate biosy...",6,0,2.69,2765,"1.0000","0.96820","0.96820" +"GO:0007417","central nervous system development",71,23,31.86,2436,"0.9891","0.96831","0.96831" +"GO:0000070","mitotic sister chromatid segregation",4,1,1.8,1964,"0.9079","0.96862","0.96862" +"GO:0036294","cellular response to decreased oxygen le...",6,2,2.69,1631,"0.8352","0.96917","0.96917" +"GO:0071453","cellular response to oxygen levels",6,2,2.69,1632,"0.8352","0.96917","0.96917" +"GO:0071456","cellular response to hypoxia",6,2,2.69,1633,"0.8352","0.96917","0.96917" +"GO:0042752","regulation of circadian rhythm",12,5,5.39,1071,"0.6930","0.96924","0.96924" +"GO:0071702","organic substance transport",154,60,69.11,2130,"0.9466","0.96947","0.96947" +"GO:0015936","coenzyme A metabolic process",3,1,1.35,1566,"0.8327","0.96963","0.96963" +"GO:0015937","coenzyme A biosynthetic process",3,1,1.35,1567,"0.8327","0.96963","0.96963" +"GO:0022414","reproductive process",91,31,40.84,2427,"0.9875","0.96992","0.96992" +"GO:0071103","DNA conformation change",9,3,4.04,1686,"0.8492","0.97044","0.97044" +"GO:1901564","organonitrogen compound metabolic proces...",835,327,374.73,2608,"1.0000","0.95757","0.97066" +"GO:1901137","carbohydrate derivative biosynthetic pro...",112,46,50.26,1333,"0.8226","0.97097","0.97097" +"GO:0090304","nucleic acid metabolic process",344,105,154.38,2626,"1.0000","0.97098","0.97098" +"GO:0051252","regulation of RNA metabolic process",230,85,103.22,2532,"0.9956","0.97122","0.97122" +"GO:0002237","response to molecule of bacterial origin",12,2,5.39,2473,"0.9916","0.97173","0.97173" +"GO:0006725","cellular aromatic compound metabolic pro...",490,187,219.9,2590,"0.9997","0.97183","0.97183" +"GO:0045165","cell fate commitment",16,5,7.18,1982,"0.9138","0.97193","0.97193" +"GO:0060562","epithelial tube morphogenesis",16,3,7.18,2498,"0.9933","0.97193","0.97193" +"GO:0010628","positive regulation of gene expression",68,25,30.52,2019,"0.9325","0.97271","0.97271" +"GO:0031929","TOR signaling",14,2,6.28,2550,"0.9971","0.97341","0.97341" +"GO:0051276","chromosome organization",59,17,26.48,2547,"0.9965","0.90992","0.97358" +"GO:0010771","negative regulation of cell morphogenesi...",5,2,2.24,1201,"0.7422","0.97361","0.97361" +"GO:0010977","negative regulation of neuron projection...",5,2,2.24,1202,"0.7422","0.97361","0.97361" +"GO:0031345","negative regulation of cell projection o...",5,2,2.24,1203,"0.7422","0.97361","0.97361" +"GO:0120009","intermembrane lipid transfer",3,0,1.35,2766,"1.0000","0.97363","0.97363" +"GO:0044238","primary metabolic process",1237,492,555.13,2622,"1.0000","0.94749","0.97364" +"GO:0010721","negative regulation of cell development",15,4,6.73,2194,"0.9572","0.97367","0.97367" +"GO:0006497","protein lipidation",9,2,4.04,2231,"0.9611","0.97373","0.97373" +"GO:0042158","lipoprotein biosynthetic process",9,2,4.04,2232,"0.9611","0.97373","0.97373" +"GO:0035456","response to interferon-beta",6,2,2.69,1634,"0.8352","0.97384","0.97384" +"GO:0048522","positive regulation of cellular process",258,101,115.78,2358,"0.9787","0.99298","0.97400" +"GO:0030968","endoplasmic reticulum unfolded protein r...",5,2,2.24,1204,"0.7422","0.97425","0.97425" +"GO:0034620","cellular response to unfolded protein",5,2,2.24,1205,"0.7422","0.97425","0.97425" +"GO:0070059","intrinsic apoptotic signaling pathway in...",5,1,2.24,2168,"0.9493","0.97425","0.97425" +"GO:1902235","regulation of endoplasmic reticulum stre...",5,1,2.24,2169,"0.9493","0.97425","0.97425" +"GO:1902236","negative regulation of endoplasmic retic...",5,1,2.24,2170,"0.9493","0.97425","0.97425" +"GO:0038202","TORC1 signaling",3,0,1.35,2767,"1.0000","0.97487","0.97487" +"GO:0007635","chemosensory behavior",5,1,2.24,2171,"0.9493","0.97583","0.97583" +"GO:2000736","regulation of stem cell differentiation",8,1,3.59,2457,"0.9916","0.97598","0.97598" +"GO:0070371","ERK1 and ERK2 cascade",8,0,3.59,2768,"1.0000","0.97598","0.97598" +"GO:0002218","activation of innate immune response",5,1,2.24,2172,"0.9493","0.97606","0.97606" +"GO:0002221","pattern recognition receptor signaling p...",5,1,2.24,2173,"0.9493","0.97606","0.97606" +"GO:0002758","innate immune response-activating signal...",5,1,2.24,2174,"0.9493","0.97606","0.97606" +"GO:1904029","regulation of cyclin-dependent protein k...",7,3,3.14,1056,"0.6814","0.20001","0.97630" +"GO:0009895","negative regulation of catabolic process",12,1,5.39,2577,"0.9992","0.97635","0.97635" +"GO:0044271","cellular nitrogen compound biosynthetic ...",474,160,212.72,2624,"1.0000","0.97637","0.97683" +"GO:0050768","negative regulation of neurogenesis",13,4,5.83,1863,"0.9062","0.97716","0.97716" +"GO:0032006","regulation of TOR signaling",12,1,5.39,2578,"0.9992","0.97718","0.97718" +"GO:0019220","regulation of phosphate metabolic proces...",65,24,29.17,2007,"0.9250","0.73085","0.97719" +"GO:0051174","regulation of phosphorus metabolic proce...",65,24,29.17,2008,"0.9250","0.73085","0.97719" +"GO:0044265","cellular macromolecule catabolic process",58,15,26.03,2576,"0.9992","0.97731","0.97731" +"GO:0006659","phosphatidylserine biosynthetic process",3,1,1.35,1568,"0.8327","0.97746","0.97746" +"GO:0008630","intrinsic apoptotic signaling pathway in...",3,0,1.35,2769,"1.0000","0.97746","0.97746" +"GO:1902229","regulation of intrinsic apoptotic signal...",3,0,1.35,2770,"1.0000","0.97746","0.97746" +"GO:0031327","negative regulation of cellular biosynth...",49,16,21.99,2267,"0.9715","0.97765","0.97765" +"GO:0048260","positive regulation of receptor-mediated...",4,0,1.8,2771,"1.0000","0.97772","0.97772" +"GO:0019318","hexose metabolic process",17,7,7.63,1084,"0.7069","0.97786","0.97786" +"GO:0006488","dolichol-linked oligosaccharide biosynth...",4,0,1.8,2772,"1.0000","0.97871","0.97871" +"GO:0006364","rRNA processing",6,0,2.69,2773,"1.0000","0.97882","0.97882" +"GO:0016072","rRNA metabolic process",6,0,2.69,2774,"1.0000","0.97882","0.97882" +"GO:0016266","O-glycan processing",9,3,4.04,1687,"0.8492","0.97883","0.97883" +"GO:0048863","stem cell differentiation",12,2,5.39,2474,"0.9916","0.97891","0.97891" +"GO:0044419","interspecies interaction between organis...",28,6,12.57,2554,"0.9975","0.97946","0.97946" +"GO:0031399","regulation of protein modification proce...",72,28,32.31,1727,"0.8767","0.83385","0.97954" +"GO:0009994","oocyte differentiation",5,0,2.24,2775,"1.0000","0.97992","0.97992" +"GO:0048599","oocyte development",5,0,2.24,2776,"1.0000","0.97992","0.97992" +"GO:0031324","negative regulation of cellular metaboli...",98,36,43.98,2236,"0.9614","0.80663","0.97994" +"GO:0010468","regulation of gene expression",263,92,118.03,2596,"0.9998","0.97826","0.98009" +"GO:0061014","positive regulation of mRNA catabolic pr...",3,0,1.35,2777,"1.0000","0.98028","0.98028" +"GO:0006259","DNA metabolic process",42,8,18.85,2603,"0.9999","0.98028","0.98028" +"GO:0007049","cell cycle",79,25,35.45,2517,"0.9947","0.97956","0.98031" +"GO:0006310","DNA recombination",8,0,3.59,2778,"1.0000","0.98058","0.98058" +"GO:0120034","positive regulation of plasma membrane b...",4,1,1.8,1965,"0.9079","0.98109","0.98109" +"GO:0044085","cellular component biogenesis",199,77,89.31,2273,"0.9720","0.97886","0.98143" +"GO:0006400","tRNA modification",8,2,3.59,2105,"0.9363","0.98145","0.98145" +"GO:0002831","regulation of response to biotic stimulu...",5,1,2.24,2175,"0.9493","0.98199","0.98199" +"GO:0006401","RNA catabolic process",15,3,6.73,2441,"0.9893","0.98211","0.98211" +"GO:0009058","biosynthetic process",655,243,293.95,2616,"1.0000","0.98441","0.98216" +"GO:0000079","regulation of cyclin-dependent protein s...",3,0,1.35,2779,"1.0000","0.98222","0.98222" +"GO:0031058","positive regulation of histone modificat...",3,0,1.35,2780,"1.0000","0.98240","0.98240" +"GO:1905269","positive regulation of chromatin organiz...",3,0,1.35,2781,"1.0000","0.98240","0.98240" +"GO:0060537","muscle tissue development",35,15,15.71,1009,"0.6582","0.91162","0.98244" +"GO:0010941","regulation of cell death",67,22,30.07,2396,"0.9845","0.98272","0.98272" +"GO:0140013","meiotic nuclear division",8,1,3.59,2458,"0.9916","0.98273","0.98273" +"GO:0051052","regulation of DNA metabolic process",7,1,3.14,2406,"0.9846","0.98299","0.98299" +"GO:0009892","negative regulation of metabolic process",114,39,51.16,2491,"0.9931","0.87103","0.98329" +"GO:0007029","endoplasmic reticulum organization",5,1,2.24,2176,"0.9493","0.98331","0.98331" +"GO:0051247","positive regulation of protein metabolic...",56,18,25.13,2382,"0.9821","0.98349","0.98349" +"GO:0045595","regulation of cell differentiation",81,33,36.35,1324,"0.8088","0.88542","0.98356" +"GO:0032270","positive regulation of cellular protein ...",55,17,24.68,2434,"0.9886","0.98379","0.98379" +"GO:0009950","dorsal/ventral axis specification",4,0,1.8,2782,"1.0000","0.98391","0.98391" +"GO:0000122","negative regulation of transcription by ...",21,7,9.42,1837,"0.9027","0.98406","0.98406" +"GO:1900037","regulation of cellular response to hypox...",3,1,1.35,1569,"0.8327","0.98448","0.98448" +"GO:0044237","cellular metabolic process",1192,472,534.94,2621,"1.0000","0.97012","0.98450" +"GO:0043543","protein acylation",8,1,3.59,2459,"0.9916","0.98476","0.98476" +"GO:0044249","cellular biosynthetic process",614,223,275.55,2620,"1.0000","0.98619","0.98483" +"GO:0016051","carbohydrate biosynthetic process",23,9,10.32,1247,"0.7773","0.98494","0.98494" +"GO:0022607","cellular component assembly",185,75,83.02,1841,"0.9052","0.98249","0.98498" +"GO:0001894","tissue homeostasis",16,9,7.18,347,"0.2520","0.12531","0.98524" +"GO:0043085","positive regulation of catalytic activit...",47,17,21.09,1985,"0.9140","0.98525","0.98525" +"GO:0043067","regulation of programmed cell death",57,18,25.58,2421,"0.9863","0.98534","0.98534" +"GO:0042048","olfactory behavior",3,0,1.35,2783,"1.0000","0.98544","0.98544" +"GO:0006997","nucleus organization",4,0,1.8,2784,"1.0000","0.98557","0.98557" +"GO:0006403","RNA localization",4,0,1.8,2785,"1.0000","0.98584","0.98584" +"GO:0010558","negative regulation of macromolecule bio...",48,15,21.54,2379,"0.9818","0.98586","0.98586" +"GO:0042981","regulation of apoptotic process",55,18,24.68,2353,"0.9768","0.98587","0.98587" +"GO:0030838","positive regulation of actin filament po...",10,4,4.49,1116,"0.7318","0.98623","0.98623" +"GO:0033044","regulation of chromosome organization",7,0,3.14,2786,"1.0000","0.98665","0.98665" +"GO:0000003","reproduction",99,32,44.43,2548,"0.9965","0.98696","0.98696" +"GO:0034641","cellular nitrogen compound metabolic pro...",624,212,280.04,2628,"1.0000","0.98666","0.98702" +"GO:0016192","vesicle-mediated transport",131,35,58.79,2613,"1.0000","0.98718","0.98718" +"GO:0051726","regulation of cell cycle",52,17,23.34,2331,"0.9743","0.92735","0.98740" +"GO:0006953","acute-phase response",3,0,1.35,2787,"1.0000","0.98740","0.98740" +"GO:0006974","cellular response to DNA damage stimulus",40,5,17.95,2615,"1.0000","0.98747","0.98747" +"GO:1901576","organic substance biosynthetic process",631,232,283.18,2618,"1.0000","0.98774","0.98753" +"GO:0002521","leukocyte differentiation",5,1,2.24,2177,"0.9493","0.98783","0.98783" +"GO:0045638","negative regulation of myeloid cell diff...",5,0,2.24,2788,"1.0000","0.98783","0.98783" +"GO:1903707","negative regulation of hemopoiesis",5,0,2.24,2789,"1.0000","0.98783","0.98783" +"GO:0007308","oocyte construction",3,0,1.35,2790,"1.0000","0.98791","0.98791" +"GO:0007309","oocyte axis specification",3,0,1.35,2791,"1.0000","0.98791","0.98791" +"GO:0006366","transcription by RNA polymerase II",76,31,34.11,1299,"0.8005","0.98837","0.98837" +"GO:0034660","ncRNA metabolic process",44,7,19.75,2611,"1.0000","0.98838","0.98838" +"GO:0006473","protein acetylation",6,1,2.69,2304,"0.9721","0.98855","0.98855" +"GO:0006475","internal protein amino acid acetylation",6,1,2.69,2305,"0.9721","0.98855","0.98855" +"GO:0016573","histone acetylation",6,1,2.69,2306,"0.9721","0.98855","0.98855" +"GO:0018393","internal peptidyl-lysine acetylation",6,1,2.69,2307,"0.9721","0.98855","0.98855" +"GO:0018394","peptidyl-lysine acetylation",6,1,2.69,2308,"0.9721","0.98855","0.98855" +"GO:0044403","symbiont process",26,5,11.67,2563,"0.9985","0.98890","0.98890" +"GO:0031401","positive regulation of protein modificat...",37,11,16.6,2367,"0.9806","0.98915","0.98915" +"GO:0051241","negative regulation of multicellular org...",37,10,16.6,2480,"0.9922","0.98915","0.98915" +"GO:0031123","RNA 3'-end processing",3,0,1.35,2792,"1.0000","0.98916","0.98916" +"GO:0031124","mRNA 3'-end processing",3,0,1.35,2793,"1.0000","0.98916","0.98916" +"GO:0018958","phenol-containing compound metabolic pro...",6,2,2.69,1635,"0.8352","0.98919","0.98919" +"GO:0006405","RNA export from nucleus",3,0,1.35,2794,"1.0000","0.98937","0.98937" +"GO:0050657","nucleic acid transport",3,0,1.35,2795,"1.0000","0.98937","0.98937" +"GO:0050658","RNA transport",3,0,1.35,2796,"1.0000","0.98937","0.98937" +"GO:0051168","nuclear export",3,0,1.35,2797,"1.0000","0.98937","0.98937" +"GO:0051236","establishment of RNA localization",3,0,1.35,2798,"1.0000","0.98937","0.98937" +"GO:0070555","response to interleukin-1",3,0,1.35,2799,"1.0000","0.98937","0.98937" +"GO:0071347","cellular response to interleukin-1",3,0,1.35,2800,"1.0000","0.98937","0.98937" +"GO:0048749","compound eye development",6,1,2.69,2309,"0.9721","0.98942","0.98942" +"GO:0007444","imaginal disc development",6,0,2.69,2801,"1.0000","0.98942","0.98942" +"GO:0014706","striated muscle tissue development",34,14,15.26,1097,"0.7277","0.93062","0.98946" +"GO:0032007","negative regulation of TOR signaling",4,0,1.8,2802,"1.0000","0.98958","0.98958" +"GO:0071704","organic substance metabolic process",1335,544,599.11,2614,"1.0000","0.97434","0.98990" +"GO:0030098","lymphocyte differentiation",4,1,1.8,1966,"0.9079","0.99026","0.99026" +"GO:1902105","regulation of leukocyte differentiation",4,1,1.8,1967,"0.9079","0.99026","0.99026" +"GO:0019222","regulation of metabolic process",353,123,158.42,2609,"1.0000","0.98966","0.99052" +"GO:0042327","positive regulation of phosphorylation",30,8,13.46,2429,"0.9879","0.99068","0.99068" +"GO:0002097","tRNA wobble base modification",4,0,1.8,2803,"1.0000","0.99070","0.99070" +"GO:0002098","tRNA wobble uridine modification",4,0,1.8,2804,"1.0000","0.99070","0.99070" +"GO:1903037","regulation of leukocyte cell-cell adhesi...",5,2,2.24,1206,"0.7422","0.99080","0.99080" +"GO:0046470","phosphatidylcholine metabolic process",3,1,1.35,1570,"0.8327","0.99092","0.99092" +"GO:0010562","positive regulation of phosphorus metabo...",31,8,13.91,2462,"0.9916","0.99092","0.99092" +"GO:0045937","positive regulation of phosphate metabol...",31,8,13.91,2463,"0.9916","0.99092","0.99092" +"GO:0006281","DNA repair",19,3,8.53,2562,"0.9985","0.99111","0.99111" +"GO:0051093","negative regulation of developmental pro...",37,12,16.6,2188,"0.9571","0.84907","0.99117" +"GO:0001745","compound eye morphogenesis",5,1,2.24,2178,"0.9493","0.99118","0.99118" +"GO:0048569","post-embryonic animal organ development",5,1,2.24,2179,"0.9493","0.99118","0.99118" +"GO:0002165","instar larval or pupal development",5,0,2.24,2805,"1.0000","0.99118","0.99118" +"GO:0009886","post-embryonic animal morphogenesis",5,0,2.24,2806,"1.0000","0.99118","0.99118" +"GO:0043900","regulation of multi-organism process",28,6,12.57,2555,"0.9975","0.99125","0.99125" +"GO:0019538","protein metabolic process",615,204,276,2630,"1.0000","0.99214","0.99132" +"GO:0045010","actin nucleation",9,3,4.04,1688,"0.8492","0.99153","0.99153" +"GO:0009617","response to bacterium",26,8,11.67,2185,"0.9529","0.99188","0.99188" +"GO:0050793","regulation of developmental process",117,48,52.51,1348,"0.8297","0.92787","0.99205" +"GO:0035556","intracellular signal transduction",144,47,64.62,2579,"0.9992","0.99205","0.99205" +"GO:0010564","regulation of cell cycle process",31,11,13.91,1764,"0.8934","0.99209","0.99209" +"GO:0018242","protein O-linked glycosylation via serin...",6,1,2.69,2310,"0.9721","0.99228","0.99228" +"GO:2001252","positive regulation of chromosome organi...",4,0,1.8,2807,"1.0000","0.99236","0.99236" +"GO:0048285","organelle fission",26,7,11.67,2381,"0.9819","0.99239","0.99239" +"GO:0010256","endomembrane system organization",24,7,10.77,2244,"0.9633","0.99251","0.99251" +"GO:0045619","regulation of lymphocyte differentiation",3,1,1.35,1571,"0.8327","0.99269","0.99269" +"GO:0071840","cellular component organization or bioge...",398,148,178.61,2594,"0.9997","0.99253","0.99275" +"GO:0016032","viral process",23,4,10.32,2569,"0.9988","0.99282","0.99282" +"GO:0007164","establishment of tissue polarity",10,7,4.49,206,"0.1001","0.02077","0.99291" +"GO:0060249","anatomical structure homeostasis",24,10,10.77,1077,"0.6976","0.53383","0.99294" +"GO:0000280","nuclear division",24,5,10.77,2545,"0.9964","0.99298","0.99298" +"GO:0007346","regulation of mitotic cell cycle",24,5,10.77,2546,"0.9964","0.99298","0.99298" +"GO:0016043","cellular component organization",385,147,172.78,2560,"0.9984","0.99282","0.99304" +"GO:0140053","mitochondrial gene expression",13,2,5.83,2521,"0.9951","0.99327","0.99327" +"GO:0006357","regulation of transcription by RNA polym...",71,30,31.86,1090,"0.7153","0.99329","0.99329" +"GO:0043412","macromolecule modification",344,129,154.38,2571,"0.9988","0.97652","0.99332" +"GO:0048871","multicellular organismal homeostasis",18,9,8.08,538,"0.4177","0.24433","0.99353" +"GO:0032543","mitochondrial translation",12,2,5.39,2475,"0.9916","0.99379","0.99379" +"GO:0006457","protein folding",47,11,21.09,2583,"0.9994","0.99386","0.99386" +"GO:0031323","regulation of cellular metabolic process",331,119,148.54,2598,"0.9998","0.99320","0.99394" +"GO:0060255","regulation of macromolecule metabolic pr...",325,111,145.85,2610,"1.0000","0.99406","0.99420" +"GO:0080090","regulation of primary metabolic process",322,117,144.51,2589,"0.9996","0.99417","0.99426" +"GO:0090150","establishment of protein localization to...",9,2,4.04,2233,"0.9611","0.99437","0.99437" +"GO:0051014","actin filament severing",8,6,3.59,153,"0.0870","0.02145","0.99440" +"GO:0048869","cellular developmental process",209,82,93.79,2246,"0.9635","0.85091","0.99442" +"GO:0051171","regulation of nitrogen compound metaboli...",311,111,139.57,2597,"0.9998","0.99439","0.99449" +"GO:0070129","regulation of mitochondrial translation",3,1,1.35,1572,"0.8327","0.99456","0.99456" +"GO:0001736","establishment of planar polarity",9,6,4.04,267,"0.1635","0.05096","0.99468" +"GO:0001738","morphogenesis of a polarized epithelium",9,6,4.04,268,"0.1635","0.05096","0.99468" +"GO:0007552","metamorphosis",3,0,1.35,2808,"1.0000","0.99470","0.99470" +"GO:0007560","imaginal disc morphogenesis",3,0,1.35,2809,"1.0000","0.99470","0.99470" +"GO:0035120","post-embryonic appendage morphogenesis",3,0,1.35,2810,"1.0000","0.99470","0.99470" +"GO:0035215","genital disc development",3,0,1.35,2811,"1.0000","0.99470","0.99470" +"GO:0035220","wing disc development",3,0,1.35,2812,"1.0000","0.99470","0.99470" +"GO:0048563","post-embryonic animal organ morphogenesi...",3,0,1.35,2813,"1.0000","0.99470","0.99470" +"GO:0048707","instar larval or pupal morphogenesis",3,0,1.35,2814,"1.0000","0.99470","0.99470" +"GO:0044260","cellular macromolecule metabolic process",729,236,327.16,2639,"1.0000","0.99469","0.99472" +"GO:0045935","positive regulation of nucleobase-contai...",61,22,27.38,2110,"0.9382","0.99473","0.99473" +"GO:0009311","oligosaccharide metabolic process",8,2,3.59,2106,"0.9363","0.99477","0.99477" +"GO:0009312","oligosaccharide biosynthetic process",8,2,3.59,2107,"0.9363","0.99477","0.99477" +"GO:0140014","mitotic nuclear division",17,4,7.63,2376,"0.9814","0.99504","0.99504" +"GO:0009893","positive regulation of metabolic process",128,45,57.44,2449,"0.9914","0.99516","0.99516" +"GO:0051125","regulation of actin nucleation",5,2,2.24,1207,"0.7422","0.99529","0.99529" +"GO:0051127","positive regulation of actin nucleation",5,2,2.24,1208,"0.7422","0.99529","0.99529" +"GO:0006954","inflammatory response",15,4,6.73,2195,"0.9572","0.99533","0.99533" +"GO:0018243","protein O-linked glycosylation via threo...",7,1,3.14,2407,"0.9846","0.99542","0.99542" +"GO:0051961","negative regulation of nervous system de...",15,4,6.73,2196,"0.9572","0.99562","0.99562" +"GO:0048193","Golgi vesicle transport",24,4,10.77,2580,"0.9992","0.99576","0.99576" +"GO:0048523","negative regulation of cellular process",198,70,88.86,2558,"0.9982","0.86578","0.99577" +"GO:0048519","negative regulation of biological proces...",235,80,105.46,2599,"0.9998","0.93293","0.99606" +"GO:0031325","positive regulation of cellular metaboli...",116,43,52.06,2257,"0.9669","0.99608","0.99608" +"GO:0007051","spindle organization",13,2,5.83,2522,"0.9951","0.99621","0.99621" +"GO:0010604","positive regulation of macromolecule met...",111,36,49.81,2556,"0.9977","0.99626","0.99626" +"GO:0051172","negative regulation of nitrogen compound...",92,34,41.29,2183,"0.9527","0.93537","0.99647" +"GO:0051173","positive regulation of nitrogen compound...",102,36,45.78,2383,"0.9824","0.99657","0.99657" +"GO:0032268","regulation of cellular protein metabolic...",107,37,48.02,2443,"0.9895","0.96398","0.99659" +"GO:0051128","regulation of cellular component organiz...",119,43,53.4,2368,"0.9809","0.99668","0.99668" +"GO:0044267","cellular protein metabolic process",499,154,223.94,2634,"1.0000","0.99678","0.99681" +"GO:2000113","negative regulation of cellular macromol...",46,14,20.64,2411,"0.9850","0.99694","0.99694" +"GO:0034105","positive regulation of tissue remodeling",4,1,1.8,1968,"0.9079","0.99715","0.99715" +"GO:0009059","macromolecule biosynthetic process",454,139,203.74,2631,"1.0000","0.99714","0.99715" +"GO:0034645","cellular macromolecule biosynthetic proc...",449,134,201.5,2635,"1.0000","0.99717","0.99719" +"GO:1903918","regulation of actin filament severing",7,6,3.14,65,"0.0350","0.00678","0.99720" +"GO:0000723","telomere maintenance",6,1,2.69,2311,"0.9721","0.99720","0.99720" +"GO:0032200","telomere organization",6,1,2.69,2312,"0.9721","0.99720","0.99720" +"GO:0007009","plasma membrane organization",9,4,4.04,996,"0.6361","0.99720","0.99720" +"GO:0006807","nitrogen compound metabolic process",1118,421,501.73,2629,"1.0000","0.99738","0.99739" +"GO:2000026","regulation of multicellular organismal d...",86,35,38.59,1327,"0.8167","0.89153","0.99774" +"GO:0009451","RNA modification",16,3,7.18,2499,"0.9933","0.99795","0.99795" +"GO:0043170","macromolecule metabolic process",933,313,418.71,2815,"1.0000","0.99807","0.99808" +"GO:0051246","regulation of protein metabolic process",115,39,51.61,2514,"0.9945","0.99231","0.99819" +"GO:0009987","cellular process",1746,705,783.56,2632,"1.0000","0.99811","0.99819" +"GO:1901566","organonitrogen compound biosynthetic pro...",303,95,135.98,2623,"1.0000","0.99822","0.99824" +"GO:0006900","vesicle budding from membrane",6,1,2.69,2313,"0.9721","0.99825","0.99825" +"GO:0070372","regulation of ERK1 and ERK2 cascade",6,0,2.69,2816,"1.0000","0.99825","0.99825" +"GO:0010605","negative regulation of macromolecule met...",106,36,47.57,2487,"0.9925","0.99583","0.99830" +"GO:0007219","Notch signaling pathway",9,2,4.04,2234,"0.9611","0.99840","0.99840" +"GO:0043901","negative regulation of multi-organism pr...",5,0,2.24,2817,"1.0000","0.99845","0.99845" +"GO:0002376","immune system process",93,34,41.74,2211,"0.9608","0.99847","0.99847" +"GO:0048584","positive regulation of response to stimu...",92,31,41.29,2445,"0.9900","0.99849","0.99849" +"GO:0006888","ER to Golgi vesicle-mediated transport",14,1,6.28,2595,"0.9998","0.99853","0.99853" +"GO:0006493","protein O-linked glycosylation",17,5,7.63,2120,"0.9399","0.99859","0.99859" +"GO:0006658","phosphatidylserine metabolic process",4,1,1.8,1969,"0.9079","0.99876","0.99876" +"GO:0048525","negative regulation of viral process",4,0,1.8,2818,"1.0000","0.99876","0.99876" +"GO:1903901","negative regulation of viral life cycle",4,0,1.8,2819,"1.0000","0.99876","0.99876" +"GO:0009967","positive regulation of signal transducti...",67,20,30.07,2542,"0.9963","0.99891","0.99891" +"GO:0010629","negative regulation of gene expression",67,20,30.07,2543,"0.9963","0.99891","0.99891" +"GO:0043603","cellular amide metabolic process",182,43,81.68,2627,"1.0000","0.99899","0.99900" +"GO:0080134","regulation of response to stress",60,18,26.93,2509,"0.9941","0.99903","0.99903" +"GO:0045071","negative regulation of viral genome repl...",3,0,1.35,2820,"1.0000","0.99907","0.99907" +"GO:0097194","execution phase of apoptosis",3,0,1.35,2821,"1.0000","0.99907","0.99907" +"GO:2001244","positive regulation of intrinsic apoptot...",3,0,1.35,2822,"1.0000","0.99907","0.99907" +"GO:0002682","regulation of immune system process",57,18,25.58,2422,"0.9863","0.99908","0.99908" +"GO:0010608","posttranscriptional regulation of gene e...",31,9,13.91,2354,"0.9773","0.97482","0.99908" +"GO:0032506","cytokinetic process",3,1,1.35,1573,"0.8327","0.99913","0.99913" +"GO:0006518","peptide metabolic process",159,28,71.36,2637,"1.0000","0.99912","0.99914" +"GO:0061024","membrane organization",51,17,22.89,2255,"0.9668","0.99918","0.99918" +"GO:0034470","ncRNA processing",25,3,11.22,2604,"0.9999","0.99919","0.99919" +"GO:0043604","amide biosynthetic process",151,28,67.76,2633,"1.0000","0.99917","0.99919" +"GO:0043043","peptide biosynthetic process",142,23,63.73,2636,"1.0000","0.99922","0.99924" +"GO:0006412","translation",140,21,62.83,2638,"1.0000","0.99923","0.99925" +"GO:0006955","immune response",45,16,20.19,2005,"0.9233","0.99928","0.99928" +"GO:0010467","gene expression",452,119,202.85,2823,"1.0000","0.99929","0.99929" +"GO:0034248","regulation of cellular amide metabolic p...",21,8,9.42,1305,"0.8008","0.75426","0.99941" +"GO:0040029","regulation of gene expression, epigeneti...",16,3,7.18,2500,"0.9933","0.99948","0.99948" +"GO:0007272","ensheathment of neurons",4,1,1.8,1970,"0.9079","0.99948","0.99948" +"GO:0008366","axon ensheathment",4,1,1.8,1971,"0.9079","0.99948","0.99948" +"GO:0006417","regulation of translation",18,7,8.08,1245,"0.7719","0.62760","0.99951" +"GO:0016458","gene silencing",15,3,6.73,2442,"0.9893","0.99951","0.99951" +"GO:0050776","regulation of immune response",30,8,13.46,2430,"0.9879","0.99952","0.99952" +"GO:0001775","cell activation",37,17,16.6,729,"0.5116","0.39714","0.99953" +"GO:0002684","positive regulation of immune system pro...",29,8,13.01,2384,"0.9828","0.99954","0.99954" +"GO:0045321","leukocyte activation",28,10,12.57,1750,"0.8800","0.99955","0.99955" +"GO:1903706","regulation of hemopoiesis",13,2,5.83,2523,"0.9951","0.99958","0.99958" +"GO:0031047","gene silencing by RNA",12,2,5.39,2476,"0.9916","0.99961","0.99961" +"GO:0042552","myelination",3,0,1.35,2824,"1.0000","0.99961","0.99961" +"GO:0016441","posttranscriptional gene silencing",11,2,4.94,2418,"0.9859","0.99964","0.99964" +"GO:0035194","posttranscriptional gene silencing by RN...",11,2,4.94,2419,"0.9859","0.99964","0.99964" +"GO:0042063","gliogenesis",11,4,4.94,1322,"0.8072","0.99964","0.99964" +"GO:0010001","glial cell differentiation",10,3,4.49,1830,"0.8995","0.99968","0.99968" +"GO:0031647","regulation of protein stability",19,4,8.53,2485,"0.9922","0.99970","0.99970" +"GO:0031347","regulation of defense response",18,5,8.08,2209,"0.9586","0.99971","0.99971" +"GO:0045087","innate immune response",17,4,7.63,2377,"0.9814","0.99973","0.99973" +"GO:0002694","regulation of leukocyte activation",16,4,7.18,2270,"0.9716","0.99975","0.99975" +"GO:0046649","lymphocyte activation",16,5,7.18,1983,"0.9138","0.99975","0.99975" +"GO:0050865","regulation of cell activation",16,4,7.18,2271,"0.9716","0.99975","0.99975" +"GO:0042110","T cell activation",14,4,6.28,2046,"0.9362","0.99978","0.99978" +"GO:0045088","regulation of innate immune response",13,3,5.83,2328,"0.9729","0.99979","0.99979" +"GO:0051249","regulation of lymphocyte activation",13,4,5.83,1864,"0.9062","0.99979","0.99979" +"GO:0031349","positive regulation of defense response",12,2,5.39,2477,"0.9916","0.99981","0.99981" +"GO:0007163","establishment or maintenance of cell pol...",11,1,4.94,2566,"0.9986","0.99983","0.99983" +"GO:0050821","protein stabilization",11,3,4.94,2034,"0.9342","0.99983","0.99983" +"GO:0050863","regulation of T cell activation",11,3,4.94,2035,"0.9342","0.99983","0.99983" +"GO:0045089","positive regulation of innate immune res...",9,2,4.04,2235,"0.9611","0.99986","0.99986" +"GO:0006487","protein N-linked glycosylation",16,2,7.18,2573,"0.9990","0.99987","0.99987" +"GO:0035195","gene silencing by miRNA",4,0,1.8,2825,"1.0000","0.99987","0.99987" +"GO:0006898","receptor-mediated endocytosis",8,1,3.59,2460,"0.9916","0.99987","0.99987" +"GO:0016202","regulation of striated muscle tissue dev...",7,2,3.14,1803,"0.8967","0.99989","0.99989" +"GO:0030010","establishment of cell polarity",7,1,3.14,2408,"0.9846","0.99989","0.99989" +"GO:0048634","regulation of muscle organ development",7,2,3.14,1804,"0.8967","0.99989","0.99989" +"GO:0051099","positive regulation of binding",7,2,3.14,1805,"0.8967","0.99989","0.99989" +"GO:1901861","regulation of muscle tissue development",7,2,3.14,1806,"0.8967","0.99989","0.99989" +"GO:0031050","dsRNA processing",3,0,1.35,2826,"1.0000","0.99990","0.99990" +"GO:0035196","production of miRNAs involved in gene si...",3,0,1.35,2827,"1.0000","0.99990","0.99990" +"GO:0070918","production of small RNA involved in gene...",3,0,1.35,2828,"1.0000","0.99990","0.99990" +"GO:0007159","leukocyte cell-cell adhesion",6,2,2.69,1636,"0.8352","0.99990","0.99990" +"GO:0048259","regulation of receptor-mediated endocyto...",6,0,2.69,2829,"1.0000","0.99990","0.99990" +"GO:0032092","positive regulation of protein binding",5,1,2.24,2180,"0.9493","0.99992","0.99992" +"GO:0043112","receptor metabolic process",5,1,2.24,2181,"0.9493","0.99992","0.99992" +"GO:0006396","RNA processing",59,7,26.48,2625,"1.0000","0.99992","0.99992" +"GO:0042982","amyloid precursor protein metabolic proc...",4,1,1.8,1972,"0.9079","0.99994","0.99994" +"GO:0042987","amyloid precursor protein catabolic proc...",4,1,1.8,1973,"0.9079","0.99994","0.99994" +"GO:1902991","regulation of amyloid precursor protein ...",4,1,1.8,1974,"0.9079","0.99994","0.99994" +"GO:0018196","peptidyl-asparagine modification",7,0,3.14,2830,"1.0000","0.99994","0.99994" +"GO:0018279","protein N-linked glycosylation via aspar...",7,0,3.14,2831,"1.0000","0.99994","0.99994" +"GO:0002696","positive regulation of leukocyte activat...",3,1,1.35,1574,"0.8327","0.99995","0.99995" +"GO:0050867","positive regulation of cell activation",3,1,1.35,1575,"0.8327","0.99995","0.99995" +"GO:0051251","positive regulation of lymphocyte activa...",3,1,1.35,1576,"0.8327","0.99995","0.99995" +"GO:0140253","cell-cell fusion",3,1,1.35,1577,"0.8327","0.99995","0.99995" +"GO:0061355","Wnt protein secretion",3,0,1.35,2832,"1.0000","0.99995","0.99995" +"GO:0016071","mRNA metabolic process",34,4,15.26,2612,"1.0000","0.99996","0.99996" +"GO:0045445","myoblast differentiation",10,6,4.49,394,"0.2586","0.09915","0.99997" +"GO:0045661","regulation of myoblast differentiation",10,6,4.49,395,"0.2586","0.09915","0.99997" +"GO:0006397","mRNA processing",23,2,10.32,2607,"1.0000","0.99997","0.99997" +"GO:0008380","RNA splicing",20,2,8.98,2602,"0.9999","0.99997","0.99997" +"GO:0000375","RNA splicing, via transesterification re...",18,2,8.08,2591,"0.9997","0.99998","0.99998" +"GO:0000377","RNA splicing, via transesterification re...",18,2,8.08,2592,"0.9997","0.99998","0.99998" +"GO:0000398","mRNA splicing, via spliceosome",18,2,8.08,2593,"0.9997","0.99998","0.99998" +"GO:0008150","biological_process",2489,1117,1117,2833,"1.0000","1.00000","1.00000" +"GO:0010830","regulation of myotube differentiation",7,6,3.14,66,"0.0350","0.00678","1.00000" +"GO:0014896","muscle hypertrophy",7,7,3.14,14,"0.0036","0.00047","1.00000" +"GO:0014897","striated muscle hypertrophy",7,7,3.14,15,"0.0036","0.00047","1.00000" +"GO:0030168","platelet activation",8,7,3.59,34,"0.0177","0.00034","1.00000" +"GO:0034109","homotypic cell-cell adhesion",8,7,3.59,35,"0.0177","0.00034","1.00000" +"GO:0034440","lipid oxidation",8,7,3.59,36,"0.0177","0.00438","1.00000" +"GO:0043555","regulation of translation in response to...",3,3,1.35,193,"0.0902","0.00848","1.00000" +"GO:0043558","regulation of translational initiation i...",3,3,1.35,194,"0.0902","0.00848","1.00000" +"GO:0051149","positive regulation of muscle cell diffe...",7,6,3.14,67,"0.0350","0.00678","1.00000" +"GO:0051155","positive regulation of striated muscle c...",7,6,3.14,68,"0.0350","0.00678","1.00000" +"GO:0099188","postsynaptic cytoskeleton organization",3,3,1.35,195,"0.0902","0.00691","1.00000" diff --git a/GO_enrichment_output/contrast_phoretic_arresting_downregulated.csv b/GO_enrichment_output/contrast_phoretic_arresting_downregulated.csv index 282053f..7050e64 100644 --- a/GO_enrichment_output/contrast_phoretic_arresting_downregulated.csv +++ b/GO_enrichment_output/contrast_phoretic_arresting_downregulated.csv @@ -1,6 +1,1091 @@ "GO.ID","Term","Annotated","Significant","Expected","Rank in classicFisher","classicFisher","classicKS","elimKS" -"GO:0002521","leukocyte differentiation",5,3,0.72,48,"0.0241","0.0022","0.0022" -"GO:0050821","protein stabilization",6,3,0.87,86,"0.0430","0.0046","0.0046" -"GO:0051240","positive regulation of multicellular org...",61,17,8.84,8,"0.0044","0.0050","0.0050" -"GO:0043534","blood vessel endothelial cell migration",6,3,0.87,87,"0.0430","0.0051","0.0051" -"GO:0000045","autophagosome assembly",7,4,1.01,19,"0.0106","0.0055","0.0055" +"GO:0051240","positive regulation of multicellular org...",61,17,8.84,7,"0.0044","0.0050","0.0050" +"GO:0010468","regulation of gene expression",322,64,46.66,3,"0.0026","0.0055","0.0055" +"GO:0031323","regulation of cellular metabolic process",383,71,55.5,15,"0.0096","0.0076","0.0076" +"GO:0007154","cell communication",421,74,61.01,42,"0.0292","0.0081","0.0081" +"GO:0023052","signaling",417,73,60.43,52,"0.0331","0.0085","0.0085" +"GO:0070887","cellular response to chemical stimulus",115,24,16.66,58,"0.0358","0.0103","0.0103" +"GO:0016236","macroautophagy",14,7,2.03,2,"0.0017","0.0125","0.0125" +"GO:0007165","signal transduction",386,65,55.93,125,"0.0881","0.0127","0.0127" +"GO:0006914","autophagy",38,10,5.51,63,"0.0390","0.0138","0.0138" +"GO:0061919","process utilizing autophagic mechanism",38,10,5.51,64,"0.0390","0.0138","0.0138" +"GO:0006839","mitochondrial transport",20,2,2.9,839,"0.8096","0.0145","0.0145" +"GO:0050801","ion homeostasis",24,6,3.48,168,"0.1221","0.0177","0.0177" +"GO:0051171","regulation of nitrogen compound metaboli...",369,67,53.47,29,"0.0192","0.0184","0.0184" +"GO:0002520","immune system development",21,6,3.04,104,"0.0712","0.0197","0.0197" +"GO:0035556","intracellular signal transduction",174,35,25.21,36,"0.0217","0.0206","0.0206" +"GO:0023061","signal release",20,5,2.9,204,"0.1522","0.0206","0.0206" +"GO:0009889","regulation of biosynthetic process",302,58,43.76,14,"0.0093","0.0214","0.0214" +"GO:0050890","cognition",15,4,2.17,217,"0.1613","0.0214","0.0214" +"GO:0016197","endosomal transport",23,7,3.33,62,"0.0385","0.0217","0.0217" +"GO:0007264","small GTPase mediated signal transductio...",50,10,7.25,252,"0.1773","0.0221","0.0221" +"GO:0031326","regulation of cellular biosynthetic proc...",298,58,43.18,12,"0.0069","0.0234","0.0234" +"GO:0048878","chemical homeostasis",33,7,4.78,262,"0.1912","0.0244","0.0244" +"GO:2000112","regulation of cellular macromolecule bio...",291,57,42.17,11,"0.0065","0.0248","0.0248" +"GO:0050896","response to stimulus",625,98,90.57,248,"0.1763","0.0264","0.0264" +"GO:0030097","hemopoiesis",19,5,2.75,170,"0.1285","0.0270","0.0270" +"GO:0080090","regulation of primary metabolic process",374,66,54.2,59,"0.0364","0.0284","0.0284" +"GO:0001525","angiogenesis",13,5,1.88,44,"0.0294","0.0286","0.0286" +"GO:0051049","regulation of transport",70,11,10.14,493,"0.4361","0.0286","0.0286" +"GO:0007017","microtubule-based process",59,7,8.55,793,"0.7735","0.0294","0.0294" +"GO:0051259","protein complex oligomerization",17,3,2.46,534,"0.4564","0.0301","0.0301" +"GO:0007611","learning or memory",14,4,2.03,178,"0.1326","0.0304","0.0304" +"GO:0006997","nucleus organization",10,2,1.45,494,"0.4371","0.0321","0.0321" +"GO:0006470","protein dephosphorylation",31,8,4.49,99,"0.0684","0.0325","0.0325" +"GO:0031647","regulation of protein stability",13,5,1.88,45,"0.0294","0.0332","0.0332" +"GO:0046903","secretion",57,12,8.26,163,"0.1114","0.0346","0.0346" +"GO:0010556","regulation of macromolecule biosynthetic...",294,57,42.6,13,"0.0081","0.0358","0.0358" +"GO:0006351","transcription, DNA-templated",300,56,43.47,28,"0.0190","0.0367","0.0367" +"GO:0051050","positive regulation of transport",40,8,5.8,303,"0.2136","0.0400","0.0400" +"GO:0006810","transport",487,68,70.57,720,"0.6697","0.0412","0.0412" +"GO:0048534","hematopoietic or lymphoid organ developm...",20,5,2.9,205,"0.1522","0.0417","0.0417" +"GO:0007005","mitochondrion organization",29,6,4.2,321,"0.2352","0.0419","0.0419" +"GO:0055080","cation homeostasis",19,6,2.75,76,"0.0457","0.0434","0.0434" +"GO:0098771","inorganic ion homeostasis",19,6,2.75,77,"0.0457","0.0434","0.0434" +"GO:0006355","regulation of transcription, DNA-templat...",270,52,39.13,19,"0.0131","0.0442","0.0442" +"GO:0097659","nucleic acid-templated transcription",301,56,43.62,31,"0.0203","0.0455","0.0455" +"GO:0072507","divalent inorganic cation homeostasis",11,5,1.59,20,"0.0135","0.0467","0.0467" +"GO:0071310","cellular response to organic substance",92,17,13.33,240,"0.1679","0.0501","0.0501" +"GO:0042221","response to chemical",184,36,26.66,47,"0.0299","0.0504","0.0504" +"GO:0007018","microtubule-based movement",37,4,5.36,836,"0.8064","0.0508","0.0508" +"GO:0009893","positive regulation of metabolic process",132,25,19.13,126,"0.0885","0.0520","0.0520" +"GO:0043087","regulation of GTPase activity",29,5,4.2,471,"0.4135","0.0522","0.0522" +"GO:0051094","positive regulation of developmental pro...",57,15,8.26,18,"0.0128","0.0522","0.0522" +"GO:0019219","regulation of nucleobase-containing comp...",290,53,42.02,51,"0.0329","0.0524","0.0524" +"GO:0051716","cellular response to stimulus",525,82,76.08,306,"0.2199","0.0543","0.0543" +"GO:1903506","regulation of nucleic acid-templated tra...",271,52,39.27,23,"0.0141","0.0549","0.0549" +"GO:2001141","regulation of RNA biosynthetic process",271,52,39.27,24,"0.0141","0.0549","0.0549" +"GO:0016571","histone methylation",14,3,2.03,405,"0.3311","0.0556","0.0556" +"GO:0032774","RNA biosynthetic process",302,56,43.76,35,"0.0217","0.0558","0.0558" +"GO:0008219","cell death",95,15,13.77,463,"0.4016","0.0569","0.0569" +"GO:0009892","negative regulation of metabolic process",110,27,15.94,4,"0.0029","0.0595","0.0595" +"GO:0002790","peptide secretion",11,3,1.59,280,"0.2055","0.0619","0.0619" +"GO:0009306","protein secretion",11,3,1.59,281,"0.2055","0.0619","0.0619" +"GO:0048523","negative regulation of cellular process",193,39,27.97,25,"0.0146","0.0635","0.0635" +"GO:0044265","cellular macromolecule catabolic process",84,17,12.17,127,"0.0895","0.0638","0.0638" +"GO:0016570","histone modification",48,10,6.96,196,"0.1461","0.0640","0.0640" +"GO:0035220","wing disc development",10,2,1.45,495,"0.4371","0.0641","0.0641" +"GO:0001568","blood vessel development",17,6,2.46,38,"0.0268","0.0647","0.0647" +"GO:0048514","blood vessel morphogenesis",17,6,2.46,39,"0.0268","0.0647","0.0647" +"GO:1901700","response to oxygen-containing compound",62,10,8.98,470,"0.4098","0.0651","0.0651" +"GO:0051234","establishment of localization",501,71,72.6,675,"0.6156","0.0651","0.0651" +"GO:0045055","regulated exocytosis",12,1,1.74,878,"0.8480","0.0653","0.0653" +"GO:0051046","regulation of secretion",19,3,2.75,601,"0.5343","0.0659","0.0659" +"GO:0002694","regulation of leukocyte activation",10,2,1.45,496,"0.4371","0.0684","0.0684" +"GO:0050865","regulation of cell activation",10,2,1.45,497,"0.4371","0.0684","0.0684" +"GO:1902533","positive regulation of intracellular sig...",30,8,4.35,88,"0.0577","0.0688","0.0688" +"GO:0006869","lipid transport",20,3,2.9,626,"0.5708","0.0690","0.0690" +"GO:0051252","regulation of RNA metabolic process",281,52,40.72,41,"0.0278","0.0698","0.0698" +"GO:0055065","metal ion homeostasis",15,6,2.17,22,"0.0140","0.0701","0.0701" +"GO:0051260","protein homooligomerization",15,2,2.17,707,"0.6625","0.0707","0.0707" +"GO:0070647","protein modification by small protein co...",80,15,11.59,246,"0.1721","0.0718","0.0718" +"GO:0007265","Ras protein signal transduction",29,6,4.2,322,"0.2352","0.0720","0.0720" +"GO:0010876","lipid localization",25,4,3.62,577,"0.5005","0.0732","0.0732" +"GO:0051223","regulation of protein transport",20,4,2.9,400,"0.3274","0.0737","0.0737" +"GO:0090087","regulation of peptide transport",20,4,2.9,401,"0.3274","0.0737","0.0737" +"GO:0051247","positive regulation of protein metabolic...",66,15,9.56,75,"0.0457","0.0745","0.0745" +"GO:0006417","regulation of translation",18,5,2.61,153,"0.1067","0.0746","0.0746" +"GO:0040013","negative regulation of locomotion",12,5,1.74,32,"0.0205","0.0760","0.0760" +"GO:0010033","response to organic substance",125,24,18.11,115,"0.0828","0.0769","0.0769" +"GO:0018022","peptidyl-lysine methylation",11,3,1.59,282,"0.2055","0.0770","0.0770" +"GO:0034968","histone lysine methylation",11,3,1.59,283,"0.2055","0.0770","0.0770" +"GO:0014070","response to organic cyclic compound",45,7,6.52,548,"0.4838","0.0806","0.0806" +"GO:0006605","protein targeting",23,3,3.33,716,"0.6691","0.0818","0.0818" +"GO:0001505","regulation of neurotransmitter levels",22,6,3.19,118,"0.0865","0.0818","0.0818" +"GO:0044260","cellular macromolecule metabolic process",842,137,122.01,60,"0.0367","0.0834","0.0834" +"GO:0032270","positive regulation of cellular protein ...",64,15,9.27,57,"0.0356","0.0837","0.0837" +"GO:0031325","positive regulation of cellular metaboli...",122,24,17.68,98,"0.0658","0.0859","0.0859" +"GO:0032940","secretion by cell",49,9,7.1,355,"0.2725","0.0874","0.0874" +"GO:0042147","retrograde transport, endosome to Golgi",13,5,1.88,46,"0.0294","0.0894","0.0894" +"GO:0050793","regulation of developmental process",110,27,15.94,5,"0.0029","0.0905","0.0905" +"GO:0043900","regulation of multi-organism process",19,4,2.75,378,"0.2923","0.0912","0.0912" +"GO:0045137","development of primary sexual characteri...",13,3,1.88,366,"0.2885","0.0960","0.0960" +"GO:0001944","vasculature development",18,6,2.61,54,"0.0354","0.0975","0.0975" +"GO:0006402","mRNA catabolic process",21,6,3.04,105,"0.0712","0.0981","0.0981" +"GO:0030099","myeloid cell differentiation",11,3,1.59,284,"0.2055","0.0987","0.0987" +"GO:0006513","protein monoubiquitination",11,5,1.59,21,"0.0135","0.0995","0.0995" +"GO:1901605","alpha-amino acid metabolic process",16,2,2.32,728,"0.6978","0.1008","0.1008" +"GO:0009056","catabolic process",188,40,27.24,10,"0.0054","0.1014","0.1014" +"GO:0000956","nuclear-transcribed mRNA catabolic proce...",16,4,2.32,266,"0.1920","0.1032","0.1032" +"GO:0010604","positive regulation of macromolecule met...",119,23,17.24,116,"0.0832","0.1033","0.1033" +"GO:0007033","vacuole organization",16,4,2.32,267,"0.1920","0.1042","0.1042" +"GO:0006873","cellular ion homeostasis",14,4,2.03,179,"0.1326","0.1058","0.1058" +"GO:0030003","cellular cation homeostasis",14,4,2.03,180,"0.1326","0.1058","0.1058" +"GO:0045321","leukocyte activation",19,3,2.75,602,"0.5343","0.1063","0.1063" +"GO:0051173","positive regulation of nitrogen compound...",113,22,16.37,117,"0.0834","0.1063","0.1063" +"GO:0016054","organic acid catabolic process",14,5,2.03,65,"0.0405","0.1068","0.1068" +"GO:0046395","carboxylic acid catabolic process",14,5,2.03,66,"0.0405","0.1068","0.1068" +"GO:0010975","regulation of neuron projection developm...",22,7,3.19,48,"0.0304","0.1089","0.1089" +"GO:0065007","biological regulation",873,151,126.5,1,"0.0017","0.0023","0.1100" +"GO:0071702","organic substance transport",157,24,22.75,482,"0.4210","0.1106","0.1106" +"GO:0051222","positive regulation of protein transport",11,3,1.59,285,"0.2055","0.1113","0.1113" +"GO:1904951","positive regulation of establishment of ...",11,3,1.59,286,"0.2055","0.1113","0.1113" +"GO:0007548","sex differentiation",16,3,2.32,473,"0.4154","0.1115","0.1115" +"GO:0034645","cellular macromolecule biosynthetic proc...",432,75,62.6,61,"0.0368","0.1117","0.1117" +"GO:0016569","covalent chromatin modification",51,11,7.39,160,"0.1088","0.1118","0.1118" +"GO:0016482","cytosolic transport",19,6,2.75,78,"0.0457","0.1119","0.1119" +"GO:0048515","spermatid differentiation",15,3,2.17,440,"0.3735","0.1123","0.1123" +"GO:0055082","cellular chemical homeostasis",16,5,2.32,100,"0.0693","0.1125","0.1125" +"GO:0031344","regulation of cell projection organizati...",39,10,5.65,80,"0.0459","0.1146","0.1146" +"GO:0120035","regulation of plasma membrane bounded ce...",39,10,5.65,81,"0.0459","0.1146","0.1146" +"GO:0046578","regulation of Ras protein signal transdu...",26,6,3.77,227,"0.1636","0.1161","0.1161" +"GO:0055074","calcium ion homeostasis",10,4,1.45,68,"0.0443","0.1170","0.1170" +"GO:0071407","cellular response to organic cyclic comp...",30,3,4.35,875,"0.8323","0.1171","0.1171" +"GO:0071396","cellular response to lipid",34,3,4.93,958,"0.8902","0.1195","0.1195" +"GO:0034248","regulation of cellular amide metabolic p...",19,5,2.75,171,"0.1285","0.1198","0.1198" +"GO:0098657","import into cell",36,6,5.22,484,"0.4248","0.1203","0.1203" +"GO:0050794","regulation of cellular process",796,131,115.35,43,"0.0292","0.0188","0.1212" +"GO:0016567","protein ubiquitination",59,10,8.55,423,"0.3473","0.1225","0.1225" +"GO:0031346","positive regulation of cell projection o...",15,5,2.17,85,"0.0538","0.1228","0.1228" +"GO:0050773","regulation of dendrite development",12,4,1.74,110,"0.0826","0.1253","0.1253" +"GO:0008406","gonad development",11,2,1.59,550,"0.4886","0.1256","0.1256" +"GO:0009725","response to hormone",53,10,7.68,313,"0.2295","0.1256","0.1256" +"GO:0006366","transcription by RNA polymerase II",98,18,14.2,231,"0.1656","0.1290","0.1290" +"GO:0007283","spermatogenesis",26,5,3.77,395,"0.3213","0.1290","0.1290" +"GO:2000026","regulation of multicellular organismal d...",79,19,11.45,26,"0.0147","0.1291","0.1291" +"GO:0016358","dendrite development",16,5,2.32,101,"0.0693","0.1296","0.1296" +"GO:0010631","epithelial cell migration",13,4,1.88,149,"0.1063","0.1325","0.1325" +"GO:0032386","regulation of intracellular transport",22,4,3.19,456,"0.3978","0.1325","0.1325" +"GO:0048519","negative regulation of biological proces...",231,44,33.47,37,"0.0266","0.1330","0.1330" +"GO:0044248","cellular catabolic process",165,35,23.91,16,"0.0096","0.1360","0.1360" +"GO:0010976","positive regulation of neuron projection...",11,4,1.59,90,"0.0619","0.1369","0.1369" +"GO:0043401","steroid hormone mediated signaling pathw...",17,3,2.46,535,"0.4564","0.1382","0.1382" +"GO:0043414","macromolecule methylation",30,5,4.35,527,"0.4440","0.1383","0.1383" +"GO:0032502","developmental process",300,48,43.47,328,"0.2365","0.1384","0.1384" +"GO:0072358","cardiovascular system development",19,6,2.75,79,"0.0457","0.1389","0.1389" +"GO:0009719","response to endogenous stimulus",72,14,10.43,201,"0.1485","0.1413","0.1413" +"GO:0018205","peptidyl-lysine modification",29,4,4.2,678,"0.6239","0.1414","0.1414" +"GO:0012501","programmed cell death",82,14,11.88,382,"0.2937","0.1418","0.1418" +"GO:0001667","ameboidal-type cell migration",17,4,2.46,308,"0.2243","0.1419","0.1419" +"GO:0043903","regulation of symbiosis, encompassing mu...",11,1,1.59,858,"0.8220","0.1442","0.1442" +"GO:0009059","macromolecule biosynthetic process",436,75,63.18,74,"0.0448","0.1451","0.1451" +"GO:0045597","positive regulation of cell differentiat...",38,9,5.51,123,"0.0876","0.1452","0.1452" +"GO:0010605","negative regulation of macromolecule met...",105,24,15.22,17,"0.0124","0.1454","0.1454" +"GO:0001817","regulation of cytokine production",17,4,2.46,309,"0.2243","0.1461","0.1461" +"GO:0048469","cell maturation",12,5,1.74,33,"0.0205","0.1495","0.1495" +"GO:0042493","response to drug",40,8,5.8,304,"0.2136","0.1508","0.1508" +"GO:0010821","regulation of mitochondrion organization",10,1,1.45,803,"0.7917","0.1524","0.1524" +"GO:0032388","positive regulation of intracellular tra...",10,2,1.45,498,"0.4371","0.1524","0.1524" +"GO:0009895","negative regulation of catabolic process",14,3,2.03,406,"0.3311","0.1538","0.1538" +"GO:0002252","immune effector process",24,2,3.48,933,"0.8830","0.1539","0.1539" +"GO:0031401","positive regulation of protein modificat...",47,12,6.81,49,"0.0312","0.1546","0.1546" +"GO:0006897","endocytosis",31,5,4.49,545,"0.4741","0.1560","0.1560" +"GO:0070201","regulation of establishment of protein l...",21,4,3.04,433,"0.3626","0.1571","0.1571" +"GO:0097193","intrinsic apoptotic signaling pathway",11,4,1.59,91,"0.0619","0.1605","0.1605" +"GO:0044703","multi-organism reproductive process",60,9,8.69,588,"0.5120","0.1630","0.1630" +"GO:0001775","cell activation",22,3,3.19,699,"0.6383","0.1638","0.1638" +"GO:0050789","regulation of biological process",838,143,121.43,9,"0.0047","0.0065","0.1652" +"GO:0002165","instar larval or pupal development",13,1,1.88,913,"0.8701","0.1659","0.1659" +"GO:0006401","RNA catabolic process",26,6,3.77,228,"0.1636","0.1667","0.1667" +"GO:1903530","regulation of secretion by cell",15,2,2.17,708,"0.6625","0.1670","0.1670" +"GO:0048569","post-embryonic animal organ development",13,2,1.88,639,"0.5821","0.1691","0.1691" +"GO:0031324","negative regulation of cellular metaboli...",85,20,12.32,27,"0.0159","0.1692","0.1692" +"GO:0042391","regulation of membrane potential",10,2,1.45,499,"0.4371","0.1698","0.1698" +"GO:1902531","regulation of intracellular signal trans...",84,18,12.17,83,"0.0513","0.1713","0.1713" +"GO:0048870","cell motility",54,12,7.83,108,"0.0804","0.1716","0.1716" +"GO:0051674","localization of cell",54,12,7.83,109,"0.0804","0.1716","0.1716" +"GO:0030336","negative regulation of cell migration",11,4,1.59,92,"0.0619","0.1737","0.1737" +"GO:0051271","negative regulation of cellular componen...",11,4,1.59,93,"0.0619","0.1737","0.1737" +"GO:2000146","negative regulation of cell motility",11,4,1.59,94,"0.0619","0.1737","0.1737" +"GO:0021700","developmental maturation",16,6,2.32,30,"0.0197","0.1744","0.1744" +"GO:1902532","negative regulation of intracellular sig...",22,6,3.19,119,"0.0865","0.1754","0.1754" +"GO:1903829","positive regulation of cellular protein ...",14,3,2.03,407,"0.3311","0.1765","0.1765" +"GO:0016042","lipid catabolic process",28,7,4.06,137,"0.0987","0.1774","0.1774" +"GO:0022414","reproductive process",89,15,12.9,387,"0.3023","0.1779","0.1779" +"GO:0010563","negative regulation of phosphorus metabo...",18,6,2.61,55,"0.0354","0.1781","0.1781" +"GO:0045936","negative regulation of phosphate metabol...",18,6,2.61,56,"0.0354","0.1781","0.1781" +"GO:0009952","anterior/posterior pattern specification",12,4,1.74,111,"0.0826","0.1781","0.1781" +"GO:0016477","cell migration",50,11,7.25,136,"0.0973","0.1785","0.1785" +"GO:0007266","Rho protein signal transduction",19,5,2.75,172,"0.1285","0.1786","0.1786" +"GO:1902115","regulation of organelle assembly",16,4,2.32,268,"0.1920","0.1792","0.1792" +"GO:0099504","synaptic vesicle cycle",16,3,2.32,474,"0.4154","0.1804","0.1804" +"GO:0050769","positive regulation of neurogenesis",19,5,2.75,173,"0.1285","0.1826","0.1826" +"GO:0051962","positive regulation of nervous system de...",19,5,2.75,174,"0.1285","0.1826","0.1826" +"GO:0072331","signal transduction by p53 class mediato...",10,4,1.45,69,"0.0443","0.1835","0.1835" +"GO:0010498","proteasomal protein catabolic process",32,5,4.64,581,"0.5037","0.1837","0.1837" +"GO:0007167","enzyme linked receptor protein signaling...",44,9,6.38,249,"0.1765","0.1838","0.1838" +"GO:0006464","cellular protein modification process",416,69,60.28,143,"0.1033","0.1841","0.1841" +"GO:0036211","protein modification process",416,69,60.28,144,"0.1033","0.1841","0.1841" +"GO:0006996","organelle organization",281,39,40.72,703,"0.6512","0.1841","0.1841" +"GO:0070997","neuron death",11,3,1.59,287,"0.2055","0.1846","0.1846" +"GO:1901214","regulation of neuron death",11,3,1.59,288,"0.2055","0.1846","0.1846" +"GO:0006626","protein targeting to mitochondrion",13,1,1.88,914,"0.8701","0.1896","0.1896" +"GO:0070585","protein localization to mitochondrion",13,1,1.88,915,"0.8701","0.1896","0.1896" +"GO:0072655","establishment of protein localization to...",13,1,1.88,916,"0.8701","0.1896","0.1896" +"GO:0019953","sexual reproduction",56,8,8.11,635,"0.5769","0.1907","0.1907" +"GO:0032268","regulation of cellular protein metabolic...",117,22,16.95,164,"0.1122","0.1908","0.1908" +"GO:0060341","regulation of cellular localization",43,9,6.23,215,"0.1594","0.1923","0.1923" +"GO:0048856","anatomical structure development",278,42,40.28,466,"0.4064","0.1943","0.1943" +"GO:0000226","microtubule cytoskeleton organization",26,4,3.77,595,"0.5331","0.1945","0.1945" +"GO:0051056","regulation of small GTPase mediated sign...",32,6,4.64,391,"0.3145","0.1954","0.1954" +"GO:1901362","organic cyclic compound biosynthetic pro...",366,60,53.04,200,"0.1471","0.1958","0.1958" +"GO:0001666","response to hypoxia",10,4,1.45,70,"0.0443","0.1962","0.1962" +"GO:0036293","response to decreased oxygen levels",10,4,1.45,71,"0.0443","0.1962","0.1962" +"GO:0070482","response to oxygen levels",10,4,1.45,72,"0.0443","0.1962","0.1962" +"GO:0046486","glycerolipid metabolic process",41,11,5.94,40,"0.0271","0.1966","0.1966" +"GO:0006793","phosphorus metabolic process",337,57,48.83,138,"0.1004","0.1971","0.1971" +"GO:0006796","phosphate-containing compound metabolic ...",337,57,48.83,139,"0.1004","0.1971","0.1971" +"GO:0045666","positive regulation of neuron differenti...",15,4,2.17,218,"0.1613","0.1977","0.1977" +"GO:1901701","cellular response to oxygen-containing c...",40,5,5.8,747,"0.7092","0.1992","0.1992" +"GO:0044257","cellular protein catabolic process",56,11,8.11,250,"0.1773","0.2011","0.2011" +"GO:0051603","proteolysis involved in cellular protein...",56,11,8.11,251,"0.1773","0.2011","0.2011" +"GO:0032446","protein modification by small protein co...",63,10,9.13,489,"0.4307","0.2027","0.2027" +"GO:0051235","maintenance of location",13,4,1.88,150,"0.1063","0.2039","0.2039" +"GO:0002443","leukocyte mediated immunity",13,1,1.88,917,"0.8701","0.2057","0.2057" +"GO:0051336","regulation of hydrolase activity",54,8,7.83,593,"0.5329","0.2062","0.2062" +"GO:0010942","positive regulation of cell death",23,5,3.33,316,"0.2322","0.2088","0.2088" +"GO:0007286","spermatid development",14,2,2.03,680,"0.6240","0.2089","0.2089" +"GO:0006468","protein phosphorylation",195,31,28.26,390,"0.3108","0.2093","0.2093" +"GO:0051129","negative regulation of cellular componen...",45,8,6.52,399,"0.3233","0.2093","0.2093" +"GO:0051301","cell division",28,2,4.06,996,"0.9295","0.2103","0.2103" +"GO:1902904","negative regulation of supramolecular fi...",14,1,2.03,938,"0.8890","0.2111","0.2111" +"GO:0010769","regulation of cell morphogenesis involve...",15,3,2.17,441,"0.3735","0.2117","0.2117" +"GO:0045862","positive regulation of proteolysis",17,2,2.46,755,"0.7300","0.2120","0.2120" +"GO:0022412","cellular process involved in reproductio...",40,4,5.8,906,"0.8531","0.2122","0.2122" +"GO:0008088","axo-dendritic transport",10,3,1.45,233,"0.1664","0.2131","0.2131" +"GO:0009144","purine nucleoside triphosphate metabolic...",10,2,1.45,500,"0.4371","0.2131","0.2131" +"GO:0009199","ribonucleoside triphosphate metabolic pr...",10,1,1.45,804,"0.7917","0.2131","0.2131" +"GO:0045807","positive regulation of endocytosis",10,2,1.45,501,"0.4371","0.2131","0.2131" +"GO:0090132","epithelium migration",14,4,2.03,181,"0.1326","0.2136","0.2136" +"GO:0060491","regulation of cell projection assembly",18,4,2.61,342,"0.2578","0.2141","0.2141" +"GO:0120032","regulation of plasma membrane bounded ce...",18,4,2.61,343,"0.2578","0.2141","0.2141" +"GO:0016310","phosphorylation",221,37,32.02,259,"0.1827","0.2150","0.2150" +"GO:0007568","aging",22,4,3.19,457,"0.3978","0.2168","0.2168" +"GO:0033157","regulation of intracellular protein tran...",14,3,2.03,408,"0.3311","0.2173","0.2173" +"GO:0048609","multicellular organismal reproductive pr...",59,7,8.55,794,"0.7735","0.2178","0.2178" +"GO:0001816","cytokine production",18,4,2.61,344,"0.2578","0.2199","0.2199" +"GO:0044087","regulation of cellular component biogene...",56,10,8.11,362,"0.2866","0.2200","0.2200" +"GO:0042742","defense response to bacterium",10,2,1.45,502,"0.4371","0.2205","0.2205" +"GO:0000165","MAPK cascade",24,5,3.48,346,"0.2612","0.2217","0.2217" +"GO:0023014","signal transduction by protein phosphory...",24,5,3.48,347,"0.2612","0.2217","0.2217" +"GO:0043408","regulation of MAPK cascade",21,5,3.04,254,"0.1775","0.2231","0.2231" +"GO:1901699","cellular response to nitrogen compound",14,2,2.03,681,"0.6240","0.2249","0.2249" +"GO:0010639","negative regulation of organelle organiz...",24,5,3.48,348,"0.2612","0.2253","0.2253" +"GO:0006631","fatty acid metabolic process",18,5,2.61,154,"0.1067","0.2261","0.2261" +"GO:0007169","transmembrane receptor protein tyrosine ...",22,4,3.19,458,"0.3978","0.2264","0.2264" +"GO:0033993","response to lipid",50,5,7.25,929,"0.8713","0.2286","0.2286" +"GO:0015931","nucleobase-containing compound transport",11,2,1.59,551,"0.4886","0.2287","0.2287" +"GO:0016311","dephosphorylation",48,9,6.96,339,"0.2521","0.2291","0.2291" +"GO:0031398","positive regulation of protein ubiquitin...",11,3,1.59,289,"0.2055","0.2292","0.2292" +"GO:1903322","positive regulation of protein modificat...",11,3,1.59,290,"0.2055","0.2292","0.2292" +"GO:0043632","modification-dependent macromolecule cat...",51,11,7.39,161,"0.1088","0.2294","0.2294" +"GO:0006479","protein methylation",21,5,3.04,255,"0.1775","0.2300","0.2300" +"GO:0008213","protein alkylation",21,5,3.04,256,"0.1775","0.2300","0.2300" +"GO:0032880","regulation of protein localization",41,8,5.94,320,"0.2344","0.2303","0.2303" +"GO:0006875","cellular metal ion homeostasis",12,4,1.74,112,"0.0826","0.2304","0.2304" +"GO:0055085","transmembrane transport",207,28,30,726,"0.6923","0.2313","0.2313" +"GO:0007552","metamorphosis",10,1,1.45,805,"0.7917","0.2318","0.2318" +"GO:0007560","imaginal disc morphogenesis",10,1,1.45,806,"0.7917","0.2318","0.2318" +"GO:0048563","post-embryonic animal organ morphogenesi...",10,1,1.45,807,"0.7917","0.2318","0.2318" +"GO:0048707","instar larval or pupal morphogenesis",10,1,1.45,808,"0.7917","0.2318","0.2318" +"GO:0032984","protein-containing complex disassembly",19,5,2.75,175,"0.1285","0.2321","0.2321" +"GO:0034654","nucleobase-containing compound biosynthe...",341,58,49.41,128,"0.0899","0.2324","0.2324" +"GO:0090150","establishment of protein localization to...",11,3,1.59,291,"0.2055","0.2335","0.2335" +"GO:0006357","regulation of transcription by RNA polym...",91,17,13.19,214,"0.1566","0.2347","0.2347" +"GO:0050790","regulation of catalytic activity",79,12,11.45,547,"0.4788","0.2377","0.2377" +"GO:0019318","hexose metabolic process",15,5,2.17,86,"0.0538","0.2379","0.2379" +"GO:0007166","cell surface receptor signaling pathway",111,20,16.08,245,"0.1713","0.2391","0.2391" +"GO:0061572","actin filament bundle organization",12,2,1.74,610,"0.5370","0.2392","0.2392" +"GO:0043547","positive regulation of GTPase activity",20,2,2.9,840,"0.8096","0.2403","0.2403" +"GO:0007269","neurotransmitter secretion",14,2,2.03,682,"0.6240","0.2421","0.2421" +"GO:0099643","signal release from synapse",14,2,2.03,683,"0.6240","0.2421","0.2421" +"GO:0006325","chromatin organization",80,13,11.59,439,"0.3723","0.2427","0.2427" +"GO:0043412","macromolecule modification",444,72,64.34,190,"0.1407","0.2443","0.2443" +"GO:0035023","regulation of Rho protein signal transdu...",17,5,2.46,120,"0.0869","0.2447","0.2447" +"GO:0001934","positive regulation of protein phosphory...",29,7,4.2,165,"0.1147","0.2454","0.2454" +"GO:0006950","response to stress",220,32,31.88,590,"0.5229","0.2462","0.2462" +"GO:0051494","negative regulation of cytoskeleton orga...",10,1,1.45,809,"0.7917","0.2478","0.2478" +"GO:0060627","regulation of vesicle-mediated transport",24,4,3.48,541,"0.4670","0.2526","0.2526" +"GO:0043244","regulation of protein complex disassembl...",10,3,1.45,234,"0.1664","0.2529","0.2529" +"GO:0015711","organic anion transport",26,3,3.77,780,"0.7500","0.2532","0.2532" +"GO:0010562","positive regulation of phosphorus metabo...",33,8,4.78,131,"0.0932","0.2536","0.2536" +"GO:0045937","positive regulation of phosphate metabol...",33,8,4.78,132,"0.0932","0.2536","0.2536" +"GO:0006644","phospholipid metabolic process",49,12,7.1,67,"0.0421","0.2588","0.2588" +"GO:0044282","small molecule catabolic process",19,5,2.75,176,"0.1285","0.2588","0.2588" +"GO:0010647","positive regulation of cell communicatio...",61,11,8.84,350,"0.2617","0.2589","0.2589" +"GO:0023056","positive regulation of signaling",61,11,8.84,351,"0.2617","0.2589","0.2589" +"GO:0007276","gamete generation",48,6,6.96,750,"0.7162","0.2603","0.2603" +"GO:0010629","negative regulation of gene expression",80,18,11.59,53,"0.0331","0.2610","0.2610" +"GO:1901987","regulation of cell cycle phase transitio...",10,3,1.45,235,"0.1664","0.2630","0.2630" +"GO:0022411","cellular component disassembly",23,5,3.33,317,"0.2322","0.2634","0.2634" +"GO:0009057","macromolecule catabolic process",104,20,15.07,148,"0.1058","0.2656","0.2656" +"GO:0000070","mitotic sister chromatid segregation",13,4,1.88,151,"0.1063","0.2657","0.2657" +"GO:0019932","second-messenger-mediated signaling",10,2,1.45,503,"0.4371","0.2660","0.2660" +"GO:0010941","regulation of cell death",68,10,9.85,600,"0.5337","0.2666","0.2666" +"GO:0031330","negative regulation of cellular cataboli...",12,3,1.74,330,"0.2465","0.2669","0.2669" +"GO:1903827","regulation of cellular protein localizat...",24,5,3.48,349,"0.2612","0.2679","0.2679" +"GO:0030154","cell differentiation",179,28,25.94,431,"0.3576","0.2682","0.2682" +"GO:0098542","defense response to other organism",17,2,2.46,756,"0.7300","0.2685","0.2685" +"GO:0048232","male gamete generation",29,5,4.2,472,"0.4135","0.2687","0.2687" +"GO:0010608","posttranscriptional regulation of gene e...",34,6,4.93,436,"0.3695","0.2687","0.2687" +"GO:0043410","positive regulation of MAPK cascade",16,4,2.32,269,"0.1920","0.2690","0.2690" +"GO:0009416","response to light stimulus",14,3,2.03,409,"0.3311","0.2694","0.2694" +"GO:0051130","positive regulation of cellular componen...",63,15,9.13,50,"0.0312","0.2697","0.2697" +"GO:0051047","positive regulation of secretion",12,3,1.74,331,"0.2465","0.2713","0.2713" +"GO:0000902","cell morphogenesis",54,8,7.83,594,"0.5329","0.2736","0.2736" +"GO:0010506","regulation of autophagy",15,4,2.17,219,"0.1613","0.2738","0.2738" +"GO:0043161","proteasome-mediated ubiquitin-dependent ...",26,4,3.77,596,"0.5331","0.2746","0.2746" +"GO:2000241","regulation of reproductive process",13,3,1.88,367,"0.2885","0.2779","0.2779" +"GO:0048869","cellular developmental process",186,30,26.95,361,"0.2847","0.2791","0.2791" +"GO:0051704","multi-organism process",105,14,15.22,721,"0.6784","0.2795","0.2795" +"GO:0018130","heterocycle biosynthetic process",358,59,51.88,189,"0.1393","0.2803","0.2803" +"GO:0072524","pyridine-containing compound metabolic p...",11,3,1.59,292,"0.2055","0.2809","0.2809" +"GO:0016043","cellular component organization",392,55,56.8,698,"0.6381","0.2812","0.2812" +"GO:0031328","positive regulation of cellular biosynth...",63,11,9.13,383,"0.2988","0.2814","0.2814" +"GO:0032259","methylation",36,5,5.22,673,"0.6143","0.2822","0.2822" +"GO:0042326","negative regulation of phosphorylation",16,5,2.32,102,"0.0693","0.2855","0.2855" +"GO:2001020","regulation of response to DNA damage sti...",12,3,1.74,332,"0.2465","0.2859","0.2859" +"GO:0006820","anion transport",38,4,5.51,870,"0.8231","0.2864","0.2864" +"GO:0008202","steroid metabolic process",15,1,2.17,966,"0.9052","0.2866","0.2866" +"GO:0006813","potassium ion transport",14,2,2.03,684,"0.6240","0.2870","0.2870" +"GO:0019438","aromatic compound biosynthetic process",352,59,51.01,162,"0.1093","0.2872","0.2872" +"GO:0000003","reproduction",96,17,13.91,305,"0.2175","0.2874","0.2874" +"GO:0051650","establishment of vesicle localization",11,2,1.59,552,"0.4886","0.2877","0.2877" +"GO:0007178","transmembrane receptor protein serine/th...",25,5,3.62,375,"0.2910","0.2881","0.2881" +"GO:0051241","negative regulation of multicellular org...",38,9,5.51,124,"0.0876","0.2888","0.2888" +"GO:0051345","positive regulation of hydrolase activit...",32,3,4.64,908,"0.8639","0.2906","0.2906" +"GO:0098813","nuclear chromosome segregation",21,6,3.04,106,"0.0712","0.2919","0.2919" +"GO:0044242","cellular lipid catabolic process",20,5,2.9,206,"0.1522","0.2920","0.2920" +"GO:0007369","gastrulation",15,1,2.17,967,"0.9052","0.2926","0.2926" +"GO:0045926","negative regulation of growth",13,2,1.88,640,"0.5821","0.2958","0.2958" +"GO:0006836","neurotransmitter transport",28,3,4.06,827,"0.7945","0.2961","0.2961" +"GO:0051640","organelle localization",36,9,5.22,95,"0.0655","0.2968","0.2968" +"GO:0033043","regulation of organelle organization",76,15,11.01,169,"0.1256","0.2983","0.2983" +"GO:0097305","response to alcohol",21,1,3.04,1021,"0.9632","0.2990","0.2990" +"GO:0031399","regulation of protein modification proce...",79,16,11.45,135,"0.0971","0.3011","0.3011" +"GO:0010256","endomembrane system organization",30,5,4.35,528,"0.4440","0.3017","0.3017" +"GO:0000819","sister chromatid segregation",18,5,2.61,155,"0.1067","0.3032","0.3032" +"GO:0006812","cation transport",77,12,11.16,524,"0.4409","0.3067","0.3067" +"GO:0048585","negative regulation of response to stimu...",69,12,10,377,"0.2914","0.3071","0.3071" +"GO:0048812","neuron projection morphogenesis",36,6,5.22,485,"0.4248","0.3087","0.3087" +"GO:0048858","cell projection morphogenesis",36,6,5.22,486,"0.4248","0.3087","0.3087" +"GO:0120039","plasma membrane bounded cell projection ...",36,6,5.22,487,"0.4248","0.3087","0.3087" +"GO:0017144","drug metabolic process",39,6,5.65,583,"0.5063","0.3128","0.3128" +"GO:0019220","regulation of phosphate metabolic proces...",59,12,8.55,185,"0.1355","0.3128","0.3128" +"GO:0051174","regulation of phosphorus metabolic proce...",59,12,8.55,186,"0.1355","0.3128","0.3128" +"GO:0009891","positive regulation of biosynthetic proc...",66,11,9.56,427,"0.3567","0.3131","0.3131" +"GO:1901657","glycosyl compound metabolic process",11,0,1.59,1039,"1.0000","0.3131","0.3131" +"GO:0090130","tissue migration",15,4,2.17,220,"0.1613","0.3135","0.3135" +"GO:0031329","regulation of cellular catabolic process",41,5,5.94,773,"0.7301","0.3144","0.3144" +"GO:0015849","organic acid transport",20,2,2.9,841,"0.8096","0.3146","0.3146" +"GO:0046942","carboxylic acid transport",20,2,2.9,842,"0.8096","0.3146","0.3146" +"GO:0006915","apoptotic process",77,12,11.16,525,"0.4409","0.3204","0.3204" +"GO:0006354","DNA-templated transcription, elongation",10,2,1.45,504,"0.4371","0.3206","0.3206" +"GO:0043405","regulation of MAP kinase activity",10,3,1.45,236,"0.1664","0.3206","0.3206" +"GO:0006928","movement of cell or subcellular componen...",103,17,14.93,394,"0.3172","0.3210","0.3210" +"GO:0010648","negative regulation of cell communicatio...",53,11,7.68,183,"0.1340","0.3240","0.3240" +"GO:0023057","negative regulation of signaling",53,11,7.68,184,"0.1340","0.3240","0.3240" +"GO:0032870","cellular response to hormone stimulus",35,5,5.07,662,"0.5880","0.3244","0.3244" +"GO:0070925","organelle assembly",55,12,7.97,129,"0.0900","0.3259","0.3259" +"GO:0035967","cellular response to topologically incor...",13,2,1.88,641,"0.5821","0.3264","0.3264" +"GO:0031175","neuron projection development",49,10,7.1,222,"0.1613","0.3272","0.3272" +"GO:0006497","protein lipidation",16,3,2.32,475,"0.4154","0.3295","0.3295" +"GO:0042158","lipoprotein biosynthetic process",16,3,2.32,476,"0.4154","0.3295","0.3295" +"GO:0009896","positive regulation of catabolic process",20,3,2.9,627,"0.5708","0.3300","0.3300" +"GO:0016579","protein deubiquitination",20,5,2.9,207,"0.1522","0.3318","0.3318" +"GO:0070646","protein modification by small protein re...",20,5,2.9,208,"0.1522","0.3318","0.3318" +"GO:0042327","positive regulation of phosphorylation",31,7,4.49,203,"0.1507","0.3324","0.3324" +"GO:0034762","regulation of transmembrane transport",16,4,2.32,270,"0.1920","0.3335","0.3335" +"GO:0000904","cell morphogenesis involved in different...",41,7,5.94,448,"0.3828","0.3342","0.3342" +"GO:0005996","monosaccharide metabolic process",17,5,2.46,121,"0.0869","0.3344","0.3344" +"GO:0007186","G protein-coupled receptor signaling pat...",61,7,8.84,832,"0.8030","0.3344","0.3344" +"GO:0043933","protein-containing complex subunit organ...",93,16,13.48,353,"0.2646","0.3345","0.3345" +"GO:0071705","nitrogen compound transport",134,21,19.42,444,"0.3828","0.3368","0.3368" +"GO:0007281","germ cell development",35,3,5.07,965,"0.9016","0.3370","0.3370" +"GO:0044267","cellular protein metabolic process",491,79,71.15,193,"0.1432","0.3383","0.3383" +"GO:0006650","glycerophospholipid metabolic process",36,9,5.22,96,"0.0655","0.3410","0.3410" +"GO:0051648","vesicle localization",13,2,1.88,642,"0.5821","0.3425","0.3425" +"GO:0006952","defense response",48,8,6.96,453,"0.3935","0.3431","0.3431" +"GO:0080134","regulation of response to stress",60,12,8.69,202,"0.1486","0.3433","0.3433" +"GO:0080135","regulation of cellular response to stres...",37,8,5.36,213,"0.1561","0.3433","0.3433" +"GO:0070838","divalent metal ion transport",18,5,2.61,156,"0.1067","0.3441","0.3441" +"GO:0072511","divalent inorganic cation transport",18,5,2.61,157,"0.1067","0.3441","0.3441" +"GO:0030031","cell projection assembly",33,7,4.78,263,"0.1912","0.3441","0.3441" +"GO:0120031","plasma membrane bounded cell projection ...",33,7,4.78,264,"0.1912","0.3441","0.3441" +"GO:0000209","protein polyubiquitination",21,5,3.04,257,"0.1775","0.3444","0.3444" +"GO:1903532","positive regulation of secretion by cell",10,2,1.45,505,"0.4371","0.3450","0.3450" +"GO:0060548","negative regulation of cell death",43,7,6.23,492,"0.4336","0.3469","0.3469" +"GO:1901617","organic hydroxy compound biosynthetic pr...",11,2,1.59,553,"0.4886","0.3500","0.3500" +"GO:0071383","cellular response to steroid hormone sti...",23,3,3.33,717,"0.6691","0.3508","0.3508" +"GO:0006511","ubiquitin-dependent protein catabolic pr...",48,10,6.96,197,"0.1461","0.3512","0.3512" +"GO:0019941","modification-dependent protein catabolic...",48,10,6.96,198,"0.1461","0.3512","0.3512" +"GO:0010970","transport along microtubule",19,3,2.75,603,"0.5343","0.3522","0.3522" +"GO:0030705","cytoskeleton-dependent intracellular tra...",19,3,2.75,604,"0.5343","0.3522","0.3522" +"GO:0099111","microtubule-based transport",19,3,2.75,605,"0.5343","0.3522","0.3522" +"GO:0031667","response to nutrient levels",23,4,3.33,491,"0.4327","0.3551","0.3551" +"GO:0008610","lipid biosynthetic process",51,9,7.39,392,"0.3147","0.3586","0.3586" +"GO:0031331","positive regulation of cellular cataboli...",15,2,2.17,709,"0.6625","0.3588","0.3588" +"GO:0071495","cellular response to endogenous stimulus",57,10,8.26,388,"0.3065","0.3611","0.3611" +"GO:0045944","positive regulation of transcription by ...",38,7,5.51,389,"0.3074","0.3637","0.3637" +"GO:0097306","cellular response to alcohol",12,1,1.74,879,"0.8480","0.3647","0.3647" +"GO:0043269","regulation of ion transport",17,3,2.46,536,"0.4564","0.3658","0.3658" +"GO:0045017","glycerolipid biosynthetic process",18,5,2.61,158,"0.1067","0.3659","0.3659" +"GO:0140014","mitotic nuclear division",17,4,2.46,310,"0.2243","0.3659","0.3659" +"GO:0051656","establishment of organelle localization",20,6,2.9,87,"0.0576","0.3661","0.3661" +"GO:0098656","anion transmembrane transport",16,1,2.32,985,"0.9190","0.3665","0.3665" +"GO:0034329","cell junction assembly",13,2,1.88,643,"0.5821","0.3666","0.3666" +"GO:0034330","cell junction organization",13,2,1.88,644,"0.5821","0.3666","0.3666" +"GO:0048518","positive regulation of biological proces...",272,49,39.41,82,"0.0501","0.3672","0.3669" +"GO:0044255","cellular lipid metabolic process",97,20,14.06,89,"0.0588","0.3675","0.3675" +"GO:0031396","regulation of protein ubiquitination",13,3,1.88,368,"0.2885","0.3692","0.3692" +"GO:1903320","regulation of protein modification by sm...",13,3,1.88,369,"0.2885","0.3692","0.3692" +"GO:0072594","establishment of protein localization to...",29,3,4.2,853,"0.8142","0.3696","0.3696" +"GO:0030100","regulation of endocytosis",15,2,2.17,710,"0.6625","0.3700","0.3700" +"GO:0010817","regulation of hormone levels",20,5,2.9,209,"0.1522","0.3709","0.3709" +"GO:0048193","Golgi vesicle transport",22,4,3.19,459,"0.3978","0.3715","0.3715" +"GO:0097190","apoptotic signaling pathway",19,4,2.75,379,"0.2923","0.3716","0.3716" +"GO:1901215","negative regulation of neuron death",10,2,1.45,506,"0.4371","0.3719","0.3719" +"GO:0000278","mitotic cell cycle",52,11,7.54,167,"0.1210","0.3730","0.3730" +"GO:0007059","chromosome segregation",23,6,3.33,145,"0.1035","0.3735","0.3735" +"GO:0019439","aromatic compound catabolic process",39,7,5.65,415,"0.3323","0.3741","0.3741" +"GO:1901575","organic substance catabolic process",155,29,22.46,107,"0.0797","0.3744","0.3744" +"GO:0050877","nervous system process",47,7,6.81,592,"0.5326","0.3768","0.3768" +"GO:0072657","protein localization to membrane",23,6,3.33,146,"0.1035","0.3780","0.3780" +"GO:0006606","protein import into nucleus",13,2,1.88,645,"0.5821","0.3784","0.3784" +"GO:0009141","nucleoside triphosphate metabolic proces...",13,2,1.88,646,"0.5821","0.3784","0.3784" +"GO:0051170","import into nucleus",13,2,1.88,647,"0.5821","0.3784","0.3784" +"GO:0008654","phospholipid biosynthetic process",20,5,2.9,210,"0.1522","0.3801","0.3801" +"GO:0009617","response to bacterium",18,3,2.61,570,"0.4961","0.3802","0.3802" +"GO:0032990","cell part morphogenesis",37,6,5.36,532,"0.4523","0.3811","0.3811" +"GO:0097164","ammonium ion metabolic process",12,4,1.74,113,"0.0826","0.3822","0.3822" +"GO:0007179","transforming growth factor beta receptor...",14,3,2.03,410,"0.3311","0.3867","0.3867" +"GO:0022603","regulation of anatomical structure morph...",40,10,5.8,84,"0.0537","0.3881","0.3881" +"GO:0034655","nucleobase-containing compound catabolic...",37,7,5.36,358,"0.2829","0.3892","0.3892" +"GO:0032504","multicellular organism reproduction",62,7,8.98,855,"0.8167","0.3903","0.3903" +"GO:0010638","positive regulation of organelle organiz...",40,7,5.8,428,"0.3575","0.3905","0.3905" +"GO:1901698","response to nitrogen compound",34,7,4.93,301,"0.2129","0.3906","0.3906" +"GO:0035690","cellular response to drug",17,2,2.46,757,"0.7300","0.3907","0.3907" +"GO:0051246","regulation of protein metabolic process",126,22,18.26,276,"0.1969","0.3907","0.3907" +"GO:0048565","digestive tract development",12,2,1.74,611,"0.5370","0.3909","0.3909" +"GO:0055123","digestive system development",12,2,1.74,612,"0.5370","0.3909","0.3909" +"GO:0031503","protein-containing complex localization",14,1,2.03,939,"0.8890","0.3914","0.3914" +"GO:0022898","regulation of transmembrane transporter ...",13,2,1.88,648,"0.5821","0.3914","0.3914" +"GO:0032409","regulation of transporter activity",13,2,1.88,649,"0.5821","0.3914","0.3914" +"GO:0032412","regulation of ion transmembrane transpor...",13,2,1.88,650,"0.5821","0.3914","0.3914" +"GO:0034765","regulation of ion transmembrane transpor...",13,2,1.88,651,"0.5821","0.3914","0.3914" +"GO:1904062","regulation of cation transmembrane trans...",13,2,1.88,652,"0.5821","0.3914","0.3914" +"GO:0030258","lipid modification",17,5,2.46,122,"0.0869","0.3919","0.3919" +"GO:0042325","regulation of phosphorylation",53,10,7.68,314,"0.2295","0.3926","0.3926" +"GO:0003013","circulatory system process",13,1,1.88,918,"0.8701","0.3931","0.3931" +"GO:0008015","blood circulation",13,1,1.88,919,"0.8701","0.3931","0.3931" +"GO:0007015","actin filament organization",29,3,4.2,854,"0.8142","0.3961","0.3961" +"GO:0009966","regulation of signal transduction",141,24,20.43,307,"0.2208","0.3964","0.3964" +"GO:0045814","negative regulation of gene expression, ...",10,2,1.45,507,"0.4371","0.3967","0.3967" +"GO:2001251","negative regulation of chromosome organi...",10,3,1.45,237,"0.1664","0.3967","0.3967" +"GO:0009987","cellular process",1651,245,239.24,327,"0.2364","0.0567","0.3996" +"GO:0070588","calcium ion transmembrane transport",11,2,1.59,554,"0.4886","0.4001","0.4001" +"GO:0006811","ion transport",145,16,21.01,983,"0.9145","0.4007","0.4007" +"GO:0048513","animal organ development",162,28,23.48,247,"0.1745","0.4030","0.4030" +"GO:0009967","positive regulation of signal transducti...",55,9,7.97,464,"0.4023","0.4035","0.4035" +"GO:0045732","positive regulation of protein catabolic...",11,1,1.59,859,"0.8220","0.4054","0.4054" +"GO:0006974","cellular response to DNA damage stimulus",94,14,13.62,579,"0.5014","0.4055","0.4055" +"GO:0007444","imaginal disc development",13,2,1.88,653,"0.5821","0.4080","0.4080" +"GO:0061458","reproductive system development",24,3,3.48,737,"0.6980","0.4082","0.4082" +"GO:1902017","regulation of cilium assembly",10,2,1.45,508,"0.4371","0.4086","0.4086" +"GO:0043085","positive regulation of catalytic activit...",53,6,7.68,831,"0.8023","0.4086","0.4086" +"GO:0048522","positive regulation of cellular process",234,42,33.91,103,"0.0707","0.4087","0.4087" +"GO:0031056","regulation of histone modification",13,4,1.88,152,"0.1063","0.4095","0.4095" +"GO:0048545","response to steroid hormone",30,4,4.35,704,"0.6516","0.4097","0.4097" +"GO:0003006","developmental process involved in reprod...",58,8,8.4,676,"0.6190","0.4125","0.4125" +"GO:0071345","cellular response to cytokine stimulus",24,4,3.48,542,"0.4670","0.4131","0.4131" +"GO:0009314","response to radiation",19,5,2.75,177,"0.1285","0.4132","0.4132" +"GO:0030522","intracellular receptor signaling pathway",12,1,1.74,880,"0.8480","0.4134","0.4134" +"GO:0044403","symbiont process",15,1,2.17,968,"0.9052","0.4142","0.4142" +"GO:0044419","interspecies interaction between organis...",15,1,2.17,969,"0.9052","0.4142","0.4142" +"GO:1901615","organic hydroxy compound metabolic proce...",22,3,3.19,700,"0.6383","0.4143","0.4143" +"GO:0065009","regulation of molecular function",111,16,16.08,624,"0.5527","0.4147","0.4147" +"GO:0051276","chromosome organization",114,18,16.52,450,"0.3841","0.4179","0.4179" +"GO:0071417","cellular response to organonitrogen comp...",12,2,1.74,613,"0.5370","0.4181","0.4181" +"GO:0007389","pattern specification process",42,8,6.09,340,"0.2558","0.4196","0.4196" +"GO:0046700","heterocycle catabolic process",40,7,5.8,429,"0.3575","0.4225","0.4225" +"GO:0043902","positive regulation of multi-organism pr...",13,1,1.88,920,"0.8701","0.4241","0.4241" +"GO:0007275","multicellular organism development",258,40,37.39,420,"0.3402","0.4244","0.4244" +"GO:0003333","amino acid transmembrane transport",11,0,1.59,1040,"1.0000","0.4257","0.4257" +"GO:0006865","amino acid transport",11,0,1.59,1041,"1.0000","0.4257","0.4257" +"GO:0009968","negative regulation of signal transducti...",52,10,7.54,300,"0.2115","0.4259","0.4259" +"GO:0030001","metal ion transport",53,8,7.68,585,"0.5103","0.4260","0.4260" +"GO:0045165","cell fate commitment",19,3,2.75,606,"0.5343","0.4268","0.4268" +"GO:0003002","regionalization",26,6,3.77,229,"0.1636","0.4317","0.4317" +"GO:0019058","viral life cycle",10,1,1.45,810,"0.7917","0.4328","0.4328" +"GO:0032269","negative regulation of cellular protein ...",36,8,5.22,188,"0.1388","0.4332","0.4332" +"GO:0045664","regulation of neuron differentiation",33,7,4.78,265,"0.1912","0.4342","0.4342" +"GO:0009755","hormone-mediated signaling pathway",19,3,2.75,607,"0.5343","0.4345","0.4345" +"GO:0048285","organelle fission",29,6,4.2,323,"0.2352","0.4345","0.4345" +"GO:0002064","epithelial cell development",23,1,3.33,1026,"0.9732","0.4360","0.4360" +"GO:0008544","epidermis development",12,3,1.74,333,"0.2465","0.4363","0.4363" +"GO:0006887","exocytosis",26,3,3.77,781,"0.7500","0.4371","0.4371" +"GO:0048583","regulation of response to stimulus",191,34,27.68,159,"0.1072","0.4398","0.4398" +"GO:0000910","cytokinesis",13,0,1.88,1042,"1.0000","0.4404","0.4404" +"GO:0043067","regulation of programmed cell death",56,10,8.11,363,"0.2866","0.4405","0.4405" +"GO:0043068","positive regulation of programmed cell d...",20,4,2.9,402,"0.3274","0.4417","0.4417" +"GO:0071840","cellular component organization or bioge...",408,56,59.12,748,"0.7107","0.4439","0.4439" +"GO:0007268","chemical synaptic transmission",28,6,4.06,295,"0.2103","0.4446","0.4446" +"GO:0098916","anterograde trans-synaptic signaling",28,6,4.06,296,"0.2103","0.4446","0.4446" +"GO:0099536","synaptic signaling",28,6,4.06,297,"0.2103","0.4446","0.4446" +"GO:0099537","trans-synaptic signaling",28,6,4.06,298,"0.2103","0.4446","0.4446" +"GO:0007346","regulation of mitotic cell cycle",16,4,2.32,271,"0.1920","0.4447","0.4447" +"GO:0048731","system development",213,36,30.87,244,"0.1708","0.4461","0.4461" +"GO:0051649","establishment of localization in cell",167,29,24.2,226,"0.1625","0.4484","0.4484" +"GO:0051017","actin filament bundle assembly",11,2,1.59,555,"0.4886","0.4484","0.4484" +"GO:0006473","protein acetylation",19,3,2.75,608,"0.5343","0.4500","0.4500" +"GO:0099003","vesicle-mediated transport in synapse",14,3,2.03,411,"0.3311","0.4514","0.4514" +"GO:0043624","cellular protein complex disassembly",11,0,1.59,1043,"1.0000","0.4537","0.4537" +"GO:0044270","cellular nitrogen compound catabolic pro...",40,7,5.8,430,"0.3575","0.4539","0.4539" +"GO:0031400","negative regulation of protein modificat...",25,6,3.62,192,"0.1421","0.4555","0.4555" +"GO:0016053","organic acid biosynthetic process",20,2,2.9,843,"0.8096","0.4572","0.4572" +"GO:0046394","carboxylic acid biosynthetic process",20,2,2.9,844,"0.8096","0.4572","0.4572" +"GO:0034764","positive regulation of transmembrane tra...",10,3,1.45,238,"0.1664","0.4582","0.4582" +"GO:0043270","positive regulation of ion transport",10,2,1.45,509,"0.4371","0.4582","0.4582" +"GO:0030308","negative regulation of cell growth",11,2,1.59,556,"0.4886","0.4583","0.4583" +"GO:2000113","negative regulation of cellular macromol...",55,12,7.97,130,"0.0900","0.4586","0.4586" +"GO:0008016","regulation of heart contraction",10,0,1.45,1044,"1.0000","0.4599","0.4599" +"GO:1903522","regulation of blood circulation",10,0,1.45,1045,"1.0000","0.4599","0.4599" +"GO:0016192","vesicle-mediated transport",132,20,19.13,531,"0.4517","0.4611","0.4611" +"GO:0009058","biosynthetic process",562,92,81.44,114,"0.0827","0.4626","0.4626" +"GO:0048667","cell morphogenesis involved in neuron di...",31,6,4.49,364,"0.2875","0.4634","0.4634" +"GO:0023051","regulation of signaling",165,29,23.91,199,"0.1461","0.4641","0.4641" +"GO:0051128","regulation of cellular component organiz...",128,25,18.55,97,"0.0657","0.4650","0.4650" +"GO:0006482","protein demethylation",10,2,1.45,510,"0.4371","0.4653","0.4653" +"GO:0008214","protein dealkylation",10,2,1.45,511,"0.4371","0.4653","0.4653" +"GO:0070988","demethylation",10,2,1.45,512,"0.4371","0.4653","0.4653" +"GO:0051179","localization",577,80,83.61,749,"0.7121","0.4659","0.4659" +"GO:0043069","negative regulation of programmed cell d...",37,7,5.36,359,"0.2829","0.4680","0.4680" +"GO:0042594","response to starvation",13,3,1.88,370,"0.2885","0.4688","0.4688" +"GO:0006260","DNA replication",42,9,6.09,194,"0.1432","0.4713","0.4713" +"GO:0071559","response to transforming growth factor b...",18,3,2.61,571,"0.4961","0.4715","0.4715" +"GO:0071560","cellular response to transforming growth...",18,3,2.61,572,"0.4961","0.4715","0.4715" +"GO:0044772","mitotic cell cycle phase transition",20,3,2.9,628,"0.5708","0.4734","0.4734" +"GO:0051052","regulation of DNA metabolic process",15,3,2.17,442,"0.3735","0.4737","0.4737" +"GO:1902275","regulation of chromatin organization",14,4,2.03,182,"0.1326","0.4739","0.4739" +"GO:0051051","negative regulation of transport",10,1,1.45,811,"0.7917","0.4745","0.4745" +"GO:0065008","regulation of biological quality",158,29,22.9,134,"0.0969","0.4761","0.4761" +"GO:0033554","cellular response to stress",142,25,20.58,232,"0.1663","0.4789","0.4789" +"GO:0042886","amide transport",116,19,16.81,393,"0.3154","0.4805","0.4805" +"GO:0015031","protein transport",115,19,16.66,384,"0.3013","0.4813","0.4813" +"GO:0015833","peptide transport",115,19,16.66,385,"0.3013","0.4813","0.4813" +"GO:0009607","response to biotic stimulus",24,3,3.48,738,"0.6980","0.4836","0.4836" +"GO:0043207","response to external biotic stimulus",24,3,3.48,739,"0.6980","0.4836","0.4836" +"GO:0051707","response to other organism",24,3,3.48,740,"0.6980","0.4836","0.4836" +"GO:0044283","small molecule biosynthetic process",41,5,5.94,774,"0.7301","0.4837","0.4837" +"GO:0009991","response to extracellular stimulus",24,4,3.48,543,"0.4670","0.4852","0.4852" +"GO:0044249","cellular biosynthetic process",535,87,77.53,147,"0.1039","0.4859","0.4859" +"GO:0032271","regulation of protein polymerization",19,2,2.75,796,"0.7857","0.4860","0.4860" +"GO:0009890","negative regulation of biosynthetic proc...",56,12,8.11,140,"0.1004","0.4860","0.4860" +"GO:0010558","negative regulation of macromolecule bio...",56,12,8.11,141,"0.1004","0.4860","0.4860" +"GO:0031327","negative regulation of cellular biosynth...",56,12,8.11,142,"0.1004","0.4860","0.4860" +"GO:0042157","lipoprotein metabolic process",18,3,2.61,573,"0.4961","0.4866","0.4866" +"GO:0032787","monocarboxylic acid metabolic process",26,6,3.77,230,"0.1636","0.4870","0.4870" +"GO:0007399","nervous system development",131,21,18.98,421,"0.3407","0.4875","0.4875" +"GO:0044770","cell cycle phase transition",22,4,3.19,460,"0.3978","0.4882","0.4882" +"GO:0007498","mesoderm development",13,2,1.88,654,"0.5821","0.4897","0.4897" +"GO:0002682","regulation of immune system process",47,5,6.81,876,"0.8332","0.4948","0.4948" +"GO:0120036","plasma membrane bounded cell projection ...",84,15,12.17,311,"0.2262","0.4955","0.4955" +"GO:0044271","cellular nitrogen compound biosynthetic ...",403,65,58.4,242,"0.1697","0.4956","0.4956" +"GO:0006816","calcium ion transport",16,3,2.32,477,"0.4154","0.5017","0.5017" +"GO:0000122","negative regulation of transcription by ...",29,6,4.2,324,"0.2352","0.5022","0.5022" +"GO:0008154","actin polymerization or depolymerization",15,1,2.17,970,"0.9052","0.5030","0.5030" +"GO:0006259","DNA metabolic process",120,15,17.39,795,"0.7759","0.5032","0.5032" +"GO:0016032","viral process",12,1,1.74,881,"0.8480","0.5042","0.5042" +"GO:0010557","positive regulation of macromolecule bio...",59,9,8.55,567,"0.4904","0.5045","0.5045" +"GO:0046474","glycerophospholipid biosynthetic process",16,4,2.32,272,"0.1920","0.5049","0.5049" +"GO:0061136","regulation of proteasomal protein catabo...",14,0,2.03,1046,"1.0000","0.5064","0.5064" +"GO:1903050","regulation of proteolysis involved in ce...",14,0,2.03,1047,"1.0000","0.5064","0.5064" +"GO:0009116","nucleoside metabolic process",10,0,1.45,1048,"1.0000","0.5076","0.5076" +"GO:0030855","epithelial cell differentiation",36,6,5.22,488,"0.4248","0.5081","0.5081" +"GO:0051239","regulation of multicellular organismal p...",121,26,17.53,34,"0.0209","0.2394","0.5092" +"GO:0006403","RNA localization",12,2,1.74,614,"0.5370","0.5093","0.5093" +"GO:0008285","negative regulation of cell proliferatio...",29,6,4.2,325,"0.2352","0.5108","0.5108" +"GO:0048588","developmental cell growth",10,1,1.45,812,"0.7917","0.5110","0.5110" +"GO:1901576","organic substance biosynthetic process",547,87,79.26,212,"0.1559","0.5129","0.5129" +"GO:0043066","negative regulation of apoptotic process",35,7,5.07,326,"0.2355","0.5151","0.5151" +"GO:0035282","segmentation",12,2,1.74,615,"0.5370","0.5153","0.5153" +"GO:0048863","stem cell differentiation",17,3,2.46,537,"0.4564","0.5169","0.5169" +"GO:0000082","G1/S transition of mitotic cell cycle",11,0,1.59,1049,"1.0000","0.5180","0.5180" +"GO:0044843","cell cycle G1/S phase transition",11,0,1.59,1050,"1.0000","0.5180","0.5180" +"GO:0016070","RNA metabolic process",427,69,61.88,211,"0.1556","0.5181","0.5181" +"GO:0051172","negative regulation of nitrogen compound...",81,16,11.74,166,"0.1155","0.5187","0.5187" +"GO:0007062","sister chromatid cohesion",12,2,1.74,616,"0.5370","0.5194","0.5194" +"GO:0006289","nucleotide-excision repair",10,0,1.45,1051,"1.0000","0.5218","0.5218" +"GO:0040011","locomotion",79,15,11.45,216,"0.1597","0.5226","0.5226" +"GO:0035601","protein deacylation",10,1,1.45,813,"0.7917","0.5235","0.5235" +"GO:0098732","macromolecule deacylation",10,1,1.45,814,"0.7917","0.5235","0.5235" +"GO:0007610","behavior",45,9,6.52,275,"0.1943","0.5246","0.5246" +"GO:1903047","mitotic cell cycle process",43,8,6.23,357,"0.2778","0.5248","0.5248" +"GO:0010646","regulation of cell communication",161,27,23.33,312,"0.2273","0.5250","0.5250" +"GO:0018193","peptidyl-amino acid modification",57,8,8.26,668,"0.5982","0.5254","0.5254" +"GO:0002683","negative regulation of immune system pro...",12,1,1.74,882,"0.8480","0.5259","0.5259" +"GO:0051248","negative regulation of protein metabolic...",39,8,5.65,274,"0.1936","0.5270","0.5270" +"GO:0048468","cell development",130,18,18.84,696,"0.6252","0.5275","0.5275" +"GO:0042461","photoreceptor cell development",16,2,2.32,729,"0.6978","0.5287","0.5287" +"GO:0071496","cellular response to external stimulus",10,2,1.45,513,"0.4371","0.5291","0.5291" +"GO:0043086","negative regulation of catalytic activit...",16,4,2.32,273,"0.1920","0.5291","0.5291" +"GO:0060562","epithelial tube morphogenesis",37,4,5.36,837,"0.8064","0.5324","0.5324" +"GO:0019725","cellular homeostasis",27,6,3.91,260,"0.1864","0.5328","0.5328" +"GO:0010038","response to metal ion",20,3,2.9,629,"0.5708","0.5329","0.5329" +"GO:2001233","regulation of apoptotic signaling pathwa...",14,3,2.03,412,"0.3311","0.5330","0.5330" +"GO:0140013","meiotic nuclear division",10,1,1.45,815,"0.7917","0.5335","0.5335" +"GO:1902903","regulation of supramolecular fiber organ...",27,2,3.91,993,"0.9199","0.5344","0.5344" +"GO:0022607","cellular component assembly",156,24,22.61,467,"0.4076","0.5356","0.5356" +"GO:0034976","response to endoplasmic reticulum stress",15,4,2.17,221,"0.1613","0.5358","0.5358" +"GO:0009126","purine nucleoside monophosphate metaboli...",12,1,1.74,883,"0.8480","0.5362","0.5362" +"GO:0009167","purine ribonucleoside monophosphate meta...",12,1,1.74,884,"0.8480","0.5362","0.5362" +"GO:0046677","response to antibiotic",12,2,1.74,617,"0.5370","0.5362","0.5362" +"GO:1902882","regulation of response to oxidative stre...",12,1,1.74,885,"0.8480","0.5362","0.5362" +"GO:0006091","generation of precursor metabolites and ...",16,2,2.32,730,"0.6978","0.5380","0.5380" +"GO:0043254","regulation of protein complex assembly",22,3,3.19,701,"0.6383","0.5382","0.5382" +"GO:0042981","regulation of apoptotic process",55,10,7.97,354,"0.2671","0.5385","0.5385" +"GO:0051960","regulation of nervous system development",39,7,5.65,416,"0.3323","0.5387","0.5387" +"GO:0006954","inflammatory response",12,1,1.74,886,"0.8480","0.5408","0.5408" +"GO:0030030","cell projection organization",85,15,12.32,329,"0.2407","0.5507","0.5507" +"GO:0010243","response to organonitrogen compound",32,7,4.64,243,"0.1704","0.5509","0.5509" +"GO:0071363","cellular response to growth factor stimu...",26,5,3.77,396,"0.3213","0.5543","0.5543" +"GO:0010720","positive regulation of cell development",23,5,3.33,318,"0.2322","0.5563","0.5563" +"GO:0000280","nuclear division",28,6,4.06,299,"0.2103","0.5589","0.5589" +"GO:0009894","regulation of catabolic process",49,6,7.1,776,"0.7352","0.5616","0.5616" +"GO:0048749","compound eye development",16,1,2.32,986,"0.9190","0.5626","0.5626" +"GO:0030163","protein catabolic process",76,13,11.01,386,"0.3014","0.5656","0.5656" +"GO:0009886","post-embryonic animal morphogenesis",12,1,1.74,887,"0.8480","0.5680","0.5680" +"GO:0033044","regulation of chromosome organization",21,5,3.04,258,"0.1775","0.5698","0.5698" +"GO:1901361","organic cyclic compound catabolic proces...",42,7,6.09,468,"0.4082","0.5702","0.5702" +"GO:0009123","nucleoside monophosphate metabolic proce...",14,1,2.03,940,"0.8890","0.5705","0.5705" +"GO:0050767","regulation of neurogenesis",37,7,5.36,360,"0.2829","0.5717","0.5717" +"GO:0010628","positive regulation of gene expression",71,12,10.29,404,"0.3277","0.5721","0.5721" +"GO:0090304","nucleic acid metabolic process",520,81,75.35,315,"0.2307","0.5722","0.5722" +"GO:0006261","DNA-dependent DNA replication",20,2,2.9,845,"0.8096","0.5726","0.5726" +"GO:0043065","positive regulation of apoptotic process",19,4,2.75,380,"0.2923","0.5746","0.5746" +"GO:0019693","ribose phosphate metabolic process",23,1,3.33,1027,"0.9732","0.5747","0.5747" +"GO:0006643","membrane lipid metabolic process",16,3,2.32,478,"0.4154","0.5751","0.5751" +"GO:0030278","regulation of ossification",10,3,1.45,239,"0.1664","0.5754","0.5754" +"GO:1903825","organic acid transmembrane transport",12,0,1.74,1052,"1.0000","0.5756","0.5756" +"GO:1905039","carboxylic acid transmembrane transport",12,0,1.74,1053,"1.0000","0.5756","0.5756" +"GO:0048608","reproductive structure development",23,2,3.33,909,"0.8676","0.5774","0.5774" +"GO:0030833","regulation of actin filament polymerizat...",13,1,1.88,921,"0.8701","0.5799","0.5799" +"GO:0060255","regulation of macromolecule metabolic pr...",391,74,56.66,8,"0.0047","0.0111","0.5820" +"GO:0045859","regulation of protein kinase activity",21,4,3.04,434,"0.3626","0.5845","0.5845" +"GO:0048699","generation of neurons",98,16,14.2,422,"0.3416","0.5853","0.5853" +"GO:0032501","multicellular organismal process",310,49,44.92,352,"0.2639","0.0956","0.5861" +"GO:0006629","lipid metabolic process",139,22,20.14,432,"0.3592","0.5905","0.5905" +"GO:0002684","positive regulation of immune system pro...",26,3,3.77,782,"0.7500","0.5910","0.5910" +"GO:0008064","regulation of actin polymerization or de...",14,1,2.03,941,"0.8890","0.5914","0.5914" +"GO:0030041","actin filament polymerization",14,1,2.03,942,"0.8890","0.5914","0.5914" +"GO:0030832","regulation of actin filament length",14,1,2.03,943,"0.8890","0.5914","0.5914" +"GO:0005975","carbohydrate metabolic process",65,13,9.42,187,"0.1364","0.5918","0.5918" +"GO:0042127","regulation of cell proliferation",50,9,7.25,381,"0.2934","0.5921","0.5921" +"GO:0048598","embryonic morphogenesis",50,4,7.25,1015,"0.9461","0.5926","0.5926" +"GO:0007163","establishment or maintenance of cell pol...",11,2,1.59,557,"0.4886","0.5941","0.5941" +"GO:0050803","regulation of synapse structure or activ...",12,2,1.74,618,"0.5370","0.5945","0.5945" +"GO:0050807","regulation of synapse organization",12,2,1.74,619,"0.5370","0.5945","0.5945" +"GO:0010035","response to inorganic substance",23,5,3.33,319,"0.2322","0.5945","0.5945" +"GO:0007034","vacuolar transport",17,2,2.46,758,"0.7300","0.5983","0.5983" +"GO:0046907","intracellular transport",155,24,22.46,454,"0.3942","0.6027","0.6027" +"GO:0022618","ribonucleoprotein complex assembly",11,3,1.59,293,"0.2055","0.6034","0.6034" +"GO:0071826","ribonucleoprotein complex subunit organi...",11,3,1.59,294,"0.2055","0.6034","0.6034" +"GO:0045087","innate immune response",24,4,3.48,544,"0.4670","0.6069","0.6069" +"GO:0006886","intracellular protein transport",90,14,13.04,490,"0.4314","0.6071","0.6071" +"GO:0051254","positive regulation of RNA metabolic pro...",63,9,9.13,634,"0.5748","0.6081","0.6081" +"GO:0006475","internal protein amino acid acetylation",17,2,2.46,759,"0.7300","0.6127","0.6127" +"GO:0018393","internal peptidyl-lysine acetylation",17,2,2.46,760,"0.7300","0.6127","0.6127" +"GO:0018394","peptidyl-lysine acetylation",17,2,2.46,761,"0.7300","0.6127","0.6127" +"GO:0048729","tissue morphogenesis",49,6,7.1,777,"0.7352","0.6140","0.6140" +"GO:0044089","positive regulation of cellular componen...",32,5,4.64,582,"0.5037","0.6146","0.6146" +"GO:0002376","immune system process",86,12,12.46,671,"0.6059","0.6156","0.6156" +"GO:0007626","locomotory behavior",12,3,1.74,334,"0.2465","0.6167","0.6167" +"GO:0072521","purine-containing compound metabolic pro...",28,3,4.06,828,"0.7945","0.6193","0.6193" +"GO:0045892","negative regulation of transcription, DN...",49,10,7.1,223,"0.1613","0.6202","0.6202" +"GO:1902679","negative regulation of RNA biosynthetic ...",49,10,7.1,224,"0.1613","0.6202","0.6202" +"GO:1903507","negative regulation of nucleic acid-temp...",49,10,7.1,225,"0.1613","0.6202","0.6202" +"GO:0065003","protein-containing complex assembly",77,12,11.16,526,"0.4409","0.6202","0.6202" +"GO:0022008","neurogenesis",101,16,14.64,452,"0.3901","0.6207","0.6207" +"GO:0045184","establishment of protein localization",124,20,17.97,418,"0.3354","0.6220","0.6220" +"GO:0007267","cell-cell signaling",69,13,10,261,"0.1896","0.6223","0.6223" +"GO:0043543","protein acylation",30,5,4.35,529,"0.4440","0.6230","0.6230" +"GO:0051493","regulation of cytoskeleton organization",28,3,4.06,829,"0.7945","0.6239","0.6239" +"GO:0008284","positive regulation of cell proliferatio...",18,4,2.61,345,"0.2578","0.6242","0.6242" +"GO:0051261","protein depolymerization",10,0,1.45,1054,"1.0000","0.6259","0.6259" +"GO:0042592","homeostatic process",64,8,9.27,775,"0.7305","0.6265","0.6265" +"GO:0030182","neuron differentiation",91,15,13.19,417,"0.3347","0.6276","0.6276" +"GO:0045893","positive regulation of transcription, DN...",56,8,8.11,636,"0.5769","0.6281","0.6281" +"GO:1902680","positive regulation of RNA biosynthetic ...",56,8,8.11,637,"0.5769","0.6281","0.6281" +"GO:1903508","positive regulation of nucleic acid-temp...",56,8,8.11,638,"0.5769","0.6281","0.6281" +"GO:0043009","chordate embryonic development",44,6,6.38,697,"0.6309","0.6284","0.6284" +"GO:0007155","cell adhesion",63,5,9.13,1019,"0.9628","0.6292","0.6292" +"GO:0022610","biological adhesion",63,5,9.13,1020,"0.9628","0.6292","0.6292" +"GO:0031345","negative regulation of cell projection o...",10,2,1.45,514,"0.4371","0.6299","0.6299" +"GO:0090090","negative regulation of canonical Wnt sig...",11,2,1.59,558,"0.4886","0.6312","0.6312" +"GO:0001947","heart looping",11,2,1.59,559,"0.4886","0.6317","0.6317" +"GO:0003143","embryonic heart tube morphogenesis",11,2,1.59,560,"0.4886","0.6317","0.6317" +"GO:0035050","embryonic heart tube development",11,2,1.59,561,"0.4886","0.6317","0.6317" +"GO:0061371","determination of heart left/right asymme...",11,2,1.59,562,"0.4886","0.6317","0.6317" +"GO:0042330","taxis",28,0,4.06,1055,"1.0000","0.6324","0.6324" +"GO:0045595","regulation of cell differentiation",73,13,10.58,338,"0.2510","0.6324","0.6324" +"GO:0003008","system process",73,9,10.58,785,"0.7527","0.6328","0.6328" +"GO:0006979","response to oxidative stress",31,6,4.49,365,"0.2875","0.6331","0.6331" +"GO:0009259","ribonucleotide metabolic process",21,1,3.04,1022,"0.9632","0.6331","0.6331" +"GO:0002009","morphogenesis of an epithelium",47,6,6.81,727,"0.6962","0.6339","0.6339" +"GO:0051346","negative regulation of hydrolase activit...",10,2,1.45,515,"0.4371","0.6344","0.6344" +"GO:0007049","cell cycle",120,17,17.39,661,"0.5831","0.6369","0.6369" +"GO:0001558","regulation of cell growth",20,2,2.9,846,"0.8096","0.6391","0.6391" +"GO:0072001","renal system development",22,1,3.19,1024,"0.9686","0.6392","0.6392" +"GO:0009880","embryonic pattern specification",10,1,1.45,816,"0.7917","0.6400","0.6400" +"GO:0071902","positive regulation of protein serine/th...",10,2,1.45,516,"0.4371","0.6419","0.6419" +"GO:0009161","ribonucleoside monophosphate metabolic p...",13,1,1.88,922,"0.8701","0.6422","0.6422" +"GO:0110053","regulation of actin filament organizatio...",18,1,2.61,1010,"0.9410","0.6435","0.6435" +"GO:0043549","regulation of kinase activity",22,4,3.19,461,"0.3978","0.6438","0.6438" +"GO:0006493","protein O-linked glycosylation",12,1,1.74,888,"0.8480","0.6440","0.6440" +"GO:0044782","cilium organization",22,5,3.19,277,"0.2042","0.6446","0.6446" +"GO:0060271","cilium assembly",22,5,3.19,278,"0.2042","0.6446","0.6446" +"GO:0098742","cell-cell adhesion via plasma-membrane a...",17,1,2.46,998,"0.9309","0.6482","0.6482" +"GO:0098662","inorganic cation transmembrane transport",25,5,3.62,376,"0.2910","0.6482","0.6482" +"GO:0051253","negative regulation of RNA metabolic pro...",50,10,7.25,253,"0.1773","0.6494","0.6494" +"GO:0014706","striated muscle tissue development",24,3,3.48,741,"0.6980","0.6511","0.6511" +"GO:2001257","regulation of cation channel activity",11,2,1.59,563,"0.4886","0.6514","0.6514" +"GO:0034097","response to cytokine",26,4,3.77,597,"0.5331","0.6522","0.6522" +"GO:0007292","female gamete generation",27,3,3.91,789,"0.7731","0.6531","0.6531" +"GO:0001655","urogenital system development",25,2,3.62,962,"0.8968","0.6547","0.6547" +"GO:0044057","regulation of system process",18,1,2.61,1011,"0.9410","0.6562","0.6562" +"GO:0006281","DNA repair",67,7,9.71,930,"0.8741","0.6571","0.6571" +"GO:0060560","developmental growth involved in morphog...",11,1,1.59,860,"0.8220","0.6589","0.6589" +"GO:0008283","cell proliferation",61,10,8.84,451,"0.3888","0.6608","0.6608" +"GO:0051093","negative regulation of developmental pro...",42,8,6.09,341,"0.2558","0.6648","0.6648" +"GO:0001745","compound eye morphogenesis",14,1,2.03,944,"0.8890","0.6651","0.6651" +"GO:0048477","oogenesis",25,2,3.62,963,"0.8968","0.6654","0.6654" +"GO:0001932","regulation of protein phosphorylation",47,8,6.81,438,"0.3699","0.6657","0.6657" +"GO:0006955","immune response",48,6,6.96,751,"0.7162","0.6678","0.6678" +"GO:0090092","regulation of transmembrane receptor pro...",10,2,1.45,517,"0.4371","0.6693","0.6693" +"GO:0030178","negative regulation of Wnt signaling pat...",12,2,1.74,620,"0.5370","0.6694","0.6694" +"GO:0022402","cell cycle process",88,12,12.75,702,"0.6395","0.6722","0.6722" +"GO:0032989","cellular component morphogenesis",68,8,9.85,802,"0.7913","0.6722","0.6722" +"GO:0003015","heart process",11,0,1.59,1056,"1.0000","0.6763","0.6763" +"GO:0060047","heart contraction",11,0,1.59,1057,"1.0000","0.6763","0.6763" +"GO:0017038","protein import",17,2,2.46,762,"0.7300","0.6765","0.6765" +"GO:0034504","protein localization to nucleus",17,2,2.46,763,"0.7300","0.6765","0.6765" +"GO:0071900","regulation of protein serine/threonine k...",14,3,2.03,413,"0.3311","0.6778","0.6778" +"GO:0098655","cation transmembrane transport",34,7,4.93,302,"0.2129","0.6781","0.6781" +"GO:0009628","response to abiotic stimulus",68,12,9.85,356,"0.2737","0.6784","0.6784" +"GO:0006082","organic acid metabolic process",71,10,10.29,663,"0.5924","0.6788","0.6788" +"GO:0019752","carboxylic acid metabolic process",71,10,10.29,664,"0.5924","0.6788","0.6788" +"GO:0043436","oxoacid metabolic process",71,10,10.29,665,"0.5924","0.6788","0.6788" +"GO:0009100","glycoprotein metabolic process",36,5,5.22,674,"0.6143","0.6794","0.6794" +"GO:0001822","kidney development",19,1,2.75,1016,"0.9496","0.6861","0.6861" +"GO:0051258","protein polymerization",23,2,3.33,910,"0.8676","0.6865","0.6865" +"GO:0031347","regulation of defense response",20,2,2.9,847,"0.8096","0.6873","0.6873" +"GO:0051347","positive regulation of transferase activ...",17,2,2.46,764,"0.7300","0.6877","0.6877" +"GO:0000075","cell cycle checkpoint",12,3,1.74,335,"0.2465","0.6880","0.6880" +"GO:0022604","regulation of cell morphogenesis",22,4,3.19,462,"0.3978","0.6892","0.6892" +"GO:1903362","regulation of cellular protein catabolic...",15,0,2.17,1058,"1.0000","0.6893","0.6893" +"GO:0010564","regulation of cell cycle process",27,5,3.91,425,"0.3520","0.6900","0.6900" +"GO:0045935","positive regulation of nucleobase-contai...",69,11,10,479,"0.4162","0.6916","0.6916" +"GO:0007600","sensory perception",25,1,3.62,1031,"0.9805","0.6920","0.6920" +"GO:0006935","chemotaxis",27,0,3.91,1059,"1.0000","0.6927","0.6927" +"GO:0048705","skeletal system morphogenesis",13,1,1.88,923,"0.8701","0.6948","0.6948" +"GO:0043062","extracellular structure organization",15,0,2.17,1060,"1.0000","0.6963","0.6963" +"GO:0034599","cellular response to oxidative stress",18,3,2.61,574,"0.4961","0.6973","0.6973" +"GO:0015698","inorganic anion transport",14,1,2.03,945,"0.8890","0.6981","0.6981" +"GO:0006163","purine nucleotide metabolic process",24,3,3.48,742,"0.6980","0.6986","0.6986" +"GO:0060070","canonical Wnt signaling pathway",19,3,2.75,609,"0.5343","0.7003","0.7003" +"GO:0009636","response to toxic substance",20,2,2.9,848,"0.8096","0.7003","0.7003" +"GO:0019222","regulation of metabolic process",413,78,59.85,6,"0.0038","0.0060","0.7005" +"GO:0061061","muscle structure development",46,4,6.67,984,"0.9184","0.7006","0.7006" +"GO:0060284","regulation of cell development",46,7,6.67,584,"0.5084","0.7008","0.7008" +"GO:0006720","isoprenoid metabolic process",13,1,1.88,924,"0.8701","0.7012","0.7012" +"GO:0016573","histone acetylation",16,2,2.32,731,"0.6978","0.7016","0.7016" +"GO:0032956","regulation of actin cytoskeleton organiz...",21,2,3.04,871,"0.8311","0.7028","0.7028" +"GO:0001501","skeletal system development",16,2,2.32,732,"0.6978","0.7032","0.7032" +"GO:0009792","embryo development ending in birth or eg...",53,7,7.68,715,"0.6661","0.7034","0.7034" +"GO:0009791","post-embryonic development",26,3,3.77,783,"0.7500","0.7034","0.7034" +"GO:0001933","negative regulation of protein phosphory...",13,3,1.88,371,"0.2885","0.7056","0.7056" +"GO:0016050","vesicle organization",22,2,3.19,905,"0.8503","0.7057","0.7057" +"GO:0006310","DNA recombination",19,2,2.75,797,"0.7857","0.7070","0.7070" +"GO:0003007","heart morphogenesis",20,3,2.9,630,"0.5708","0.7131","0.7131" +"GO:0007411","axon guidance",19,0,2.75,1061,"1.0000","0.7145","0.7145" +"GO:0097485","neuron projection guidance",19,0,2.75,1062,"1.0000","0.7145","0.7145" +"GO:0035239","tube morphogenesis",49,8,7.1,480,"0.4171","0.7151","0.7151" +"GO:1902883","negative regulation of response to oxida...",11,0,1.59,1063,"1.0000","0.7163","0.7163" +"GO:0070848","response to growth factor",28,5,4.06,445,"0.3828","0.7177","0.7177" +"GO:0035295","tube development",53,8,7.68,586,"0.5103","0.7188","0.7188" +"GO:0034404","nucleobase-containing small molecule bio...",10,1,1.45,817,"0.7917","0.7209","0.7209" +"GO:0032879","regulation of localization",120,18,17.39,546,"0.4769","0.7226","0.7226" +"GO:0001649","osteoblast differentiation",12,3,1.74,336,"0.2465","0.7233","0.7233" +"GO:0060429","epithelium development",70,9,10.14,746,"0.7053","0.7235","0.7235" +"GO:0030334","regulation of cell migration",27,5,3.91,426,"0.3520","0.7237","0.7237" +"GO:0045596","negative regulation of cell differentiat...",34,6,4.93,437,"0.3695","0.7238","0.7238" +"GO:0060538","skeletal muscle organ development",15,2,2.17,711,"0.6625","0.7262","0.7262" +"GO:0048584","positive regulation of response to stimu...",82,13,11.88,469,"0.4086","0.7291","0.7291" +"GO:0050776","regulation of immune response",27,3,3.91,790,"0.7731","0.7301","0.7301" +"GO:0030198","extracellular matrix organization",13,0,1.88,1064,"1.0000","0.7310","0.7310" +"GO:0035107","appendage morphogenesis",15,1,2.17,971,"0.9052","0.7315","0.7315" +"GO:0040029","regulation of gene expression, epigeneti...",20,3,2.9,631,"0.5708","0.7319","0.7319" +"GO:0044238","primary metabolic process",1233,186,178.67,279,"0.2044","0.7365","0.7365" +"GO:0007507","heart development",37,6,5.36,533,"0.4523","0.7368","0.7368" +"GO:0036503","ERAD pathway",13,3,1.88,372,"0.2885","0.7377","0.7377" +"GO:0016458","gene silencing",18,3,2.61,575,"0.4961","0.7379","0.7379" +"GO:0006814","sodium ion transport",15,1,2.17,972,"0.9052","0.7379","0.7379" +"GO:1902905","positive regulation of supramolecular fi...",20,2,2.9,849,"0.8096","0.7389","0.7389" +"GO:0046488","phosphatidylinositol metabolic process",20,4,2.9,403,"0.3274","0.7441","0.7441" +"GO:0045088","regulation of innate immune response",14,1,2.03,946,"0.8890","0.7445","0.7445" +"GO:0048736","appendage development",17,1,2.46,999,"0.9309","0.7473","0.7473" +"GO:0072359","circulatory system development",52,9,7.54,419,"0.3363","0.7482","0.7482" +"GO:0033674","positive regulation of kinase activity",13,2,1.88,655,"0.5821","0.7514","0.7514" +"GO:0045860","positive regulation of protein kinase ac...",13,2,1.88,656,"0.5821","0.7514","0.7514" +"GO:0006040","amino sugar metabolic process",13,2,1.88,657,"0.5821","0.7517","0.7517" +"GO:1901071","glucosamine-containing compound metaboli...",13,2,1.88,658,"0.5821","0.7517","0.7517" +"GO:0009150","purine ribonucleotide metabolic process",20,1,2.9,1018,"0.9570","0.7523","0.7523" +"GO:0007409","axonogenesis",26,3,3.77,784,"0.7500","0.7532","0.7532" +"GO:0061024","membrane organization",46,5,6.67,856,"0.8186","0.7540","0.7540" +"GO:0060537","muscle tissue development",27,3,3.91,791,"0.7731","0.7548","0.7548" +"GO:0009888","tissue development",101,15,14.64,580,"0.5031","0.7570","0.7570" +"GO:0050804","modulation of chemical synaptic transmis...",17,3,2.46,538,"0.4564","0.7570","0.7570" +"GO:0099177","regulation of trans-synaptic signaling",17,3,2.46,539,"0.4564","0.7570","0.7570" +"GO:0045934","negative regulation of nucleobase-contai...",54,10,7.83,337,"0.2480","0.7570","0.7570" +"GO:0007519","skeletal muscle tissue development",14,2,2.03,685,"0.6240","0.7581","0.7581" +"GO:0060828","regulation of canonical Wnt signaling pa...",15,2,2.17,712,"0.6625","0.7586","0.7586" +"GO:0072330","monocarboxylic acid biosynthetic process",11,2,1.59,564,"0.4886","0.7609","0.7609" +"GO:0016331","morphogenesis of embryonic epithelium",15,1,2.17,973,"0.9052","0.7629","0.7629" +"GO:0042176","regulation of protein catabolic process",23,1,3.33,1028,"0.9732","0.7634","0.7634" +"GO:0010927","cellular component assembly involved in ...",14,0,2.03,1065,"1.0000","0.7655","0.7655" +"GO:0006338","chromatin remodeling",12,0,1.74,1066,"1.0000","0.7682","0.7682" +"GO:0009790","embryo development",86,11,12.46,752,"0.7227","0.7698","0.7698" +"GO:0098660","inorganic ion transmembrane transport",26,5,3.77,397,"0.3213","0.7705","0.7705" +"GO:0015980","energy derivation by oxidation of organi...",10,1,1.45,818,"0.7917","0.7713","0.7713" +"GO:0042462","eye photoreceptor cell development",14,1,2.03,947,"0.8890","0.7714","0.7714" +"GO:0031334","positive regulation of protein complex a...",17,2,2.46,765,"0.7300","0.7735","0.7735" +"GO:0007041","lysosomal transport",12,2,1.74,621,"0.5370","0.7752","0.7752" +"GO:0031047","gene silencing by RNA",15,2,2.17,713,"0.6625","0.7765","0.7765" +"GO:0009101","glycoprotein biosynthetic process",32,4,4.64,744,"0.7028","0.7775","0.7775" +"GO:2000145","regulation of cell motility",28,5,4.06,446,"0.3828","0.7792","0.7792" +"GO:0048646","anatomical structure formation involved ...",59,9,8.55,568,"0.4904","0.7796","0.7796" +"GO:0033036","macromolecule localization",199,27,28.84,723,"0.6834","0.7803","0.7803" +"GO:0006733","oxidoreduction coenzyme metabolic proces...",10,2,1.45,518,"0.4371","0.7803","0.7803" +"GO:0051338","regulation of transferase activity",26,4,3.77,598,"0.5331","0.7827","0.7827" +"GO:0090287","regulation of cellular response to growt...",13,3,1.88,373,"0.2885","0.7833","0.7833" +"GO:0001701","in utero embryonic development",23,2,3.33,911,"0.8676","0.7843","0.7843" +"GO:0006352","DNA-templated transcription, initiation",14,2,2.03,686,"0.6240","0.7879","0.7879" +"GO:0048638","regulation of developmental growth",14,2,2.03,687,"0.6240","0.7898","0.7898" +"GO:0060541","respiratory system development",18,0,2.61,1067,"1.0000","0.7913","0.7913" +"GO:0050808","synapse organization",21,4,3.04,435,"0.3626","0.7914","0.7914" +"GO:0051641","cellular localization",212,33,30.72,424,"0.3513","0.7932","0.7932" +"GO:0019538","protein metabolic process",574,87,83.18,398,"0.3215","0.7985","0.7985" +"GO:0030162","regulation of proteolysis",31,2,4.49,1017,"0.9523","0.8012","0.8012" +"GO:0007368","determination of left/right symmetry",17,2,2.46,766,"0.7300","0.8018","0.8018" +"GO:0009799","specification of symmetry",17,2,2.46,767,"0.7300","0.8018","0.8018" +"GO:0009855","determination of bilateral symmetry",17,2,2.46,768,"0.7300","0.8018","0.8018" +"GO:0035966","response to topologically incorrect prot...",17,2,2.46,769,"0.7300","0.8021","0.8021" +"GO:0044237","cellular metabolic process",1176,185,170.41,73,"0.0446","0.4446","0.8031" +"GO:0045665","negative regulation of neuron differenti...",11,2,1.59,565,"0.4886","0.8032","0.8032" +"GO:0030111","regulation of Wnt signaling pathway",17,2,2.46,770,"0.7300","0.8033","0.8033" +"GO:0097435","supramolecular fiber organization",49,4,7.1,1009,"0.9401","0.8035","0.8035" +"GO:0034614","cellular response to reactive oxygen spe...",10,2,1.45,519,"0.4371","0.8041","0.8041" +"GO:1901137","carbohydrate derivative biosynthetic pro...",60,6,8.69,936,"0.8871","0.8042","0.8042" +"GO:0044093","positive regulation of molecular functio...",76,9,11.01,826,"0.7945","0.8073","0.8073" +"GO:0007420","brain development",41,7,5.94,449,"0.3828","0.8073","0.8073" +"GO:0001763","morphogenesis of a branching structure",11,0,1.59,1068,"1.0000","0.8078","0.8078" +"GO:0061138","morphogenesis of a branching epithelium",11,0,1.59,1069,"1.0000","0.8078","0.8078" +"GO:0002253","activation of immune response",11,1,1.59,861,"0.8220","0.8094","0.8094" +"GO:0032273","positive regulation of protein polymeriz...",14,1,2.03,948,"0.8890","0.8096","0.8096" +"GO:0030335","positive regulation of cell migration",13,2,1.88,659,"0.5821","0.8155","0.8155" +"GO:0000302","response to reactive oxygen species",14,3,2.03,414,"0.3311","0.8155","0.8155" +"GO:0009653","anatomical structure morphogenesis",158,19,22.9,904,"0.8492","0.8162","0.8162" +"GO:0009887","animal organ morphogenesis",78,9,11.3,857,"0.8193","0.8169","0.8169" +"GO:0016441","posttranscriptional gene silencing",12,1,1.74,889,"0.8480","0.8170","0.8170" +"GO:0031589","cell-substrate adhesion",12,1,1.74,890,"0.8480","0.8170","0.8170" +"GO:0035194","posttranscriptional gene silencing by RN...",12,1,1.74,891,"0.8480","0.8170","0.8170" +"GO:0060485","mesenchyme development",12,1,1.74,892,"0.8480","0.8170","0.8170" +"GO:0001700","embryonic development via the syncytial ...",10,1,1.45,819,"0.7917","0.8208","0.8208" +"GO:0016049","cell growth",24,3,3.48,743,"0.6980","0.8215","0.8215" +"GO:0002065","columnar/cuboidal epithelial cell differ...",20,2,2.9,850,"0.8096","0.8217","0.8217" +"GO:0016051","carbohydrate biosynthetic process",14,1,2.03,949,"0.8890","0.8237","0.8237" +"GO:0030155","regulation of cell adhesion",10,0,1.45,1070,"1.0000","0.8237","0.8237" +"GO:0042063","gliogenesis",10,0,1.45,1071,"1.0000","0.8237","0.8237" +"GO:0048754","branching morphogenesis of an epithelial...",10,0,1.45,1072,"1.0000","0.8237","0.8237" +"GO:0044262","cellular carbohydrate metabolic process",13,3,1.88,374,"0.2885","0.8246","0.8246" +"GO:0002757","immune response-activating signal transd...",10,1,1.45,820,"0.7917","0.8252","0.8252" +"GO:0002764","immune response-regulating signaling pat...",10,1,1.45,821,"0.7917","0.8252","0.8252" +"GO:0048732","gland development",17,1,2.46,1000,"0.9309","0.8258","0.8258" +"GO:1905114","cell surface receptor signaling pathway ...",29,4,4.2,679,"0.6239","0.8260","0.8260" +"GO:0050778","positive regulation of immune response",20,2,2.9,851,"0.8096","0.8276","0.8276" +"GO:0048568","embryonic organ development",40,6,5.8,591,"0.5325","0.8280","0.8280" +"GO:0046434","organophosphate catabolic process",16,2,2.32,733,"0.6978","0.8296","0.8296" +"GO:0007423","sensory organ development",64,7,9.27,877,"0.8417","0.8318","0.8318" +"GO:0015672","monovalent inorganic cation transport",27,3,3.91,792,"0.7731","0.8330","0.8330" +"GO:0021915","neural tube development",10,1,1.45,822,"0.7917","0.8353","0.8353" +"GO:0016055","Wnt signaling pathway",28,4,4.06,666,"0.5949","0.8381","0.8381" +"GO:0198738","cell-cell signaling by wnt",28,4,4.06,667,"0.5949","0.8381","0.8381" +"GO:0044085","cellular component biogenesis",176,26,25.5,569,"0.4914","0.8410","0.8410" +"GO:0006030","chitin metabolic process",11,1,1.59,862,"0.8220","0.8419","0.8419" +"GO:0043583","ear development",10,2,1.45,520,"0.4371","0.8427","0.8427" +"GO:0048839","inner ear development",10,2,1.45,521,"0.4371","0.8427","0.8427" +"GO:0009165","nucleotide biosynthetic process",26,2,3.77,978,"0.9090","0.8430","0.8430" +"GO:1901293","nucleoside phosphate biosynthetic proces...",26,2,3.77,979,"0.9090","0.8430","0.8430" +"GO:0019637","organophosphate metabolic process",102,16,14.78,465,"0.4064","0.8446","0.8446" +"GO:0019827","stem cell population maintenance",14,2,2.03,688,"0.6240","0.8448","0.8448" +"GO:0098727","maintenance of cell number",14,2,2.03,689,"0.6240","0.8448","0.8448" +"GO:0048762","mesenchymal cell differentiation",10,1,1.45,823,"0.7917","0.8451","0.8451" +"GO:0006575","cellular modified amino acid metabolic p...",11,0,1.59,1073,"1.0000","0.8467","0.8467" +"GO:0006486","protein glycosylation",31,3,4.49,900,"0.8488","0.8482","0.8482" +"GO:0043413","macromolecule glycosylation",31,3,4.49,901,"0.8488","0.8482","0.8482" +"GO:0070085","glycosylation",31,3,4.49,902,"0.8488","0.8482","0.8482" +"GO:0022613","ribonucleoprotein complex biogenesis",28,5,4.06,447,"0.3828","0.8507","0.8507" +"GO:0048666","neuron development",77,11,11.16,632,"0.5719","0.8507","0.8507" +"GO:0060322","head development",44,7,6.38,540,"0.4588","0.8516","0.8516" +"GO:0006520","cellular amino acid metabolic process",37,4,5.36,838,"0.8064","0.8516","0.8516" +"GO:0006164","purine nucleotide biosynthetic process",14,1,2.03,950,"0.8890","0.8521","0.8521" +"GO:0002066","columnar/cuboidal epithelial cell develo...",16,0,2.32,1074,"1.0000","0.8548","0.8548" +"GO:0007517","muscle organ development",28,3,4.06,830,"0.7945","0.8559","0.8559" +"GO:0043603","cellular amide metabolic process",65,8,9.42,778,"0.7467","0.8563","0.8563" +"GO:0051090","regulation of DNA-binding transcription ...",12,1,1.74,893,"0.8480","0.8570","0.8570" +"GO:0031349","positive regulation of defense response",11,1,1.59,863,"0.8220","0.8603","0.8603" +"GO:0009260","ribonucleotide biosynthetic process",13,1,1.88,925,"0.8701","0.8619","0.8619" +"GO:0046390","ribose phosphate biosynthetic process",13,1,1.88,926,"0.8701","0.8619","0.8619" +"GO:0090596","sensory organ morphogenesis",36,3,5.22,982,"0.9119","0.8628","0.8628" +"GO:1901565","organonitrogen compound catabolic proces...",96,15,13.91,481,"0.4186","0.8640","0.8640" +"GO:0006888","ER to Golgi vesicle-mediated transport",10,2,1.45,522,"0.4371","0.8642","0.8642" +"GO:0001503","ossification",15,3,2.17,443,"0.3735","0.8654","0.8654" +"GO:0019216","regulation of lipid metabolic process",13,0,1.88,1075,"1.0000","0.8656","0.8656" +"GO:0045927","positive regulation of growth",11,1,1.59,864,"0.8220","0.8662","0.8662" +"GO:0006753","nucleoside phosphate metabolic process",45,4,6.52,981,"0.9097","0.8666","0.8666" +"GO:0006909","phagocytosis",13,0,1.88,1076,"1.0000","0.8686","0.8686" +"GO:0009117","nucleotide metabolic process",44,4,6.38,964,"0.9002","0.8694","0.8694" +"GO:0009605","response to external stimulus",90,10,13.04,907,"0.8623","0.8705","0.8705" +"GO:0006725","cellular aromatic compound metabolic pro...",591,87,85.64,530,"0.4504","0.8709","0.8709" +"GO:0045786","negative regulation of cell cycle",26,4,3.77,599,"0.5331","0.8710","0.8710" +"GO:0009152","purine ribonucleotide biosynthetic proce...",12,1,1.74,894,"0.8480","0.8719","0.8719" +"GO:0007219","Notch signaling pathway",13,2,1.88,660,"0.5821","0.8721","0.8721" +"GO:0009798","axis specification",11,2,1.59,566,"0.4886","0.8724","0.8724" +"GO:0007417","central nervous system development",53,8,7.68,587,"0.5103","0.8735","0.8735" +"GO:0051321","meiotic cell cycle",16,1,2.32,987,"0.9190","0.8751","0.8751" +"GO:1903311","regulation of mRNA metabolic process",16,1,2.32,988,"0.9190","0.8751","0.8751" +"GO:0006022","aminoglycan metabolic process",14,1,2.03,951,"0.8890","0.8754","0.8754" +"GO:0010721","negative regulation of cell development",16,2,2.32,734,"0.6978","0.8755","0.8755" +"GO:0044092","negative regulation of molecular functio...",25,4,3.62,578,"0.5005","0.8789","0.8789" +"GO:0032535","regulation of cellular component size",21,1,3.04,1023,"0.9632","0.8805","0.8805" +"GO:0040012","regulation of locomotion",35,6,5.07,455,"0.3972","0.8809","0.8809" +"GO:0008152","metabolic process",1450,221,210.12,133,"0.0944","0.5137","0.8814" +"GO:2000147","positive regulation of cell motility",14,2,2.03,690,"0.6240","0.8834","0.8834" +"GO:0061564","axon development",31,3,4.49,903,"0.8488","0.8839","0.8839" +"GO:0034641","cellular nitrogen compound metabolic pro...",630,91,91.29,622,"0.5394","0.8840","0.8840" +"GO:0006412","translation",43,6,6.23,672,"0.6074","0.8850","0.8850" +"GO:0040017","positive regulation of locomotion",19,2,2.75,798,"0.7857","0.8866","0.8866" +"GO:1900407","regulation of cellular response to oxida...",10,0,1.45,1077,"1.0000","0.8866","0.8866" +"GO:1900408","negative regulation of cellular response...",10,0,1.45,1078,"1.0000","0.8866","0.8866" +"GO:0030433","ubiquitin-dependent ERAD pathway",10,2,1.45,523,"0.4371","0.8875","0.8875" +"GO:0006397","mRNA processing",33,1,4.78,1037,"0.9945","0.8877","0.8877" +"GO:0098609","cell-cell adhesion",34,3,4.93,959,"0.8902","0.8900","0.8900" +"GO:0090066","regulation of anatomical structure size",24,1,3.48,1029,"0.9771","0.8907","0.8907" +"GO:0001101","response to acid chemical",17,2,2.46,771,"0.7300","0.8917","0.8917" +"GO:0006518","peptide metabolic process",54,7,7.83,724,"0.6859","0.8919","0.8919" +"GO:0016071","mRNA metabolic process",58,8,8.4,677,"0.6190","0.8931","0.8931" +"GO:0048562","embryonic organ morphogenesis",23,3,3.33,718,"0.6691","0.8933","0.8933" +"GO:0050768","negative regulation of neurogenesis",14,2,2.03,691,"0.6240","0.8945","0.8945" +"GO:0008104","protein localization",171,23,24.78,725,"0.6908","0.8945","0.8945" +"GO:1901564","organonitrogen compound metabolic proces...",687,100,99.55,576,"0.5003","0.8955","0.8955" +"GO:0032101","regulation of response to external stimu...",13,1,1.88,927,"0.8701","0.8964","0.8964" +"GO:0055086","nucleobase-containing small molecule met...",58,4,8.4,1030,"0.9775","0.8972","0.8972" +"GO:0006139","nucleobase-containing compound metabolic...",575,84,83.32,549,"0.4871","0.8979","0.8979" +"GO:0034220","ion transmembrane transport",65,8,9.42,779,"0.7467","0.9010","0.9010" +"GO:0040008","regulation of growth",32,4,4.64,745,"0.7028","0.9010","0.9010" +"GO:2000116","regulation of cysteine-type endopeptidas...",11,1,1.59,865,"0.8220","0.9015","0.9015" +"GO:0055114","oxidation-reduction process",93,10,13.48,937,"0.8878","0.9066","0.9066" +"GO:0090407","organophosphate biosynthetic process",51,7,7.39,695,"0.6242","0.9079","0.9079" +"GO:0043043","peptide biosynthetic process",45,6,6.52,706,"0.6535","0.9094","0.9094" +"GO:0003407","neural retina development",12,1,1.74,895,"0.8480","0.9095","0.9095" +"GO:0051961","negative regulation of nervous system de...",16,2,2.32,735,"0.6978","0.9104","0.9104" +"GO:0050953","sensory perception of light stimulus",10,1,1.45,824,"0.7917","0.9131","0.9131" +"GO:0051098","regulation of binding",12,1,1.74,896,"0.8480","0.9132","0.9132" +"GO:0052547","regulation of peptidase activity",12,1,1.74,897,"0.8480","0.9144","0.9144" +"GO:0052548","regulation of endopeptidase activity",12,1,1.74,898,"0.8480","0.9144","0.9144" +"GO:0044281","small molecule metabolic process",160,20,23.19,835,"0.8032","0.9156","0.9156" +"GO:0006457","protein folding",25,1,3.62,1032,"0.9805","0.9160","0.9160" +"GO:0006913","nucleocytoplasmic transport",24,2,3.48,934,"0.8830","0.9186","0.9186" +"GO:0051169","nuclear transport",24,2,3.48,935,"0.8830","0.9186","0.9186" +"GO:0006807","nitrogen compound metabolic process",1124,165,162.88,483,"0.4226","0.9206","0.9206" +"GO:0051495","positive regulation of cytoskeleton orga...",21,2,3.04,872,"0.8311","0.9226","0.9226" +"GO:0033365","protein localization to organelle",45,5,6.52,834,"0.8030","0.9241","0.9241" +"GO:1901360","organic cyclic compound metabolic proces...",610,88,88.39,623,"0.5452","0.9243","0.9243" +"GO:0046530","photoreceptor cell differentiation",19,2,2.75,799,"0.7857","0.9258","0.9258" +"GO:0003012","muscle system process",18,1,2.61,1012,"0.9410","0.9296","0.9296" +"GO:0060042","retina morphogenesis in camera-type eye",14,1,2.03,952,"0.8890","0.9299","0.9299" +"GO:0032970","regulation of actin filament-based proce...",27,2,3.91,994,"0.9199","0.9311","0.9311" +"GO:0006400","tRNA modification",14,1,2.03,953,"0.8890","0.9327","0.9327" +"GO:0001754","eye photoreceptor cell differentiation",17,1,2.46,1001,"0.9309","0.9334","0.9334" +"GO:0048593","camera-type eye morphogenesis",17,1,2.46,1002,"0.9309","0.9334","0.9334" +"GO:0051726","regulation of cell cycle",61,7,8.84,833,"0.8030","0.9336","0.9336" +"GO:0051272","positive regulation of cellular componen...",15,2,2.17,714,"0.6625","0.9347","0.9347" +"GO:0031032","actomyosin structure organization",20,2,2.9,852,"0.8096","0.9367","0.9367" +"GO:1901654","response to ketone",16,1,2.32,989,"0.9190","0.9372","0.9372" +"GO:0000375","RNA splicing, via transesterification re...",17,1,2.46,1003,"0.9309","0.9397","0.9397" +"GO:0000377","RNA splicing, via transesterification re...",17,1,2.46,1004,"0.9309","0.9397","0.9397" +"GO:0000398","mRNA splicing, via spliceosome",17,1,2.46,1005,"0.9309","0.9397","0.9397" +"GO:0048871","multicellular organismal homeostasis",14,1,2.03,954,"0.8890","0.9407","0.9407" +"GO:0071214","cellular response to abiotic stimulus",14,2,2.03,692,"0.6240","0.9414","0.9414" +"GO:0104004","cellular response to environmental stimu...",14,2,2.03,693,"0.6240","0.9414","0.9414" +"GO:0071704","organic substance metabolic process",1289,196,186.79,195,"0.1441","0.6165","0.9427" +"GO:0006066","alcohol metabolic process",11,0,1.59,1079,"1.0000","0.9428","0.9428" +"GO:1903046","meiotic cell cycle process",15,1,2.17,974,"0.9052","0.9444","0.9444" +"GO:0016072","rRNA metabolic process",16,1,2.32,990,"0.9190","0.9477","0.9477" +"GO:0030900","forebrain development",17,1,2.46,1006,"0.9309","0.9481","0.9481" +"GO:0034622","cellular protein-containing complex asse...",57,8,8.26,669,"0.5982","0.9482","0.9482" +"GO:0006936","muscle contraction",13,0,1.88,1080,"1.0000","0.9487","0.9487" +"GO:0006323","DNA packaging",14,2,2.03,694,"0.6240","0.9492","0.9492" +"GO:0008380","RNA splicing",25,3,3.62,753,"0.7250","0.9500","0.9500" +"GO:0046483","heterocycle metabolic process",593,85,85.93,633,"0.5744","0.9508","0.9508" +"GO:0009451","RNA modification",23,2,3.33,912,"0.8676","0.9514","0.9514" +"GO:0006364","rRNA processing",14,1,2.03,955,"0.8890","0.9541","0.9541" +"GO:0071103","DNA conformation change",18,2,2.61,786,"0.7592","0.9563","0.9563" +"GO:0060041","retina development in camera-type eye",18,1,2.61,1013,"0.9410","0.9567","0.9567" +"GO:0030707","ovarian follicle cell development",15,0,2.17,1081,"1.0000","0.9607","0.9607" +"GO:0048592","eye morphogenesis",34,3,4.93,960,"0.8902","0.9621","0.9621" +"GO:0043604","amide biosynthetic process",51,6,7.39,788,"0.7705","0.9627","0.9627" +"GO:0051270","regulation of cellular component movemen...",34,5,4.93,625,"0.5608","0.9696","0.9696" +"GO:0001894","tissue homeostasis",12,0,1.74,1082,"1.0000","0.9714","0.9714" +"GO:0071824","protein-DNA complex subunit organization",16,1,2.32,991,"0.9190","0.9724","0.9724" +"GO:0040007","growth",52,6,7.54,800,"0.7869","0.9730","0.9730" +"GO:0006508","proteolysis",150,22,21.74,589,"0.5128","0.9763","0.9763" +"GO:0036473","cell death in response to oxidative stre...",11,1,1.59,866,"0.8220","0.9775","0.9775" +"GO:0045444","fat cell differentiation",10,1,1.45,825,"0.7917","0.9776","0.9776" +"GO:0048589","developmental growth",36,4,5.22,801,"0.7883","0.9777","0.9777" +"GO:0007010","cytoskeleton organization",84,9,12.17,932,"0.8803","0.9791","0.9791" +"GO:0034613","cellular protein localization",132,18,19.13,705,"0.6526","0.9808","0.9808" +"GO:0006418","tRNA aminoacylation for protein translat...",11,1,1.59,867,"0.8220","0.9816","0.9816" +"GO:0043038","amino acid activation",11,1,1.59,868,"0.8220","0.9816","0.9816" +"GO:0043039","tRNA aminoacylation",11,1,1.59,869,"0.8220","0.9816","0.9816" +"GO:0042060","wound healing",17,2,2.46,772,"0.7300","0.9848","0.9848" +"GO:0042254","ribosome biogenesis",18,2,2.61,787,"0.7592","0.9853","0.9853" +"GO:0043170","macromolecule metabolic process",1032,158,149.55,241,"0.1685","0.5809","0.9868" +"GO:0030029","actin filament-based process",56,5,8.11,995,"0.9258","0.9868","0.9868" +"GO:0043010","camera-type eye development",28,1,4.06,1036,"0.9879","0.9872","0.9872" +"GO:0009611","response to wounding",21,3,3.04,670,"0.6055","0.9874","0.9874" +"GO:0030036","actin cytoskeleton organization",52,5,7.54,961,"0.8924","0.9877","0.9877" +"GO:0051186","cofactor metabolic process",33,4,4.78,754,"0.7263","0.9879","0.9879" +"GO:0065004","protein-DNA complex assembly",14,1,2.03,956,"0.8890","0.9882","0.9882" +"GO:0009266","response to temperature stimulus",21,2,3.04,873,"0.8311","0.9884","0.9884" +"GO:0034470","ncRNA processing",42,4,6.09,931,"0.8786","0.9885","0.9885" +"GO:1901135","carbohydrate derivative metabolic proces...",102,9,14.78,1025,"0.9713","0.9892","0.9892" +"GO:0042692","muscle cell differentiation",18,1,2.61,1014,"0.9410","0.9900","0.9900" +"GO:0034660","ncRNA metabolic process",58,5,8.4,1008,"0.9388","0.9905","0.9905" +"GO:0009408","response to heat",17,1,2.46,1007,"0.9309","0.9906","0.9906" +"GO:0009612","response to mechanical stimulus",12,1,1.74,899,"0.8480","0.9912","0.9912" +"GO:0051188","cofactor biosynthetic process",23,3,3.33,719,"0.6691","0.9916","0.9916" +"GO:0051146","striated muscle cell differentiation",15,1,2.17,975,"0.9052","0.9917","0.9917" +"GO:0055001","muscle cell development",15,1,2.17,976,"0.9052","0.9917","0.9917" +"GO:0055002","striated muscle cell development",14,1,2.03,957,"0.8890","0.9923","0.9923" +"GO:0006732","coenzyme metabolic process",21,2,3.04,874,"0.8311","0.9923","0.9923" +"GO:0001654","eye development",52,3,7.54,1033,"0.9868","0.9931","0.9931" +"GO:0048880","sensory system development",52,3,7.54,1034,"0.9868","0.9931","0.9931" +"GO:0150063","visual system development",52,3,7.54,1035,"0.9868","0.9931","0.9931" +"GO:0006399","tRNA metabolic process",38,3,5.51,997,"0.9296","0.9938","0.9938" +"GO:0009108","coenzyme biosynthetic process",16,2,2.32,736,"0.6978","0.9941","0.9941" +"GO:0060249","anatomical structure homeostasis",20,0,2.9,1083,"1.0000","0.9941","0.9941" +"GO:0034728","nucleosome organization",10,0,1.45,1084,"1.0000","0.9942","0.9942" +"GO:0030239","myofibril assembly",10,0,1.45,1085,"1.0000","0.9945","0.9945" +"GO:0061077","chaperone-mediated protein folding",10,0,1.45,1086,"1.0000","0.9945","0.9945" +"GO:0008033","tRNA processing",26,2,3.77,980,"0.9090","0.9953","0.9953" +"GO:0035148","tube formation",10,0,1.45,1087,"1.0000","0.9971","0.9971" +"GO:0072522","purine-containing compound biosynthetic ...",15,1,2.17,977,"0.9052","0.9977","0.9977" +"GO:0048511","rhythmic process",16,0,2.32,1088,"1.0000","0.9979","0.9979" +"GO:0050673","epithelial cell proliferation",13,1,1.88,928,"0.8701","0.9983","0.9983" +"GO:1901566","organonitrogen compound biosynthetic pro...",146,16,21.16,992,"0.9196","0.9984","0.9984" +"GO:0070727","cellular macromolecule localization",134,18,19.42,722,"0.6789","0.9995","0.9995" +"GO:0045861","negative regulation of proteolysis",11,0,1.59,1089,"1.0000","0.9999","0.9999" +"GO:0006396","RNA processing",104,7,15.07,1038,"0.9961","1.0000","1.0000" +"GO:0008150","biological_process",2229,323,323,1090,"1.0000","1.0000","1.0000" +"GO:0010467","gene expression",464,75,67.24,191,"0.1412","0.4501","1.0000" diff --git a/GO_enrichment_output/contrast_phoretic_arresting_upregulated.csv b/GO_enrichment_output/contrast_phoretic_arresting_upregulated.csv index 6e024f1..c953284 100644 --- a/GO_enrichment_output/contrast_phoretic_arresting_upregulated.csv +++ b/GO_enrichment_output/contrast_phoretic_arresting_upregulated.csv @@ -1,6 +1,3070 @@ "GO.ID","Term","Annotated","Significant","Expected","Rank in classicFisher","classicFisher","classicKS","elimKS" -"GO:0006030","chitin metabolic process",30,7,2.5,147,"0.0099","9.7e-05","9.7e-05" -"GO:0006412","translation",192,16,16.02,1485,"0.5435","3.0e-05","0.00023" -"GO:0015986","ATP synthesis coupled proton transport",13,3,1.08,437,"0.0879","0.00047","0.00047" -"GO:0042255","ribosome assembly",13,5,1.08,66,"0.0029","0.00050","0.00050" -"GO:0043462","regulation of ATPase activity",9,4,0.75,74,"0.0043","0.00058","0.00058" +"GO:0006030","chitin metabolic process",30,7,2.5,147,"0.00990","9.7e-05","9.7e-05" +"GO:0006412","translation",192,16,16.02,1485,"0.54346","3.0e-05","0.00023" +"GO:0015986","ATP synthesis coupled proton transport",13,3,1.08,437,"0.08786","0.00047","0.00047" +"GO:0042255","ribosome assembly",13,5,1.08,66,"0.00286","0.00050","0.00050" +"GO:0043462","regulation of ATPase activity",9,4,0.75,74,"0.00426","0.00058","0.00058" +"GO:0033108","mitochondrial respiratory chain complex ...",16,0,1.34,1891,"1.00000","0.00271","0.00271" +"GO:0001892","embryonic placenta development",8,2,0.67,540,"0.13903","0.00344","0.00344" +"GO:0016485","protein processing",12,5,1,19,"0.00188","0.00422","0.00422" +"GO:0032355","response to estradiol",10,6,0.83,1,"5e-05","0.00432","0.00432" +"GO:0090307","mitotic spindle assembly",5,4,0.42,2,"0.00022","0.00540","0.00540" +"GO:0022904","respiratory electron transport chain",15,1,1.25,1753,"0.73033","0.00634","0.00634" +"GO:0006415","translational termination",10,0,0.83,1892,"1.00000","0.00831","0.00831" +"GO:0055076","transition metal ion homeostasis",9,3,0.75,271,"0.03303","0.00891","0.00891" +"GO:0035215","genital disc development",3,2,0.25,187,"0.01966","0.00916","0.00916" +"GO:0010970","transport along microtubule",13,6,1.08,3,"0.00033","0.01054","0.01054" +"GO:0099111","microtubule-based transport",13,6,1.08,4,"0.00033","0.01054","0.01054" +"GO:0048863","stem cell differentiation",15,4,1.25,262,"0.03094","0.01101","0.01101" +"GO:1903900","regulation of viral life cycle",9,5,0.75,5,"0.00037","0.01108","0.01108" +"GO:0010257","NADH dehydrogenase complex assembly",13,0,1.08,1893,"1.00000","0.01134","0.01134" +"GO:0032981","mitochondrial respiratory chain complex ...",13,0,1.08,1894,"1.00000","0.01134","0.01134" +"GO:1903332","regulation of protein folding",7,3,0.58,160,"0.01560","0.01160","0.01160" +"GO:0000027","ribosomal large subunit assembly",7,3,0.58,161,"0.01560","0.01200","0.01200" +"GO:1902626","assembly of large subunit precursor of p...",3,2,0.25,188,"0.01966","0.01208","0.01208" +"GO:0042773","ATP synthesis coupled electron transport",14,0,1.17,1895,"1.00000","0.01231","0.01231" +"GO:0072321","chaperone-mediated protein transport",6,4,0.5,8,"0.00062","0.01379","0.01379" +"GO:0030308","negative regulation of cell growth",12,3,1,398,"0.07185","0.01396","0.01396" +"GO:0032781","positive regulation of ATPase activity",5,2,0.42,363,"0.05858","0.01466","0.01466" +"GO:1900407","regulation of cellular response to oxida...",9,5,0.75,6,"0.00037","0.01512","0.01512" +"GO:0030705","cytoskeleton-dependent intracellular tra...",14,6,1.17,7,"0.00054","0.01560","0.01560" +"GO:0016246","RNA interference",4,3,0.33,22,"0.00216","0.01599","0.01599" +"GO:0009150","purine ribonucleotide metabolic process",73,10,6.09,412,"0.07854","0.00018","0.01712" +"GO:0045926","negative regulation of growth",17,4,1.42,340,"0.04731","0.01807","0.01807" +"GO:0001913","T cell mediated cytotoxicity",4,3,0.33,23,"0.00216","0.01845","0.01845" +"GO:0001914","regulation of T cell mediated cytotoxici...",4,3,0.33,24,"0.00216","0.01845","0.01845" +"GO:0001916","positive regulation of T cell mediated c...",4,3,0.33,25,"0.00216","0.01845","0.01845" +"GO:0002250","adaptive immune response",4,3,0.33,26,"0.00216","0.01845","0.01845" +"GO:0002456","T cell mediated immunity",4,3,0.33,27,"0.00216","0.01845","0.01845" +"GO:0002460","adaptive immune response based on somati...",4,3,0.33,28,"0.00216","0.01845","0.01845" +"GO:0002709","regulation of T cell mediated immunity",4,3,0.33,29,"0.00216","0.01845","0.01845" +"GO:0002711","positive regulation of T cell mediated i...",4,3,0.33,30,"0.00216","0.01845","0.01845" +"GO:0002819","regulation of adaptive immune response",4,3,0.33,31,"0.00216","0.01845","0.01845" +"GO:0002821","positive regulation of adaptive immune r...",4,3,0.33,32,"0.00216","0.01845","0.01845" +"GO:0002822","regulation of adaptive immune response b...",4,3,0.33,33,"0.00216","0.01845","0.01845" +"GO:0002824","positive regulation of adaptive immune r...",4,3,0.33,34,"0.00216","0.01845","0.01845" +"GO:0006622","protein targeting to lysosome",4,3,0.33,35,"0.00216","0.01845","0.01845" +"GO:0010045","response to nickel cation",4,3,0.33,36,"0.00216","0.01845","0.01845" +"GO:0016191","synaptic vesicle uncoating",4,3,0.33,37,"0.00216","0.01845","0.01845" +"GO:0033120","positive regulation of RNA splicing",4,3,0.33,38,"0.00216","0.01845","0.01845" +"GO:0044849","estrous cycle",4,3,0.33,39,"0.00216","0.01845","0.01845" +"GO:0048026","positive regulation of mRNA splicing, vi...",4,3,0.33,40,"0.00216","0.01845","0.01845" +"GO:0048488","synaptic vesicle endocytosis",4,3,0.33,41,"0.00216","0.01845","0.01845" +"GO:0050685","positive regulation of mRNA processing",4,3,0.33,42,"0.00216","0.01845","0.01845" +"GO:0061462","protein localization to lysosome",4,3,0.33,43,"0.00216","0.01845","0.01845" +"GO:0061684","chaperone-mediated autophagy",4,3,0.33,44,"0.00216","0.01845","0.01845" +"GO:0061738","late endosomal microautophagy",4,3,0.33,45,"0.00216","0.01845","0.01845" +"GO:0061740","protein targeting to lysosome involved i...",4,3,0.33,46,"0.00216","0.01845","0.01845" +"GO:0061741","chaperone-mediated protein transport inv...",4,3,0.33,47,"0.00216","0.01845","0.01845" +"GO:0071211","protein targeting to vacuole involved in...",4,3,0.33,48,"0.00216","0.01845","0.01845" +"GO:0071276","cellular response to cadmium ion",4,3,0.33,49,"0.00216","0.01845","0.01845" +"GO:0072318","clathrin coat disassembly",4,3,0.33,50,"0.00216","0.01845","0.01845" +"GO:0072319","vesicle uncoating",4,3,0.33,51,"0.00216","0.01845","0.01845" +"GO:0097212","lysosomal membrane organization",4,3,0.33,52,"0.00216","0.01845","0.01845" +"GO:0097213","regulation of lysosomal membrane permeab...",4,3,0.33,53,"0.00216","0.01845","0.01845" +"GO:0097214","positive regulation of lysosomal membran...",4,3,0.33,54,"0.00216","0.01845","0.01845" +"GO:0140238","presynaptic endocytosis",4,3,0.33,55,"0.00216","0.01845","0.01845" +"GO:1903334","positive regulation of protein folding",4,3,0.33,56,"0.00216","0.01845","0.01845" +"GO:1904592","positive regulation of protein refolding",4,3,0.33,57,"0.00216","0.01845","0.01845" +"GO:1904764","chaperone-mediated autophagy translocati...",4,3,0.33,58,"0.00216","0.01845","0.01845" +"GO:1990832","slow axonal transport",4,3,0.33,59,"0.00216","0.01845","0.01845" +"GO:1990834","response to odorant",4,3,0.33,60,"0.00216","0.01845","0.01845" +"GO:0008285","negative regulation of cell proliferatio...",16,3,1.34,562,"0.14343","0.01974","0.01974" +"GO:0009409","response to cold",3,2,0.25,189,"0.01966","0.02002","0.02002" +"GO:0045069","regulation of viral genome replication",7,4,0.58,13,"0.00135","0.02017","0.02017" +"GO:1900408","negative regulation of cellular response...",7,4,0.58,14,"0.00135","0.02017","0.02017" +"GO:1902883","negative regulation of response to oxida...",7,4,0.58,15,"0.00135","0.02017","0.02017" +"GO:1903202","negative regulation of oxidative stress-...",7,4,0.58,16,"0.00135","0.02017","0.02017" +"GO:0009199","ribonucleoside triphosphate metabolic pr...",50,9,4.17,217,"0.02031","8.6e-05","0.02080" +"GO:0009205","purine ribonucleoside triphosphate metab...",50,9,4.17,218,"0.02031","8.6e-05","0.02080" +"GO:0009141","nucleoside triphosphate metabolic proces...",52,9,4.34,251,"0.02578","9.6e-05","0.02099" +"GO:0032543","mitochondrial translation",15,1,1.25,1754,"0.73033","0.02225","0.02225" +"GO:0140053","mitochondrial gene expression",15,1,1.25,1755,"0.73033","0.02225","0.02225" +"GO:0046916","cellular transition metal ion homeostasi...",8,2,0.67,541,"0.13903","0.02348","0.02348" +"GO:1903902","positive regulation of viral life cycle",7,4,0.58,17,"0.00135","0.02411","0.02411" +"GO:0009259","ribonucleotide metabolic process",74,10,6.18,434,"0.08448","0.00029","0.02439" +"GO:0032091","negative regulation of protein binding",6,0,0.5,1896,"1.00000","0.02556","0.02556" +"GO:0006623","protein targeting to vacuole",5,3,0.42,80,"0.00506","0.02562","0.02562" +"GO:1902882","regulation of response to oxidative stre...",10,5,0.83,11,"0.00069","0.02609","0.02609" +"GO:0034605","cellular response to heat",11,4,0.92,143,"0.00975","0.02620","0.02620" +"GO:0048639","positive regulation of developmental gro...",4,2,0.33,285,"0.03717","0.02625","0.02625" +"GO:0009880","embryonic pattern specification",8,1,0.67,1381,"0.50244","0.02695","0.02695" +"GO:0090083","regulation of inclusion body assembly",8,3,0.67,227,"0.02344","0.02710","0.02710" +"GO:0090084","negative regulation of inclusion body as...",8,3,0.67,228,"0.02344","0.02710","0.02710" +"GO:0010498","proteasomal protein catabolic process",34,5,2.84,575,"0.14871","0.02713","0.02713" +"GO:0051602","response to electrical stimulus",8,1,0.67,1382,"0.50244","0.02939","0.02939" +"GO:0051100","negative regulation of binding",8,0,0.67,1897,"1.00000","0.02939","0.02939" +"GO:0001558","regulation of cell growth",18,4,1.5,349,"0.05699","0.03085","0.03085" +"GO:0007413","axonal fasciculation",3,2,0.25,190,"0.01966","0.03154","0.03154" +"GO:0106030","neuron projection fasciculation",3,2,0.25,191,"0.01966","0.03154","0.03154" +"GO:0042026","protein refolding",11,4,0.92,144,"0.00975","0.03205","0.03205" +"GO:1900034","regulation of cellular response to heat",9,3,0.75,272,"0.03303","0.03211","0.03211" +"GO:0009144","purine nucleoside triphosphate metabolic...",51,9,4.26,225,"0.02293","0.00017","0.03250" +"GO:0019693","ribose phosphate metabolic process",77,10,6.43,471,"0.10388","0.00048","0.03311" +"GO:0042775","mitochondrial ATP synthesis coupled elec...",12,0,1,1898,"1.00000","0.03387","0.03387" +"GO:0006163","purine nucleotide metabolic process",75,10,6.26,448,"0.09068","0.00047","0.03398" +"GO:0014823","response to activity",10,4,0.83,105,"0.00663","0.03427","0.03427" +"GO:0008277","regulation of G protein-coupled receptor...",4,2,0.33,286,"0.03717","0.03449","0.03449" +"GO:0031112","positive regulation of microtubule polym...",4,2,0.33,287,"0.03717","0.03449","0.03449" +"GO:0031116","positive regulation of microtubule polym...",4,2,0.33,288,"0.03717","0.03449","0.03449" +"GO:0007389","pattern specification process",29,4,2.42,674,"0.21916","0.03467","0.03467" +"GO:0008088","axo-dendritic transport",8,4,0.67,61,"0.00253","0.03559","0.03559" +"GO:0019079","viral genome replication",8,4,0.67,62,"0.00253","0.03559","0.03559" +"GO:1903201","regulation of oxidative stress-induced c...",8,4,0.67,63,"0.00253","0.03559","0.03559" +"GO:0034612","response to tumor necrosis factor",5,2,0.42,364,"0.05858","0.03626","0.03626" +"GO:0071356","cellular response to tumor necrosis fact...",5,2,0.42,365,"0.05858","0.03626","0.03626" +"GO:0006465","signal peptide processing",4,1,0.33,890,"0.29444","0.03647","0.03647" +"GO:0006879","cellular iron ion homeostasis",5,2,0.42,366,"0.05858","0.03747","0.03747" +"GO:0055072","iron ion homeostasis",5,2,0.42,367,"0.05858","0.03747","0.03747" +"GO:0034599","cellular response to oxidative stress",15,6,1.25,12,"0.00083","0.04037","0.04037" +"GO:0044772","mitotic cell cycle phase transition",24,3,2,1021,"0.32386","0.04044","0.04044" +"GO:0060828","regulation of canonical Wnt signaling pa...",10,2,0.83,638,"0.20055","0.04152","0.04152" +"GO:0007141","male meiosis I",4,2,0.33,289,"0.03717","0.04174","0.04174" +"GO:0007041","lysosomal transport",8,4,0.67,64,"0.00253","0.04243","0.04243" +"GO:0009735","response to cytokinin",3,0,0.25,1899,"1.00000","0.04271","0.04271" +"GO:0060711","labyrinthine layer development",6,1,0.5,1204,"0.40746","0.04316","0.04316" +"GO:0007606","sensory perception of chemical stimulus",8,4,0.67,65,"0.00253","0.04330","0.04330" +"GO:0008038","neuron recognition",7,3,0.58,162,"0.01560","0.04335","0.04335" +"GO:0022900","electron transport chain",18,1,1.5,1824,"0.79269","0.00082","0.04353" +"GO:0050792","regulation of viral process",12,5,1,20,"0.00188","0.04366","0.04366" +"GO:0007111","meiosis II cytokinesis",3,0,0.25,1900,"1.00000","0.04488","0.04488" +"GO:0033206","meiotic cytokinesis",3,0,0.25,1901,"1.00000","0.04488","0.04488" +"GO:0061983","meiosis II cell cycle process",3,0,0.25,1902,"1.00000","0.04488","0.04488" +"GO:0001906","cell killing",5,3,0.42,81,"0.00506","0.04522","0.04522" +"GO:0001909","leukocyte mediated cytotoxicity",5,3,0.42,82,"0.00506","0.04522","0.04522" +"GO:0001910","regulation of leukocyte mediated cytotox...",5,3,0.42,83,"0.00506","0.04522","0.04522" +"GO:0001912","positive regulation of leukocyte mediate...",5,3,0.42,84,"0.00506","0.04522","0.04522" +"GO:0002449","lymphocyte mediated immunity",5,3,0.42,85,"0.00506","0.04522","0.04522" +"GO:0002703","regulation of leukocyte mediated immunit...",5,3,0.42,86,"0.00506","0.04522","0.04522" +"GO:0002705","positive regulation of leukocyte mediate...",5,3,0.42,87,"0.00506","0.04522","0.04522" +"GO:0002706","regulation of lymphocyte mediated immuni...",5,3,0.42,88,"0.00506","0.04522","0.04522" +"GO:0002708","positive regulation of lymphocyte mediat...",5,3,0.42,89,"0.00506","0.04522","0.04522" +"GO:0007608","sensory perception of smell",5,3,0.42,90,"0.00506","0.04522","0.04522" +"GO:0031341","regulation of cell killing",5,3,0.42,91,"0.00506","0.04522","0.04522" +"GO:0031343","positive regulation of cell killing",5,3,0.42,92,"0.00506","0.04522","0.04522" +"GO:0036465","synaptic vesicle recycling",5,3,0.42,93,"0.00506","0.04522","0.04522" +"GO:0042698","ovulation cycle",5,3,0.42,94,"0.00506","0.04522","0.04522" +"GO:0044788","modulation by host of viral process",5,3,0.42,95,"0.00506","0.04522","0.04522" +"GO:0044794","positive regulation by host of viral pro...",5,3,0.42,96,"0.00506","0.04522","0.04522" +"GO:0044827","modulation by host of viral genome repli...",5,3,0.42,97,"0.00506","0.04522","0.04522" +"GO:0044829","positive regulation by host of viral gen...",5,3,0.42,98,"0.00506","0.04522","0.04522" +"GO:0061083","regulation of protein refolding",5,3,0.42,99,"0.00506","0.04522","0.04522" +"GO:1901032","negative regulation of response to react...",5,3,0.42,100,"0.00506","0.04522","0.04522" +"GO:1903206","negative regulation of hydrogen peroxide...",5,3,0.42,101,"0.00506","0.04522","0.04522" +"GO:1905710","positive regulation of membrane permeabi...",5,3,0.42,102,"0.00506","0.04522","0.04522" +"GO:2001039","negative regulation of cellular response...",5,3,0.42,103,"0.00506","0.04522","0.04522" +"GO:0035434","copper ion transmembrane transport",3,0,0.25,1903,"1.00000","0.04672","0.04672" +"GO:0019058","viral life cycle",14,5,1.17,71,"0.00415","0.04723","0.04723" +"GO:0007605","sensory perception of sound",6,2,0.5,416,"0.08312","0.04841","0.04841" +"GO:0006414","translational elongation",17,1,1.42,1804,"0.77369","0.04917","0.04917" +"GO:0072665","protein localization to vacuole",8,3,0.67,229,"0.02344","0.05161","0.05161" +"GO:0072666","establishment of protein localization to...",8,3,0.67,230,"0.02344","0.05161","0.05161" +"GO:0045862","positive regulation of proteolysis",14,4,1.17,236,"0.02424","0.05184","0.05184" +"GO:0070841","inclusion body assembly",9,3,0.75,273,"0.03303","0.05189","0.05189" +"GO:0016226","iron-sulfur cluster assembly",10,0,0.83,1904,"1.00000","0.05193","0.05193" +"GO:0031163","metallo-sulfur cluster assembly",10,0,0.83,1905,"1.00000","0.05193","0.05193" +"GO:0036503","ERAD pathway",16,3,1.34,563,"0.14343","0.05281","0.05281" +"GO:0048793","pronephros development",3,0,0.25,1906,"1.00000","0.05292","0.05292" +"GO:0040029","regulation of gene expression, epigeneti...",19,6,1.59,68,"0.00340","0.05338","0.05338" +"GO:0008299","isoprenoid biosynthetic process",9,3,0.75,274,"0.03303","0.05376","0.05376" +"GO:0043161","proteasome-mediated ubiquitin-dependent ...",31,3,2.59,1367,"0.48548","0.05420","0.05420" +"GO:0043279","response to alkaloid",6,3,0.5,114,"0.00949","0.05434","0.05434" +"GO:0036473","cell death in response to oxidative stre...",9,4,0.75,75,"0.00426","0.05530","0.05530" +"GO:0071248","cellular response to metal ion",9,4,0.75,76,"0.00426","0.05530","0.05530" +"GO:0006518","peptide metabolic process",210,21,17.53,670,"0.21636","0.00033","0.05558" +"GO:0000028","ribosomal small subunit assembly",3,1,0.25,693,"0.23012","0.05569","0.05569" +"GO:0030162","regulation of proteolysis",33,7,2.75,177,"0.01676","0.05652","0.05652" +"GO:0048806","genitalia development",4,0,0.33,1907,"1.00000","0.05691","0.05691" +"GO:0007140","male meiotic nuclear division",7,2,0.58,482,"0.11013","0.05751","0.05751" +"GO:0042273","ribosomal large subunit biogenesis",15,3,1.25,516,"0.12378","0.05874","0.05874" +"GO:0003143","embryonic heart tube morphogenesis",4,2,0.33,290,"0.03717","0.05889","0.05889" +"GO:0007368","determination of left/right symmetry",4,2,0.33,291,"0.03717","0.05889","0.05889" +"GO:0009799","specification of symmetry",4,2,0.33,292,"0.03717","0.05889","0.05889" +"GO:0009855","determination of bilateral symmetry",4,2,0.33,293,"0.03717","0.05889","0.05889" +"GO:0061371","determination of heart left/right asymme...",4,2,0.33,294,"0.03717","0.05889","0.05889" +"GO:0000578","embryonic axis specification",4,0,0.33,1908,"1.00000","0.05889","0.05889" +"GO:0035239","tube morphogenesis",32,4,2.67,869,"0.27549","0.05900","0.05900" +"GO:0072521","purine-containing compound metabolic pro...",79,11,6.59,385,"0.06077","0.00116","0.06004" +"GO:0003002","regionalization",26,2,2.17,1661,"0.65192","0.06192","0.06192" +"GO:0043248","proteasome assembly",7,1,0.58,1298,"0.45702","0.06212","0.06212" +"GO:0006119","oxidative phosphorylation",18,0,1.5,1909,"1.00000","0.06295","0.06295" +"GO:0042542","response to hydrogen peroxide",12,5,1,21,"0.00188","0.06420","0.06420" +"GO:0040018","positive regulation of multicellular org...",3,2,0.25,192,"0.01966","0.06528","0.06528" +"GO:0046034","ATP metabolic process",47,9,3.92,155,"0.01376","0.00045","0.06571" +"GO:0045927","positive regulation of growth",9,2,0.75,601,"0.16931","0.06574","0.06574" +"GO:1903046","meiotic cell cycle process",15,2,1.25,1135,"0.36000","0.06684","0.06684" +"GO:0071257","cellular response to electrical stimulus",5,1,0.42,1046,"0.35340","0.06742","0.06742" +"GO:0002121","inter-male aggressive behavior",5,0,0.42,1910,"1.00000","0.06742","0.06742" +"GO:0016441","posttranscriptional gene silencing",7,3,0.58,163,"0.01560","0.06785","0.06785" +"GO:0035194","posttranscriptional gene silencing by RN...",7,3,0.58,164,"0.01560","0.06785","0.06785" +"GO:1902903","regulation of supramolecular fiber organ...",28,6,2.34,246,"0.02499","0.06805","0.06805" +"GO:0007018","microtubule-based movement",27,6,2.25,222,"0.02106","0.06844","0.06844" +"GO:0007033","vacuole organization",14,5,1.17,72,"0.00415","0.07049","0.07049" +"GO:0051928","positive regulation of calcium ion trans...",6,3,0.5,115,"0.00949","0.07141","0.07141" +"GO:0040008","regulation of growth",37,7,3.09,261,"0.03037","0.07317","0.07317" +"GO:0002244","hematopoietic progenitor cell differenti...",5,1,0.42,1047,"0.35340","0.07340","0.07340" +"GO:0061982","meiosis I cell cycle process",7,2,0.58,483,"0.11013","0.07376","0.07376" +"GO:0042220","response to cocaine",3,2,0.25,193,"0.01966","0.07377","0.07377" +"GO:0007618","mating",3,1,0.25,694,"0.23012","0.07426","0.07426" +"GO:0000460","maturation of 5.8S rRNA",9,2,0.75,602,"0.16931","0.07475","0.07475" +"GO:0003018","vascular process in circulatory system",4,1,0.33,891,"0.29444","0.07489","0.07489" +"GO:0035296","regulation of tube diameter",4,1,0.33,892,"0.29444","0.07489","0.07489" +"GO:0050880","regulation of blood vessel size",4,1,0.33,893,"0.29444","0.07489","0.07489" +"GO:0097746","regulation of blood vessel diameter",4,1,0.33,894,"0.29444","0.07489","0.07489" +"GO:0048583","regulation of response to stimulus",187,21,15.61,456,"0.09365","0.07493","0.07493" +"GO:0045646","regulation of erythrocyte differentiatio...",9,4,0.75,77,"0.00426","0.07520","0.07520" +"GO:0071542","dopaminergic neuron differentiation",3,1,0.25,695,"0.23012","0.07703","0.07703" +"GO:0071806","protein transmembrane transport",17,4,1.42,341,"0.04731","0.07713","0.07713" +"GO:0044743","protein transmembrane import into intrac...",15,4,1.25,263,"0.03094","0.07727","0.07727" +"GO:0001654","eye development",39,5,3.25,682,"0.22198","0.07800","0.07800" +"GO:0048880","sensory system development",39,5,3.25,683,"0.22198","0.07800","0.07800" +"GO:0150063","visual system development",39,5,3.25,684,"0.22198","0.07800","0.07800" +"GO:0043903","regulation of symbiosis, encompassing mu...",14,5,1.17,73,"0.00415","0.07823","0.07823" +"GO:0070301","cellular response to hydrogen peroxide",10,4,0.83,106,"0.00663","0.07863","0.07863" +"GO:0071241","cellular response to inorganic substance",10,4,0.83,107,"0.00663","0.07863","0.07863" +"GO:0007224","smoothened signaling pathway",5,0,0.42,1911,"1.00000","0.08026","0.08026" +"GO:0048598","embryonic morphogenesis",39,7,3.25,319,"0.03938","0.08182","0.08182" +"GO:0010656","negative regulation of muscle cell apopt...",6,3,0.5,116,"0.00949","0.08208","0.08208" +"GO:0010657","muscle cell apoptotic process",6,3,0.5,117,"0.00949","0.08208","0.08208" +"GO:0010658","striated muscle cell apoptotic process",6,3,0.5,118,"0.00949","0.08208","0.08208" +"GO:0010659","cardiac muscle cell apoptotic process",6,3,0.5,119,"0.00949","0.08208","0.08208" +"GO:0010660","regulation of muscle cell apoptotic proc...",6,3,0.5,120,"0.00949","0.08208","0.08208" +"GO:0010662","regulation of striated muscle cell apopt...",6,3,0.5,121,"0.00949","0.08208","0.08208" +"GO:0010664","negative regulation of striated muscle c...",6,3,0.5,122,"0.00949","0.08208","0.08208" +"GO:0010665","regulation of cardiac muscle cell apopto...",6,3,0.5,123,"0.00949","0.08208","0.08208" +"GO:0010667","negative regulation of cardiac muscle ce...",6,3,0.5,124,"0.00949","0.08208","0.08208" +"GO:0032570","response to progesterone",6,3,0.5,125,"0.00949","0.08208","0.08208" +"GO:0036474","cell death in response to hydrogen perox...",6,3,0.5,126,"0.00949","0.08208","0.08208" +"GO:0045070","positive regulation of viral genome repl...",6,3,0.5,127,"0.00949","0.08208","0.08208" +"GO:0045639","positive regulation of myeloid cell diff...",6,3,0.5,128,"0.00949","0.08208","0.08208" +"GO:0045648","positive regulation of erythrocyte diffe...",6,3,0.5,129,"0.00949","0.08208","0.08208" +"GO:0051084","'de novo' posttranslational protein fold...",6,3,0.5,130,"0.00949","0.08208","0.08208" +"GO:0051085","chaperone cofactor-dependent protein ref...",6,3,0.5,131,"0.00949","0.08208","0.08208" +"GO:0051702","interaction with symbiont",6,3,0.5,132,"0.00949","0.08208","0.08208" +"GO:0051851","modification by host of symbiont morphol...",6,3,0.5,133,"0.00949","0.08208","0.08208" +"GO:0061635","regulation of protein complex stability",6,3,0.5,134,"0.00949","0.08208","0.08208" +"GO:1901031","regulation of response to reactive oxyge...",6,3,0.5,135,"0.00949","0.08208","0.08208" +"GO:1903205","regulation of hydrogen peroxide-induced ...",6,3,0.5,136,"0.00949","0.08208","0.08208" +"GO:1903313","positive regulation of mRNA metabolic pr...",6,3,0.5,137,"0.00949","0.08208","0.08208" +"GO:2001024","negative regulation of response to drug",6,3,0.5,138,"0.00949","0.08208","0.08208" +"GO:2001038","regulation of cellular response to drug",6,3,0.5,139,"0.00949","0.08208","0.08208" +"GO:0031145","anaphase-promoting complex-dependent cat...",5,0,0.42,1912,"1.00000","0.08213","0.08213" +"GO:0043010","camera-type eye development",26,4,2.17,596,"0.16656","0.08246","0.08246" +"GO:0044770","cell cycle phase transition",28,3,2.34,1260,"0.41782","0.08295","0.08295" +"GO:0031113","regulation of microtubule polymerization",5,2,0.42,368,"0.05858","0.08313","0.08313" +"GO:0060359","response to ammonium ion",5,2,0.42,369,"0.05858","0.08313","0.08313" +"GO:0072347","response to anesthetic",7,3,0.58,165,"0.01560","0.08341","0.08341" +"GO:0006941","striated muscle contraction",8,1,0.67,1383,"0.50244","0.08436","0.08436" +"GO:0001736","establishment of planar polarity",12,1,1,1640,"0.64931","0.08479","0.08479" +"GO:0001738","morphogenesis of a polarized epithelium",12,1,1,1641,"0.64931","0.08479","0.08479" +"GO:0007164","establishment of tissue polarity",12,1,1,1642,"0.64931","0.08479","0.08479" +"GO:1902904","negative regulation of supramolecular fi...",14,4,1.17,237,"0.02424","0.08489","0.08489" +"GO:0000302","response to reactive oxygen species",13,5,1.08,67,"0.00286","0.08740","0.08740" +"GO:0080134","regulation of response to stress",66,9,5.51,458,"0.09444","0.08864","0.08864" +"GO:0070193","synaptonemal complex organization",3,2,0.25,194,"0.01966","0.08865","0.08865" +"GO:0070828","heterochromatin organization",3,2,0.25,195,"0.01966","0.08865","0.08865" +"GO:1901021","positive regulation of calcium ion trans...",3,2,0.25,196,"0.01966","0.08865","0.08865" +"GO:0001894","tissue homeostasis",16,1,1.34,1774,"0.75296","0.09068","0.09068" +"GO:0017144","drug metabolic process",126,17,10.52,260,"0.03011","1.5e-05","0.09175" +"GO:0006457","protein folding",58,8,4.84,478,"0.10567","0.09269","0.09269" +"GO:0006753","nucleoside phosphate metabolic process",98,12,8.18,498,"0.11174","0.00329","0.09283" +"GO:0048524","positive regulation of viral process",10,4,0.83,108,"0.00663","0.09329","0.09329" +"GO:0051701","interaction with host",6,3,0.5,140,"0.00949","0.09364","0.09364" +"GO:1903321","negative regulation of protein modificat...",10,2,0.83,639,"0.20055","0.09366","0.09366" +"GO:0019221","cytokine-mediated signaling pathway",6,2,0.5,417,"0.08312","0.09424","0.09424" +"GO:0090559","regulation of membrane permeability",7,3,0.58,166,"0.01560","0.09499","0.09499" +"GO:0006120","mitochondrial electron transport, NADH t...",8,0,0.67,1913,"1.00000","0.09641","0.09641" +"GO:0009117","nucleotide metabolic process",96,12,8.01,466,"0.09946","0.00336","0.09669" +"GO:0010941","regulation of cell death",70,11,5.84,259,"0.02820","0.09692","0.09692" +"GO:0001959","regulation of cytokine-mediated signalin...",3,2,0.25,197,"0.01966","0.09745","0.09745" +"GO:0001961","positive regulation of cytokine-mediated...",3,2,0.25,198,"0.01966","0.09745","0.09745" +"GO:0010803","regulation of tumor necrosis factor-medi...",3,2,0.25,199,"0.01966","0.09745","0.09745" +"GO:0010968","regulation of microtubule nucleation",3,2,0.25,200,"0.01966","0.09745","0.09745" +"GO:0032637","interleukin-8 production",3,2,0.25,201,"0.01966","0.09745","0.09745" +"GO:0032677","regulation of interleukin-8 production",3,2,0.25,202,"0.01966","0.09745","0.09745" +"GO:0032757","positive regulation of interleukin-8 pro...",3,2,0.25,203,"0.01966","0.09745","0.09745" +"GO:0046718","viral entry into host cell",3,2,0.25,204,"0.01966","0.09745","0.09745" +"GO:0060699","regulation of endoribonuclease activity",3,2,0.25,205,"0.01966","0.09745","0.09745" +"GO:0060700","regulation of ribonuclease activity",3,2,0.25,206,"0.01966","0.09745","0.09745" +"GO:0060759","regulation of response to cytokine stimu...",3,2,0.25,207,"0.01966","0.09745","0.09745" +"GO:0060760","positive regulation of response to cytok...",3,2,0.25,208,"0.01966","0.09745","0.09745" +"GO:0070370","cellular heat acclimation",3,2,0.25,209,"0.01966","0.09745","0.09745" +"GO:0090063","positive regulation of microtubule nucle...",3,2,0.25,210,"0.01966","0.09745","0.09745" +"GO:0090169","regulation of spindle assembly",3,2,0.25,211,"0.01966","0.09745","0.09745" +"GO:1901673","regulation of mitotic spindle assembly",3,2,0.25,212,"0.01966","0.09745","0.09745" +"GO:1902380","positive regulation of endoribonuclease ...",3,2,0.25,213,"0.01966","0.09745","0.09745" +"GO:1903265","positive regulation of tumor necrosis fa...",3,2,0.25,214,"0.01966","0.09745","0.09745" +"GO:0060249","anatomical structure homeostasis",26,2,2.17,1662,"0.65192","0.09749","0.09749" +"GO:0097435","supramolecular fiber organization",56,9,4.67,322,"0.03971","0.09803","0.09803" +"GO:0030900","forebrain development",16,5,1.34,111,"0.00788","0.09834","0.09834" +"GO:0048511","rhythmic process",24,5,2,323,"0.04432","0.09840","0.09840" +"GO:1902905","positive regulation of supramolecular fi...",17,4,1.42,342,"0.04731","0.09904","0.09904" +"GO:0031334","positive regulation of protein complex a...",20,4,1.67,413,"0.07924","0.09936","0.09936" +"GO:0009126","purine nucleoside monophosphate metaboli...",52,9,4.34,252,"0.02578","0.00091","0.10242" +"GO:0009167","purine ribonucleoside monophosphate meta...",52,9,4.34,253,"0.02578","0.00091","0.10242" +"GO:0052652","cyclic purine nucleotide metabolic proce...",3,0,0.25,1914,"1.00000","0.10342","0.10342" +"GO:0003300","cardiac muscle hypertrophy",6,0,0.5,1915,"1.00000","0.10358","0.10358" +"GO:0014896","muscle hypertrophy",6,0,0.5,1916,"1.00000","0.10358","0.10358" +"GO:0014897","striated muscle hypertrophy",6,0,0.5,1917,"1.00000","0.10358","0.10358" +"GO:0042981","regulation of apoptotic process",58,10,4.84,216,"0.01972","0.10383","0.10383" +"GO:0002009","morphogenesis of an epithelium",35,3,2.92,1543,"0.56936","0.10430","0.10430" +"GO:0000096","sulfur amino acid metabolic process",3,0,0.25,1918,"1.00000","0.10452","0.10452" +"GO:0000097","sulfur amino acid biosynthetic process",3,0,0.25,1919,"1.00000","0.10452","0.10452" +"GO:0006555","methionine metabolic process",3,0,0.25,1920,"1.00000","0.10452","0.10452" +"GO:0009067","aspartate family amino acid biosynthetic...",3,0,0.25,1921,"1.00000","0.10452","0.10452" +"GO:0009086","methionine biosynthetic process",3,0,0.25,1922,"1.00000","0.10452","0.10452" +"GO:0019509","L-methionine salvage from methylthioaden...",3,0,0.25,1923,"1.00000","0.10452","0.10452" +"GO:0043102","amino acid salvage",3,0,0.25,1924,"1.00000","0.10452","0.10452" +"GO:0071265","L-methionine biosynthetic process",3,0,0.25,1925,"1.00000","0.10452","0.10452" +"GO:0071267","L-methionine salvage",3,0,0.25,1926,"1.00000","0.10452","0.10452" +"GO:0002697","regulation of immune effector process",11,4,0.92,145,"0.00975","0.10479","0.10479" +"GO:0034614","cellular response to reactive oxygen spe...",11,4,0.92,146,"0.00975","0.10479","0.10479" +"GO:0034097","response to cytokine",21,4,1.75,449,"0.09176","0.10559","0.10559" +"GO:0045637","regulation of myeloid cell differentiati...",10,4,0.83,109,"0.00663","0.10641","0.10641" +"GO:0046039","GTP metabolic process",3,0,0.25,1927,"1.00000","0.10647","0.10647" +"GO:0007160","cell-matrix adhesion",6,0,0.5,1928,"1.00000","0.10658","0.10658" +"GO:0045165","cell fate commitment",19,6,1.59,69,"0.00340","0.10787","0.10787" +"GO:0033209","tumor necrosis factor-mediated signaling...",4,2,0.33,295,"0.03717","0.10852","0.10852" +"GO:0000079","regulation of cyclin-dependent protein s...",5,1,0.42,1048,"0.35340","0.10865","0.10865" +"GO:0061136","regulation of proteasomal protein catabo...",13,1,1.08,1678,"0.67870","0.10894","0.10894" +"GO:0007350","blastoderm segmentation",5,1,0.42,1049,"0.35340","0.11013","0.11013" +"GO:0043044","ATP-dependent chromatin remodeling",5,0,0.42,1929,"1.00000","0.11058","0.11058" +"GO:0007167","enzyme linked receptor protein signaling...",31,4,2.59,842,"0.25640","0.11302","0.11302" +"GO:0002920","regulation of humoral immune response",4,1,0.33,895,"0.29444","0.11420","0.11420" +"GO:0006959","humoral immune response",4,1,0.33,896,"0.29444","0.11420","0.11420" +"GO:0032011","ARF protein signal transduction",3,0,0.25,1930,"1.00000","0.11452","0.11452" +"GO:0032012","regulation of ARF protein signal transdu...",3,0,0.25,1931,"1.00000","0.11452","0.11452" +"GO:0010506","regulation of autophagy",18,3,1.5,625,"0.18543","0.11453","0.11453" +"GO:0009737","response to abscisic acid",6,0,0.5,1932,"1.00000","0.11502","0.11502" +"GO:0007220","Notch receptor processing",3,2,0.25,215,"0.01966","0.11541","0.11541" +"GO:0016049","cell growth",27,4,2.25,622,"0.18358","0.11605","0.11605" +"GO:0001655","urogenital system development",14,4,1.17,238,"0.02424","0.11659","0.11659" +"GO:0072001","renal system development",14,4,1.17,239,"0.02424","0.11659","0.11659" +"GO:0090090","negative regulation of canonical Wnt sig...",3,1,0.25,696,"0.23012","0.11661","0.11661" +"GO:0006220","pyrimidine nucleotide metabolic process",6,1,0.5,1205,"0.40746","0.11699","0.11699" +"GO:0006221","pyrimidine nucleotide biosynthetic proce...",6,1,0.5,1206,"0.40746","0.11699","0.11699" +"GO:0043588","skin development",9,1,0.75,1486,"0.54409","0.11732","0.11732" +"GO:0035150","regulation of tube size",7,1,0.58,1299,"0.45702","0.11802","0.11802" +"GO:0031396","regulation of protein ubiquitination",21,3,1.75,834,"0.25322","0.11865","0.11865" +"GO:0007050","cell cycle arrest",9,3,0.75,275,"0.03303","0.11872","0.11872" +"GO:0051493","regulation of cytoskeleton organization",34,5,2.84,576,"0.14871","0.11957","0.11957" +"GO:0055086","nucleobase-containing small molecule met...",115,14,9.6,457,"0.09391","0.00683","0.11976" +"GO:0007163","establishment or maintenance of cell pol...",15,2,1.25,1136,"0.36000","0.12063","0.12063" +"GO:0007623","circadian rhythm",17,2,1.42,1262,"0.42119","0.12145","0.12145" +"GO:2000736","regulation of stem cell differentiation",9,2,0.75,603,"0.16931","0.12288","0.12288" +"GO:0031109","microtubule polymerization or depolymeri...",13,3,1.08,438,"0.08786","0.12362","0.12362" +"GO:0035690","cellular response to drug",13,4,1.08,181,"0.01850","0.12362","0.12362" +"GO:0006605","protein targeting",41,6,3.42,509,"0.12167","0.12396","0.12396" +"GO:0002066","columnar/cuboidal epithelial cell develo...",11,3,0.92,352,"0.05731","0.12426","0.12426" +"GO:0021537","telencephalon development",8,2,0.67,542,"0.13903","0.12505","0.12505" +"GO:0021543","pallium development",8,2,0.67,543,"0.13903","0.12505","0.12505" +"GO:0006458","'de novo' protein folding",7,3,0.58,167,"0.01560","0.12554","0.12554" +"GO:0007040","lysosome organization",7,3,0.58,168,"0.01560","0.12554","0.12554" +"GO:0035821","modification of morphology or physiology...",7,3,0.58,169,"0.01560","0.12554","0.12554" +"GO:0046777","protein autophosphorylation",7,3,0.58,170,"0.01560","0.12554","0.12554" +"GO:0050766","positive regulation of phagocytosis",7,3,0.58,171,"0.01560","0.12554","0.12554" +"GO:0051817","modification of morphology or physiology...",7,3,0.58,172,"0.01560","0.12554","0.12554" +"GO:0080171","lytic vacuole organization",7,3,0.58,173,"0.01560","0.12554","0.12554" +"GO:0001837","epithelial to mesenchymal transition",4,1,0.33,897,"0.29444","0.12589","0.12589" +"GO:0021987","cerebral cortex development",5,2,0.42,370,"0.05858","0.12765","0.12765" +"GO:0048762","mesenchymal cell differentiation",5,1,0.42,1050,"0.35340","0.12765","0.12765" +"GO:0030111","regulation of Wnt signaling pathway",17,2,1.42,1263,"0.42119","0.12788","0.12788" +"GO:0002181","cytoplasmic translation",8,2,0.67,544,"0.13903","0.12818","0.12818" +"GO:0006213","pyrimidine nucleoside metabolic process",4,0,0.33,1933,"1.00000","0.12886","0.12886" +"GO:0046131","pyrimidine ribonucleoside metabolic proc...",4,0,0.33,1934,"1.00000","0.12886","0.12886" +"GO:0006825","copper ion transport",4,0,0.33,1935,"1.00000","0.12961","0.12961" +"GO:0017004","cytochrome complex assembly",4,0,0.33,1936,"1.00000","0.12961","0.12961" +"GO:0048729","tissue morphogenesis",42,3,3.51,1721,"0.69423","0.12969","0.12969" +"GO:1904029","regulation of cyclin-dependent protein k...",10,1,0.83,1552,"0.58226","0.12997","0.12997" +"GO:0007020","microtubule nucleation",6,2,0.5,418,"0.08312","0.13232","0.13232" +"GO:0007519","skeletal muscle tissue development",14,4,1.17,240,"0.02424","0.13340","0.13340" +"GO:0007552","metamorphosis",7,1,0.58,1300,"0.45702","0.13407","0.13407" +"GO:0007560","imaginal disc morphogenesis",7,1,0.58,1301,"0.45702","0.13407","0.13407" +"GO:0009886","post-embryonic animal morphogenesis",7,1,0.58,1302,"0.45702","0.13407","0.13407" +"GO:0048563","post-embryonic animal organ morphogenesi...",7,1,0.58,1303,"0.45702","0.13407","0.13407" +"GO:0048707","instar larval or pupal morphogenesis",7,1,0.58,1304,"0.45702","0.13407","0.13407" +"GO:0090100","positive regulation of transmembrane rec...",6,0,0.5,1937,"1.00000","0.13436","0.13436" +"GO:0071345","cellular response to cytokine stimulus",19,4,1.59,387,"0.06764","0.13688","0.13688" +"GO:0061077","chaperone-mediated protein folding",15,3,1.25,517,"0.12378","0.13691","0.13691" +"GO:0021675","nerve development",3,0,0.25,1938,"1.00000","0.13706","0.13706" +"GO:0032273","positive regulation of protein polymeriz...",18,4,1.5,350,"0.05699","0.13788","0.13788" +"GO:0007411","axon guidance",16,5,1.34,112,"0.00788","0.13808","0.13808" +"GO:0097485","neuron projection guidance",16,5,1.34,113,"0.00788","0.13808","0.13808" +"GO:0035050","embryonic heart tube development",5,2,0.42,371,"0.05858","0.13809","0.13809" +"GO:0009991","response to extracellular stimulus",30,5,2.5,464,"0.09927","0.13879","0.13879" +"GO:0031667","response to nutrient levels",30,5,2.5,465,"0.09927","0.13879","0.13879" +"GO:0040034","regulation of development, heterochronic",6,1,0.5,1207,"0.40746","0.13947","0.13947" +"GO:0043067","regulation of programmed cell death",61,10,5.09,258,"0.02734","0.13998","0.13998" +"GO:0006544","glycine metabolic process",3,1,0.25,697,"0.23012","0.14013","0.14013" +"GO:0002026","regulation of the force of heart contrac...",8,0,0.67,1939,"1.00000","0.14018","0.14018" +"GO:0009555","pollen development",5,0,0.42,1940,"1.00000","0.14237","0.14237" +"GO:0009987","cellular process",2154,188,179.76,470,"0.10203","0.01185","0.14319" +"GO:0072384","organelle transport along microtubule",4,2,0.33,296,"0.03717","0.14367","0.14367" +"GO:0000463","maturation of LSU-rRNA from tricistronic...",5,1,0.42,1051,"0.35340","0.14391","0.14391" +"GO:0000470","maturation of LSU-rRNA",5,1,0.42,1052,"0.35340","0.14391","0.14391" +"GO:0001568","blood vessel development",18,2,1.5,1285,"0.45066","0.14393","0.14393" +"GO:0045168","cell-cell signaling involved in cell fat...",7,3,0.58,174,"0.01560","0.14479","0.14479" +"GO:0046331","lateral inhibition",7,3,0.58,175,"0.01560","0.14479","0.14479" +"GO:0006775","fat-soluble vitamin metabolic process",5,0,0.42,1941,"1.00000","0.14582","0.14582" +"GO:0009636","response to toxic substance",27,7,2.25,104,"0.00536","0.14600","0.14600" +"GO:0060218","hematopoietic stem cell differentiation",4,1,0.33,898,"0.29444","0.14694","0.14694" +"GO:1901532","regulation of hematopoietic progenitor c...",4,1,0.33,899,"0.29444","0.14694","0.14694" +"GO:1902036","regulation of hematopoietic stem cell di...",4,1,0.33,900,"0.29444","0.14694","0.14694" +"GO:0097755","positive regulation of blood vessel diam...",3,1,0.25,698,"0.23012","0.14704","0.14704" +"GO:0007219","Notch signaling pathway",12,2,1,850,"0.26449","0.14732","0.14732" +"GO:0045861","negative regulation of proteolysis",19,3,1.59,658,"0.20752","0.14830","0.14830" +"GO:0060485","mesenchyme development",7,1,0.58,1305,"0.45702","0.15011","0.15011" +"GO:0009953","dorsal/ventral pattern formation",7,0,0.58,1942,"1.00000","0.15011","0.15011" +"GO:0043254","regulation of protein complex assembly",28,5,2.34,409,"0.07825","0.15274","0.15274" +"GO:0090263","positive regulation of canonical Wnt sig...",5,1,0.42,1053,"0.35340","0.15493","0.15493" +"GO:0044706","multi-multicellular organism process",10,1,0.83,1553,"0.58226","0.15494","0.15494" +"GO:0040014","regulation of multicellular organism gro...",6,2,0.5,419,"0.08312","0.15534","0.15534" +"GO:0006626","protein targeting to mitochondrion",19,2,1.59,1357,"0.47927","0.15614","0.15614" +"GO:0021761","limbic system development",4,1,0.33,901,"0.29444","0.15623","0.15623" +"GO:0021766","hippocampus development",4,1,0.33,902,"0.29444","0.15623","0.15623" +"GO:0032350","regulation of hormone metabolic process",4,1,0.33,903,"0.29444","0.15623","0.15623" +"GO:0032352","positive regulation of hormone metabolic...",4,1,0.33,904,"0.29444","0.15623","0.15623" +"GO:0090567","reproductive shoot system development",4,0,0.33,1943,"1.00000","0.15623","0.15623" +"GO:0000466","maturation of 5.8S rRNA from tricistroni...",8,2,0.67,545,"0.13903","0.15664","0.15664" +"GO:0045807","positive regulation of endocytosis",12,4,1,153,"0.01369","0.15711","0.15711" +"GO:0060548","negative regulation of cell death",45,9,3.76,148,"0.01036","0.15800","0.15800" +"GO:0018345","protein palmitoylation",3,0,0.25,1944,"1.00000","0.15881","0.15881" +"GO:0090130","tissue migration",9,2,0.75,604,"0.16931","0.16043","0.16043" +"GO:0090132","epithelium migration",9,2,0.75,605,"0.16931","0.16043","0.16043" +"GO:0030168","platelet activation",9,0,0.75,1945,"1.00000","0.16043","0.16043" +"GO:0070527","platelet aggregation",9,0,0.75,1946,"1.00000","0.16043","0.16043" +"GO:0070086","ubiquitin-dependent endocytosis",3,1,0.25,699,"0.23012","0.16185","0.16185" +"GO:0030707","ovarian follicle cell development",9,2,0.75,606,"0.16931","0.16220","0.16220" +"GO:0071236","cellular response to antibiotic",13,4,1.08,182,"0.01850","0.16274","0.16274" +"GO:0097237","cellular response to toxic substance",13,4,1.08,183,"0.01850","0.16274","0.16274" +"GO:0050954","sensory perception of mechanical stimulu...",7,2,0.58,484,"0.11013","0.16395","0.16395" +"GO:0010286","heat acclimation",4,2,0.33,297,"0.03717","0.16459","0.16459" +"GO:1903050","regulation of proteolysis involved in ce...",14,1,1.17,1725,"0.70564","0.16540","0.16540" +"GO:1903362","regulation of cellular protein catabolic...",14,1,1.17,1726,"0.70564","0.16540","0.16540" +"GO:0080135","regulation of cellular response to stres...",46,8,3.84,283,"0.03380","0.16590","0.16590" +"GO:0007286","spermatid development",22,2,1.84,1534,"0.55936","0.16706","0.16706" +"GO:0048515","spermatid differentiation",22,2,1.84,1535,"0.55936","0.16706","0.16706" +"GO:0002118","aggressive behavior",6,0,0.5,1947,"1.00000","0.16742","0.16742" +"GO:0022898","regulation of transmembrane transporter ...",13,4,1.08,184,"0.01850","0.16761","0.16761" +"GO:0032409","regulation of transporter activity",13,4,1.08,185,"0.01850","0.16761","0.16761" +"GO:0032412","regulation of ion transmembrane transpor...",13,4,1.08,186,"0.01850","0.16761","0.16761" +"GO:0003007","heart morphogenesis",10,2,0.83,640,"0.20055","0.16795","0.16795" +"GO:0007269","neurotransmitter secretion",6,2,0.5,420,"0.08312","0.16910","0.16910" +"GO:0099643","signal release from synapse",6,2,0.5,421,"0.08312","0.16910","0.16910" +"GO:0007162","negative regulation of cell adhesion",9,1,0.75,1487,"0.54409","0.16911","0.16911" +"GO:0032507","maintenance of protein location in cell",9,1,0.75,1488,"0.54409","0.16949","0.16949" +"GO:0051651","maintenance of location in cell",9,1,0.75,1489,"0.54409","0.16949","0.16949" +"GO:0045185","maintenance of protein location",11,1,0.92,1611,"0.61724","0.17006","0.17006" +"GO:0007127","meiosis I",6,2,0.5,422,"0.08312","0.17078","0.17078" +"GO:0035902","response to immobilization stress",4,0,0.33,1948,"1.00000","0.17187","0.17187" +"GO:0098974","postsynaptic actin cytoskeleton organiza...",4,0,0.33,1949,"1.00000","0.17187","0.17187" +"GO:0099188","postsynaptic cytoskeleton organization",4,0,0.33,1950,"1.00000","0.17187","0.17187" +"GO:1904030","negative regulation of cyclin-dependent ...",4,0,0.33,1951,"1.00000","0.17187","0.17187" +"GO:0032414","positive regulation of ion transmembrane...",4,2,0.33,298,"0.03717","0.17233","0.17233" +"GO:1901019","regulation of calcium ion transmembrane ...",4,2,0.33,299,"0.03717","0.17233","0.17233" +"GO:1904427","positive regulation of calcium ion trans...",4,2,0.33,300,"0.03717","0.17233","0.17233" +"GO:0000082","G1/S transition of mitotic cell cycle",8,3,0.67,231,"0.02344","0.17249","0.17249" +"GO:0002699","positive regulation of immune effector p...",8,3,0.67,232,"0.02344","0.17249","0.17249" +"GO:0046686","response to cadmium ion",8,3,0.67,233,"0.02344","0.17249","0.17249" +"GO:1903708","positive regulation of hemopoiesis",8,3,0.67,234,"0.02344","0.17249","0.17249" +"GO:0017038","protein import",22,4,1.84,472,"0.10516","0.17325","0.17325" +"GO:0072527","pyrimidine-containing compound metabolic...",9,1,0.75,1490,"0.54409","0.17380","0.17380" +"GO:0031047","gene silencing by RNA",9,3,0.75,276,"0.03303","0.17466","0.17466" +"GO:0007351","tripartite regional subdivision",3,0,0.25,1952,"1.00000","0.17813","0.17813" +"GO:0008595","anterior/posterior axis specification, e...",3,0,0.25,1953,"1.00000","0.17813","0.17813" +"GO:0009187","cyclic nucleotide metabolic process",5,0,0.42,1954,"1.00000","0.17869","0.17869" +"GO:0009190","cyclic nucleotide biosynthetic process",5,0,0.42,1955,"1.00000","0.17869","0.17869" +"GO:0006448","regulation of translational elongation",5,0,0.42,1956,"1.00000","0.17901","0.17901" +"GO:0006730","one-carbon metabolic process",6,0,0.5,1957,"1.00000","0.17979","0.17979" +"GO:0072358","cardiovascular system development",21,2,1.75,1466,"0.53366","0.17993","0.17993" +"GO:0009948","anterior/posterior axis specification",6,0,0.5,1958,"1.00000","0.18057","0.18057" +"GO:0010669","epithelial structure maintenance",4,0,0.33,1959,"1.00000","0.18274","0.18274" +"GO:1903320","regulation of protein modification by sm...",23,3,1.92,994,"0.30018","0.18314","0.18314" +"GO:0051495","positive regulation of cytoskeleton orga...",19,4,1.59,388,"0.06764","0.18368","0.18368" +"GO:0060070","canonical Wnt signaling pathway",12,2,1,851,"0.26449","0.18449","0.18449" +"GO:0009123","nucleoside monophosphate metabolic proce...",54,9,4.51,269,"0.03222","0.00256","0.18583" +"GO:0009161","ribonucleoside monophosphate metabolic p...",54,9,4.51,270,"0.03222","0.00256","0.18583" +"GO:0043066","negative regulation of apoptotic process",38,8,3.17,149,"0.01129","0.18663","0.18663" +"GO:0030177","positive regulation of Wnt signaling pat...",7,1,0.58,1306,"0.45702","0.18681","0.18681" +"GO:0007600","sensory perception",36,7,3,255,"0.02644","0.18844","0.18844" +"GO:0043244","regulation of protein complex disassembl...",10,0,0.83,1960,"1.00000","0.18867","0.18867" +"GO:0035282","segmentation",11,1,0.92,1612,"0.61724","0.18877","0.18877" +"GO:0030260","entry into host cell",4,2,0.33,301,"0.03717","0.18910","0.18910" +"GO:0032069","regulation of nuclease activity",4,2,0.33,302,"0.03717","0.18910","0.18910" +"GO:0032075","positive regulation of nuclease activity",4,2,0.33,303,"0.03717","0.18910","0.18910" +"GO:0044409","entry into host",4,2,0.33,304,"0.03717","0.18910","0.18910" +"GO:0051806","entry into cell of other organism involv...",4,2,0.33,305,"0.03717","0.18910","0.18910" +"GO:0051828","entry into other organism involved in sy...",4,2,0.33,306,"0.03717","0.18910","0.18910" +"GO:0060236","regulation of mitotic spindle organizati...",4,2,0.33,307,"0.03717","0.18910","0.18910" +"GO:0090224","regulation of spindle organization",4,2,0.33,308,"0.03717","0.18910","0.18910" +"GO:0097201","negative regulation of transcription fro...",4,2,0.33,309,"0.03717","0.18910","0.18910" +"GO:0044843","cell cycle G1/S phase transition",10,3,0.83,327,"0.04434","0.18930","0.18930" +"GO:0060538","skeletal muscle organ development",15,4,1.25,264,"0.03094","0.19117","0.19117" +"GO:0032874","positive regulation of stress-activated ...",4,1,0.33,905,"0.29444","0.19209","0.19209" +"GO:0070304","positive regulation of stress-activated ...",4,1,0.33,906,"0.29444","0.19209","0.19209" +"GO:0016242","negative regulation of macroautophagy",3,1,0.25,700,"0.23012","0.19264","0.19264" +"GO:0051170","import into nucleus",14,4,1.17,241,"0.02424","0.19332","0.19332" +"GO:0045859","regulation of protein kinase activity",29,5,2.42,446,"0.08843","0.19338","0.19338" +"GO:0048709","oligodendrocyte differentiation",5,0,0.42,1961,"1.00000","0.19379","0.19379" +"GO:0065002","intracellular protein transmembrane tran...",13,1,1.08,1679,"0.67870","0.19458","0.19458" +"GO:0002526","acute inflammatory response",5,2,0.42,372,"0.05858","0.19537","0.19537" +"GO:0030488","tRNA methylation",7,0,0.58,1962,"1.00000","0.19558","0.19558" +"GO:1904292","regulation of ERAD pathway",5,1,0.42,1054,"0.35340","0.19764","0.19764" +"GO:0006662","glycerol ether metabolic process",3,1,0.25,701,"0.23012","0.19775","0.19775" +"GO:0018904","ether metabolic process",3,1,0.25,702,"0.23012","0.19775","0.19775" +"GO:0042078","germ-line stem cell division",4,0,0.33,1963,"1.00000","0.19815","0.19815" +"GO:0098728","germline stem cell asymmetric division",4,0,0.33,1964,"1.00000","0.19815","0.19815" +"GO:0019098","reproductive behavior",9,2,0.75,607,"0.16931","0.19817","0.19817" +"GO:0006986","response to unfolded protein",16,1,1.34,1775,"0.75296","0.19831","0.19831" +"GO:0060048","cardiac muscle contraction",7,0,0.58,1965,"1.00000","0.19934","0.19934" +"GO:0032504","multicellular organism reproduction",70,7,5.84,1159,"0.36653","0.19971","0.19971" +"GO:0006364","rRNA processing",36,4,3,1131,"0.35351","0.19993","0.19993" +"GO:0007169","transmembrane receptor protein tyrosine ...",17,3,1.42,590,"0.16403","0.20020","0.20020" +"GO:0048871","multicellular organismal homeostasis",18,1,1.5,1825,"0.79269","0.20047","0.20047" +"GO:0060710","chorio-allantoic fusion",3,0,0.25,1966,"1.00000","0.20220","0.20220" +"GO:0060715","syncytiotrophoblast cell differentiation...",3,0,0.25,1967,"1.00000","0.20220","0.20220" +"GO:0060717","chorion development",3,0,0.25,1968,"1.00000","0.20220","0.20220" +"GO:1903867","extraembryonic membrane development",3,0,0.25,1969,"1.00000","0.20220","0.20220" +"GO:0006488","dolichol-linked oligosaccharide biosynth...",3,0,0.25,1970,"1.00000","0.20280","0.20280" +"GO:0006914","autophagy",37,8,3.09,141,"0.00958","0.20371","0.20371" +"GO:0061919","process utilizing autophagic mechanism",37,8,3.09,142,"0.00958","0.20371","0.20371" +"GO:0043457","regulation of cellular respiration",3,1,0.25,703,"0.23012","0.20400","0.20400" +"GO:0034698","response to gonadotropin",3,0,0.25,1971,"1.00000","0.20415","0.20415" +"GO:0044085","cellular component biogenesis",272,30,22.7,386,"0.06210","0.01357","0.20452" +"GO:0007409","axonogenesis",32,7,2.67,157,"0.01418","0.20548","0.20548" +"GO:0006766","vitamin metabolic process",8,0,0.67,1972,"1.00000","0.20680","0.20680" +"GO:0002065","columnar/cuboidal epithelial cell differ...",15,4,1.25,265,"0.03094","0.20708","0.20708" +"GO:2001256","regulation of store-operated calcium ent...",3,1,0.25,704,"0.23012","0.20718","0.20718" +"GO:0043549","regulation of kinase activity",34,5,2.84,577,"0.14871","0.20723","0.20723" +"GO:0001947","heart looping",3,1,0.25,705,"0.23012","0.20809","0.20809" +"GO:0035964","COPI-coated vesicle budding",3,0,0.25,1973,"1.00000","0.20809","0.20809" +"GO:0048200","Golgi transport vesicle coating",3,0,0.25,1974,"1.00000","0.20809","0.20809" +"GO:0048205","COPI coating of Golgi vesicle",3,0,0.25,1975,"1.00000","0.20809","0.20809" +"GO:0051129","negative regulation of cellular componen...",42,6,3.51,531,"0.13263","0.20831","0.20831" +"GO:0043200","response to amino acid",3,0,0.25,1976,"1.00000","0.20947","0.20947" +"GO:1902115","regulation of organelle assembly",14,4,1.17,242,"0.02424","0.20979","0.20979" +"GO:0048569","post-embryonic animal organ development",9,1,0.75,1491,"0.54409","0.21081","0.21081" +"GO:0009790","embryo development",77,12,6.43,235,"0.02377","0.03877","0.21103" +"GO:0007166","cell surface receptor signaling pathway",113,13,9.43,570,"0.14375","0.21142","0.21142" +"GO:0010507","negative regulation of autophagy",4,1,0.33,907,"0.29444","0.21282","0.21282" +"GO:0007423","sensory organ development",45,5,3.76,1016,"0.32071","0.21308","0.21308" +"GO:0016032","viral process",21,5,1.75,254,"0.02602","0.21431","0.21431" +"GO:0055070","copper ion homeostasis",3,1,0.25,706,"0.23012","0.21613","0.21613" +"GO:0008535","respiratory chain complex IV assembly",3,0,0.25,1977,"1.00000","0.21613","0.21613" +"GO:0140013","meiotic nuclear division",11,2,0.92,807,"0.23238","0.21664","0.21664" +"GO:0007007","inner mitochondrial membrane organizatio...",8,2,0.67,546,"0.13903","0.21818","0.21818" +"GO:0046785","microtubule polymerization",11,2,0.92,808,"0.23238","0.21977","0.21977" +"GO:0048367","shoot system development",6,0,0.5,1978,"1.00000","0.21979","0.21979" +"GO:0008589","regulation of smoothened signaling pathw...",3,0,0.25,1979,"1.00000","0.22038","0.22038" +"GO:0002165","instar larval or pupal development",8,1,0.67,1384,"0.50244","0.22051","0.22051" +"GO:0002443","leukocyte mediated immunity",9,3,0.75,277,"0.03303","0.22066","0.22066" +"GO:0045471","response to ethanol",9,3,0.75,278,"0.03303","0.22066","0.22066" +"GO:0048024","regulation of mRNA splicing, via spliceo...",9,3,0.75,279,"0.03303","0.22066","0.22066" +"GO:0050684","regulation of mRNA processing",9,3,0.75,280,"0.03303","0.22066","0.22066" +"GO:2001023","regulation of response to drug",9,3,0.75,281,"0.03303","0.22066","0.22066" +"GO:0007088","regulation of mitotic nuclear division",13,2,1.08,978,"0.29661","0.22096","0.22096" +"GO:0061298","retina vasculature development in camera...",4,2,0.33,310,"0.03717","0.22098","0.22098" +"GO:0071900","regulation of protein serine/threonine k...",18,3,1.5,626,"0.18543","0.22126","0.22126" +"GO:0043094","cellular metabolic compound salvage",7,1,0.58,1307,"0.45702","0.22201","0.22201" +"GO:0009966","regulation of signal transduction",142,16,11.85,529,"0.12943","0.22282","0.22282" +"GO:0071166","ribonucleoprotein complex localization",10,2,0.83,641,"0.20055","0.22353","0.22353" +"GO:0071426","ribonucleoprotein complex export from nu...",10,2,0.83,642,"0.20055","0.22353","0.22353" +"GO:0007565","female pregnancy",8,1,0.67,1385,"0.50244","0.22521","0.22521" +"GO:0048584","positive regulation of response to stimu...",90,11,7.51,525,"0.12561","0.22563","0.22563" +"GO:0010631","epithelial cell migration",8,2,0.67,547,"0.13903","0.22600","0.22600" +"GO:0009152","purine ribonucleotide biosynthetic proce...",44,6,3.67,586,"0.15590","0.00214","0.22605" +"GO:0032434","regulation of proteasomal ubiquitin-depe...",7,0,0.58,1980,"1.00000","0.22854","0.22854" +"GO:0007517","muscle organ development",28,5,2.34,410,"0.07825","0.22919","0.22919" +"GO:0060041","retina development in camera-type eye",20,3,1.67,798,"0.23016","0.22956","0.22956" +"GO:0030036","actin cytoskeleton organization",63,6,5.26,1277,"0.43138","0.23041","0.23041" +"GO:0007034","vacuolar transport",21,4,1.75,450,"0.09176","0.23096","0.23096" +"GO:0034762","regulation of transmembrane transport",22,5,1.84,267,"0.03145","0.23362","0.23362" +"GO:0043270","positive regulation of ion transport",10,3,0.83,328,"0.04434","0.23532","0.23532" +"GO:0006560","proline metabolic process",3,1,0.25,707,"0.23012","0.23579","0.23579" +"GO:0051321","meiotic cell cycle",18,2,1.5,1286,"0.45066","0.23643","0.23643" +"GO:0031399","regulation of protein modification proce...",80,9,6.68,677,"0.21984","0.23706","0.23706" +"GO:0045647","negative regulation of erythrocyte diffe...",3,1,0.25,708,"0.23012","0.23746","0.23746" +"GO:0019725","cellular homeostasis",69,4,5.76,1858,"0.84116","0.23821","0.23821" +"GO:0034976","response to endoplasmic reticulum stress",33,4,2.75,976,"0.29480","0.23843","0.23843" +"GO:0070125","mitochondrial translational elongation",3,0,0.25,1981,"1.00000","0.23846","0.23846" +"GO:0070126","mitochondrial translational termination",3,0,0.25,1982,"1.00000","0.23846","0.23846" +"GO:0061564","axon development",38,8,3.17,150,"0.01129","0.24035","0.24035" +"GO:0006446","regulation of translational initiation",4,2,0.33,311,"0.03717","0.24198","0.24198" +"GO:2000377","regulation of reactive oxygen species me...",4,2,0.33,312,"0.03717","0.24198","0.24198" +"GO:2000378","negative regulation of reactive oxygen s...",4,2,0.33,313,"0.03717","0.24198","0.24198" +"GO:0042310","vasoconstriction",3,1,0.25,709,"0.23012","0.24283","0.24283" +"GO:0097756","negative regulation of blood vessel diam...",3,1,0.25,710,"0.23012","0.24283","0.24283" +"GO:0046677","response to antibiotic",24,6,2,151,"0.01182","0.24337","0.24337" +"GO:0001822","kidney development",13,3,1.08,439,"0.08786","0.24396","0.24396" +"GO:0030510","regulation of BMP signaling pathway",5,0,0.42,1983,"1.00000","0.24405","0.24405" +"GO:0050877","nervous system process",55,10,4.59,156,"0.01379","0.24489","0.24489" +"GO:0048565","digestive tract development",4,2,0.33,314,"0.03717","0.24550","0.24550" +"GO:0055123","digestive system development",4,2,0.33,315,"0.03717","0.24550","0.24550" +"GO:0006493","protein O-linked glycosylation",15,3,1.25,518,"0.12378","0.24627","0.24627" +"GO:0001944","vasculature development",19,2,1.59,1358,"0.47927","0.24656","0.24656" +"GO:0023051","regulation of signaling",156,18,13.02,460,"0.09468","0.24682","0.24682" +"GO:0022406","membrane docking",6,0,0.5,1984,"1.00000","0.24802","0.24802" +"GO:0048278","vesicle docking",6,0,0.5,1985,"1.00000","0.24802","0.24802" +"GO:0140029","exocytic process",6,0,0.5,1986,"1.00000","0.24802","0.24802" +"GO:0140056","organelle localization by membrane tethe...",6,0,0.5,1987,"1.00000","0.24802","0.24802" +"GO:0010038","response to metal ion",23,5,1.92,316,"0.03755","0.24819","0.24819" +"GO:0048514","blood vessel morphogenesis",14,2,1.17,1030,"0.32850","0.24838","0.24838" +"GO:0055082","cellular chemical homeostasis",32,2,2.67,1794,"0.76100","0.24840","0.24840" +"GO:0007584","response to nutrient",6,0,0.5,1988,"1.00000","0.24850","0.24850" +"GO:0009908","flower development",3,0,0.25,1989,"1.00000","0.24862","0.24862" +"GO:0043950","positive regulation of cAMP-mediated sig...",3,0,0.25,1990,"1.00000","0.24862","0.24862" +"GO:0048240","sperm capacitation",3,0,0.25,1991,"1.00000","0.24862","0.24862" +"GO:0051385","response to mineralocorticoid",3,0,0.25,1992,"1.00000","0.24862","0.24862" +"GO:0051412","response to corticosterone",3,0,0.25,1993,"1.00000","0.24862","0.24862" +"GO:0060408","regulation of acetylcholine metabolic pr...",3,0,0.25,1994,"1.00000","0.24862","0.24862" +"GO:0060409","positive regulation of acetylcholine met...",3,0,0.25,1995,"1.00000","0.24862","0.24862" +"GO:0048609","multicellular organismal reproductive pr...",66,7,5.51,1010,"0.31051","0.24895","0.24895" +"GO:0009069","serine family amino acid metabolic proce...",5,1,0.42,1055,"0.35340","0.25001","0.25001" +"GO:0009611","response to wounding",29,3,2.42,1281,"0.44074","0.25098","0.25098" +"GO:0042594","response to starvation",22,5,1.84,268,"0.03145","0.25203","0.25203" +"GO:0072593","reactive oxygen species metabolic proces...",11,3,0.92,353,"0.05731","0.25219","0.25219" +"GO:0032990","cell part morphogenesis",46,9,3.84,152,"0.01197","0.25334","0.25334" +"GO:0034250","positive regulation of cellular amide me...",5,0,0.42,1996,"1.00000","0.25403","0.25403" +"GO:0045727","positive regulation of translation",5,0,0.42,1997,"1.00000","0.25403","0.25403" +"GO:0198738","cell-cell signaling by wnt",31,2,2.59,1772,"0.74514","0.25527","0.25527" +"GO:0043069","negative regulation of programmed cell d...",40,8,3.34,159,"0.01536","0.25553","0.25553" +"GO:0007283","spermatogenesis",34,3,2.84,1525,"0.54917","0.25608","0.25608" +"GO:0051301","cell division",26,1,2.17,1869,"0.89734","0.25636","0.25636" +"GO:0032411","positive regulation of transporter activ...",5,2,0.42,373,"0.05858","0.25660","0.25660" +"GO:0002262","myeloid cell homeostasis",14,4,1.17,243,"0.02424","0.25674","0.25674" +"GO:0030218","erythrocyte differentiation",14,4,1.17,244,"0.02424","0.25674","0.25674" +"GO:0034101","erythrocyte homeostasis",14,4,1.17,245,"0.02424","0.25674","0.25674" +"GO:0000086","G2/M transition of mitotic cell cycle",11,0,0.92,1998,"1.00000","0.25675","0.25675" +"GO:0044839","cell cycle G2/M phase transition",11,0,0.92,1999,"1.00000","0.25675","0.25675" +"GO:0036003","positive regulation of transcription fro...",3,1,0.25,711,"0.23012","0.25730","0.25730" +"GO:0007596","blood coagulation",11,0,0.92,2000,"1.00000","0.25812","0.25812" +"GO:0007599","hemostasis",11,0,0.92,2001,"1.00000","0.25812","0.25812" +"GO:0050817","coagulation",11,0,0.92,2002,"1.00000","0.25812","0.25812" +"GO:0044403","symbiont process",25,5,2.09,346,"0.05177","0.25813","0.25813" +"GO:0035995","detection of muscle stretch",5,0,0.42,2003,"1.00000","0.25837","0.25837" +"GO:0045662","negative regulation of myoblast differen...",5,0,0.42,2004,"1.00000","0.25837","0.25837" +"GO:0045663","positive regulation of myoblast differen...",5,0,0.42,2005,"1.00000","0.25837","0.25837" +"GO:0055003","cardiac myofibril assembly",5,0,0.42,2006,"1.00000","0.25837","0.25837" +"GO:0055006","cardiac cell development",5,0,0.42,2007,"1.00000","0.25837","0.25837" +"GO:0055013","cardiac muscle cell development",5,0,0.42,2008,"1.00000","0.25837","0.25837" +"GO:1903918","regulation of actin filament severing",5,0,0.42,2009,"1.00000","0.25837","0.25837" +"GO:1903919","negative regulation of actin filament se...",5,0,0.42,2010,"1.00000","0.25837","0.25837" +"GO:1903920","positive regulation of actin filament se...",5,0,0.42,2011,"1.00000","0.25837","0.25837" +"GO:0008585","female gonad development",4,1,0.33,908,"0.29444","0.25870","0.25870" +"GO:0009798","axis specification",12,0,1,2012,"1.00000","0.25934","0.25934" +"GO:0032268","regulation of cellular protein metabolic...",121,14,10.1,528,"0.12823","0.26099","0.26099" +"GO:0031958","corticosteroid receptor signaling pathwa...",3,1,0.25,712,"0.23012","0.26118","0.26118" +"GO:0042921","glucocorticoid receptor signaling pathwa...",3,1,0.25,713,"0.23012","0.26118","0.26118" +"GO:0035162","embryonic hemopoiesis",5,2,0.42,374,"0.05858","0.26262","0.26262" +"GO:1904062","regulation of cation transmembrane trans...",16,4,1.34,317,"0.03863","0.26271","0.26271" +"GO:0043902","positive regulation of multi-organism pr...",15,4,1.25,266,"0.03094","0.26299","0.26299" +"GO:0051049","regulation of transport",83,13,6.93,180,"0.01826","0.26307","0.26307" +"GO:0010646","regulation of cell communication",154,18,12.85,436,"0.08603","0.26336","0.26336" +"GO:0006886","intracellular protein transport",101,11,8.43,672,"0.21773","0.26382","0.26382" +"GO:0061326","renal tubule development",3,0,0.25,2013,"1.00000","0.26384","0.26384" +"GO:0072080","nephron tubule development",3,0,0.25,2014,"1.00000","0.26384","0.26384" +"GO:0006913","nucleocytoplasmic transport",32,6,2.67,334,"0.04550","0.26390","0.26390" +"GO:0043618","regulation of transcription from RNA pol...",11,3,0.92,354,"0.05731","0.26573","0.26573" +"GO:0043620","regulation of DNA-templated transcriptio...",11,3,0.92,355,"0.05731","0.26573","0.26573" +"GO:0030029","actin filament-based process",64,6,5.34,1284,"0.44671","0.26622","0.26622" +"GO:0043951","negative regulation of cAMP-mediated sig...",3,0,0.25,2015,"1.00000","0.26688","0.26688" +"GO:0021549","cerebellum development",10,3,0.83,329,"0.04434","0.26851","0.26851" +"GO:0022037","metencephalon development",10,3,0.83,330,"0.04434","0.26851","0.26851" +"GO:0030902","hindbrain development",10,3,0.83,331,"0.04434","0.26851","0.26851" +"GO:0099504","synaptic vesicle cycle",10,3,0.83,332,"0.04434","0.26851","0.26851" +"GO:1901654","response to ketone",10,3,0.83,333,"0.04434","0.26851","0.26851" +"GO:0045010","actin nucleation",11,2,0.92,809,"0.23238","0.26864","0.26864" +"GO:0006110","regulation of glycolytic process",5,2,0.42,375,"0.05858","0.26900","0.26900" +"GO:0030808","regulation of nucleotide biosynthetic pr...",5,2,0.42,376,"0.05858","0.26900","0.26900" +"GO:0030811","regulation of nucleotide catabolic proce...",5,2,0.42,377,"0.05858","0.26900","0.26900" +"GO:0043470","regulation of carbohydrate catabolic pro...",5,2,0.42,378,"0.05858","0.26900","0.26900" +"GO:0051196","regulation of coenzyme metabolic process",5,2,0.42,379,"0.05858","0.26900","0.26900" +"GO:1900371","regulation of purine nucleotide biosynth...",5,2,0.42,380,"0.05858","0.26900","0.26900" +"GO:2001169","regulation of ATP biosynthetic process",5,2,0.42,381,"0.05858","0.26900","0.26900" +"GO:0006606","protein import into nucleus",11,3,0.92,356,"0.05731","0.27053","0.27053" +"GO:0009967","positive regulation of signal transducti...",66,8,5.51,620,"0.18085","0.27126","0.27126" +"GO:0006413","translational initiation",16,3,1.34,564,"0.14343","0.27144","0.27144" +"GO:0030879","mammary gland development",4,1,0.33,909,"0.29444","0.27170","0.27170" +"GO:0050878","regulation of body fluid levels",14,1,1.17,1727,"0.70564","0.27180","0.27180" +"GO:0000375","RNA splicing, via transesterification re...",53,8,4.42,395,"0.06962","0.27193","0.27193" +"GO:0000377","RNA splicing, via transesterification re...",53,8,4.42,396,"0.06962","0.27193","0.27193" +"GO:0000398","mRNA splicing, via spliceosome",53,8,4.42,397,"0.06962","0.27193","0.27193" +"GO:0007267","cell-cell signaling",66,9,5.51,459,"0.09444","0.27197","0.27197" +"GO:0006720","isoprenoid metabolic process",16,3,1.34,565,"0.14343","0.27270","0.27270" +"GO:0016055","Wnt signaling pathway",27,2,2.25,1671,"0.67250","0.27582","0.27582" +"GO:0051345","positive regulation of hydrolase activit...",23,4,1.92,507,"0.11940","0.27636","0.27636" +"GO:0035107","appendage morphogenesis",11,1,0.92,1613,"0.61724","0.27673","0.27673" +"GO:0045039","protein import into mitochondrial inner ...",5,1,0.42,1056,"0.35340","0.27690","0.27690" +"GO:0061061","muscle structure development",47,6,3.92,635,"0.19386","0.27754","0.27754" +"GO:0016072","rRNA metabolic process",39,4,3.25,1257,"0.41229","0.27897","0.27897" +"GO:0009410","response to xenobiotic stimulus",6,2,0.5,423,"0.08312","0.27977","0.27977" +"GO:0042451","purine nucleoside biosynthetic process",5,1,0.42,1057,"0.35340","0.28147","0.28147" +"GO:0046129","purine ribonucleoside biosynthetic proce...",5,1,0.42,1058,"0.35340","0.28147","0.28147" +"GO:0000041","transition metal ion transport",10,1,0.83,1554,"0.58226","0.28154","0.28154" +"GO:0033692","cellular polysaccharide biosynthetic pro...",5,1,0.42,1059,"0.35340","0.28162","0.28162" +"GO:0034637","cellular carbohydrate biosynthetic proce...",5,1,0.42,1060,"0.35340","0.28162","0.28162" +"GO:0044264","cellular polysaccharide metabolic proces...",5,1,0.42,1061,"0.35340","0.28162","0.28162" +"GO:0032984","protein-containing complex disassembly",27,3,2.25,1188,"0.39460","0.02777","0.28212" +"GO:0032940","secretion by cell",46,6,3.84,618,"0.18083","0.28221","0.28221" +"GO:0032970","regulation of actin filament-based proce...",29,3,2.42,1282,"0.44074","0.28250","0.28250" +"GO:0055001","muscle cell development",15,2,1.25,1137,"0.36000","0.28330","0.28330" +"GO:0055002","striated muscle cell development",15,2,1.25,1138,"0.36000","0.28330","0.28330" +"GO:0006405","RNA export from nucleus",13,2,1.08,979,"0.29661","0.28451","0.28451" +"GO:0072522","purine-containing compound biosynthetic ...",47,7,3.92,453,"0.09179","0.00380","0.28504" +"GO:0006397","mRNA processing",70,9,5.84,523,"0.12477","0.28589","0.28589" +"GO:0097305","response to alcohol",17,3,1.42,591,"0.16403","0.28706","0.28706" +"GO:0009299","mRNA transcription",3,1,0.25,714,"0.23012","0.28745","0.28745" +"GO:0042789","mRNA transcription by RNA polymerase II",3,1,0.25,715,"0.23012","0.28745","0.28745" +"GO:0042733","embryonic digit morphogenesis",3,0,0.25,2016,"1.00000","0.28745","0.28745" +"GO:0051972","regulation of telomerase activity",3,0,0.25,2017,"1.00000","0.28745","0.28745" +"GO:0051246","regulation of protein metabolic process",131,14,10.93,637,"0.19920","0.28771","0.28771" +"GO:0007179","transforming growth factor beta receptor...",7,1,0.58,1308,"0.45702","0.28793","0.28793" +"GO:1901698","response to nitrogen compound",57,7,4.76,633,"0.19353","0.28805","0.28805" +"GO:0035966","response to topologically incorrect prot...",22,2,1.84,1536,"0.55936","0.28860","0.28860" +"GO:0070585","protein localization to mitochondrion",20,2,1.67,1440,"0.50695","0.28883","0.28883" +"GO:0072655","establishment of protein localization to...",20,2,1.67,1441,"0.50695","0.28883","0.28883" +"GO:0006486","protein glycosylation",49,6,4.09,679,"0.22093","0.28931","0.28931" +"GO:0043413","macromolecule glycosylation",49,6,4.09,680,"0.22093","0.28931","0.28931" +"GO:0070085","glycosylation",49,6,4.09,681,"0.22093","0.28931","0.28931" +"GO:0035220","wing disc development",6,1,0.5,1208,"0.40746","0.29142","0.29142" +"GO:0044087","regulation of cellular component biogene...",63,8,5.26,582,"0.15030","0.29145","0.29145" +"GO:0022607","cellular component assembly",218,25,18.19,362,"0.05830","0.03039","0.29154" +"GO:0030901","midbrain development",6,0,0.5,2018,"1.00000","0.29196","0.29196" +"GO:0008544","epidermis development",10,1,0.83,1555,"0.58226","0.29287","0.29287" +"GO:0010172","embryonic body morphogenesis",5,1,0.42,1062,"0.35340","0.29311","0.29311" +"GO:0043968","histone H2A acetylation",4,0,0.33,2019,"1.00000","0.29360","0.29360" +"GO:0030004","cellular monovalent inorganic cation hom...",3,0,0.25,2020,"1.00000","0.29426","0.29426" +"GO:0030641","regulation of cellular pH",3,0,0.25,2021,"1.00000","0.29426","0.29426" +"GO:0051453","regulation of intracellular pH",3,0,0.25,2022,"1.00000","0.29426","0.29426" +"GO:0034765","regulation of ion transmembrane transpor...",17,4,1.42,343,"0.04731","0.29431","0.29431" +"GO:0051147","regulation of muscle cell differentiatio...",11,0,0.92,2023,"1.00000","0.29523","0.29523" +"GO:0006108","malate metabolic process",3,0,0.25,2024,"1.00000","0.29541","0.29541" +"GO:0016458","gene silencing",18,4,1.5,351,"0.05699","0.29646","0.29646" +"GO:1901135","carbohydrate derivative metabolic proces...",200,25,16.69,226,"0.02342","0.00169","0.29661" +"GO:0031589","cell-substrate adhesion",11,0,0.92,2025,"1.00000","0.29683","0.29683" +"GO:0044571","[2Fe-2S] cluster assembly",3,0,0.25,2026,"1.00000","0.29693","0.29693" +"GO:0043242","negative regulation of protein complex d...",8,0,0.67,2027,"1.00000","0.29697","0.29697" +"GO:1901879","regulation of protein depolymerization",8,0,0.67,2028,"1.00000","0.29697","0.29697" +"GO:1901880","negative regulation of protein depolymer...",8,0,0.67,2029,"1.00000","0.29697","0.29697" +"GO:0006164","purine nucleotide biosynthetic process",45,6,3.76,598,"0.16817","0.00367","0.29737" +"GO:0009260","ribonucleotide biosynthetic process",45,6,3.76,599,"0.16817","0.00367","0.29737" +"GO:0046390","ribose phosphate biosynthetic process",45,6,3.76,600,"0.16817","0.00367","0.29737" +"GO:0051304","chromosome separation",6,0,0.5,2030,"1.00000","0.29789","0.29789" +"GO:0007051","spindle organization",10,4,0.83,110,"0.00663","0.05837","0.29819" +"GO:0010647","positive regulation of cell communicatio...",71,8,5.93,818,"0.23709","0.29846","0.29846" +"GO:0023056","positive regulation of signaling",71,8,5.93,819,"0.23709","0.29846","0.29846" +"GO:0051169","nuclear transport",34,6,2.84,382,"0.05879","0.29909","0.29909" +"GO:0043624","cellular protein complex disassembly",23,3,1.92,995,"0.30018","0.02599","0.29910" +"GO:0006342","chromatin silencing",11,3,0.92,357,"0.05731","0.29934","0.29934" +"GO:0060669","embryonic placenta morphogenesis",4,0,0.33,2031,"1.00000","0.29957","0.29957" +"GO:0060706","cell differentiation involved in embryon...",4,0,0.33,2032,"1.00000","0.29957","0.29957" +"GO:0060713","labyrinthine layer morphogenesis",4,0,0.33,2033,"1.00000","0.29957","0.29957" +"GO:0006633","fatty acid biosynthetic process",13,3,1.08,440,"0.08786","0.30040","0.30040" +"GO:1903146","regulation of autophagy of mitochondrion",3,1,0.25,716,"0.23012","0.30059","0.30059" +"GO:0045682","regulation of epidermis development",3,0,0.25,2034,"1.00000","0.30059","0.30059" +"GO:0006487","protein N-linked glycosylation",18,1,1.5,1826,"0.79269","0.30086","0.30086" +"GO:0042737","drug catabolic process",5,1,0.42,1063,"0.35340","0.30098","0.30098" +"GO:0007052","mitotic spindle organization",7,4,0.58,18,"0.00135","0.03284","0.30117" +"GO:0031110","regulation of microtubule polymerization...",8,2,0.67,548,"0.13903","0.30169","0.30169" +"GO:0035295","tube development",47,5,3.92,1134,"0.35490","0.19244","0.30199" +"GO:0006801","superoxide metabolic process",4,1,0.33,910,"0.29444","0.30291","0.30291" +"GO:0051261","protein depolymerization",13,3,1.08,441,"0.08786","0.30357","0.30357" +"GO:0016319","mushroom body development",7,0,0.58,2035,"1.00000","0.30650","0.30650" +"GO:0030865","cortical cytoskeleton organization",7,0,0.58,2036,"1.00000","0.30650","0.30650" +"GO:0030866","cortical actin cytoskeleton organization",7,0,0.58,2037,"1.00000","0.30650","0.30650" +"GO:0018022","peptidyl-lysine methylation",15,3,1.25,519,"0.12378","0.30654","0.30654" +"GO:0045747","positive regulation of Notch signaling p...",5,1,0.42,1064,"0.35340","0.30669","0.30669" +"GO:0010565","regulation of cellular ketone metabolic ...",3,1,0.25,717,"0.23012","0.30738","0.30738" +"GO:0008063","Toll signaling pathway",3,0,0.25,2038,"1.00000","0.30738","0.30738" +"GO:0009733","response to auxin",3,0,0.25,2039,"1.00000","0.30738","0.30738" +"GO:0010243","response to organonitrogen compound",53,7,4.42,573,"0.14844","0.30793","0.30793" +"GO:0006406","mRNA export from nucleus",8,2,0.67,549,"0.13903","0.30837","0.30837" +"GO:0071427","mRNA-containing ribonucleoprotein comple...",8,2,0.67,550,"0.13903","0.30837","0.30837" +"GO:0030509","BMP signaling pathway",7,0,0.58,2040,"1.00000","0.30842","0.30842" +"GO:0071772","response to BMP",7,0,0.58,2041,"1.00000","0.30842","0.30842" +"GO:0071773","cellular response to BMP stimulus",7,0,0.58,2042,"1.00000","0.30842","0.30842" +"GO:0032270","positive regulation of cellular protein ...",56,7,4.67,621,"0.18177","0.30869","0.30869" +"GO:0032886","regulation of microtubule-based process",16,3,1.34,566,"0.14343","0.30878","0.30878" +"GO:0050764","regulation of phagocytosis",11,3,0.92,358,"0.05731","0.31507","0.31507" +"GO:0035148","tube formation",12,1,1,1643,"0.64931","0.31527","0.31527" +"GO:0009887","animal organ morphogenesis",56,4,4.67,1724,"0.70034","0.31532","0.31532" +"GO:0051924","regulation of calcium ion transport",12,3,1,399,"0.07185","0.31646","0.31646" +"GO:0071554","cell wall organization or biogenesis",4,0,0.33,2043,"1.00000","0.31720","0.31720" +"GO:0044265","cellular macromolecule catabolic process",97,10,8.09,884,"0.28778","0.31724","0.31724" +"GO:0048812","neuron projection morphogenesis",42,8,3.51,219,"0.02039","0.31755","0.31755" +"GO:0048858","cell projection morphogenesis",42,8,3.51,220,"0.02039","0.31755","0.31755" +"GO:0120039","plasma membrane bounded cell projection ...",42,8,3.51,221,"0.02039","0.31755","0.31755" +"GO:1901215","negative regulation of neuron death",9,3,0.75,282,"0.03303","0.31758","0.31758" +"GO:0003012","muscle system process",21,1,1.75,1854,"0.84068","0.31825","0.31825" +"GO:0051014","actin filament severing",6,0,0.5,2044,"1.00000","0.31894","0.31894" +"GO:0015780","nucleotide-sugar transmembrane transport",4,0,0.33,2045,"1.00000","0.31927","0.31927" +"GO:0003407","neural retina development",6,1,0.5,1209,"0.40746","0.32007","0.32007" +"GO:0048229","gametophyte development",6,0,0.5,2046,"1.00000","0.32007","0.32007" +"GO:1903432","regulation of TORC1 signaling",3,0,0.25,2047,"1.00000","0.32123","0.32123" +"GO:0043543","protein acylation",17,1,1.42,1805,"0.77369","0.32529","0.32529" +"GO:0030855","epithelial cell differentiation",24,5,2,324,"0.04432","0.32625","0.32625" +"GO:0043900","regulation of multi-organism process",24,5,2,325,"0.04432","0.32625","0.32625" +"GO:0006417","regulation of translation",24,2,2,1596,"0.60770","0.32740","0.32740" +"GO:0044703","multi-organism reproductive process",67,6,5.59,1375,"0.49213","0.32743","0.32743" +"GO:0009132","nucleoside diphosphate metabolic process",13,3,1.08,442,"0.08786","0.32888","0.32888" +"GO:0022408","negative regulation of cell-cell adhesio...",5,1,0.42,1065,"0.35340","0.32969","0.32969" +"GO:0034504","protein localization to nucleus",20,3,1.67,799,"0.23016","0.33056","0.33056" +"GO:0050768","negative regulation of neurogenesis",10,2,0.83,643,"0.20055","0.33131","0.33131" +"GO:0042063","gliogenesis",10,0,0.83,2048,"1.00000","0.33131","0.33131" +"GO:0007156","homophilic cell adhesion via plasma memb...",8,1,0.67,1386,"0.50244","0.33189","0.33189" +"GO:0008582","regulation of synaptic growth at neuromu...",3,0,0.25,2049,"1.00000","0.33194","0.33194" +"GO:1904396","regulation of neuromuscular junction dev...",3,0,0.25,2050,"1.00000","0.33194","0.33194" +"GO:0060562","epithelial tube morphogenesis",20,3,1.67,800,"0.23016","0.33246","0.33246" +"GO:0016071","mRNA metabolic process",89,11,7.43,504,"0.11854","0.33307","0.33307" +"GO:0032387","negative regulation of intracellular tra...",6,1,0.5,1210,"0.40746","0.33323","0.33323" +"GO:0032527","protein exit from endoplasmic reticulum",6,0,0.5,2051,"1.00000","0.33323","0.33323" +"GO:0010035","response to inorganic substance",36,7,3,256,"0.02644","0.33401","0.33401" +"GO:0034767","positive regulation of ion transmembrane...",6,2,0.5,424,"0.08312","0.33439","0.33439" +"GO:1904064","positive regulation of cation transmembr...",6,2,0.5,425,"0.08312","0.33439","0.33439" +"GO:0030099","myeloid cell differentiation",16,4,1.34,318,"0.03863","0.33595","0.33595" +"GO:0045597","positive regulation of cell differentiat...",39,6,3.25,468,"0.10117","0.33597","0.33597" +"GO:0019722","calcium-mediated signaling",7,2,0.58,485,"0.11013","0.33655","0.33655" +"GO:0002218","activation of innate immune response",10,1,0.83,1556,"0.58226","0.33670","0.33670" +"GO:0002758","innate immune response-activating signal...",10,1,0.83,1557,"0.58226","0.33670","0.33670" +"GO:0033043","regulation of organelle organization",84,8,7.01,1200,"0.40257","0.33703","0.33703" +"GO:0010977","negative regulation of neuron projection...",3,1,0.25,718,"0.23012","0.33748","0.33748" +"GO:0031345","negative regulation of cell projection o...",3,1,0.25,719,"0.23012","0.33748","0.33748" +"GO:0050771","negative regulation of axonogenesis",3,1,0.25,720,"0.23012","0.33748","0.33748" +"GO:0061180","mammary gland epithelium development",3,1,0.25,721,"0.23012","0.33748","0.33748" +"GO:0016310","phosphorylation",190,17,15.86,1261,"0.41818","0.33931","0.33931" +"GO:0002224","toll-like receptor signaling pathway",6,0,0.5,2052,"1.00000","0.33992","0.33992" +"GO:0035195","gene silencing by miRNA",4,1,0.33,911,"0.29444","0.34111","0.34111" +"GO:0090481","pyrimidine nucleotide-sugar transmembran...",3,0,0.25,2053,"1.00000","0.34140","0.34140" +"GO:0045814","negative regulation of gene expression, ...",12,3,1,400,"0.07185","0.34208","0.34208" +"GO:0009218","pyrimidine ribonucleotide metabolic proc...",3,0,0.25,2054,"1.00000","0.34244","0.34244" +"GO:0009220","pyrimidine ribonucleotide biosynthetic p...",3,0,0.25,2055,"1.00000","0.34244","0.34244" +"GO:0046132","pyrimidine ribonucleoside biosynthetic p...",3,0,0.25,2056,"1.00000","0.34244","0.34244" +"GO:0046134","pyrimidine nucleoside biosynthetic proce...",3,0,0.25,2057,"1.00000","0.34244","0.34244" +"GO:1901070","guanosine-containing compound biosynthet...",3,0,0.25,2058,"1.00000","0.34244","0.34244" +"GO:0044419","interspecies interaction between organis...",27,5,2.25,391,"0.06874","0.34273","0.34273" +"GO:0001708","cell fate specification",4,1,0.33,912,"0.29444","0.34326","0.34326" +"GO:0009653","anatomical structure morphogenesis",161,18,13.44,506,"0.11867","0.34339","0.34339" +"GO:0035456","response to interferon-beta",3,0,0.25,2059,"1.00000","0.34493","0.34493" +"GO:0035458","cellular response to interferon-beta",3,0,0.25,2060,"1.00000","0.34493","0.34493" +"GO:0016202","regulation of striated muscle tissue dev...",5,0,0.42,2061,"1.00000","0.34500","0.34500" +"GO:0048634","regulation of muscle organ development",5,0,0.42,2062,"1.00000","0.34500","0.34500" +"GO:1901861","regulation of muscle tissue development",5,0,0.42,2063,"1.00000","0.34500","0.34500" +"GO:0016241","regulation of macroautophagy",13,3,1.08,443,"0.08786","0.34511","0.34511" +"GO:0009888","tissue development",116,13,9.68,595,"0.16550","0.20306","0.34531" +"GO:0008219","cell death",89,11,7.43,505,"0.11854","0.34601","0.34601" +"GO:0000956","nuclear-transcribed mRNA catabolic proce...",13,2,1.08,980,"0.29661","0.34722","0.34722" +"GO:0010992","ubiquitin recycling",3,0,0.25,2064,"1.00000","0.34743","0.34743" +"GO:0010994","free ubiquitin chain polymerization",3,0,0.25,2065,"1.00000","0.34743","0.34743" +"GO:0009066","aspartate family amino acid metabolic pr...",4,0,0.33,2066,"1.00000","0.34760","0.34760" +"GO:0001895","retina homeostasis",10,0,0.83,2067,"1.00000","0.34762","0.34762" +"GO:0034109","homotypic cell-cell adhesion",10,0,0.83,2068,"1.00000","0.34762","0.34762" +"GO:0007015","actin filament organization",29,4,2.42,675,"0.21916","0.34787","0.34787" +"GO:0044092","negative regulation of molecular functio...",51,6,4.26,831,"0.24918","0.34863","0.34863" +"GO:0051258","protein polymerization",30,4,2.5,820,"0.23761","0.34972","0.34972" +"GO:0072528","pyrimidine-containing compound biosynthe...",8,1,0.67,1387,"0.50244","0.35016","0.35016" +"GO:0051193","regulation of cofactor metabolic process",6,2,0.5,426,"0.08312","0.35023","0.35023" +"GO:0098930","axonal transport",4,1,0.33,913,"0.29444","0.35123","0.35123" +"GO:0046461","neutral lipid catabolic process",3,0,0.25,2069,"1.00000","0.35142","0.35142" +"GO:0046464","acylglycerol catabolic process",3,0,0.25,2070,"1.00000","0.35142","0.35142" +"GO:0046503","glycerolipid catabolic process",3,0,0.25,2071,"1.00000","0.35142","0.35142" +"GO:0031397","negative regulation of protein ubiquitin...",7,2,0.58,486,"0.11013","0.35389","0.35389" +"GO:0032271","regulation of protein polymerization",22,4,1.84,473,"0.10516","0.35393","0.35393" +"GO:0030239","myofibril assembly",13,1,1.08,1680,"0.67870","0.35409","0.35409" +"GO:0006289","nucleotide-excision repair",6,0,0.5,2072,"1.00000","0.35410","0.35410" +"GO:0007091","metaphase/anaphase transition of mitotic...",5,0,0.42,2073,"1.00000","0.35541","0.35541" +"GO:0010965","regulation of mitotic sister chromatid s...",5,0,0.42,2074,"1.00000","0.35541","0.35541" +"GO:0030071","regulation of mitotic metaphase/anaphase...",5,0,0.42,2075,"1.00000","0.35541","0.35541" +"GO:0044784","metaphase/anaphase transition of cell cy...",5,0,0.42,2076,"1.00000","0.35541","0.35541" +"GO:0051306","mitotic sister chromatid separation",5,0,0.42,2077,"1.00000","0.35541","0.35541" +"GO:1902099","regulation of metaphase/anaphase transit...",5,0,0.42,2078,"1.00000","0.35541","0.35541" +"GO:1905818","regulation of chromosome separation",5,0,0.42,2079,"1.00000","0.35541","0.35541" +"GO:0002182","cytoplasmic translational elongation",3,0,0.25,2080,"1.00000","0.35648","0.35648" +"GO:0017182","peptidyl-diphthamide metabolic process",3,0,0.25,2081,"1.00000","0.35648","0.35648" +"GO:0017183","peptidyl-diphthamide biosynthetic proces...",3,0,0.25,2082,"1.00000","0.35648","0.35648" +"GO:0018202","peptidyl-histidine modification",3,0,0.25,2083,"1.00000","0.35648","0.35648" +"GO:1900247","regulation of cytoplasmic translational ...",3,0,0.25,2084,"1.00000","0.35648","0.35648" +"GO:2000765","regulation of cytoplasmic translation",3,0,0.25,2085,"1.00000","0.35648","0.35648" +"GO:0006915","apoptotic process",74,10,6.18,435,"0.08448","0.35657","0.35657" +"GO:0008356","asymmetric cell division",7,0,0.58,2086,"1.00000","0.35693","0.35693" +"GO:0017145","stem cell division",7,0,0.58,2087,"1.00000","0.35693","0.35693" +"GO:0098722","asymmetric stem cell division",7,0,0.58,2088,"1.00000","0.35693","0.35693" +"GO:0045216","cell-cell junction organization",4,0,0.33,2089,"1.00000","0.35782","0.35782" +"GO:0032956","regulation of actin cytoskeleton organiz...",23,3,1.92,996,"0.30018","0.35812","0.35812" +"GO:1901800","positive regulation of proteasomal prote...",8,1,0.67,1388,"0.50244","0.35844","0.35844" +"GO:1903052","positive regulation of proteolysis invol...",8,1,0.67,1389,"0.50244","0.35844","0.35844" +"GO:1903364","positive regulation of cellular protein ...",8,1,0.67,1390,"0.50244","0.35844","0.35844" +"GO:2000058","regulation of ubiquitin-dependent protei...",8,0,0.67,2090,"1.00000","0.35844","0.35844" +"GO:0051153","regulation of striated muscle cell diffe...",10,0,0.83,2091,"1.00000","0.35895","0.35895" +"GO:0000184","nuclear-transcribed mRNA catabolic proce...",4,1,0.33,914,"0.29444","0.35929","0.35929" +"GO:0007017","microtubule-based process",73,12,6.09,176,"0.01602","0.09552","0.35938" +"GO:0042254","ribosome biogenesis",64,9,5.34,414,"0.08109","0.05592","0.35961" +"GO:0050790","regulation of catalytic activity",101,17,8.43,70,"0.00348","0.11308","0.35970" +"GO:0001819","positive regulation of cytokine producti...",12,3,1,401,"0.07185","0.35976","0.35976" +"GO:0043484","regulation of RNA splicing",12,3,1,402,"0.07185","0.35976","0.35976" +"GO:0099003","vesicle-mediated transport in synapse",12,3,1,403,"0.07185","0.35976","0.35976" +"GO:0021762","substantia nigra development",5,0,0.42,2092,"1.00000","0.36117","0.36117" +"GO:0048857","neural nucleus development",5,0,0.42,2093,"1.00000","0.36117","0.36117" +"GO:0009743","response to carbohydrate",8,1,0.67,1391,"0.50244","0.36157","0.36157" +"GO:0005977","glycogen metabolic process",4,1,0.33,915,"0.29444","0.36298","0.36298" +"GO:0005978","glycogen biosynthetic process",4,1,0.33,916,"0.29444","0.36298","0.36298" +"GO:0006073","cellular glucan metabolic process",4,1,0.33,917,"0.29444","0.36298","0.36298" +"GO:0006094","gluconeogenesis",4,1,0.33,918,"0.29444","0.36298","0.36298" +"GO:0006112","energy reserve metabolic process",4,1,0.33,919,"0.29444","0.36298","0.36298" +"GO:0009250","glucan biosynthetic process",4,1,0.33,920,"0.29444","0.36298","0.36298" +"GO:0019319","hexose biosynthetic process",4,1,0.33,921,"0.29444","0.36298","0.36298" +"GO:0044042","glucan metabolic process",4,1,0.33,922,"0.29444","0.36298","0.36298" +"GO:0046364","monosaccharide biosynthetic process",4,1,0.33,923,"0.29444","0.36298","0.36298" +"GO:0000154","rRNA modification",11,0,0.92,2094,"1.00000","0.36528","0.36528" +"GO:0051961","negative regulation of nervous system de...",13,2,1.08,981,"0.29661","0.36608","0.36608" +"GO:0014033","neural crest cell differentiation",3,1,0.25,722,"0.23012","0.36608","0.36608" +"GO:0006928","movement of cell or subcellular componen...",82,10,6.84,561,"0.14147","0.36625","0.36625" +"GO:0035108","limb morphogenesis",6,0,0.5,2095,"1.00000","0.36646","0.36646" +"GO:0060173","limb development",6,0,0.5,2096,"1.00000","0.36646","0.36646" +"GO:0008037","cell recognition",11,3,0.92,359,"0.05731","0.36663","0.36663" +"GO:0006935","chemotaxis",24,5,2,326,"0.04432","0.36712","0.36712" +"GO:0006732","coenzyme metabolic process",51,4,4.26,1631,"0.62695","0.36738","0.36738" +"GO:0030150","protein import into mitochondrial matrix",4,0,0.33,2097,"1.00000","0.36744","0.36744" +"GO:0034470","ncRNA processing",82,8,6.84,1174,"0.37622","0.36817","0.36817" +"GO:0009165","nucleotide biosynthetic process",57,8,4.76,462,"0.09776","0.00967","0.36885" +"GO:1901293","nucleoside phosphate biosynthetic proces...",57,8,4.76,463,"0.09776","0.00967","0.36885" +"GO:0045786","negative regulation of cell cycle",33,3,2.75,1464,"0.52845","0.36905","0.36905" +"GO:0006490","oligosaccharide-lipid intermediate biosy...",5,0,0.42,2098,"1.00000","0.36915","0.36915" +"GO:0090287","regulation of cellular response to growt...",12,1,1,1644,"0.64931","0.37180","0.37180" +"GO:0010927","cellular component assembly involved in ...",16,1,1.34,1776,"0.75296","0.37184","0.37184" +"GO:0046330","positive regulation of JNK cascade",3,1,0.25,723,"0.23012","0.37234","0.37234" +"GO:0000209","protein polyubiquitination",22,0,1.84,2099,"1.00000","0.37344","0.37344" +"GO:0009719","response to endogenous stimulus",76,8,6.34,993,"0.29849","0.17738","0.37352" +"GO:0048232","male gamete generation",36,3,3,1588,"0.58898","0.37371","0.37371" +"GO:0040025","vulval development",3,0,0.25,2100,"1.00000","0.37386","0.37386" +"GO:0031647","regulation of protein stability",23,4,1.92,508,"0.11940","0.37439","0.37439" +"GO:0000819","sister chromatid segregation",17,0,1.42,2101,"1.00000","0.37464","0.37464" +"GO:1903706","regulation of hemopoiesis",17,4,1.42,344,"0.04731","0.37473","0.37473" +"GO:0001704","formation of primary germ layer",4,1,0.33,924,"0.29444","0.37569","0.37569" +"GO:0060429","epithelium development",66,7,5.51,1011,"0.31051","0.17410","0.37660" +"GO:0048545","response to steroid hormone",31,5,2.59,495,"0.11074","0.37681","0.37681" +"GO:0001942","hair follicle development",4,0,0.33,2102,"1.00000","0.37871","0.37871" +"GO:0001952","regulation of cell-matrix adhesion",4,0,0.33,2103,"1.00000","0.37871","0.37871" +"GO:0007044","cell-substrate junction assembly",4,0,0.33,2104,"1.00000","0.37871","0.37871" +"GO:0007045","cell-substrate adherens junction assembl...",4,0,0.33,2105,"1.00000","0.37871","0.37871" +"GO:0022404","molting cycle process",4,0,0.33,2106,"1.00000","0.37871","0.37871" +"GO:0022405","hair cycle process",4,0,0.33,2107,"1.00000","0.37871","0.37871" +"GO:0042633","hair cycle",4,0,0.33,2108,"1.00000","0.37871","0.37871" +"GO:0048041","focal adhesion assembly",4,0,0.33,2109,"1.00000","0.37871","0.37871" +"GO:0098773","skin epidermis development",4,0,0.33,2110,"1.00000","0.37871","0.37871" +"GO:0031032","actomyosin structure organization",19,1,1.59,1837,"0.81011","0.38070","0.38070" +"GO:0019441","tryptophan catabolic process to kynureni...",3,0,0.25,2111,"1.00000","0.38105","0.38105" +"GO:0070189","kynurenine metabolic process",3,0,0.25,2112,"1.00000","0.38105","0.38105" +"GO:0009060","aerobic respiration",17,1,1.42,1806,"0.77369","0.38116","0.38116" +"GO:0000045","autophagosome assembly",6,2,0.5,427,"0.08312","0.38120","0.38120" +"GO:1905037","autophagosome organization",6,2,0.5,428,"0.08312","0.38120","0.38120" +"GO:0030518","intracellular steroid hormone receptor s...",9,1,0.75,1492,"0.54409","0.38171","0.38171" +"GO:0048646","anatomical structure formation involved ...",67,5,5.59,1669,"0.66999","0.38187","0.38187" +"GO:0051705","multi-organism behavior",10,0,0.83,2113,"1.00000","0.38241","0.38241" +"GO:0008652","cellular amino acid biosynthetic process",11,1,0.92,1614,"0.61724","0.38334","0.38334" +"GO:1901607","alpha-amino acid biosynthetic process",11,1,0.92,1615,"0.61724","0.38334","0.38334" +"GO:0050868","negative regulation of T cell activation",3,0,0.25,2114,"1.00000","0.38346","0.38346" +"GO:1903038","negative regulation of leukocyte cell-ce...",3,0,0.25,2115,"1.00000","0.38346","0.38346" +"GO:0016331","morphogenesis of embryonic epithelium",11,2,0.92,810,"0.23238","0.38391","0.38391" +"GO:0002115","store-operated calcium entry",4,1,0.33,925,"0.29444","0.38478","0.38478" +"GO:0043065","positive regulation of apoptotic process",20,3,1.67,801,"0.23016","0.38560","0.38560" +"GO:0110053","regulation of actin filament organizatio...",19,2,1.59,1359,"0.47927","0.38560","0.38560" +"GO:0060135","maternal process involved in female preg...",4,1,0.33,926,"0.29444","0.38631","0.38631" +"GO:0006901","vesicle coating",4,0,0.33,2116,"1.00000","0.38631","0.38631" +"GO:0015031","protein transport",138,16,11.52,479,"0.10745","0.38665","0.38665" +"GO:0045732","positive regulation of protein catabolic...",11,1,0.92,1616,"0.61724","0.38668","0.38668" +"GO:0044257","cellular protein catabolic process",70,6,5.84,1478,"0.53629","0.38685","0.38685" +"GO:0051603","proteolysis involved in cellular protein...",70,6,5.84,1479,"0.53629","0.38685","0.38685" +"GO:0033365","protein localization to organelle",68,7,5.67,1037,"0.33836","0.38718","0.38718" +"GO:0018205","peptidyl-lysine modification",33,4,2.75,977,"0.29480","0.38744","0.38744" +"GO:0043085","positive regulation of catalytic activit...",44,7,3.67,394,"0.06898","0.38855","0.38855" +"GO:0006904","vesicle docking involved in exocytosis",5,0,0.42,2117,"1.00000","0.38861","0.38861" +"GO:0006979","response to oxidative stress",44,8,3.67,257,"0.02651","0.38971","0.38971" +"GO:0042133","neurotransmitter metabolic process",12,1,1,1645,"0.64931","0.38978","0.38978" +"GO:0042176","regulation of protein catabolic process",20,1,1.67,1846,"0.82606","0.39006","0.39006" +"GO:0051494","negative regulation of cytoskeleton orga...",11,0,0.92,2118,"1.00000","0.39014","0.39014" +"GO:0032269","negative regulation of cellular protein ...",59,8,4.92,502,"0.11393","0.39084","0.39084" +"GO:0003279","cardiac septum development",4,0,0.33,2119,"1.00000","0.39091","0.39091" +"GO:0043687","post-translational protein modification",3,0,0.25,2120,"1.00000","0.39141","0.39141" +"GO:0034613","cellular protein localization",159,15,13.27,1040,"0.34649","0.39143","0.39143" +"GO:0070727","cellular macromolecule localization",159,15,13.27,1041,"0.34649","0.39143","0.39143" +"GO:0071569","protein ufmylation",4,0,0.33,2121,"1.00000","0.39168","0.39168" +"GO:1990564","protein polyufmylation",4,0,0.33,2122,"1.00000","0.39168","0.39168" +"GO:1990592","protein K69-linked ufmylation",4,0,0.33,2123,"1.00000","0.39168","0.39168" +"GO:0016266","O-glycan processing",7,1,0.58,1309,"0.45702","0.39366","0.39366" +"GO:0051783","regulation of nuclear division",15,2,1.25,1139,"0.36000","0.39494","0.39494" +"GO:0048667","cell morphogenesis involved in neuron di...",38,7,3.17,284,"0.03468","0.39558","0.39558" +"GO:0140014","mitotic nuclear division",21,4,1.75,451,"0.09176","0.21302","0.39572" +"GO:0034330","cell junction organization",11,0,0.92,2124,"1.00000","0.39677","0.39677" +"GO:0009725","response to hormone",58,7,4.84,657,"0.20559","0.18855","0.39723" +"GO:0042445","hormone metabolic process",15,1,1.25,1756,"0.73033","0.39794","0.39794" +"GO:0051346","negative regulation of hydrolase activit...",21,3,1.75,835,"0.25322","0.39877","0.39877" +"GO:0042060","wound healing",24,2,2,1597,"0.60770","0.39891","0.39891" +"GO:0051225","spindle assembly",6,4,0.5,9,"0.00062","0.01551","0.39964" +"GO:0007006","mitochondrial membrane organization",12,2,1,852,"0.26449","0.40094","0.40094" +"GO:0030433","ubiquitin-dependent ERAD pathway",13,1,1.08,1681,"0.67870","0.40150","0.40150" +"GO:0008380","RNA splicing",63,9,5.26,405,"0.07487","0.40167","0.40167" +"GO:0030100","regulation of endocytosis",19,4,1.59,389,"0.06764","0.40218","0.40218" +"GO:0018342","protein prenylation",4,1,0.33,927,"0.29444","0.40329","0.40329" +"GO:0097354","prenylation",4,1,0.33,928,"0.29444","0.40329","0.40329" +"GO:1903169","regulation of calcium ion transmembrane ...",7,2,0.58,487,"0.11013","0.40378","0.40378" +"GO:0070507","regulation of microtubule cytoskeleton o...",13,2,1.08,982,"0.29661","0.40399","0.40399" +"GO:0051247","positive regulation of protein metabolic...",60,7,5.01,803,"0.23053","0.40427","0.40427" +"GO:0006376","mRNA splice site selection",3,0,0.25,2125,"1.00000","0.40438","0.40438" +"GO:0007019","microtubule depolymerization",3,0,0.25,2126,"1.00000","0.40438","0.40438" +"GO:0007026","negative regulation of microtubule depol...",3,0,0.25,2127,"1.00000","0.40438","0.40438" +"GO:0031111","negative regulation of microtubule polym...",3,0,0.25,2128,"1.00000","0.40438","0.40438" +"GO:0031114","regulation of microtubule depolymerizati...",3,0,0.25,2129,"1.00000","0.40438","0.40438" +"GO:0010389","regulation of G2/M transition of mitotic...",10,0,0.83,2130,"1.00000","0.40658","0.40658" +"GO:1902749","regulation of cell cycle G2/M phase tran...",10,0,0.83,2131,"1.00000","0.40658","0.40658" +"GO:0061418","regulation of transcription from RNA pol...",5,1,0.42,1066,"0.35340","0.40714","0.40714" +"GO:0000910","cytokinesis",15,1,1.25,1757,"0.73033","0.40721","0.40721" +"GO:0061458","reproductive system development",36,3,3,1589,"0.58898","0.13506","0.40779" +"GO:0050909","sensory perception of taste",3,1,0.25,724,"0.23012","0.40844","0.40844" +"GO:0030163","protein catabolic process",86,9,7.18,882,"0.28729","0.40851","0.40851" +"GO:0007155","cell adhesion",80,7,6.68,1448,"0.50699","0.40862","0.40862" +"GO:0022610","biological adhesion",80,7,6.68,1449,"0.50699","0.40862","0.40862" +"GO:0071496","cellular response to external stimulus",17,3,1.42,592,"0.16403","0.40892","0.40892" +"GO:0050789","regulation of biological process",939,86,78.36,584,"0.15068","0.40931","0.40931" +"GO:0048469","cell maturation",15,1,1.25,1758,"0.73033","0.41005","0.41005" +"GO:0006873","cellular ion homeostasis",29,2,2.42,1745,"0.71071","0.41224","0.41224" +"GO:0030003","cellular cation homeostasis",29,2,2.42,1746,"0.71071","0.41224","0.41224" +"GO:0009913","epidermal cell differentiation",5,1,0.42,1067,"0.35340","0.41434","0.41434" +"GO:0051640","organelle localization",38,3,3.17,1630,"0.62648","0.41572","0.41572" +"GO:1903047","mitotic cell cycle process",60,5,5.01,1547,"0.57033","0.28755","0.41647" +"GO:0031214","biomineral tissue development",4,1,0.33,929,"0.29444","0.41663","0.41663" +"GO:0019359","nicotinamide nucleotide biosynthetic pro...",14,3,1.17,475,"0.10521","0.41692","0.41692" +"GO:0019363","pyridine nucleotide biosynthetic process",14,3,1.17,476,"0.10521","0.41692","0.41692" +"GO:0072525","pyridine-containing compound biosyntheti...",14,3,1.17,477,"0.10521","0.41692","0.41692" +"GO:0006091","generation of precursor metabolites and ...",48,3,4.01,1822,"0.77789","0.05871","0.41699" +"GO:0006954","inflammatory response",9,2,0.75,608,"0.16931","0.41769","0.41769" +"GO:0048585","negative regulation of response to stimu...",70,8,5.84,688,"0.22537","0.41868","0.41868" +"GO:1902914","regulation of protein polyubiquitination",5,0,0.42,2132,"1.00000","0.41947","0.41947" +"GO:1902916","positive regulation of protein polyubiqu...",5,0,0.42,2133,"1.00000","0.41947","0.41947" +"GO:0018242","protein O-linked glycosylation via serin...",4,0,0.33,2134,"1.00000","0.41980","0.41980" +"GO:0009142","nucleoside triphosphate biosynthetic pro...",28,6,2.34,247,"0.02499","0.00335","0.42096" +"GO:0009145","purine nucleoside triphosphate biosynthe...",28,6,2.34,248,"0.02499","0.00335","0.42096" +"GO:0009201","ribonucleoside triphosphate biosynthetic...",28,6,2.34,249,"0.02499","0.00335","0.42096" +"GO:0009206","purine ribonucleoside triphosphate biosy...",28,6,2.34,250,"0.02499","0.00335","0.42096" +"GO:0006754","ATP biosynthetic process",26,6,2.17,179,"0.01757","0.01023","0.42161" +"GO:0006353","DNA-templated transcription, termination",3,1,0.25,725,"0.23012","0.42211","0.42211" +"GO:0006369","termination of RNA polymerase II transcr...",3,1,0.25,726,"0.23012","0.42211","0.42211" +"GO:0051017","actin filament bundle assembly",4,0,0.33,2135,"1.00000","0.42218","0.42218" +"GO:0061572","actin filament bundle organization",4,0,0.33,2136,"1.00000","0.42218","0.42218" +"GO:0007165","signal transduction",368,35,30.71,673,"0.21912","0.42221","0.42221" +"GO:0051260","protein homooligomerization",12,2,1,853,"0.26449","0.42277","0.42277" +"GO:0006090","pyruvate metabolic process",12,2,1,854,"0.26449","0.42277","0.42277" +"GO:0006165","nucleoside diphosphate phosphorylation",12,2,1,855,"0.26449","0.42277","0.42277" +"GO:0046939","nucleotide phosphorylation",12,2,1,856,"0.26449","0.42277","0.42277" +"GO:0035994","response to muscle stretch",6,0,0.5,2137,"1.00000","0.42280","0.42280" +"GO:1900037","regulation of cellular response to hypox...",3,1,0.25,727,"0.23012","0.42325","0.42325" +"GO:0019933","cAMP-mediated signaling",8,0,0.67,2138,"1.00000","0.42358","0.42358" +"GO:0019935","cyclic-nucleotide-mediated signaling",8,0,0.67,2139,"1.00000","0.42358","0.42358" +"GO:0042330","taxis",26,5,2.17,384,"0.05991","0.42409","0.42409" +"GO:0090066","regulation of anatomical structure size",36,4,3,1132,"0.35351","0.42436","0.42436" +"GO:0051893","regulation of focal adhesion assembly",3,0,0.25,2140,"1.00000","0.42532","0.42532" +"GO:0090109","regulation of cell-substrate junction as...",3,0,0.25,2141,"1.00000","0.42532","0.42532" +"GO:1903391","regulation of adherens junction organiza...",3,0,0.25,2142,"1.00000","0.42532","0.42532" +"GO:0035264","multicellular organism growth",11,2,0.92,811,"0.23238","0.42608","0.42608" +"GO:0001709","cell fate determination",6,1,0.5,1211,"0.40746","0.42638","0.42638" +"GO:0061355","Wnt protein secretion",4,0,0.33,2143,"1.00000","0.42696","0.42696" +"GO:0045184","establishment of protein localization",146,16,12.18,585,"0.15384","0.42715","0.42715" +"GO:0060627","regulation of vesicle-mediated transport",28,5,2.34,411,"0.07825","0.42885","0.42885" +"GO:0010212","response to ionizing radiation",7,2,0.58,488,"0.11013","0.42918","0.42918" +"GO:0046907","intracellular transport",170,19,14.19,497,"0.11121","0.42989","0.42989" +"GO:0070584","mitochondrion morphogenesis",3,0,0.25,2144,"1.00000","0.43017","0.43017" +"GO:0061515","myeloid cell development",8,1,0.67,1392,"0.50244","0.43036","0.43036" +"GO:0006473","protein acetylation",13,1,1.08,1682,"0.67870","0.43068","0.43068" +"GO:0006475","internal protein amino acid acetylation",13,1,1.08,1683,"0.67870","0.43068","0.43068" +"GO:0016573","histone acetylation",13,1,1.08,1684,"0.67870","0.43068","0.43068" +"GO:0018393","internal peptidyl-lysine acetylation",13,1,1.08,1685,"0.67870","0.43068","0.43068" +"GO:0018394","peptidyl-lysine acetylation",13,1,1.08,1686,"0.67870","0.43068","0.43068" +"GO:0002252","immune effector process",22,4,1.84,474,"0.10516","0.43098","0.43098" +"GO:0009084","glutamine family amino acid biosynthetic...",4,1,0.33,930,"0.29444","0.43176","0.43176" +"GO:0009057","macromolecule catabolic process",113,12,9.43,691,"0.22945","0.43187","0.43187" +"GO:0030154","cell differentiation",203,21,16.94,613,"0.17289","0.43204","0.43204" +"GO:0051302","regulation of cell division",4,1,0.33,931,"0.29444","0.43417","0.43417" +"GO:0043603","cellular amide metabolic process",230,22,19.19,872,"0.27654","0.00062","0.43430" +"GO:0016236","macroautophagy",21,4,1.75,452,"0.09176","0.43457","0.43457" +"GO:1901564","organonitrogen compound metabolic proces...",948,80,79.11,1356,"0.47516","0.06964","0.43543" +"GO:0000280","nuclear division",32,5,2.67,513,"0.12282","0.28780","0.43737" +"GO:0034314","Arp2/3 complex-mediated actin nucleation",7,2,0.58,489,"0.11013","0.43738","0.43738" +"GO:0007281","germ cell development",37,3,3.09,1602,"0.60803","0.43811","0.43811" +"GO:0015837","amine transport",3,0,0.25,2145,"1.00000","0.43852","0.43852" +"GO:0044070","regulation of anion transport",3,0,0.25,2146,"1.00000","0.43852","0.43852" +"GO:0051952","regulation of amine transport",3,0,0.25,2147,"1.00000","0.43852","0.43852" +"GO:0001510","RNA methylation",19,0,1.59,2148,"1.00000","0.43969","0.43969" +"GO:1905330","regulation of morphogenesis of an epithe...",12,0,1,2149,"1.00000","0.44132","0.44132" +"GO:0002684","positive regulation of immune system pro...",32,5,2.67,514,"0.12282","0.44266","0.44266" +"GO:0010605","negative regulation of macromolecule met...",152,18,12.68,408,"0.07792","0.44315","0.44315" +"GO:0045214","sarcomere organization",9,1,0.75,1493,"0.54409","0.44416","0.44416" +"GO:0090175","regulation of establishment of planar po...",9,0,0.75,2150,"1.00000","0.44416","0.44416" +"GO:0009101","glycoprotein biosynthetic process",52,6,4.34,847,"0.26368","0.44423","0.44423" +"GO:0034248","regulation of cellular amide metabolic p...",26,2,2.17,1663,"0.65192","0.44436","0.44436" +"GO:0051131","chaperone-mediated protein complex assem...",3,0,0.25,2151,"1.00000","0.44436","0.44436" +"GO:0046835","carbohydrate phosphorylation",3,0,0.25,2152,"1.00000","0.44507","0.44507" +"GO:1901214","regulation of neuron death",11,3,0.92,360,"0.05731","0.44515","0.44515" +"GO:0006611","protein export from nucleus",11,2,0.92,812,"0.23238","0.44528","0.44528" +"GO:0044267","cellular protein metabolic process",626,56,52.24,889,"0.29339","0.02022","0.44628" +"GO:0060998","regulation of dendritic spine developmen...",6,2,0.5,429,"0.08312","0.44679","0.44679" +"GO:0002220","innate immune response activating cell s...",3,0,0.25,2153,"1.00000","0.44694","0.44694" +"GO:0002223","stimulatory C-type lectin receptor signa...",3,0,0.25,2154,"1.00000","0.44694","0.44694" +"GO:0002756","MyD88-independent toll-like receptor sig...",3,0,0.25,2155,"1.00000","0.44694","0.44694" +"GO:0038095","Fc-epsilon receptor signaling pathway",3,0,0.25,2156,"1.00000","0.44694","0.44694" +"GO:0045466","R7 cell differentiation",3,0,0.25,2157,"1.00000","0.44694","0.44694" +"GO:0008645","hexose transmembrane transport",6,1,0.5,1212,"0.40746","0.44745","0.44745" +"GO:0015749","monosaccharide transmembrane transport",6,1,0.5,1213,"0.40746","0.44745","0.44745" +"GO:0034219","carbohydrate transmembrane transport",6,1,0.5,1214,"0.40746","0.44745","0.44745" +"GO:0048640","negative regulation of developmental gro...",6,1,0.5,1215,"0.40746","0.44745","0.44745" +"GO:0043401","steroid hormone mediated signaling pathw...",17,1,1.42,1807,"0.77369","0.44789","0.44789" +"GO:0000380","alternative mRNA splicing, via spliceoso...",4,0,0.33,2158,"1.00000","0.44792","0.44792" +"GO:0000381","regulation of alternative mRNA splicing,...",4,0,0.33,2159,"1.00000","0.44792","0.44792" +"GO:0001777","T cell homeostatic proliferation",3,1,0.25,728,"0.23012","0.44859","0.44859" +"GO:0031101","fin regeneration",3,1,0.25,729,"0.23012","0.44859","0.44859" +"GO:0046013","regulation of T cell homeostatic prolife...",3,1,0.25,730,"0.23012","0.44859","0.44859" +"GO:0061299","retina vasculature morphogenesis in came...",3,1,0.25,731,"0.23012","0.44859","0.44859" +"GO:0061304","retinal blood vessel morphogenesis",3,1,0.25,732,"0.23012","0.44859","0.44859" +"GO:0048872","homeostasis of number of cells",19,4,1.59,390,"0.06764","0.44921","0.44921" +"GO:0048749","compound eye development",10,1,0.83,1558,"0.58226","0.44984","0.44984" +"GO:0006140","regulation of nucleotide metabolic proce...",8,2,0.67,551,"0.13903","0.45096","0.45096" +"GO:0043467","regulation of generation of precursor me...",8,2,0.67,552,"0.13903","0.45096","0.45096" +"GO:1900542","regulation of purine nucleotide metaboli...",8,2,0.67,553,"0.13903","0.45096","0.45096" +"GO:1903578","regulation of ATP metabolic process",8,2,0.67,554,"0.13903","0.45096","0.45096" +"GO:0044272","sulfur compound biosynthetic process",14,0,1.17,2160,"1.00000","0.45135","0.45135" +"GO:0015833","peptide transport",139,16,11.6,500,"0.11272","0.45198","0.45198" +"GO:0042886","amide transport",139,16,11.6,501,"0.11272","0.45198","0.45198" +"GO:0033238","regulation of cellular amine metabolic p...",5,0,0.42,2161,"1.00000","0.45242","0.45242" +"GO:0045840","positive regulation of mitotic nuclear d...",5,0,0.42,2162,"1.00000","0.45242","0.45242" +"GO:0046683","response to organophosphorus",5,0,0.42,2163,"1.00000","0.45242","0.45242" +"GO:0072348","sulfur compound transport",3,0,0.25,2164,"1.00000","0.45282","0.45282" +"GO:0030838","positive regulation of actin filament po...",13,2,1.08,983,"0.29661","0.45340","0.45340" +"GO:0035266","meristem growth",4,0,0.33,2165,"1.00000","0.45445","0.45445" +"GO:0070129","regulation of mitochondrial translation",3,0,0.25,2166,"1.00000","0.45471","0.45471" +"GO:0030010","establishment of cell polarity",10,1,0.83,1559,"0.58226","0.45476","0.45476" +"GO:0007154","cell communication",408,42,34.05,406,"0.07702","0.45525","0.45525" +"GO:0006338","chromatin remodeling",16,1,1.34,1777,"0.75296","0.45537","0.45537" +"GO:0008089","anterograde axonal transport",3,0,0.25,2167,"1.00000","0.45637","0.45637" +"GO:0002064","epithelial cell development",16,3,1.34,567,"0.14343","0.45701","0.45701" +"GO:0010959","regulation of metal ion transport",16,3,1.34,568,"0.14343","0.45701","0.45701" +"GO:0018196","peptidyl-asparagine modification",9,1,0.75,1494,"0.54409","0.45709","0.45709" +"GO:0018279","protein N-linked glycosylation via aspar...",9,1,0.75,1495,"0.54409","0.45709","0.45709" +"GO:0006729","tetrahydrobiopterin biosynthetic process",4,0,0.33,2168,"1.00000","0.45773","0.45773" +"GO:0034311","diol metabolic process",4,0,0.33,2169,"1.00000","0.45773","0.45773" +"GO:0034312","diol biosynthetic process",4,0,0.33,2170,"1.00000","0.45773","0.45773" +"GO:0046146","tetrahydrobiopterin metabolic process",4,0,0.33,2171,"1.00000","0.45773","0.45773" +"GO:0051726","regulation of cell cycle",77,7,6.43,1352,"0.46546","0.45801","0.45801" +"GO:1905114","cell surface receptor signaling pathway ...",29,2,2.42,1747,"0.71071","0.45831","0.45831" +"GO:0120036","plasma membrane bounded cell projection ...",85,12,7.09,339,"0.04704","0.45862","0.45862" +"GO:0060688","regulation of morphogenesis of a branchi...",3,0,0.25,2172,"1.00000","0.45897","0.45897" +"GO:0042493","response to drug",55,8,4.59,415,"0.08298","0.45974","0.45974" +"GO:0007215","glutamate receptor signaling pathway",8,2,0.67,555,"0.13903","0.46023","0.46023" +"GO:0001667","ameboidal-type cell migration",9,2,0.75,609,"0.16931","0.46051","0.46051" +"GO:1901264","carbohydrate derivative transport",7,0,0.58,2173,"1.00000","0.46172","0.46172" +"GO:0008610","lipid biosynthetic process",62,7,5.17,843,"0.25643","0.46220","0.46220" +"GO:0048523","negative regulation of cellular process",243,23,20.28,885,"0.28817","0.46239","0.46239" +"GO:0007043","cell-cell junction assembly",3,0,0.25,2174,"1.00000","0.46277","0.46277" +"GO:0043297","apical junction assembly",3,0,0.25,2175,"1.00000","0.46277","0.46277" +"GO:0120192","tight junction assembly",3,0,0.25,2176,"1.00000","0.46277","0.46277" +"GO:0120193","tight junction organization",3,0,0.25,2177,"1.00000","0.46277","0.46277" +"GO:0032436","positive regulation of proteasomal ubiqu...",6,0,0.5,2178,"1.00000","0.46350","0.46350" +"GO:2000060","positive regulation of ubiquitin-depende...",6,0,0.5,2179,"1.00000","0.46350","0.46350" +"GO:0045454","cell redox homeostasis",32,2,2.67,1795,"0.76100","0.46357","0.46357" +"GO:0034329","cell junction assembly",10,0,0.83,2180,"1.00000","0.46438","0.46438" +"GO:0034764","positive regulation of transmembrane tra...",8,2,0.67,556,"0.13903","0.46490","0.46490" +"GO:0006403","RNA localization",17,2,1.42,1264,"0.42119","0.46572","0.46572" +"GO:0006613","cotranslational protein targeting to mem...",6,1,0.5,1216,"0.40746","0.46586","0.46586" +"GO:0006614","SRP-dependent cotranslational protein ta...",6,1,0.5,1217,"0.40746","0.46586","0.46586" +"GO:0045047","protein targeting to ER",6,1,0.5,1218,"0.40746","0.46586","0.46586" +"GO:0072599","establishment of protein localization to...",6,1,0.5,1219,"0.40746","0.46586","0.46586" +"GO:0008593","regulation of Notch signaling pathway",9,1,0.75,1496,"0.54409","0.46642","0.46642" +"GO:0006334","nucleosome assembly",6,1,0.5,1220,"0.40746","0.46654","0.46654" +"GO:1905515","non-motile cilium assembly",3,0,0.25,2181,"1.00000","0.46682","0.46682" +"GO:0006111","regulation of gluconeogenesis",3,1,0.25,733,"0.23012","0.46777","0.46777" +"GO:0010799","regulation of peptidyl-threonine phospho...",3,1,0.25,734,"0.23012","0.46777","0.46777" +"GO:0010800","positive regulation of peptidyl-threonin...",3,1,0.25,735,"0.23012","0.46777","0.46777" +"GO:0018107","peptidyl-threonine phosphorylation",3,1,0.25,736,"0.23012","0.46777","0.46777" +"GO:0043255","regulation of carbohydrate biosynthetic ...",3,1,0.25,737,"0.23012","0.46777","0.46777" +"GO:0030834","regulation of actin filament depolymeriz...",5,0,0.42,2182,"1.00000","0.46860","0.46860" +"GO:0030835","negative regulation of actin filament de...",5,0,0.42,2183,"1.00000","0.46860","0.46860" +"GO:0010171","body morphogenesis",6,1,0.5,1221,"0.40746","0.47160","0.47160" +"GO:0034622","cellular protein-containing complex asse...",113,14,9.43,432,"0.08390","0.07171","0.47166" +"GO:0010721","negative regulation of cell development",14,2,1.17,1031,"0.32850","0.47272","0.47272" +"GO:0042325","regulation of phosphorylation",61,7,5.09,828,"0.24337","0.47472","0.47472" +"GO:0032509","endosome transport via multivesicular bo...",4,0,0.33,2184,"1.00000","0.47507","0.47507" +"GO:0042059","negative regulation of epidermal growth ...",4,0,0.33,2185,"1.00000","0.47507","0.47507" +"GO:0071985","multivesicular body sorting pathway",4,0,0.33,2186,"1.00000","0.47507","0.47507" +"GO:1901185","negative regulation of ERBB signaling pa...",4,0,0.33,2187,"1.00000","0.47507","0.47507" +"GO:0060348","bone development",5,0,0.42,2188,"1.00000","0.47509","0.47509" +"GO:0030534","adult behavior",10,2,0.83,644,"0.20055","0.47539","0.47539" +"GO:0098609","cell-cell adhesion",51,5,4.26,1269,"0.42348","0.47618","0.47618" +"GO:0043068","positive regulation of programmed cell d...",21,3,1.75,836,"0.25322","0.47641","0.47641" +"GO:0030522","intracellular receptor signaling pathway",12,2,1,857,"0.26449","0.47645","0.47645" +"GO:0071559","response to transforming growth factor b...",9,1,0.75,1497,"0.54409","0.47652","0.47652" +"GO:0071560","cellular response to transforming growth...",9,1,0.75,1498,"0.54409","0.47652","0.47652" +"GO:0031503","protein-containing complex localization",17,3,1.42,593,"0.16403","0.47701","0.47701" +"GO:0044782","cilium organization",22,3,1.84,873,"0.27660","0.47714","0.47714" +"GO:0002673","regulation of acute inflammatory respons...",4,1,0.33,932,"0.29444","0.47757","0.47757" +"GO:0050727","regulation of inflammatory response",4,1,0.33,933,"0.29444","0.47757","0.47757" +"GO:0010604","positive regulation of macromolecule met...",123,13,10.26,686,"0.22223","0.47867","0.47867" +"GO:1903311","regulation of mRNA metabolic process",15,3,1.25,520,"0.12378","0.48022","0.48022" +"GO:0030097","hemopoiesis",29,4,2.42,676,"0.21916","0.48085","0.48085" +"GO:0070861","regulation of protein exit from endoplas...",4,0,0.33,2189,"1.00000","0.48090","0.48090" +"GO:0070862","negative regulation of protein exit from...",4,0,0.33,2190,"1.00000","0.48090","0.48090" +"GO:0090317","negative regulation of intracellular pro...",4,0,0.33,2191,"1.00000","0.48090","0.48090" +"GO:1901799","negative regulation of proteasomal prote...",4,0,0.33,2192,"1.00000","0.48090","0.48090" +"GO:1904152","regulation of retrograde protein transpo...",4,0,0.33,2193,"1.00000","0.48090","0.48090" +"GO:1904153","negative regulation of retrograde protei...",4,0,0.33,2194,"1.00000","0.48090","0.48090" +"GO:1904293","negative regulation of ERAD pathway",4,0,0.33,2195,"1.00000","0.48090","0.48090" +"GO:0016051","carbohydrate biosynthetic process",15,2,1.25,1140,"0.36000","0.48151","0.48151" +"GO:0006637","acyl-CoA metabolic process",10,1,0.83,1560,"0.58226","0.48330","0.48330" +"GO:0035383","thioester metabolic process",10,1,0.83,1561,"0.58226","0.48330","0.48330" +"GO:0022411","cellular component disassembly",34,4,2.84,1014,"0.31427","0.08115","0.48383" +"GO:0001101","response to acid chemical",17,1,1.42,1808,"0.77369","0.48492","0.48492" +"GO:0016567","protein ubiquitination",60,7,5.01,804,"0.23053","0.48500","0.48500" +"GO:0022008","neurogenesis",98,12,8.18,499,"0.11174","0.48512","0.48512" +"GO:0032418","lysosome localization",5,0,0.42,2196,"1.00000","0.48535","0.48535" +"GO:0048736","appendage development",12,1,1,1646,"0.64931","0.48610","0.48610" +"GO:0045934","negative regulation of nucleobase-contai...",76,9,6.34,615,"0.17880","0.48636","0.48636" +"GO:0015980","energy derivation by oxidation of organi...",36,3,3,1590,"0.58898","0.03765","0.48653" +"GO:0000422","autophagy of mitochondrion",7,1,0.58,1310,"0.45702","0.48812","0.48812" +"GO:0010508","positive regulation of autophagy",7,1,0.58,1311,"0.45702","0.48812","0.48812" +"GO:0061726","mitochondrion disassembly",7,1,0.58,1312,"0.45702","0.48812","0.48812" +"GO:1903008","organelle disassembly",7,1,0.58,1313,"0.45702","0.48812","0.48812" +"GO:1901990","regulation of mitotic cell cycle phase t...",17,0,1.42,2197,"1.00000","0.48879","0.48879" +"GO:0009892","negative regulation of metabolic process",162,19,13.52,407,"0.07704","0.48906","0.48906" +"GO:0043547","positive regulation of GTPase activity",8,1,0.67,1393,"0.50244","0.48963","0.48963" +"GO:0006084","acetyl-CoA metabolic process",4,0,0.33,2198,"1.00000","0.49011","0.49011" +"GO:0008104","protein localization",200,20,16.69,687,"0.22369","0.49052","0.49052" +"GO:0090502","RNA phosphodiester bond hydrolysis, endo...",7,2,0.58,490,"0.11013","0.49081","0.49081" +"GO:0034660","ncRNA metabolic process",115,11,9.6,1158,"0.36303","0.49145","0.49145" +"GO:0031400","negative regulation of protein modificat...",40,5,3.34,824,"0.23781","0.49201","0.49201" +"GO:0030148","sphingolipid biosynthetic process",3,0,0.25,2199,"1.00000","0.49280","0.49280" +"GO:0000245","spliceosomal complex assembly",6,0,0.5,2200,"1.00000","0.49309","0.49309" +"GO:0065007","biological regulation",1007,96,84.04,347,"0.05204","0.32800","0.49394" +"GO:0003281","ventricular septum development",3,0,0.25,2201,"1.00000","0.49450","0.49450" +"GO:0035904","aorta development",3,0,0.25,2202,"1.00000","0.49450","0.49450" +"GO:0060840","artery development",3,0,0.25,2203,"1.00000","0.49450","0.49450" +"GO:0030520","intracellular estrogen receptor signalin...",3,0,0.25,2204,"1.00000","0.49523","0.49523" +"GO:0033146","regulation of intracellular estrogen rec...",3,0,0.25,2205,"1.00000","0.49523","0.49523" +"GO:0014902","myotube differentiation",11,1,0.92,1617,"0.61724","0.49538","0.49538" +"GO:0012501","programmed cell death",81,10,6.76,535,"0.13344","0.49586","0.49586" +"GO:0051248","negative regulation of protein metabolic...",62,8,5.17,560,"0.14072","0.49620","0.49620" +"GO:0010332","response to gamma radiation",3,1,0.25,738,"0.23012","0.49790","0.49790" +"GO:0071479","cellular response to ionizing radiation",3,1,0.25,739,"0.23012","0.49790","0.49790" +"GO:0071480","cellular response to gamma radiation",3,1,0.25,740,"0.23012","0.49790","0.49790" +"GO:0045089","positive regulation of innate immune res...",13,1,1.08,1687,"0.67870","0.49795","0.49795" +"GO:0048593","camera-type eye morphogenesis",8,2,0.67,557,"0.13903","0.49796","0.49796" +"GO:0048507","meristem development",8,0,0.67,2206,"1.00000","0.49796","0.49796" +"GO:0030030","cell projection organization",88,12,7.34,383,"0.05884","0.49881","0.49881" +"GO:0000070","mitotic sister chromatid segregation",12,0,1,2207,"1.00000","0.50068","0.50068" +"GO:0035967","cellular response to topologically incor...",15,2,1.25,1141,"0.36000","0.50118","0.50118" +"GO:1902850","microtubule cytoskeleton organization in...",9,4,0.75,78,"0.00426","0.08858","0.50129" +"GO:0050821","protein stabilization",15,3,1.25,521,"0.12378","0.50139","0.50139" +"GO:0051148","negative regulation of muscle cell diffe...",3,0,0.25,2208,"1.00000","0.50180","0.50180" +"GO:0036498","IRE1-mediated unfolded protein response",5,0,0.42,2209,"1.00000","0.50228","0.50228" +"GO:0061640","cytoskeleton-dependent cytokinesis",13,0,1.08,2210,"1.00000","0.50241","0.50241" +"GO:0016053","organic acid biosynthetic process",37,5,3.09,628,"0.19139","0.50318","0.50318" +"GO:0046394","carboxylic acid biosynthetic process",37,5,3.09,629,"0.19139","0.50318","0.50318" +"GO:0070997","neuron death",12,3,1,404,"0.07185","0.50361","0.50361" +"GO:0072594","establishment of protein localization to...",47,7,3.92,454,"0.09179","0.50367","0.50367" +"GO:0010467","gene expression",763,68,63.67,871,"0.27637","0.05354","0.50462" +"GO:0009267","cellular response to starvation",15,2,1.25,1142,"0.36000","0.50555","0.50555" +"GO:0031668","cellular response to extracellular stimu...",15,2,1.25,1143,"0.36000","0.50555","0.50555" +"GO:0031669","cellular response to nutrient levels",15,2,1.25,1144,"0.36000","0.50555","0.50555" +"GO:0006903","vesicle targeting",7,0,0.58,2211,"1.00000","0.50676","0.50676" +"GO:0014706","striated muscle tissue development",25,4,2.09,579,"0.15016","0.50751","0.50751" +"GO:0060537","muscle tissue development",25,4,2.09,580,"0.15016","0.50751","0.50751" +"GO:0001776","leukocyte homeostasis",7,2,0.58,491,"0.11013","0.50756","0.50756" +"GO:0002260","lymphocyte homeostasis",7,2,0.58,492,"0.11013","0.50756","0.50756" +"GO:0002221","pattern recognition receptor signaling p...",9,1,0.75,1499,"0.54409","0.50805","0.50805" +"GO:0043933","protein-containing complex subunit organ...",156,17,13.02,578,"0.14992","0.05273","0.50871" +"GO:0018210","peptidyl-threonine modification",8,1,0.67,1394,"0.50244","0.51233","0.51233" +"GO:1902017","regulation of cilium assembly",7,1,0.58,1314,"0.45702","0.51398","0.51398" +"GO:0009755","hormone-mediated signaling pathway",19,1,1.59,1838,"0.81011","0.51571","0.51571" +"GO:0060271","cilium assembly",19,3,1.59,659,"0.20752","0.51571","0.51571" +"GO:0023061","signal release",18,3,1.5,627,"0.18543","0.51592","0.51592" +"GO:2000027","regulation of animal organ morphogenesis",14,0,1.17,2212,"1.00000","0.51618","0.51618" +"GO:0019932","second-messenger-mediated signaling",15,2,1.25,1145,"0.36000","0.51631","0.51631" +"GO:0000413","protein peptidyl-prolyl isomerization",14,0,1.17,2213,"1.00000","0.51641","0.51641" +"GO:0018208","peptidyl-proline modification",14,0,1.17,2214,"1.00000","0.51641","0.51641" +"GO:0032008","positive regulation of TOR signaling",5,0,0.42,2215,"1.00000","0.51669","0.51669" +"GO:0046903","secretion",54,6,4.51,888,"0.29329","0.51764","0.51764" +"GO:0046834","lipid phosphorylation",5,1,0.42,1068,"0.35340","0.51860","0.51860" +"GO:0046854","phosphatidylinositol phosphorylation",5,1,0.42,1069,"0.35340","0.51860","0.51860" +"GO:0070167","regulation of biomineral tissue developm...",3,1,0.25,741,"0.23012","0.51870","0.51870" +"GO:0034505","tooth mineralization",3,0,0.25,2216,"1.00000","0.51870","0.51870" +"GO:0042476","odontogenesis",3,0,0.25,2217,"1.00000","0.51870","0.51870" +"GO:0009651","response to salt stress",6,1,0.5,1222,"0.40746","0.51902","0.51902" +"GO:0070509","calcium ion import",3,1,0.25,742,"0.23012","0.51968","0.51968" +"GO:0001763","morphogenesis of a branching structure",5,0,0.42,2218,"1.00000","0.51974","0.51974" +"GO:0030326","embryonic limb morphogenesis",5,0,0.42,2219,"1.00000","0.51974","0.51974" +"GO:0035113","embryonic appendage morphogenesis",5,0,0.42,2220,"1.00000","0.51974","0.51974" +"GO:0051962","positive regulation of nervous system de...",21,2,1.75,1467,"0.53366","0.52004","0.52004" +"GO:0090596","sensory organ morphogenesis",21,3,1.75,837,"0.25322","0.52004","0.52004" +"GO:0000075","cell cycle checkpoint",17,0,1.42,2221,"1.00000","0.52025","0.52025" +"GO:0071695","anatomical structure maturation",11,1,0.92,1618,"0.61724","0.52058","0.52058" +"GO:0006906","vesicle fusion",3,1,0.25,743,"0.23012","0.52116","0.52116" +"GO:0090174","organelle membrane fusion",3,1,0.25,744,"0.23012","0.52116","0.52116" +"GO:0046488","phosphatidylinositol metabolic process",21,1,1.75,1855,"0.84068","0.52191","0.52191" +"GO:0048477","oogenesis",19,2,1.59,1360,"0.47927","0.52257","0.52257" +"GO:0007099","centriole replication",3,0,0.25,2222,"1.00000","0.52313","0.52313" +"GO:0098534","centriole assembly",3,0,0.25,2223,"1.00000","0.52313","0.52313" +"GO:0010830","regulation of myotube differentiation",8,0,0.67,2224,"1.00000","0.52318","0.52318" +"GO:0051254","positive regulation of RNA metabolic pro...",60,8,5.01,511,"0.12253","0.52382","0.52382" +"GO:1903214","regulation of protein targeting to mitoc...",8,0,0.67,2225,"1.00000","0.52439","0.52439" +"GO:1903747","regulation of establishment of protein l...",8,0,0.67,2226,"1.00000","0.52439","0.52439" +"GO:1903749","positive regulation of establishment of ...",8,0,0.67,2227,"1.00000","0.52439","0.52439" +"GO:1903955","positive regulation of protein targeting...",8,0,0.67,2228,"1.00000","0.52439","0.52439" +"GO:0042073","intraciliary transport",3,1,0.25,745,"0.23012","0.52535","0.52535" +"GO:0022402","cell cycle process",99,10,8.26,1009,"0.31007","0.31902","0.52556" +"GO:0031398","positive regulation of protein ubiquitin...",13,0,1.08,2229,"1.00000","0.52567","0.52567" +"GO:1903322","positive regulation of protein modificat...",13,0,1.08,2230,"1.00000","0.52567","0.52567" +"GO:0006631","fatty acid metabolic process",24,4,2,537,"0.13441","0.52590","0.52590" +"GO:0048771","tissue remodeling",10,1,0.83,1562,"0.58226","0.52642","0.52642" +"GO:0022618","ribonucleoprotein complex assembly",32,6,2.67,335,"0.04550","0.04107","0.52669" +"GO:0071826","ribonucleoprotein complex subunit organi...",32,6,2.67,336,"0.04550","0.04107","0.52669" +"GO:0001745","compound eye morphogenesis",8,1,0.67,1395,"0.50244","0.52802","0.52802" +"GO:0036294","cellular response to decreased oxygen le...",8,1,0.67,1396,"0.50244","0.52802","0.52802" +"GO:0071456","cellular response to hypoxia",8,1,0.67,1397,"0.50244","0.52802","0.52802" +"GO:1903044","protein localization to membrane raft",3,0,0.25,2231,"1.00000","0.52831","0.52831" +"GO:0003208","cardiac ventricle morphogenesis",3,1,0.25,746,"0.23012","0.52856","0.52856" +"GO:0010594","regulation of endothelial cell migration",3,1,0.25,747,"0.23012","0.52856","0.52856" +"GO:0010595","positive regulation of endothelial cell ...",3,1,0.25,748,"0.23012","0.52856","0.52856" +"GO:0043534","blood vessel endothelial cell migration",3,1,0.25,749,"0.23012","0.52856","0.52856" +"GO:0043535","regulation of blood vessel endothelial c...",3,1,0.25,750,"0.23012","0.52856","0.52856" +"GO:0043536","positive regulation of blood vessel endo...",3,1,0.25,751,"0.23012","0.52856","0.52856" +"GO:0043542","endothelial cell migration",3,1,0.25,752,"0.23012","0.52856","0.52856" +"GO:0045913","positive regulation of carbohydrate meta...",3,1,0.25,753,"0.23012","0.52856","0.52856" +"GO:0048010","vascular endothelial growth factor recep...",3,1,0.25,754,"0.23012","0.52856","0.52856" +"GO:0061178","regulation of insulin secretion involved...",3,1,0.25,755,"0.23012","0.52856","0.52856" +"GO:0070227","lymphocyte apoptotic process",3,1,0.25,756,"0.23012","0.52856","0.52856" +"GO:0070228","regulation of lymphocyte apoptotic proce...",3,1,0.25,757,"0.23012","0.52856","0.52856" +"GO:0070229","negative regulation of lymphocyte apopto...",3,1,0.25,758,"0.23012","0.52856","0.52856" +"GO:0071887","leukocyte apoptotic process",3,1,0.25,759,"0.23012","0.52856","0.52856" +"GO:0072091","regulation of stem cell proliferation",3,1,0.25,760,"0.23012","0.52856","0.52856" +"GO:1902175","regulation of oxidative stress-induced i...",3,1,0.25,761,"0.23012","0.52856","0.52856" +"GO:1902176","negative regulation of oxidative stress-...",3,1,0.25,762,"0.23012","0.52856","0.52856" +"GO:1903523","negative regulation of blood circulation",3,1,0.25,763,"0.23012","0.52856","0.52856" +"GO:2000106","regulation of leukocyte apoptotic proces...",3,1,0.25,764,"0.23012","0.52856","0.52856" +"GO:2000107","negative regulation of leukocyte apoptot...",3,1,0.25,765,"0.23012","0.52856","0.52856" +"GO:0008154","actin polymerization or depolymerization",21,3,1.75,838,"0.25322","0.52864","0.52864" +"GO:0031103","axon regeneration",3,1,0.25,766,"0.23012","0.52930","0.52930" +"GO:0048678","response to axon injury",3,1,0.25,767,"0.23012","0.52930","0.52930" +"GO:0060632","regulation of microtubule-based movement",3,1,0.25,768,"0.23012","0.52930","0.52930" +"GO:1902074","response to salt",3,1,0.25,769,"0.23012","0.52930","0.52930" +"GO:1990823","response to leukemia inhibitory factor",3,1,0.25,770,"0.23012","0.52930","0.52930" +"GO:1990830","cellular response to leukemia inhibitory...",3,1,0.25,771,"0.23012","0.52930","0.52930" +"GO:0031175","neuron projection development",62,9,5.17,393,"0.06895","0.53088","0.53088" +"GO:0051028","mRNA transport",10,2,0.83,645,"0.20055","0.53292","0.53292" +"GO:0051253","negative regulation of RNA metabolic pro...",71,9,5.93,532,"0.13308","0.53320","0.53320" +"GO:1902679","negative regulation of RNA biosynthetic ...",71,9,5.93,533,"0.13308","0.53320","0.53320" +"GO:1903507","negative regulation of nucleic acid-temp...",71,9,5.93,534,"0.13308","0.53320","0.53320" +"GO:0007059","chromosome segregation",21,0,1.75,2232,"1.00000","0.53380","0.53380" +"GO:0048821","erythrocyte development",7,1,0.58,1315,"0.45702","0.53417","0.53417" +"GO:0035518","histone H2A monoubiquitination",3,1,0.25,772,"0.23012","0.53449","0.53449" +"GO:0050773","regulation of dendrite development",7,2,0.58,493,"0.11013","0.53465","0.53465" +"GO:0060996","dendritic spine development",7,2,0.58,494,"0.11013","0.53465","0.53465" +"GO:0032465","regulation of cytokinesis",3,1,0.25,773,"0.23012","0.53499","0.53499" +"GO:0019318","hexose metabolic process",13,2,1.08,984,"0.29661","0.53506","0.53506" +"GO:0051173","positive regulation of nitrogen compound...",116,12,9.68,844,"0.25763","0.53580","0.53580" +"GO:0010628","positive regulation of gene expression",74,9,6.18,588,"0.15971","0.53593","0.53593" +"GO:0033866","nucleoside bisphosphate biosynthetic pro...",7,0,0.58,2233,"1.00000","0.53611","0.53611" +"GO:0034030","ribonucleoside bisphosphate biosynthetic...",7,0,0.58,2234,"1.00000","0.53611","0.53611" +"GO:0034033","purine nucleoside bisphosphate biosynthe...",7,0,0.58,2235,"1.00000","0.53611","0.53611" +"GO:0061024","membrane organization",50,7,4.17,503,"0.11834","0.53729","0.53729" +"GO:0051656","establishment of organelle localization",27,3,2.25,1189,"0.39460","0.53731","0.53731" +"GO:0031050","dsRNA processing",3,1,0.25,774,"0.23012","0.53821","0.53821" +"GO:0035196","production of miRNAs involved in gene si...",3,1,0.25,775,"0.23012","0.53821","0.53821" +"GO:0070918","production of small RNA involved in gene...",3,1,0.25,776,"0.23012","0.53821","0.53821" +"GO:0051172","negative regulation of nitrogen compound...",128,15,10.68,481,"0.10898","0.53901","0.53901" +"GO:0051963","regulation of synapse assembly",7,0,0.58,2236,"1.00000","0.54001","0.54001" +"GO:0019953","sexual reproduction",62,5,5.17,1595,"0.60035","0.54057","0.54057" +"GO:0035567","non-canonical Wnt signaling pathway",3,0,0.25,2237,"1.00000","0.54069","0.54069" +"GO:0060071","Wnt signaling pathway, planar cell polar...",3,0,0.25,2238,"1.00000","0.54069","0.54069" +"GO:0009605","response to external stimulus",120,12,10.01,992,"0.29697","0.54127","0.54127" +"GO:0032879","regulation of localization",124,14,10.35,572,"0.14778","0.54164","0.54164" +"GO:0043393","regulation of protein binding",14,0,1.17,2239,"1.00000","0.54253","0.54253" +"GO:0032368","regulation of lipid transport",4,0,0.33,2240,"1.00000","0.54285","0.54285" +"GO:0019827","stem cell population maintenance",7,0,0.58,2241,"1.00000","0.54342","0.54342" +"GO:0098727","maintenance of cell number",7,0,0.58,2242,"1.00000","0.54342","0.54342" +"GO:0006739","NADP metabolic process",5,1,0.42,1070,"0.35340","0.54350","0.54350" +"GO:0036065","fucosylation",4,1,0.33,934,"0.29444","0.54371","0.54371" +"GO:0043269","regulation of ion transport",26,4,2.17,597,"0.16656","0.54434","0.54434" +"GO:0090151","establishment of protein localization to...",6,1,0.5,1223,"0.40746","0.54491","0.54491" +"GO:0050794","regulation of cellular process",877,79,73.19,669,"0.21593","0.54543","0.54543" +"GO:0030837","negative regulation of actin filament po...",4,0,0.33,2243,"1.00000","0.54543","0.54543" +"GO:0032272","negative regulation of protein polymeriz...",4,0,0.33,2244,"1.00000","0.54543","0.54543" +"GO:0051693","actin filament capping",4,0,0.33,2245,"1.00000","0.54543","0.54543" +"GO:0001932","regulation of protein phosphorylation",50,6,4.17,817,"0.23492","0.54599","0.54599" +"GO:0007094","mitotic spindle assembly checkpoint",3,0,0.25,2246,"1.00000","0.54615","0.54615" +"GO:0031577","spindle checkpoint",3,0,0.25,2247,"1.00000","0.54615","0.54615" +"GO:0033046","negative regulation of sister chromatid ...",3,0,0.25,2248,"1.00000","0.54615","0.54615" +"GO:0033048","negative regulation of mitotic sister ch...",3,0,0.25,2249,"1.00000","0.54615","0.54615" +"GO:0045839","negative regulation of mitotic nuclear d...",3,0,0.25,2250,"1.00000","0.54615","0.54615" +"GO:0045841","negative regulation of mitotic metaphase...",3,0,0.25,2251,"1.00000","0.54615","0.54615" +"GO:0051985","negative regulation of chromosome segreg...",3,0,0.25,2252,"1.00000","0.54615","0.54615" +"GO:0071173","spindle assembly checkpoint",3,0,0.25,2253,"1.00000","0.54615","0.54615" +"GO:0071174","mitotic spindle checkpoint",3,0,0.25,2254,"1.00000","0.54615","0.54615" +"GO:1902100","negative regulation of metaphase/anaphas...",3,0,0.25,2255,"1.00000","0.54615","0.54615" +"GO:1905819","negative regulation of chromosome separa...",3,0,0.25,2256,"1.00000","0.54615","0.54615" +"GO:2000816","negative regulation of mitotic sister ch...",3,0,0.25,2257,"1.00000","0.54615","0.54615" +"GO:0098876","vesicle-mediated transport to the plasma...",5,0,0.42,2258,"1.00000","0.54620","0.54620" +"GO:0006099","tricarboxylic acid cycle",14,0,1.17,2259,"1.00000","0.54668","0.54668" +"GO:0051336","regulation of hydrolase activity",47,10,3.92,79,"0.00441","0.12663","0.54720" +"GO:0006887","exocytosis",20,2,1.67,1442,"0.50695","0.54750","0.54750" +"GO:0019220","regulation of phosphate metabolic proces...",69,8,5.76,667,"0.21388","0.54828","0.54828" +"GO:0006513","protein monoubiquitination",12,2,1,858,"0.26449","0.54957","0.54957" +"GO:0000387","spliceosomal snRNP assembly",9,1,0.75,1500,"0.54409","0.55001","0.55001" +"GO:0071214","cellular response to abiotic stimulus",15,2,1.25,1146,"0.36000","0.55024","0.55024" +"GO:0104004","cellular response to environmental stimu...",15,2,1.25,1147,"0.36000","0.55024","0.55024" +"GO:0034453","microtubule anchoring",3,1,0.25,777,"0.23012","0.55038","0.55038" +"GO:0006875","cellular metal ion homeostasis",27,2,2.25,1672,"0.67250","0.55170","0.55170" +"GO:0051094","positive regulation of developmental pro...",56,8,4.67,447,"0.09019","0.55209","0.55209" +"GO:0031324","negative regulation of cellular metaboli...",133,16,11.1,430,"0.08345","0.55214","0.55214" +"GO:0006006","glucose metabolic process",10,1,0.83,1563,"0.58226","0.55253","0.55253" +"GO:0050778","positive regulation of immune response",27,4,2.25,623,"0.18358","0.55387","0.55387" +"GO:0010842","retina layer formation",4,1,0.33,935,"0.29444","0.55405","0.55405" +"GO:0048512","circadian behavior",4,1,0.33,936,"0.29444","0.55405","0.55405" +"GO:0032878","regulation of establishment or maintenan...",4,0,0.33,2260,"1.00000","0.55405","0.55405" +"GO:0051784","negative regulation of nuclear division",4,0,0.33,2261,"1.00000","0.55405","0.55405" +"GO:2000114","regulation of establishment of cell pola...",4,0,0.33,2262,"1.00000","0.55405","0.55405" +"GO:0007005","mitochondrion organization",61,4,5.09,1799,"0.76280","0.11718","0.55472" +"GO:0010001","glial cell differentiation",8,0,0.67,2263,"1.00000","0.55479","0.55479" +"GO:0010608","posttranscriptional regulation of gene e...",37,5,3.09,630,"0.19139","0.55546","0.55546" +"GO:0048699","generation of neurons",94,12,7.84,445,"0.08802","0.55636","0.55636" +"GO:0010831","positive regulation of myotube different...",7,0,0.58,2264,"1.00000","0.55663","0.55663" +"GO:0045445","myoblast differentiation",7,0,0.58,2265,"1.00000","0.55663","0.55663" +"GO:0045661","regulation of myoblast differentiation",7,0,0.58,2266,"1.00000","0.55663","0.55663" +"GO:0051149","positive regulation of muscle cell diffe...",7,0,0.58,2267,"1.00000","0.55663","0.55663" +"GO:0051155","positive regulation of striated muscle c...",7,0,0.58,2268,"1.00000","0.55663","0.55663" +"GO:0015931","nucleobase-containing compound transport",23,2,1.92,1583,"0.58405","0.55691","0.55691" +"GO:0009100","glycoprotein metabolic process",57,7,4.76,634,"0.19353","0.55730","0.55730" +"GO:0009612","response to mechanical stimulus",17,1,1.42,1809,"0.77369","0.55794","0.55794" +"GO:0008291","acetylcholine metabolic process",6,0,0.5,2269,"1.00000","0.55901","0.55901" +"GO:1900619","acetate ester metabolic process",6,0,0.5,2270,"1.00000","0.55901","0.55901" +"GO:0033993","response to lipid",51,7,4.26,527,"0.12799","0.28223","0.56044" +"GO:0035051","cardiocyte differentiation",9,0,0.75,2271,"1.00000","0.56052","0.56052" +"GO:0055007","cardiac muscle cell differentiation",9,0,0.75,2272,"1.00000","0.56052","0.56052" +"GO:0008334","histone mRNA metabolic process",3,1,0.25,778,"0.23012","0.56060","0.56060" +"GO:0042752","regulation of circadian rhythm",10,1,0.83,1564,"0.58226","0.56100","0.56100" +"GO:0071482","cellular response to light stimulus",5,1,0.42,1071,"0.35340","0.56164","0.56164" +"GO:0042462","eye photoreceptor cell development",5,0,0.42,2273,"1.00000","0.56164","0.56164" +"GO:0072330","monocarboxylic acid biosynthetic process",25,4,2.09,581,"0.15016","0.56198","0.56198" +"GO:0007291","sperm individualization",6,0,0.5,2274,"1.00000","0.56218","0.56218" +"GO:0007349","cellularization",6,0,0.5,2275,"1.00000","0.56218","0.56218" +"GO:0051338","regulation of transferase activity",45,5,3.76,1017,"0.32071","0.56246","0.56246" +"GO:0071363","cellular response to growth factor stimu...",20,2,1.67,1443,"0.50695","0.56377","0.56377" +"GO:0007398","ectoderm development",3,1,0.25,779,"0.23012","0.56434","0.56434" +"GO:0010668","ectodermal cell differentiation",3,1,0.25,780,"0.23012","0.56434","0.56434" +"GO:0030431","sleep",4,1,0.33,937,"0.29444","0.56442","0.56442" +"GO:0051591","response to cAMP",4,0,0.33,2276,"1.00000","0.56442","0.56442" +"GO:0042246","tissue regeneration",8,1,0.67,1398,"0.50244","0.56457","0.56457" +"GO:0006790","sulfur compound metabolic process",40,1,3.34,1886,"0.97014","0.56491","0.56491" +"GO:0031505","fungal-type cell wall organization",3,0,0.25,2277,"1.00000","0.56609","0.56609" +"GO:0045229","external encapsulating structure organiz...",3,0,0.25,2278,"1.00000","0.56609","0.56609" +"GO:0071555","cell wall organization",3,0,0.25,2279,"1.00000","0.56609","0.56609" +"GO:0071852","fungal-type cell wall organization or bi...",3,0,0.25,2280,"1.00000","0.56609","0.56609" +"GO:0009952","anterior/posterior pattern specification",12,0,1,2281,"1.00000","0.56655","0.56655" +"GO:0048608","reproductive structure development",34,3,2.84,1526,"0.54917","0.20129","0.56714" +"GO:0035268","protein mannosylation",3,1,0.25,781,"0.23012","0.56734","0.56734" +"GO:0035269","protein O-linked mannosylation",3,1,0.25,782,"0.23012","0.56734","0.56734" +"GO:0097502","mannosylation",3,1,0.25,783,"0.23012","0.56734","0.56734" +"GO:0006378","mRNA polyadenylation",6,1,0.5,1224,"0.40746","0.56784","0.56784" +"GO:0043631","RNA polyadenylation",6,1,0.5,1225,"0.40746","0.56784","0.56784" +"GO:0048869","cellular developmental process",212,21,17.69,692,"0.22965","0.56794","0.56794" +"GO:0008654","phospholipid biosynthetic process",26,0,2.17,2282,"1.00000","0.56797","0.56797" +"GO:0006936","muscle contraction",18,1,1.5,1827,"0.79269","0.56873","0.56873" +"GO:0015936","coenzyme A metabolic process",3,0,0.25,2283,"1.00000","0.56984","0.56984" +"GO:0015937","coenzyme A biosynthetic process",3,0,0.25,2284,"1.00000","0.56984","0.56984" +"GO:0016180","snRNA processing",7,1,0.58,1316,"0.45702","0.57119","0.57119" +"GO:0022412","cellular process involved in reproductio...",39,3,3.25,1636,"0.64433","0.57139","0.57139" +"GO:0003205","cardiac chamber development",7,1,0.58,1317,"0.45702","0.57185","0.57185" +"GO:0003231","cardiac ventricle development",7,1,0.58,1318,"0.45702","0.57185","0.57185" +"GO:0007178","transmembrane receptor protein serine/th...",15,1,1.25,1759,"0.73033","0.57272","0.57272" +"GO:0033143","regulation of intracellular steroid horm...",7,1,0.58,1319,"0.45702","0.57300","0.57300" +"GO:0051128","regulation of cellular component organiz...",141,14,11.77,879,"0.28467","0.57324","0.57324" +"GO:0051235","maintenance of location",19,2,1.59,1361,"0.47927","0.57359","0.57359" +"GO:0006383","transcription by RNA polymerase III",4,1,0.33,938,"0.29444","0.57482","0.57482" +"GO:0051174","regulation of phosphorus metabolic proce...",70,8,5.84,689,"0.22537","0.57513","0.57513" +"GO:0009746","response to hexose",5,1,0.42,1072,"0.35340","0.57539","0.57539" +"GO:0009749","response to glucose",5,1,0.42,1073,"0.35340","0.57539","0.57539" +"GO:0034284","response to monosaccharide",5,1,0.42,1074,"0.35340","0.57539","0.57539" +"GO:0016073","snRNA metabolic process",10,1,0.83,1565,"0.58226","0.57609","0.57609" +"GO:0000165","MAPK cascade",24,4,2,538,"0.13441","0.57676","0.57676" +"GO:0023014","signal transduction by protein phosphory...",24,4,2,539,"0.13441","0.57676","0.57676" +"GO:0019362","pyridine nucleotide metabolic process",19,3,1.59,660,"0.20752","0.57678","0.57678" +"GO:0046496","nicotinamide nucleotide metabolic proces...",19,3,1.59,661,"0.20752","0.57678","0.57678" +"GO:0072524","pyridine-containing compound metabolic p...",19,3,1.59,662,"0.20752","0.57678","0.57678" +"GO:0010629","negative regulation of gene expression",105,12,8.76,589,"0.16134","0.57717","0.57717" +"GO:0021915","neural tube development",10,1,0.83,1566,"0.58226","0.57773","0.57773" +"GO:0006366","transcription by RNA polymerase II",123,11,10.26,1295,"0.45195","0.57816","0.57816" +"GO:0060541","respiratory system development",15,1,1.25,1760,"0.73033","0.57867","0.57867" +"GO:0008064","regulation of actin polymerization or de...",18,2,1.5,1287,"0.45066","0.57938","0.57938" +"GO:0030832","regulation of actin filament length",18,2,1.5,1288,"0.45066","0.57938","0.57938" +"GO:0044093","positive regulation of molecular functio...",63,7,5.26,866,"0.26970","0.57940","0.57940" +"GO:0046661","male sex differentiation",6,0,0.5,2285,"1.00000","0.57952","0.57952" +"GO:0042558","pteridine-containing compound metabolic ...",7,0,0.58,2286,"1.00000","0.58005","0.58005" +"GO:0048592","eye morphogenesis",19,3,1.59,663,"0.20752","0.58017","0.58017" +"GO:1901888","regulation of cell junction assembly",5,0,0.42,2287,"1.00000","0.58083","0.58083" +"GO:0045892","negative regulation of transcription, DN...",69,8,5.76,668,"0.21388","0.58233","0.58233" +"GO:1990778","protein localization to cell periphery",14,0,1.17,2288,"1.00000","0.58259","0.58259" +"GO:0001974","blood vessel remodeling",7,0,0.58,2289,"1.00000","0.58284","0.58284" +"GO:0050982","detection of mechanical stimulus",7,0,0.58,2290,"1.00000","0.58284","0.58284" +"GO:0014074","response to purine-containing compound",7,1,0.58,1320,"0.45702","0.58432","0.58432" +"GO:0043949","regulation of cAMP-mediated signaling",7,0,0.58,2291,"1.00000","0.58432","0.58432" +"GO:0010771","negative regulation of cell morphogenesi...",4,1,0.33,939,"0.29444","0.58523","0.58523" +"GO:0031102","neuron projection regeneration",4,1,0.33,940,"0.29444","0.58523","0.58523" +"GO:0071786","endoplasmic reticulum tubular network or...",4,1,0.33,941,"0.29444","0.58523","0.58523" +"GO:0003008","system process",85,11,7.09,455,"0.09259","0.58529","0.58529" +"GO:0006384","transcription initiation from RNA polyme...",3,1,0.25,784,"0.23012","0.58612","0.58612" +"GO:0001754","eye photoreceptor cell differentiation",9,0,0.75,2292,"1.00000","0.58641","0.58641" +"GO:0051649","establishment of localization in cell",187,20,15.61,569,"0.14374","0.58722","0.58722" +"GO:1901701","cellular response to oxygen-containing c...",40,5,3.34,825,"0.23781","0.58755","0.58755" +"GO:0019538","protein metabolic process",746,62,62.26,1483,"0.54258","0.10437","0.58769" +"GO:0065003","protein-containing complex assembly",138,16,11.52,480,"0.10745","0.13318","0.58791" +"GO:2001238","positive regulation of extrinsic apoptot...",3,0,0.25,2293,"1.00000","0.58863","0.58863" +"GO:0046467","membrane lipid biosynthetic process",13,0,1.08,2294,"1.00000","0.58934","0.58934" +"GO:0023052","signaling",395,40,32.96,469,"0.10161","0.58944","0.58944" +"GO:0006096","glycolytic process",10,2,0.83,646,"0.20055","0.59038","0.59038" +"GO:0006109","regulation of carbohydrate metabolic pro...",10,2,0.83,647,"0.20055","0.59038","0.59038" +"GO:0006757","ATP generation from ADP",10,2,0.83,648,"0.20055","0.59038","0.59038" +"GO:0009135","purine nucleoside diphosphate metabolic ...",10,2,0.83,649,"0.20055","0.59038","0.59038" +"GO:0009179","purine ribonucleoside diphosphate metabo...",10,2,0.83,650,"0.20055","0.59038","0.59038" +"GO:0009185","ribonucleoside diphosphate metabolic pro...",10,2,0.83,651,"0.20055","0.59038","0.59038" +"GO:0042866","pyruvate biosynthetic process",10,2,0.83,652,"0.20055","0.59038","0.59038" +"GO:0046031","ADP metabolic process",10,2,0.83,653,"0.20055","0.59038","0.59038" +"GO:0010468","regulation of gene expression",390,35,32.55,1039,"0.34374","0.59062","0.59062" +"GO:0009311","oligosaccharide metabolic process",5,0,0.42,2295,"1.00000","0.59093","0.59093" +"GO:0009312","oligosaccharide biosynthetic process",5,0,0.42,2296,"1.00000","0.59093","0.59093" +"GO:0018243","protein O-linked glycosylation via threo...",5,0,0.42,2297,"1.00000","0.59093","0.59093" +"GO:0043112","receptor metabolic process",8,2,0.67,558,"0.13903","0.59158","0.59158" +"GO:0070646","protein modification by small protein re...",22,0,1.84,2298,"1.00000","0.59277","0.59277" +"GO:0098813","nuclear chromosome segregation",19,0,1.59,2299,"1.00000","0.59346","0.59346" +"GO:0048468","cell development",139,15,11.6,614,"0.17865","0.59450","0.59450" +"GO:0018193","peptidyl-amino acid modification",86,6,7.18,1771,"0.73690","0.59516","0.59516" +"GO:0007186","G protein-coupled receptor signaling pat...",60,8,5.01,512,"0.12253","0.59613","0.59613" +"GO:0051050","positive regulation of transport",46,6,3.84,619,"0.18083","0.59748","0.59748" +"GO:0048519","negative regulation of biological proces...",284,27,23.7,845,"0.25828","0.59764","0.59764" +"GO:0006355","regulation of transcription, DNA-templat...",321,28,26.79,1275,"0.43052","0.59851","0.59851" +"GO:1903506","regulation of nucleic acid-templated tra...",321,28,26.79,1276,"0.43052","0.59851","0.59851" +"GO:0010639","negative regulation of organelle organiz...",22,1,1.84,1862,"0.85408","0.59872","0.59872" +"GO:0033045","regulation of sister chromatid segregati...",7,0,0.58,2300,"1.00000","0.59878","0.59878" +"GO:0033047","regulation of mitotic sister chromatid s...",7,0,0.58,2301,"1.00000","0.59878","0.59878" +"GO:0051983","regulation of chromosome segregation",7,0,0.58,2302,"1.00000","0.59878","0.59878" +"GO:0051965","positive regulation of synapse assembly",4,0,0.33,2303,"1.00000","0.59914","0.59914" +"GO:0009072","aromatic amino acid family metabolic pro...",12,1,1,1647,"0.64931","0.59968","0.59968" +"GO:0033554","cellular response to stress",155,17,12.94,571,"0.14390","0.59973","0.59973" +"GO:0040001","establishment of mitotic spindle localiz...",3,1,0.25,785,"0.23012","0.60042","0.60042" +"GO:0051293","establishment of spindle localization",3,1,0.25,786,"0.23012","0.60042","0.60042" +"GO:0051653","spindle localization",3,1,0.25,787,"0.23012","0.60042","0.60042" +"GO:0043101","purine-containing compound salvage",4,1,0.33,942,"0.29444","0.60088","0.60088" +"GO:0006188","IMP biosynthetic process",4,0,0.33,2304,"1.00000","0.60088","0.60088" +"GO:0046040","IMP metabolic process",4,0,0.33,2305,"1.00000","0.60088","0.60088" +"GO:1901987","regulation of cell cycle phase transitio...",18,0,1.5,2306,"1.00000","0.60115","0.60115" +"GO:0031333","negative regulation of protein complex a...",8,1,0.67,1399,"0.50244","0.60143","0.60143" +"GO:0007031","peroxisome organization",9,2,0.75,610,"0.16931","0.60149","0.60149" +"GO:0044281","small molecule metabolic process",277,25,23.12,1160,"0.36713","0.39246","0.60214" +"GO:0006694","steroid biosynthetic process",15,1,1.25,1761,"0.73033","0.60216","0.60216" +"GO:0032446","protein modification by small protein co...",67,7,5.59,1026,"0.32438","0.60443","0.60443" +"GO:0051788","response to misfolded protein",5,0,0.42,2307,"1.00000","0.60473","0.60473" +"GO:0045930","negative regulation of mitotic cell cycl...",14,0,1.17,2308,"1.00000","0.60493","0.60493" +"GO:0002753","cytoplasmic pattern recognition receptor...",3,1,0.25,788,"0.23012","0.60494","0.60494" +"GO:0009127","purine nucleoside monophosphate biosynth...",31,6,2.59,320,"0.03963","0.02095","0.60519" +"GO:0009168","purine ribonucleoside monophosphate bios...",31,6,2.59,321,"0.03963","0.02095","0.60519" +"GO:0045935","positive regulation of nucleobase-contai...",67,8,5.59,631,"0.19160","0.60577","0.60577" +"GO:0050890","cognition",13,2,1.08,985,"0.29661","0.60612","0.60612" +"GO:0051606","detection of stimulus",20,1,1.67,1847,"0.82606","0.60621","0.60621" +"GO:0033865","nucleoside bisphosphate metabolic proces...",14,1,1.17,1728,"0.70564","0.60702","0.60702" +"GO:0033875","ribonucleoside bisphosphate metabolic pr...",14,1,1.17,1729,"0.70564","0.60702","0.60702" +"GO:0034032","purine nucleoside bisphosphate metabolic...",14,1,1.17,1730,"0.70564","0.60702","0.60702" +"GO:1901362","organic cyclic compound biosynthetic pro...",468,42,39.06,1018,"0.32235","0.29421","0.60763" +"GO:0007472","wing disc morphogenesis",5,1,0.42,1075,"0.35340","0.60765","0.60765" +"GO:0007476","imaginal disc-derived wing morphogenesis",5,1,0.42,1076,"0.35340","0.60765","0.60765" +"GO:0035114","imaginal disc-derived appendage morphoge...",5,1,0.42,1077,"0.35340","0.60765","0.60765" +"GO:0035120","post-embryonic appendage morphogenesis",5,1,0.42,1078,"0.35340","0.60765","0.60765" +"GO:0048737","imaginal disc-derived appendage developm...",5,1,0.42,1079,"0.35340","0.60765","0.60765" +"GO:0007369","gastrulation",13,2,1.08,986,"0.29661","0.60793","0.60793" +"GO:0000904","cell morphogenesis involved in different...",48,7,4.01,467,"0.10023","0.60832","0.60832" +"GO:0003013","circulatory system process",17,1,1.42,1810,"0.77369","0.60857","0.60857" +"GO:0008015","blood circulation",17,1,1.42,1811,"0.77369","0.60857","0.60857" +"GO:0009581","detection of external stimulus",17,1,1.42,1812,"0.77369","0.60857","0.60857" +"GO:0009582","detection of abiotic stimulus",17,1,1.42,1813,"0.77369","0.60857","0.60857" +"GO:0006909","phagocytosis",19,3,1.59,664,"0.20752","0.60906","0.60906" +"GO:0034654","nucleobase-containing compound biosynthe...",436,41,36.39,671,"0.21685","0.28512","0.61006" +"GO:0051091","positive regulation of DNA-binding trans...",13,1,1.08,1688,"0.67870","0.61035","0.61035" +"GO:0006836","neurotransmitter transport",14,2,1.17,1032,"0.32850","0.61075","0.61075" +"GO:0065009","regulation of molecular function",134,19,11.18,154,"0.01375","0.26370","0.61092" +"GO:0032535","regulation of cellular component size",30,4,2.5,821,"0.23761","0.61124","0.61124" +"GO:0016239","positive regulation of macroautophagy",6,1,0.5,1226,"0.40746","0.61147","0.61147" +"GO:0002119","nematode larval development",6,0,0.5,2309,"1.00000","0.61147","0.61147" +"GO:0010720","positive regulation of cell development",18,2,1.5,1289,"0.45066","0.61224","0.61224" +"GO:0021700","developmental maturation",18,1,1.5,1828,"0.79269","0.61224","0.61224" +"GO:0050769","positive regulation of neurogenesis",18,2,1.5,1290,"0.45066","0.61224","0.61224" +"GO:0006721","terpenoid metabolic process",7,0,0.58,2310,"1.00000","0.61292","0.61292" +"GO:0070848","response to growth factor",21,2,1.75,1468,"0.53366","0.61302","0.61302" +"GO:0042537","benzene-containing compound metabolic pr...",4,0,0.33,2311,"1.00000","0.61305","0.61305" +"GO:0022613","ribonucleoprotein complex biogenesis",84,10,7.01,587,"0.15827","0.19445","0.61312" +"GO:0045103","intermediate filament-based process",4,1,0.33,943,"0.29444","0.61392","0.61392" +"GO:0045104","intermediate filament cytoskeleton organ...",4,1,0.33,944,"0.29444","0.61392","0.61392" +"GO:0006816","calcium ion transport",22,3,1.84,874,"0.27660","0.61415","0.61415" +"GO:0007601","visual perception",16,1,1.34,1778,"0.75296","0.61437","0.61437" +"GO:0050953","sensory perception of light stimulus",16,1,1.34,1779,"0.75296","0.61437","0.61437" +"GO:0007424","open tracheal system development",8,1,0.67,1400,"0.50244","0.61619","0.61619" +"GO:0006893","Golgi to plasma membrane transport",4,0,0.33,2312,"1.00000","0.61653","0.61653" +"GO:0009266","response to temperature stimulus",32,5,2.67,515,"0.12282","0.61793","0.61793" +"GO:0016477","cell migration",34,3,2.84,1527,"0.54917","0.61840","0.61840" +"GO:0010817","regulation of hormone levels",27,1,2.25,1873,"0.90599","0.61868","0.61868" +"GO:0006101","citrate metabolic process",15,0,1.25,2313,"1.00000","0.61914","0.61914" +"GO:0072350","tricarboxylic acid metabolic process",15,0,1.25,2314,"1.00000","0.61914","0.61914" +"GO:0001751","compound eye photoreceptor cell differen...",6,0,0.5,2315,"1.00000","0.61963","0.61963" +"GO:0070979","protein K11-linked ubiquitination",6,0,0.5,2316,"1.00000","0.61963","0.61963" +"GO:0050657","nucleic acid transport",15,2,1.25,1148,"0.36000","0.61982","0.61982" +"GO:0050658","RNA transport",15,2,1.25,1149,"0.36000","0.61982","0.61982" +"GO:0051236","establishment of RNA localization",15,2,1.25,1150,"0.36000","0.61982","0.61982" +"GO:0019674","NAD metabolic process",6,1,0.5,1227,"0.40746","0.62034","0.62034" +"GO:0045088","regulation of innate immune response",16,1,1.34,1780,"0.75296","0.62047","0.62047" +"GO:0009163","nucleoside biosynthetic process",7,1,0.58,1321,"0.45702","0.62064","0.62064" +"GO:0042455","ribonucleoside biosynthetic process",7,1,0.58,1322,"0.45702","0.62064","0.62064" +"GO:1901659","glycosyl compound biosynthetic process",7,1,0.58,1323,"0.45702","0.62064","0.62064" +"GO:0048666","neuron development",70,9,5.84,524,"0.12477","0.62065","0.62065" +"GO:0000902","cell morphogenesis",63,8,5.26,583,"0.15030","0.62085","0.62085" +"GO:2001141","regulation of RNA biosynthetic process",322,28,26.87,1278,"0.43761","0.62093","0.62093" +"GO:0006368","transcription elongation from RNA polyme...",10,1,0.83,1567,"0.58226","0.62120","0.62120" +"GO:0043405","regulation of MAP kinase activity",7,1,0.58,1324,"0.45702","0.62179","0.62179" +"GO:0015693","magnesium ion transport",3,0,0.25,2317,"1.00000","0.62200","0.62200" +"GO:0021953","central nervous system neuron differenti...",6,0,0.5,2318,"1.00000","0.62212","0.62212" +"GO:0033674","positive regulation of kinase activity",13,2,1.08,987,"0.29661","0.62218","0.62218" +"GO:0006638","neutral lipid metabolic process",5,0,0.42,2319,"1.00000","0.62320","0.62320" +"GO:0006639","acylglycerol metabolic process",5,0,0.42,2320,"1.00000","0.62320","0.62320" +"GO:0055088","lipid homeostasis",5,0,0.42,2321,"1.00000","0.62320","0.62320" +"GO:1905952","regulation of lipid localization",5,0,0.42,2322,"1.00000","0.62320","0.62320" +"GO:0031623","receptor internalization",3,0,0.25,2323,"1.00000","0.62350","0.62350" +"GO:0045117","azole transport",3,0,0.25,2324,"1.00000","0.62350","0.62350" +"GO:0000478","endonucleolytic cleavage involved in rRN...",5,1,0.42,1080,"0.35340","0.62359","0.62359" +"GO:0000479","endonucleolytic cleavage of tricistronic...",5,1,0.42,1081,"0.35340","0.62359","0.62359" +"GO:0097428","protein maturation by iron-sulfur cluste...",5,0,0.42,2325,"1.00000","0.62379","0.62379" +"GO:0001782","B cell homeostasis",4,1,0.33,945,"0.29444","0.62435","0.62435" +"GO:0003206","cardiac chamber morphogenesis",4,1,0.33,946,"0.29444","0.62435","0.62435" +"GO:0006089","lactate metabolic process",4,1,0.33,947,"0.29444","0.62435","0.62435" +"GO:0007405","neuroblast proliferation",4,1,0.33,948,"0.29444","0.62435","0.62435" +"GO:0007419","ventral cord development",4,1,0.33,949,"0.29444","0.62435","0.62435" +"GO:0008631","intrinsic apoptotic signaling pathway in...",4,1,0.33,950,"0.29444","0.62435","0.62435" +"GO:0010632","regulation of epithelial cell migration",4,1,0.33,951,"0.29444","0.62435","0.62435" +"GO:0010634","positive regulation of epithelial cell m...",4,1,0.33,952,"0.29444","0.62435","0.62435" +"GO:0030278","regulation of ossification",4,1,0.33,953,"0.29444","0.62435","0.62435" +"GO:0032007","negative regulation of TOR signaling",4,1,0.33,954,"0.29444","0.62435","0.62435" +"GO:0032024","positive regulation of insulin secretion",4,1,0.33,955,"0.29444","0.62435","0.62435" +"GO:0035773","insulin secretion involved in cellular r...",4,1,0.33,956,"0.29444","0.62435","0.62435" +"GO:0050905","neuromuscular process",4,1,0.33,957,"0.29444","0.62435","0.62435" +"GO:0061351","neural precursor cell proliferation",4,1,0.33,958,"0.29444","0.62435","0.62435" +"GO:0071326","cellular response to monosaccharide stim...",4,1,0.33,959,"0.29444","0.62435","0.62435" +"GO:0071331","cellular response to hexose stimulus",4,1,0.33,960,"0.29444","0.62435","0.62435" +"GO:0071333","cellular response to glucose stimulus",4,1,0.33,961,"0.29444","0.62435","0.62435" +"GO:0006351","transcription, DNA-templated",365,34,30.46,848,"0.26440","0.62480","0.62480" +"GO:0097659","nucleic acid-templated transcription",365,34,30.46,849,"0.26440","0.62480","0.62480" +"GO:0042135","neurotransmitter catabolic process",6,1,0.5,1228,"0.40746","0.62496","0.62496" +"GO:0044249","cellular biosynthetic process",802,72,66.93,827,"0.24326","0.06078","0.62522" +"GO:0071229","cellular response to acid chemical",7,1,0.58,1325,"0.45702","0.62541","0.62541" +"GO:0009116","nucleoside metabolic process",19,1,1.59,1839,"0.81011","0.62586","0.62586" +"GO:1901657","glycosyl compound metabolic process",19,1,1.59,1840,"0.81011","0.62586","0.62586" +"GO:0009893","positive regulation of metabolic process",144,13,12.02,1273,"0.42578","0.62594","0.62594" +"GO:0009649","entrainment of circadian clock",3,0,0.25,2326,"1.00000","0.62651","0.62651" +"GO:0050829","defense response to Gram-negative bacter...",7,1,0.58,1326,"0.45702","0.62754","0.62754" +"GO:1901137","carbohydrate derivative biosynthetic pro...",113,14,9.43,433,"0.08390","0.21063","0.62838" +"GO:0051716","cellular response to stimulus",505,49,42.14,530,"0.13000","0.62892","0.62892" +"GO:0043123","positive regulation of I-kappaB kinase/N...",7,0,0.58,2327,"1.00000","0.63000","0.63000" +"GO:0006469","negative regulation of protein kinase ac...",15,2,1.25,1151,"0.36000","0.63004","0.63004" +"GO:0008333","endosome to lysosome transport",3,1,0.25,789,"0.23012","0.63052","0.63052" +"GO:0006418","tRNA aminoacylation for protein translat...",27,3,2.25,1190,"0.39460","0.63094","0.63094" +"GO:0043038","amino acid activation",27,3,2.25,1191,"0.39460","0.63094","0.63094" +"GO:0043039","tRNA aminoacylation",27,3,2.25,1192,"0.39460","0.63094","0.63094" +"GO:0010390","histone monoubiquitination",4,1,0.33,962,"0.29444","0.63130","0.63130" +"GO:0033522","histone H2A ubiquitination",4,1,0.33,963,"0.29444","0.63130","0.63130" +"GO:0045638","negative regulation of myeloid cell diff...",4,1,0.33,964,"0.29444","0.63217","0.63217" +"GO:1903707","negative regulation of hemopoiesis",4,1,0.33,965,"0.29444","0.63217","0.63217" +"GO:0032506","cytokinetic process",4,0,0.33,2328,"1.00000","0.63217","0.63217" +"GO:0016052","carbohydrate catabolic process",11,2,0.92,813,"0.23238","0.63314","0.63314" +"GO:0045860","positive regulation of protein kinase ac...",11,2,0.92,814,"0.23238","0.63314","0.63314" +"GO:0006612","protein targeting to membrane",8,1,0.67,1401,"0.50244","0.63341","0.63341" +"GO:0043524","negative regulation of neuron apoptotic ...",8,2,0.67,559,"0.13903","0.63341","0.63341" +"GO:0031497","chromatin assembly",7,1,0.58,1327,"0.45702","0.63345","0.63345" +"GO:0019068","virion assembly",4,1,0.33,966,"0.29444","0.63390","0.63390" +"GO:0009124","nucleoside monophosphate biosynthetic pr...",32,6,2.67,337,"0.04550","0.03439","0.63494" +"GO:0009156","ribonucleoside monophosphate biosyntheti...",32,6,2.67,338,"0.04550","0.03439","0.63494" +"GO:0002520","immune system development",30,4,2.5,822,"0.23761","0.63530","0.63530" +"GO:0048534","hematopoietic or lymphoid organ developm...",30,4,2.5,823,"0.23761","0.63530","0.63530" +"GO:0034645","cellular macromolecule biosynthetic proc...",655,59,54.66,865,"0.26530","0.18158","0.63545" +"GO:0043408","regulation of MAPK cascade",19,3,1.59,665,"0.20752","0.63574","0.63574" +"GO:0009408","response to heat",31,5,2.59,496,"0.11074","0.63588","0.63588" +"GO:0001817","regulation of cytokine production",20,3,1.67,802,"0.23016","0.63622","0.63622" +"GO:0006396","RNA processing",178,16,14.85,1259,"0.41544","0.63732","0.63732" +"GO:0031325","positive regulation of cellular metaboli...",130,12,10.85,1199,"0.40109","0.63850","0.63850" +"GO:0006650","glycerophospholipid metabolic process",30,1,2.5,1880,"0.92782","0.63944","0.63944" +"GO:0034754","cellular hormone metabolic process",6,0,0.5,2329,"1.00000","0.63949","0.63949" +"GO:0044089","positive regulation of cellular componen...",37,4,3.09,1171,"0.37316","0.63965","0.63965" +"GO:0090092","regulation of transmembrane receptor pro...",11,0,0.92,2330,"1.00000","0.64061","0.64061" +"GO:0046545","development of primary female sexual cha...",5,1,0.42,1082,"0.35340","0.64067","0.64067" +"GO:0046660","female sex differentiation",5,1,0.42,1083,"0.35340","0.64067","0.64067" +"GO:0006664","glycolipid metabolic process",12,0,1,2331,"1.00000","0.64087","0.64087" +"GO:1903509","liposaccharide metabolic process",12,0,1,2332,"1.00000","0.64087","0.64087" +"GO:1901068","guanosine-containing compound metabolic ...",5,0,0.42,2333,"1.00000","0.64106","0.64106" +"GO:0007308","oocyte construction",3,0,0.25,2334,"1.00000","0.64229","0.64229" +"GO:0007309","oocyte axis specification",3,0,0.25,2335,"1.00000","0.64229","0.64229" +"GO:0035265","organ growth",3,0,0.25,2336,"1.00000","0.64229","0.64229" +"GO:0070528","protein kinase C signaling",3,0,0.25,2337,"1.00000","0.64229","0.64229" +"GO:0070972","protein localization to endoplasmic reti...",9,1,0.75,1501,"0.54409","0.64409","0.64409" +"GO:0007276","gamete generation",53,4,4.42,1667,"0.65761","0.64499","0.64499" +"GO:0010810","regulation of cell-substrate adhesion",7,0,0.58,2338,"1.00000","0.64525","0.64525" +"GO:0002253","activation of immune response",18,2,1.5,1291,"0.45066","0.64589","0.64589" +"GO:0010039","response to iron ion",5,1,0.42,1084,"0.35340","0.64629","0.64629" +"GO:0016197","endosomal transport",19,1,1.59,1841,"0.81011","0.64671","0.64671" +"GO:0034655","nucleobase-containing compound catabolic...",47,6,3.92,636,"0.19386","0.64697","0.64697" +"GO:0021510","spinal cord development",5,1,0.42,1085,"0.35340","0.64707","0.64707" +"GO:0060042","retina morphogenesis in camera-type eye",5,1,0.42,1086,"0.35340","0.64707","0.64707" +"GO:0048701","embryonic cranial skeleton morphogenesis",5,0,0.42,2339,"1.00000","0.64707","0.64707" +"GO:0048704","embryonic skeletal system morphogenesis",5,0,0.42,2340,"1.00000","0.64707","0.64707" +"GO:0048705","skeletal system morphogenesis",5,0,0.42,2341,"1.00000","0.64707","0.64707" +"GO:1904888","cranial skeletal system development",5,0,0.42,2342,"1.00000","0.64707","0.64707" +"GO:0002695","negative regulation of leukocyte activat...",4,0,0.33,2343,"1.00000","0.64777","0.64777" +"GO:0050866","negative regulation of cell activation",4,0,0.33,2344,"1.00000","0.64777","0.64777" +"GO:0051250","negative regulation of lymphocyte activa...",4,0,0.33,2345,"1.00000","0.64777","0.64777" +"GO:0042147","retrograde transport, endosome to Golgi",10,1,0.83,1568,"0.58226","0.64867","0.64867" +"GO:0010558","negative regulation of macromolecule bio...",76,9,6.34,616,"0.17880","0.64987","0.64987" +"GO:0051240","positive regulation of multicellular org...",53,7,4.42,574,"0.14844","0.65068","0.65068" +"GO:0070373","negative regulation of ERK1 and ERK2 cas...",3,1,0.25,790,"0.23012","0.65078","0.65078" +"GO:0000271","polysaccharide biosynthetic process",6,1,0.5,1229,"0.40746","0.65081","0.65081" +"GO:0005976","polysaccharide metabolic process",6,1,0.5,1230,"0.40746","0.65081","0.65081" +"GO:0010228","vegetative to reproductive phase transit...",4,0,0.33,2346,"1.00000","0.65123","0.65123" +"GO:0033240","positive regulation of cellular amine me...",4,0,0.33,2347,"1.00000","0.65123","0.65123" +"GO:0042755","eating behavior",4,0,0.33,2348,"1.00000","0.65123","0.65123" +"GO:0007187","G protein-coupled receptor signaling pat...",3,0,0.25,2349,"1.00000","0.65178","0.65178" +"GO:0007188","adenylate cyclase-modulating G protein-c...",3,0,0.25,2350,"1.00000","0.65178","0.65178" +"GO:0030155","regulation of cell adhesion",22,1,1.84,1863,"0.85408","0.65238","0.65238" +"GO:0001505","regulation of neurotransmitter levels",24,3,2,1022,"0.32386","0.65289","0.65289" +"GO:0045055","regulated exocytosis",8,1,0.67,1402,"0.50244","0.65302","0.65302" +"GO:0048638","regulation of developmental growth",17,3,1.42,594,"0.16403","0.65340","0.65340" +"GO:0006379","mRNA cleavage",5,1,0.42,1087,"0.35340","0.65364","0.65364" +"GO:0018130","heterocycle biosynthetic process",455,42,37.97,840,"0.25344","0.32552","0.65386" +"GO:0050776","regulation of immune response",32,4,2.67,870,"0.27549","0.65429","0.65429" +"GO:0006643","membrane lipid metabolic process",18,0,1.5,2351,"1.00000","0.65488","0.65488" +"GO:0006511","ubiquitin-dependent protein catabolic pr...",61,4,5.09,1800,"0.76280","0.65543","0.65543" +"GO:0019941","modification-dependent protein catabolic...",61,4,5.09,1801,"0.76280","0.65543","0.65543" +"GO:0043632","modification-dependent macromolecule cat...",61,4,5.09,1802,"0.76280","0.65543","0.65543" +"GO:0006401","RNA catabolic process",27,4,2.25,624,"0.18358","0.65571","0.65571" +"GO:0007229","integrin-mediated signaling pathway",3,1,0.25,791,"0.23012","0.65627","0.65627" +"GO:0006939","smooth muscle contraction",3,0,0.25,2352,"1.00000","0.65627","0.65627" +"GO:0030511","positive regulation of transforming grow...",3,0,0.25,2353,"1.00000","0.65627","0.65627" +"GO:0030728","ovulation",3,0,0.25,2354,"1.00000","0.65627","0.65627" +"GO:0048644","muscle organ morphogenesis",3,0,0.25,2355,"1.00000","0.65627","0.65627" +"GO:0055008","cardiac muscle tissue morphogenesis",3,0,0.25,2356,"1.00000","0.65627","0.65627" +"GO:0060415","muscle tissue morphogenesis",3,0,0.25,2357,"1.00000","0.65627","0.65627" +"GO:1903846","positive regulation of cellular response...",3,0,0.25,2358,"1.00000","0.65627","0.65627" +"GO:0032774","RNA biosynthetic process",369,34,30.79,883,"0.28737","0.65627","0.65627" +"GO:0045333","cellular respiration",32,2,2.67,1796,"0.76100","0.04457","0.65672" +"GO:0033036","macromolecule localization",238,23,19.86,841,"0.25369","0.65683","0.65683" +"GO:0007173","epidermal growth factor receptor signali...",5,0,0.42,2359,"1.00000","0.65693","0.65693" +"GO:0038127","ERBB signaling pathway",5,0,0.42,2360,"1.00000","0.65693","0.65693" +"GO:0042058","regulation of epidermal growth factor re...",5,0,0.42,2361,"1.00000","0.65693","0.65693" +"GO:1901184","regulation of ERBB signaling pathway",5,0,0.42,2362,"1.00000","0.65693","0.65693" +"GO:0006556","S-adenosylmethionine biosynthetic proces...",3,0,0.25,2363,"1.00000","0.65926","0.65926" +"GO:0046500","S-adenosylmethionine metabolic process",3,0,0.25,2364,"1.00000","0.65926","0.65926" +"GO:0009059","macromolecule biosynthetic process",661,59,55.16,887,"0.29269","0.16538","0.65965" +"GO:0035337","fatty-acyl-CoA metabolic process",3,0,0.25,2365,"1.00000","0.66001","0.66001" +"GO:0010906","regulation of glucose metabolic process",7,1,0.58,1328,"0.45702","0.66045","0.66045" +"GO:0032092","positive regulation of protein binding",7,0,0.58,2366,"1.00000","0.66045","0.66045" +"GO:0007010","cytoskeleton organization",107,14,8.93,361,"0.05811","0.39027","0.66203" +"GO:0071705","nitrogen compound transport",168,16,14.02,1029,"0.32477","0.66216","0.66216" +"GO:0007274","neuromuscular synaptic transmission",3,0,0.25,2367,"1.00000","0.66250","0.66250" +"GO:0034113","heterotypic cell-cell adhesion",3,0,0.25,2368,"1.00000","0.66250","0.66250" +"GO:0034114","regulation of heterotypic cell-cell adhe...",3,0,0.25,2369,"1.00000","0.66250","0.66250" +"GO:0045765","regulation of angiogenesis",5,1,0.42,1088,"0.35340","0.66291","0.66291" +"GO:0045766","positive regulation of angiogenesis",5,1,0.42,1089,"0.35340","0.66291","0.66291" +"GO:1901342","regulation of vasculature development",5,1,0.42,1090,"0.35340","0.66291","0.66291" +"GO:1904018","positive regulation of vasculature devel...",5,1,0.42,1091,"0.35340","0.66291","0.66291" +"GO:0045815","positive regulation of gene expression, ...",5,1,0.42,1092,"0.35340","0.66368","0.66368" +"GO:0030970","retrograde protein transport, ER to cyto...",5,0,0.42,2370,"1.00000","0.66368","0.66368" +"GO:0051224","negative regulation of protein transport",5,0,0.42,2371,"1.00000","0.66368","0.66368" +"GO:0060968","regulation of gene silencing",5,0,0.42,2372,"1.00000","0.66368","0.66368" +"GO:1903051","negative regulation of proteolysis invol...",5,0,0.42,2373,"1.00000","0.66368","0.66368" +"GO:1903363","negative regulation of cellular protein ...",5,0,0.42,2374,"1.00000","0.66368","0.66368" +"GO:1903513","endoplasmic reticulum to cytosol transpo...",5,0,0.42,2375,"1.00000","0.66368","0.66368" +"GO:1904950","negative regulation of establishment of ...",5,0,0.42,2376,"1.00000","0.66368","0.66368" +"GO:0051704","multi-organism process",130,10,10.85,1666,"0.65679","0.66411","0.66411" +"GO:0072507","divalent inorganic cation homeostasis",22,0,1.84,2377,"1.00000","0.66438","0.66438" +"GO:0044248","cellular catabolic process",179,18,14.94,806,"0.23196","0.66511","0.66511" +"GO:0034404","nucleobase-containing small molecule bio...",23,3,1.92,997,"0.30018","0.66604","0.66604" +"GO:2001257","regulation of cation channel activity",11,2,0.92,815,"0.23238","0.66617","0.66617" +"GO:0040039","inductive cell migration",3,0,0.25,2378,"1.00000","0.66623","0.66623" +"GO:0006970","response to osmotic stress",8,1,0.67,1403,"0.50244","0.66645","0.66645" +"GO:0007346","regulation of mitotic cell cycle",38,2,3.17,1853,"0.83928","0.66670","0.66670" +"GO:0030323","respiratory tube development",7,0,0.58,2379,"1.00000","0.66697","0.66697" +"GO:0006491","N-glycan processing",3,1,0.25,792,"0.23012","0.66722","0.66722" +"GO:0070201","regulation of establishment of protein l...",30,2,2.5,1751,"0.72838","0.66733","0.66733" +"GO:0090087","regulation of peptide transport",30,2,2.5,1752,"0.72838","0.66733","0.66733" +"GO:0090407","organophosphate biosynthetic process",87,8,7.26,1283,"0.44208","0.07404","0.66751" +"GO:0043162","ubiquitin-dependent protein catabolic pr...",7,1,0.58,1329,"0.45702","0.66762","0.66762" +"GO:0030178","negative regulation of Wnt signaling pat...",7,1,0.58,1330,"0.45702","0.66795","0.66795" +"GO:0044271","cellular nitrogen compound biosynthetic ...",650,57,54.24,1133,"0.35363","0.04422","0.66872" +"GO:0010951","negative regulation of endopeptidase act...",6,1,0.5,1231,"0.40746","0.66948","0.66948" +"GO:0043154","negative regulation of cysteine-type end...",6,1,0.5,1232,"0.40746","0.66948","0.66948" +"GO:2000117","negative regulation of cysteine-type end...",6,1,0.5,1233,"0.40746","0.66948","0.66948" +"GO:0001525","angiogenesis",9,1,0.75,1502,"0.54409","0.67029","0.67029" +"GO:0030182","neuron differentiation",81,10,6.76,536,"0.13344","0.67039","0.67039" +"GO:0016579","protein deubiquitination",20,0,1.67,2380,"1.00000","0.67109","0.67109" +"GO:0009058","biosynthetic process",837,74,69.85,886,"0.29086","0.07803","0.67176" +"GO:0006636","unsaturated fatty acid biosynthetic proc...",4,1,0.33,967,"0.29444","0.67192","0.67192" +"GO:0033559","unsaturated fatty acid metabolic process",4,1,0.33,968,"0.29444","0.67192","0.67192" +"GO:0006952","defense response",51,5,4.26,1270,"0.42348","0.67221","0.67221" +"GO:0006733","oxidoreduction coenzyme metabolic proces...",23,3,1.92,998,"0.30018","0.67261","0.67261" +"GO:0034332","adherens junction organization",5,0,0.42,2381,"1.00000","0.67483","0.67483" +"GO:0034333","adherens junction assembly",5,0,0.42,2382,"1.00000","0.67483","0.67483" +"GO:0042303","molting cycle",5,0,0.42,2383,"1.00000","0.67483","0.67483" +"GO:0031349","positive regulation of defense response",16,1,1.34,1781,"0.75296","0.67507","0.67507" +"GO:0048199","vesicle targeting, to, from or within Go...",6,0,0.5,2384,"1.00000","0.67614","0.67614" +"GO:0072006","nephron development",4,0,0.33,2385,"1.00000","0.67621","0.67621" +"GO:0072009","nephron epithelium development",4,0,0.33,2386,"1.00000","0.67621","0.67621" +"GO:0072073","kidney epithelium development",4,0,0.33,2387,"1.00000","0.67621","0.67621" +"GO:0007420","brain development",46,5,3.84,1035,"0.33777","0.67647","0.67647" +"GO:0060322","head development",46,5,3.84,1036,"0.33777","0.67647","0.67647" +"GO:0051223","regulation of protein transport",29,2,2.42,1748,"0.71071","0.67649","0.67649" +"GO:0000281","mitotic cytokinesis",10,0,0.83,2388,"1.00000","0.67758","0.67758" +"GO:0042559","pteridine-containing compound biosynthet...",5,0,0.42,2389,"1.00000","0.67790","0.67790" +"GO:0002088","lens development in camera-type eye",3,1,0.25,793,"0.23012","0.67837","0.67837" +"GO:0010998","regulation of translational initiation b...",3,1,0.25,794,"0.23012","0.67837","0.67837" +"GO:0043555","regulation of translation in response to...",3,1,0.25,795,"0.23012","0.67837","0.67837" +"GO:0043558","regulation of translational initiation i...",3,1,0.25,796,"0.23012","0.67837","0.67837" +"GO:0031347","regulation of defense response",20,2,1.67,1444,"0.50695","0.67917","0.67917" +"GO:0072659","protein localization to plasma membrane",11,0,0.92,2390,"1.00000","0.68030","0.68030" +"GO:0061025","membrane fusion",5,1,0.42,1093,"0.35340","0.68039","0.68039" +"GO:0006813","potassium ion transport",16,1,1.34,1782,"0.75296","0.68108","0.68108" +"GO:0051046","regulation of secretion",16,1,1.34,1783,"0.75296","0.68108","0.68108" +"GO:0051090","regulation of DNA-binding transcription ...",17,1,1.42,1814,"0.77369","0.68184","0.68184" +"GO:0051093","negative regulation of developmental pro...",39,4,3.25,1258,"0.41229","0.68186","0.68186" +"GO:0007032","endosome organization",3,0,0.25,2391,"1.00000","0.68257","0.68257" +"GO:0043473","pigmentation",3,1,0.25,797,"0.23012","0.68282","0.68282" +"GO:0045087","innate immune response",20,1,1.67,1848,"0.82606","0.68301","0.68301" +"GO:0006900","vesicle budding from membrane",6,0,0.5,2392,"1.00000","0.68348","0.68348" +"GO:0048194","Golgi vesicle budding",6,0,0.5,2393,"1.00000","0.68348","0.68348" +"GO:0032365","intracellular lipid transport",6,1,0.5,1234,"0.40746","0.68348","0.68348" +"GO:0018200","peptidyl-glutamic acid modification",4,0,0.33,2394,"1.00000","0.68392","0.68392" +"GO:0048193","Golgi vesicle transport",36,0,3,2395,"1.00000","0.68406","0.68406" +"GO:0015850","organic hydroxy compound transport",10,0,0.83,2396,"1.00000","0.68408","0.68408" +"GO:0006665","sphingolipid metabolic process",7,0,0.58,2397,"1.00000","0.68529","0.68529" +"GO:0001816","cytokine production",22,3,1.84,875,"0.27660","0.68530","0.68530" +"GO:0048562","embryonic organ morphogenesis",12,2,1,859,"0.26449","0.68568","0.68568" +"GO:0051641","cellular localization",240,22,20.03,1045,"0.35069","0.68620","0.68620" +"GO:0055065","metal ion homeostasis",30,3,2.5,1350,"0.46331","0.33535","0.68630" +"GO:0071840","cellular component organization or bioge...",558,50,46.57,1004,"0.30415","0.40955","0.68644" +"GO:0031327","negative regulation of cellular biosynth...",79,9,6.59,666,"0.20924","0.68731","0.68731" +"GO:0010942","positive regulation of cell death",24,3,2,1023,"0.32386","0.68740","0.68740" +"GO:0071453","cellular response to oxygen levels",9,1,0.75,1503,"0.54409","0.68787","0.68787" +"GO:0070936","protein K48-linked ubiquitination",9,0,0.75,2398,"1.00000","0.68787","0.68787" +"GO:0031167","rRNA methylation",6,0,0.5,2399,"1.00000","0.68802","0.68802" +"GO:0007093","mitotic cell cycle checkpoint",12,0,1,2400,"1.00000","0.68815","0.68815" +"GO:0045665","negative regulation of neuron differenti...",7,1,0.58,1331,"0.45702","0.68820","0.68820" +"GO:0030198","extracellular matrix organization",14,0,1.17,2401,"1.00000","0.68823","0.68823" +"GO:0043062","extracellular structure organization",14,0,1.17,2402,"1.00000","0.68823","0.68823" +"GO:0042692","muscle cell differentiation",25,2,2.09,1635,"0.63032","0.68898","0.68898" +"GO:0051259","protein complex oligomerization",21,3,1.75,839,"0.25322","0.68937","0.68937" +"GO:0001503","ossification",5,1,0.42,1094,"0.35340","0.68994","0.68994" +"GO:0001678","cellular glucose homeostasis",5,1,0.42,1095,"0.35340","0.68994","0.68994" +"GO:0008344","adult locomotory behavior",5,1,0.42,1096,"0.35340","0.68994","0.68994" +"GO:0046887","positive regulation of hormone secretion",5,1,0.42,1097,"0.35340","0.68994","0.68994" +"GO:0071322","cellular response to carbohydrate stimul...",5,1,0.42,1098,"0.35340","0.68994","0.68994" +"GO:0090277","positive regulation of peptide hormone s...",5,1,0.42,1099,"0.35340","0.68994","0.68994" +"GO:0046822","regulation of nucleocytoplasmic transpor...",3,0,0.25,2403,"1.00000","0.68997","0.68997" +"GO:1900180","regulation of protein localization to nu...",3,0,0.25,2404,"1.00000","0.68997","0.68997" +"GO:0006348","chromatin silencing at telomere",6,1,0.5,1235,"0.40746","0.69045","0.69045" +"GO:0051785","positive regulation of nuclear division",6,0,0.5,2405,"1.00000","0.69045","0.69045" +"GO:0071478","cellular response to radiation",9,2,0.75,611,"0.16931","0.69100","0.69100" +"GO:0051186","cofactor metabolic process",78,4,6.51,1872,"0.90223","0.69106","0.69106" +"GO:0070647","protein modification by small protein co...",86,8,7.18,1274,"0.42893","0.69128","0.69128" +"GO:0070838","divalent metal ion transport",26,3,2.17,1165,"0.37116","0.69130","0.69130" +"GO:0072511","divalent inorganic cation transport",26,3,2.17,1166,"0.37116","0.69130","0.69130" +"GO:1901576","organic substance biosynthetic process",816,73,68.1,833,"0.25233","0.08452","0.69131" +"GO:0033673","negative regulation of kinase activity",16,2,1.34,1180,"0.39094","0.69135","0.69135" +"GO:0051168","nuclear export",15,2,1.25,1152,"0.36000","0.69233","0.69233" +"GO:0001501","skeletal system development",18,2,1.5,1292,"0.45066","0.69239","0.69239" +"GO:0051648","vesicle localization",16,0,1.34,2406,"1.00000","0.69305","0.69305" +"GO:0015918","sterol transport",8,0,0.67,2407,"1.00000","0.69311","0.69311" +"GO:0042127","regulation of cell proliferation",51,5,4.26,1271,"0.42348","0.69508","0.69508" +"GO:0098742","cell-cell adhesion via plasma-membrane a...",13,1,1.08,1689,"0.67870","0.69532","0.69532" +"GO:0006400","tRNA modification",19,0,1.59,2408,"1.00000","0.69540","0.69540" +"GO:0032147","activation of protein kinase activity",5,1,0.42,1100,"0.35340","0.69565","0.69565" +"GO:0045596","negative regulation of cell differentiat...",30,3,2.5,1351,"0.46331","0.69620","0.69620" +"GO:1903076","regulation of protein localization to pl...",3,0,0.25,2409,"1.00000","0.69635","0.69635" +"GO:1904375","regulation of protein localization to ce...",3,0,0.25,2410,"1.00000","0.69635","0.69635" +"GO:1903530","regulation of secretion by cell",15,1,1.25,1762,"0.73033","0.69772","0.69772" +"GO:0007444","imaginal disc development",12,2,1,860,"0.26449","0.10321","0.69783" +"GO:1901292","nucleoside phosphate catabolic process",16,2,1.34,1181,"0.39094","0.69816","0.69816" +"GO:0043523","regulation of neuron apoptotic process",9,2,0.75,612,"0.16931","0.69865","0.69865" +"GO:0016043","cellular component organization",508,46,42.39,881,"0.28716","0.33000","0.69900" +"GO:0048813","dendrite morphogenesis",6,0,0.5,2411,"1.00000","0.70086","0.70086" +"GO:0043966","histone H3 acetylation",4,0,0.33,2412,"1.00000","0.70094","0.70094" +"GO:0042278","purine nucleoside metabolic process",8,1,0.67,1404,"0.50244","0.70152","0.70152" +"GO:0046128","purine ribonucleoside metabolic process",8,1,0.67,1405,"0.50244","0.70152","0.70152" +"GO:0002275","myeloid cell activation involved in immu...",5,1,0.42,1101,"0.35340","0.70191","0.70191" +"GO:0002283","neutrophil activation involved in immune...",5,1,0.42,1102,"0.35340","0.70191","0.70191" +"GO:0002444","myeloid leukocyte mediated immunity",5,1,0.42,1103,"0.35340","0.70191","0.70191" +"GO:0002446","neutrophil mediated immunity",5,1,0.42,1104,"0.35340","0.70191","0.70191" +"GO:0036230","granulocyte activation",5,1,0.42,1105,"0.35340","0.70191","0.70191" +"GO:0042119","neutrophil activation",5,1,0.42,1106,"0.35340","0.70191","0.70191" +"GO:0043299","leukocyte degranulation",5,1,0.42,1107,"0.35340","0.70191","0.70191" +"GO:0043312","neutrophil degranulation",5,1,0.42,1108,"0.35340","0.70191","0.70191" +"GO:0043087","regulation of GTPase activity",13,1,1.08,1690,"0.67870","0.70215","0.70215" +"GO:0006352","DNA-templated transcription, initiation",24,3,2,1024,"0.32386","0.70341","0.70341" +"GO:0016050","vesicle organization",13,1,1.08,1691,"0.67870","0.70344","0.70344" +"GO:0031644","regulation of neurological system proces...",4,0,0.33,2413,"1.00000","0.70348","0.70348" +"GO:0006950","response to stress",260,22,21.7,1456,"0.50789","0.70399","0.70399" +"GO:0031098","stress-activated protein kinase signalin...",12,2,1,861,"0.26449","0.70485","0.70485" +"GO:0051403","stress-activated MAPK cascade",12,2,1,862,"0.26449","0.70485","0.70485" +"GO:0010821","regulation of mitochondrion organization",14,1,1.17,1731,"0.70564","0.70573","0.70573" +"GO:0002062","chondrocyte differentiation",4,0,0.33,2414,"1.00000","0.70601","0.70601" +"GO:0060563","neuroepithelial cell differentiation",4,1,0.33,969,"0.29444","0.70686","0.70686" +"GO:0032989","cellular component morphogenesis",80,10,6.68,526,"0.12566","0.70737","0.70737" +"GO:0007603","phototransduction, visible light",3,0,0.25,2415,"1.00000","0.70759","0.70759" +"GO:0016056","rhodopsin mediated signaling pathway",3,0,0.25,2416,"1.00000","0.70759","0.70759" +"GO:0060255","regulation of macromolecule metabolic pr...",458,40,38.22,1198,"0.40034","0.70779","0.70779" +"GO:1901575","organic substance catabolic process",172,16,14.35,1156,"0.36056","0.70783","0.70783" +"GO:0005996","monosaccharide metabolic process",16,2,1.34,1182,"0.39094","0.70834","0.70834" +"GO:0051650","establishment of vesicle localization",15,0,1.25,2417,"1.00000","0.70921","0.70921" +"GO:0048522","positive regulation of cellular process",271,26,22.62,829,"0.24792","0.70958","0.70958" +"GO:0008033","tRNA processing",36,2,3,1843,"0.81618","0.70968","0.70968" +"GO:0009070","serine family amino acid biosynthetic pr...",3,0,0.25,2418,"1.00000","0.71027","0.71027" +"GO:0034389","lipid droplet organization",3,0,0.25,2419,"1.00000","0.71051","0.71051" +"GO:0035459","cargo loading into vesicle",3,0,0.25,2420,"1.00000","0.71051","0.71051" +"GO:0009890","negative regulation of biosynthetic proc...",81,9,6.76,805,"0.23064","0.71107","0.71107" +"GO:0042982","amyloid precursor protein metabolic proc...",5,1,0.42,1109,"0.35340","0.71117","0.71117" +"GO:0042987","amyloid precursor protein catabolic proc...",5,1,0.42,1110,"0.35340","0.71117","0.71117" +"GO:0035641","locomotory exploration behavior",3,0,0.25,2421,"1.00000","0.71148","0.71148" +"GO:0071702","organic substance transport",202,19,16.86,1019,"0.32308","0.71270","0.71270" +"GO:2000278","regulation of DNA biosynthetic process",4,0,0.33,2422,"1.00000","0.71276","0.71276" +"GO:0006399","tRNA metabolic process",64,5,5.34,1634,"0.62917","0.71300","0.71300" +"GO:0045595","regulation of cell differentiation",80,8,6.68,1044,"0.35001","0.71310","0.71310" +"GO:1990542","mitochondrial transmembrane transport",16,2,1.34,1183,"0.39094","0.71340","0.71340" +"GO:0055074","calcium ion homeostasis",20,0,1.67,2423,"1.00000","0.71382","0.71382" +"GO:0072503","cellular divalent inorganic cation homeo...",20,0,1.67,2424,"1.00000","0.71382","0.71382" +"GO:0042129","regulation of T cell proliferation",7,1,0.58,1332,"0.45702","0.71382","0.71382" +"GO:0016999","antibiotic metabolic process",19,0,1.59,2425,"1.00000","0.71397","0.71397" +"GO:0008202","steroid metabolic process",18,1,1.5,1829,"0.79269","0.71438","0.71438" +"GO:0043648","dicarboxylic acid metabolic process",7,0,0.58,2426,"1.00000","0.71446","0.71446" +"GO:0019752","carboxylic acid metabolic process",127,11,10.6,1377,"0.49615","0.71481","0.71481" +"GO:0010638","positive regulation of organelle organiz...",49,5,4.09,1179,"0.38924","0.71505","0.71505" +"GO:0034728","nucleosome organization",8,1,0.67,1406,"0.50244","0.71583","0.71583" +"GO:0043628","ncRNA 3'-end processing",5,1,0.42,1111,"0.35340","0.71587","0.71587" +"GO:0030041","actin filament polymerization",17,2,1.42,1265,"0.42119","0.71707","0.71707" +"GO:0030833","regulation of actin filament polymerizat...",17,2,1.42,1266,"0.42119","0.71707","0.71707" +"GO:0044057","regulation of system process",28,1,2.34,1876,"0.91391","0.71884","0.71884" +"GO:0009056","catabolic process",200,19,16.69,1005,"0.30705","0.71885","0.71885" +"GO:0071383","cellular response to steroid hormone sti...",19,1,1.59,1842,"0.81011","0.71908","0.71908" +"GO:0072359","circulatory system development",47,3,3.92,1803,"0.76539","0.71938","0.71938" +"GO:0019438","aromatic compound biosynthetic process",449,41,37.47,878,"0.28224","0.46498","0.72173" +"GO:0017148","negative regulation of translation",4,0,0.33,2427,"1.00000","0.72198","0.72198" +"GO:0034249","negative regulation of cellular amide me...",4,0,0.33,2428,"1.00000","0.72198","0.72198" +"GO:0030334","regulation of cell migration",22,1,1.84,1864,"0.85408","0.72379","0.72379" +"GO:0060191","regulation of lipase activity",3,0,0.25,2429,"1.00000","0.72454","0.72454" +"GO:0035418","protein localization to synapse",6,1,0.5,1236,"0.40746","0.72524","0.72524" +"GO:0016482","cytosolic transport",14,1,1.17,1732,"0.70564","0.72572","0.72572" +"GO:0016322","neuron remodeling",4,0,0.33,2430,"1.00000","0.72698","0.72698" +"GO:0038093","Fc receptor signaling pathway",4,0,0.33,2431,"1.00000","0.72698","0.72698" +"GO:0042398","cellular modified amino acid biosyntheti...",3,0,0.25,2432,"1.00000","0.72743","0.72743" +"GO:0050830","defense response to Gram-positive bacter...",3,0,0.25,2433,"1.00000","0.72815","0.72815" +"GO:0008361","regulation of cell size",10,2,0.83,654,"0.20055","0.72895","0.72895" +"GO:0009119","ribonucleoside metabolic process",11,1,0.92,1619,"0.61724","0.73000","0.73000" +"GO:1901566","organonitrogen compound biosynthetic pro...",352,32,29.38,1028,"0.32450","0.00026","0.73051" +"GO:0070588","calcium ion transmembrane transport",15,2,1.25,1153,"0.36000","0.73149","0.73149" +"GO:0010015","root morphogenesis",4,0,0.33,2434,"1.00000","0.73197","0.73197" +"GO:0010053","root epidermal cell differentiation",4,0,0.33,2435,"1.00000","0.73197","0.73197" +"GO:0090558","plant epidermis development",4,0,0.33,2436,"1.00000","0.73197","0.73197" +"GO:0090627","plant epidermal cell differentiation",4,0,0.33,2437,"1.00000","0.73197","0.73197" +"GO:0002791","regulation of peptide secretion",13,1,1.08,1692,"0.67870","0.73218","0.73218" +"GO:0051047","positive regulation of secretion",13,1,1.08,1693,"0.67870","0.73218","0.73218" +"GO:1903532","positive regulation of secretion by cell",13,1,1.08,1694,"0.67870","0.73218","0.73218" +"GO:0030258","lipid modification",14,2,1.17,1033,"0.32850","0.73373","0.73373" +"GO:0032386","regulation of intracellular transport",23,3,1.92,999,"0.30018","0.73396","0.73396" +"GO:0016255","attachment of GPI anchor to protein",3,0,0.25,2438,"1.00000","0.73437","0.73437" +"GO:0043934","sporulation",5,0,0.42,2439,"1.00000","0.73450","0.73450" +"GO:0009566","fertilization",7,0,0.58,2440,"1.00000","0.73479","0.73479" +"GO:0008045","motor neuron axon guidance",5,0,0.42,2441,"1.00000","0.73524","0.73524" +"GO:0007610","behavior",50,5,4.17,1203,"0.40639","0.73538","0.73538" +"GO:1903522","regulation of blood circulation",15,1,1.25,1763,"0.73033","0.73567","0.73567" +"GO:0051289","protein homotetramerization",3,0,0.25,2442,"1.00000","0.73580","0.73580" +"GO:0050908","detection of light stimulus involved in ...",4,1,0.33,970,"0.29444","0.73610","0.73610" +"GO:0050962","detection of light stimulus involved in ...",4,1,0.33,971,"0.29444","0.73610","0.73610" +"GO:0050808","synapse organization",26,1,2.17,1870,"0.89734","0.73628","0.73628" +"GO:0016070","RNA metabolic process",582,52,48.57,1006,"0.30718","0.73647","0.73647" +"GO:0008306","associative learning",6,1,0.5,1237,"0.40746","0.73743","0.73743" +"GO:0032869","cellular response to insulin stimulus",6,1,0.5,1238,"0.40746","0.73743","0.73743" +"GO:0062013","positive regulation of small molecule me...",6,1,0.5,1239,"0.40746","0.73743","0.73743" +"GO:0097300","programmed necrotic cell death",4,0,0.33,2443,"1.00000","0.73858","0.73858" +"GO:0002682","regulation of immune system process",51,6,4.26,832,"0.24918","0.73875","0.73875" +"GO:0006040","amino sugar metabolic process",33,7,2.75,178,"0.01676","0.00027","0.73885" +"GO:0048568","embryonic organ development",27,5,2.25,392,"0.06874","0.17809","0.73891" +"GO:0006874","cellular calcium ion homeostasis",19,0,1.59,2444,"1.00000","0.73934","0.73934" +"GO:0033500","carbohydrate homeostasis",8,1,0.67,1407,"0.50244","0.73938","0.73938" +"GO:0042593","glucose homeostasis",8,1,0.67,1408,"0.50244","0.73938","0.73938" +"GO:0009792","embryo development ending in birth or eg...",46,7,3.84,431,"0.08376","0.19652","0.74157" +"GO:0051865","protein autoubiquitination",5,0,0.42,2445,"1.00000","0.74188","0.74188" +"GO:0036265","RNA (guanine-N7)-methylation",3,0,0.25,2446,"1.00000","0.74199","0.74199" +"GO:0048518","positive regulation of biological proces...",315,31,26.29,617,"0.17995","0.74278","0.74278" +"GO:0046328","regulation of JNK cascade",6,1,0.5,1240,"0.40746","0.74348","0.74348" +"GO:0042551","neuron maturation",5,0,0.42,2447,"1.00000","0.74372","0.74372" +"GO:0051298","centrosome duplication",6,1,0.5,1241,"0.40746","0.74415","0.74415" +"GO:0071495","cellular response to endogenous stimulus",50,4,4.17,1605,"0.61100","0.74442","0.74442" +"GO:0045494","photoreceptor cell maintenance",5,0,0.42,2448,"1.00000","0.74482","0.74482" +"GO:0044242","cellular lipid catabolic process",11,0,0.92,2449,"1.00000","0.74495","0.74495" +"GO:0009617","response to bacterium",21,2,1.75,1469,"0.53366","0.74680","0.74680" +"GO:0051098","regulation of binding",19,0,1.59,2450,"1.00000","0.74727","0.74727" +"GO:0007622","rhythmic behavior",5,1,0.42,1112,"0.35340","0.74848","0.74848" +"GO:0070925","organelle assembly",65,14,5.42,10,"0.00069","0.08000","0.74864" +"GO:0045666","positive regulation of neuron differenti...",12,1,1,1648,"0.64931","0.75003","0.75003" +"GO:0050708","regulation of protein secretion",12,1,1,1649,"0.64931","0.75003","0.75003" +"GO:0000447","endonucleolytic cleavage in ITS1 to sepa...",4,1,0.33,972,"0.29444","0.75006","0.75006" +"GO:0007062","sister chromatid cohesion",5,0,0.42,2451,"1.00000","0.75012","0.75012" +"GO:0033157","regulation of intracellular protein tran...",14,0,1.17,2452,"1.00000","0.75023","0.75023" +"GO:0043901","negative regulation of multi-organism pr...",6,1,0.5,1242,"0.40746","0.75050","0.75050" +"GO:0031124","mRNA 3'-end processing",8,1,0.67,1409,"0.50244","0.75097","0.75097" +"GO:0042742","defense response to bacterium",13,1,1.08,1695,"0.67870","0.75102","0.75102" +"GO:2000113","negative regulation of cellular macromol...",73,8,6.09,846,"0.26114","0.75117","0.75117" +"GO:0006505","GPI anchor metabolic process",10,0,0.83,2453,"1.00000","0.75188","0.75188" +"GO:0006661","phosphatidylinositol biosynthetic proces...",10,0,0.83,2454,"1.00000","0.75188","0.75188" +"GO:0009247","glycolipid biosynthetic process",10,0,0.83,2455,"1.00000","0.75188","0.75188" +"GO:0071704","organic substance metabolic process",1671,139,139.45,1531,"0.55419","0.56024","0.75260" +"GO:0030713","ovarian follicle cell stalk formation",3,0,0.25,2456,"1.00000","0.75308","0.75308" +"GO:0097352","autophagosome maturation",3,0,0.25,2457,"1.00000","0.75308","0.75308" +"GO:0007049","cell cycle",132,10,11.02,1676,"0.67603","0.55886","0.75312" +"GO:0001756","somitogenesis",6,0,0.5,2458,"1.00000","0.75316","0.75316" +"GO:0061053","somite development",6,0,0.5,2459,"1.00000","0.75316","0.75316" +"GO:1901699","cellular response to nitrogen compound",16,1,1.34,1784,"0.75296","0.75321","0.75321" +"GO:1903025","regulation of RNA polymerase II regulato...",3,0,0.25,2460,"1.00000","0.75355","0.75355" +"GO:2000677","regulation of transcription regulatory r...",3,0,0.25,2461,"1.00000","0.75355","0.75355" +"GO:0051402","neuron apoptotic process",10,2,0.83,655,"0.20055","0.75368","0.75368" +"GO:0016125","sterol metabolic process",7,1,0.58,1333,"0.45702","0.75386","0.75386" +"GO:0016126","sterol biosynthetic process",7,1,0.58,1334,"0.45702","0.75386","0.75386" +"GO:0072657","protein localization to membrane",36,2,3,1844,"0.81618","0.75412","0.75412" +"GO:0051222","positive regulation of protein transport",21,2,1.75,1470,"0.53366","0.75412","0.75412" +"GO:1904951","positive regulation of establishment of ...",21,2,1.75,1471,"0.53366","0.75412","0.75412" +"GO:0010564","regulation of cell cycle process",43,4,3.59,1372,"0.48865","0.75481","0.75481" +"GO:0003006","developmental process involved in reprod...",70,6,5.84,1480,"0.53629","0.47098","0.75486" +"GO:0006206","pyrimidine nucleobase metabolic process",4,0,0.33,2462,"1.00000","0.75494","0.75494" +"GO:0006207","'de novo' pyrimidine nucleobase biosynth...",4,0,0.33,2463,"1.00000","0.75494","0.75494" +"GO:0019856","pyrimidine nucleobase biosynthetic proce...",4,0,0.33,2464,"1.00000","0.75494","0.75494" +"GO:2001252","positive regulation of chromosome organi...",9,0,0.75,2465,"1.00000","0.75578","0.75578" +"GO:0051146","striated muscle cell differentiation",24,2,2,1598,"0.60770","0.75643","0.75643" +"GO:1903829","positive regulation of cellular protein ...",17,1,1.42,1815,"0.77369","0.75669","0.75669" +"GO:0090257","regulation of muscle system process",11,0,0.92,2466,"1.00000","0.75761","0.75761" +"GO:0007568","aging",28,4,2.34,656,"0.20113","0.75825","0.75825" +"GO:0031331","positive regulation of cellular cataboli...",21,2,1.75,1472,"0.53366","0.75988","0.75988" +"GO:0010033","response to organic substance",141,15,11.77,632,"0.19332","0.59390","0.75996" +"GO:0009166","nucleotide catabolic process",15,2,1.25,1154,"0.36000","0.76009","0.76009" +"GO:0001935","endothelial cell proliferation",5,1,0.42,1113,"0.35340","0.76046","0.76046" +"GO:0038202","TORC1 signaling",4,0,0.33,2467,"1.00000","0.76061","0.76061" +"GO:1902991","regulation of amyloid precursor protein ...",4,0,0.33,2468,"1.00000","0.76141","0.76141" +"GO:0031063","regulation of histone deacetylation",3,0,0.25,2469,"1.00000","0.76149","0.76149" +"GO:0031065","positive regulation of histone deacetyla...",3,0,0.25,2470,"1.00000","0.76149","0.76149" +"GO:0043981","histone H4-K5 acetylation",3,0,0.25,2471,"1.00000","0.76149","0.76149" +"GO:0043982","histone H4-K8 acetylation",3,0,0.25,2472,"1.00000","0.76149","0.76149" +"GO:0043984","histone H4-K16 acetylation",3,0,0.25,2473,"1.00000","0.76149","0.76149" +"GO:0072520","seminiferous tubule development",3,0,0.25,2474,"1.00000","0.76149","0.76149" +"GO:0090311","regulation of protein deacetylation",3,0,0.25,2475,"1.00000","0.76149","0.76149" +"GO:0090312","positive regulation of protein deacetyla...",3,0,0.25,2476,"1.00000","0.76149","0.76149" +"GO:0090342","regulation of cell aging",3,0,0.25,2477,"1.00000","0.76149","0.76149" +"GO:0090398","cellular senescence",3,0,0.25,2478,"1.00000","0.76149","0.76149" +"GO:2000772","regulation of cellular senescence",3,0,0.25,2479,"1.00000","0.76149","0.76149" +"GO:0006760","folic acid-containing compound metabolic...",3,0,0.25,2480,"1.00000","0.76172","0.76172" +"GO:0043029","T cell homeostasis",4,1,0.33,973,"0.29444","0.76222","0.76222" +"GO:0022407","regulation of cell-cell adhesion",14,1,1.17,1733,"0.70564","0.76260","0.76260" +"GO:0048284","organelle fusion",7,1,0.58,1335,"0.45702","0.76273","0.76273" +"GO:0009968","negative regulation of signal transducti...",59,6,4.92,1163,"0.36963","0.76311","0.76311" +"GO:0110020","regulation of actomyosin structure organ...",3,0,0.25,2481,"1.00000","0.76358","0.76358" +"GO:0090501","RNA phosphodiester bond hydrolysis",15,2,1.25,1155,"0.36000","0.76384","0.76384" +"GO:0050767","regulation of neurogenesis",40,5,3.34,826,"0.23781","0.76398","0.76398" +"GO:0000003","reproduction",111,9,9.26,1587,"0.58876","0.29712","0.76449" +"GO:0044270","cellular nitrogen compound catabolic pro...",55,6,4.59,1007,"0.30834","0.76450","0.76450" +"GO:0042274","ribosomal small subunit biogenesis",13,2,1.08,988,"0.29661","0.76596","0.76596" +"GO:0051171","regulation of nitrogen compound metaboli...",432,36,36.05,1476,"0.53438","0.76647","0.76647" +"GO:0032787","monocarboxylic acid metabolic process",42,5,3.51,867,"0.27034","0.76725","0.76725" +"GO:0031646","positive regulation of neurological syst...",3,0,0.25,2482,"1.00000","0.76821","0.76821" +"GO:0035249","synaptic transmission, glutamatergic",3,0,0.25,2483,"1.00000","0.76821","0.76821" +"GO:0051966","regulation of synaptic transmission, glu...",3,0,0.25,2484,"1.00000","0.76821","0.76821" +"GO:0051968","positive regulation of synaptic transmis...",3,0,0.25,2485,"1.00000","0.76821","0.76821" +"GO:0060997","dendritic spine morphogenesis",3,0,0.25,2486,"1.00000","0.76821","0.76821" +"GO:0097090","presynaptic membrane organization",3,0,0.25,2487,"1.00000","0.76821","0.76821" +"GO:0099174","regulation of presynapse organization",3,0,0.25,2488,"1.00000","0.76821","0.76821" +"GO:0010827","regulation of glucose transmembrane tran...",5,1,0.42,1114,"0.35340","0.76872","0.76872" +"GO:0019395","fatty acid oxidation",5,1,0.42,1115,"0.35340","0.76872","0.76872" +"GO:0034440","lipid oxidation",5,1,0.42,1116,"0.35340","0.76872","0.76872" +"GO:0046323","glucose import",5,1,0.42,1117,"0.35340","0.76872","0.76872" +"GO:0046324","regulation of glucose import",5,1,0.42,1118,"0.35340","0.76872","0.76872" +"GO:0046890","regulation of lipid biosynthetic process",5,1,0.42,1119,"0.35340","0.76872","0.76872" +"GO:1904659","glucose transmembrane transport",5,1,0.42,1120,"0.35340","0.76872","0.76872" +"GO:0006357","regulation of transcription by RNA polym...",99,8,8.26,1593,"0.59340","0.76873","0.76873" +"GO:0051124","synaptic growth at neuromuscular junctio...",5,0,0.42,2489,"1.00000","0.76926","0.76926" +"GO:0007293","germarium-derived egg chamber formation",4,0,0.33,2490,"1.00000","0.76944","0.76944" +"GO:0045324","late endosome to vacuole transport",4,0,0.33,2491,"1.00000","0.76944","0.76944" +"GO:0009268","response to pH",3,0,0.25,2492,"1.00000","0.76982","0.76982" +"GO:0010073","meristem maintenance",3,0,0.25,2493,"1.00000","0.77028","0.77028" +"GO:0032330","regulation of chondrocyte differentiatio...",3,0,0.25,2494,"1.00000","0.77028","0.77028" +"GO:0061035","regulation of cartilage development",3,0,0.25,2495,"1.00000","0.77028","0.77028" +"GO:0010256","endomembrane system organization",29,1,2.42,1877,"0.92117","0.77097","0.77097" +"GO:0043487","regulation of RNA stability",7,0,0.58,2496,"1.00000","0.77106","0.77106" +"GO:0043488","regulation of mRNA stability",7,0,0.58,2497,"1.00000","0.77106","0.77106" +"GO:0061013","regulation of mRNA catabolic process",7,0,0.58,2498,"1.00000","0.77106","0.77106" +"GO:1901565","organonitrogen compound catabolic proces...",113,10,9.43,1355,"0.47247","0.77186","0.77186" +"GO:0050906","detection of stimulus involved in sensor...",8,1,0.67,1410,"0.50244","0.77263","0.77263" +"GO:0006476","protein deacetylation",9,0,0.75,2499,"1.00000","0.77280","0.77280" +"GO:0016575","histone deacetylation",9,0,0.75,2500,"1.00000","0.77280","0.77280" +"GO:0031960","response to corticosteroid",7,1,0.58,1336,"0.45702","0.77332","0.77332" +"GO:0032868","response to insulin",7,1,0.58,1337,"0.45702","0.77332","0.77332" +"GO:0050796","regulation of insulin secretion",7,1,0.58,1338,"0.45702","0.77332","0.77332" +"GO:0051216","cartilage development",7,1,0.58,1339,"0.45702","0.77332","0.77332" +"GO:0051384","response to glucocorticoid",7,1,0.58,1340,"0.45702","0.77332","0.77332" +"GO:0061448","connective tissue development",7,1,0.58,1341,"0.45702","0.77332","0.77332" +"GO:0046486","glycerolipid metabolic process",32,1,2.67,1882,"0.93948","0.77373","0.77373" +"GO:0046578","regulation of Ras protein signal transdu...",14,0,1.17,2501,"1.00000","0.77373","0.77373" +"GO:0051056","regulation of small GTPase mediated sign...",14,0,1.17,2502,"1.00000","0.77373","0.77373" +"GO:0046173","polyol biosynthetic process",6,0,0.5,2503,"1.00000","0.77482","0.77482" +"GO:0046700","heterocycle catabolic process",56,6,4.67,1020,"0.32353","0.77712","0.77712" +"GO:0051960","regulation of nervous system development",44,5,3.67,1000,"0.30376","0.77712","0.77712" +"GO:0050770","regulation of axonogenesis",5,1,0.42,1121,"0.35340","0.77726","0.77726" +"GO:0061387","regulation of extent of cell growth",5,1,0.42,1122,"0.35340","0.77726","0.77726" +"GO:0007268","chemical synaptic transmission",26,3,2.17,1167,"0.37116","0.77786","0.77786" +"GO:0098916","anterograde trans-synaptic signaling",26,3,2.17,1168,"0.37116","0.77786","0.77786" +"GO:0099536","synaptic signaling",26,3,2.17,1169,"0.37116","0.77786","0.77786" +"GO:0099537","trans-synaptic signaling",26,3,2.17,1170,"0.37116","0.77786","0.77786" +"GO:0001838","embryonic epithelial tube formation",8,1,0.67,1411,"0.50244","0.77824","0.77824" +"GO:0001841","neural tube formation",8,1,0.67,1412,"0.50244","0.77824","0.77824" +"GO:0014020","primary neural tube formation",8,1,0.67,1413,"0.50244","0.77824","0.77824" +"GO:0072175","epithelial tube formation",8,1,0.67,1414,"0.50244","0.77824","0.77824" +"GO:0035601","protein deacylation",10,0,0.83,2504,"1.00000","0.77830","0.77830" +"GO:0098732","macromolecule deacylation",10,0,0.83,2505,"1.00000","0.77830","0.77830" +"GO:0035384","thioester biosynthetic process",4,0,0.33,2506,"1.00000","0.77896","0.77896" +"GO:0071616","acyl-CoA biosynthetic process",4,0,0.33,2507,"1.00000","0.77896","0.77896" +"GO:0010923","negative regulation of phosphatase activ...",6,1,0.5,1243,"0.40746","0.77902","0.77902" +"GO:0035305","negative regulation of dephosphorylation",6,1,0.5,1244,"0.40746","0.77902","0.77902" +"GO:0043410","positive regulation of MAPK cascade",7,1,0.58,1342,"0.45702","0.77961","0.77961" +"GO:0007585","respiratory gaseous exchange",4,1,0.33,974,"0.29444","0.77975","0.77975" +"GO:0048668","collateral sprouting",4,1,0.33,975,"0.29444","0.78133","0.78133" +"GO:0030435","sporulation resulting in formation of a ...",4,0,0.33,2508,"1.00000","0.78133","0.78133" +"GO:0031935","regulation of chromatin silencing",4,0,0.33,2509,"1.00000","0.78133","0.78133" +"GO:0031936","negative regulation of chromatin silenci...",4,0,0.33,2510,"1.00000","0.78133","0.78133" +"GO:0031938","regulation of chromatin silencing at tel...",4,0,0.33,2511,"1.00000","0.78133","0.78133" +"GO:0060969","negative regulation of gene silencing",4,0,0.33,2512,"1.00000","0.78133","0.78133" +"GO:0035710","CD4-positive, alpha-beta T cell activati...",3,0,0.25,2513,"1.00000","0.78149","0.78149" +"GO:0046634","regulation of alpha-beta T cell activati...",3,0,0.25,2514,"1.00000","0.78149","0.78149" +"GO:2000514","regulation of CD4-positive, alpha-beta T...",3,0,0.25,2515,"1.00000","0.78149","0.78149" +"GO:0006325","chromatin organization",82,8,6.84,1175,"0.37622","0.78156","0.78156" +"GO:0016574","histone ubiquitination",7,1,0.58,1343,"0.45702","0.78169","0.78169" +"GO:0051092","positive regulation of NF-kappaB transcr...",5,1,0.42,1123,"0.35340","0.78378","0.78378" +"GO:0010648","negative regulation of cell communicatio...",60,6,5.01,1177,"0.38508","0.78412","0.78412" +"GO:0023057","negative regulation of signaling",60,6,5.01,1178,"0.38508","0.78412","0.78412" +"GO:0006515","protein quality control for misfolded or...",4,0,0.33,2516,"1.00000","0.78447","0.78447" +"GO:0071218","cellular response to misfolded protein",4,0,0.33,2517,"1.00000","0.78447","0.78447" +"GO:0007498","mesoderm development",6,1,0.5,1245,"0.40746","0.78480","0.78480" +"GO:1903827","regulation of cellular protein localizat...",27,1,2.25,1874,"0.90599","0.78680","0.78680" +"GO:0006023","aminoglycan biosynthetic process",4,0,0.33,2518,"1.00000","0.78682","0.78682" +"GO:0002793","positive regulation of peptide secretion",10,1,0.83,1569,"0.58226","0.78700","0.78700" +"GO:1901796","regulation of signal transduction by p53...",10,1,0.83,1570,"0.58226","0.78700","0.78700" +"GO:1905392","plant organ morphogenesis",6,0,0.5,2519,"1.00000","0.78703","0.78703" +"GO:0006508","proteolysis",198,22,16.52,461,"0.09559","0.38160","0.78713" +"GO:0051270","regulation of cellular component movemen...",27,2,2.25,1673,"0.67250","0.78748","0.78748" +"GO:0071407","cellular response to organic cyclic comp...",27,3,2.25,1193,"0.39460","0.78748","0.78748" +"GO:0030031","cell projection assembly",25,3,2.09,1042,"0.34755","0.78766","0.78766" +"GO:0120031","plasma membrane bounded cell projection ...",25,3,2.09,1043,"0.34755","0.78766","0.78766" +"GO:0006890","retrograde vesicle-mediated transport, G...",7,0,0.58,2520,"1.00000","0.78806","0.78806" +"GO:0051592","response to calcium ion",8,1,0.67,1415,"0.50244","0.78824","0.78824" +"GO:0032870","cellular response to hormone stimulus",31,3,2.59,1368,"0.48548","0.78839","0.78839" +"GO:1902600","proton transmembrane transport",27,3,2.25,1194,"0.39460","0.05753","0.78903" +"GO:0002683","negative regulation of immune system pro...",13,1,1.08,1696,"0.67870","0.78913","0.78913" +"GO:0006984","ER-nucleus signaling pathway",4,0,0.33,2521,"1.00000","0.78916","0.78916" +"GO:0007613","memory",4,0,0.33,2522,"1.00000","0.78916","0.78916" +"GO:0009994","oocyte differentiation",4,0,0.33,2523,"1.00000","0.78916","0.78916" +"GO:0010811","positive regulation of cell-substrate ad...",4,0,0.33,2524,"1.00000","0.78916","0.78916" +"GO:0035640","exploration behavior",4,0,0.33,2525,"1.00000","0.78916","0.78916" +"GO:0048599","oocyte development",4,0,0.33,2526,"1.00000","0.78916","0.78916" +"GO:0097061","dendritic spine organization",4,0,0.33,2527,"1.00000","0.78916","0.78916" +"GO:0106027","neuron projection organization",4,0,0.33,2528,"1.00000","0.78916","0.78916" +"GO:0019439","aromatic compound catabolic process",57,6,4.76,1038,"0.33883","0.78929","0.78929" +"GO:0009108","coenzyme biosynthetic process",37,3,3.09,1603,"0.60803","0.78934","0.78934" +"GO:0060491","regulation of cell projection assembly",13,1,1.08,1697,"0.67870","0.78999","0.78999" +"GO:0120032","regulation of plasma membrane bounded ce...",13,1,1.08,1698,"0.67870","0.78999","0.78999" +"GO:0090662","ATP hydrolysis coupled transmembrane tra...",14,1,1.17,1734,"0.70564","0.79077","0.79077" +"GO:0099131","ATP hydrolysis coupled ion transmembrane...",14,1,1.17,1735,"0.70564","0.79077","0.79077" +"GO:1901568","fatty acid derivative metabolic process",6,0,0.5,2529,"1.00000","0.79148","0.79148" +"GO:0031401","positive regulation of protein modificat...",39,2,3.25,1860,"0.84981","0.79169","0.79169" +"GO:0050803","regulation of synapse structure or activ...",16,1,1.34,1785,"0.75296","0.79224","0.79224" +"GO:0007507","heart development",34,2,2.84,1823,"0.79018","0.79247","0.79247" +"GO:0045785","positive regulation of cell adhesion",12,0,1,2530,"1.00000","0.79283","0.79283" +"GO:0006625","protein targeting to peroxisome",3,0,0.25,2531,"1.00000","0.79410","0.79410" +"GO:0043574","peroxisomal transport",3,0,0.25,2532,"1.00000","0.79410","0.79410" +"GO:0072662","protein localization to peroxisome",3,0,0.25,2533,"1.00000","0.79410","0.79410" +"GO:0072663","establishment of protein localization to...",3,0,0.25,2534,"1.00000","0.79410","0.79410" +"GO:0071417","cellular response to organonitrogen comp...",13,1,1.08,1699,"0.67870","0.79452","0.79452" +"GO:0040007","growth",70,8,5.84,690,"0.22537","0.79461","0.79461" +"GO:0006432","phenylalanyl-tRNA aminoacylation",3,0,0.25,2535,"1.00000","0.79477","0.79477" +"GO:0006082","organic acid metabolic process",129,11,10.77,1458,"0.51795","0.79514","0.79514" +"GO:0043436","oxoacid metabolic process",129,11,10.77,1459,"0.51795","0.79514","0.79514" +"GO:0032944","regulation of mononuclear cell prolifera...",8,1,0.67,1416,"0.50244","0.79592","0.79592" +"GO:0042098","T cell proliferation",8,1,0.67,1417,"0.50244","0.79592","0.79592" +"GO:0050670","regulation of lymphocyte proliferation",8,1,0.67,1418,"0.50244","0.79592","0.79592" +"GO:0070663","regulation of leukocyte proliferation",8,1,0.67,1419,"0.50244","0.79592","0.79592" +"GO:0009896","positive regulation of catabolic process",24,2,2,1599,"0.60770","0.79599","0.79599" +"GO:0006937","regulation of muscle contraction",9,0,0.75,2536,"1.00000","0.79696","0.79696" +"GO:0010259","multicellular organism aging",8,1,0.67,1420,"0.50244","0.79701","0.79701" +"GO:0071804","cellular potassium ion transport",8,0,0.67,2537,"1.00000","0.79701","0.79701" +"GO:0071805","potassium ion transmembrane transport",8,0,0.67,2538,"1.00000","0.79701","0.79701" +"GO:0008643","carbohydrate transport",12,2,1,863,"0.26449","0.79774","0.79774" +"GO:0019637","organophosphate metabolic process",150,13,12.52,1370,"0.48700","0.36367","0.79817" +"GO:0006402","mRNA catabolic process",24,3,2,1025,"0.32386","0.79851","0.79851" +"GO:0006641","triglyceride metabolic process",4,0,0.33,2539,"1.00000","0.79920","0.79920" +"GO:0006807","nitrogen compound metabolic process",1505,124,125.6,1608,"0.61374","0.47593","0.79977" +"GO:0006955","immune response",42,4,3.51,1354,"0.46989","0.79978","0.79978" +"GO:0032367","intracellular cholesterol transport",3,0,0.25,2540,"1.00000","0.79987","0.79987" +"GO:0032370","positive regulation of lipid transport",3,0,0.25,2541,"1.00000","0.79987","0.79987" +"GO:0097306","cellular response to alcohol",3,0,0.25,2542,"1.00000","0.79987","0.79987" +"GO:1905954","positive regulation of lipid localizatio...",3,0,0.25,2543,"1.00000","0.79987","0.79987" +"GO:0080090","regulation of primary metabolic process",444,36,37.05,1601,"0.60800","0.80081","0.80081" +"GO:2000112","regulation of cellular macromolecule bio...",353,30,29.46,1371,"0.48806","0.80082","0.80082" +"GO:0055080","cation homeostasis",35,3,2.92,1544,"0.56936","0.42142","0.80104" +"GO:0098771","inorganic ion homeostasis",35,3,2.92,1545,"0.56936","0.42142","0.80104" +"GO:0006479","protein methylation",22,3,1.84,876,"0.27660","0.80106","0.80106" +"GO:0008213","protein alkylation",22,3,1.84,877,"0.27660","0.80106","0.80106" +"GO:0010675","regulation of cellular carbohydrate meta...",8,1,0.67,1421,"0.50244","0.80135","0.80135" +"GO:0046883","regulation of hormone secretion",8,1,0.67,1422,"0.50244","0.80135","0.80135" +"GO:0048732","gland development",8,1,0.67,1423,"0.50244","0.80135","0.80135" +"GO:0071219","cellular response to molecule of bacteri...",8,1,0.67,1424,"0.50244","0.80135","0.80135" +"GO:0071222","cellular response to lipopolysaccharide",8,1,0.67,1425,"0.50244","0.80135","0.80135" +"GO:0072089","stem cell proliferation",8,1,0.67,1426,"0.50244","0.80135","0.80135" +"GO:0090276","regulation of peptide hormone secretion",8,1,0.67,1427,"0.50244","0.80135","0.80135" +"GO:0042177","negative regulation of protein catabolic...",6,0,0.5,2544,"1.00000","0.80155","0.80155" +"GO:0007030","Golgi organization",11,0,0.92,2545,"1.00000","0.80207","0.80207" +"GO:0032259","methylation",47,4,3.92,1540,"0.56071","0.80345","0.80345" +"GO:0006897","endocytosis",42,5,3.51,868,"0.27034","0.80370","0.80370" +"GO:0006888","ER to Golgi vesicle-mediated transport",17,0,1.42,2546,"1.00000","0.80403","0.80403" +"GO:0030324","lung development",6,0,0.5,2547,"1.00000","0.80404","0.80404" +"GO:0015988","energy coupled proton transmembrane tran...",13,1,1.08,1700,"0.67870","0.80421","0.80421" +"GO:0015991","ATP hydrolysis coupled proton transport",13,1,1.08,1701,"0.67870","0.80421","0.80421" +"GO:0099132","ATP hydrolysis coupled cation transmembr...",13,1,1.08,1702,"0.67870","0.80421","0.80421" +"GO:0065008","regulation of biological quality",235,20,19.61,1379,"0.49951","0.52963","0.80442" +"GO:0072331","signal transduction by p53 class mediato...",11,1,0.92,1620,"0.61724","0.80461","0.80461" +"GO:0062012","regulation of small molecule metabolic p...",17,2,1.42,1267,"0.42119","0.80477","0.80477" +"GO:0097479","synaptic vesicle localization",8,0,0.67,2548,"1.00000","0.80567","0.80567" +"GO:0015908","fatty acid transport",9,1,0.75,1504,"0.54409","0.80614","0.80614" +"GO:0015909","long-chain fatty acid transport",9,1,0.75,1505,"0.54409","0.80614","0.80614" +"GO:0050714","positive regulation of protein secretion",9,1,0.75,1506,"0.54409","0.80614","0.80614" +"GO:0001934","positive regulation of protein phosphory...",21,2,1.75,1473,"0.53366","0.80622","0.80622" +"GO:0005975","carbohydrate metabolic process",70,4,5.84,1859,"0.84924","0.80692","0.80692" +"GO:0010556","regulation of macromolecule biosynthetic...",355,30,29.63,1380,"0.50177","0.80727","0.80727" +"GO:0032872","regulation of stress-activated MAPK casc...",8,1,0.67,1428,"0.50244","0.80781","0.80781" +"GO:0070302","regulation of stress-activated protein k...",8,1,0.67,1429,"0.50244","0.80781","0.80781" +"GO:0003015","heart process",13,0,1.08,2549,"1.00000","0.80811","0.80811" +"GO:0008016","regulation of heart contraction",13,0,1.08,2550,"1.00000","0.80811","0.80811" +"GO:0060047","heart contraction",13,0,1.08,2551,"1.00000","0.80811","0.80811" +"GO:2001243","negative regulation of intrinsic apoptot...",12,1,1,1650,"0.64931","0.80876","0.80876" +"GO:0001522","pseudouridine synthesis",8,1,0.67,1430,"0.50244","0.80888","0.80888" +"GO:0006506","GPI anchor biosynthetic process",9,0,0.75,2552,"1.00000","0.80980","0.80980" +"GO:2001234","negative regulation of apoptotic signali...",16,2,1.34,1184,"0.39094","0.80987","0.80987" +"GO:0048706","embryonic skeletal system development",8,1,0.67,1431,"0.50244","0.80995","0.80995" +"GO:1902533","positive regulation of intracellular sig...",28,2,2.34,1715,"0.69209","0.81053","0.81053" +"GO:0019222","regulation of metabolic process",489,41,40.81,1457,"0.51565","0.81056","0.81056" +"GO:0035556","intracellular signal transduction",136,11,11.35,1592,"0.59175","0.81067","0.81067" +"GO:0016570","histone modification",48,4,4.01,1550,"0.57786","0.81091","0.81091" +"GO:0045893","positive regulation of transcription, DN...",52,5,4.34,1279,"0.44048","0.81200","0.81200" +"GO:1903508","positive regulation of nucleic acid-temp...",52,5,4.34,1280,"0.44048","0.81200","0.81200" +"GO:1901361","organic cyclic compound catabolic proces...",59,6,4.92,1164,"0.36963","0.81233","0.81233" +"GO:0030587","sorocarp development",5,1,0.42,1124,"0.35340","0.81297","0.81297" +"GO:0090702","non-reproductive fruiting body developme...",5,1,0.42,1125,"0.35340","0.81297","0.81297" +"GO:0099120","socially cooperative development",5,1,0.42,1126,"0.35340","0.81297","0.81297" +"GO:0043086","negative regulation of catalytic activit...",43,5,3.59,880,"0.28696","0.81328","0.81328" +"GO:0044237","cellular metabolic process",1549,129,129.27,1484,"0.54293","0.45368","0.81330" +"GO:0009451","RNA modification",43,1,3.59,1887,"0.97711","0.81340","0.81340" +"GO:0016358","dendrite development",12,2,1,864,"0.26449","0.81484","0.81484" +"GO:0006333","chromatin assembly or disassembly",12,1,1,1651,"0.64931","0.81484","0.81484" +"GO:0001523","retinoid metabolic process",6,0,0.5,2553,"1.00000","0.81513","0.81513" +"GO:0016101","diterpenoid metabolic process",6,0,0.5,2554,"1.00000","0.81513","0.81513" +"GO:0010921","regulation of phosphatase activity",7,1,0.58,1344,"0.45702","0.81620","0.81620" +"GO:0007292","female gamete generation",23,2,1.92,1584,"0.58405","0.81622","0.81622" +"GO:0034227","tRNA thio-modification",3,0,0.25,2555,"1.00000","0.81689","0.81689" +"GO:1901989","positive regulation of cell cycle phase ...",5,0,0.42,2556,"1.00000","0.81698","0.81698" +"GO:0031323","regulation of cellular metabolic process",450,37,37.55,1549,"0.57106","0.81704","0.81704" +"GO:1901071","glucosamine-containing compound metaboli...",32,7,2.67,158,"0.01418","0.00051","0.81734" +"GO:0000288","nuclear-transcribed mRNA catabolic proce...",3,0,0.25,2557,"1.00000","0.81775","0.81775" +"GO:0006323","DNA packaging",10,1,0.83,1571,"0.58226","0.81814","0.81814" +"GO:0034472","snRNA 3'-end processing",3,0,0.25,2558,"1.00000","0.81839","0.81839" +"GO:0032006","regulation of TOR signaling",13,1,1.08,1703,"0.67870","0.81873","0.81873" +"GO:0050673","epithelial cell proliferation",11,1,0.92,1621,"0.61724","0.81912","0.81912" +"GO:0051252","regulation of RNA metabolic process",338,28,28.21,1529,"0.55032","0.81929","0.81929" +"GO:1901992","positive regulation of mitotic cell cycl...",4,0,0.33,2559,"1.00000","0.81957","0.81957" +"GO:0051205","protein insertion into membrane",4,0,0.33,2560,"1.00000","0.81957","0.81957" +"GO:0046530","photoreceptor cell differentiation",10,0,0.83,2561,"1.00000","0.81979","0.81979" +"GO:0070534","protein K63-linked ubiquitination",10,0,0.83,2562,"1.00000","0.81979","0.81979" +"GO:1902680","positive regulation of RNA biosynthetic ...",53,5,4.42,1348,"0.45736","0.81983","0.81983" +"GO:0040011","locomotion",77,8,6.43,1013,"0.31121","0.82112","0.82112" +"GO:0031326","regulation of cellular biosynthetic proc...",360,30,30.04,1477,"0.53581","0.82113","0.82113" +"GO:0002082","regulation of oxidative phosphorylation",3,0,0.25,2563,"1.00000","0.82117","0.82117" +"GO:0045980","negative regulation of nucleotide metabo...",3,0,0.25,2564,"1.00000","0.82117","0.82117" +"GO:1900543","negative regulation of purine nucleotide...",3,0,0.25,2565,"1.00000","0.82117","0.82117" +"GO:1903579","negative regulation of ATP metabolic pro...",3,0,0.25,2566,"1.00000","0.82117","0.82117" +"GO:0044262","cellular carbohydrate metabolic process",18,2,1.5,1293,"0.45066","0.82151","0.82151" +"GO:0032511","late endosome to vacuole transport via m...",3,0,0.25,2567,"1.00000","0.82160","0.82160" +"GO:0044260","cellular macromolecule metabolic process",1019,85,85.04,1463,"0.52837","0.44920","0.82238" +"GO:0001775","cell activation",37,2,3.09,1851,"0.82808","0.82270","0.82270" +"GO:0006098","pentose-phosphate shunt",3,0,0.25,2568,"1.00000","0.82309","0.82309" +"GO:0019682","glyceraldehyde-3-phosphate metabolic pro...",3,0,0.25,2569,"1.00000","0.82309","0.82309" +"GO:0051156","glucose 6-phosphate metabolic process",3,0,0.25,2570,"1.00000","0.82309","0.82309" +"GO:0022414","reproductive process",105,9,8.76,1461,"0.51901","0.31850","0.82318" +"GO:0031329","regulation of cellular catabolic process",44,4,3.67,1451,"0.50714","0.82357","0.82357" +"GO:0043409","negative regulation of MAPK cascade",10,1,0.83,1572,"0.58226","0.82376","0.82376" +"GO:0045444","fat cell differentiation",10,1,0.83,1573,"0.58226","0.82376","0.82376" +"GO:0002237","response to molecule of bacterial origin",9,1,0.75,1507,"0.54409","0.82384","0.82384" +"GO:0007612","learning",9,1,0.75,1508,"0.54409","0.82384","0.82384" +"GO:0030073","insulin secretion",9,1,0.75,1509,"0.54409","0.82384","0.82384" +"GO:0032496","response to lipopolysaccharide",9,1,0.75,1510,"0.54409","0.82384","0.82384" +"GO:0071375","cellular response to peptide hormone sti...",9,1,0.75,1511,"0.54409","0.82384","0.82384" +"GO:0071396","cellular response to lipid",32,3,2.67,1452,"0.50721","0.82436","0.82436" +"GO:0000462","maturation of SSU-rRNA from tricistronic...",6,1,0.5,1246,"0.40746","0.82451","0.82451" +"GO:1903533","regulation of protein targeting",9,0,0.75,2571,"1.00000","0.82458","0.82458" +"GO:0009112","nucleobase metabolic process",5,0,0.42,2572,"1.00000","0.82492","0.82492" +"GO:0046112","nucleobase biosynthetic process",5,0,0.42,2573,"1.00000","0.82492","0.82492" +"GO:0010976","positive regulation of neuron projection...",8,0,0.67,2574,"1.00000","0.82573","0.82573" +"GO:0044283","small molecule biosynthetic process",69,6,5.76,1462,"0.52174","0.82582","0.82582" +"GO:0050777","negative regulation of immune response",3,0,0.25,2575,"1.00000","0.82669","0.82669" +"GO:0009064","glutamine family amino acid metabolic pr...",8,1,0.67,1432,"0.50244","0.82677","0.82677" +"GO:0048207","vesicle targeting, rough ER to cis-Golgi",3,0,0.25,2576,"1.00000","0.82690","0.82690" +"GO:0048208","COPII vesicle coating",3,0,0.25,2577,"1.00000","0.82690","0.82690" +"GO:0034243","regulation of transcription elongation f...",4,0,0.33,2578,"1.00000","0.82694","0.82694" +"GO:0001890","placenta development",11,2,0.92,816,"0.23238","0.03475","0.82769" +"GO:0048489","synaptic vesicle transport",7,0,0.58,2579,"1.00000","0.82778","0.82778" +"GO:0097480","establishment of synaptic vesicle locali...",7,0,0.58,2580,"1.00000","0.82778","0.82778" +"GO:0007266","Rho protein signal transduction",12,0,1,2581,"1.00000","0.82808","0.82808" +"GO:1905477","positive regulation of protein localizat...",4,0,0.33,2582,"1.00000","0.82840","0.82840" +"GO:0036445","neuronal stem cell division",3,0,0.25,2583,"1.00000","0.82858","0.82858" +"GO:0048103","somatic stem cell division",3,0,0.25,2584,"1.00000","0.82858","0.82858" +"GO:0055057","neuroblast division",3,0,0.25,2585,"1.00000","0.82858","0.82858" +"GO:0055059","asymmetric neuroblast division",3,0,0.25,2586,"1.00000","0.82858","0.82858" +"GO:0032388","positive regulation of intracellular tra...",14,0,1.17,2587,"1.00000","0.82889","0.82889" +"GO:0009894","regulation of catabolic process",51,4,4.26,1632,"0.62695","0.82929","0.82929" +"GO:0007548","sex differentiation",18,1,1.5,1830,"0.79269","0.82930","0.82930" +"GO:0051276","chromosome organization",117,8,9.76,1820,"0.77502","0.82992","0.82992" +"GO:0007254","JNK cascade",9,1,0.75,1512,"0.54409","0.83042","0.83042" +"GO:0018209","peptidyl-serine modification",7,0,0.58,2588,"1.00000","0.83094","0.83094" +"GO:0001578","microtubule bundle formation",3,0,0.25,2589,"1.00000","0.83110","0.83110" +"GO:0030466","chromatin silencing at silent mating-typ...",3,0,0.25,2590,"1.00000","0.83110","0.83110" +"GO:0031939","negative regulation of chromatin silenci...",3,0,0.25,2591,"1.00000","0.83110","0.83110" +"GO:0050000","chromosome localization",3,0,0.25,2592,"1.00000","0.83110","0.83110" +"GO:0051303","establishment of chromosome localization",3,0,0.25,2593,"1.00000","0.83110","0.83110" +"GO:0061186","negative regulation of chromatin silenci...",3,0,0.25,2594,"1.00000","0.83110","0.83110" +"GO:0090054","regulation of chromatin silencing at sil...",3,0,0.25,2595,"1.00000","0.83110","0.83110" +"GO:0015718","monocarboxylic acid transport",10,1,0.83,1574,"0.58226","0.83116","0.83116" +"GO:0001666","response to hypoxia",13,2,1.08,989,"0.29661","0.83126","0.83126" +"GO:0036293","response to decreased oxygen levels",13,2,1.08,990,"0.29661","0.83126","0.83126" +"GO:0070482","response to oxygen levels",13,2,1.08,991,"0.29661","0.83126","0.83126" +"GO:0000122","negative regulation of transcription by ...",34,4,2.84,1015,"0.31427","0.83167","0.83167" +"GO:0009889","regulation of biosynthetic process",364,30,30.38,1542,"0.56267","0.83183","0.83183" +"GO:0006464","cellular protein modification process",389,33,32.46,1373,"0.48917","0.83226","0.83226" +"GO:0036211","protein modification process",389,33,32.46,1374,"0.48917","0.83226","0.83226" +"GO:0051241","negative regulation of multicellular org...",38,4,3.17,1185,"0.39277","0.83233","0.83233" +"GO:0099402","plant organ development",9,0,0.75,2596,"1.00000","0.83332","0.83332" +"GO:0006568","tryptophan metabolic process",4,0,0.33,2597,"1.00000","0.83347","0.83347" +"GO:0006569","tryptophan catabolic process",4,0,0.33,2598,"1.00000","0.83347","0.83347" +"GO:0006586","indolalkylamine metabolic process",4,0,0.33,2599,"1.00000","0.83347","0.83347" +"GO:0009310","amine catabolic process",4,0,0.33,2600,"1.00000","0.83347","0.83347" +"GO:0042402","cellular biogenic amine catabolic proces...",4,0,0.33,2601,"1.00000","0.83347","0.83347" +"GO:0042436","indole-containing compound catabolic pro...",4,0,0.33,2602,"1.00000","0.83347","0.83347" +"GO:0046218","indolalkylamine catabolic process",4,0,0.33,2603,"1.00000","0.83347","0.83347" +"GO:0070076","histone lysine demethylation",4,0,0.33,2604,"1.00000","0.83419","0.83419" +"GO:0002263","cell activation involved in immune respo...",6,1,0.5,1247,"0.40746","0.83461","0.83461" +"GO:0002274","myeloid leukocyte activation",6,1,0.5,1248,"0.40746","0.83461","0.83461" +"GO:0002366","leukocyte activation involved in immune ...",6,1,0.5,1249,"0.40746","0.83461","0.83461" +"GO:0008340","determination of adult lifespan",6,1,0.5,1250,"0.40746","0.83461","0.83461" +"GO:0007029","endoplasmic reticulum organization",9,1,0.75,1513,"0.54409","0.83500","0.83500" +"GO:0051130","positive regulation of cellular componen...",78,7,6.51,1364,"0.47941","0.83508","0.83508" +"GO:0070371","ERK1 and ERK2 cascade",5,1,0.42,1127,"0.35340","0.83515","0.83515" +"GO:0070372","regulation of ERK1 and ERK2 cascade",5,1,0.42,1128,"0.35340","0.83515","0.83515" +"GO:0042592","homeostatic process",120,9,10.01,1714,"0.68364","0.40888","0.83520" +"GO:0034641","cellular nitrogen compound metabolic pro...",973,80,81.2,1594,"0.59417","0.21210","0.83609" +"GO:0032501","multicellular organismal process",391,39,32.63,522,"0.12467","0.58276","0.83718" +"GO:0007638","mechanosensory behavior",3,0,0.25,2605,"1.00000","0.83734","0.83734" +"GO:0010522","regulation of calcium ion transport into...",3,0,0.25,2606,"1.00000","0.83734","0.83734" +"GO:0031532","actin cytoskeleton reorganization",3,0,0.25,2607,"1.00000","0.83734","0.83734" +"GO:0032526","response to retinoic acid",3,0,0.25,2608,"1.00000","0.83734","0.83734" +"GO:0034446","substrate adhesion-dependent cell spread...",3,0,0.25,2609,"1.00000","0.83734","0.83734" +"GO:0048663","neuron fate commitment",3,0,0.25,2610,"1.00000","0.83734","0.83734" +"GO:0048708","astrocyte differentiation",3,0,0.25,2611,"1.00000","0.83734","0.83734" +"GO:0050885","neuromuscular process controlling balanc...",3,0,0.25,2612,"1.00000","0.83734","0.83734" +"GO:0051208","sequestering of calcium ion",3,0,0.25,2613,"1.00000","0.83734","0.83734" +"GO:0051209","release of sequestered calcium ion into ...",3,0,0.25,2614,"1.00000","0.83734","0.83734" +"GO:0051279","regulation of release of sequestered cal...",3,0,0.25,2615,"1.00000","0.83734","0.83734" +"GO:0051282","regulation of sequestering of calcium io...",3,0,0.25,2616,"1.00000","0.83734","0.83734" +"GO:0051283","negative regulation of sequestering of c...",3,0,0.25,2617,"1.00000","0.83734","0.83734" +"GO:0061138","morphogenesis of a branching epithelium",3,0,0.25,2618,"1.00000","0.83734","0.83734" +"GO:0090101","negative regulation of transmembrane rec...",3,0,0.25,2619,"1.00000","0.83734","0.83734" +"GO:0090288","negative regulation of cellular response...",3,0,0.25,2620,"1.00000","0.83734","0.83734" +"GO:0097553","calcium ion transmembrane import into cy...",3,0,0.25,2621,"1.00000","0.83734","0.83734" +"GO:1901890","positive regulation of cell junction ass...",3,0,0.25,2622,"1.00000","0.83734","0.83734" +"GO:0006644","phospholipid metabolic process",46,1,3.84,1888,"0.98245","0.83761","0.83761" +"GO:0009914","hormone transport",10,1,0.83,1575,"0.58226","0.83799","0.83799" +"GO:0030072","peptide hormone secretion",10,1,0.83,1576,"0.58226","0.83799","0.83799" +"GO:0046879","hormone secretion",10,1,0.83,1577,"0.58226","0.83799","0.83799" +"GO:1901653","cellular response to peptide",10,1,0.83,1578,"0.58226","0.83799","0.83799" +"GO:0090304","nucleic acid metabolic process",652,56,54.41,1272,"0.42557","0.83867","0.83867" +"GO:0014070","response to organic cyclic compound",50,8,4.17,348,"0.05222","0.51401","0.83884" +"GO:0019915","lipid storage",5,1,0.42,1129,"0.35340","0.83915","0.83915" +"GO:0043414","macromolecule methylation",41,3,3.42,1677,"0.67820","0.83953","0.83953" +"GO:0099601","regulation of neurotransmitter receptor ...",6,1,0.5,1251,"0.40746","0.83987","0.83987" +"GO:1900449","regulation of glutamate receptor signali...",6,1,0.5,1252,"0.40746","0.83987","0.83987" +"GO:0070887","cellular response to chemical stimulus",108,9,9.01,1532,"0.55441","0.84055","0.84055" +"GO:0051347","positive regulation of transferase activ...",19,2,1.59,1362,"0.47927","0.84090","0.84090" +"GO:0035023","regulation of Rho protein signal transdu...",11,0,0.92,2623,"1.00000","0.84125","0.84125" +"GO:0060284","regulation of cell development",44,5,3.67,1001,"0.30376","0.84134","0.84134" +"GO:0097164","ammonium ion metabolic process",17,0,1.42,2624,"1.00000","0.84195","0.84195" +"GO:0007611","learning or memory",10,1,0.83,1579,"0.58226","0.84227","0.84227" +"GO:0071216","cellular response to biotic stimulus",10,1,0.83,1580,"0.58226","0.84227","0.84227" +"GO:0048738","cardiac muscle tissue development",15,0,1.25,2625,"1.00000","0.84468","0.84468" +"GO:0046717","acid secretion",7,0,0.58,2626,"1.00000","0.84579","0.84579" +"GO:0062014","negative regulation of small molecule me...",4,0,0.33,2627,"1.00000","0.84627","0.84627" +"GO:0030261","chromosome condensation",3,0,0.25,2628,"1.00000","0.84633","0.84633" +"GO:0031099","regeneration",14,2,1.17,1034,"0.32850","0.84649","0.84649" +"GO:0006839","mitochondrial transport",36,3,3,1591,"0.58898","0.84652","0.84652" +"GO:0006468","protein phosphorylation",148,15,12.35,830,"0.24888","0.84689","0.84689" +"GO:0098657","import into cell",44,5,3.67,1002,"0.30376","0.84712","0.84712" +"GO:0019219","regulation of nucleobase-containing comp...",349,28,29.12,1629,"0.62429","0.84897","0.84897" +"GO:0050807","regulation of synapse organization",14,1,1.17,1736,"0.70564","0.84949","0.84949" +"GO:0043412","macromolecule modification",431,34,35.97,1675,"0.67471","0.84986","0.84986" +"GO:0048167","regulation of synaptic plasticity",6,0,0.5,2629,"1.00000","0.85049","0.85049" +"GO:0006629","lipid metabolic process",135,12,11.27,1297,"0.45435","0.85113","0.85113" +"GO:0010822","positive regulation of mitochondrion org...",12,1,1,1652,"0.64931","0.85151","0.85151" +"GO:0007417","central nervous system development",63,5,5.26,1609,"0.61492","0.85152","0.85152" +"GO:0015698","inorganic anion transport",5,0,0.42,2630,"1.00000","0.85156","0.85156" +"GO:0006892","post-Golgi vesicle-mediated transport",7,0,0.58,2631,"1.00000","0.85224","0.85224" +"GO:0009225","nucleotide-sugar metabolic process",5,1,0.42,1130,"0.35340","0.85249","0.85249" +"GO:0030301","cholesterol transport",5,0,0.42,2632,"1.00000","0.85264","0.85264" +"GO:1902652","secondary alcohol metabolic process",5,0,0.42,2633,"1.00000","0.85264","0.85264" +"GO:1902653","secondary alcohol biosynthetic process",5,0,0.42,2634,"1.00000","0.85264","0.85264" +"GO:0022603","regulation of anatomical structure morph...",36,2,3,1845,"0.81618","0.85281","0.85281" +"GO:0007009","plasma membrane organization",5,0,0.42,2635,"1.00000","0.85311","0.85311" +"GO:0090068","positive regulation of cell cycle proces...",11,0,0.92,2636,"1.00000","0.85381","0.85381" +"GO:0000226","microtubule cytoskeleton organization",41,7,3.42,345,"0.04997","0.28693","0.85429" +"GO:0045017","glycerolipid biosynthetic process",18,0,1.5,2637,"1.00000","0.85471","0.85471" +"GO:0009074","aromatic amino acid family catabolic pro...",8,0,0.67,2638,"1.00000","0.85487","0.85487" +"GO:0090114","COPII-coated vesicle budding",5,0,0.42,2639,"1.00000","0.85664","0.85664" +"GO:0032456","endocytic recycling",4,0,0.33,2640,"1.00000","0.85666","0.85666" +"GO:0051348","negative regulation of transferase activ...",20,2,1.67,1445,"0.50695","0.85791","0.85791" +"GO:0040012","regulation of locomotion",32,2,2.67,1797,"0.76100","0.85809","0.85809" +"GO:0018958","phenol-containing compound metabolic pro...",7,0,0.58,2641,"1.00000","0.85846","0.85846" +"GO:0008406","gonad development",11,1,0.92,1622,"0.61724","0.85876","0.85876" +"GO:0009584","detection of visible light",6,1,0.5,1253,"0.40746","0.85945","0.85945" +"GO:0032943","mononuclear cell proliferation",9,1,0.75,1514,"0.54409","0.85971","0.85971" +"GO:0046651","lymphocyte proliferation",9,1,0.75,1515,"0.54409","0.85971","0.85971" +"GO:0070661","leukocyte proliferation",9,1,0.75,1516,"0.54409","0.85971","0.85971" +"GO:0065004","protein-DNA complex assembly",11,1,0.92,1623,"0.61724","0.85989","0.85989" +"GO:0022622","root system development",5,0,0.42,2642,"1.00000","0.85998","0.85998" +"GO:0048364","root development",5,0,0.42,2643,"1.00000","0.85998","0.85998" +"GO:0070988","demethylation",6,0,0.5,2644,"1.00000","0.86001","0.86001" +"GO:0019751","polyol metabolic process",10,0,0.83,2645,"1.00000","0.86109","0.86109" +"GO:0033013","tetrapyrrole metabolic process",9,0,0.75,2646,"1.00000","0.86118","0.86118" +"GO:0015858","nucleoside transport",3,0,0.25,2647,"1.00000","0.86161","0.86161" +"GO:1901642","nucleoside transmembrane transport",3,0,0.25,2648,"1.00000","0.86161","0.86161" +"GO:0030447","filamentous growth",4,0,0.33,2649,"1.00000","0.86208","0.86208" +"GO:0045292","mRNA cis splicing, via spliceosome",7,0,0.58,2650,"1.00000","0.86281","0.86281" +"GO:1905897","regulation of response to endoplasmic re...",11,1,0.92,1624,"0.61724","0.86304","0.86304" +"GO:0051703","intraspecies interaction between organis...",6,1,0.5,1254,"0.40746","0.86358","0.86358" +"GO:0006261","DNA-dependent DNA replication",17,2,1.42,1268,"0.42119","0.86406","0.86406" +"GO:0006354","DNA-templated transcription, elongation",16,1,1.34,1786,"0.75296","0.86422","0.86422" +"GO:0018195","peptidyl-arginine modification",4,0,0.33,2651,"1.00000","0.86477","0.86477" +"GO:0030968","endoplasmic reticulum unfolded protein r...",10,0,0.83,2652,"1.00000","0.86598","0.86598" +"GO:0034620","cellular response to unfolded protein",10,0,0.83,2653,"1.00000","0.86598","0.86598" +"GO:0007569","cell aging",6,0,0.5,2654,"1.00000","0.86631","0.86631" +"GO:0030330","DNA damage response, signal transduction...",6,0,0.5,2655,"1.00000","0.86631","0.86631" +"GO:0032309","icosanoid secretion",6,0,0.5,2656,"1.00000","0.86631","0.86631" +"GO:0042770","signal transduction in response to DNA d...",6,0,0.5,2657,"1.00000","0.86631","0.86631" +"GO:0050482","arachidonic acid secretion",6,0,0.5,2658,"1.00000","0.86631","0.86631" +"GO:0071715","icosanoid transport",6,0,0.5,2659,"1.00000","0.86631","0.86631" +"GO:1901571","fatty acid derivative transport",6,0,0.5,2660,"1.00000","0.86631","0.86631" +"GO:1901797","negative regulation of signal transducti...",6,0,0.5,2661,"1.00000","0.86631","0.86631" +"GO:1903963","arachidonate transport",6,0,0.5,2662,"1.00000","0.86631","0.86631" +"GO:0043207","response to external biotic stimulus",35,2,2.92,1835,"0.80356","0.86647","0.86647" +"GO:0051707","response to other organism",35,2,2.92,1836,"0.80356","0.86647","0.86647" +"GO:0071901","negative regulation of protein serine/th...",8,0,0.67,2663,"1.00000","0.86729","0.86729" +"GO:0031929","TOR signaling",14,1,1.17,1737,"0.70564","0.86768","0.86768" +"GO:0035303","regulation of dephosphorylation",9,1,0.75,1517,"0.54409","0.86798","0.86798" +"GO:0001963","synaptic transmission, dopaminergic",4,0,0.33,2664,"1.00000","0.86809","0.86809" +"GO:0050679","positive regulation of epithelial cell p...",4,0,0.33,2665,"1.00000","0.86809","0.86809" +"GO:0030042","actin filament depolymerization",6,0,0.5,2666,"1.00000","0.86821","0.86821" +"GO:0010466","negative regulation of peptidase activit...",8,1,0.67,1433,"0.50244","0.86823","0.86823" +"GO:0006584","catecholamine metabolic process",3,0,0.25,2667,"1.00000","0.87026","0.87026" +"GO:0009712","catechol-containing compound metabolic p...",3,0,0.25,2668,"1.00000","0.87026","0.87026" +"GO:0042417","dopamine metabolic process",3,0,0.25,2669,"1.00000","0.87026","0.87026" +"GO:0046434","organophosphate catabolic process",21,2,1.75,1474,"0.53366","0.87039","0.87039" +"GO:0016569","covalent chromatin modification",51,4,4.26,1633,"0.62695","0.87061","0.87061" +"GO:0030335","positive regulation of cell migration",12,1,1,1653,"0.64931","0.87063","0.87063" +"GO:0006996","organelle organization",357,36,29.79,510,"0.12239","0.68045","0.87150" +"GO:0045137","development of primary sexual characteri...",12,1,1,1654,"0.64931","0.87177","0.87177" +"GO:2001237","negative regulation of extrinsic apoptot...",7,1,0.58,1345,"0.45702","0.87196","0.87196" +"GO:0009642","response to light intensity",4,0,0.33,2670,"1.00000","0.87269","0.87269" +"GO:0071824","protein-DNA complex subunit organization",12,1,1,1655,"0.64931","0.87291","0.87291" +"GO:0010557","positive regulation of macromolecule bio...",61,5,5.09,1586,"0.58548","0.87313","0.87313" +"GO:0008584","male gonad development",4,0,0.33,2671,"1.00000","0.87400","0.87400" +"GO:0042771","intrinsic apoptotic signaling pathway in...",4,0,0.33,2672,"1.00000","0.87400","0.87400" +"GO:0046546","development of primary male sexual chara...",4,0,0.33,2673,"1.00000","0.87400","0.87400" +"GO:1902165","regulation of intrinsic apoptotic signal...",4,0,0.33,2674,"1.00000","0.87400","0.87400" +"GO:1902166","negative regulation of intrinsic apoptot...",4,0,0.33,2675,"1.00000","0.87400","0.87400" +"GO:1902230","negative regulation of intrinsic apoptot...",4,0,0.33,2676,"1.00000","0.87400","0.87400" +"GO:0008152","metabolic process",1897,156,158.31,1668,"0.66201","0.73514","0.87443" +"GO:0007249","I-kappaB kinase/NF-kappaB signaling",9,0,0.75,2677,"1.00000","0.87444","0.87444" +"GO:0043122","regulation of I-kappaB kinase/NF-kappaB ...",9,0,0.75,2678,"1.00000","0.87444","0.87444" +"GO:0050994","regulation of lipid catabolic process",3,0,0.25,2679,"1.00000","0.87460","0.87460" +"GO:0090316","positive regulation of intracellular pro...",10,0,0.83,2680,"1.00000","0.87472","0.87472" +"GO:0030336","negative regulation of cell migration",4,0,0.33,2681,"1.00000","0.87594","0.87594" +"GO:0032102","negative regulation of response to exter...",4,0,0.33,2682,"1.00000","0.87594","0.87594" +"GO:1903034","regulation of response to wounding",4,0,0.33,2683,"1.00000","0.87594","0.87594" +"GO:0043113","receptor clustering",3,0,0.25,2684,"1.00000","0.87740","0.87740" +"GO:0000077","DNA damage checkpoint",7,0,0.58,2685,"1.00000","0.87821","0.87821" +"GO:0071310","cellular response to organic substance",89,8,7.43,1353,"0.46825","0.87825","0.87825" +"GO:0010562","positive regulation of phosphorus metabo...",28,2,2.34,1716,"0.69209","0.88002","0.88002" +"GO:0045937","positive regulation of phosphate metabol...",28,2,2.34,1717,"0.69209","0.88002","0.88002" +"GO:0031330","negative regulation of cellular cataboli...",11,1,0.92,1625,"0.61724","0.88072","0.88072" +"GO:0055114","oxidation-reduction process",188,17,15.69,1197,"0.40031","0.56686","0.88106" +"GO:0000469","cleavage involved in rRNA processing",8,1,0.67,1434,"0.50244","0.88108","0.88108" +"GO:0042430","indole-containing compound metabolic pro...",5,0,0.42,2686,"1.00000","0.88127","0.88127" +"GO:0060341","regulation of cellular localization",44,5,3.67,1003,"0.30376","0.88141","0.88141" +"GO:0007626","locomotory behavior",13,1,1.08,1704,"0.67870","0.88178","0.88178" +"GO:0017015","regulation of transforming growth factor...",5,0,0.42,2687,"1.00000","0.88241","0.88241" +"GO:1903844","regulation of cellular response to trans...",5,0,0.42,2688,"1.00000","0.88241","0.88241" +"GO:2001236","regulation of extrinsic apoptotic signal...",10,1,0.83,1581,"0.58226","0.88283","0.88283" +"GO:0050896","response to stimulus",656,57,54.74,1176,"0.38434","0.84347","0.88294" +"GO:0006725","cellular aromatic compound metabolic pro...",797,67,66.51,1378,"0.49710","0.87148","0.88349" +"GO:0071103","DNA conformation change",13,1,1.08,1705,"0.67870","0.88406","0.88406" +"GO:0031328","positive regulation of cellular biosynth...",63,5,5.26,1610,"0.61492","0.88420","0.88420" +"GO:0044238","primary metabolic process",1578,129,131.69,1670,"0.67077","0.65962","0.88478" +"GO:0009607","response to biotic stimulus",39,2,3.25,1861,"0.84981","0.88607","0.88607" +"GO:1903573","negative regulation of response to endop...",9,0,0.75,2689,"1.00000","0.88654","0.88654" +"GO:0046474","glycerophospholipid biosynthetic process",17,0,1.42,2690,"1.00000","0.88671","0.88671" +"GO:0043170","macromolecule metabolic process",1330,110,110.99,1551,"0.58063","0.53499","0.88689" +"GO:0050663","cytokine secretion",5,0,0.42,2691,"1.00000","0.88732","0.88732" +"GO:0072332","intrinsic apoptotic signaling pathway by...",5,0,0.42,2692,"1.00000","0.88732","0.88732" +"GO:1901570","fatty acid derivative biosynthetic proce...",5,0,0.42,2693,"1.00000","0.88732","0.88732" +"GO:1902253","regulation of intrinsic apoptotic signal...",5,0,0.42,2694,"1.00000","0.88732","0.88732" +"GO:1902254","negative regulation of intrinsic apoptot...",5,0,0.42,2695,"1.00000","0.88732","0.88732" +"GO:2001021","negative regulation of response to DNA d...",5,0,0.42,2696,"1.00000","0.88732","0.88732" +"GO:0046483","heterocycle metabolic process",794,67,66.26,1366,"0.48195","0.86258","0.88745" +"GO:0001933","negative regulation of protein phosphory...",27,3,2.25,1195,"0.39460","0.88910","0.88910" +"GO:0001516","prostaglandin biosynthetic process",3,0,0.25,2697,"1.00000","0.88977","0.88977" +"GO:0006690","icosanoid metabolic process",3,0,0.25,2698,"1.00000","0.88977","0.88977" +"GO:0006692","prostanoid metabolic process",3,0,0.25,2699,"1.00000","0.88977","0.88977" +"GO:0006693","prostaglandin metabolic process",3,0,0.25,2700,"1.00000","0.88977","0.88977" +"GO:0046456","icosanoid biosynthetic process",3,0,0.25,2701,"1.00000","0.88977","0.88977" +"GO:0046457","prostanoid biosynthetic process",3,0,0.25,2702,"1.00000","0.88977","0.88977" +"GO:0033014","tetrapyrrole biosynthetic process",7,0,0.58,2703,"1.00000","0.89033","0.89033" +"GO:0042440","pigment metabolic process",7,0,0.58,2704,"1.00000","0.89033","0.89033" +"GO:0001701","in utero embryonic development",20,2,1.67,1446,"0.50695","0.10890","0.89062" +"GO:0019748","secondary metabolic process",4,0,0.33,2705,"1.00000","0.89107","0.89107" +"GO:0051272","positive regulation of cellular componen...",14,1,1.17,1738,"0.70564","0.89143","0.89143" +"GO:2000147","positive regulation of cell motility",14,1,1.17,1739,"0.70564","0.89143","0.89143" +"GO:0042180","cellular ketone metabolic process",16,1,1.34,1787,"0.75296","0.89185","0.89185" +"GO:0045739","positive regulation of DNA repair",3,0,0.25,2706,"1.00000","0.89242","0.89242" +"GO:0051099","positive regulation of binding",11,0,0.92,2707,"1.00000","0.89386","0.89386" +"GO:1901360","organic cyclic compound metabolic proces...",816,68,68.1,1465,"0.53237","0.72140","0.89415" +"GO:0009615","response to virus",6,0,0.5,2708,"1.00000","0.89487","0.89487" +"GO:0030490","maturation of SSU-rRNA",7,1,0.58,1346,"0.45702","0.89517","0.89517" +"GO:0006270","DNA replication initiation",3,0,0.25,2709,"1.00000","0.89540","0.89540" +"GO:0040017","positive regulation of locomotion",18,2,1.5,1294,"0.45066","0.89662","0.89662" +"GO:0018216","peptidyl-arginine methylation",3,0,0.25,2710,"1.00000","0.89679","0.89679" +"GO:0043277","apoptotic cell clearance",3,0,0.25,2711,"1.00000","0.89679","0.89679" +"GO:0043652","engulfment of apoptotic cell",3,0,0.25,2712,"1.00000","0.89679","0.89679" +"GO:0007528","neuromuscular junction development",6,0,0.5,2713,"1.00000","0.89684","0.89684" +"GO:1903828","negative regulation of cellular protein ...",7,0,0.58,2714,"1.00000","0.89700","0.89700" +"GO:0032366","intracellular sterol transport",4,0,0.33,2715,"1.00000","0.89773","0.89773" +"GO:0042326","negative regulation of phosphorylation",31,3,2.59,1369,"0.48548","0.89845","0.89845" +"GO:0032101","regulation of response to external stimu...",18,1,1.5,1831,"0.79269","0.89930","0.89930" +"GO:0009891","positive regulation of biosynthetic proc...",66,5,5.51,1665,"0.65672","0.89934","0.89934" +"GO:2001242","regulation of intrinsic apoptotic signal...",15,1,1.25,1764,"0.73033","0.89986","0.89986" +"GO:0002790","peptide secretion",22,2,1.84,1537,"0.55936","0.90138","0.90138" +"GO:0009306","protein secretion",22,2,1.84,1538,"0.55936","0.90138","0.90138" +"GO:0009583","detection of light stimulus",10,1,0.83,1582,"0.58226","0.90250","0.90250" +"GO:0010563","negative regulation of phosphorus metabo...",37,4,3.09,1172,"0.37316","0.90259","0.90259" +"GO:0045936","negative regulation of phosphate metabol...",37,4,3.09,1173,"0.37316","0.90259","0.90259" +"GO:0044255","cellular lipid metabolic process",95,8,7.93,1524,"0.54482","0.90279","0.90279" +"GO:0031123","RNA 3'-end processing",11,1,0.92,1626,"0.61724","0.90295","0.90295" +"GO:0045944","positive regulation of transcription by ...",39,3,3.25,1637,"0.64433","0.90317","0.90317" +"GO:0006482","protein demethylation",5,0,0.42,2716,"1.00000","0.90389","0.90389" +"GO:0008214","protein dealkylation",5,0,0.42,2717,"1.00000","0.90389","0.90389" +"GO:0016577","histone demethylation",5,0,0.42,2718,"1.00000","0.90389","0.90389" +"GO:0007399","nervous system development",153,14,12.77,1196,"0.39924","0.90403","0.90403" +"GO:0006139","nucleobase-containing compound metabolic...",767,66,64.01,1202,"0.40605","0.73550","0.90409" +"GO:0097191","extrinsic apoptotic signaling pathway",13,1,1.08,1706,"0.67870","0.90449","0.90449" +"GO:0015672","monovalent inorganic cation transport",60,5,5.01,1548,"0.57033","0.74304","0.90509" +"GO:0010469","regulation of signaling receptor activit...",8,1,0.67,1435,"0.50244","0.90517","0.90517" +"GO:0006778","porphyrin-containing compound metabolic ...",6,0,0.5,2719,"1.00000","0.90526","0.90526" +"GO:0008637","apoptotic mitochondrial changes",4,0,0.33,2720,"1.00000","0.90538","0.90538" +"GO:0046902","regulation of mitochondrial membrane per...",4,0,0.33,2721,"1.00000","0.90538","0.90538" +"GO:0098655","cation transmembrane transport",66,7,5.51,1012,"0.31051","0.61607","0.90655" +"GO:0007264","small GTPase mediated signal transductio...",33,0,2.75,2722,"1.00000","0.90656","0.90656" +"GO:0043434","response to peptide hormone",16,1,1.34,1788,"0.75296","0.90730","0.90730" +"GO:0002164","larval development",7,0,0.58,2723,"1.00000","0.90742","0.90742" +"GO:0009791","post-embryonic development",29,1,2.42,1878,"0.92117","0.90777","0.90777" +"GO:0048580","regulation of post-embryonic development",4,0,0.33,2724,"1.00000","0.90825","0.90825" +"GO:0090351","seedling development",4,0,0.33,2725,"1.00000","0.90825","0.90825" +"GO:0048285","organelle fission",39,5,3.25,685,"0.22198","0.54029","0.90854" +"GO:0043516","regulation of DNA damage response, signa...",4,0,0.33,2726,"1.00000","0.90882","0.90882" +"GO:0009062","fatty acid catabolic process",5,0,0.42,2727,"1.00000","0.90956","0.90956" +"GO:0030001","metal ion transport",70,6,5.84,1481,"0.53629","0.91002","0.91002" +"GO:0000723","telomere maintenance",7,0,0.58,2728,"1.00000","0.91044","0.91044" +"GO:0032200","telomere organization",7,0,0.58,2729,"1.00000","0.91044","0.91044" +"GO:0043281","regulation of cysteine-type endopeptidas...",9,1,0.75,1518,"0.54409","0.91169","0.91169" +"GO:0052548","regulation of endopeptidase activity",9,1,0.75,1519,"0.54409","0.91169","0.91169" +"GO:2000116","regulation of cysteine-type endopeptidas...",9,1,0.75,1520,"0.54409","0.91169","0.91169" +"GO:0031570","DNA integrity checkpoint",10,0,0.83,2730,"1.00000","0.91230","0.91230" +"GO:0009628","response to abiotic stimulus",95,7,7.93,1720,"0.69235","0.91256","0.91256" +"GO:0051051","negative regulation of transport",15,1,1.25,1765,"0.73033","0.91340","0.91340" +"GO:0000278","mitotic cell cycle",72,5,6.01,1770,"0.73122","0.75797","0.91382" +"GO:0097193","intrinsic apoptotic signaling pathway",17,1,1.42,1816,"0.77369","0.91390","0.91390" +"GO:1901652","response to peptide",17,1,1.42,1817,"0.77369","0.91390","0.91390" +"GO:2000145","regulation of cell motility",26,1,2.17,1871,"0.89734","0.91393","0.91393" +"GO:0048520","positive regulation of behavior",6,1,0.5,1255,"0.40746","0.91407","0.91407" +"GO:0070265","necrotic cell death",5,0,0.42,2731,"1.00000","0.91433","0.91433" +"GO:0001843","neural tube closure",7,0,0.58,2732,"1.00000","0.91488","0.91488" +"GO:0060606","tube closure",7,0,0.58,2733,"1.00000","0.91488","0.91488" +"GO:0070059","intrinsic apoptotic signaling pathway in...",5,0,0.42,2734,"1.00000","0.91556","0.91556" +"GO:1902235","regulation of endoplasmic reticulum stre...",5,0,0.42,2735,"1.00000","0.91556","0.91556" +"GO:0048731","system development",277,25,23.12,1161,"0.36713","0.67612","0.91649" +"GO:0034968","histone lysine methylation",7,1,0.58,1347,"0.45702","0.91665","0.91665" +"GO:2001233","regulation of apoptotic signaling pathwa...",23,2,1.92,1585,"0.58405","0.91692","0.91692" +"GO:0072595","maintenance of protein localization in o...",3,0,0.25,2736,"1.00000","0.91779","0.91779" +"GO:0045834","positive regulation of lipid metabolic p...",5,0,0.42,2737,"1.00000","0.91801","0.91801" +"GO:0090150","establishment of protein localization to...",20,2,1.67,1447,"0.50695","0.91929","0.91929" +"GO:0045598","regulation of fat cell differentiation",8,1,0.67,1436,"0.50244","0.91944","0.91944" +"GO:0009411","response to UV",4,0,0.33,2738,"1.00000","0.92099","0.92099" +"GO:0046839","phospholipid dephosphorylation",4,0,0.33,2739,"1.00000","0.92099","0.92099" +"GO:0051188","cofactor biosynthetic process",44,3,3.67,1750,"0.72446","0.92161","0.92161" +"GO:0017157","regulation of exocytosis",3,0,0.25,2740,"1.00000","0.92230","0.92230" +"GO:0001818","negative regulation of cytokine producti...",6,0,0.5,2741,"1.00000","0.92250","0.92250" +"GO:0040019","positive regulation of embryonic develop...",5,0,0.42,2742,"1.00000","0.92294","0.92294" +"GO:0042327","positive regulation of phosphorylation",26,2,2.17,1664,"0.65192","0.92343","0.92343" +"GO:0045995","regulation of embryonic development",7,0,0.58,2743,"1.00000","0.92427","0.92427" +"GO:0002833","positive regulation of response to bioti...",3,0,0.25,2744,"1.00000","0.92489","0.92489" +"GO:0030521","androgen receptor signaling pathway",3,0,0.25,2745,"1.00000","0.92489","0.92489" +"GO:0042743","hydrogen peroxide metabolic process",3,0,0.25,2746,"1.00000","0.92489","0.92489" +"GO:1901615","organic hydroxy compound metabolic proce...",37,2,3.09,1852,"0.82808","0.92490","0.92490" +"GO:0050793","regulation of developmental process",123,11,10.26,1296,"0.45195","0.92537","0.92537" +"GO:0033627","cell adhesion mediated by integrin",4,0,0.33,2747,"1.00000","0.92574","0.92574" +"GO:0033628","regulation of cell adhesion mediated by ...",4,0,0.33,2748,"1.00000","0.92574","0.92574" +"GO:0006260","DNA replication",39,3,3.25,1638,"0.64433","0.92607","0.92607" +"GO:0090305","nucleic acid phosphodiester bond hydroly...",19,2,1.59,1363,"0.47927","0.92630","0.92630" +"GO:0007271","synaptic transmission, cholinergic",3,0,0.25,2749,"1.00000","0.92714","0.92714" +"GO:0032222","regulation of synaptic transmission, cho...",3,0,0.25,2750,"1.00000","0.92714","0.92714" +"GO:0006810","transport",555,47,46.32,1365,"0.48171","0.91246","0.92733" +"GO:0035304","regulation of protein dephosphorylation",6,0,0.5,2751,"1.00000","0.92742","0.92742" +"GO:0006820","anion transport",39,1,3.25,1884,"0.96738","0.92769","0.92769" +"GO:2001251","negative regulation of chromosome organi...",9,0,0.75,2752,"1.00000","0.92786","0.92786" +"GO:1905475","regulation of protein localization to me...",6,0,0.5,2753,"1.00000","0.92805","0.92805" +"GO:2000026","regulation of multicellular organismal d...",84,8,7.01,1201,"0.40257","0.92820","0.92820" +"GO:0002097","tRNA wobble base modification",4,0,0.33,2754,"1.00000","0.92833","0.92833" +"GO:0002098","tRNA wobble uridine modification",4,0,0.33,2755,"1.00000","0.92833","0.92833" +"GO:0045321","leukocyte activation",28,2,2.34,1718,"0.69209","0.92865","0.92865" +"GO:0002757","immune response-activating signal transd...",16,1,1.34,1789,"0.75296","0.92906","0.92906" +"GO:0009164","nucleoside catabolic process",3,0,0.25,2756,"1.00000","0.92907","0.92907" +"GO:0034656","nucleobase-containing small molecule cat...",3,0,0.25,2757,"1.00000","0.92907","0.92907" +"GO:0042454","ribonucleoside catabolic process",3,0,0.25,2758,"1.00000","0.92907","0.92907" +"GO:0072523","purine-containing compound catabolic pro...",3,0,0.25,2759,"1.00000","0.92907","0.92907" +"GO:1901658","glycosyl compound catabolic process",3,0,0.25,2760,"1.00000","0.92907","0.92907" +"GO:0071897","DNA biosynthetic process",8,0,0.67,2761,"1.00000","0.92911","0.92911" +"GO:0032784","regulation of DNA-templated transcriptio...",8,0,0.67,2762,"1.00000","0.92983","0.92983" +"GO:0032786","positive regulation of DNA-templated tra...",4,0,0.33,2763,"1.00000","0.92986","0.92986" +"GO:0002478","antigen processing and presentation of e...",3,0,0.25,2764,"1.00000","0.93010","0.93010" +"GO:0009845","seed germination",3,0,0.25,2765,"1.00000","0.93010","0.93010" +"GO:0010029","regulation of seed germination",3,0,0.25,2766,"1.00000","0.93010","0.93010" +"GO:0019882","antigen processing and presentation",3,0,0.25,2767,"1.00000","0.93010","0.93010" +"GO:0019884","antigen processing and presentation of e...",3,0,0.25,2768,"1.00000","0.93010","0.93010" +"GO:0048002","antigen processing and presentation of p...",3,0,0.25,2769,"1.00000","0.93010","0.93010" +"GO:1900140","regulation of seedling development",3,0,0.25,2770,"1.00000","0.93010","0.93010" +"GO:0042157","lipoprotein metabolic process",14,0,1.17,2771,"1.00000","0.93061","0.93061" +"GO:0006997","nucleus organization",9,1,0.75,1521,"0.54409","0.93076","0.93076" +"GO:0002440","production of molecular mediator of immu...",3,0,0.25,2772,"1.00000","0.93083","0.93083" +"GO:0018105","peptidyl-serine phosphorylation",3,0,0.25,2773,"1.00000","0.93083","0.93083" +"GO:0033135","regulation of peptidyl-serine phosphoryl...",3,0,0.25,2774,"1.00000","0.93083","0.93083" +"GO:0033273","response to vitamin",3,0,0.25,2775,"1.00000","0.93083","0.93083" +"GO:0043406","positive regulation of MAP kinase activi...",3,0,0.25,2776,"1.00000","0.93083","0.93083" +"GO:0043518","negative regulation of DNA damage respon...",3,0,0.25,2777,"1.00000","0.93083","0.93083" +"GO:0050707","regulation of cytokine secretion",3,0,0.25,2778,"1.00000","0.93083","0.93083" +"GO:0050715","positive regulation of cytokine secretio...",3,0,0.25,2779,"1.00000","0.93083","0.93083" +"GO:0070570","regulation of neuron projection regenera...",3,0,0.25,2780,"1.00000","0.93083","0.93083" +"GO:0071902","positive regulation of protein serine/th...",3,0,0.25,2781,"1.00000","0.93083","0.93083" +"GO:0050678","regulation of epithelial cell proliferat...",7,0,0.58,2782,"1.00000","0.93118","0.93118" +"GO:1901988","negative regulation of cell cycle phase ...",8,0,0.67,2783,"1.00000","0.93126","0.93126" +"GO:1901991","negative regulation of mitotic cell cycl...",8,0,0.67,2784,"1.00000","0.93126","0.93126" +"GO:0008284","positive regulation of cell proliferatio...",24,1,2,1865,"0.87760","0.93136","0.93136" +"GO:0006684","sphingomyelin metabolic process",3,0,0.25,2785,"1.00000","0.93141","0.93141" +"GO:0099173","postsynapse organization",11,0,0.92,2786,"1.00000","0.93156","0.93156" +"GO:0034308","primary alcohol metabolic process",4,0,0.33,2787,"1.00000","0.93188","0.93188" +"GO:1902236","negative regulation of endoplasmic retic...",4,0,0.33,2788,"1.00000","0.93188","0.93188" +"GO:0032502","developmental process",391,37,32.63,678,"0.22023","0.84881","0.93189" +"GO:0042219","cellular modified amino acid catabolic p...",4,0,0.33,2789,"1.00000","0.93288","0.93288" +"GO:0045664","regulation of neuron differentiation",32,3,2.67,1453,"0.50721","0.93354","0.93354" +"GO:0050801","ion homeostasis",37,3,3.09,1604,"0.60803","0.53099","0.93382" +"GO:0033044","regulation of chromosome organization",20,0,1.67,2790,"1.00000","0.93393","0.93393" +"GO:0043967","histone H4 acetylation",7,0,0.58,2791,"1.00000","0.93411","0.93411" +"GO:1902806","regulation of cell cycle G1/S phase tran...",4,0,0.33,2792,"1.00000","0.93437","0.93437" +"GO:0006520","cellular amino acid metabolic process",65,6,5.42,1349,"0.46196","0.93448","0.93448" +"GO:0046856","phosphatidylinositol dephosphorylation",3,0,0.25,2793,"1.00000","0.93458","0.93458" +"GO:0010769","regulation of cell morphogenesis involve...",9,1,0.75,1522,"0.54409","0.93541","0.93541" +"GO:0006779","porphyrin-containing compound biosynthet...",4,0,0.33,2794,"1.00000","0.93584","0.93584" +"GO:0006828","manganese ion transport",4,0,0.33,2795,"1.00000","0.93584","0.93584" +"GO:0046148","pigment biosynthetic process",4,0,0.33,2796,"1.00000","0.93584","0.93584" +"GO:0010948","negative regulation of cell cycle proces...",14,1,1.17,1740,"0.70564","0.93646","0.93646" +"GO:0042461","photoreceptor cell development",6,0,0.5,2797,"1.00000","0.93742","0.93742" +"GO:0040013","negative regulation of locomotion",5,0,0.42,2798,"1.00000","0.93809","0.93809" +"GO:0051271","negative regulation of cellular componen...",5,0,0.42,2799,"1.00000","0.93809","0.93809" +"GO:2000146","negative regulation of cell motility",5,0,0.42,2800,"1.00000","0.93809","0.93809" +"GO:0008630","intrinsic apoptotic signaling pathway in...",5,0,0.42,2801,"1.00000","0.93841","0.93841" +"GO:0030317","flagellated sperm motility",5,0,0.42,2802,"1.00000","0.93841","0.93841" +"GO:0097722","sperm motility",5,0,0.42,2803,"1.00000","0.93841","0.93841" +"GO:1902229","regulation of intrinsic apoptotic signal...",5,0,0.42,2804,"1.00000","0.93841","0.93841" +"GO:0006066","alcohol metabolic process",21,0,1.75,2805,"1.00000","0.93859","0.93859" +"GO:0055085","transmembrane transport",223,21,18.61,1008,"0.30867","0.80654","0.93867" +"GO:0046649","lymphocyte activation",21,1,1.75,1856,"0.84068","0.93974","0.93974" +"GO:0010224","response to UV-B",3,0,0.25,2806,"1.00000","0.94015","0.94015" +"GO:1902117","positive regulation of organelle assembl...",3,0,0.25,2807,"1.00000","0.94178","0.94178" +"GO:0043647","inositol phosphate metabolic process",4,0,0.33,2808,"1.00000","0.94205","0.94205" +"GO:0009395","phospholipid catabolic process",3,0,0.25,2809,"1.00000","0.94219","0.94219" +"GO:0030149","sphingolipid catabolic process",3,0,0.25,2810,"1.00000","0.94219","0.94219" +"GO:0046466","membrane lipid catabolic process",3,0,0.25,2811,"1.00000","0.94219","0.94219" +"GO:0051234","establishment of localization",569,48,47.48,1376,"0.49336","0.90670","0.94358" +"GO:0015711","organic anion transport",30,1,2.5,1881,"0.92782","0.94408","0.94408" +"GO:0043271","negative regulation of ion transport",4,0,0.33,2812,"1.00000","0.94482","0.94482" +"GO:0009416","response to light stimulus",24,2,2,1600,"0.60770","0.94512","0.94512" +"GO:0006869","lipid transport",29,2,2.42,1749,"0.71071","0.94523","0.94523" +"GO:0051127","positive regulation of actin nucleation",4,0,0.33,2813,"1.00000","0.94528","0.94528" +"GO:0007265","Ras protein signal transduction",19,0,1.59,2814,"1.00000","0.94536","0.94536" +"GO:0009452","7-methylguanosine RNA capping",4,0,0.33,2815,"1.00000","0.94573","0.94573" +"GO:0036260","RNA capping",4,0,0.33,2816,"1.00000","0.94573","0.94573" +"GO:0043604","amide biosynthetic process",200,16,16.69,1607,"0.61287","0.00013","0.94594" +"GO:0051179","localization",631,53,52.66,1439,"0.50537","0.93311","0.94599" +"GO:0008283","cell proliferation",68,5,5.67,1713,"0.68292","0.94602","0.94602" +"GO:0042035","regulation of cytokine biosynthetic proc...",3,0,0.25,2817,"1.00000","0.94603","0.94603" +"GO:0042089","cytokine biosynthetic process",3,0,0.25,2818,"1.00000","0.94603","0.94603" +"GO:0042107","cytokine metabolic process",3,0,0.25,2819,"1.00000","0.94603","0.94603" +"GO:0010972","negative regulation of G2/M transition o...",5,0,0.42,2820,"1.00000","0.94652","0.94652" +"GO:1902750","negative regulation of cell cycle G2/M p...",5,0,0.42,2821,"1.00000","0.94652","0.94652" +"GO:0006022","aminoglycan metabolic process",35,7,2.92,224,"0.02287","0.00031","0.94682" +"GO:0048332","mesoderm morphogenesis",3,0,0.25,2822,"1.00000","0.94707","0.94707" +"GO:0050848","regulation of calcium-mediated signaling",3,0,0.25,2823,"1.00000","0.94707","0.94707" +"GO:1901617","organic hydroxy compound biosynthetic pr...",17,1,1.42,1818,"0.77369","0.94710","0.94710" +"GO:0007631","feeding behavior",9,0,0.75,2824,"1.00000","0.94722","0.94722" +"GO:0006081","cellular aldehyde metabolic process",10,0,0.83,2825,"1.00000","0.94730","0.94730" +"GO:0051239","regulation of multicellular organismal p...",127,12,10.6,1162,"0.36930","0.94733","0.94733" +"GO:0042221","response to chemical",224,20,18.69,1256,"0.40855","0.79470","0.94751" +"GO:0070266","necroptotic process",3,0,0.25,2826,"1.00000","0.94771","0.94771" +"GO:0051262","protein tetramerization",5,0,0.42,2827,"1.00000","0.94792","0.94792" +"GO:0042110","T cell activation",18,1,1.5,1832,"0.79269","0.94817","0.94817" +"GO:0001504","neurotransmitter uptake",3,0,0.25,2828,"1.00000","0.94848","0.94848" +"GO:0009438","methylglyoxal metabolic process",3,0,0.25,2829,"1.00000","0.94848","0.94848" +"GO:0009657","plastid organization",3,0,0.25,2830,"1.00000","0.94848","0.94848" +"GO:0009658","chloroplast organization",3,0,0.25,2831,"1.00000","0.94848","0.94848" +"GO:0015844","monoamine transport",3,0,0.25,2832,"1.00000","0.94848","0.94848" +"GO:0015872","dopamine transport",3,0,0.25,2833,"1.00000","0.94848","0.94848" +"GO:0034763","negative regulation of transmembrane tra...",3,0,0.25,2834,"1.00000","0.94848","0.94848" +"GO:0034766","negative regulation of ion transmembrane...",3,0,0.25,2835,"1.00000","0.94848","0.94848" +"GO:0043491","protein kinase B signaling",3,0,0.25,2836,"1.00000","0.94848","0.94848" +"GO:0051341","regulation of oxidoreductase activity",3,0,0.25,2837,"1.00000","0.94848","0.94848" +"GO:0051896","regulation of protein kinase B signaling",3,0,0.25,2838,"1.00000","0.94848","0.94848" +"GO:0051937","catecholamine transport",3,0,0.25,2839,"1.00000","0.94848","0.94848" +"GO:0098754","detoxification",3,0,0.25,2840,"1.00000","0.94848","0.94848" +"GO:1903409","reactive oxygen species biosynthetic pro...",3,0,0.25,2841,"1.00000","0.94848","0.94848" +"GO:1990748","cellular detoxification",3,0,0.25,2842,"1.00000","0.94848","0.94848" +"GO:0046631","alpha-beta T cell activation",5,0,0.42,2843,"1.00000","0.94852","0.94852" +"GO:0010876","lipid localization",35,3,2.92,1546,"0.56936","0.94883","0.94883" +"GO:1901605","alpha-amino acid metabolic process",27,2,2.25,1674,"0.67250","0.94958","0.94958" +"GO:0051187","cofactor catabolic process",6,0,0.5,2844,"1.00000","0.95018","0.95018" +"GO:0051101","regulation of DNA binding",5,0,0.42,2845,"1.00000","0.95038","0.95038" +"GO:0045787","positive regulation of cell cycle",15,1,1.25,1766,"0.73033","0.95073","0.95073" +"GO:0002376","immune system process",84,7,7.01,1539,"0.56057","0.95077","0.95077" +"GO:0006595","polyamine metabolic process",5,0,0.42,2846,"1.00000","0.95087","0.95087" +"GO:0006596","polyamine biosynthetic process",5,0,0.42,2847,"1.00000","0.95087","0.95087" +"GO:0009309","amine biosynthetic process",5,0,0.42,2848,"1.00000","0.95087","0.95087" +"GO:0042401","cellular biogenic amine biosynthetic pro...",5,0,0.42,2849,"1.00000","0.95087","0.95087" +"GO:0006783","heme biosynthetic process",3,0,0.25,2850,"1.00000","0.95150","0.95150" +"GO:0042168","heme metabolic process",3,0,0.25,2851,"1.00000","0.95150","0.95150" +"GO:0022604","regulation of cell morphogenesis",12,1,1,1656,"0.64931","0.95185","0.95185" +"GO:0031344","regulation of cell projection organizati...",32,3,2.67,1454,"0.50721","0.95286","0.95286" +"GO:0120035","regulation of plasma membrane bounded ce...",32,3,2.67,1455,"0.50721","0.95286","0.95286" +"GO:0006024","glycosaminoglycan biosynthetic process",3,0,0.25,2852,"1.00000","0.95286","0.95286" +"GO:0006367","transcription initiation from RNA polyme...",13,1,1.08,1707,"0.67870","0.95313","0.95313" +"GO:0015849","organic acid transport",25,1,2.09,1867,"0.88790","0.95326","0.95326" +"GO:0046942","carboxylic acid transport",25,1,2.09,1868,"0.88790","0.95326","0.95326" +"GO:0048870","cell motility",42,3,3.51,1722,"0.69423","0.95340","0.95340" +"GO:0051674","localization of cell",42,3,3.51,1723,"0.69423","0.95340","0.95340" +"GO:0002694","regulation of leukocyte activation",16,1,1.34,1790,"0.75296","0.95383","0.95383" +"GO:0050865","regulation of cell activation",16,1,1.34,1791,"0.75296","0.95383","0.95383" +"GO:0002764","immune response-regulating signaling pat...",17,1,1.42,1819,"0.77369","0.95476","0.95476" +"GO:0010952","positive regulation of peptidase activit...",3,0,0.25,2853,"1.00000","0.95492","0.95492" +"GO:0007602","phototransduction",7,0,0.58,2854,"1.00000","0.95511","0.95511" +"GO:0097190","apoptotic signaling pathway",28,2,2.34,1719,"0.69209","0.95603","0.95603" +"GO:0000726","non-recombinational repair",3,0,0.25,2855,"1.00000","0.95635","0.95635" +"GO:0006303","double-strand break repair via nonhomolo...",3,0,0.25,2856,"1.00000","0.95635","0.95635" +"GO:0034394","protein localization to cell surface",3,0,0.25,2857,"1.00000","0.95635","0.95635" +"GO:2000008","regulation of protein localization to ce...",3,0,0.25,2858,"1.00000","0.95635","0.95635" +"GO:0044774","mitotic DNA integrity checkpoint",5,0,0.42,2859,"1.00000","0.95651","0.95651" +"GO:0051249","regulation of lymphocyte activation",15,1,1.25,1767,"0.73033","0.95667","0.95667" +"GO:0009308","amine metabolic process",15,0,1.25,2860,"1.00000","0.95746","0.95746" +"GO:0044106","cellular amine metabolic process",15,0,1.25,2861,"1.00000","0.95746","0.95746" +"GO:0050863","regulation of T cell activation",13,1,1.08,1708,"0.67870","0.95761","0.95761" +"GO:0016192","vesicle-mediated transport",142,10,11.85,1798,"0.76225","0.95768","0.95768" +"GO:0006497","protein lipidation",13,0,1.08,2862,"1.00000","0.95772","0.95772" +"GO:0042158","lipoprotein biosynthetic process",13,0,1.08,2863,"1.00000","0.95772","0.95772" +"GO:0030203","glycosaminoglycan metabolic process",4,0,0.33,2864,"1.00000","0.95813","0.95813" +"GO:0006821","chloride transport",3,0,0.25,2865,"1.00000","0.95834","0.95834" +"GO:0098662","inorganic cation transmembrane transport",56,5,4.67,1450,"0.50706","0.80312","0.95863" +"GO:0018212","peptidyl-tyrosine modification",7,0,0.58,2866,"1.00000","0.95873","0.95873" +"GO:0098542","defense response to other organism",24,1,2,1866,"0.87760","0.95877","0.95877" +"GO:0007416","synapse assembly",14,1,1.17,1741,"0.70564","0.95898","0.95898" +"GO:0032880","regulation of protein localization",49,2,4.09,1879,"0.92539","0.95919","0.95919" +"GO:1901661","quinone metabolic process",6,0,0.5,2867,"1.00000","0.95936","0.95936" +"GO:0051607","defense response to virus",4,0,0.33,2868,"1.00000","0.95972","0.95972" +"GO:1902531","regulation of intracellular signal trans...",78,6,6.51,1639,"0.64495","0.95989","0.95989" +"GO:0007098","centrosome cycle",8,1,0.67,1437,"0.50244","0.96046","0.96046" +"GO:0031023","microtubule organizing center organizati...",8,1,0.67,1438,"0.50244","0.96046","0.96046" +"GO:0098656","anion transmembrane transport",21,1,1.75,1857,"0.84068","0.96064","0.96064" +"GO:0032640","tumor necrosis factor production",3,0,0.25,2869,"1.00000","0.96074","0.96074" +"GO:0032680","regulation of tumor necrosis factor prod...",3,0,0.25,2870,"1.00000","0.96074","0.96074" +"GO:0071706","tumor necrosis factor superfamily cytoki...",3,0,0.25,2871,"1.00000","0.96074","0.96074" +"GO:1903555","regulation of tumor necrosis factor supe...",3,0,0.25,2872,"1.00000","0.96074","0.96074" +"GO:0016571","histone methylation",9,1,0.75,1523,"0.54409","0.96090","0.96090" +"GO:0019216","regulation of lipid metabolic process",13,1,1.08,1709,"0.67870","0.96113","0.96113" +"GO:0051125","regulation of actin nucleation",5,0,0.42,2873,"1.00000","0.96175","0.96175" +"GO:0009895","negative regulation of catabolic process",13,1,1.08,1710,"0.67870","0.96199","0.96199" +"GO:0031346","positive regulation of cell projection o...",13,0,1.08,2874,"1.00000","0.96236","0.96236" +"GO:0034220","ion transmembrane transport",96,8,8.01,1533,"0.55719","0.76024","0.96272" +"GO:0048878","chemical homeostasis",50,4,4.17,1606,"0.61100","0.63530","0.96343" +"GO:0006541","glutamine metabolic process",3,0,0.25,2875,"1.00000","0.96437","0.96437" +"GO:0007635","chemosensory behavior",6,0,0.5,2876,"1.00000","0.96453","0.96453" +"GO:0044818","mitotic G2/M transition checkpoint",4,0,0.33,2877,"1.00000","0.96507","0.96507" +"GO:0000724","double-strand break repair via homologou...",6,0,0.5,2878,"1.00000","0.96514","0.96514" +"GO:0000725","recombinational repair",6,0,0.5,2879,"1.00000","0.96514","0.96514" +"GO:1902532","negative regulation of intracellular sig...",33,2,2.75,1821,"0.77600","0.96593","0.96593" +"GO:0042181","ketone biosynthetic process",5,0,0.42,2880,"1.00000","0.96603","0.96603" +"GO:1901663","quinone biosynthetic process",5,0,0.42,2881,"1.00000","0.96603","0.96603" +"GO:0043009","chordate embryonic development",38,4,3.17,1186,"0.39277","0.32614","0.96669" +"GO:0042391","regulation of membrane potential",12,1,1,1657,"0.64931","0.96732","0.96732" +"GO:0050806","positive regulation of synaptic transmis...",12,1,1,1658,"0.64931","0.96732","0.96732" +"GO:0009314","response to radiation",34,3,2.84,1528,"0.54917","0.96755","0.96755" +"GO:0006814","sodium ion transport",18,1,1.5,1833,"0.79269","0.96773","0.96773" +"GO:1901606","alpha-amino acid catabolic process",13,1,1.08,1711,"0.67870","0.96774","0.96774" +"GO:0007159","leukocyte cell-cell adhesion",9,0,0.75,2882,"1.00000","0.96779","0.96779" +"GO:0048588","developmental cell growth",11,1,0.92,1627,"0.61724","0.96808","0.96808" +"GO:0050795","regulation of behavior",11,1,0.92,1628,"0.61724","0.96808","0.96808" +"GO:0002521","leukocyte differentiation",11,0,0.92,2883,"1.00000","0.96808","0.96808" +"GO:2000241","regulation of reproductive process",11,0,0.92,2884,"1.00000","0.96808","0.96808" +"GO:0006029","proteoglycan metabolic process",3,0,0.25,2885,"1.00000","0.96844","0.96844" +"GO:0030166","proteoglycan biosynthetic process",3,0,0.25,2886,"1.00000","0.96844","0.96844" +"GO:0006558","L-phenylalanine metabolic process",3,0,0.25,2887,"1.00000","0.96854","0.96854" +"GO:1902221","erythrose 4-phosphate/phosphoenolpyruvat...",3,0,0.25,2888,"1.00000","0.96854","0.96854" +"GO:1901700","response to oxygen-containing compound",67,7,5.59,1027,"0.32438","0.75261","0.96868" +"GO:0042048","olfactory behavior",5,0,0.42,2889,"1.00000","0.96921","0.96921" +"GO:0042492","gamma-delta T cell differentiation",3,0,0.25,2890,"1.00000","0.96985","0.96985" +"GO:0045586","regulation of gamma-delta T cell differe...",3,0,0.25,2891,"1.00000","0.96985","0.96985" +"GO:0046629","gamma-delta T cell activation",3,0,0.25,2892,"1.00000","0.96985","0.96985" +"GO:0046643","regulation of gamma-delta T cell activat...",3,0,0.25,2893,"1.00000","0.96985","0.96985" +"GO:1903825","organic acid transmembrane transport",16,1,1.34,1792,"0.75296","0.96993","0.96993" +"GO:1905039","carboxylic acid transmembrane transport",16,1,1.34,1793,"0.75296","0.96993","0.96993" +"GO:0006265","DNA topological change",3,0,0.25,2894,"1.00000","0.96995","0.96995" +"GO:0032479","regulation of type I interferon producti...",3,0,0.25,2895,"1.00000","0.96995","0.96995" +"GO:0032606","type I interferon production",3,0,0.25,2896,"1.00000","0.96995","0.96995" +"GO:0043388","positive regulation of DNA binding",3,0,0.25,2897,"1.00000","0.96995","0.96995" +"GO:2001235","positive regulation of apoptotic signali...",10,0,0.83,2898,"1.00000","0.97009","0.97009" +"GO:0046662","regulation of oviposition",5,0,0.42,2899,"1.00000","0.97021","0.97021" +"GO:0018108","peptidyl-tyrosine phosphorylation",5,0,0.42,2900,"1.00000","0.97036","0.97036" +"GO:1990138","neuron projection extension",5,0,0.42,2901,"1.00000","0.97036","0.97036" +"GO:0030098","lymphocyte differentiation",10,0,0.83,2902,"1.00000","0.97095","0.97095" +"GO:0098660","inorganic ion transmembrane transport",58,5,4.84,1482,"0.53919","0.82167","0.97113" +"GO:0046165","alcohol biosynthetic process",12,0,1,2903,"1.00000","0.97133","0.97133" +"GO:0006576","cellular biogenic amine metabolic proces...",10,0,0.83,2904,"1.00000","0.97148","0.97148" +"GO:0006743","ubiquinone metabolic process",4,0,0.33,2905,"1.00000","0.97274","0.97274" +"GO:0006744","ubiquinone biosynthetic process",4,0,0.33,2906,"1.00000","0.97274","0.97274" +"GO:0000731","DNA synthesis involved in DNA repair",3,0,0.25,2907,"1.00000","0.97285","0.97285" +"GO:0019985","translesion synthesis",3,0,0.25,2908,"1.00000","0.97285","0.97285" +"GO:0009063","cellular amino acid catabolic process",14,1,1.17,1742,"0.70564","0.97365","0.97365" +"GO:0015893","drug transport",14,0,1.17,2909,"1.00000","0.97365","0.97365" +"GO:0007095","mitotic G2 DNA damage checkpoint",3,0,0.25,2910,"1.00000","0.97370","0.97370" +"GO:0031572","G2 DNA damage checkpoint",3,0,0.25,2911,"1.00000","0.97370","0.97370" +"GO:0044773","mitotic DNA damage checkpoint",3,0,0.25,2912,"1.00000","0.97370","0.97370" +"GO:0002687","positive regulation of leukocyte migrati...",3,0,0.25,2913,"1.00000","0.97407","0.97407" +"GO:0097529","myeloid leukocyte migration",3,0,0.25,2914,"1.00000","0.97407","0.97407" +"GO:0031058","positive regulation of histone modificat...",6,0,0.5,2915,"1.00000","0.97452","0.97452" +"GO:1905269","positive regulation of chromatin organiz...",6,0,0.5,2916,"1.00000","0.97452","0.97452" +"GO:0043171","peptide catabolic process",3,0,0.25,2917,"1.00000","0.97480","0.97480" +"GO:0044273","sulfur compound catabolic process",3,0,0.25,2918,"1.00000","0.97480","0.97480" +"GO:1905268","negative regulation of chromatin organiz...",6,0,0.5,2919,"1.00000","0.97504","0.97504" +"GO:0008355","olfactory learning",4,0,0.33,2920,"1.00000","0.97530","0.97530" +"GO:0006865","amino acid transport",13,0,1.08,2921,"1.00000","0.97552","0.97552" +"GO:0030516","regulation of axon extension",4,0,0.33,2922,"1.00000","0.97623","0.97623" +"GO:0048675","axon extension",4,0,0.33,2923,"1.00000","0.97623","0.97623" +"GO:0050730","regulation of peptidyl-tyrosine phosphor...",4,0,0.33,2924,"1.00000","0.97623","0.97623" +"GO:0006898","receptor-mediated endocytosis",8,0,0.67,2925,"1.00000","0.97671","0.97671" +"GO:0022409","positive regulation of cell-cell adhesio...",8,0,0.67,2926,"1.00000","0.97671","0.97671" +"GO:0030217","T cell differentiation",8,0,0.67,2927,"1.00000","0.97671","0.97671" +"GO:0032103","positive regulation of response to exter...",8,0,0.67,2928,"1.00000","0.97671","0.97671" +"GO:1903037","regulation of leukocyte cell-cell adhesi...",8,0,0.67,2929,"1.00000","0.97671","0.97671" +"GO:0048513","animal organ development",196,15,16.36,1712,"0.68171","0.86474","0.97681" +"GO:0051604","protein maturation",20,5,1.67,223,"0.02123","0.06861","0.97694" +"GO:0003333","amino acid transmembrane transport",12,0,1,2930,"1.00000","0.97739","0.97739" +"GO:0010824","regulation of centrosome duplication",3,0,0.25,2931,"1.00000","0.97755","0.97755" +"GO:0046605","regulation of centrosome cycle",3,0,0.25,2932,"1.00000","0.97755","0.97755" +"GO:0016042","lipid catabolic process",14,1,1.17,1743,"0.70564","0.97796","0.97796" +"GO:0051899","membrane depolarization",3,0,0.25,2933,"1.00000","0.97798","0.97798" +"GO:0006885","regulation of pH",6,0,0.5,2934,"1.00000","0.97851","0.97851" +"GO:0055067","monovalent inorganic cation homeostasis",6,0,0.5,2935,"1.00000","0.97851","0.97851" +"GO:2000983","regulation of ATP citrate synthase activ...",3,0,0.25,2936,"1.00000","0.98063","0.98063" +"GO:2000984","negative regulation of ATP citrate synth...",3,0,0.25,2937,"1.00000","0.98063","0.98063" +"GO:0002429","immune response-activating cell surface ...",9,0,0.75,2938,"1.00000","0.98072","0.98072" +"GO:0010975","regulation of neuron projection developm...",21,2,1.75,1475,"0.53366","0.98196","0.98196" +"GO:0045806","negative regulation of endocytosis",3,0,0.25,2939,"1.00000","0.98212","0.98212" +"GO:0050731","positive regulation of peptidyl-tyrosine...",3,0,0.25,2940,"1.00000","0.98212","0.98212" +"GO:0060259","regulation of feeding behavior",3,0,0.25,2941,"1.00000","0.98212","0.98212" +"GO:0002696","positive regulation of leukocyte activat...",6,0,0.5,2942,"1.00000","0.98249","0.98249" +"GO:0018991","oviposition",6,0,0.5,2943,"1.00000","0.98249","0.98249" +"GO:0045619","regulation of lymphocyte differentiation",6,0,0.5,2944,"1.00000","0.98249","0.98249" +"GO:0050867","positive regulation of cell activation",6,0,0.5,2945,"1.00000","0.98249","0.98249" +"GO:0051251","positive regulation of lymphocyte activa...",6,0,0.5,2946,"1.00000","0.98249","0.98249" +"GO:0120034","positive regulation of plasma membrane b...",6,0,0.5,2947,"1.00000","0.98249","0.98249" +"GO:1902105","regulation of leukocyte differentiation",6,0,0.5,2948,"1.00000","0.98249","0.98249" +"GO:0015697","quaternary ammonium group transport",3,0,0.25,2949,"1.00000","0.98258","0.98258" +"GO:0006812","cation transport",117,10,9.76,1460,"0.51843","0.84007","0.98380" +"GO:0044282","small molecule catabolic process",27,1,2.25,1875,"0.90599","0.98401","0.98401" +"GO:0006796","phosphate-containing compound metabolic ...",333,25,27.79,1773,"0.75263","0.85182","0.98456" +"GO:0006855","drug transmembrane transport",8,0,0.67,2950,"1.00000","0.98489","0.98489" +"GO:0045580","regulation of T cell differentiation",5,0,0.42,2951,"1.00000","0.98539","0.98539" +"GO:0050870","positive regulation of T cell activation",5,0,0.42,2952,"1.00000","0.98539","0.98539" +"GO:1903039","positive regulation of leukocyte cell-ce...",5,0,0.42,2953,"1.00000","0.98539","0.98539" +"GO:0006575","cellular modified amino acid metabolic p...",11,0,0.92,2954,"1.00000","0.98582","0.98582" +"GO:1901136","carbohydrate derivative catabolic proces...",7,0,0.58,2955,"1.00000","0.98584","0.98584" +"GO:0006835","dicarboxylic acid transport",7,0,0.58,2956,"1.00000","0.98677","0.98677" +"GO:0015807","L-amino acid transport",7,0,0.58,2957,"1.00000","0.98677","0.98677" +"GO:1902475","L-alpha-amino acid transmembrane transpo...",7,0,0.58,2958,"1.00000","0.98677","0.98677" +"GO:0033260","nuclear DNA replication",4,0,0.33,2959,"1.00000","0.98696","0.98696" +"GO:0044786","cell cycle DNA replication",4,0,0.33,2960,"1.00000","0.98696","0.98696" +"GO:0050852","T cell receptor signaling pathway",6,0,0.5,2961,"1.00000","0.98712","0.98712" +"GO:0050804","modulation of chemical synaptic transmis...",15,1,1.25,1768,"0.73033","0.98745","0.98745" +"GO:0099177","regulation of trans-synaptic signaling",15,1,1.25,1769,"0.73033","0.98745","0.98745" +"GO:2000045","regulation of G1/S transition of mitotic...",3,0,0.25,2962,"1.00000","0.98758","0.98758" +"GO:0016054","organic acid catabolic process",20,1,1.67,1849,"0.82606","0.98816","0.98816" +"GO:0046395","carboxylic acid catabolic process",20,1,1.67,1850,"0.82606","0.98816","0.98816" +"GO:0001764","neuron migration",4,0,0.33,2963,"1.00000","0.98830","0.98830" +"GO:0002685","regulation of leukocyte migration",4,0,0.33,2964,"1.00000","0.98830","0.98830" +"GO:0006911","phagocytosis, engulfment",4,0,0.33,2965,"1.00000","0.98830","0.98830" +"GO:0010324","membrane invagination",4,0,0.33,2966,"1.00000","0.98830","0.98830" +"GO:0030183","B cell differentiation",4,0,0.33,2967,"1.00000","0.98830","0.98830" +"GO:0032515","negative regulation of phosphoprotein ph...",4,0,0.33,2968,"1.00000","0.98830","0.98830" +"GO:0035308","negative regulation of protein dephospho...",4,0,0.33,2969,"1.00000","0.98830","0.98830" +"GO:0042113","B cell activation",4,0,0.33,2970,"1.00000","0.98830","0.98830" +"GO:0043666","regulation of phosphoprotein phosphatase...",4,0,0.33,2971,"1.00000","0.98830","0.98830" +"GO:0046632","alpha-beta T cell differentiation",4,0,0.33,2972,"1.00000","0.98830","0.98830" +"GO:0048259","regulation of receptor-mediated endocyto...",4,0,0.33,2973,"1.00000","0.98830","0.98830" +"GO:0050900","leukocyte migration",4,0,0.33,2974,"1.00000","0.98830","0.98830" +"GO:0060326","cell chemotaxis",4,0,0.33,2975,"1.00000","0.98830","0.98830" +"GO:0099024","plasma membrane invagination",4,0,0.33,2976,"1.00000","0.98830","0.98830" +"GO:0140253","cell-cell fusion",4,0,0.33,2977,"1.00000","0.98830","0.98830" +"GO:2000243","positive regulation of reproductive proc...",4,0,0.33,2978,"1.00000","0.98830","0.98830" +"GO:0021692","cerebellar Purkinje cell layer morphogen...",3,0,0.25,2979,"1.00000","0.98847","0.98847" +"GO:0021696","cerebellar cortex morphogenesis",3,0,0.25,2980,"1.00000","0.98847","0.98847" +"GO:0072329","monocarboxylic acid catabolic process",6,0,0.5,2981,"1.00000","0.98848","0.98848" +"GO:0030952","establishment or maintenance of cytoskel...",3,0,0.25,2982,"1.00000","0.98884","0.98884" +"GO:1902808","positive regulation of cell cycle G1/S p...",3,0,0.25,2983,"1.00000","0.98915","0.98915" +"GO:0007275","multicellular organism development",323,29,26.96,1157,"0.36291","0.79672","0.98929" +"GO:0048589","developmental growth",47,4,3.92,1541,"0.56071","0.98930","0.98930" +"GO:0031297","replication fork processing",3,0,0.25,2984,"1.00000","0.99021","0.99021" +"GO:0043954","cellular component maintenance",3,0,0.25,2985,"1.00000","0.99021","0.99021" +"GO:0045005","DNA-dependent DNA replication maintenanc...",3,0,0.25,2986,"1.00000","0.99021","0.99021" +"GO:1902969","mitotic DNA replication",3,0,0.25,2987,"1.00000","0.99021","0.99021" +"GO:0006275","regulation of DNA replication",5,0,0.42,2988,"1.00000","0.99032","0.99032" +"GO:0006695","cholesterol biosynthetic process",4,0,0.33,2989,"1.00000","0.99038","0.99038" +"GO:0008203","cholesterol metabolic process",4,0,0.33,2990,"1.00000","0.99038","0.99038" +"GO:0000768","syncytium formation by plasma membrane f...",3,0,0.25,2991,"1.00000","0.99122","0.99122" +"GO:0006949","syncytium formation",3,0,0.25,2992,"1.00000","0.99122","0.99122" +"GO:0007520","myoblast fusion",3,0,0.25,2993,"1.00000","0.99122","0.99122" +"GO:0032946","positive regulation of mononuclear cell ...",3,0,0.25,2994,"1.00000","0.99122","0.99122" +"GO:0045582","positive regulation of T cell differenti...",3,0,0.25,2995,"1.00000","0.99122","0.99122" +"GO:0045621","positive regulation of lymphocyte differ...",3,0,0.25,2996,"1.00000","0.99122","0.99122" +"GO:0050671","positive regulation of lymphocyte prolif...",3,0,0.25,2997,"1.00000","0.99122","0.99122" +"GO:0050920","regulation of chemotaxis",3,0,0.25,2998,"1.00000","0.99122","0.99122" +"GO:0060099","regulation of phagocytosis, engulfment",3,0,0.25,2999,"1.00000","0.99122","0.99122" +"GO:0070665","positive regulation of leukocyte prolife...",3,0,0.25,3000,"1.00000","0.99122","0.99122" +"GO:1902107","positive regulation of leukocyte differe...",3,0,0.25,3001,"1.00000","0.99122","0.99122" +"GO:1902473","regulation of protein localization to sy...",3,0,0.25,3002,"1.00000","0.99122","0.99122" +"GO:1902474","positive regulation of protein localizat...",3,0,0.25,3003,"1.00000","0.99122","0.99122" +"GO:1905153","regulation of membrane invagination",3,0,0.25,3004,"1.00000","0.99122","0.99122" +"GO:0009435","NAD biosynthetic process",3,0,0.25,3005,"1.00000","0.99138","0.99138" +"GO:0015813","L-glutamate transmembrane transport",3,0,0.25,3006,"1.00000","0.99175","0.99175" +"GO:0015800","acidic amino acid transport",4,0,0.33,3007,"1.00000","0.99243","0.99243" +"GO:0006259","DNA metabolic process",97,4,8.09,1885,"0.96810","0.99258","0.99258" +"GO:0031056","regulation of histone modification",7,0,0.58,3008,"1.00000","0.99291","0.99291" +"GO:0007338","single fertilization",4,0,0.33,3009,"1.00000","0.99294","0.99294" +"GO:0060560","developmental growth involved in morphog...",12,1,1,1659,"0.64931","0.99348","0.99348" +"GO:0006749","glutathione metabolic process",5,0,0.42,3010,"1.00000","0.99354","0.99354" +"GO:0006470","protein dephosphorylation",26,0,2.17,3011,"1.00000","0.99355","0.99355" +"GO:0048856","anatomical structure development",351,31,29.29,1187,"0.39382","0.89063","0.99359" +"GO:0052547","regulation of peptidase activity",12,1,1,1660,"0.64931","0.99385","0.99385" +"GO:0006974","cellular response to DNA damage stimulus",80,2,6.68,1890,"0.99281","0.99391","0.99391" +"GO:1902108","regulation of mitochondrial membrane per...",3,0,0.25,3012,"1.00000","0.99528","0.99528" +"GO:0006281","DNA repair",54,1,4.51,1889,"0.99137","0.99593","0.99593" +"GO:0070897","transcription preinitiation complex asse...",5,0,0.42,3013,"1.00000","0.99626","0.99626" +"GO:0009620","response to fungus",4,0,0.33,3014,"1.00000","0.99667","0.99667" +"GO:0006811","ion transport",174,12,14.52,1834,"0.80129","0.98875","0.99698" +"GO:0008625","extrinsic apoptotic signaling pathway vi...",5,0,0.42,3015,"1.00000","0.99728","0.99728" +"GO:0021575","hindbrain morphogenesis",5,0,0.42,3016,"1.00000","0.99728","0.99728" +"GO:0021587","cerebellum morphogenesis",5,0,0.42,3017,"1.00000","0.99728","0.99728" +"GO:0021680","cerebellar Purkinje cell layer developme...",5,0,0.42,3018,"1.00000","0.99728","0.99728" +"GO:0021695","cerebellar cortex development",5,0,0.42,3019,"1.00000","0.99728","0.99728" +"GO:0051181","cofactor transport",6,0,0.5,3020,"1.00000","0.99753","0.99753" +"GO:0051054","positive regulation of DNA metabolic pro...",9,0,0.75,3021,"1.00000","0.99776","0.99776" +"GO:0002931","response to ischemia",4,0,0.33,3022,"1.00000","0.99783","0.99783" +"GO:0000266","mitochondrial fission",5,0,0.42,3023,"1.00000","0.99795","0.99795" +"GO:0032873","negative regulation of stress-activated ...",3,0,0.25,3024,"1.00000","0.99830","0.99830" +"GO:0046329","negative regulation of JNK cascade",3,0,0.25,3025,"1.00000","0.99830","0.99830" +"GO:0070303","negative regulation of stress-activated ...",3,0,0.25,3026,"1.00000","0.99830","0.99830" +"GO:0034103","regulation of tissue remodeling",3,0,0.25,3027,"1.00000","0.99837","0.99837" +"GO:0050832","defense response to fungus",3,0,0.25,3028,"1.00000","0.99837","0.99837" +"GO:1902041","regulation of extrinsic apoptotic signal...",3,0,0.25,3029,"1.00000","0.99837","0.99837" +"GO:1902042","negative regulation of extrinsic apoptot...",3,0,0.25,3030,"1.00000","0.99837","0.99837" +"GO:0016311","dephosphorylation",37,1,3.09,1883,"0.96108","0.99851","0.99851" +"GO:0043043","peptide biosynthetic process",193,16,16.11,1530,"0.55236","4.6e-05","0.99859" +"GO:0007204","positive regulation of cytosolic calcium...",5,0,0.42,3031,"1.00000","0.99860","0.99860" +"GO:0051480","regulation of cytosolic calcium ion conc...",5,0,0.42,3032,"1.00000","0.99860","0.99860" +"GO:0060401","cytosolic calcium ion transport",5,0,0.42,3033,"1.00000","0.99860","0.99860" +"GO:0006310","DNA recombination",17,0,1.42,3034,"1.00000","0.99873","0.99873" +"GO:0015748","organophosphate ester transport",3,0,0.25,3035,"1.00000","0.99877","0.99877" +"GO:0051881","regulation of mitochondrial membrane pot...",3,0,0.25,3036,"1.00000","0.99877","0.99877" +"GO:2001244","positive regulation of intrinsic apoptot...",3,0,0.25,3037,"1.00000","0.99877","0.99877" +"GO:0002768","immune response-regulating cell surface ...",10,0,0.83,3038,"1.00000","0.99884","0.99884" +"GO:0060402","calcium ion transport into cytosol",4,0,0.33,3039,"1.00000","0.99888","0.99888" +"GO:0051052","regulation of DNA metabolic process",15,0,1.25,3040,"1.00000","0.99888","0.99888" +"GO:0019233","sensory perception of pain",5,0,0.42,3041,"1.00000","0.99909","0.99909" +"GO:1902275","regulation of chromatin organization",12,0,1,3042,"1.00000","0.99911","0.99911" +"GO:2001020","regulation of response to DNA damage sti...",12,0,1,3043,"1.00000","0.99911","0.99911" +"GO:0006302","double-strand break repair",11,0,0.92,3044,"1.00000","0.99918","0.99918" +"GO:0045931","positive regulation of mitotic cell cycl...",11,0,0.92,3045,"1.00000","0.99918","0.99918" +"GO:0050851","antigen receptor-mediated signaling path...",7,0,0.58,3046,"1.00000","0.99948","0.99948" +"GO:0006301","postreplication repair",6,0,0.5,3047,"1.00000","0.99955","0.99955" +"GO:0001824","blastocyst development",3,0,0.25,3048,"1.00000","0.99956","0.99956" +"GO:0051438","regulation of ubiquitin-protein transfer...",5,0,0.42,3049,"1.00000","0.99963","0.99963" +"GO:2001022","positive regulation of response to DNA d...",5,0,0.42,3050,"1.00000","0.99963","0.99963" +"GO:0015696","ammonium transport",9,0,0.75,3051,"1.00000","0.99967","0.99967" +"GO:0044091","membrane biogenesis",7,0,0.58,3052,"1.00000","0.99969","0.99969" +"GO:0006282","regulation of DNA repair",4,0,0.33,3053,"1.00000","0.99970","0.99970" +"GO:0002831","regulation of response to biotic stimulu...",7,0,0.58,3054,"1.00000","0.99974","0.99974" +"GO:0051443","positive regulation of ubiquitin-protein...",3,0,0.25,3055,"1.00000","0.99978","0.99978" +"GO:0015695","organic cation transport",4,0,0.33,3056,"1.00000","0.99985","0.99985" +"GO:0051668","localization within membrane",8,0,0.67,3057,"1.00000","0.99987","0.99987" +"GO:0019218","regulation of steroid metabolic process",3,0,0.25,3058,"1.00000","0.99989","0.99989" +"GO:0045540","regulation of cholesterol biosynthetic p...",3,0,0.25,3059,"1.00000","0.99989","0.99989" +"GO:0050810","regulation of steroid biosynthetic proce...",3,0,0.25,3060,"1.00000","0.99989","0.99989" +"GO:0090181","regulation of cholesterol metabolic proc...",3,0,0.25,3061,"1.00000","0.99989","0.99989" +"GO:0106118","regulation of sterol biosynthetic proces...",3,0,0.25,3062,"1.00000","0.99989","0.99989" +"GO:1902930","regulation of alcohol biosynthetic proce...",3,0,0.25,3063,"1.00000","0.99989","0.99989" +"GO:0071709","membrane assembly",6,0,0.5,3064,"1.00000","0.99990","0.99990" +"GO:0001941","postsynaptic membrane organization",5,0,0.42,3065,"1.00000","0.99992","0.99992" +"GO:0099172","presynapse organization",5,0,0.42,3066,"1.00000","0.99992","0.99992" +"GO:0098693","regulation of synaptic vesicle cycle",4,0,0.33,3067,"1.00000","0.99993","0.99993" +"GO:0099054","presynapse assembly",4,0,0.33,3068,"1.00000","0.99993","0.99993" +"GO:0006793","phosphorus metabolic process",338,26,28.21,1744,"0.70972","0.85269","0.99994" +"GO:0008150","biological_process",2792,233,233,3069,"1.00000","1.00000","1.00000" +"GO:0015985","energy coupled proton transport, down el...",13,3,1.08,444,"0.08786","0.00047","1.00000" diff --git a/GO_enrichment_output/contrast_phoretic_phoreticCaged_downregulated.csv b/GO_enrichment_output/contrast_phoretic_phoreticCaged_downregulated.csv index 61b796e..18d25fa 100644 --- a/GO_enrichment_output/contrast_phoretic_phoreticCaged_downregulated.csv +++ b/GO_enrichment_output/contrast_phoretic_phoreticCaged_downregulated.csv @@ -1,6 +1,1178 @@ "GO.ID","Term","Annotated","Significant","Expected","Rank in classicFisher","classicFisher","classicKS","elimKS" -"GO:0009408","response to heat",32,6,1.92,32,"0.01033","4.5e-05","4.5e-05" -"GO:0006457","protein folding",60,8,3.59,78,"0.02461","0.00012","0.00012" +"GO:0009408","response to heat",32,6,1.92,17,"0.01033","4.5e-05","4.5e-05" +"GO:0006457","protein folding",60,8,3.59,49,"0.02461","0.00012","0.00012" "GO:0006030","chitin metabolic process",32,8,1.92,1,"0.00042","0.00051","0.00051" -"GO:0006979","response to oxidative stress",45,6,2.69,153,"0.04903","0.00202","0.00202" -"GO:0006412","translation",180,11,10.78,1134,"0.51933","0.00253","0.00253" +"GO:0006979","response to oxidative stress",45,6,2.69,100,"0.04903","0.00202","0.00202" +"GO:0006412","translation",180,11,10.78,607,"0.51933","0.00253","0.00253" +"GO:0045089","positive regulation of innate immune res...",13,3,0.78,74,"0.03862","0.00351","0.00351" +"GO:0002684","positive regulation of immune system pro...",34,7,2.04,8,"0.00328","0.00042","0.00449" +"GO:0007568","aging",23,6,1.38,6,"0.00180","0.00619","0.00619" +"GO:0007088","regulation of mitotic nuclear division",11,2,0.66,221,"0.13743","0.00741","0.00741" +"GO:0030163","protein catabolic process",106,11,6.35,106,"0.04917","0.00783","0.00783" +"GO:0042254","ribosome biogenesis",59,2,3.53,904,"0.87833","0.00852","0.00852" +"GO:0048524","positive regulation of viral process",12,2,0.72,263,"0.15870","0.00942","0.00942" +"GO:0010035","response to inorganic substance",29,6,1.74,11,"0.00628","0.00955","0.00955" +"GO:0035966","response to topologically incorrect prot...",23,4,1.38,90,"0.04487","0.01185","0.01185" +"GO:0035821","modification of morphology or physiology...",10,2,0.6,176,"0.11686","0.01280","0.01280" +"GO:0051817","modification of morphology or physiology...",10,2,0.6,177,"0.11686","0.01280","0.01280" +"GO:0034605","cellular response to heat",14,3,0.84,93,"0.04705","0.01483","0.01483" +"GO:0097305","response to alcohol",20,4,1.2,54,"0.02820","0.01611","0.01611" +"GO:0046686","response to cadmium ion",12,3,0.72,58,"0.03104","0.01717","0.01717" +"GO:0042026","protein refolding",14,4,0.84,14,"0.00771","0.01755","0.01755" +"GO:0051052","regulation of DNA metabolic process",18,3,1.08,146,"0.08867","0.01895","0.01895" +"GO:0019079","viral genome replication",10,2,0.6,178,"0.11686","0.01913","0.01913" +"GO:0045069","regulation of viral genome replication",10,2,0.6,179,"0.11686","0.01913","0.01913" +"GO:1903332","regulation of protein folding",10,3,0.6,25,"0.01849","0.01913","0.01913" +"GO:1903902","positive regulation of viral life cycle",10,2,0.6,180,"0.11686","0.01913","0.01913" +"GO:0044257","cellular protein catabolic process",84,9,5.03,119,"0.06077","0.02102","0.02102" +"GO:0051603","proteolysis involved in cellular protein...",84,9,5.03,120,"0.06077","0.02102","0.02102" +"GO:0097237","cellular response to toxic substance",14,3,0.84,94,"0.04705","0.02343","0.02343" +"GO:0010038","response to metal ion",24,5,1.44,20,"0.01211","0.02411","0.02411" +"GO:0031349","positive regulation of defense response",18,3,1.08,147,"0.08867","0.00259","0.02431" +"GO:0031396","regulation of protein ubiquitination",22,2,1.32,486,"0.38304","0.02433","0.02433" +"GO:1903320","regulation of protein modification by sm...",22,2,1.32,487,"0.38304","0.02433","0.02433" +"GO:0032101","regulation of response to external stimu...",14,0,0.84,955,"1.00000","0.02444","0.02444" +"GO:0046677","response to antibiotic",20,4,1.2,55,"0.02820","0.02633","0.02633" +"GO:0009791","post-embryonic development",23,1,1.38,836,"0.75978","0.02648","0.02648" +"GO:0043161","proteasome-mediated ubiquitin-dependent ...",35,5,2.1,110,"0.05460","0.03073","0.03073" +"GO:0046488","phosphatidylinositol metabolic process",20,4,1.2,56,"0.02820","0.03172","0.03172" +"GO:0014823","response to activity",11,3,0.66,40,"0.02433","0.03172","0.03172" +"GO:0071241","cellular response to inorganic substance",11,3,0.66,41,"0.02433","0.03172","0.03172" +"GO:1902904","negative regulation of supramolecular fi...",11,3,0.66,42,"0.02433","0.03172","0.03172" +"GO:0006508","proteolysis",196,15,11.73,301,"0.19024","0.03199","0.03199" +"GO:0019058","viral life cycle",15,2,0.9,327,"0.22532","0.03246","0.03246" +"GO:0006644","phospholipid metabolic process",49,8,2.93,13,"0.00758","0.03381","0.03381" +"GO:0006364","rRNA processing",33,2,1.98,697,"0.59728","0.03418","0.03418" +"GO:0031347","regulation of defense response",23,3,1.38,256,"0.15546","0.01387","0.03473" +"GO:1901654","response to ketone",17,3,1.02,139,"0.07715","0.03688","0.03688" +"GO:0048285","organelle fission",35,4,2.1,251,"0.15382","0.00141","0.03724" +"GO:0010941","regulation of cell death",72,6,4.31,369,"0.25961","0.04005","0.04005" +"GO:0043462","regulation of ATPase activity",11,4,0.66,7,"0.00293","0.04096","0.04096" +"GO:0016072","rRNA metabolic process",34,2,2.04,720,"0.61379","0.04605","0.04605" +"GO:0051085","chaperone cofactor-dependent protein ref...",10,3,0.6,26,"0.01849","0.04730","0.04730" +"GO:0071236","cellular response to antibiotic",13,3,0.78,75,"0.03862","0.05082","0.05082" +"GO:0044770","cell cycle phase transition",34,3,2.04,446,"0.33311","0.05188","0.05188" +"GO:0099003","vesicle-mediated transport in synapse",12,3,0.72,59,"0.03104","0.05237","0.05237" +"GO:0062012","regulation of small molecule metabolic p...",14,3,0.84,95,"0.04705","0.05375","0.05375" +"GO:0061077","chaperone-mediated protein folding",18,4,1.08,33,"0.01955","0.05405","0.05405" +"GO:0045862","positive regulation of proteolysis",19,3,1.14,156,"0.10087","0.05475","0.05475" +"GO:0016051","carbohydrate biosynthetic process",12,1,0.72,609,"0.52406","0.05578","0.05578" +"GO:0042273","ribosomal large subunit biogenesis",12,1,0.72,610,"0.52406","0.05714","0.05714" +"GO:0008219","cell death",89,6,5.33,529,"0.44402","0.05716","0.05716" +"GO:0090068","positive regulation of cell cycle proces...",10,2,0.6,181,"0.11686","0.05749","0.05749" +"GO:0070301","cellular response to hydrogen peroxide",11,3,0.66,43,"0.02433","0.05831","0.05831" +"GO:0048469","cell maturation",16,2,0.96,355,"0.24803","0.05939","0.05939" +"GO:0050778","positive regulation of immune response",28,6,1.68,9,"0.00524","0.00376","0.05956" +"GO:0007034","vacuolar transport",24,3,1.44,282,"0.17032","0.06158","0.06158" +"GO:2001024","negative regulation of response to drug",10,3,0.6,27,"0.01849","0.06322","0.06322" +"GO:0001822","kidney development",16,4,0.96,21,"0.01277","0.06335","0.06335" +"GO:0022618","ribonucleoprotein complex assembly",29,1,1.74,883,"0.83477","0.06517","0.06517" +"GO:0071826","ribonucleoprotein complex subunit organi...",29,1,1.74,884,"0.83477","0.06517","0.06517" +"GO:0022613","ribonucleoprotein complex biogenesis",78,2,4.67,941,"0.95394","0.00111","0.06631" +"GO:0015718","monocarboxylic acid transport",10,1,0.6,544,"0.46123","0.06695","0.06695" +"GO:0048583","regulation of response to stimulus",180,16,10.78,130,"0.06756","0.08675","0.06705" +"GO:0043624","cellular protein complex disassembly",23,5,1.38,16,"0.01007","0.06742","0.06742" +"GO:0007006","mitochondrial membrane organization",11,1,0.66,581,"0.49361","0.06767","0.06767" +"GO:0031398","positive regulation of protein ubiquitin...",15,2,0.9,328,"0.22532","0.06893","0.06893" +"GO:1903322","positive regulation of protein modificat...",15,2,0.9,329,"0.22532","0.06893","0.06893" +"GO:0010498","proteasomal protein catabolic process",41,6,2.45,67,"0.03290","0.06923","0.06923" +"GO:0030162","regulation of proteolysis",34,3,2.04,447,"0.33311","0.06993","0.06993" +"GO:0051347","positive regulation of transferase activ...",17,2,1.02,383,"0.27081","0.07090","0.07090" +"GO:0003006","developmental process involved in reprod...",62,7,3.71,137,"0.07413","0.07120","0.07120" +"GO:2001023","regulation of response to drug",13,3,0.78,76,"0.03862","0.07238","0.07238" +"GO:0006511","ubiquitin-dependent protein catabolic pr...",73,8,4.37,127,"0.06728","0.07243","0.07243" +"GO:0019941","modification-dependent protein catabolic...",73,8,4.37,128,"0.06728","0.07243","0.07243" +"GO:0043632","modification-dependent macromolecule cat...",73,8,4.37,129,"0.06728","0.07243","0.07243" +"GO:0045935","positive regulation of nucleobase-contai...",72,6,4.31,370,"0.25961","0.07336","0.07336" +"GO:0032446","protein modification by small protein co...",69,5,4.13,497,"0.39765","0.07484","0.07484" +"GO:0000082","G1/S transition of mitotic cell cycle",12,2,0.72,264,"0.15870","0.07561","0.07561" +"GO:1903900","regulation of viral life cycle",12,2,0.72,265,"0.15870","0.07561","0.07561" +"GO:1900408","negative regulation of cellular response...",13,3,0.78,77,"0.03862","0.07565","0.07565" +"GO:1902883","negative regulation of response to oxida...",13,3,0.78,78,"0.03862","0.07565","0.07565" +"GO:0006986","response to unfolded protein",18,4,1.08,34,"0.01955","0.07934","0.07934" +"GO:0097193","intrinsic apoptotic signaling pathway",15,1,0.9,707,"0.60490","0.07937","0.07937" +"GO:0042594","response to starvation",19,2,1.14,429,"0.31625","0.07944","0.07944" +"GO:0051261","protein depolymerization",13,3,0.78,79,"0.03862","0.07949","0.07949" +"GO:0006518","peptide metabolic process",200,14,11.97,426,"0.30741","0.00146","0.07955" +"GO:0034504","protein localization to nucleus",25,3,1.5,297,"0.18557","0.07955","0.07955" +"GO:0045787","positive regulation of cell cycle",13,2,0.78,290,"0.18054","0.07984","0.07984" +"GO:0006952","defense response",51,3,3.05,701,"0.59805","0.03256","0.08261" +"GO:0048545","response to steroid hormone",34,5,2.04,101,"0.04907","0.08347","0.08347" +"GO:0007041","lysosomal transport",11,3,0.66,44,"0.02433","0.08363","0.08363" +"GO:0043067","regulation of programmed cell death",60,5,3.59,405,"0.28846","0.08448","0.08448" +"GO:0048585","negative regulation of response to stimu...",69,6,4.13,347,"0.22913","0.08505","0.08505" +"GO:0048477","oogenesis",21,3,1.26,206,"0.12709","0.08546","0.08546" +"GO:0071248","cellular response to metal ion",10,3,0.6,28,"0.01849","0.08578","0.08578" +"GO:0099504","synaptic vesicle cycle",10,2,0.6,182,"0.11686","0.08578","0.08578" +"GO:1901031","regulation of response to reactive oxyge...",10,3,0.6,29,"0.01849","0.08578","0.08578" +"GO:0035690","cellular response to drug",14,3,0.84,96,"0.04705","0.08816","0.08816" +"GO:0009725","response to hormone",55,7,3.29,87,"0.04323","0.09123","0.09123" +"GO:0048523","negative regulation of cellular process",216,16,12.93,323,"0.21628","0.09134","0.09134" +"GO:0044265","cellular macromolecule catabolic process",106,9,6.35,289,"0.18035","0.09151","0.09151" +"GO:0016032","viral process",22,2,1.32,488,"0.38304","0.00186","0.09272" +"GO:0010243","response to organonitrogen compound",47,8,2.81,10,"0.00585","0.09275","0.09275" +"GO:0072665","protein localization to vacuole",10,2,0.6,183,"0.11686","0.09309","0.09309" +"GO:0072666","establishment of protein localization to...",10,2,0.6,184,"0.11686","0.09309","0.09309" +"GO:0002252","immune effector process",23,3,1.38,257,"0.15546","0.09368","0.09368" +"GO:0051084","'de novo' posttranslational protein fold...",11,3,0.66,45,"0.02433","0.09527","0.09527" +"GO:0007033","vacuole organization",15,2,0.9,330,"0.22532","0.09544","0.09544" +"GO:0060548","negative regulation of cell death",48,5,2.87,259,"0.15647","0.09732","0.09732" +"GO:0006650","glycerophospholipid metabolic process",33,5,1.98,88,"0.04390","0.09770","0.09770" +"GO:1900407","regulation of cellular response to oxida...",14,3,0.84,97,"0.04705","0.09863","0.09863" +"GO:0042542","response to hydrogen peroxide",13,3,0.78,80,"0.03862","0.10050","0.10050" +"GO:0044772","mitotic cell cycle phase transition",31,3,1.86,403,"0.28275","0.10112","0.10112" +"GO:0072001","renal system development",18,4,1.08,35,"0.01955","0.10177","0.10177" +"GO:0021700","developmental maturation",18,2,1.08,408,"0.29358","0.10418","0.10418" +"GO:0043603","cellular amide metabolic process",218,17,13.05,250,"0.15177","0.00218","0.10501" +"GO:0048511","rhythmic process",21,3,1.26,207,"0.12709","0.10502","0.10502" +"GO:0034614","cellular response to reactive oxygen spe...",12,3,0.72,60,"0.03104","0.10518","0.10518" +"GO:0007051","spindle organization",10,2,0.6,185,"0.11686","0.10518","0.10518" +"GO:0001890","placenta development",11,2,0.66,222,"0.13743","0.10541","0.10541" +"GO:0002697","regulation of immune effector process",10,2,0.6,186,"0.11686","0.10573","0.10573" +"GO:0002253","activation of immune response",15,3,0.9,112,"0.05630","0.10727","0.10727" +"GO:0002757","immune response-activating signal transd...",15,3,0.9,113,"0.05630","0.10727","0.10727" +"GO:0002764","immune response-regulating signaling pat...",15,3,0.9,114,"0.05630","0.10727","0.10727" +"GO:0044248","cellular catabolic process",178,16,10.66,121,"0.06224","0.10961","0.10961" +"GO:0010564","regulation of cell cycle process",42,4,2.51,350,"0.24120","0.02542","0.11282" +"GO:0044093","positive regulation of molecular functio...",67,7,4.01,160,"0.10257","0.11449","0.11449" +"GO:0001505","regulation of neurotransmitter levels",22,4,1.32,83,"0.03882","0.11569","0.11569" +"GO:0044262","cellular carbohydrate metabolic process",11,2,0.66,223,"0.13743","0.11654","0.11654" +"GO:0051173","positive regulation of nitrogen compound...",124,12,7.42,123,"0.06385","0.11738","0.11738" +"GO:0009890","negative regulation of biosynthetic proc...",70,4,4.19,719,"0.61270","0.12026","0.12026" +"GO:0046486","glycerolipid metabolic process",34,5,2.04,102,"0.04907","0.12140","0.12140" +"GO:0045861","negative regulation of proteolysis",16,1,0.96,728,"0.62870","0.12260","0.12260" +"GO:0001655","urogenital system development",19,4,1.14,39,"0.02364","0.12400","0.12400" +"GO:0044843","cell cycle G1/S phase transition",13,2,0.78,291,"0.18054","0.12448","0.12448" +"GO:0043069","negative regulation of programmed cell d...",40,4,2.39,321,"0.21503","0.12531","0.12531" +"GO:0010033","response to organic substance",136,12,8.14,167,"0.10978","0.12568","0.12568" +"GO:0050764","regulation of phagocytosis",11,2,0.66,224,"0.13743","0.12928","0.12928" +"GO:0007018","microtubule-based movement",34,3,2.04,448,"0.33311","0.13017","0.13017" +"GO:0050776","regulation of immune response",33,6,1.98,18,"0.01202","0.01554","0.13065" +"GO:0031327","negative regulation of cellular biosynth...",69,4,4.13,706,"0.60111","0.13128","0.13128" +"GO:0006281","DNA repair",62,3,3.71,816,"0.72888","0.13146","0.13146" +"GO:0006414","translational elongation",17,2,1.02,384,"0.27081","0.13375","0.13375" +"GO:0033865","nucleoside bisphosphate metabolic proces...",11,3,0.66,46,"0.02433","0.13379","0.13379" +"GO:0033875","ribonucleoside bisphosphate metabolic pr...",11,3,0.66,47,"0.02433","0.13379","0.13379" +"GO:0034032","purine nucleoside bisphosphate metabolic...",11,3,0.66,48,"0.02433","0.13379","0.13379" +"GO:0065009","regulation of molecular function",113,11,6.77,132,"0.07182","0.13631","0.13631" +"GO:0012501","programmed cell death",78,5,4.67,602,"0.50542","0.13752","0.13752" +"GO:0009636","response to toxic substance",28,4,1.68,141,"0.08250","0.13937","0.13937" +"GO:1901698","response to nitrogen compound",51,8,3.05,15,"0.00966","0.13956","0.13956" +"GO:0052547","regulation of peptidase activity",10,0,0.6,956,"1.00000","0.14149","0.14149" +"GO:0006259","DNA metabolic process",121,9,7.24,417,"0.29727","0.14191","0.14191" +"GO:0045934","negative regulation of nucleobase-contai...",68,4,4.07,693,"0.58931","0.14319","0.14319" +"GO:0001745","compound eye morphogenesis",10,1,0.6,545,"0.46123","0.14328","0.14328" +"GO:0090662","ATP hydrolysis coupled transmembrane tra...",13,1,0.78,648,"0.55268","0.14350","0.14350" +"GO:0099131","ATP hydrolysis coupled ion transmembrane...",13,1,0.78,649,"0.55268","0.14350","0.14350" +"GO:0035967","cellular response to topologically incor...",16,2,0.96,356,"0.24803","0.14419","0.14419" +"GO:0090305","nucleic acid phosphodiester bond hydroly...",15,1,0.9,708,"0.60490","0.14736","0.14736" +"GO:1903311","regulation of mRNA metabolic process",17,2,1.02,385,"0.27081","0.14974","0.14974" +"GO:1902882","regulation of response to oxidative stre...",16,3,0.96,126,"0.06635","0.15124","0.15124" +"GO:0042493","response to drug",46,7,2.75,24,"0.01785","0.15367","0.15367" +"GO:0007269","neurotransmitter secretion",10,2,0.6,187,"0.11686","0.15378","0.15378" +"GO:0099643","signal release from synapse",10,2,0.6,188,"0.11686","0.15378","0.15378" +"GO:0042981","regulation of apoptotic process",58,5,3.47,372,"0.26488","0.15424","0.15424" +"GO:0006302","double-strand break repair",13,1,0.78,650,"0.55268","0.15551","0.15551" +"GO:0010558","negative regulation of macromolecule bio...",67,4,4.01,672,"0.57732","0.15603","0.15603" +"GO:0046165","alcohol biosynthetic process",10,3,0.6,30,"0.01849","0.15605","0.15605" +"GO:0033993","response to lipid",52,6,3.11,145,"0.08730","0.15670","0.15670" +"GO:0036473","cell death in response to oxidative stre...",14,3,0.84,98,"0.04705","0.15677","0.15677" +"GO:0002443","leukocyte mediated immunity",11,2,0.66,225,"0.13743","0.15723","0.15723" +"GO:0032984","protein-containing complex disassembly",27,5,1.62,38,"0.01991","0.15728","0.15728" +"GO:0006260","DNA replication",50,5,2.99,285,"0.17652","0.16176","0.16176" +"GO:0009607","response to biotic stimulus",32,1,1.92,898,"0.86301","0.16294","0.16294" +"GO:0007281","germ cell development",35,4,2.1,252,"0.15382","0.16473","0.16473" +"GO:0006458","'de novo' protein folding",12,3,0.72,61,"0.03104","0.16541","0.16541" +"GO:1901700","response to oxygen-containing compound",63,8,3.77,65,"0.03201","0.16723","0.16723" +"GO:0007292","female gamete generation",25,3,1.5,298,"0.18557","0.16889","0.16889" +"GO:0032355","response to estradiol",13,3,0.78,81,"0.03862","0.16920","0.16920" +"GO:1901987","regulation of cell cycle phase transitio...",18,1,1.08,761,"0.67209","0.16971","0.16971" +"GO:0031324","negative regulation of cellular metaboli...",110,7,6.59,579,"0.49157","0.16985","0.16985" +"GO:0048519","negative regulation of biological proces...",249,17,14.91,435,"0.31778","0.17129","0.17129" +"GO:0014070","response to organic cyclic compound",53,7,3.17,71,"0.03626","0.17167","0.17167" +"GO:0045807","positive regulation of endocytosis",13,2,0.78,292,"0.18054","0.17224","0.17224" +"GO:0048592","eye morphogenesis",20,2,1.2,453,"0.33876","0.17574","0.17574" +"GO:0032268","regulation of cellular protein metabolic...",125,13,7.48,69,"0.03340","0.17622","0.17622" +"GO:0051726","regulation of cell cycle",78,6,4.67,441,"0.32337","0.05114","0.17634" +"GO:0019637","organophosphate metabolic process",139,15,8.32,23,"0.01692","0.17654","0.17654" +"GO:0000819","sister chromatid segregation",20,1,1.2,788,"0.71045","0.17756","0.17756" +"GO:1903201","regulation of oxidative stress-induced c...",12,3,0.72,62,"0.03104","0.17772","0.17772" +"GO:1903202","negative regulation of oxidative stress-...",12,3,0.72,63,"0.03104","0.17772","0.17772" +"GO:0000280","nuclear division",30,4,1.8,155,"0.10084","0.00440","0.17862" +"GO:0010608","posttranscriptional regulation of gene e...",34,5,2.04,103,"0.04907","0.17927","0.17927" +"GO:0000302","response to reactive oxygen species",15,3,0.9,115,"0.05630","0.18099","0.18099" +"GO:0031325","positive regulation of cellular metaboli...",135,13,8.08,116,"0.05678","0.18271","0.18271" +"GO:0022412","cellular process involved in reproductio...",36,4,2.16,279,"0.16550","0.18394","0.18394" +"GO:0016567","protein ubiquitination",63,5,3.77,443,"0.32449","0.18649","0.18649" +"GO:0071496","cellular response to external stimulus",15,0,0.9,957,"1.00000","0.18729","0.18729" +"GO:0071806","protein transmembrane transport",20,2,1.2,454,"0.33876","0.18981","0.18981" +"GO:0044267","cellular protein metabolic process",635,45,38.02,163,"0.10724","0.02139","0.19076" +"GO:0009968","negative regulation of signal transducti...",54,4,3.23,508,"0.40677","0.19269","0.19269" +"GO:0010648","negative regulation of cell communicatio...",54,4,3.23,509,"0.40677","0.19269","0.19269" +"GO:0023057","negative regulation of signaling",54,4,3.23,510,"0.40677","0.19269","0.19269" +"GO:0030100","regulation of endocytosis",16,2,0.96,357,"0.24803","0.19369","0.19369" +"GO:0140014","mitotic nuclear division",21,3,1.26,208,"0.12709","0.00378","0.19397" +"GO:0007411","axon guidance",18,4,1.08,36,"0.01955","0.19572","0.19572" +"GO:0097485","neuron projection guidance",18,4,1.08,37,"0.01955","0.19572","0.19572" +"GO:0080134","regulation of response to stress",74,8,4.43,131,"0.07176","0.03709","0.19613" +"GO:0015988","energy coupled proton transmembrane tran...",12,1,0.72,611,"0.52406","0.19655","0.19655" +"GO:0015991","ATP hydrolysis coupled proton transport",12,1,0.72,612,"0.52406","0.19655","0.19655" +"GO:0099132","ATP hydrolysis coupled cation transmembr...",12,1,0.72,613,"0.52406","0.19655","0.19655" +"GO:0006513","protein monoubiquitination",11,1,0.66,582,"0.49361","0.19662","0.19662" +"GO:0019827","stem cell population maintenance",11,2,0.66,226,"0.13743","0.19662","0.19662" +"GO:0098727","maintenance of cell number",11,2,0.66,227,"0.13743","0.19662","0.19662" +"GO:0006606","protein import into nucleus",17,2,1.02,386,"0.27081","0.19747","0.19747" +"GO:0042255","ribosome assembly",12,1,0.72,614,"0.52406","0.19893","0.19893" +"GO:0009617","response to bacterium",19,0,1.14,958,"1.00000","0.19964","0.19964" +"GO:0007444","imaginal disc development",12,0,0.72,959,"1.00000","0.19965","0.19965" +"GO:2000113","negative regulation of cellular macromol...",64,3,3.83,823,"0.74872","0.20073","0.20073" +"GO:0031668","cellular response to extracellular stimu...",12,0,0.72,960,"1.00000","0.20279","0.20279" +"GO:0009719","response to endogenous stimulus",72,7,4.31,219,"0.13618","0.20280","0.20280" +"GO:0051246","regulation of protein metabolic process",133,13,7.96,107,"0.05140","0.20308","0.20308" +"GO:0043066","negative regulation of apoptotic process",37,3,2.22,495,"0.38338","0.20322","0.20322" +"GO:0001775","cell activation",22,2,1.32,489,"0.38304","0.20467","0.20467" +"GO:0006637","acyl-CoA metabolic process",10,3,0.6,31,"0.01849","0.20480","0.20480" +"GO:0035383","thioester metabolic process",10,3,0.6,32,"0.01849","0.20480","0.20480" +"GO:0032570","response to progesterone",11,2,0.66,228,"0.13743","0.20519","0.20519" +"GO:0007017","microtubule-based process",66,6,3.95,305,"0.19993","0.21084","0.21084" +"GO:0043902","positive regulation of multi-organism pr...",20,2,1.2,455,"0.33876","0.00645","0.21387" +"GO:0006413","translational initiation",15,2,0.9,331,"0.22532","0.21583","0.21583" +"GO:0048736","appendage development",14,0,0.84,961,"1.00000","0.21605","0.21605" +"GO:0043393","regulation of protein binding",12,2,0.72,266,"0.15870","0.21824","0.21824" +"GO:0051276","chromosome organization",123,5,7.36,903,"0.87181","0.21857","0.21857" +"GO:0009266","response to temperature stimulus",33,6,1.98,19,"0.01202","2.4e-05","0.21922" +"GO:0032259","methylation",44,2,2.63,824,"0.75123","0.22167","0.22167" +"GO:0007610","behavior",42,4,2.51,351,"0.24120","0.22259","0.22259" +"GO:0007286","spermatid development",21,3,1.26,209,"0.12709","0.22392","0.22392" +"GO:0048515","spermatid differentiation",21,3,1.26,210,"0.12709","0.22392","0.22392" +"GO:0043207","response to external biotic stimulus",31,1,1.86,896,"0.85417","0.22479","0.22479" +"GO:0051707","response to other organism",31,1,1.86,897,"0.85417","0.22479","0.22479" +"GO:2001252","positive regulation of chromosome organi...",11,1,0.66,583,"0.49361","0.22490","0.22490" +"GO:0060341","regulation of cellular localization",46,6,2.75,109,"0.05371","0.22676","0.22676" +"GO:0008088","axo-dendritic transport",10,2,0.6,189,"0.11686","0.22929","0.22929" +"GO:0030902","hindbrain development",10,2,0.6,190,"0.11686","0.22929","0.22929" +"GO:0046907","intracellular transport",174,12,10.42,465,"0.34654","0.23150","0.23150" +"GO:0009267","cellular response to starvation",11,0,0.66,962,"1.00000","0.23177","0.23177" +"GO:0031669","cellular response to nutrient levels",11,0,0.66,963,"1.00000","0.23177","0.23177" +"GO:1903362","regulation of cellular protein catabolic...",18,1,1.08,762,"0.67209","0.23538","0.23538" +"GO:0031647","regulation of protein stability",23,4,1.38,91,"0.04487","0.23652","0.23652" +"GO:0045321","leukocyte activation",20,2,1.2,456,"0.33876","0.23669","0.23669" +"GO:0009895","negative regulation of catabolic process",11,0,0.66,964,"1.00000","0.23689","0.23689" +"GO:0070647","protein modification by small protein co...",88,6,5.27,526,"0.43308","0.23824","0.23824" +"GO:0051172","negative regulation of nitrogen compound...",105,7,6.29,528,"0.44171","0.23859","0.23859" +"GO:0009894","regulation of catabolic process",52,2,3.11,881,"0.82894","0.24412","0.24412" +"GO:0080135","regulation of cellular response to stres...",53,5,3.17,319,"0.20829","0.24564","0.24564" +"GO:0048749","compound eye development",12,1,0.72,615,"0.52406","0.24643","0.24643" +"GO:0051254","positive regulation of RNA metabolic pro...",64,5,3.83,451,"0.33662","0.24653","0.24653" +"GO:0090596","sensory organ morphogenesis",23,2,1.38,502,"0.40472","0.25002","0.25002" +"GO:0009790","embryo development",81,7,4.85,318,"0.20820","0.25202","0.25202" +"GO:0030258","lipid modification",11,1,0.66,584,"0.49361","0.25251","0.25251" +"GO:0040007","growth",60,4,3.59,577,"0.48836","0.25273","0.25273" +"GO:0051253","negative regulation of RNA metabolic pro...",61,3,3.65,807,"0.71851","0.25577","0.25577" +"GO:1902679","negative regulation of RNA biosynthetic ...",61,3,3.65,808,"0.71851","0.25577","0.25577" +"GO:1903507","negative regulation of nucleic acid-temp...",61,3,3.65,809,"0.71851","0.25577","0.25577" +"GO:0031329","regulation of cellular catabolic process",45,2,2.69,842,"0.76238","0.25595","0.25595" +"GO:0043085","positive regulation of catalytic activit...",50,6,2.99,138,"0.07505","0.25628","0.25628" +"GO:0006464","cellular protein modification process",398,27,23.83,376,"0.26495","0.25790","0.25790" +"GO:0036211","protein modification process",398,27,23.83,377,"0.26495","0.25790","0.25790" +"GO:0048608","reproductive structure development",29,2,1.74,634,"0.52607","0.25877","0.25877" +"GO:0006633","fatty acid biosynthetic process",11,0,0.66,965,"1.00000","0.25891","0.25891" +"GO:0009892","negative regulation of metabolic process",129,8,7.72,605,"0.51350","0.25931","0.25931" +"GO:0071695","anatomical structure maturation",10,1,0.6,546,"0.46123","0.26106","0.26106" +"GO:0042592","homeostatic process",94,5,5.63,772,"0.67407","0.26219","0.26219" +"GO:0045444","fat cell differentiation",12,0,0.72,966,"1.00000","0.26223","0.26223" +"GO:0010970","transport along microtubule",15,2,0.9,332,"0.22532","0.26234","0.26234" +"GO:0030705","cytoskeleton-dependent intracellular tra...",15,2,0.9,333,"0.22532","0.26234","0.26234" +"GO:0099111","microtubule-based transport",15,2,0.9,334,"0.22532","0.26234","0.26234" +"GO:0033554","cellular response to stress",163,10,9.76,606,"0.51753","0.26331","0.26331" +"GO:0006333","chromatin assembly or disassembly",10,2,0.6,191,"0.11686","0.26527","0.26527" +"GO:0046467","membrane lipid biosynthetic process",14,2,0.84,310,"0.20278","0.26602","0.26602" +"GO:0061136","regulation of proteasomal protein catabo...",17,1,1.02,741,"0.65106","0.26678","0.26678" +"GO:1903050","regulation of proteolysis involved in ce...",17,1,1.02,742,"0.65106","0.26678","0.26678" +"GO:2001242","regulation of intrinsic apoptotic signal...",11,1,0.66,585,"0.49361","0.26745","0.26745" +"GO:0036503","ERAD pathway",19,3,1.14,157,"0.10087","0.26810","0.26810" +"GO:0030433","ubiquitin-dependent ERAD pathway",16,2,0.96,358,"0.24803","0.26918","0.26918" +"GO:0001101","response to acid chemical",12,0,0.72,967,"1.00000","0.26920","0.26920" +"GO:0035107","appendage morphogenesis",12,0,0.72,968,"1.00000","0.26920","0.26920" +"GO:0051090","regulation of DNA-binding transcription ...",13,1,0.78,651,"0.55268","0.26980","0.26980" +"GO:0031330","negative regulation of cellular cataboli...",10,0,0.6,969,"1.00000","0.27016","0.27016" +"GO:0060627","regulation of vesicle-mediated transport",25,2,1.5,532,"0.44694","0.27104","0.27104" +"GO:0007283","spermatogenesis",34,4,2.04,240,"0.14248","0.27141","0.27141" +"GO:0034599","cellular response to oxidative stress",20,3,1.2,170,"0.11369","0.27205","0.27205" +"GO:0030707","ovarian follicle cell development",14,2,0.84,311,"0.20278","0.27207","0.27207" +"GO:0033044","regulation of chromosome organization",25,1,1.5,853,"0.78793","0.27322","0.27322" +"GO:0050790","regulation of catalytic activity",90,10,5.39,85,"0.04000","0.27604","0.27604" +"GO:0051170","import into nucleus",18,2,1.08,409,"0.29358","0.27631","0.27631" +"GO:0003008","system process",67,8,4.01,89,"0.04409","0.27917","0.27917" +"GO:0006869","lipid transport",32,2,1.92,690,"0.58025","0.28005","0.28005" +"GO:0009893","positive regulation of metabolic process",149,15,8.92,57,"0.02998","0.28109","0.28109" +"GO:0048589","developmental growth",38,2,2.28,773,"0.67468","0.28242","0.28242" +"GO:0034762","regulation of transmembrane transport",13,1,0.78,652,"0.55268","0.28362","0.28362" +"GO:0044743","protein transmembrane import into intrac...",18,2,1.08,410,"0.29358","0.28391","0.28391" +"GO:0000003","reproduction",96,7,5.75,468,"0.35088","0.28483","0.28483" +"GO:0048024","regulation of mRNA splicing, via spliceo...",10,2,0.6,192,"0.11686","0.28584","0.28584" +"GO:0070507","regulation of microtubule cytoskeleton o...",10,1,0.6,547,"0.46123","0.28584","0.28584" +"GO:0043412","macromolecule modification",439,29,26.28,425,"0.30655","0.28623","0.28623" +"GO:0022402","cell cycle process",102,7,6.11,513,"0.41144","0.05906","0.28643" +"GO:0033036","macromolecule localization",235,19,14.07,162,"0.10375","0.28724","0.28724" +"GO:1901652","response to peptide",12,2,0.72,267,"0.15870","0.28862","0.28862" +"GO:0006732","coenzyme metabolic process",34,3,2.04,449,"0.33311","0.28990","0.28990" +"GO:0065002","intracellular protein transmembrane tran...",13,0,0.78,970,"1.00000","0.29083","0.29083" +"GO:0042176","regulation of protein catabolic process",25,1,1.5,854,"0.78793","0.29447","0.29447" +"GO:0031401","positive regulation of protein modificat...",44,4,2.63,380,"0.26805","0.29547","0.29547" +"GO:0050877","nervous system process",50,7,2.99,53,"0.02728","0.29566","0.29566" +"GO:1901990","regulation of mitotic cell cycle phase t...",17,1,1.02,743,"0.65106","0.29634","0.29634" +"GO:0048232","male gamete generation",35,4,2.1,253,"0.15382","0.29672","0.29672" +"GO:0098542","defense response to other organism",20,1,1.2,789,"0.71045","0.29683","0.29683" +"GO:0045892","negative regulation of transcription, DN...",59,3,3.53,783,"0.69686","0.29880","0.29880" +"GO:0006629","lipid metabolic process",138,15,8.26,22,"0.01591","0.29937","0.29937" +"GO:0051049","regulation of transport",73,5,4.37,531,"0.44619","0.29987","0.29987" +"GO:0032270","positive regulation of cellular protein ...",67,7,4.01,161,"0.10257","0.30072","0.30072" +"GO:0006325","chromatin organization",86,4,5.15,845,"0.76869","0.30140","0.30140" +"GO:0051346","negative regulation of hydrolase activit...",18,1,1.08,763,"0.67209","0.30202","0.30202" +"GO:0017038","protein import",29,3,1.74,362,"0.24957","0.30477","0.30477" +"GO:0006605","protein targeting",42,4,2.51,352,"0.24120","0.30779","0.30779" +"GO:0051649","establishment of localization in cell",184,12,11.02,517,"0.42239","0.30907","0.30907" +"GO:0010605","negative regulation of macromolecule met...",121,7,7.24,695,"0.59573","0.30911","0.30911" +"GO:0022414","reproductive process",91,7,5.45,423,"0.30128","0.31643","0.31643" +"GO:0005975","carbohydrate metabolic process",51,2,3.05,874,"0.82058","0.31791","0.31791" +"GO:0010629","negative regulation of gene expression",84,4,5.03,830,"0.75227","0.32142","0.32142" +"GO:0007346","regulation of mitotic cell cycle",33,3,1.98,432,"0.31629","0.01594","0.32224" +"GO:0015850","organic hydroxy compound transport",13,1,0.78,653,"0.55268","0.32324","0.32324" +"GO:0008037","cell recognition",10,2,0.6,193,"0.11686","0.32662","0.32662" +"GO:1990542","mitochondrial transmembrane transport",12,0,0.72,971,"1.00000","0.32725","0.32725" +"GO:0019953","sexual reproduction",56,5,3.35,353,"0.24178","0.32780","0.32780" +"GO:0010604","positive regulation of macromolecule met...",131,11,7.84,261,"0.15684","0.32793","0.32793" +"GO:0032879","regulation of localization",110,9,6.59,320,"0.20931","0.32796","0.32796" +"GO:0002683","negative regulation of immune system pro...",10,0,0.6,972,"1.00000","0.32806","0.32806" +"GO:0022411","cellular component disassembly",32,5,1.92,84,"0.03907","0.32889","0.32889" +"GO:0032504","multicellular organism reproduction",63,4,3.77,641,"0.52749","0.32920","0.32920" +"GO:0044092","negative regulation of molecular functio...",41,5,2.45,153,"0.09492","0.32991","0.32991" +"GO:0008654","phospholipid biosynthetic process",29,5,1.74,52,"0.02660","0.33036","0.33036" +"GO:0051169","nuclear transport",40,2,2.39,785,"0.70211","0.33131","0.33131" +"GO:0048568","embryonic organ development",34,5,2.04,104,"0.04907","0.33142","0.33142" +"GO:0031047","gene silencing by RNA",10,2,0.6,194,"0.11686","0.33203","0.33203" +"GO:0060249","anatomical structure homeostasis",19,0,1.14,973,"1.00000","0.33283","0.33283" +"GO:0043414","macromolecule methylation",36,1,2.16,914,"0.89334","0.33640","0.33640" +"GO:0006836","neurotransmitter transport",19,3,1.14,158,"0.10087","0.33715","0.33715" +"GO:0000070","mitotic sister chromatid segregation",14,1,0.84,674,"0.57960","0.33746","0.33746" +"GO:0045087","innate immune response",24,3,1.44,283,"0.17032","0.08653","0.33794" +"GO:0140013","meiotic nuclear division",10,2,0.6,195,"0.11686","0.33833","0.33833" +"GO:0051650","establishment of vesicle localization",14,2,0.84,312,"0.20278","0.33963","0.33963" +"GO:0097164","ammonium ion metabolic process",15,2,0.9,335,"0.22532","0.33990","0.33990" +"GO:0034248","regulation of cellular amide metabolic p...",23,3,1.38,258,"0.15546","0.34158","0.34158" +"GO:0030522","intracellular receptor signaling pathway",13,0,0.78,974,"1.00000","0.34189","0.34189" +"GO:0016049","cell growth",25,3,1.5,299,"0.18557","0.34197","0.34197" +"GO:0009451","RNA modification",39,2,2.33,775,"0.68864","0.34211","0.34211" +"GO:0010959","regulation of metal ion transport",11,1,0.66,586,"0.49361","0.34246","0.34246" +"GO:0006955","immune response",48,6,2.87,122,"0.06385","0.07564","0.34281" +"GO:0006935","chemotaxis",23,4,1.38,92,"0.04487","0.34353","0.34353" +"GO:0032386","regulation of intracellular transport",25,4,1.5,117,"0.05846","0.34407","0.34407" +"GO:0007276","gamete generation",50,4,2.99,469,"0.35102","0.34414","0.34414" +"GO:0031399","regulation of protein modification proce...",79,8,4.73,154,"0.09686","0.34468","0.34468" +"GO:1903827","regulation of cellular protein localizat...",29,3,1.74,363,"0.24957","0.34733","0.34733" +"GO:0001932","regulation of protein phosphorylation",47,6,2.81,118,"0.05864","0.35071","0.35071" +"GO:0006415","translational termination",10,2,0.6,196,"0.11686","0.35601","0.35601" +"GO:0008104","protein localization",196,17,11.73,134,"0.07291","0.35675","0.35675" +"GO:0061458","reproductive system development",31,2,1.86,666,"0.56270","0.36149","0.36149" +"GO:0006909","phagocytosis",15,2,0.9,336,"0.22532","0.36370","0.36370" +"GO:0051641","cellular localization",230,15,13.77,501,"0.40281","0.36494","0.36494" +"GO:0034622","cellular protein-containing complex asse...",108,8,6.47,436,"0.31782","0.36528","0.36528" +"GO:0043484","regulation of RNA splicing",11,2,0.66,229,"0.13743","0.36568","0.36568" +"GO:0050684","regulation of mRNA processing",11,2,0.66,230,"0.13743","0.36568","0.36568" +"GO:0034976","response to endoplasmic reticulum stress",31,4,1.86,168,"0.11065","0.36764","0.36764" +"GO:0043933","protein-containing complex subunit organ...",145,12,8.68,254,"0.15445","0.36813","0.36813" +"GO:0006915","apoptotic process",74,5,4.43,541,"0.45819","0.36843","0.36843" +"GO:0045927","positive regulation of growth",12,0,0.72,975,"1.00000","0.37068","0.37068" +"GO:0043434","response to peptide hormone",10,2,0.6,197,"0.11686","0.37081","0.37081" +"GO:0048513","animal organ development",166,16,9.94,72,"0.03628","0.37083","0.37083" +"GO:0042330","taxis",24,4,1.44,108,"0.05142","0.37300","0.37300" +"GO:0090501","RNA phosphodiester bond hydrolysis",12,1,0.72,616,"0.52406","0.37419","0.37419" +"GO:0006839","mitochondrial transport",31,2,1.86,667,"0.56270","0.37479","0.37479" +"GO:0045088","regulation of innate immune response",18,3,1.08,148,"0.08867","0.01186","0.37589" +"GO:0006417","regulation of translation",22,3,1.32,239,"0.14103","0.37742","0.37742" +"GO:0009101","glycoprotein biosynthetic process",46,3,2.75,640,"0.52668","0.37888","0.37888" +"GO:0006367","transcription initiation from RNA polyme...",13,0,0.78,976,"1.00000","0.38028","0.38028" +"GO:0000209","protein polyubiquitination",22,2,1.32,490,"0.38304","0.38319","0.38319" +"GO:0044255","cellular lipid metabolic process",87,9,5.21,133,"0.07278","0.38496","0.38496" +"GO:0016569","covalent chromatin modification",55,0,3.29,977,"1.00000","0.38583","0.38583" +"GO:0009966","regulation of signal transduction",130,8,7.78,608,"0.52257","0.38590","0.38590" +"GO:1901135","carbohydrate derivative metabolic proces...",184,22,11.02,4,"0.00104","0.07896","0.38675" +"GO:0051098","regulation of binding",15,2,0.9,337,"0.22532","0.38703","0.38703" +"GO:0051656","establishment of organelle localization",24,2,1.44,518,"0.42603","0.38707","0.38707" +"GO:0032880","regulation of protein localization",48,4,2.87,437,"0.32313","0.38825","0.38825" +"GO:0032388","positive regulation of intracellular tra...",12,3,0.72,64,"0.03104","0.38911","0.38911" +"GO:0000375","RNA splicing, via transesterification re...",44,2,2.63,825,"0.75123","0.39082","0.39082" +"GO:0000377","RNA splicing, via transesterification re...",44,2,2.63,826,"0.75123","0.39082","0.39082" +"GO:0000398","mRNA splicing, via spliceosome",44,2,2.63,827,"0.75123","0.39082","0.39082" +"GO:0048593","camera-type eye morphogenesis",10,1,0.6,548,"0.46123","0.39089","0.39089" +"GO:0008285","negative regulation of cell proliferatio...",21,2,1.26,473,"0.36104","0.39096","0.39096" +"GO:0051247","positive regulation of protein metabolic...",69,7,4.13,175,"0.11541","0.39133","0.39133" +"GO:0030900","forebrain development",20,3,1.2,171,"0.11369","0.39267","0.39267" +"GO:0002066","columnar/cuboidal epithelial cell develo...",17,2,1.02,387,"0.27081","0.39357","0.39357" +"GO:0009792","embryo development ending in birth or eg...",46,4,2.75,415,"0.29542","0.39382","0.39382" +"GO:0010876","lipid localization",37,2,2.22,752,"0.66022","0.39882","0.39882" +"GO:0051321","meiotic cell cycle",15,2,0.9,338,"0.22532","0.39960","0.39960" +"GO:1901565","organonitrogen compound catabolic proces...",126,13,7.54,70,"0.03536","0.01294","0.40076" +"GO:0001933","negative regulation of protein phosphory...",21,4,1.26,68,"0.03326","0.40136","0.40136" +"GO:0033674","positive regulation of kinase activity",10,2,0.6,198,"0.11686","0.40211","0.40211" +"GO:0045860","positive regulation of protein kinase ac...",10,2,0.6,199,"0.11686","0.40211","0.40211" +"GO:0097190","apoptotic signaling pathway",27,2,1.62,575,"0.48744","0.40252","0.40252" +"GO:0048609","multicellular organismal reproductive pr...",60,4,3.59,578,"0.48836","0.40641","0.40641" +"GO:0002520","immune system development",18,1,1.08,764,"0.67209","0.40704","0.40704" +"GO:0048534","hematopoietic or lymphoid organ developm...",18,1,1.08,765,"0.67209","0.40704","0.40704" +"GO:0055086","nucleobase-containing small molecule met...",102,10,6.11,140,"0.08080","0.41175","0.41175" +"GO:0043900","regulation of multi-organism process",25,2,1.5,533,"0.44694","0.03920","0.41261" +"GO:0061061","muscle structure development",40,4,2.39,322,"0.21503","0.41304","0.41304" +"GO:0030518","intracellular steroid hormone receptor s...",11,0,0.66,978,"1.00000","0.41359","0.41359" +"GO:0032870","cellular response to hormone stimulus",29,1,1.74,885,"0.83477","0.41464","0.41464" +"GO:0002682","regulation of immune system process",49,7,2.93,50,"0.02466","0.00658","0.41586" +"GO:0007268","chemical synaptic transmission",21,3,1.26,211,"0.12709","0.41832","0.41832" +"GO:0098916","anterograde trans-synaptic signaling",21,3,1.26,212,"0.12709","0.41832","0.41832" +"GO:0099536","synaptic signaling",21,3,1.26,213,"0.12709","0.41832","0.41832" +"GO:0099537","trans-synaptic signaling",21,3,1.26,214,"0.12709","0.41832","0.41832" +"GO:0043270","positive regulation of ion transport",10,1,0.6,549,"0.46123","0.41968","0.41968" +"GO:1904062","regulation of cation transmembrane trans...",10,1,0.6,550,"0.46123","0.41968","0.41968" +"GO:0001754","eye photoreceptor cell differentiation",10,1,0.6,551,"0.46123","0.42062","0.42062" +"GO:0001510","RNA methylation",16,0,0.96,979,"1.00000","0.42143","0.42143" +"GO:1902749","regulation of cell cycle G2/M phase tran...",10,0,0.6,980,"1.00000","0.42225","0.42225" +"GO:0046649","lymphocyte activation",12,2,0.72,268,"0.15870","0.42235","0.42235" +"GO:0006888","ER to Golgi vesicle-mediated transport",16,0,0.96,981,"1.00000","0.42336","0.42336" +"GO:0015031","protein transport",149,11,8.92,399,"0.27646","0.42476","0.42476" +"GO:0070646","protein modification by small protein re...",24,2,1.44,519,"0.42603","0.42514","0.42514" +"GO:1902600","proton transmembrane transport",23,1,1.38,837,"0.75978","0.42521","0.42521" +"GO:0044703","multi-organism reproductive process",61,5,3.65,421,"0.30039","0.42630","0.42630" +"GO:0010948","negative regulation of cell cycle proces...",16,0,0.96,982,"1.00000","0.42659","0.42659" +"GO:0007049","cell cycle",142,8,8.5,726,"0.62604","0.15762","0.42690" +"GO:0040029","regulation of gene expression, epigeneti...",17,2,1.02,388,"0.27081","0.42712","0.42712" +"GO:0045165","cell fate commitment",18,1,1.08,766,"0.67209","0.42730","0.42730" +"GO:0006520","cellular amino acid metabolic process",54,5,3.23,326,"0.21928","0.42794","0.42794" +"GO:0055114","oxidation-reduction process",142,8,8.5,727,"0.62604","0.43044","0.43044" +"GO:0019216","regulation of lipid metabolic process",13,3,0.78,82,"0.03862","0.43441","0.43441" +"GO:0002065","columnar/cuboidal epithelial cell differ...",18,2,1.08,411,"0.29358","0.43497","0.43497" +"GO:0000278","mitotic cell cycle",73,6,4.37,382,"0.27001","0.09458","0.43665" +"GO:0009100","glycoprotein metabolic process",51,3,3.05,702,"0.59805","0.43789","0.43789" +"GO:0015711","organic anion transport",27,3,1.62,324,"0.21706","0.43824","0.43824" +"GO:0045184","establishment of protein localization",157,12,9.4,346,"0.22644","0.44001","0.44001" +"GO:0046474","glycerophospholipid biosynthetic process",20,3,1.2,172,"0.11369","0.44063","0.44063" +"GO:0006342","chromatin silencing",12,2,0.72,269,"0.15870","0.44073","0.44073" +"GO:0007369","gastrulation",12,2,0.72,270,"0.15870","0.44073","0.44073" +"GO:0045814","negative regulation of gene expression, ...",12,2,0.72,271,"0.15870","0.44073","0.44073" +"GO:0006974","cellular response to DNA damage stimulus",92,3,5.51,922,"0.92232","0.44255","0.44255" +"GO:0032886","regulation of microtubule-based process",12,1,0.72,617,"0.52406","0.44566","0.44566" +"GO:1901988","negative regulation of cell cycle phase ...",10,0,0.6,983,"1.00000","0.44683","0.44683" +"GO:1901991","negative regulation of mitotic cell cycl...",10,0,0.6,984,"1.00000","0.44683","0.44683" +"GO:0014706","striated muscle tissue development",19,3,1.14,159,"0.10087","0.44783","0.44783" +"GO:0006913","nucleocytoplasmic transport",39,2,2.33,776,"0.68864","0.44886","0.44886" +"GO:0045454","cell redox homeostasis",28,3,1.68,348,"0.23321","0.44954","0.44954" +"GO:0009653","anatomical structure morphogenesis",144,12,8.62,248,"0.14906","0.44955","0.44955" +"GO:0005996","monosaccharide metabolic process",11,1,0.66,587,"0.49361","0.45174","0.45174" +"GO:0006790","sulfur compound metabolic process",33,3,1.98,433,"0.31629","0.45312","0.45312" +"GO:0001654","eye development",37,2,2.22,753,"0.66022","0.45367","0.45367" +"GO:0048880","sensory system development",37,2,2.22,754,"0.66022","0.45367","0.45367" +"GO:0150063","visual system development",37,2,2.22,755,"0.66022","0.45367","0.45367" +"GO:0045859","regulation of protein kinase activity",26,4,1.56,124,"0.06600","0.45395","0.45395" +"GO:0032269","negative regulation of cellular protein ...",48,5,2.87,260,"0.15647","0.45457","0.45457" +"GO:0006631","fatty acid metabolic process",19,1,1.14,777,"0.69186","0.45817","0.45817" +"GO:0007409","axonogenesis",27,4,1.62,135,"0.07402","0.45861","0.45861" +"GO:0044403","symbiont process",29,2,1.74,635,"0.52607","0.01962","0.45976" +"GO:0044419","interspecies interaction between organis...",29,2,1.74,636,"0.52607","0.01962","0.45976" +"GO:0046903","secretion",55,4,3.29,514,"0.42060","0.45977","0.45977" +"GO:0002064","epithelial cell development",23,2,1.38,503,"0.40472","0.46049","0.46049" +"GO:0009891","positive regulation of biosynthetic proc...",70,8,4.19,111,"0.05490","0.46196","0.46196" +"GO:0006733","oxidoreduction coenzyme metabolic proces...",12,0,0.72,985,"1.00000","0.46365","0.46365" +"GO:0098813","nuclear chromosome segregation",22,1,1.32,820,"0.74434","0.46423","0.46423" +"GO:1990778","protein localization to cell periphery",13,2,0.78,293,"0.18054","0.46468","0.46468" +"GO:0009108","coenzyme biosynthetic process",22,0,1.32,986,"1.00000","0.46489","0.46489" +"GO:0072527","pyrimidine-containing compound metabolic...",11,2,0.66,231,"0.13743","0.46578","0.46578" +"GO:0051704","multi-organism process",119,7,7.12,673,"0.57754","0.12884","0.46716" +"GO:0006418","tRNA aminoacylation for protein translat...",24,2,1.44,520,"0.42603","0.47044","0.47044" +"GO:0043038","amino acid activation",24,2,1.44,521,"0.42603","0.47044","0.47044" +"GO:0043039","tRNA aminoacylation",24,2,1.44,522,"0.42603","0.47044","0.47044" +"GO:0016050","vesicle organization",16,0,0.96,987,"1.00000","0.47227","0.47227" +"GO:0009611","response to wounding",16,1,0.96,729,"0.62870","0.47395","0.47395" +"GO:0009247","glycolipid biosynthetic process",10,2,0.6,200,"0.11686","0.47490","0.47490" +"GO:0006261","DNA-dependent DNA replication",22,0,1.32,988,"1.00000","0.47511","0.47511" +"GO:0006486","protein glycosylation",43,3,2.57,572,"0.48071","0.47558","0.47558" +"GO:0043413","macromolecule glycosylation",43,3,2.57,573,"0.48071","0.47558","0.47558" +"GO:0070085","glycosylation",43,3,2.57,574,"0.48071","0.47558","0.47558" +"GO:0055085","transmembrane transport",207,17,12.39,165,"0.10787","0.47589","0.47589" +"GO:0048598","embryonic morphogenesis",43,5,2.57,169,"0.11101","0.47620","0.47620" +"GO:1901617","organic hydroxy compound biosynthetic pr...",14,3,0.84,99,"0.04705","0.47706","0.47706" +"GO:0001816","cytokine production",14,1,0.84,675,"0.57960","0.47790","0.47790" +"GO:0051248","negative regulation of protein metabolic...",49,5,2.93,280,"0.16637","0.47808","0.47808" +"GO:0007519","skeletal muscle tissue development",13,2,0.78,294,"0.18054","0.47972","0.47972" +"GO:0060537","muscle tissue development",20,3,1.2,173,"0.11369","0.48312","0.48312" +"GO:1902903","regulation of supramolecular fiber organ...",28,4,1.68,142,"0.08250","0.48592","0.48592" +"GO:0046530","photoreceptor cell differentiation",11,1,0.66,588,"0.49361","0.48717","0.48717" +"GO:2000027","regulation of animal organ morphogenesis",11,1,0.66,589,"0.49361","0.48717","0.48717" +"GO:0006397","mRNA processing",60,2,3.59,911,"0.88420","0.48748","0.48748" +"GO:0002694","regulation of leukocyte activation",10,1,0.6,552,"0.46123","0.48787","0.48787" +"GO:0050865","regulation of cell activation",10,1,0.6,553,"0.46123","0.48787","0.48787" +"GO:0048522","positive regulation of cellular process",255,18,15.27,371,"0.26077","0.48799","0.48799" +"GO:0044260","cellular macromolecule metabolic process",1013,58,60.65,784,"0.70198","0.15920","0.48923" +"GO:0048731","system development",229,19,13.71,143,"0.08526","0.49055","0.49055" +"GO:0043549","regulation of kinase activity",27,4,1.62,136,"0.07402","0.49160","0.49160" +"GO:0034765","regulation of ion transmembrane transpor...",11,1,0.66,590,"0.49361","0.49332","0.49332" +"GO:0045930","negative regulation of mitotic cell cycl...",14,0,0.84,989,"1.00000","0.49762","0.49762" +"GO:0043010","camera-type eye development",22,1,1.32,821,"0.74434","0.49771","0.49771" +"GO:0010646","regulation of cell communication",140,10,8.38,445,"0.32661","0.49789","0.49789" +"GO:0003013","circulatory system process",11,1,0.66,591,"0.49361","0.49798","0.49798" +"GO:0008015","blood circulation",11,1,0.66,592,"0.49361","0.49798","0.49798" +"GO:0031099","regeneration",11,0,0.66,990,"1.00000","0.49798","0.49798" +"GO:0006928","movement of cell or subcellular componen...",81,5,4.85,645,"0.53977","0.49836","0.49836" +"GO:0016331","morphogenesis of embryonic epithelium",10,0,0.6,991,"1.00000","0.49863","0.49863" +"GO:0015833","peptide transport",150,11,8.98,404,"0.28387","0.49913","0.49913" +"GO:0016311","dephosphorylation",34,3,2.04,450,"0.33311","0.50131","0.50131" +"GO:0032989","cellular component morphogenesis",72,7,4.31,220,"0.13618","0.50206","0.50206" +"GO:0031400","negative regulation of protein modificat...",34,5,2.04,105,"0.04907","0.50785","0.50785" +"GO:0044242","cellular lipid catabolic process",10,1,0.6,554,"0.46123","0.50787","0.50787" +"GO:0042445","hormone metabolic process",11,2,0.66,232,"0.13743","0.50831","0.50831" +"GO:0060041","retina development in camera-type eye",15,1,0.9,709,"0.60490","0.50884","0.50884" +"GO:0000165","MAPK cascade",25,2,1.5,534,"0.44694","0.50925","0.50925" +"GO:0023014","signal transduction by protein phosphory...",25,2,1.5,535,"0.44694","0.50925","0.50925" +"GO:0009127","purine nucleoside monophosphate biosynth...",20,0,1.2,992,"1.00000","0.51012","0.51012" +"GO:0009156","ribonucleoside monophosphate biosyntheti...",20,0,1.2,993,"1.00000","0.51012","0.51012" +"GO:0009168","purine ribonucleoside monophosphate bios...",20,0,1.2,994,"1.00000","0.51012","0.51012" +"GO:0045017","glycerolipid biosynthetic process",21,3,1.26,215,"0.12709","0.51101","0.51101" +"GO:0044706","multi-multicellular organism process",11,1,0.66,593,"0.49361","0.51204","0.51204" +"GO:0006479","protein methylation",20,1,1.2,790,"0.71045","0.51279","0.51279" +"GO:0008213","protein alkylation",20,1,1.2,791,"0.71045","0.51279","0.51279" +"GO:0009124","nucleoside monophosphate biosynthetic pr...",21,0,1.26,995,"1.00000","0.51372","0.51372" +"GO:0051338","regulation of transferase activity",37,4,2.22,286,"0.17747","0.51479","0.51479" +"GO:0009314","response to radiation",21,1,1.26,812,"0.72792","0.51643","0.51643" +"GO:0071705","nitrogen compound transport",175,13,10.48,354,"0.24480","0.51653","0.51653" +"GO:0015849","organic acid transport",23,2,1.38,504,"0.40472","0.51742","0.51742" +"GO:0046942","carboxylic acid transport",23,2,1.38,505,"0.40472","0.51742","0.51742" +"GO:0019932","second-messenger-mediated signaling",13,2,0.78,295,"0.18054","0.51786","0.51786" +"GO:0016071","mRNA metabolic process",78,2,4.67,942,"0.95394","0.52112","0.52112" +"GO:0016192","vesicle-mediated transport",123,6,7.36,831,"0.75819","0.52131","0.52131" +"GO:0001666","response to hypoxia",14,1,0.84,676,"0.57960","0.52199","0.52199" +"GO:0036293","response to decreased oxygen levels",14,1,0.84,677,"0.57960","0.52199","0.52199" +"GO:0070482","response to oxygen levels",14,1,0.84,678,"0.57960","0.52199","0.52199" +"GO:2001234","negative regulation of apoptotic signali...",14,1,0.84,679,"0.57960","0.52199","0.52199" +"GO:0051648","vesicle localization",15,2,0.9,339,"0.22532","0.52488","0.52488" +"GO:0072659","protein localization to plasma membrane",10,2,0.6,201,"0.11686","0.52574","0.52574" +"GO:0045732","positive regulation of protein catabolic...",12,1,0.72,618,"0.52406","0.52577","0.52577" +"GO:0044282","small molecule catabolic process",17,2,1.02,389,"0.27081","0.52782","0.52782" +"GO:0051051","negative regulation of transport",12,1,0.72,619,"0.52406","0.52817","0.52817" +"GO:0042326","negative regulation of phosphorylation",26,4,1.56,125,"0.06600","0.52840","0.52840" +"GO:0009798","axis specification",13,0,0.78,996,"1.00000","0.52938","0.52938" +"GO:0010942","positive regulation of cell death",22,2,1.32,491,"0.38304","0.53323","0.53323" +"GO:0008380","RNA splicing",53,2,3.17,889,"0.83696","0.53379","0.53379" +"GO:0008284","positive regulation of cell proliferatio...",19,0,1.14,997,"1.00000","0.53392","0.53392" +"GO:1901701","cellular response to oxygen-containing c...",39,4,2.33,307,"0.20226","0.53616","0.53616" +"GO:0006753","nucleoside phosphate metabolic process",86,7,5.15,367,"0.25341","0.53642","0.53642" +"GO:0001701","in utero embryonic development",20,2,1.2,457,"0.33876","0.53666","0.53666" +"GO:0060538","skeletal muscle organ development",14,2,0.84,313,"0.20278","0.53695","0.53695" +"GO:0072358","cardiovascular system development",18,1,1.08,767,"0.67209","0.53876","0.53876" +"GO:0001558","regulation of cell growth",18,1,1.08,768,"0.67209","0.54073","0.54073" +"GO:0023051","regulation of signaling",143,10,8.56,470,"0.35120","0.54185","0.54185" +"GO:0031328","positive regulation of cellular biosynth...",65,6,3.89,302,"0.19052","0.54207","0.54207" +"GO:2001020","regulation of response to DNA damage sti...",15,1,0.9,710,"0.60490","0.54318","0.54318" +"GO:0042325","regulation of phosphorylation",55,6,3.29,164,"0.10761","0.54339","0.54339" +"GO:0051336","regulation of hydrolase activity",48,4,2.87,438,"0.32313","0.54381","0.54381" +"GO:0050804","modulation of chemical synaptic transmis...",10,1,0.6,555,"0.46123","0.54434","0.54434" +"GO:0099177","regulation of trans-synaptic signaling",10,1,0.6,556,"0.46123","0.54434","0.54434" +"GO:0006796","phosphate-containing compound metabolic ...",317,27,18.98,66,"0.03287","0.54524","0.54524" +"GO:0001934","positive regulation of protein phosphory...",22,2,1.32,492,"0.38304","0.54642","0.54642" +"GO:0019220","regulation of phosphate metabolic proces...",61,6,3.65,255,"0.15477","0.54822","0.54822" +"GO:0019725","cellular homeostasis",58,5,3.47,373,"0.26488","0.54930","0.54930" +"GO:0071702","organic substance transport",211,15,12.63,401,"0.27737","0.55005","0.55005" +"GO:0019538","protein metabolic process",743,47,44.48,471,"0.35226","0.07857","0.55068" +"GO:0007600","sensory perception",32,3,1.92,418,"0.29949","0.55146","0.55146" +"GO:0071103","DNA conformation change",17,2,1.02,390,"0.27081","0.55227","0.55227" +"GO:0009117","nucleotide metabolic process",84,7,5.03,349,"0.23496","0.55382","0.55382" +"GO:0006793","phosphorus metabolic process",320,27,19.16,73,"0.03655","0.55413","0.55413" +"GO:0032501","multicellular organismal process",335,24,20.06,304,"0.19547","0.55519","0.55519" +"GO:0065003","protein-containing complex assembly",124,8,7.42,570,"0.46742","0.55566","0.55566" +"GO:0050821","protein stabilization",12,1,0.72,620,"0.52406","0.55835","0.55835" +"GO:0007059","chromosome segregation",25,1,1.5,855,"0.78793","0.56059","0.56059" +"GO:0048584","positive regulation of response to stimu...",86,7,5.15,368,"0.25341","0.25331","0.56075" +"GO:0046434","organophosphate catabolic process",17,2,1.02,391,"0.27081","0.56155","0.56155" +"GO:0006643","membrane lipid metabolic process",17,2,1.02,392,"0.27081","0.56235","0.56235" +"GO:0010557","positive regulation of macromolecule bio...",62,5,3.71,428,"0.31241","0.56276","0.56276" +"GO:0009887","animal organ morphogenesis",55,3,3.29,740,"0.64990","0.56456","0.56456" +"GO:0033365","protein localization to organelle",69,5,4.13,498,"0.39765","0.56547","0.56547" +"GO:0071824","protein-DNA complex subunit organization",15,2,0.9,340,"0.22532","0.56704","0.56704" +"GO:0051179","localization",579,40,34.66,281,"0.16778","0.56744","0.56744" +"GO:0035282","segmentation",12,0,0.72,998,"1.00000","0.56806","0.56806" +"GO:0043618","regulation of transcription from RNA pol...",10,0,0.6,999,"1.00000","0.56838","0.56838" +"GO:0043620","regulation of DNA-templated transcriptio...",10,0,0.6,1000,"1.00000","0.56838","0.56838" +"GO:1901564","organonitrogen compound metabolic proces...",921,67,55.14,51,"0.02569","0.05570","0.56840" +"GO:0007623","circadian rhythm",10,0,0.6,1001,"1.00000","0.56926","0.56926" +"GO:0009308","amine metabolic process",13,1,0.78,654,"0.55268","0.57109","0.57109" +"GO:0044106","cellular amine metabolic process",13,1,0.78,655,"0.55268","0.57109","0.57109" +"GO:0070997","neuron death",11,1,0.66,594,"0.49361","0.57361","0.57361" +"GO:1901214","regulation of neuron death",11,1,0.66,595,"0.49361","0.57361","0.57361" +"GO:0008610","lipid biosynthetic process",66,8,3.95,86,"0.04082","0.57371","0.57371" +"GO:0001944","vasculature development",17,1,1.02,744,"0.65106","0.57405","0.57405" +"GO:0009145","purine nucleoside triphosphate biosynthe...",18,0,1.08,1002,"1.00000","0.57442","0.57442" +"GO:0009206","purine ribonucleoside triphosphate biosy...",18,0,1.08,1003,"1.00000","0.57442","0.57442" +"GO:0006810","transport",507,35,30.35,303,"0.19202","0.57571","0.57571" +"GO:0042886","amide transport",151,11,9.04,406,"0.29134","0.57623","0.57623" +"GO:0009126","purine nucleoside monophosphate metaboli...",41,2,2.45,799,"0.71509","0.57675","0.57675" +"GO:0009144","purine nucleoside triphosphate metabolic...",41,2,2.45,800,"0.71509","0.57675","0.57675" +"GO:0009161","ribonucleoside monophosphate metabolic p...",41,2,2.45,801,"0.71509","0.57675","0.57675" +"GO:0009167","purine ribonucleoside monophosphate meta...",41,2,2.45,802,"0.71509","0.57675","0.57675" +"GO:0051174","regulation of phosphorus metabolic proce...",62,6,3.71,277,"0.16341","0.57699","0.57699" +"GO:0006323","DNA packaging",14,2,0.84,314,"0.20278","0.57710","0.57710" +"GO:0065004","protein-DNA complex assembly",14,2,0.84,315,"0.20278","0.57710","0.57710" +"GO:0042327","positive regulation of phosphorylation",24,2,1.44,523,"0.42603","0.57718","0.57718" +"GO:0031929","TOR signaling",11,0,0.66,1004,"1.00000","0.57926","0.57926" +"GO:0009416","response to light stimulus",15,1,0.9,711,"0.60490","0.58083","0.58083" +"GO:1903047","mitotic cell cycle process",60,6,3.59,247,"0.14634","0.13805","0.58339" +"GO:0048872","homeostasis of number of cells",11,0,0.66,1005,"1.00000","0.58675","0.58675" +"GO:0030097","hemopoiesis",17,1,1.02,745,"0.65106","0.58691","0.58691" +"GO:0010563","negative regulation of phosphorus metabo...",29,4,1.74,150,"0.09145","0.58720","0.58720" +"GO:0045936","negative regulation of phosphate metabol...",29,4,1.74,151,"0.09145","0.58720","0.58720" +"GO:0009059","macromolecule biosynthetic process",627,34,37.54,849,"0.78080","0.10616","0.58736" +"GO:0055074","calcium ion homeostasis",13,0,0.78,1006,"1.00000","0.58747","0.58747" +"GO:0048667","cell morphogenesis involved in neuron di...",32,4,1.92,203,"0.12088","0.58757","0.58757" +"GO:0061564","axon development",32,4,1.92,204,"0.12088","0.58757","0.58757" +"GO:0006626","protein targeting to mitochondrion",19,2,1.14,430,"0.31625","0.58775","0.58775" +"GO:0072657","protein localization to membrane",33,4,1.98,217,"0.13150","0.58805","0.58805" +"GO:0048856","anatomical structure development",303,23,18.14,218,"0.13178","0.59080","0.59080" +"GO:0006886","intracellular protein transport",116,8,6.94,496,"0.39232","0.59168","0.59168" +"GO:0044839","cell cycle G2/M phase transition",14,0,0.84,1007,"1.00000","0.59504","0.59504" +"GO:0048468","cell development",127,9,7.6,467,"0.34882","0.59608","0.59608" +"GO:0009123","nucleoside monophosphate metabolic proce...",42,2,2.51,811,"0.72760","0.59640","0.59640" +"GO:0072594","establishment of protein localization to...",52,4,3.11,482,"0.37895","0.60099","0.60099" +"GO:0031667","response to nutrient levels",29,2,1.74,637,"0.52607","0.60329","0.60329" +"GO:0009205","purine ribonucleoside triphosphate metab...",40,2,2.39,786,"0.70211","0.60352","0.60352" +"GO:0006310","DNA recombination",18,0,1.08,1008,"1.00000","0.60564","0.60564" +"GO:0065008","regulation of biological quality",198,16,11.85,216,"0.12947","0.60580","0.60580" +"GO:1903046","meiotic cell cycle process",13,2,0.78,296,"0.18054","0.60596","0.60596" +"GO:0042110","T cell activation",11,2,0.66,233,"0.13743","0.60614","0.60614" +"GO:0007420","brain development",34,4,2.04,241,"0.14248","0.60754","0.60754" +"GO:0060322","head development",34,4,2.04,242,"0.14248","0.60754","0.60754" +"GO:0007275","multicellular organism development",278,20,16.64,325,"0.21845","0.60983","0.60983" +"GO:1901575","organic substance catabolic process",174,15,10.42,152,"0.09272","0.09246","0.60987" +"GO:0016054","organic acid catabolic process",12,1,0.72,621,"0.52406","0.61031","0.61031" +"GO:0046395","carboxylic acid catabolic process",12,1,0.72,622,"0.52406","0.61031","0.61031" +"GO:0008283","cell proliferation",63,5,3.77,444,"0.32449","0.61083","0.61083" +"GO:0001568","blood vessel development",16,1,0.96,730,"0.62870","0.61111","0.61111" +"GO:0034660","ncRNA metabolic process",105,5,6.29,844,"0.76562","0.61143","0.61143" +"GO:0070585","protein localization to mitochondrion",20,2,1.2,458,"0.33876","0.61219","0.61219" +"GO:0072655","establishment of protein localization to...",20,2,1.2,459,"0.33876","0.61219","0.61219" +"GO:0016570","histone modification",52,0,3.11,1009,"1.00000","0.61280","0.61280" +"GO:0016042","lipid catabolic process",15,1,0.9,712,"0.60490","0.61685","0.61685" +"GO:0030198","extracellular matrix organization",14,1,0.84,680,"0.57960","0.61776","0.61776" +"GO:0015931","nucleobase-containing compound transport",21,0,1.26,1010,"1.00000","0.62080","0.62080" +"GO:0072522","purine-containing compound biosynthetic ...",33,0,1.98,1011,"1.00000","0.62104","0.62104" +"GO:0030155","regulation of cell adhesion",17,1,1.02,746,"0.65106","0.62110","0.62110" +"GO:0044057","regulation of system process",17,1,1.02,747,"0.65106","0.62110","0.62110" +"GO:0006066","alcohol metabolic process",18,3,1.08,149,"0.08867","0.62160","0.62160" +"GO:0023061","signal release",21,2,1.26,474,"0.36104","0.62357","0.62357" +"GO:0009888","tissue development",103,7,6.17,516,"0.42155","0.62399","0.62399" +"GO:0043401","steroid hormone mediated signaling pathw...",19,1,1.14,778,"0.69186","0.62453","0.62453" +"GO:0061024","membrane organization",49,3,2.93,670,"0.57034","0.62466","0.62466" +"GO:0043065","positive regulation of apoptotic process",20,2,1.2,460,"0.33876","0.62512","0.62512" +"GO:0043068","positive regulation of programmed cell d...",20,2,1.2,461,"0.33876","0.62512","0.62512" +"GO:0071396","cellular response to lipid",33,2,1.98,698,"0.59728","0.62547","0.62547" +"GO:0016579","protein deubiquitination",22,2,1.32,493,"0.38304","0.62698","0.62698" +"GO:0001817","regulation of cytokine production",12,0,0.72,1012,"1.00000","0.62779","0.62779" +"GO:0090150","establishment of protein localization to...",20,2,1.2,462,"0.33876","0.62869","0.62869" +"GO:0007626","locomotory behavior",12,1,0.72,623,"0.52406","0.62901","0.62901" +"GO:0031056","regulation of histone modification",12,0,0.72,1013,"1.00000","0.62901","0.62901" +"GO:1901699","cellular response to nitrogen compound",11,0,0.66,1014,"1.00000","0.62963","0.62963" +"GO:0043009","chordate embryonic development",36,2,2.16,735,"0.64526","0.63245","0.63245" +"GO:0006403","RNA localization",19,1,1.14,779,"0.69186","0.63271","0.63271" +"GO:0043408","regulation of MAPK cascade",21,2,1.26,475,"0.36104","0.63280","0.63280" +"GO:0007163","establishment or maintenance of cell pol...",12,0,0.72,1015,"1.00000","0.63307","0.63307" +"GO:0030154","cell differentiation",182,15,10.9,205,"0.12354","0.63348","0.63348" +"GO:0048812","neuron projection morphogenesis",34,4,2.04,243,"0.14248","0.63348","0.63348" +"GO:0048858","cell projection morphogenesis",34,4,2.04,244,"0.14248","0.63348","0.63348" +"GO:0120039","plasma membrane bounded cell projection ...",34,4,2.04,245,"0.14248","0.63348","0.63348" +"GO:0007005","mitochondrion organization",51,2,3.05,875,"0.82058","0.63554","0.63554" +"GO:0042127","regulation of cell proliferation",46,2,2.75,846,"0.77309","0.63581","0.63581" +"GO:0070887","cellular response to chemical stimulus",110,7,6.59,580,"0.49157","0.63592","0.63592" +"GO:0071310","cellular response to organic substance",92,5,5.51,751,"0.65516","0.63798","0.63798" +"GO:1901215","negative regulation of neuron death",10,1,0.6,557,"0.46123","0.63837","0.63837" +"GO:0009952","anterior/posterior pattern specification",11,0,0.66,1016,"1.00000","0.63895","0.63895" +"GO:1902275","regulation of chromatin organization",16,0,0.96,1017,"1.00000","0.63951","0.63951" +"GO:0070727","cellular macromolecule localization",161,13,9.64,276,"0.16214","0.63980","0.63980" +"GO:0006396","RNA processing",155,6,9.28,921,"0.91392","0.64199","0.64199" +"GO:0002790","peptide secretion",19,1,1.14,780,"0.69186","0.64476","0.64476" +"GO:0009306","protein secretion",19,1,1.14,781,"0.69186","0.64476","0.64476" +"GO:0009755","hormone-mediated signaling pathway",21,1,1.26,813,"0.72792","0.64478","0.64478" +"GO:0006754","ATP biosynthetic process",16,0,0.96,1018,"1.00000","0.64490","0.64490" +"GO:0019362","pyridine nucleotide metabolic process",11,0,0.66,1019,"1.00000","0.64587","0.64587" +"GO:0046496","nicotinamide nucleotide metabolic proces...",11,0,0.66,1020,"1.00000","0.64587","0.64587" +"GO:0072524","pyridine-containing compound metabolic p...",11,0,0.66,1021,"1.00000","0.64587","0.64587" +"GO:0051234","establishment of localization",519,36,31.07,288,"0.17892","0.64786","0.64786" +"GO:1902115","regulation of organelle assembly",13,0,0.78,1022,"1.00000","0.64940","0.64940" +"GO:0022900","electron transport chain",13,0,0.78,1023,"1.00000","0.65394","0.65394" +"GO:0008152","metabolic process",1767,107,105.79,540,"0.45334","0.27850","0.65611" +"GO:0034645","cellular macromolecule biosynthetic proc...",623,33,37.3,877,"0.82329","0.12950","0.65661" +"GO:0016458","gene silencing",17,2,1.02,393,"0.27081","0.65690","0.65690" +"GO:0051258","protein polymerization",30,3,1.8,378,"0.26609","0.65769","0.65769" +"GO:0055082","cellular chemical homeostasis",25,1,1.5,856,"0.78793","0.66213","0.66213" +"GO:0016477","cell migration",35,0,2.1,1024,"1.00000","0.66269","0.66269" +"GO:0009991","response to extracellular stimulus",30,2,1.8,646,"0.54464","0.66486","0.66486" +"GO:0006875","cellular metal ion homeostasis",20,1,1.2,792,"0.71045","0.66626","0.66626" +"GO:0046034","ATP metabolic process",37,2,2.22,756,"0.66022","0.66735","0.66735" +"GO:0009165","nucleotide biosynthetic process",43,0,2.57,1025,"1.00000","0.66819","0.66819" +"GO:1901293","nucleoside phosphate biosynthetic proces...",43,0,2.57,1026,"1.00000","0.66819","0.66819" +"GO:0006164","purine nucleotide biosynthetic process",30,0,1.8,1027,"1.00000","0.66895","0.66895" +"GO:0044281","small molecule metabolic process",229,19,13.71,144,"0.08526","0.67088","0.67088" +"GO:0044237","cellular metabolic process",1459,91,87.35,420,"0.30015","0.21261","0.67153" +"GO:0006352","DNA-templated transcription, initiation",25,1,1.5,857,"0.78793","0.67164","0.67164" +"GO:0006950","response to stress",254,20,15.21,202,"0.11803","0.01591","0.67180" +"GO:0006402","mRNA catabolic process",19,0,1.14,1028,"1.00000","0.67249","0.67249" +"GO:0001763","morphogenesis of a branching structure",10,0,0.6,1029,"1.00000","0.67447","0.67447" +"GO:0000904","cell morphogenesis involved in different...",46,5,2.75,235,"0.13744","0.67505","0.67505" +"GO:0040008","regulation of growth",34,1,2.04,905,"0.87912","0.67574","0.67574" +"GO:1902680","positive regulation of RNA biosynthetic ...",54,3,3.23,734,"0.63740","0.67669","0.67669" +"GO:0007154","cell communication",360,23,21.55,500,"0.40100","0.67731","0.67731" +"GO:0016310","phosphorylation",186,15,11.14,238,"0.14098","0.67845","0.67845" +"GO:0000413","protein peptidyl-prolyl isomerization",12,1,0.72,624,"0.52406","0.67869","0.67869" +"GO:0018208","peptidyl-proline modification",12,1,0.72,625,"0.52406","0.67869","0.67869" +"GO:0006338","chromatin remodeling",10,0,0.6,1030,"1.00000","0.67872","0.67872" +"GO:1903829","positive regulation of cellular protein ...",14,2,0.84,316,"0.20278","0.68029","0.68029" +"GO:0016482","cytosolic transport",14,1,0.84,681,"0.57960","0.68153","0.68153" +"GO:0006664","glycolipid metabolic process",12,2,0.72,272,"0.15870","0.68229","0.68229" +"GO:1903509","liposaccharide metabolic process",12,2,0.72,273,"0.15870","0.68229","0.68229" +"GO:0001736","establishment of planar polarity",10,0,0.6,1031,"1.00000","0.68339","0.68339" +"GO:0001738","morphogenesis of a polarized epithelium",10,0,0.6,1032,"1.00000","0.68339","0.68339" +"GO:0007164","establishment of tissue polarity",10,0,0.6,1033,"1.00000","0.68339","0.68339" +"GO:1902532","negative regulation of intracellular sig...",25,3,1.5,300,"0.18557","0.68352","0.68352" +"GO:0009152","purine ribonucleotide biosynthetic proce...",29,0,1.74,1034,"1.00000","0.68551","0.68551" +"GO:0072521","purine-containing compound metabolic pro...",63,6,3.77,284,"0.17226","0.68619","0.68619" +"GO:0071407","cellular response to organic cyclic comp...",31,2,1.86,668,"0.56270","0.68973","0.68973" +"GO:0009199","ribonucleoside triphosphate metabolic pr...",41,2,2.45,803,"0.71509","0.68977","0.68977" +"GO:0032940","secretion by cell",49,3,2.93,671,"0.57034","0.69053","0.69053" +"GO:0097191","extrinsic apoptotic signaling pathway",10,1,0.6,558,"0.46123","0.69402","0.69402" +"GO:0051640","organelle localization",36,2,2.16,736,"0.64526","0.69549","0.69549" +"GO:0032990","cell part morphogenesis",37,4,2.22,287,"0.17747","0.69605","0.69605" +"GO:0042692","muscle cell differentiation",18,2,1.08,412,"0.29358","0.69670","0.69670" +"GO:0097435","supramolecular fiber organization",47,4,2.81,427,"0.30924","0.70163","0.70163" +"GO:0008652","cellular amino acid biosynthetic process",12,1,0.72,626,"0.52406","0.70259","0.70259" +"GO:1901607","alpha-amino acid biosynthetic process",12,1,0.72,627,"0.52406","0.70259","0.70259" +"GO:0048869","cellular developmental process",190,15,11.38,274,"0.15974","0.70296","0.70296" +"GO:0051604","protein maturation",15,1,0.9,713,"0.60490","0.70333","0.70333" +"GO:0045786","negative regulation of cell cycle",35,0,2.1,1035,"1.00000","0.70647","0.70647" +"GO:0035295","tube development",44,3,2.63,601,"0.49627","0.70696","0.70696" +"GO:0051188","cofactor biosynthetic process",30,1,1.8,891,"0.84477","0.70717","0.70717" +"GO:0043062","extracellular structure organization",15,1,0.9,714,"0.60490","0.70793","0.70793" +"GO:0000956","nuclear-transcribed mRNA catabolic proce...",12,0,0.72,1036,"1.00000","0.70931","0.70931" +"GO:0048878","chemical homeostasis",39,1,2.33,920,"0.91162","0.71008","0.71008" +"GO:0010628","positive regulation of gene expression",76,6,4.55,424,"0.30179","0.71227","0.71227" +"GO:0055065","metal ion homeostasis",22,1,1.32,822,"0.74434","0.71619","0.71619" +"GO:0006820","anion transport",36,3,2.16,477,"0.36668","0.71771","0.71771" +"GO:0010562","positive regulation of phosphorus metabo...",26,2,1.56,567,"0.46742","0.71780","0.71780" +"GO:0045937","positive regulation of phosphate metabol...",26,2,1.56,568,"0.46742","0.71780","0.71780" +"GO:0006874","cellular calcium ion homeostasis",12,0,0.72,1037,"1.00000","0.71874","0.71874" +"GO:0071383","cellular response to steroid hormone sti...",20,1,1.2,793,"0.71045","0.72226","0.72226" +"GO:0006163","purine nucleotide metabolic process",59,5,3.53,400,"0.27661","0.72280","0.72280" +"GO:0018022","peptidyl-lysine methylation",13,1,0.78,656,"0.55268","0.72522","0.72522" +"GO:0072359","circulatory system development",39,4,2.33,308,"0.20226","0.72625","0.72625" +"GO:0009142","nucleoside triphosphate biosynthetic pro...",19,0,1.14,1038,"1.00000","0.72754","0.72754" +"GO:0009201","ribonucleoside triphosphate biosynthetic...",19,0,1.14,1039,"1.00000","0.72754","0.72754" +"GO:2001233","regulation of apoptotic signaling pathwa...",22,2,1.32,494,"0.38304","0.72766","0.72766" +"GO:0034613","cellular protein localization",160,13,9.58,262,"0.15688","0.72850","0.72850" +"GO:0018193","peptidyl-amino acid modification",81,4,4.85,810,"0.72600","0.72885","0.72885" +"GO:0022008","neurogenesis",90,7,5.39,407,"0.29153","0.73068","0.73068" +"GO:0048514","blood vessel morphogenesis",13,1,0.78,657,"0.55268","0.73206","0.73206" +"GO:0009259","ribonucleotide metabolic process",58,5,3.47,374,"0.26488","0.73210","0.73210" +"GO:0051050","positive regulation of transport",39,4,2.33,309,"0.20226","0.73362","0.73362" +"GO:0000086","G2/M transition of mitotic cell cycle",13,0,0.78,1040,"1.00000","0.73715","0.73715" +"GO:0007093","mitotic cell cycle checkpoint",13,0,0.78,1041,"1.00000","0.73727","0.73727" +"GO:0006022","aminoglycan metabolic process",38,8,2.28,5,"0.00144","0.00446","0.73842" +"GO:0009605","response to external stimulus",99,7,5.93,483,"0.38110","0.74019","0.74019" +"GO:0030855","epithelial cell differentiation",30,2,1.8,647,"0.54464","0.74034","0.74034" +"GO:0002791","regulation of peptide secretion",10,0,0.6,1042,"1.00000","0.74064","0.74064" +"GO:0006575","cellular modified amino acid metabolic p...",11,0,0.66,1043,"1.00000","0.74076","0.74076" +"GO:0010638","positive regulation of organelle organiz...",48,4,2.87,439,"0.32313","0.74123","0.74123" +"GO:0009150","purine ribonucleotide metabolic process",57,5,3.41,366,"0.25326","0.74144","0.74144" +"GO:0080090","regulation of primary metabolic process",412,24,24.67,696,"0.59583","0.74458","0.74458" +"GO:0006354","DNA-templated transcription, elongation",14,0,0.84,1044,"1.00000","0.74552","0.74552" +"GO:0022607","cellular component assembly",188,11,11.26,689,"0.58019","0.74564","0.74564" +"GO:0042180","cellular ketone metabolic process",11,0,0.66,1045,"1.00000","0.74757","0.74757" +"GO:0022603","regulation of anatomical structure morph...",31,2,1.86,669,"0.56270","0.74803","0.74803" +"GO:0071214","cellular response to abiotic stimulus",10,0,0.6,1046,"1.00000","0.74834","0.74834" +"GO:0104004","cellular response to environmental stimu...",10,0,0.6,1047,"1.00000","0.74834","0.74834" +"GO:0035556","intracellular signal transduction",131,8,7.84,642,"0.53159","0.74923","0.74923" +"GO:0071704","organic substance metabolic process",1579,96,94.53,527,"0.43689","0.23901","0.74960" +"GO:0007423","sensory organ development",43,2,2.57,818,"0.73964","0.75008","0.75008" +"GO:0007219","Notch signaling pathway",13,0,0.78,1048,"1.00000","0.75103","0.75103" +"GO:0048666","neuron development",65,5,3.89,466,"0.34880","0.75278","0.75278" +"GO:0030182","neuron differentiation",74,5,4.43,542,"0.45819","0.75626","0.75626" +"GO:0006468","protein phosphorylation",159,13,9.52,249,"0.15170","0.75682","0.75682" +"GO:0051493","regulation of cytoskeleton organization",30,3,1.8,379,"0.26609","0.75731","0.75731" +"GO:0051186","cofactor metabolic process",55,4,3.29,515,"0.42060","0.75878","0.75878" +"GO:0031570","DNA integrity checkpoint",12,0,0.72,1049,"1.00000","0.76032","0.76032" +"GO:0045596","negative regulation of cell differentiat...",25,1,1.5,858,"0.78793","0.76245","0.76245" +"GO:1901137","carbohydrate derivative biosynthetic pro...",98,5,5.87,787,"0.70981","0.76490","0.76490" +"GO:0006811","ion transport",146,12,8.74,275,"0.15993","0.76597","0.76597" +"GO:0070838","divalent metal ion transport",16,2,0.96,359,"0.24803","0.76764","0.76764" +"GO:0072511","divalent inorganic cation transport",16,2,0.96,360,"0.24803","0.76764","0.76764" +"GO:0009896","positive regulation of catabolic process",24,1,1.44,847,"0.77429","0.76768","0.76768" +"GO:0015985","energy coupled proton transport, down el...",10,0,0.6,1050,"1.00000","0.76781","0.76781" +"GO:0015986","ATP synthesis coupled proton transport",10,0,0.6,1051,"1.00000","0.76781","0.76781" +"GO:0015672","monovalent inorganic cation transport",47,1,2.81,934,"0.94652","0.76784","0.76784" +"GO:0009914","hormone transport",11,0,0.66,1052,"1.00000","0.76916","0.76916" +"GO:0030072","peptide hormone secretion",11,0,0.66,1053,"1.00000","0.76916","0.76916" +"GO:0046879","hormone secretion",11,0,0.66,1054,"1.00000","0.76916","0.76916" +"GO:0006694","steroid biosynthetic process",15,2,0.9,341,"0.22532","0.77192","0.77192" +"GO:0043410","positive regulation of MAPK cascade",10,0,0.6,1055,"1.00000","0.77380","0.77380" +"GO:0060828","regulation of canonical Wnt signaling pa...",10,0,0.6,1056,"1.00000","0.77488","0.77488" +"GO:0070925","organelle assembly",51,2,3.05,876,"0.82058","0.77689","0.77689" +"GO:0009987","cellular process",2003,119,119.92,722,"0.61601","0.30880","0.78180" +"GO:0007267","cell-cell signaling",57,4,3.41,538,"0.44802","0.78376","0.78376" +"GO:0007507","heart development",29,3,1.74,364,"0.24957","0.78384","0.78384" +"GO:0048699","generation of neurons",85,6,5.09,499,"0.40013","0.78513","0.78513" +"GO:0045926","negative regulation of growth",13,1,0.78,658,"0.55268","0.78575","0.78575" +"GO:0048871","multicellular organismal homeostasis",11,0,0.66,1057,"1.00000","0.78691","0.78691" +"GO:0051345","positive regulation of hydrolase activit...",26,3,1.56,306,"0.20117","0.78721","0.78721" +"GO:0048193","Golgi vesicle transport",33,1,1.98,902,"0.87131","0.78848","0.78848" +"GO:0016197","endosomal transport",17,1,1.02,748,"0.65106","0.78956","0.78956" +"GO:0045893","positive regulation of transcription, DN...",53,3,3.17,723,"0.62458","0.79077","0.79077" +"GO:1903508","positive regulation of nucleic acid-temp...",53,3,3.17,724,"0.62458","0.79077","0.79077" +"GO:0006399","tRNA metabolic process",62,3,3.71,817,"0.72888","0.79104","0.79104" +"GO:1902905","positive regulation of supramolecular fi...",20,1,1.2,794,"0.71045","0.79165","0.79165" +"GO:0010821","regulation of mitochondrion organization",12,1,0.72,628,"0.52406","0.79216","0.79216" +"GO:0006914","autophagy",36,2,2.16,737,"0.64526","0.79237","0.79237" +"GO:0061919","process utilizing autophagic mechanism",36,2,2.16,738,"0.64526","0.79237","0.79237" +"GO:0051171","regulation of nitrogen compound metaboli...",401,22,24.01,798,"0.71161","0.79323","0.79323" +"GO:0010817","regulation of hormone levels",25,2,1.5,536,"0.44694","0.79442","0.79442" +"GO:0007169","transmembrane receptor protein tyrosine ...",15,0,0.9,1058,"1.00000","0.79459","0.79459" +"GO:0010506","regulation of autophagy",15,0,0.9,1059,"1.00000","0.79556","0.79556" +"GO:0023052","signaling",355,23,21.25,481,"0.37320","0.79933","0.79933" +"GO:0003002","regionalization",22,0,1.32,1060,"1.00000","0.80008","0.80008" +"GO:0033108","mitochondrial respiratory chain complex ...",11,0,0.66,1061,"1.00000","0.80026","0.80026" +"GO:0060429","epithelium development",65,3,3.89,832,"0.75820","0.80088","0.80088" +"GO:0006470","protein dephosphorylation",16,0,0.96,1062,"1.00000","0.80253","0.80253" +"GO:0043086","negative regulation of catalytic activit...",29,2,1.74,638,"0.52607","0.80452","0.80452" +"GO:0022904","respiratory electron transport chain",12,0,0.72,1063,"1.00000","0.80792","0.80792" +"GO:0034470","ncRNA processing",77,3,4.61,895,"0.85088","0.80801","0.80801" +"GO:0006487","protein N-linked glycosylation",15,1,0.9,715,"0.60490","0.80866","0.80866" +"GO:0006873","cellular ion homeostasis",23,1,1.38,838,"0.75978","0.81088","0.81088" +"GO:0030003","cellular cation homeostasis",23,1,1.38,839,"0.75978","0.81088","0.81088" +"GO:0051129","negative regulation of cellular componen...",44,4,2.63,381,"0.26805","0.81381","0.81381" +"GO:1901605","alpha-amino acid metabolic process",20,2,1.2,463,"0.33876","0.81415","0.81415" +"GO:0060255","regulation of macromolecule metabolic pr...",423,22,25.32,868,"0.80266","0.81424","0.81424" +"GO:0051130","positive regulation of cellular componen...",78,6,4.67,442,"0.32337","0.81425","0.81425" +"GO:0098656","anion transmembrane transport",17,1,1.02,749,"0.65106","0.81546","0.81546" +"GO:0009260","ribonucleotide biosynthetic process",30,0,1.8,1064,"1.00000","0.81632","0.81632" +"GO:0046390","ribose phosphate biosynthetic process",30,0,1.8,1065,"1.00000","0.81632","0.81632" +"GO:0090066","regulation of anatomical structure size",33,2,1.98,699,"0.59728","0.81740","0.81740" +"GO:0009116","nucleoside metabolic process",15,2,0.9,342,"0.22532","0.81870","0.81870" +"GO:0009141","nucleoside triphosphate metabolic proces...",45,3,2.69,604,"0.51160","0.81886","0.81886" +"GO:0000226","microtubule cytoskeleton organization",33,2,1.98,700,"0.59728","0.81972","0.81972" +"GO:0007167","enzyme linked receptor protein signaling...",29,0,1.74,1066,"1.00000","0.82031","0.82031" +"GO:0060070","canonical Wnt signaling pathway",11,0,0.66,1067,"1.00000","0.82085","0.82085" +"GO:0006400","tRNA modification",18,1,1.08,769,"0.67209","0.82151","0.82151" +"GO:0048732","gland development",11,1,0.66,596,"0.49361","0.82169","0.82169" +"GO:0000041","transition metal ion transport",10,1,0.6,559,"0.46123","0.82189","0.82189" +"GO:0043269","regulation of ion transport",18,1,1.08,770,"0.67209","0.82263","0.82263" +"GO:0032271","regulation of protein polymerization",23,2,1.38,506,"0.40472","0.82306","0.82306" +"GO:2001235","positive regulation of apoptotic signali...",10,1,0.6,560,"0.46123","0.82315","0.82315" +"GO:0010720","positive regulation of cell development",18,0,1.08,1068,"1.00000","0.82432","0.82432" +"GO:0007178","transmembrane receptor protein serine/th...",15,0,0.9,1069,"1.00000","0.82702","0.82702" +"GO:0060284","regulation of cell development",43,1,2.57,927,"0.93124","0.82872","0.82872" +"GO:0048729","tissue morphogenesis",38,1,2.28,917,"0.90590","0.82901","0.82901" +"GO:0016073","snRNA metabolic process",11,0,0.66,1070,"1.00000","0.82969","0.82969" +"GO:0006497","protein lipidation",15,2,0.9,343,"0.22532","0.82977","0.82977" +"GO:0042157","lipoprotein metabolic process",15,2,0.9,344,"0.22532","0.82977","0.82977" +"GO:0042158","lipoprotein biosynthetic process",15,2,0.9,345,"0.22532","0.82977","0.82977" +"GO:0044283","small molecule biosynthetic process",64,5,3.83,452,"0.33662","0.83006","0.83006" +"GO:0006936","muscle contraction",11,0,0.66,1071,"1.00000","0.83063","0.83063" +"GO:0007417","central nervous system development",46,4,2.75,416,"0.29542","0.83092","0.83092" +"GO:0051056","regulation of small GTPase mediated sign...",14,1,0.84,682,"0.57960","0.83113","0.83113" +"GO:0050803","regulation of synapse structure or activ...",10,0,0.6,1072,"1.00000","0.83175","0.83175" +"GO:0006996","organelle organization",320,17,19.16,819,"0.74320","0.67967","0.83244" +"GO:0040017","positive regulation of locomotion",14,1,0.84,683,"0.57960","0.83312","0.83312" +"GO:0007165","signal transduction",329,19,19.7,718,"0.60731","0.83391","0.83391" +"GO:0001894","tissue homeostasis",10,0,0.6,1073,"1.00000","0.83409","0.83409" +"GO:0042775","mitochondrial ATP synthesis coupled elec...",10,0,0.6,1074,"1.00000","0.83728","0.83728" +"GO:0010721","negative regulation of cell development",13,0,0.78,1075,"1.00000","0.83970","0.83970" +"GO:0051962","positive regulation of nervous system de...",16,0,0.96,1076,"1.00000","0.84232","0.84232" +"GO:1903825","organic acid transmembrane transport",13,1,0.78,659,"0.55268","0.84300","0.84300" +"GO:1905039","carboxylic acid transmembrane transport",13,1,0.78,660,"0.55268","0.84300","0.84300" +"GO:0000902","cell morphogenesis",58,5,3.47,375,"0.26488","0.84416","0.84416" +"GO:0044272","sulfur compound biosynthetic process",13,0,0.78,1077,"1.00000","0.84479","0.84479" +"GO:0098657","import into cell",34,2,2.04,721,"0.61379","0.84513","0.84513" +"GO:0019693","ribose phosphate metabolic process",61,5,3.65,422,"0.30039","0.84531","0.84531" +"GO:0042060","wound healing",11,0,0.66,1078,"1.00000","0.84540","0.84540" +"GO:0030111","regulation of Wnt signaling pathway",13,0,0.78,1079,"1.00000","0.84794","0.84794" +"GO:0008064","regulation of actin polymerization or de...",17,2,1.02,394,"0.27081","0.84817","0.84817" +"GO:0030041","actin filament polymerization",17,2,1.02,395,"0.27081","0.84817","0.84817" +"GO:0030832","regulation of actin filament length",17,2,1.02,396,"0.27081","0.84817","0.84817" +"GO:0030833","regulation of actin filament polymerizat...",17,2,1.02,397,"0.27081","0.84817","0.84817" +"GO:0007015","actin filament organization",24,2,1.44,524,"0.42603","0.84875","0.84875" +"GO:0007399","nervous system development",122,8,7.3,539,"0.44873","0.84959","0.84959" +"GO:0031331","positive regulation of cellular cataboli...",21,1,1.26,814,"0.72792","0.84994","0.84994" +"GO:0050769","positive regulation of neurogenesis",15,0,0.9,1080,"1.00000","0.85146","0.85146" +"GO:0048646","anatomical structure formation involved ...",48,3,2.87,665,"0.55606","0.85188","0.85188" +"GO:0071900","regulation of protein serine/threonine k...",17,2,1.02,398,"0.27081","0.85236","0.85236" +"GO:0030335","positive regulation of cell migration",10,0,0.6,1081,"1.00000","0.85276","0.85276" +"GO:0044087","regulation of cellular component biogene...",58,4,3.47,566,"0.46158","0.85284","0.85284" +"GO:0016055","Wnt signaling pathway",20,1,1.2,795,"0.71045","0.85341","0.85341" +"GO:1905114","cell surface receptor signaling pathway ...",20,1,1.2,796,"0.71045","0.85341","0.85341" +"GO:0051960","regulation of nervous system development",36,1,2.16,915,"0.89334","0.85482","0.85482" +"GO:0006997","nucleus organization",10,1,0.6,561,"0.46123","0.85511","0.85511" +"GO:1901657","glycosyl compound metabolic process",16,2,0.96,361,"0.24803","0.85642","0.85642" +"GO:0044085","cellular component biogenesis",240,12,14.37,862,"0.79054","0.29764","0.85678" +"GO:0032273","positive regulation of protein polymeriz...",18,1,1.08,771,"0.67209","0.85791","0.85791" +"GO:0006401","RNA catabolic process",22,0,1.32,1082,"1.00000","0.85801","0.85801" +"GO:0090287","regulation of cellular response to growt...",11,0,0.66,1083,"1.00000","0.85834","0.85834" +"GO:0045944","positive regulation of transcription by ...",33,3,1.98,434,"0.31629","0.85879","0.85879" +"GO:0071495","cellular response to endogenous stimulus",47,1,2.81,935,"0.94652","0.86111","0.86111" +"GO:0007517","muscle organ development",25,2,1.5,537,"0.44694","0.86151","0.86151" +"GO:0033157","regulation of intracellular protein tran...",16,1,0.96,731,"0.62870","0.86238","0.86238" +"GO:0040011","locomotion",66,5,3.95,472,"0.36100","0.86240","0.86240" +"GO:0050767","regulation of neurogenesis",34,1,2.04,906,"0.87912","0.86241","0.86241" +"GO:0000075","cell cycle checkpoint",21,0,1.26,1084,"1.00000","0.86301","0.86301" +"GO:0048518","positive regulation of biological proces...",291,22,17.42,246,"0.14297","0.42148","0.86335" +"GO:0019752","carboxylic acid metabolic process",98,7,5.87,480,"0.37101","0.86399","0.86399" +"GO:0031175","neuron projection development",48,4,2.87,440,"0.32313","0.86501","0.86501" +"GO:0110053","regulation of actin filament organizatio...",18,2,1.08,413,"0.29358","0.86666","0.86666" +"GO:0051168","nuclear export",17,0,1.02,1085,"1.00000","0.86875","0.86875" +"GO:0042221","response to chemical",207,15,12.39,365,"0.25280","0.39857","0.87149" +"GO:0070201","regulation of establishment of protein l...",29,2,1.74,639,"0.52607","0.87154","0.87154" +"GO:0090087","regulation of peptide transport",29,1,1.74,886,"0.83477","0.87154","0.87154" +"GO:0048562","embryonic organ morphogenesis",14,1,0.84,684,"0.57960","0.87155","0.87155" +"GO:0017144","drug metabolic process",103,13,6.17,12,"0.00736","0.15621","0.87275" +"GO:0006366","transcription by RNA polymerase II",111,5,6.65,869,"0.80674","0.87290","0.87290" +"GO:0051239","regulation of multicellular organismal p...",101,4,6.05,901,"0.86614","0.87342","0.87342" +"GO:0006082","organic acid metabolic process",99,7,5.93,484,"0.38110","0.87359","0.87359" +"GO:0043436","oxoacid metabolic process",99,7,5.93,485,"0.38110","0.87359","0.87359" +"GO:1901615","organic hydroxy compound metabolic proce...",32,3,1.92,419,"0.29949","0.87443","0.87443" +"GO:0019222","regulation of metabolic process",453,24,27.12,850,"0.78273","0.87559","0.87559" +"GO:1901292","nucleoside phosphate catabolic process",13,1,0.78,661,"0.55268","0.87722","0.87722" +"GO:0043254","regulation of protein complex assembly",26,2,1.56,569,"0.46742","0.87822","0.87822" +"GO:0033673","negative regulation of kinase activity",10,1,0.6,562,"0.46123","0.87856","0.87856" +"GO:0009056","catabolic process",200,16,11.97,236,"0.13793","0.23116","0.88187" +"GO:0010647","positive regulation of cell communicatio...",65,3,3.89,833,"0.75820","0.88200","0.88200" +"GO:0023056","positive regulation of signaling",65,3,3.89,834,"0.75820","0.88200","0.88200" +"GO:0009057","macromolecule catabolic process",128,11,7.66,237,"0.14002","0.09524","0.88308" +"GO:0008154","actin polymerization or depolymerization",19,2,1.14,431,"0.31625","0.88312","0.88312" +"GO:0030030","cell projection organization",70,5,4.19,511,"0.40984","0.88355","0.88355" +"GO:0120036","plasma membrane bounded cell projection ...",70,5,4.19,512,"0.40984","0.88355","0.88355" +"GO:0048870","cell motility",39,0,2.33,1086,"1.00000","0.88368","0.88368" +"GO:0051674","localization of cell",39,0,2.33,1087,"1.00000","0.88368","0.88368" +"GO:0060562","epithelial tube morphogenesis",24,0,1.44,1088,"1.00000","0.88522","0.88522" +"GO:0051716","cellular response to stimulus",468,30,28.02,479,"0.36811","0.88533","0.88533" +"GO:0035239","tube morphogenesis",32,1,1.92,899,"0.86301","0.88842","0.88842" +"GO:0003012","muscle system process",13,0,0.78,1089,"1.00000","0.88867","0.88867" +"GO:0072503","cellular divalent inorganic cation homeo...",13,0,0.78,1090,"1.00000","0.88867","0.88867" +"GO:0031323","regulation of cellular metabolic process",418,22,25.03,851,"0.78386","0.88913","0.88913" +"GO:0050793","regulation of developmental process",102,3,6.11,939,"0.95092","0.88920","0.88920" +"GO:0007155","cell adhesion",56,3,3.35,758,"0.66211","0.88990","0.88990" +"GO:0022610","biological adhesion",56,3,3.35,759,"0.66211","0.88990","0.88990" +"GO:0002237","response to molecule of bacterial origin",10,0,0.6,1091,"1.00000","0.89026","0.89026" +"GO:0034655","nucleobase-containing compound catabolic...",37,2,2.22,757,"0.66022","0.89028","0.89028" +"GO:0006405","RNA export from nucleus",14,0,0.84,1092,"1.00000","0.89071","0.89071" +"GO:0031503","protein-containing complex localization",14,0,0.84,1093,"1.00000","0.89071","0.89071" +"GO:0009889","regulation of biosynthetic process",336,19,20.12,739,"0.64624","0.89076","0.89076" +"GO:0016043","cellular component organization",468,24,28.02,882,"0.83449","0.84422","0.89303" +"GO:0045664","regulation of neuron differentiation",26,1,1.56,867,"0.80075","0.89329","0.89329" +"GO:0016236","macroautophagy",16,0,0.96,1094,"1.00000","0.89340","0.89340" +"GO:0006807","nitrogen compound metabolic process",1436,86,85.97,643,"0.53236","0.20769","0.89359" +"GO:0043604","amide biosynthetic process",190,11,11.38,694,"0.59491","0.01141","0.89615" +"GO:0051146","striated muscle cell differentiation",16,1,0.96,732,"0.62870","0.89650","0.89650" +"GO:0044238","primary metabolic process",1498,86,89.68,835,"0.75916","0.42824","0.89668" +"GO:0090407","organophosphate biosynthetic process",75,5,4.49,571,"0.47013","0.89767","0.89767" +"GO:0006611","protein export from nucleus",13,0,0.78,1095,"1.00000","0.89814","0.89814" +"GO:0009166","nucleotide catabolic process",11,1,0.66,597,"0.49361","0.89832","0.89832" +"GO:0032535","regulation of cellular component size",27,2,1.62,576,"0.48744","0.89849","0.89849" +"GO:0009967","positive regulation of signal transducti...",60,2,3.59,912,"0.88420","0.89867","0.89867" +"GO:0070588","calcium ion transmembrane transport",10,1,0.6,563,"0.46123","0.90066","0.90066" +"GO:0006814","sodium ion transport",15,0,0.9,1096,"1.00000","0.90122","0.90122" +"GO:0008202","steroid metabolic process",20,2,1.2,464,"0.33876","0.90329","0.90329" +"GO:0007186","G protein-coupled receptor signaling pat...",49,1,2.93,940,"0.95285","0.90393","0.90393" +"GO:0031032","actomyosin structure organization",15,0,0.9,1097,"1.00000","0.90489","0.90489" +"GO:0000122","negative regulation of transcription by ...",26,0,1.56,1098,"1.00000","0.90619","0.90619" +"GO:0072330","monocarboxylic acid biosynthetic process",21,0,1.26,1099,"1.00000","0.90642","0.90642" +"GO:0051348","negative regulation of transferase activ...",12,1,0.72,629,"0.52406","0.90698","0.90698" +"GO:0044782","cilium organization",14,0,0.84,1100,"1.00000","0.90901","0.90901" +"GO:0051223","regulation of protein transport",28,1,1.68,878,"0.82412","0.90912","0.90912" +"GO:0032956","regulation of actin cytoskeleton organiz...",21,2,1.26,476,"0.36104","0.91086","0.91086" +"GO:0051046","regulation of secretion",15,0,0.9,1101,"1.00000","0.91088","0.91088" +"GO:1903530","regulation of secretion by cell",15,0,0.9,1102,"1.00000","0.91088","0.91088" +"GO:0006040","amino sugar metabolic process",34,8,2.04,3,"0.00066","0.00174","0.91195" +"GO:0007030","Golgi organization",10,0,0.6,1103,"1.00000","0.91311","0.91311" +"GO:0051028","mRNA transport",11,0,0.66,1104,"1.00000","0.91317","0.91317" +"GO:0071166","ribonucleoprotein complex localization",11,0,0.66,1105,"1.00000","0.91317","0.91317" +"GO:0071426","ribonucleoprotein complex export from nu...",11,0,0.66,1106,"1.00000","0.91317","0.91317" +"GO:0007389","pattern specification process",29,0,1.74,1107,"1.00000","0.91337","0.91337" +"GO:0034404","nucleobase-containing small molecule bio...",19,1,1.14,782,"0.69186","0.91463","0.91463" +"GO:0006357","regulation of transcription by RNA polym...",89,5,5.33,725,"0.62554","0.91478","0.91478" +"GO:0016053","organic acid biosynthetic process",34,1,2.04,907,"0.87912","0.91626","0.91626" +"GO:0046394","carboxylic acid biosynthetic process",34,1,2.04,908,"0.87912","0.91626","0.91626" +"GO:0043170","macromolecule metabolic process",1291,73,77.29,852,"0.78626","0.17392","0.91676" +"GO:0198738","cell-cell signaling by wnt",23,1,1.38,840,"0.75978","0.91724","0.91724" +"GO:0002009","morphogenesis of an epithelium",34,0,2.04,1108,"1.00000","0.91738","0.91738" +"GO:0001501","skeletal system development",16,0,0.96,1109,"1.00000","0.91971","0.91971" +"GO:0042147","retrograde transport, endosome to Golgi",10,1,0.6,564,"0.46123","0.91995","0.91995" +"GO:0007601","visual perception",13,1,0.78,662,"0.55268","0.92010","0.92010" +"GO:0050953","sensory perception of light stimulus",13,1,0.78,663,"0.55268","0.92010","0.92010" +"GO:0006091","generation of precursor metabolites and ...",34,0,2.04,1110,"1.00000","0.92011","0.92011" +"GO:0051301","cell division",24,2,1.44,525,"0.42603","0.92093","0.92093" +"GO:0007010","cytoskeleton organization",87,5,5.21,717,"0.60499","0.92177","0.92177" +"GO:0018205","peptidyl-lysine modification",32,1,1.92,900,"0.86301","0.92382","0.92382" +"GO:0006897","endocytosis",32,2,1.92,691,"0.58025","0.92498","0.92498" +"GO:0030029","actin filament-based process",51,3,3.05,703,"0.59805","0.92509","0.92509" +"GO:0030036","actin cytoskeleton organization",51,3,3.05,704,"0.59805","0.92509","0.92509" +"GO:0044249","cellular biosynthetic process",755,40,45.2,894,"0.85087","0.35630","0.92578" +"GO:1902531","regulation of intracellular signal trans...",75,4,4.49,760,"0.66749","0.92619","0.92619" +"GO:0072507","divalent inorganic cation homeostasis",15,0,0.9,1111,"1.00000","0.92631","0.92631" +"GO:0006081","cellular aldehyde metabolic process",10,1,0.6,565,"0.46123","0.92716","0.92716" +"GO:0003333","amino acid transmembrane transport",11,1,0.66,598,"0.49361","0.92819","0.92819" +"GO:0009612","response to mechanical stimulus",12,1,0.72,630,"0.52406","0.92932","0.92932" +"GO:0055001","muscle cell development",11,0,0.66,1112,"1.00000","0.92944","0.92944" +"GO:0055002","striated muscle cell development",11,0,0.66,1113,"1.00000","0.92944","0.92944" +"GO:0098609","cell-cell adhesion",28,2,1.68,603,"0.50700","0.93044","0.93044" +"GO:0046578","regulation of Ras protein signal transdu...",11,1,0.66,599,"0.49361","0.93272","0.93272" +"GO:0032970","regulation of actin filament-based proce...",23,2,1.38,507,"0.40472","0.93293","0.93293" +"GO:0010975","regulation of neuron projection developm...",16,0,0.96,1114,"1.00000","0.93316","0.93316" +"GO:0071840","cellular component organization or bioge...",515,25,30.83,919,"0.90817","0.75525","0.93413" +"GO:0055080","cation homeostasis",28,1,1.68,879,"0.82412","0.93463","0.93463" +"GO:0098771","inorganic ion homeostasis",28,1,1.68,880,"0.82412","0.93463","0.93463" +"GO:0006812","cation transport",90,5,5.39,733,"0.63558","0.93479","0.93479" +"GO:0051222","positive regulation of protein transport",14,1,0.84,685,"0.57960","0.93557","0.93557" +"GO:1904951","positive regulation of establishment of ...",14,1,0.84,686,"0.57960","0.93557","0.93557" +"GO:0010927","cellular component assembly involved in ...",10,0,0.6,1115,"1.00000","0.93566","0.93566" +"GO:1901566","organonitrogen compound biosynthetic pro...",325,18,19.46,774,"0.68006","0.17748","0.93663" +"GO:0050801","ion homeostasis",29,1,1.74,887,"0.83477","0.93694","0.93694" +"GO:0034097","response to cytokine",25,1,1.5,859,"0.78793","0.93751","0.93751" +"GO:0071345","cellular response to cytokine stimulus",25,1,1.5,860,"0.78793","0.93751","0.93751" +"GO:0051961","negative regulation of nervous system de...",11,0,0.66,1116,"1.00000","0.93807","0.93807" +"GO:0015980","energy derivation by oxidation of organi...",26,0,1.56,1117,"1.00000","0.93850","0.93850" +"GO:0019439","aromatic compound catabolic process",41,2,2.45,804,"0.71509","0.93878","0.93878" +"GO:0044270","cellular nitrogen compound catabolic pro...",41,2,2.45,805,"0.71509","0.93878","0.93878" +"GO:0046700","heterocycle catabolic process",41,2,2.45,806,"0.71509","0.93878","0.93878" +"GO:0006816","calcium ion transport",13,1,0.78,664,"0.55268","0.93891","0.93891" +"GO:0030001","metal ion transport",51,3,3.05,705,"0.59805","0.93971","0.93971" +"GO:0006865","amino acid transport",12,1,0.72,631,"0.52406","0.94036","0.94036" +"GO:0051272","positive regulation of cellular componen...",11,0,0.66,1118,"1.00000","0.94047","0.94047" +"GO:2000147","positive regulation of cell motility",11,0,0.66,1119,"1.00000","0.94047","0.94047" +"GO:0045333","cellular respiration",25,0,1.5,1120,"1.00000","0.94081","0.94081" +"GO:0010556","regulation of macromolecule biosynthetic...",327,17,19.58,848,"0.77516","0.94130","0.94130" +"GO:0003007","heart morphogenesis",11,0,0.66,1121,"1.00000","0.94314","0.94314" +"GO:0040012","regulation of locomotion",25,1,1.5,861,"0.78793","0.94557","0.94557" +"GO:0006813","potassium ion transport",10,0,0.6,1122,"1.00000","0.94610","0.94610" +"GO:0032543","mitochondrial translation",14,1,0.84,687,"0.57960","0.94669","0.94669" +"GO:0140053","mitochondrial gene expression",14,1,0.84,688,"0.57960","0.94669","0.94669" +"GO:1901361","organic cyclic compound catabolic proces...",44,2,2.63,828,"0.75123","0.94888","0.94888" +"GO:0042773","ATP synthesis coupled electron transport",11,0,0.66,1123,"1.00000","0.94916","0.94916" +"GO:0048638","regulation of developmental growth",14,0,0.84,1124,"1.00000","0.94944","0.94944" +"GO:0051093","negative regulation of developmental pro...",34,1,2.04,909,"0.87912","0.94954","0.94954" +"GO:0045595","regulation of cell differentiation",72,2,4.31,931,"0.93700","0.95019","0.95019" +"GO:0043543","protein acylation",25,0,1.5,1125,"1.00000","0.95146","0.95146" +"GO:0031334","positive regulation of protein complex a...",20,1,1.2,797,"0.71045","0.95358","0.95358" +"GO:0045597","positive regulation of cell differentiat...",32,0,1.92,1126,"1.00000","0.95373","0.95373" +"GO:0022604","regulation of cell morphogenesis",12,0,0.72,1127,"1.00000","0.95491","0.95491" +"GO:1901071","glucosamine-containing compound metaboli...",33,8,1.98,2,"0.00053","0.00096","0.95498" +"GO:0034220","ion transmembrane transport",74,5,4.43,543,"0.45819","0.95512","0.95512" +"GO:0031326","regulation of cellular biosynthetic proc...",331,17,19.82,863,"0.79220","0.95520","0.95520" +"GO:1901576","organic substance biosynthetic process",776,42,46.46,873,"0.81445","0.44843","0.95549" +"GO:0006473","protein acetylation",18,0,1.08,1128,"1.00000","0.95573","0.95573" +"GO:0006493","protein O-linked glycosylation",11,0,0.66,1129,"1.00000","0.96001","0.96001" +"GO:0009058","biosynthetic process",791,43,47.36,870,"0.80808","0.42659","0.96032" +"GO:0045010","actin nucleation",11,1,0.66,600,"0.49361","0.96065","0.96065" +"GO:0051495","positive regulation of cytoskeleton orga...",21,1,1.26,815,"0.72792","0.96364","0.96364" +"GO:0032502","developmental process",327,24,19.58,278,"0.16343","0.63565","0.96417" +"GO:0034329","cell junction assembly",11,0,0.66,1130,"1.00000","0.96449","0.96449" +"GO:0034330","cell junction organization",11,0,0.66,1131,"1.00000","0.96449","0.96449" +"GO:0033043","regulation of organelle organization",82,6,4.91,478,"0.36711","0.64801","0.96558" +"GO:0032787","monocarboxylic acid metabolic process",32,2,1.92,692,"0.58025","0.96559","0.96559" +"GO:0006119","oxidative phosphorylation",14,0,0.84,1132,"1.00000","0.96655","0.96655" +"GO:0065007","biological regulation",906,50,54.24,865,"0.79414","0.96479","0.96737" +"GO:0051128","regulation of cellular component organiz...",138,9,8.26,530,"0.44583","0.82771","0.96739" +"GO:0006720","isoprenoid metabolic process",12,1,0.72,632,"0.52406","0.96806","0.96806" +"GO:0031123","RNA 3'-end processing",10,0,0.6,1133,"1.00000","0.96812","0.96812" +"GO:0090304","nucleic acid metabolic process",625,28,37.42,946,"0.97538","0.96822","0.96822" +"GO:2000112","regulation of cellular macromolecule bio...",325,16,19.46,890,"0.83888","0.96876","0.96876" +"GO:0007265","Ras protein signal transduction",15,1,0.9,716,"0.60490","0.96975","0.96975" +"GO:0050808","synapse organization",15,0,0.9,1134,"1.00000","0.97018","0.97018" +"GO:0030838","positive regulation of actin filament po...",12,1,0.72,633,"0.52406","0.97081","0.97081" +"GO:0043043","peptide biosynthetic process",182,11,10.9,644,"0.53480","0.00430","0.97197" +"GO:0009628","response to abiotic stimulus",81,8,4.85,166,"0.10814","0.12553","0.97214" +"GO:0050789","regulation of biological process",855,47,51.19,866,"0.79469","0.96999","0.97253" +"GO:0009060","aerobic respiration",11,0,0.66,1135,"1.00000","0.97365","0.97365" +"GO:0010467","gene expression",689,29,41.25,951,"0.99313","0.53051","0.97424" +"GO:0060541","respiratory system development",16,0,0.96,1136,"1.00000","0.97494","0.97494" +"GO:0044089","positive regulation of cellular componen...",35,1,2.1,913,"0.88645","0.97499","0.97499" +"GO:0051094","positive regulation of developmental pro...",45,1,2.69,933,"0.93936","0.97505","0.97505" +"GO:0006139","nucleobase-containing compound metabolic...",721,36,43.17,923,"0.92369","0.97515","0.97515" +"GO:0007166","cell surface receptor signaling pathway",94,3,5.63,925,"0.92904","0.97543","0.97543" +"GO:0050794","regulation of cellular process",803,44,48.07,864,"0.79271","0.97492","0.97551" +"GO:0051240","positive regulation of multicellular org...",44,1,2.63,930,"0.93542","0.97561","0.97561" +"GO:0000910","cytokinesis",12,0,0.72,1137,"1.00000","0.97610","0.97610" +"GO:0051235","maintenance of location",13,0,0.78,1138,"1.00000","0.97656","0.97656" +"GO:0050657","nucleic acid transport",16,0,0.96,1139,"1.00000","0.97674","0.97674" +"GO:0050658","RNA transport",16,0,0.96,1140,"1.00000","0.97674","0.97674" +"GO:0051236","establishment of RNA localization",16,0,0.96,1141,"1.00000","0.97674","0.97674" +"GO:0050792","regulation of viral process",14,2,0.84,317,"0.20278","0.04433","0.97688" +"GO:0098655","cation transmembrane transport",50,2,2.99,871,"0.81185","0.97713","0.97713" +"GO:1902533","positive regulation of intracellular sig...",30,1,1.8,892,"0.84477","0.97717","0.97717" +"GO:0006475","internal protein amino acid acetylation",17,0,1.02,1142,"1.00000","0.97793","0.97793" +"GO:0016573","histone acetylation",17,0,1.02,1143,"1.00000","0.97793","0.97793" +"GO:0018393","internal peptidyl-lysine acetylation",17,0,1.02,1144,"1.00000","0.97793","0.97793" +"GO:0018394","peptidyl-lysine acetylation",17,0,1.02,1145,"1.00000","0.97793","0.97793" +"GO:0015893","drug transport",12,0,0.72,1146,"1.00000","0.97835","0.97835" +"GO:0006887","exocytosis",24,0,1.44,1147,"1.00000","0.97905","0.97905" +"GO:0098660","inorganic ion transmembrane transport",45,2,2.69,843,"0.76238","0.97943","0.97943" +"GO:0098662","inorganic cation transmembrane transport",44,2,2.63,829,"0.75123","0.97989","0.97989" +"GO:0043087","regulation of GTPase activity",17,1,1.02,750,"0.65106","0.98005","0.98005" +"GO:0002376","immune system process",82,8,4.91,174,"0.11405","0.10280","0.98076" +"GO:0051259","protein complex oligomerization",13,0,0.78,1148,"1.00000","0.98108","0.98108" +"GO:0019219","regulation of nucleobase-containing comp...",319,15,19.1,910,"0.87920","0.98198","0.98198" +"GO:0016999","antibiotic metabolic process",14,0,0.84,1149,"1.00000","0.98294","0.98294" +"GO:0034654","nucleobase-containing compound biosynthe...",399,14,23.89,953,"0.99420","0.98298","0.98298" +"GO:0051241","negative regulation of multicellular org...",30,1,1.8,893,"0.84477","0.98339","0.98339" +"GO:0044271","cellular nitrogen compound biosynthetic ...",603,26,36.1,948,"0.98377","0.71976","0.98380" +"GO:0051047","positive regulation of secretion",11,0,0.66,1150,"1.00000","0.98398","0.98398" +"GO:1903532","positive regulation of secretion by cell",11,0,0.66,1151,"1.00000","0.98398","0.98398" +"GO:0034641","cellular nitrogen compound metabolic pro...",913,48,54.66,916,"0.89362","0.60842","0.98511" +"GO:0010256","endomembrane system organization",27,1,1.62,872,"0.81280","0.98514","0.98514" +"GO:0008406","gonad development",10,0,0.6,1152,"1.00000","0.98547","0.98547" +"GO:0010639","negative regulation of organelle organiz...",23,1,1.38,841,"0.75978","0.98556","0.98556" +"GO:0030334","regulation of cell migration",18,0,1.08,1153,"1.00000","0.98630","0.98630" +"GO:0050896","response to stimulus",594,39,35.56,402,"0.27790","0.81966","0.98732" +"GO:1901362","organic cyclic compound biosynthetic pro...",432,17,25.86,949,"0.98499","0.98751","0.98751" +"GO:1901360","organic cyclic compound metabolic proces...",763,38,45.68,929,"0.93337","0.98761","0.98761" +"GO:0031589","cell-substrate adhesion",11,0,0.66,1154,"1.00000","0.98767","0.98767" +"GO:0060271","cilium assembly",12,0,0.72,1155,"1.00000","0.98787","0.98787" +"GO:0070848","response to growth factor",19,0,1.14,1156,"1.00000","0.98850","0.98850" +"GO:0071363","cellular response to growth factor stimu...",19,0,1.14,1157,"1.00000","0.98850","0.98850" +"GO:0018130","heterocycle biosynthetic process",418,15,25.03,952,"0.99382","0.98853","0.98853" +"GO:0046483","heterocycle metabolic process",744,37,44.54,928,"0.93155","0.98870","0.98870" +"GO:2000026","regulation of multicellular organismal d...",70,2,4.19,926,"0.93015","0.98871","0.98871" +"GO:0006725","cellular aromatic compound metabolic pro...",741,37,44.36,924,"0.92719","0.98887","0.98887" +"GO:0019438","aromatic compound biosynthetic process",413,15,24.73,950,"0.99263","0.98888","0.98888" +"GO:0008033","tRNA processing",38,1,2.28,918,"0.90590","0.98900","0.98900" +"GO:2001251","negative regulation of chromosome organi...",14,0,0.84,1158,"1.00000","0.98997","0.98997" +"GO:0048863","stem cell differentiation",18,0,1.08,1159,"1.00000","0.99005","0.99005" +"GO:0007548","sex differentiation",14,0,0.84,1160,"1.00000","0.99153","0.99153" +"GO:0045137","development of primary sexual characteri...",11,0,0.66,1161,"1.00000","0.99294","0.99294" +"GO:0035601","protein deacylation",11,0,0.66,1162,"1.00000","0.99335","0.99335" +"GO:0071559","response to transforming growth factor b...",11,0,0.66,1163,"1.00000","0.99335","0.99335" +"GO:0071560","cellular response to transforming growth...",11,0,0.66,1164,"1.00000","0.99335","0.99335" +"GO:0098732","macromolecule deacylation",11,0,0.66,1165,"1.00000","0.99335","0.99335" +"GO:0010468","regulation of gene expression",345,15,20.65,932,"0.93822","0.99335","0.99335" +"GO:0032774","RNA biosynthetic process",339,13,20.3,947,"0.97743","0.99371","0.99371" +"GO:0006351","transcription, DNA-templated",336,13,20.12,944,"0.97512","0.99389","0.99389" +"GO:0097659","nucleic acid-templated transcription",336,13,20.12,945,"0.97512","0.99389","0.99389" +"GO:0006476","protein deacetylation",10,0,0.6,1166,"1.00000","0.99395","0.99395" +"GO:0043405","regulation of MAP kinase activity",10,0,0.6,1167,"1.00000","0.99448","0.99448" +"GO:0016070","RNA metabolic process",526,20,31.49,954,"0.99511","0.99478","0.99478" +"GO:0031344","regulation of cell projection organizati...",27,0,1.62,1168,"1.00000","0.99528","0.99528" +"GO:0120035","regulation of plasma membrane bounded ce...",27,0,1.62,1169,"1.00000","0.99528","0.99528" +"GO:0051252","regulation of RNA metabolic process",304,12,18.2,943,"0.96371","0.99569","0.99569" +"GO:2001141","regulation of RNA biosynthetic process",293,12,17.54,938,"0.94898","0.99626","0.99626" +"GO:0006355","regulation of transcription, DNA-templat...",292,12,17.48,936,"0.94741","0.99631","0.99631" +"GO:1903506","regulation of nucleic acid-templated tra...",292,12,17.48,937,"0.94741","0.99631","0.99631" +"GO:0051270","regulation of cellular component movemen...",21,0,1.26,1170,"1.00000","0.99666","0.99666" +"GO:2000145","regulation of cell motility",20,0,1.2,1171,"1.00000","0.99682","0.99682" +"GO:0007264","small GTPase mediated signal transductio...",29,1,1.74,888,"0.83477","0.99699","0.99699" +"GO:0030031","cell projection assembly",16,0,0.96,1172,"1.00000","0.99706","0.99706" +"GO:0120031","plasma membrane bounded cell projection ...",16,0,0.96,1173,"1.00000","0.99706","0.99706" +"GO:0043547","positive regulation of GTPase activity",12,0,0.72,1174,"1.00000","0.99780","0.99780" +"GO:0060491","regulation of cell projection assembly",10,0,0.6,1175,"1.00000","0.99842","0.99842" +"GO:0120032","regulation of plasma membrane bounded ce...",10,0,0.6,1176,"1.00000","0.99842","0.99842" +"GO:0043903","regulation of symbiosis, encompassing mu...",18,2,1.08,414,"0.29358","0.18770","0.99848" +"GO:0008150","biological_process",2589,155,155,1177,"1.00000","1.00000","1.00000" +"GO:0051783","regulation of nuclear division",11,2,0.66,234,"0.13743","0.00741","1.00000" diff --git a/GO_enrichment_output/contrast_phoretic_phoreticCaged_upregulated.csv b/GO_enrichment_output/contrast_phoretic_phoreticCaged_upregulated.csv index 5d3b63b..036496d 100644 --- a/GO_enrichment_output/contrast_phoretic_phoreticCaged_upregulated.csv +++ b/GO_enrichment_output/contrast_phoretic_phoreticCaged_upregulated.csv @@ -1,6 +1,2897 @@ "GO.ID","Term","Annotated","Significant","Expected","Rank in classicFisher","classicFisher","classicKS","elimKS" -"GO:0007186","G protein-coupled receptor signaling pat...",71,10,5.09,31,"0.0278","5.7e-05","5.7e-05" -"GO:0006720","isoprenoid metabolic process",17,3,1.22,96,"0.1174","0.0013","0.0013" +"GO:0007186","G protein-coupled receptor signaling pat...",71,10,5.09,31,"0.02776","5.7e-05","5.7e-05" +"GO:0006720","isoprenoid metabolic process",17,3,1.22,96,"0.11744","0.0013","0.0013" "GO:0055085","transmembrane transport",220,34,15.78,1,"6.4e-06","0.0022","0.0014" -"GO:0015696","ammonium transport",5,3,0.36,7,"0.0033","0.0053","0.0053" -"GO:0034308","primary alcohol metabolic process",4,2,0.29,32,"0.0279","0.0079","0.0079" +"GO:0015696","ammonium transport",5,3,0.36,7,"0.00326","0.0053","0.0053" +"GO:0034308","primary alcohol metabolic process",4,2,0.29,32,"0.02787","0.0079","0.0079" +"GO:0034754","cellular hormone metabolic process",4,1,0.29,249,"0.25762","0.0079","0.0079" +"GO:0019637","organophosphate metabolic process",112,7,8.03,1057,"0.70561","0.0080","0.0080" +"GO:0032501","multicellular organismal process",365,28,26.18,578,"0.37800","0.0084","0.0084" +"GO:0032412","regulation of ion transmembrane transpor...",17,2,1.22,503,"0.34738","0.0100","0.0100" +"GO:0006576","cellular biogenic amine metabolic proces...",5,2,0.36,48,"0.04428","0.0103","0.0103" +"GO:0009584","detection of visible light",4,1,0.29,250,"0.25762","0.0104","0.0104" +"GO:0001523","retinoid metabolic process",5,1,0.36,412,"0.31095","0.0104","0.0104" +"GO:0006721","terpenoid metabolic process",5,1,0.36,413,"0.31095","0.0104","0.0104" +"GO:0016101","diterpenoid metabolic process",5,1,0.36,414,"0.31095","0.0104","0.0104" +"GO:0015893","drug transport",9,3,0.65,28,"0.02207","0.0107","0.0107" +"GO:0006650","glycerophospholipid metabolic process",33,1,2.37,1306,"0.91567","0.0108","0.0108" +"GO:0019627","urea metabolic process",3,2,0.22,21,"0.01462","0.0119","0.0119" +"GO:0010883","regulation of lipid storage",4,1,0.29,251,"0.25762","0.0128","0.0128" +"GO:0010889","regulation of sequestering of triglyceri...",4,1,0.29,252,"0.25762","0.0128","0.0128" +"GO:0030730","sequestering of triglyceride",4,1,0.29,253,"0.25762","0.0128","0.0128" +"GO:0006654","phosphatidic acid biosynthetic process",3,1,0.22,154,"0.20018","0.0135","0.0135" +"GO:0046473","phosphatidic acid metabolic process",3,1,0.22,155,"0.20018","0.0135","0.0135" +"GO:0006338","chromatin remodeling",18,1,1.29,1096,"0.73934","0.0136","0.0136" +"GO:0005975","carbohydrate metabolic process",85,13,6.1,13,"0.00645","0.0142","0.0142" +"GO:1904062","regulation of cation transmembrane trans...",19,2,1.36,585,"0.40032","0.0144","0.0144" +"GO:0006816","calcium ion transport",25,1,1.79,1247,"0.84591","0.0152","0.0152" +"GO:0006644","phospholipid metabolic process",45,2,3.23,1245,"0.84538","0.0166","0.0166" +"GO:0042391","regulation of membrane potential",16,1,1.15,1024,"0.69719","0.0170","0.0170" +"GO:2001257","regulation of cation channel activity",16,2,1.15,481,"0.32033","0.0170","0.0170" +"GO:0010959","regulation of metal ion transport",13,1,0.93,922,"0.62092","0.0190","0.0190" +"GO:0051924","regulation of calcium ion transport",10,1,0.72,786,"0.52559","0.0193","0.0193" +"GO:0006040","amino sugar metabolic process",12,3,0.86,53,"0.04931","0.0196","0.0196" +"GO:1901071","glucosamine-containing compound metaboli...",12,3,0.86,54,"0.04931","0.0196","0.0196" +"GO:0051091","positive regulation of DNA-binding trans...",13,3,0.93,59,"0.06082","0.0200","0.0200" +"GO:0009581","detection of external stimulus",15,2,1.08,402,"0.29302","0.0204","0.0204" +"GO:0009582","detection of abiotic stimulus",15,2,1.08,403,"0.29302","0.0204","0.0204" +"GO:0002115","store-operated calcium entry",4,1,0.29,254,"0.25762","0.0204","0.0204" +"GO:2001256","regulation of store-operated calcium ent...",4,1,0.29,255,"0.25762","0.0204","0.0204" +"GO:0015807","L-amino acid transport",4,3,0.29,3,"0.00138","0.0234","0.0234" +"GO:1902475","L-alpha-amino acid transmembrane transpo...",4,3,0.29,4,"0.00138","0.0234","0.0234" +"GO:0007275","multicellular organism development",302,23,21.66,649,"0.41115","0.0238","0.0238" +"GO:0015695","organic cation transport",4,2,0.29,33,"0.02787","0.0267","0.0267" +"GO:0046148","pigment biosynthetic process",5,2,0.36,49,"0.04428","0.0268","0.0268" +"GO:0006629","lipid metabolic process",136,10,9.75,776,"0.51720","0.0027","0.0270" +"GO:0019318","hexose metabolic process",19,5,1.36,14,"0.00911","0.0281","0.0281" +"GO:0009308","amine metabolic process",6,2,0.43,62,"0.06334","0.0290","0.0290" +"GO:0044106","cellular amine metabolic process",6,2,0.43,63,"0.06334","0.0290","0.0290" +"GO:0006638","neutral lipid metabolic process",6,2,0.43,64,"0.06334","0.0292","0.0292" +"GO:0006639","acylglycerol metabolic process",6,2,0.43,65,"0.06334","0.0292","0.0292" +"GO:0046461","neutral lipid catabolic process",6,2,0.43,66,"0.06334","0.0292","0.0292" +"GO:0046464","acylglycerol catabolic process",6,2,0.43,67,"0.06334","0.0292","0.0292" +"GO:0005996","monosaccharide metabolic process",22,6,1.58,9,"0.00354","0.0315","0.0315" +"GO:0060998","regulation of dendritic spine developmen...",9,1,0.65,726,"0.48879","0.0323","0.0323" +"GO:0046486","glycerolipid metabolic process",39,2,2.8,1158,"0.78217","0.0329","0.0329" +"GO:0044242","cellular lipid catabolic process",21,5,1.51,18,"0.01419","0.0332","0.0332" +"GO:0006820","anion transport",40,6,2.87,61,"0.06238","0.0335","0.0335" +"GO:0046503","glycerolipid catabolic process",9,2,0.65,104,"0.13204","0.0349","0.0349" +"GO:0050982","detection of mechanical stimulus",6,1,0.43,512,"0.36047","0.0359","0.0359" +"GO:0016042","lipid catabolic process",27,5,1.94,44,"0.03973","0.0374","0.0374" +"GO:0030258","lipid modification",20,2,1.43,657,"0.42604","0.0375","0.0375" +"GO:0048856","anatomical structure development",325,25,23.31,579,"0.38320","0.0376","0.0376" +"GO:0051606","detection of stimulus",19,2,1.36,586,"0.40032","0.0387","0.0387" +"GO:0006874","cellular calcium ion homeostasis",16,1,1.15,1025,"0.69719","0.0389","0.0389" +"GO:0072503","cellular divalent inorganic cation homeo...",16,1,1.15,1026,"0.69719","0.0389","0.0389" +"GO:0046475","glycerophospholipid catabolic process",3,0,0.22,1440,"1.00000","0.0395","0.0395" +"GO:0050864","regulation of B cell activation",5,1,0.36,415,"0.31095","0.0402","0.0402" +"GO:0001501","skeletal system development",18,3,1.29,112,"0.13385","0.0413","0.0413" +"GO:0008291","acetylcholine metabolic process",4,0,0.29,1441,"1.00000","0.0415","0.0415" +"GO:1900619","acetate ester metabolic process",4,0,0.29,1442,"1.00000","0.0415","0.0415" +"GO:0010172","embryonic body morphogenesis",5,0,0.36,1443,"1.00000","0.0421","0.0421" +"GO:0007351","tripartite regional subdivision",3,0,0.22,1444,"1.00000","0.0424","0.0424" +"GO:0008595","anterior/posterior axis specification, e...",3,0,0.22,1445,"1.00000","0.0424","0.0424" +"GO:0098656","anion transmembrane transport",19,4,1.36,46,"0.04234","0.0424","0.0424" +"GO:1901699","cellular response to nitrogen compound",19,2,1.36,587,"0.40032","0.0442","0.0442" +"GO:0014902","myotube differentiation",10,1,0.72,787,"0.52559","0.0453","0.0453" +"GO:0010171","body morphogenesis",8,0,0.57,1446,"1.00000","0.0465","0.0465" +"GO:0097164","ammonium ion metabolic process",13,2,0.93,244,"0.23813","0.0474","0.0474" +"GO:0003333","amino acid transmembrane transport",11,4,0.79,11,"0.00566","0.0475","0.0475" +"GO:0006865","amino acid transport",11,4,0.79,12,"0.00566","0.0475","0.0475" +"GO:0042147","retrograde transport, endosome to Golgi",13,2,0.93,245,"0.23813","0.0478","0.0478" +"GO:0048513","animal organ development",190,15,13.63,581,"0.38652","0.0480","0.0480" +"GO:0071941","nitrogen cycle metabolic process",4,2,0.29,34,"0.02787","0.0514","0.0514" +"GO:0006030","chitin metabolic process",9,3,0.65,29,"0.02207","0.0526","0.0526" +"GO:0043648","dicarboxylic acid metabolic process",8,3,0.57,23,"0.01552","0.0531","0.0531" +"GO:1905952","regulation of lipid localization",5,1,0.36,416,"0.31095","0.0553","0.0553" +"GO:0042445","hormone metabolic process",11,2,0.79,138,"0.18392","0.0028","0.0564" +"GO:0006383","transcription by RNA polymerase III",7,0,0.5,1447,"1.00000","0.0568","0.0568" +"GO:0048731","system development",259,19,18.58,767,"0.49625","0.0570","0.0570" +"GO:0006855","drug transmembrane transport",5,3,0.36,8,"0.00326","0.0571","0.0571" +"GO:0007215","glutamate receptor signaling pathway",8,1,0.57,670,"0.44915","0.0573","0.0573" +"GO:0019216","regulation of lipid metabolic process",12,1,0.86,876,"0.59148","0.0582","0.0582" +"GO:0070838","divalent metal ion transport",28,1,2.01,1282,"0.87706","0.0587","0.0587" +"GO:0072511","divalent inorganic cation transport",28,1,2.01,1283,"0.87706","0.0587","0.0587" +"GO:0042133","neurotransmitter metabolic process",10,1,0.72,788,"0.52559","0.0589","0.0589" +"GO:0005977","glycogen metabolic process",8,2,0.57,87,"0.10760","0.0614","0.0614" +"GO:0006073","cellular glucan metabolic process",8,2,0.57,88,"0.10760","0.0614","0.0614" +"GO:0006112","energy reserve metabolic process",8,2,0.57,89,"0.10760","0.0614","0.0614" +"GO:0044042","glucan metabolic process",8,2,0.57,90,"0.10760","0.0614","0.0614" +"GO:0006406","mRNA export from nucleus",3,1,0.22,156,"0.20018","0.0619","0.0619" +"GO:0071427","mRNA-containing ribonucleoprotein comple...",3,1,0.22,157,"0.20018","0.0619","0.0619" +"GO:0007218","neuropeptide signaling pathway",3,2,0.22,22,"0.01462","0.0632","0.0632" +"GO:0008610","lipid biosynthetic process",47,2,3.37,1266,"0.86245","0.0633","0.0633" +"GO:0006261","DNA-dependent DNA replication",15,0,1.08,1448,"1.00000","0.0642","0.0642" +"GO:0071417","cellular response to organonitrogen comp...",17,2,1.22,504,"0.34738","0.0644","0.0644" +"GO:0051090","regulation of DNA-binding transcription ...",16,3,1.15,86,"0.10184","0.0656","0.0656" +"GO:0055074","calcium ion homeostasis",17,1,1.22,1069,"0.71905","0.0673","0.0673" +"GO:0050678","regulation of epithelial cell proliferat...",10,1,0.72,789,"0.52559","0.0675","0.0675" +"GO:0055006","cardiac cell development",7,0,0.5,1449,"1.00000","0.0734","0.0734" +"GO:0042471","ear morphogenesis",4,2,0.29,35,"0.02787","0.0742","0.0742" +"GO:0042472","inner ear morphogenesis",4,2,0.29,36,"0.02787","0.0742","0.0742" +"GO:0000578","embryonic axis specification",4,0,0.29,1450,"1.00000","0.0751","0.0751" +"GO:0006022","aminoglycan metabolic process",11,3,0.79,42,"0.03899","0.0753","0.0753" +"GO:0048706","embryonic skeletal system development",8,3,0.57,24,"0.01552","0.0789","0.0789" +"GO:0046470","phosphatidylcholine metabolic process",3,0,0.22,1451,"1.00000","0.0792","0.0792" +"GO:0051125","regulation of actin nucleation",4,0,0.29,1452,"1.00000","0.0794","0.0794" +"GO:0051127","positive regulation of actin nucleation",4,0,0.29,1453,"1.00000","0.0794","0.0794" +"GO:0042113","B cell activation",7,1,0.5,607,"0.40646","0.0806","0.0806" +"GO:0031497","chromatin assembly",8,1,0.57,671,"0.44915","0.0827","0.0827" +"GO:0019915","lipid storage",8,1,0.57,672,"0.44915","0.0869","0.0869" +"GO:0051569","regulation of histone H3-K4 methylation",3,1,0.22,158,"0.20018","0.0869","0.0869" +"GO:0035995","detection of muscle stretch",5,0,0.36,1454,"1.00000","0.0880","0.0880" +"GO:0055003","cardiac myofibril assembly",5,0,0.36,1455,"1.00000","0.0880","0.0880" +"GO:1903919","negative regulation of actin filament se...",5,0,0.36,1456,"1.00000","0.0880","0.0880" +"GO:1903920","positive regulation of actin filament se...",5,0,0.36,1457,"1.00000","0.0880","0.0880" +"GO:0015849","organic acid transport",21,4,1.51,57,"0.05850","0.0890","0.0890" +"GO:0046942","carboxylic acid transport",21,4,1.51,58,"0.05850","0.0890","0.0890" +"GO:0060996","dendritic spine development",10,1,0.72,790,"0.52559","0.0891","0.0891" +"GO:0006164","purine nucleotide biosynthetic process",29,2,2.08,942,"0.62728","0.0902","0.0902" +"GO:0072522","purine-containing compound biosynthetic ...",29,2,2.08,943,"0.62728","0.0902","0.0902" +"GO:0016051","carbohydrate biosynthetic process",17,3,1.22,97,"0.11744","0.0903","0.0903" +"GO:0009410","response to xenobiotic stimulus",6,1,0.43,513,"0.36047","0.0918","0.0918" +"GO:0097352","autophagosome maturation",5,1,0.36,417,"0.31095","0.0920","0.0920" +"GO:0006397","mRNA processing",43,0,3.08,1458,"1.00000","0.0923","0.0923" +"GO:0005976","polysaccharide metabolic process",10,2,0.72,122,"0.15757","0.0937","0.0937" +"GO:0050994","regulation of lipid catabolic process",4,1,0.29,256,"0.25762","0.0950","0.0950" +"GO:0016197","endosomal transport",25,2,1.79,829,"0.54508","0.0957","0.0957" +"GO:0072521","purine-containing compound metabolic pro...",44,3,3.16,938,"0.62212","0.0960","0.0960" +"GO:0090175","regulation of establishment of planar po...",7,0,0.5,1459,"1.00000","0.0979","0.0979" +"GO:0009395","phospholipid catabolic process",6,1,0.43,514,"0.36047","0.0982","0.0982" +"GO:0071375","cellular response to peptide hormone sti...",11,1,0.79,836,"0.55976","0.0992","0.0992" +"GO:1901653","cellular response to peptide",11,1,0.79,837,"0.55976","0.0992","0.0992" +"GO:0055013","cardiac muscle cell development",6,0,0.43,1460,"1.00000","0.1007","0.1007" +"GO:0098693","regulation of synaptic vesicle cycle",7,0,0.5,1461,"1.00000","0.1009","0.1009" +"GO:0099601","regulation of neurotransmitter receptor ...",7,0,0.5,1462,"1.00000","0.1009","0.1009" +"GO:1900449","regulation of glutamate receptor signali...",7,0,0.5,1463,"1.00000","0.1009","0.1009" +"GO:1903825","organic acid transmembrane transport",14,4,1,19,"0.01448","0.1056","0.1056" +"GO:1905039","carboxylic acid transmembrane transport",14,4,1,20,"0.01448","0.1056","0.1056" +"GO:0006163","purine nucleotide metabolic process",40,2,2.87,1173,"0.79407","0.1056","0.1056" +"GO:0009165","nucleotide biosynthetic process",40,2,2.87,1174,"0.79407","0.1056","0.1056" +"GO:1901293","nucleoside phosphate biosynthetic proces...",40,2,2.87,1175,"0.79407","0.1056","0.1056" +"GO:1905330","regulation of morphogenesis of an epithe...",9,0,0.65,1464,"1.00000","0.1066","0.1066" +"GO:0072507","divalent inorganic cation homeostasis",18,1,1.29,1097,"0.73934","0.1074","0.1074" +"GO:0009642","response to light intensity",4,1,0.29,257,"0.25762","0.1076","0.1076" +"GO:0035282","segmentation",11,1,0.79,838,"0.55976","0.1079","0.1079" +"GO:0035518","histone H2A monoubiquitination",4,1,0.29,258,"0.25762","0.1086","0.1086" +"GO:0050909","sensory perception of taste",3,0,0.22,1465,"1.00000","0.1092","0.1092" +"GO:0051235","maintenance of location",19,2,1.36,588,"0.40032","0.1102","0.1102" +"GO:0009117","nucleotide metabolic process",56,3,4.02,1156,"0.77849","0.1118","0.1118" +"GO:0034220","ion transmembrane transport",86,11,6.17,45,"0.04056","0.0364","0.1142" +"GO:0006779","porphyrin-containing compound biosynthet...",3,0,0.22,1466,"1.00000","0.1142","0.1142" +"GO:0006783","heme biosynthetic process",3,0,0.22,1467,"1.00000","0.1142","0.1142" +"GO:0015740","C4-dicarboxylate transport",3,0,0.22,1468,"1.00000","0.1142","0.1142" +"GO:0042168","heme metabolic process",3,0,0.22,1469,"1.00000","0.1142","0.1142" +"GO:0006260","DNA replication",31,0,2.22,1470,"1.00000","0.1154","0.1154" +"GO:0032456","endocytic recycling",8,0,0.57,1471,"1.00000","0.1154","0.1154" +"GO:0005978","glycogen biosynthetic process",6,1,0.43,515,"0.36047","0.1156","0.1156" +"GO:0009250","glucan biosynthetic process",6,1,0.43,516,"0.36047","0.1156","0.1156" +"GO:0033692","cellular polysaccharide biosynthetic pro...",6,1,0.43,517,"0.36047","0.1156","0.1156" +"GO:0034637","cellular carbohydrate biosynthetic proce...",6,1,0.43,518,"0.36047","0.1156","0.1156" +"GO:0009583","detection of light stimulus",6,1,0.43,519,"0.36047","0.1176","0.1176" +"GO:0072348","sulfur compound transport",6,0,0.43,1472,"1.00000","0.1186","0.1186" +"GO:0044264","cellular polysaccharide metabolic proces...",9,2,0.65,105,"0.13204","0.1188","0.1188" +"GO:0044281","small molecule metabolic process",209,26,14.99,6,"0.00295","0.0620","0.1199" +"GO:0006188","IMP biosynthetic process",3,1,0.22,159,"0.20018","0.1207","0.1207" +"GO:0055082","cellular chemical homeostasis",23,1,1.65,1208,"0.82091","0.1222","0.1222" +"GO:0098655","cation transmembrane transport",50,6,3.59,118,"0.14448","0.1229","0.1229" +"GO:0009798","axis specification",10,1,0.72,791,"0.52559","0.1241","0.1241" +"GO:0070897","transcription preinitiation complex asse...",5,0,0.36,1473,"1.00000","0.1247","0.1247" +"GO:0010390","histone monoubiquitination",7,1,0.5,608,"0.40646","0.1268","0.1268" +"GO:0060359","response to ammonium ion",9,2,0.65,106,"0.13204","0.1269","0.1269" +"GO:0033866","nucleoside bisphosphate biosynthetic pro...",5,0,0.36,1474,"1.00000","0.1271","0.1271" +"GO:0034030","ribonucleoside bisphosphate biosynthetic...",5,0,0.36,1475,"1.00000","0.1271","0.1271" +"GO:0034033","purine nucleoside bisphosphate biosynthe...",5,0,0.36,1476,"1.00000","0.1271","0.1271" +"GO:0043044","ATP-dependent chromatin remodeling",8,1,0.57,673,"0.44915","0.1272","0.1272" +"GO:0002695","negative regulation of leukocyte activat...",4,1,0.29,259,"0.25762","0.1275","0.1275" +"GO:0050866","negative regulation of cell activation",4,1,0.29,260,"0.25762","0.1275","0.1275" +"GO:0051250","negative regulation of lymphocyte activa...",4,1,0.29,261,"0.25762","0.1275","0.1275" +"GO:0007308","oocyte construction",4,0,0.29,1477,"1.00000","0.1275","0.1275" +"GO:0007309","oocyte axis specification",4,0,0.29,1478,"1.00000","0.1275","0.1275" +"GO:0043270","positive regulation of ion transport",10,2,0.72,123,"0.15757","0.1280","0.1280" +"GO:0050906","detection of stimulus involved in sensor...",8,1,0.57,674,"0.44915","0.1290","0.1290" +"GO:0007204","positive regulation of cytosolic calcium...",4,0,0.29,1479,"1.00000","0.1294","0.1294" +"GO:0051480","regulation of cytosolic calcium ion conc...",4,0,0.29,1480,"1.00000","0.1294","0.1294" +"GO:0060402","calcium ion transport into cytosol",4,0,0.29,1481,"1.00000","0.1294","0.1294" +"GO:0008016","regulation of heart contraction",15,2,1.08,404,"0.29302","0.1309","0.1309" +"GO:0006333","chromatin assembly or disassembly",11,1,0.79,839,"0.55976","0.1312","0.1312" +"GO:0065004","protein-DNA complex assembly",11,0,0.79,1482,"1.00000","0.1312","0.1312" +"GO:0043583","ear development",9,2,0.65,107,"0.13204","0.1315","0.1315" +"GO:0048839","inner ear development",9,2,0.65,108,"0.13204","0.1315","0.1315" +"GO:0070588","calcium ion transmembrane transport",16,0,1.15,1483,"1.00000","0.1326","0.1326" +"GO:0048705","skeletal system morphogenesis",11,2,0.79,139,"0.18392","0.1342","0.1342" +"GO:0006753","nucleoside phosphate metabolic process",57,3,4.09,1165,"0.78875","0.1347","0.1347" +"GO:0045662","negative regulation of myoblast differen...",6,0,0.43,1484,"1.00000","0.1356","0.1356" +"GO:0048017","inositol lipid-mediated signaling",6,0,0.43,1485,"1.00000","0.1356","0.1356" +"GO:0008202","steroid metabolic process",13,1,0.93,923,"0.62092","0.1367","0.1367" +"GO:0007272","ensheathment of neurons",5,0,0.36,1486,"1.00000","0.1373","0.1373" +"GO:0008366","axon ensheathment",5,0,0.36,1487,"1.00000","0.1373","0.1373" +"GO:0001889","liver development",3,1,0.22,160,"0.20018","0.1380","0.1380" +"GO:0031128","developmental induction",3,1,0.22,161,"0.20018","0.1380","0.1380" +"GO:0046578","regulation of Ras protein signal transdu...",28,3,2.01,493,"0.32541","0.1382","0.1382" +"GO:0030155","regulation of cell adhesion",15,1,1.08,984,"0.67363","0.1390","0.1390" +"GO:0033627","cell adhesion mediated by integrin",5,0,0.36,1488,"1.00000","0.1403","0.1403" +"GO:0031060","regulation of histone methylation",4,1,0.29,262,"0.25762","0.1408","0.1408" +"GO:2001022","positive regulation of response to DNA d...",4,0,0.29,1489,"1.00000","0.1408","0.1408" +"GO:0099172","presynapse organization",8,0,0.57,1490,"1.00000","0.1413","0.1413" +"GO:0007492","endoderm development",6,1,0.43,520,"0.36047","0.1417","0.1417" +"GO:0050680","negative regulation of epithelial cell p...",6,1,0.43,521,"0.36047","0.1417","0.1417" +"GO:0007350","blastoderm segmentation",6,0,0.43,1491,"1.00000","0.1417","0.1417" +"GO:0007265","Ras protein signal transduction",32,3,2.3,606,"0.40594","0.1419","0.1419" +"GO:0042490","mechanoreceptor differentiation",3,1,0.22,162,"0.20018","0.1423","0.1423" +"GO:0060113","inner ear receptor cell differentiation",3,1,0.22,163,"0.20018","0.1423","0.1423" +"GO:0046834","lipid phosphorylation",6,0,0.43,1492,"1.00000","0.1431","0.1431" +"GO:0046854","phosphatidylinositol phosphorylation",6,0,0.43,1493,"1.00000","0.1431","0.1431" +"GO:0031297","replication fork processing",4,0,0.29,1494,"1.00000","0.1433","0.1433" +"GO:0045005","DNA-dependent DNA replication maintenanc...",4,0,0.29,1495,"1.00000","0.1433","0.1433" +"GO:0006941","striated muscle contraction",11,2,0.79,140,"0.18392","0.1444","0.1444" +"GO:1901698","response to nitrogen compound",40,4,2.87,492,"0.32181","0.1445","0.1445" +"GO:0045577","regulation of B cell differentiation",3,1,0.22,164,"0.20018","0.1456","0.1456" +"GO:0050869","negative regulation of B cell activation",3,1,0.22,165,"0.20018","0.1456","0.1456" +"GO:0043388","positive regulation of DNA binding",3,0,0.22,1496,"1.00000","0.1456","0.1456" +"GO:0015936","coenzyme A metabolic process",4,0,0.29,1497,"1.00000","0.1461","0.1461" +"GO:0002682","regulation of immune system process",49,4,3.51,719,"0.47159","0.1488","0.1488" +"GO:0016601","Rac protein signal transduction",3,0,0.22,1498,"1.00000","0.1497","0.1497" +"GO:0015711","organic anion transport",28,4,2.01,116,"0.13635","0.1503","0.1503" +"GO:0035023","regulation of Rho protein signal transdu...",22,3,1.58,228,"0.20609","0.1503","0.1503" +"GO:0010842","retina layer formation",4,1,0.29,263,"0.25762","0.1539","0.1539" +"GO:0006334","nucleosome assembly",6,0,0.43,1499,"1.00000","0.1544","0.1544" +"GO:0071103","DNA conformation change",14,2,1,388,"0.26557","0.1550","0.1550" +"GO:0008272","sulfate transport",3,0,0.22,1500,"1.00000","0.1552","0.1552" +"GO:0007009","plasma membrane organization",6,0,0.43,1501,"1.00000","0.1556","0.1556" +"GO:0007399","nervous system development",160,10,11.48,1089,"0.72626","0.1560","0.1560" +"GO:0009414","response to water deprivation",3,1,0.22,166,"0.20018","0.1561","0.1561" +"GO:0009415","response to water",3,1,0.22,167,"0.20018","0.1561","0.1561" +"GO:0006352","DNA-templated transcription, initiation",13,0,0.93,1502,"1.00000","0.1562","0.1562" +"GO:0006641","triglyceride metabolic process",3,1,0.22,168,"0.20018","0.1568","0.1568" +"GO:0010896","regulation of triglyceride catabolic pro...",3,1,0.22,169,"0.20018","0.1568","0.1568" +"GO:0010898","positive regulation of triglyceride cata...",3,1,0.22,170,"0.20018","0.1568","0.1568" +"GO:0019433","triglyceride catabolic process",3,1,0.22,171,"0.20018","0.1568","0.1568" +"GO:0050996","positive regulation of lipid catabolic p...",3,1,0.22,172,"0.20018","0.1568","0.1568" +"GO:0060191","regulation of lipase activity",3,1,0.22,173,"0.20018","0.1568","0.1568" +"GO:0060193","positive regulation of lipase activity",3,1,0.22,174,"0.20018","0.1568","0.1568" +"GO:0090207","regulation of triglyceride metabolic pro...",3,1,0.22,175,"0.20018","0.1568","0.1568" +"GO:0090208","positive regulation of triglyceride meta...",3,1,0.22,176,"0.20018","0.1568","0.1568" +"GO:0044255","cellular lipid metabolic process",106,7,7.6,976,"0.64850","0.0234","0.1575" +"GO:0008285","negative regulation of cell proliferatio...",24,3,1.72,248,"0.24500","0.1575","0.1575" +"GO:0044262","cellular carbohydrate metabolic process",20,2,1.43,658,"0.42604","0.1581","0.1581" +"GO:0006513","protein monoubiquitination",12,1,0.86,877,"0.59148","0.1584","0.1584" +"GO:0010948","negative regulation of cell cycle proces...",7,0,0.5,1503,"1.00000","0.1594","0.1594" +"GO:0019752","carboxylic acid metabolic process",101,14,7.24,15,"0.01142","0.1594","0.1594" +"GO:0006875","cellular metal ion homeostasis",19,1,1.36,1128,"0.75818","0.1598","0.1598" +"GO:0006094","gluconeogenesis",5,1,0.36,418,"0.31095","0.1604","0.1604" +"GO:0019319","hexose biosynthetic process",5,1,0.36,419,"0.31095","0.1604","0.1604" +"GO:0046364","monosaccharide biosynthetic process",5,1,0.36,420,"0.31095","0.1604","0.1604" +"GO:0007164","establishment of tissue polarity",11,0,0.79,1504,"1.00000","0.1618","0.1618" +"GO:0032502","developmental process",363,28,26.04,570,"0.36593","0.1625","0.1625" +"GO:0009948","anterior/posterior axis specification",4,0,0.29,1505,"1.00000","0.1634","0.1634" +"GO:0046835","carbohydrate phosphorylation",5,0,0.36,1506,"1.00000","0.1648","0.1648" +"GO:0008277","regulation of G protein-coupled receptor...",4,1,0.29,264,"0.25762","0.1657","0.1657" +"GO:0042059","negative regulation of epidermal growth ...",4,0,0.29,1507,"1.00000","0.1657","0.1657" +"GO:1901185","negative regulation of ERBB signaling pa...",4,0,0.29,1508,"1.00000","0.1657","0.1657" +"GO:0031124","mRNA 3'-end processing",5,0,0.36,1509,"1.00000","0.1660","0.1660" +"GO:0051607","defense response to virus",3,0,0.22,1510,"1.00000","0.1684","0.1684" +"GO:0097194","execution phase of apoptosis",3,0,0.22,1511,"1.00000","0.1684","0.1684" +"GO:0032102","negative regulation of response to exter...",7,0,0.5,1512,"1.00000","0.1693","0.1693" +"GO:0006611","protein export from nucleus",4,1,0.29,265,"0.25762","0.1694","0.1694" +"GO:0071166","ribonucleoprotein complex localization",4,1,0.29,266,"0.25762","0.1694","0.1694" +"GO:0071426","ribonucleoprotein complex export from nu...",4,1,0.29,267,"0.25762","0.1694","0.1694" +"GO:0006082","organic acid metabolic process",102,14,7.32,16,"0.01242","0.1701","0.1701" +"GO:0043436","oxoacid metabolic process",102,14,7.32,17,"0.01242","0.1701","0.1701" +"GO:0051928","positive regulation of calcium ion trans...",5,1,0.36,421,"0.31095","0.1708","0.1708" +"GO:0008299","isoprenoid biosynthetic process",10,0,0.72,1513,"1.00000","0.1717","0.1717" +"GO:0009435","NAD biosynthetic process",3,0,0.22,1514,"1.00000","0.1719","0.1719" +"GO:0071824","protein-DNA complex subunit organization",13,0,0.93,1515,"1.00000","0.1739","0.1739" +"GO:0042135","neurotransmitter catabolic process",6,1,0.43,522,"0.36047","0.1742","0.1742" +"GO:0099054","presynapse assembly",6,0,0.43,1516,"1.00000","0.1755","0.1755" +"GO:0006323","DNA packaging",10,1,0.72,792,"0.52559","0.1761","0.1761" +"GO:2000177","regulation of neural precursor cell prol...",4,2,0.29,37,"0.02787","0.1774","0.1774" +"GO:0009880","embryonic pattern specification",10,0,0.72,1517,"1.00000","0.1782","0.1782" +"GO:0003300","cardiac muscle hypertrophy",6,0,0.43,1518,"1.00000","0.1793","0.1793" +"GO:0014896","muscle hypertrophy",6,0,0.43,1519,"1.00000","0.1793","0.1793" +"GO:0014897","striated muscle hypertrophy",6,0,0.43,1520,"1.00000","0.1793","0.1793" +"GO:0043967","histone H4 acetylation",4,0,0.29,1521,"1.00000","0.1801","0.1801" +"GO:0006658","phosphatidylserine metabolic process",3,0,0.22,1522,"1.00000","0.1820","0.1820" +"GO:0009074","aromatic amino acid family catabolic pro...",6,2,0.43,68,"0.06334","0.1827","0.1827" +"GO:0042558","pteridine-containing compound metabolic ...",4,1,0.29,268,"0.25762","0.1840","0.1840" +"GO:0042737","drug catabolic process",4,1,0.29,269,"0.25762","0.1840","0.1840" +"GO:0002696","positive regulation of leukocyte activat...",7,0,0.5,1523,"1.00000","0.1844","0.1844" +"GO:0050867","positive regulation of cell activation",7,0,0.5,1524,"1.00000","0.1844","0.1844" +"GO:0051251","positive regulation of lymphocyte activa...",7,0,0.5,1525,"1.00000","0.1844","0.1844" +"GO:0007266","Rho protein signal transduction",23,3,1.65,238,"0.22538","0.1845","0.1845" +"GO:0048771","tissue remodeling",10,0,0.72,1526,"1.00000","0.1847","0.1847" +"GO:0072657","protein localization to membrane",26,0,1.86,1527,"1.00000","0.1850","0.1850" +"GO:0044282","small molecule catabolic process",29,5,2.08,56,"0.05209","0.1872","0.1872" +"GO:0050804","modulation of chemical synaptic transmis...",22,2,1.58,720,"0.47568","0.1873","0.1873" +"GO:0099177","regulation of trans-synaptic signaling",22,2,1.58,721,"0.47568","0.1873","0.1873" +"GO:0016054","organic acid catabolic process",22,4,1.58,76,"0.06765","0.1877","0.1877" +"GO:0046395","carboxylic acid catabolic process",22,4,1.58,77,"0.06765","0.1877","0.1877" +"GO:0016574","histone ubiquitination",9,1,0.65,727,"0.48879","0.1880","0.1880" +"GO:0030183","B cell differentiation",5,1,0.36,422,"0.31095","0.1887","0.1887" +"GO:0006360","transcription by RNA polymerase I",3,1,0.22,177,"0.20018","0.1888","0.1888" +"GO:0043269","regulation of ion transport",25,2,1.79,830,"0.54508","0.0096","0.1893" +"GO:0015937","coenzyme A biosynthetic process",3,0,0.22,1528,"1.00000","0.1901","0.1901" +"GO:0000271","polysaccharide biosynthetic process",7,1,0.5,609,"0.40646","0.1910","0.1910" +"GO:0010243","response to organonitrogen compound",38,4,2.73,400,"0.28849","0.1915","0.1915" +"GO:0090407","organophosphate biosynthetic process",63,3,4.52,1243,"0.84237","0.1915","0.1915" +"GO:0034728","nucleosome organization",9,0,0.65,1529,"1.00000","0.1974","0.1974" +"GO:0009152","purine ribonucleotide biosynthetic proce...",27,1,1.94,1272,"0.86744","0.1995","0.1995" +"GO:0006835","dicarboxylic acid transport",5,1,0.36,423,"0.31095","0.1996","0.1996" +"GO:0007267","cell-cell signaling",77,4,5.52,1198,"0.81576","0.2004","0.2004" +"GO:0007268","chemical synaptic transmission",32,2,2.3,1009,"0.68107","0.2004","0.2004" +"GO:0098916","anterograde trans-synaptic signaling",32,2,2.3,1010,"0.68107","0.2004","0.2004" +"GO:0099536","synaptic signaling",32,2,2.3,1011,"0.68107","0.2004","0.2004" +"GO:0099537","trans-synaptic signaling",32,2,2.3,1012,"0.68107","0.2004","0.2004" +"GO:0007605","sensory perception of sound",4,2,0.29,38,"0.02787","0.2007","0.2007" +"GO:0050954","sensory perception of mechanical stimulu...",4,2,0.29,39,"0.02787","0.2007","0.2007" +"GO:0032411","positive regulation of transporter activ...",7,1,0.5,610,"0.40646","0.2011","0.2011" +"GO:0032414","positive regulation of ion transmembrane...",7,1,0.5,611,"0.40646","0.2011","0.2011" +"GO:0051899","membrane depolarization",7,1,0.5,612,"0.40646","0.2011","0.2011" +"GO:2001259","positive regulation of cation channel ac...",7,1,0.5,613,"0.40646","0.2011","0.2011" +"GO:0007420","brain development",51,5,3.66,408,"0.30118","0.2026","0.2026" +"GO:0009065","glutamine family amino acid catabolic pr...",3,0,0.22,1530,"1.00000","0.2035","0.2035" +"GO:0043279","response to alkaloid",4,1,0.29,270,"0.25762","0.2037","0.2037" +"GO:0042552","myelination",4,0,0.29,1531,"1.00000","0.2043","0.2043" +"GO:0003015","heart process",16,2,1.15,482,"0.32033","0.2044","0.2044" +"GO:0060047","heart contraction",16,2,1.15,483,"0.32033","0.2044","0.2044" +"GO:1903522","regulation of blood circulation",16,2,1.15,484,"0.32033","0.2044","0.2044" +"GO:1901617","organic hydroxy compound biosynthetic pr...",14,2,1,389,"0.26557","0.2044","0.2044" +"GO:0045663","positive regulation of myoblast differen...",6,0,0.43,1532,"1.00000","0.2069","0.2069" +"GO:0048260","positive regulation of receptor-mediated...",3,0,0.22,1533,"1.00000","0.2076","0.2076" +"GO:0019395","fatty acid oxidation",10,2,0.72,124,"0.15757","0.2093","0.2093" +"GO:0034440","lipid oxidation",10,2,0.72,125,"0.15757","0.2093","0.2093" +"GO:0051149","positive regulation of muscle cell diffe...",7,0,0.5,1534,"1.00000","0.2099","0.2099" +"GO:0051155","positive regulation of striated muscle c...",7,0,0.5,1535,"1.00000","0.2099","0.2099" +"GO:0071709","membrane assembly",7,0,0.5,1536,"1.00000","0.2099","0.2099" +"GO:0072525","pyridine-containing compound biosyntheti...",15,1,1.08,985,"0.67363","0.2100","0.2100" +"GO:0071025","RNA surveillance",4,1,0.29,271,"0.25762","0.2101","0.2101" +"GO:0071027","nuclear RNA surveillance",4,1,0.29,272,"0.25762","0.2101","0.2101" +"GO:0008631","intrinsic apoptotic signaling pathway in...",3,0,0.22,1537,"1.00000","0.2101","0.2101" +"GO:0015698","inorganic anion transport",12,2,0.86,231,"0.21085","0.2101","0.2101" +"GO:0001678","cellular glucose homeostasis",3,0,0.22,1538,"1.00000","0.2103","0.2103" +"GO:0033522","histone H2A ubiquitination",6,1,0.43,523,"0.36047","0.2109","0.2109" +"GO:0006081","cellular aldehyde metabolic process",8,3,0.57,25,"0.01552","0.2115","0.2115" +"GO:0001736","establishment of planar polarity",10,0,0.72,1539,"1.00000","0.2118","0.2118" +"GO:0001974","blood vessel remodeling",6,0,0.43,1540,"1.00000","0.2119","0.2119" +"GO:0002026","regulation of the force of heart contrac...",6,0,0.43,1541,"1.00000","0.2119","0.2119" +"GO:0010831","positive regulation of myotube different...",6,0,0.43,1542,"1.00000","0.2119","0.2119" +"GO:0035994","response to muscle stretch",6,0,0.43,1543,"1.00000","0.2119","0.2119" +"GO:0051014","actin filament severing",6,0,0.43,1544,"1.00000","0.2119","0.2119" +"GO:1903918","regulation of actin filament severing",6,0,0.43,1545,"1.00000","0.2119","0.2119" +"GO:0006694","steroid biosynthetic process",9,1,0.65,728,"0.48879","0.2121","0.2121" +"GO:0046488","phosphatidylinositol metabolic process",21,0,1.51,1546,"1.00000","0.2134","0.2134" +"GO:0046822","regulation of nucleocytoplasmic transpor...",4,2,0.29,40,"0.02787","0.2153","0.2153" +"GO:1901988","negative regulation of cell cycle phase ...",3,0,0.22,1547,"1.00000","0.2167","0.2167" +"GO:1901991","negative regulation of mitotic cell cycl...",3,0,0.22,1548,"1.00000","0.2167","0.2167" +"GO:0048518","positive regulation of biological proces...",296,16,21.23,1308,"0.92008","0.2168","0.2168" +"GO:0006171","cAMP biosynthetic process",3,0,0.22,1549,"1.00000","0.2171","0.2171" +"GO:0046058","cAMP metabolic process",3,0,0.22,1550,"1.00000","0.2171","0.2171" +"GO:0000726","non-recombinational repair",3,1,0.22,178,"0.20018","0.2192","0.2192" +"GO:0006303","double-strand break repair via nonhomolo...",3,1,0.22,179,"0.20018","0.2192","0.2192" +"GO:0045786","negative regulation of cell cycle",24,1,1.72,1231,"0.83388","0.2201","0.2201" +"GO:0006913","nucleocytoplasmic transport",17,3,1.22,98,"0.11744","0.2211","0.2211" +"GO:0051865","protein autoubiquitination",8,1,0.57,675,"0.44915","0.2223","0.2223" +"GO:0050657","nucleic acid transport",8,2,0.57,91,"0.10760","0.2234","0.2234" +"GO:0050658","RNA transport",8,2,0.57,92,"0.10760","0.2234","0.2234" +"GO:0051236","establishment of RNA localization",8,2,0.57,93,"0.10760","0.2234","0.2234" +"GO:0060401","cytosolic calcium ion transport",7,0,0.5,1551,"1.00000","0.2237","0.2237" +"GO:0006873","cellular ion homeostasis",20,1,1.43,1143,"0.77566","0.2244","0.2244" +"GO:0030003","cellular cation homeostasis",20,1,1.43,1144,"0.77566","0.2244","0.2244" +"GO:0009950","dorsal/ventral axis specification",5,1,0.36,424,"0.31095","0.2250","0.2250" +"GO:0060322","head development",54,5,3.87,499,"0.34488","0.2252","0.2252" +"GO:0051028","mRNA transport",4,1,0.29,273,"0.25762","0.2264","0.2264" +"GO:0006012","galactose metabolic process",3,1,0.22,180,"0.20018","0.2270","0.2270" +"GO:0042559","pteridine-containing compound biosynthet...",3,1,0.22,181,"0.20018","0.2305","0.2305" +"GO:0050773","regulation of dendrite development",15,1,1.08,986,"0.67363","0.2316","0.2316" +"GO:0032507","maintenance of protein location in cell",7,1,0.5,614,"0.40646","0.2318","0.2318" +"GO:0051651","maintenance of location in cell",7,1,0.5,615,"0.40646","0.2318","0.2318" +"GO:0046040","IMP metabolic process",4,1,0.29,274,"0.25762","0.2326","0.2326" +"GO:0051056","regulation of small GTPase mediated sign...",31,3,2.22,580,"0.38598","0.2328","0.2328" +"GO:2001235","positive regulation of apoptotic signali...",7,2,0.5,81,"0.08458","0.2330","0.2330" +"GO:0006405","RNA export from nucleus",6,2,0.43,69,"0.06334","0.2345","0.2345" +"GO:0051168","nuclear export",6,2,0.43,70,"0.06334","0.2345","0.2345" +"GO:0032784","regulation of DNA-templated transcriptio...",8,0,0.57,1552,"1.00000","0.2366","0.2366" +"GO:0007584","response to nutrient",7,1,0.5,616,"0.40646","0.2386","0.2386" +"GO:0000075","cell cycle checkpoint",8,0,0.57,1553,"1.00000","0.2387","0.2387" +"GO:0045834","positive regulation of lipid metabolic p...",4,1,0.29,275,"0.25762","0.2405","0.2405" +"GO:0008284","positive regulation of cell proliferatio...",23,1,1.65,1209,"0.82091","0.2409","0.2409" +"GO:0001941","postsynaptic membrane organization",8,0,0.57,1554,"1.00000","0.2451","0.2451" +"GO:0040014","regulation of multicellular organism gro...",3,0,0.22,1555,"1.00000","0.2455","0.2455" +"GO:0061008","hepaticobiliary system development",5,1,0.36,425,"0.31095","0.2458","0.2458" +"GO:0048015","phosphatidylinositol-mediated signaling",5,0,0.36,1556,"1.00000","0.2458","0.2458" +"GO:0035051","cardiocyte differentiation",12,1,0.86,878,"0.59148","0.2468","0.2468" +"GO:0002684","positive regulation of immune system pro...",24,2,1.72,782,"0.52266","0.2483","0.2483" +"GO:0043631","RNA polyadenylation",3,0,0.22,1557,"1.00000","0.2496","0.2496" +"GO:0010876","lipid localization",23,1,1.65,1210,"0.82091","0.2498","0.2498" +"GO:0007623","circadian rhythm",15,4,1.08,26,"0.01866","0.2499","0.2499" +"GO:0048311","mitochondrion distribution",3,0,0.22,1558,"1.00000","0.2508","0.2508" +"GO:0006182","cGMP biosynthetic process",3,0,0.22,1559,"1.00000","0.2514","0.2514" +"GO:0046068","cGMP metabolic process",3,0,0.22,1560,"1.00000","0.2514","0.2514" +"GO:0007417","central nervous system development",68,6,4.88,565,"0.36108","0.2518","0.2518" +"GO:0003254","regulation of membrane depolarization",6,1,0.43,524,"0.36047","0.2530","0.2530" +"GO:0071242","cellular response to ammonium ion",6,1,0.43,525,"0.36047","0.2530","0.2530" +"GO:0097306","cellular response to alcohol",6,1,0.43,526,"0.36047","0.2530","0.2530" +"GO:0060795","cell fate commitment involved in formati...",5,1,0.36,426,"0.31095","0.2543","0.2543" +"GO:0001704","formation of primary germ layer",9,1,0.65,729,"0.48879","0.2558","0.2558" +"GO:0009953","dorsal/ventral pattern formation",9,2,0.65,109,"0.13204","0.2558","0.2558" +"GO:0007064","mitotic sister chromatid cohesion",3,0,0.22,1561,"1.00000","0.2560","0.2560" +"GO:0033865","nucleoside bisphosphate metabolic proces...",7,0,0.5,1562,"1.00000","0.2564","0.2564" +"GO:0033875","ribonucleoside bisphosphate metabolic pr...",7,0,0.5,1563,"1.00000","0.2564","0.2564" +"GO:0034032","purine nucleoside bisphosphate metabolic...",7,0,0.5,1564,"1.00000","0.2564","0.2564" +"GO:0001503","ossification",12,1,0.86,879,"0.59148","0.2567","0.2567" +"GO:0098609","cell-cell adhesion",57,3,4.09,1166,"0.78875","0.2582","0.2582" +"GO:0060048","cardiac muscle contraction",10,1,0.72,793,"0.52559","0.2586","0.2586" +"GO:0045445","myoblast differentiation",9,0,0.65,1565,"1.00000","0.2594","0.2594" +"GO:0045661","regulation of myoblast differentiation",9,0,0.65,1566,"1.00000","0.2594","0.2594" +"GO:0048144","fibroblast proliferation",3,0,0.22,1567,"1.00000","0.2599","0.2599" +"GO:0048145","regulation of fibroblast proliferation",3,0,0.22,1568,"1.00000","0.2599","0.2599" +"GO:1902117","positive regulation of organelle assembl...",3,0,0.22,1569,"1.00000","0.2599","0.2599" +"GO:0006732","coenzyme metabolic process",38,3,2.73,781,"0.52048","0.2604","0.2604" +"GO:0017148","negative regulation of translation",5,1,0.36,427,"0.31095","0.2637","0.2637" +"GO:0034249","negative regulation of cellular amide me...",5,1,0.36,428,"0.31095","0.2637","0.2637" +"GO:0008584","male gonad development",6,0,0.43,1570,"1.00000","0.2642","0.2642" +"GO:0046546","development of primary male sexual chara...",6,0,0.43,1571,"1.00000","0.2642","0.2642" +"GO:0032868","response to insulin",7,1,0.5,617,"0.40646","0.2647","0.2647" +"GO:0032869","cellular response to insulin stimulus",7,1,0.5,618,"0.40646","0.2647","0.2647" +"GO:0031123","RNA 3'-end processing",9,1,0.65,730,"0.48879","0.2653","0.2653" +"GO:0044319","wound healing, spreading of cells",4,0,0.29,1572,"1.00000","0.2658","0.2658" +"GO:0090504","epiboly",4,0,0.29,1573,"1.00000","0.2658","0.2658" +"GO:0090505","epiboly involved in wound healing",4,0,0.29,1574,"1.00000","0.2658","0.2658" +"GO:0055007","cardiac muscle cell differentiation",9,1,0.65,731,"0.48879","0.2676","0.2676" +"GO:0034314","Arp2/3 complex-mediated actin nucleation",5,0,0.36,1575,"1.00000","0.2685","0.2685" +"GO:0046434","organophosphate catabolic process",19,1,1.36,1129,"0.75818","0.2700","0.2700" +"GO:0009260","ribonucleotide biosynthetic process",28,1,2.01,1284,"0.87706","0.2703","0.2703" +"GO:0046390","ribose phosphate biosynthetic process",28,1,2.01,1285,"0.87706","0.2703","0.2703" +"GO:0007610","behavior",53,4,3.8,823,"0.53461","0.2739","0.2739" +"GO:0050900","leukocyte migration",4,0,0.29,1576,"1.00000","0.2741","0.2741" +"GO:0008354","germ cell migration",3,0,0.22,1577,"1.00000","0.2741","0.2741" +"GO:0050777","negative regulation of immune response",3,0,0.22,1578,"1.00000","0.2741","0.2741" +"GO:0055086","nucleobase-containing small molecule met...",71,4,5.09,1139,"0.76232","0.2766","0.2766" +"GO:0048308","organelle inheritance",3,0,0.22,1579,"1.00000","0.2767","0.2767" +"GO:0045137","development of primary sexual characteri...",14,0,1,1580,"1.00000","0.2781","0.2781" +"GO:0019438","aromatic compound biosynthetic process",388,17,27.83,1411,"0.99479","0.2789","0.2789" +"GO:1901362","organic cyclic compound biosynthetic pro...",402,19,28.83,1394,"0.98872","0.2789","0.2789" +"GO:0006811","ion transport",171,19,12.26,41,"0.03313","0.1335","0.2794" +"GO:0007548","sex differentiation",20,1,1.43,1145,"0.77566","0.2808","0.2808" +"GO:0009072","aromatic amino acid family metabolic pro...",11,3,0.79,43,"0.03899","0.2813","0.2813" +"GO:0009311","oligosaccharide metabolic process",6,0,0.43,1581,"1.00000","0.2814","0.2814" +"GO:0016071","mRNA metabolic process",69,2,4.95,1356,"0.96457","0.2817","0.2817" +"GO:0051262","protein tetramerization",8,1,0.57,676,"0.44915","0.2833","0.2833" +"GO:0051289","protein homotetramerization",8,1,0.57,677,"0.44915","0.2833","0.2833" +"GO:0006633","fatty acid biosynthetic process",8,0,0.57,1582,"1.00000","0.2833","0.2833" +"GO:0035264","multicellular organism growth",7,1,0.5,619,"0.40646","0.2840","0.2840" +"GO:0010259","multicellular organism aging",7,0,0.5,1583,"1.00000","0.2840","0.2840" +"GO:0050679","positive regulation of epithelial cell p...",4,0,0.29,1584,"1.00000","0.2866","0.2866" +"GO:0048593","camera-type eye morphogenesis",15,4,1.08,27,"0.01866","0.2876","0.2876" +"GO:0048701","embryonic cranial skeleton morphogenesis",5,2,0.36,50,"0.04428","0.2885","0.2885" +"GO:0048704","embryonic skeletal system morphogenesis",5,2,0.36,51,"0.04428","0.2885","0.2885" +"GO:2001236","regulation of extrinsic apoptotic signal...",5,2,0.36,52,"0.04428","0.2885","0.2885" +"GO:0006488","dolichol-linked oligosaccharide biosynth...",4,0,0.29,1585,"1.00000","0.2896","0.2896" +"GO:0043297","apical junction assembly",4,0,0.29,1586,"1.00000","0.2896","0.2896" +"GO:0120192","tight junction assembly",4,0,0.29,1587,"1.00000","0.2896","0.2896" +"GO:0120193","tight junction organization",4,0,0.29,1588,"1.00000","0.2896","0.2896" +"GO:0051259","protein complex oligomerization",25,1,1.79,1248,"0.84591","0.2897","0.2897" +"GO:0045619","regulation of lymphocyte differentiation",7,1,0.5,620,"0.40646","0.2901","0.2901" +"GO:0048599","oocyte development",7,0,0.5,1589,"1.00000","0.2901","0.2901" +"GO:0060538","skeletal muscle organ development",16,1,1.15,1027,"0.69719","0.2943","0.2943" +"GO:0002011","morphogenesis of an epithelial sheet",6,0,0.43,1590,"1.00000","0.2948","0.2948" +"GO:0030154","cell differentiation",200,17,14.34,383,"0.26183","0.2956","0.2956" +"GO:0002694","regulation of leukocyte activation",16,1,1.15,1028,"0.69719","0.2956","0.2956" +"GO:0050865","regulation of cell activation",16,1,1.15,1029,"0.69719","0.2956","0.2956" +"GO:0048869","cellular developmental process",208,17,14.92,480,"0.31884","0.2960","0.2960" +"GO:0010817","regulation of hormone levels",22,2,1.58,722,"0.47568","0.1263","0.2966" +"GO:0055088","lipid homeostasis",4,1,0.29,276,"0.25762","0.2980","0.2980" +"GO:0051050","positive regulation of transport",47,3,3.37,981,"0.66715","0.3022","0.3022" +"GO:0000291","nuclear-transcribed mRNA catabolic proce...",4,1,0.29,277,"0.25762","0.3022","0.3022" +"GO:0006111","regulation of gluconeogenesis",3,0,0.22,1591,"1.00000","0.3032","0.3032" +"GO:0006140","regulation of nucleotide metabolic proce...",3,0,0.22,1592,"1.00000","0.3032","0.3032" +"GO:0030808","regulation of nucleotide biosynthetic pr...",3,0,0.22,1593,"1.00000","0.3032","0.3032" +"GO:0043255","regulation of carbohydrate biosynthetic ...",3,0,0.22,1594,"1.00000","0.3032","0.3032" +"GO:0046320","regulation of fatty acid oxidation",3,0,0.22,1595,"1.00000","0.3032","0.3032" +"GO:0051196","regulation of coenzyme metabolic process",3,0,0.22,1596,"1.00000","0.3032","0.3032" +"GO:1900371","regulation of purine nucleotide biosynth...",3,0,0.22,1597,"1.00000","0.3032","0.3032" +"GO:1900542","regulation of purine nucleotide metaboli...",3,0,0.22,1598,"1.00000","0.3032","0.3032" +"GO:0048048","embryonic eye morphogenesis",4,1,0.29,278,"0.25762","0.3034","0.3034" +"GO:0090100","positive regulation of transmembrane rec...",4,0,0.29,1599,"1.00000","0.3034","0.3034" +"GO:0030431","sleep",3,1,0.22,182,"0.20018","0.3034","0.3034" +"GO:0007601","visual perception",11,2,0.79,141,"0.18392","0.3037","0.3037" +"GO:0090305","nucleic acid phosphodiester bond hydroly...",13,1,0.93,924,"0.62092","0.3040","0.3040" +"GO:0008045","motor neuron axon guidance",3,0,0.22,1600,"1.00000","0.3040","0.3040" +"GO:0072553","terminal button organization",3,0,0.22,1601,"1.00000","0.3040","0.3040" +"GO:0006119","oxidative phosphorylation",5,0,0.36,1602,"1.00000","0.3042","0.3042" +"GO:0007093","mitotic cell cycle checkpoint",3,0,0.22,1603,"1.00000","0.3054","0.3054" +"GO:0048878","chemical homeostasis",44,4,3.16,584,"0.38902","0.3057","0.3057" +"GO:0042303","molting cycle",11,2,0.79,142,"0.18392","0.3061","0.3061" +"GO:2000243","positive regulation of reproductive proc...",10,0,0.72,1604,"1.00000","0.3064","0.3064" +"GO:0007525","somatic muscle development",3,1,0.22,183,"0.20018","0.3065","0.3065" +"GO:0000768","syncytium formation by plasma membrane f...",3,0,0.22,1605,"1.00000","0.3065","0.3065" +"GO:0006949","syncytium formation",3,0,0.22,1606,"1.00000","0.3065","0.3065" +"GO:0007520","myoblast fusion",3,0,0.22,1607,"1.00000","0.3065","0.3065" +"GO:0140253","cell-cell fusion",3,0,0.22,1608,"1.00000","0.3065","0.3065" +"GO:0051169","nuclear transport",18,3,1.29,113,"0.13385","0.3066","0.3066" +"GO:0046890","regulation of lipid biosynthetic process",5,0,0.36,1609,"1.00000","0.3068","0.3068" +"GO:1903169","regulation of calcium ion transmembrane ...",5,0,0.36,1610,"1.00000","0.3070","0.3070" +"GO:0033628","regulation of cell adhesion mediated by ...",3,0,0.22,1611,"1.00000","0.3081","0.3081" +"GO:0052652","cyclic purine nucleotide metabolic proce...",6,0,0.43,1612,"1.00000","0.3084","0.3084" +"GO:0032946","positive regulation of mononuclear cell ...",4,0,0.29,1613,"1.00000","0.3092","0.3092" +"GO:0050671","positive regulation of lymphocyte prolif...",4,0,0.29,1614,"1.00000","0.3092","0.3092" +"GO:0070665","positive regulation of leukocyte prolife...",4,0,0.29,1615,"1.00000","0.3092","0.3092" +"GO:0045582","positive regulation of T cell differenti...",3,0,0.22,1616,"1.00000","0.3092","0.3092" +"GO:0045621","positive regulation of lymphocyte differ...",3,0,0.22,1617,"1.00000","0.3092","0.3092" +"GO:1902107","positive regulation of leukocyte differe...",3,0,0.22,1618,"1.00000","0.3092","0.3092" +"GO:0006367","transcription initiation from RNA polyme...",7,0,0.5,1619,"1.00000","0.3108","0.3108" +"GO:0061448","connective tissue development",7,0,0.5,1620,"1.00000","0.3108","0.3108" +"GO:0030178","negative regulation of Wnt signaling pat...",14,1,1,959,"0.64826","0.3117","0.3117" +"GO:0042127","regulation of cell proliferation",55,4,3.94,855,"0.56471","0.3123","0.3123" +"GO:0051052","regulation of DNA metabolic process",12,1,0.86,880,"0.59148","0.3140","0.3140" +"GO:0016126","sterol biosynthetic process",5,1,0.36,429,"0.31095","0.3151","0.3151" +"GO:0032787","monocarboxylic acid metabolic process",37,5,2.65,101,"0.12126","0.3153","0.3153" +"GO:0001508","action potential",5,1,0.36,430,"0.31095","0.3183","0.3183" +"GO:0035637","multicellular organismal signaling",5,1,0.36,431,"0.31095","0.3183","0.3183" +"GO:0045176","apical protein localization",5,1,0.36,432,"0.31095","0.3183","0.3183" +"GO:0060219","camera-type eye photoreceptor cell diffe...",5,1,0.36,433,"0.31095","0.3183","0.3183" +"GO:0061337","cardiac conduction",5,1,0.36,434,"0.31095","0.3183","0.3183" +"GO:0071320","cellular response to cAMP",5,1,0.36,435,"0.31095","0.3183","0.3183" +"GO:0086001","cardiac muscle cell action potential",5,1,0.36,436,"0.31095","0.3183","0.3183" +"GO:1901655","cellular response to ketone",5,1,0.36,437,"0.31095","0.3183","0.3183" +"GO:0051592","response to calcium ion",10,2,0.72,126,"0.15757","0.3206","0.3206" +"GO:0009187","cyclic nucleotide metabolic process",10,0,0.72,1621,"1.00000","0.3213","0.3213" +"GO:0009190","cyclic nucleotide biosynthetic process",10,0,0.72,1622,"1.00000","0.3213","0.3213" +"GO:0007173","epidermal growth factor receptor signali...",6,0,0.43,1623,"1.00000","0.3219","0.3219" +"GO:0038127","ERBB signaling pathway",6,0,0.43,1624,"1.00000","0.3219","0.3219" +"GO:0048008","platelet-derived growth factor receptor ...",6,0,0.43,1625,"1.00000","0.3219","0.3219" +"GO:0001649","osteoblast differentiation",10,1,0.72,794,"0.52559","0.3224","0.3224" +"GO:0060485","mesenchyme development",10,0,0.72,1626,"1.00000","0.3224","0.3224" +"GO:0042752","regulation of circadian rhythm",7,2,0.5,82,"0.08458","0.3224","0.3224" +"GO:0043434","response to peptide hormone",13,1,0.93,925,"0.62092","0.3225","0.3225" +"GO:1901652","response to peptide",13,1,0.93,926,"0.62092","0.3225","0.3225" +"GO:0009743","response to carbohydrate",3,0,0.22,1627,"1.00000","0.3229","0.3229" +"GO:0071322","cellular response to carbohydrate stimul...",3,0,0.22,1628,"1.00000","0.3229","0.3229" +"GO:0006354","DNA-templated transcription, elongation",12,0,0.86,1629,"1.00000","0.3234","0.3234" +"GO:0006631","fatty acid metabolic process",24,4,1.72,84,"0.08803","0.3261","0.3261" +"GO:0009108","coenzyme biosynthetic process",31,1,2.22,1296,"0.90193","0.3300","0.3300" +"GO:0017144","drug metabolic process",62,7,4.45,119,"0.15210","0.3301","0.3301" +"GO:0018130","heterocycle biosynthetic process",395,18,28.33,1404,"0.99222","0.3305","0.3305" +"GO:0065008","regulation of biological quality",193,16,13.84,410,"0.30554","0.2696","0.3321" +"GO:0021532","neural tube patterning",4,1,0.29,279,"0.25762","0.3323","0.3323" +"GO:0070265","necrotic cell death",3,1,0.22,184,"0.20018","0.3327","0.3327" +"GO:0006044","N-acetylglucosamine metabolic process",3,0,0.22,1630,"1.00000","0.3327","0.3327" +"GO:0010522","regulation of calcium ion transport into...",3,0,0.22,1631,"1.00000","0.3327","0.3327" +"GO:0010524","positive regulation of calcium ion trans...",3,0,0.22,1632,"1.00000","0.3327","0.3327" +"GO:0017121","phospholipid scrambling",3,0,0.22,1633,"1.00000","0.3329","0.3329" +"GO:0097035","regulation of membrane lipid distributio...",3,0,0.22,1634,"1.00000","0.3329","0.3329" +"GO:0003002","regionalization",30,3,2.15,567,"0.36587","0.3339","0.3339" +"GO:0007379","segment specification",4,1,0.29,280,"0.25762","0.3352","0.3352" +"GO:0046661","male sex differentiation",10,1,0.72,795,"0.52559","0.3372","0.3372" +"GO:1901096","regulation of autophagosome maturation",3,1,0.22,185,"0.20018","0.3377","0.3377" +"GO:0000460","maturation of 5.8S rRNA",4,1,0.29,281,"0.25762","0.3393","0.3393" +"GO:0000466","maturation of 5.8S rRNA from tricistroni...",4,1,0.29,282,"0.25762","0.3393","0.3393" +"GO:0034243","regulation of transcription elongation f...",6,0,0.43,1635,"1.00000","0.3395","0.3395" +"GO:0009062","fatty acid catabolic process",8,2,0.57,94,"0.10760","0.3414","0.3414" +"GO:0045010","actin nucleation",7,0,0.5,1636,"1.00000","0.3418","0.3418" +"GO:0016358","dendrite development",22,1,1.58,1182,"0.80694","0.3420","0.3420" +"GO:0006090","pyruvate metabolic process",12,1,0.86,881,"0.59148","0.3427","0.3427" +"GO:0019359","nicotinamide nucleotide biosynthetic pro...",12,0,0.86,1637,"1.00000","0.3427","0.3427" +"GO:0019363","pyridine nucleotide biosynthetic process",12,0,0.86,1638,"1.00000","0.3427","0.3427" +"GO:0021537","telencephalon development",6,2,0.43,71,"0.06334","0.3439","0.3439" +"GO:0060563","neuroepithelial cell differentiation",6,2,0.43,72,"0.06334","0.3439","0.3439" +"GO:0061351","neural precursor cell proliferation",6,2,0.43,73,"0.06334","0.3439","0.3439" +"GO:0001505","regulation of neurotransmitter levels",23,2,1.65,768,"0.49952","0.3444","0.3444" +"GO:0007155","cell adhesion",87,6,6.24,915,"0.60258","0.3445","0.3445" +"GO:0022610","biological adhesion",87,6,6.24,916,"0.60258","0.3445","0.3445" +"GO:0030901","midbrain development",6,2,0.43,74,"0.06334","0.3459","0.3459" +"GO:0045580","regulation of T cell differentiation",5,0,0.36,1639,"1.00000","0.3459","0.3459" +"GO:0035050","embryonic heart tube development",11,1,0.79,840,"0.55976","0.3465","0.3465" +"GO:0019722","calcium-mediated signaling",4,1,0.29,283,"0.25762","0.3467","0.3467" +"GO:1901606","alpha-amino acid catabolic process",12,2,0.86,232,"0.21085","0.3478","0.3478" +"GO:0019751","polyol metabolic process",6,1,0.43,527,"0.36047","0.3497","0.3497" +"GO:0007519","skeletal muscle tissue development",15,1,1.08,987,"0.67363","0.3498","0.3498" +"GO:0000723","telomere maintenance",7,1,0.5,621,"0.40646","0.3512","0.3512" +"GO:0032200","telomere organization",7,1,0.5,622,"0.40646","0.3512","0.3512" +"GO:0035019","somatic stem cell population maintenance",5,1,0.36,438,"0.31095","0.3530","0.3530" +"GO:0022618","ribonucleoprotein complex assembly",14,0,1,1640,"1.00000","0.3538","0.3538" +"GO:0071826","ribonucleoprotein complex subunit organi...",14,0,1,1641,"1.00000","0.3538","0.3538" +"GO:0007259","JAK-STAT cascade",3,0,0.22,1642,"1.00000","0.3567","0.3567" +"GO:0060396","growth hormone receptor signaling pathwa...",3,0,0.22,1643,"1.00000","0.3567","0.3567" +"GO:0060416","response to growth hormone",3,0,0.22,1644,"1.00000","0.3567","0.3567" +"GO:0071378","cellular response to growth hormone stim...",3,0,0.22,1645,"1.00000","0.3567","0.3567" +"GO:0097696","STAT cascade",3,0,0.22,1646,"1.00000","0.3567","0.3567" +"GO:0007291","sperm individualization",4,1,0.29,284,"0.25762","0.3572","0.3572" +"GO:0016319","mushroom body development",4,1,0.29,285,"0.25762","0.3572","0.3572" +"GO:0035902","response to immobilization stress",4,1,0.29,286,"0.25762","0.3572","0.3572" +"GO:0071257","cellular response to electrical stimulus",4,1,0.29,287,"0.25762","0.3572","0.3572" +"GO:0098974","postsynaptic actin cytoskeleton organiza...",4,1,0.29,288,"0.25762","0.3572","0.3572" +"GO:0099188","postsynaptic cytoskeleton organization",4,1,0.29,289,"0.25762","0.3572","0.3572" +"GO:1904030","negative regulation of cyclin-dependent ...",4,1,0.29,290,"0.25762","0.3572","0.3572" +"GO:0045321","leukocyte activation",27,2,1.94,870,"0.58768","0.3582","0.3582" +"GO:0006936","muscle contraction",20,2,1.43,659,"0.42604","0.3583","0.3583" +"GO:0030098","lymphocyte differentiation",10,1,0.72,796,"0.52559","0.3602","0.3602" +"GO:0007613","memory",10,0,0.72,1647,"1.00000","0.3602","0.3602" +"GO:1901135","carbohydrate derivative metabolic proces...",119,10,8.54,502,"0.34736","0.3626","0.3626" +"GO:0051668","localization within membrane",12,0,0.86,1648,"1.00000","0.3634","0.3634" +"GO:2000058","regulation of ubiquitin-dependent protei...",8,0,0.57,1649,"1.00000","0.3639","0.3639" +"GO:0007163","establishment or maintenance of cell pol...",14,0,1,1650,"1.00000","0.3649","0.3649" +"GO:1904888","cranial skeletal system development",6,2,0.43,75,"0.06334","0.3656","0.3656" +"GO:0017157","regulation of exocytosis",3,1,0.22,186,"0.20018","0.3670","0.3670" +"GO:1902806","regulation of cell cycle G1/S phase tran...",4,0,0.29,1651,"1.00000","0.3675","0.3675" +"GO:0072329","monocarboxylic acid catabolic process",9,2,0.65,110,"0.13204","0.3676","0.3676" +"GO:0008654","phospholipid biosynthetic process",17,1,1.22,1070,"0.71905","0.3678","0.3678" +"GO:0006403","RNA localization",10,2,0.72,127,"0.15757","0.3686","0.3686" +"GO:0043010","camera-type eye development",32,6,2.3,30,"0.02362","0.3688","0.3688" +"GO:0019693","ribose phosphate metabolic process",39,2,2.8,1159,"0.78217","0.3690","0.3690" +"GO:0007612","learning",13,0,0.93,1652,"1.00000","0.3690","0.3690" +"GO:0019827","stem cell population maintenance",10,2,0.72,128,"0.15757","0.3705","0.3705" +"GO:0045785","positive regulation of cell adhesion",10,1,0.72,797,"0.52559","0.3705","0.3705" +"GO:0098727","maintenance of cell number",10,2,0.72,129,"0.15757","0.3705","0.3705" +"GO:0015980","energy derivation by oxidation of organi...",20,2,1.43,660,"0.42604","0.3710","0.3710" +"GO:0009150","purine ribonucleotide metabolic process",36,1,2.58,1317,"0.93277","0.3713","0.3713" +"GO:0034654","nucleobase-containing compound biosynthe...",378,16,27.11,1415,"0.99615","0.3718","0.3718" +"GO:0006778","porphyrin-containing compound metabolic ...",4,0,0.29,1653,"1.00000","0.3726","0.3726" +"GO:0033014","tetrapyrrole biosynthetic process",4,0,0.29,1654,"1.00000","0.3726","0.3726" +"GO:0051054","positive regulation of DNA metabolic pro...",9,0,0.65,1655,"1.00000","0.3729","0.3729" +"GO:0000462","maturation of SSU-rRNA from tricistronic...",4,0,0.29,1656,"1.00000","0.3739","0.3739" +"GO:0030490","maturation of SSU-rRNA",4,0,0.29,1657,"1.00000","0.3739","0.3739" +"GO:0006302","double-strand break repair",7,1,0.5,623,"0.40646","0.3744","0.3744" +"GO:0099504","synaptic vesicle cycle",15,1,1.08,988,"0.67363","0.3746","0.3746" +"GO:0010830","regulation of myotube differentiation",7,0,0.5,1658,"1.00000","0.3761","0.3761" +"GO:0061001","regulation of dendritic spine morphogene...",4,1,0.29,291,"0.25762","0.3765","0.3765" +"GO:0031644","regulation of neurological system proces...",4,0,0.29,1659,"1.00000","0.3765","0.3765" +"GO:0043113","receptor clustering",4,0,0.29,1660,"1.00000","0.3765","0.3765" +"GO:0097090","presynaptic membrane organization",4,0,0.29,1661,"1.00000","0.3765","0.3765" +"GO:0099174","regulation of presynapse organization",4,0,0.29,1662,"1.00000","0.3765","0.3765" +"GO:0050877","nervous system process",51,3,3.66,1087,"0.72097","0.3787","0.3787" +"GO:0051188","cofactor biosynthetic process",37,1,2.65,1328,"0.93766","0.3796","0.3796" +"GO:0006890","retrograde vesicle-mediated transport, G...",4,1,0.29,292,"0.25762","0.3800","0.3800" +"GO:0034767","positive regulation of ion transmembrane...",8,1,0.57,678,"0.44915","0.3817","0.3817" +"GO:1904064","positive regulation of cation transmembr...",8,1,0.57,679,"0.44915","0.3817","0.3817" +"GO:0001101","response to acid chemical",22,3,1.58,229,"0.20609","0.3832","0.3832" +"GO:0048511","rhythmic process",19,4,1.36,47,"0.04234","0.3836","0.3836" +"GO:0050878","regulation of body fluid levels",15,1,1.08,989,"0.67363","0.3843","0.3843" +"GO:0099173","postsynapse organization",16,2,1.15,485,"0.32033","0.3856","0.3856" +"GO:0042773","ATP synthesis coupled electron transport",4,0,0.29,1663,"1.00000","0.3861","0.3861" +"GO:1990778","protein localization to cell periphery",10,0,0.72,1664,"1.00000","0.3862","0.3862" +"GO:0002084","protein depalmitoylation",3,0,0.22,1665,"1.00000","0.3863","0.3863" +"GO:0042159","lipoprotein catabolic process",3,0,0.22,1666,"1.00000","0.3863","0.3863" +"GO:0048881","mechanosensory lateral line system devel...",3,0,0.22,1667,"1.00000","0.3863","0.3863" +"GO:0048882","lateral line development",3,0,0.22,1668,"1.00000","0.3863","0.3863" +"GO:0048925","lateral line system development",3,0,0.22,1669,"1.00000","0.3863","0.3863" +"GO:0098734","macromolecule depalmitoylation",3,0,0.22,1670,"1.00000","0.3863","0.3863" +"GO:0061458","reproductive system development",29,1,2.08,1288,"0.88598","0.3865","0.3865" +"GO:0030838","positive regulation of actin filament po...",9,0,0.65,1671,"1.00000","0.3880","0.3880" +"GO:0010565","regulation of cellular ketone metabolic ...",4,0,0.29,1672,"1.00000","0.3888","0.3888" +"GO:0019217","regulation of fatty acid metabolic proce...",4,0,0.29,1673,"1.00000","0.3888","0.3888" +"GO:0042304","regulation of fatty acid biosynthetic pr...",4,0,0.29,1674,"1.00000","0.3888","0.3888" +"GO:0046323","glucose import",4,0,0.29,1675,"1.00000","0.3888","0.3888" +"GO:0046324","regulation of glucose import",4,0,0.29,1676,"1.00000","0.3888","0.3888" +"GO:0048520","positive regulation of behavior",5,1,0.36,439,"0.31095","0.3889","0.3889" +"GO:0001775","cell activation",37,3,2.65,772,"0.50216","0.3890","0.3890" +"GO:0018105","peptidyl-serine phosphorylation",4,0,0.29,1677,"1.00000","0.3897","0.3897" +"GO:0001936","regulation of endothelial cell prolifera...",3,0,0.22,1678,"1.00000","0.3919","0.3919" +"GO:0006869","lipid transport",17,0,1.22,1679,"1.00000","0.3930","0.3930" +"GO:0006490","oligosaccharide-lipid intermediate biosy...",6,0,0.43,1680,"1.00000","0.3940","0.3940" +"GO:0051705","multi-organism behavior",11,1,0.79,841,"0.55976","0.3943","0.3943" +"GO:0048646","anatomical structure formation involved ...",78,4,5.59,1221,"0.82364","0.3954","0.3954" +"GO:0021903","rostrocaudal neural tube patterning",3,1,0.22,187,"0.20018","0.3970","0.3970" +"GO:0031648","protein destabilization",3,1,0.22,188,"0.20018","0.3970","0.3970" +"GO:0007440","foregut morphogenesis",3,0,0.22,1681,"1.00000","0.3970","0.3970" +"GO:0042492","gamma-delta T cell differentiation",3,0,0.22,1682,"1.00000","0.3970","0.3970" +"GO:0045586","regulation of gamma-delta T cell differe...",3,0,0.22,1683,"1.00000","0.3970","0.3970" +"GO:0046629","gamma-delta T cell activation",3,0,0.22,1684,"1.00000","0.3970","0.3970" +"GO:0046643","regulation of gamma-delta T cell activat...",3,0,0.22,1685,"1.00000","0.3970","0.3970" +"GO:0048617","embryonic foregut morphogenesis",3,0,0.22,1686,"1.00000","0.3970","0.3970" +"GO:0061311","cell surface receptor signaling pathway ...",3,0,0.22,1687,"1.00000","0.3970","0.3970" +"GO:0044091","membrane biogenesis",9,0,0.65,1688,"1.00000","0.3978","0.3978" +"GO:0010720","positive regulation of cell development",23,2,1.65,769,"0.49952","0.3981","0.3981" +"GO:0016125","sterol metabolic process",8,1,0.57,680,"0.44915","0.3982","0.3982" +"GO:0007349","cellularization",6,1,0.43,528,"0.36047","0.3984","0.3984" +"GO:0043547","positive regulation of GTPase activity",16,2,1.15,486,"0.32033","0.3985","0.3985" +"GO:0006325","chromatin organization",77,4,5.52,1199,"0.81576","0.3993","0.3993" +"GO:0016482","cytosolic transport",19,2,1.36,589,"0.40032","0.3993","0.3993" +"GO:0072091","regulation of stem cell proliferation",6,1,0.43,529,"0.36047","0.3999","0.3999" +"GO:0002027","regulation of heart rate",4,1,0.29,293,"0.25762","0.4003","0.4003" +"GO:0006942","regulation of striated muscle contractio...",4,1,0.29,294,"0.25762","0.4003","0.4003" +"GO:0010107","potassium ion import",4,1,0.29,295,"0.25762","0.4003","0.4003" +"GO:0035725","sodium ion transmembrane transport",4,1,0.29,296,"0.25762","0.4003","0.4003" +"GO:0042670","retinal cone cell differentiation",4,1,0.29,297,"0.25762","0.4003","0.4003" +"GO:0042711","maternal behavior",4,1,0.29,298,"0.25762","0.4003","0.4003" +"GO:0043200","response to amino acid",4,1,0.29,299,"0.25762","0.4003","0.4003" +"GO:0045759","negative regulation of action potential",4,1,0.29,300,"0.25762","0.4003","0.4003" +"GO:0046549","retinal cone cell development",4,1,0.29,301,"0.25762","0.4003","0.4003" +"GO:0055117","regulation of cardiac muscle contraction",4,1,0.29,302,"0.25762","0.4003","0.4003" +"GO:0060081","membrane hyperpolarization",4,1,0.29,303,"0.25762","0.4003","0.4003" +"GO:0060746","parental behavior",4,1,0.29,304,"0.25762","0.4003","0.4003" +"GO:0070252","actin-mediated cell contraction",4,1,0.29,305,"0.25762","0.4003","0.4003" +"GO:0070305","response to cGMP",4,1,0.29,306,"0.25762","0.4003","0.4003" +"GO:0071321","cellular response to cGMP",4,1,0.29,307,"0.25762","0.4003","0.4003" +"GO:0071389","cellular response to mineralocorticoid s...",4,1,0.29,308,"0.25762","0.4003","0.4003" +"GO:0071867","response to monoamine",4,1,0.29,309,"0.25762","0.4003","0.4003" +"GO:0071868","cellular response to monoamine stimulus",4,1,0.29,310,"0.25762","0.4003","0.4003" +"GO:0071869","response to catecholamine",4,1,0.29,311,"0.25762","0.4003","0.4003" +"GO:0071870","cellular response to catecholamine stimu...",4,1,0.29,312,"0.25762","0.4003","0.4003" +"GO:0072718","response to cisplatin",4,1,0.29,313,"0.25762","0.4003","0.4003" +"GO:0086003","cardiac muscle cell contraction",4,1,0.29,314,"0.25762","0.4003","0.4003" +"GO:0086004","regulation of cardiac muscle cell contra...",4,1,0.29,315,"0.25762","0.4003","0.4003" +"GO:0086010","membrane depolarization during action po...",4,1,0.29,316,"0.25762","0.4003","0.4003" +"GO:0086012","membrane depolarization during cardiac m...",4,1,0.29,317,"0.25762","0.4003","0.4003" +"GO:0086015","SA node cell action potential",4,1,0.29,318,"0.25762","0.4003","0.4003" +"GO:0086018","SA node cell to atrial cardiac muscle ce...",4,1,0.29,319,"0.25762","0.4003","0.4003" +"GO:0086019","cell-cell signaling involved in cardiac ...",4,1,0.29,320,"0.25762","0.4003","0.4003" +"GO:0086046","membrane depolarization during SA node c...",4,1,0.29,321,"0.25762","0.4003","0.4003" +"GO:0086065","cell communication involved in cardiac c...",4,1,0.29,322,"0.25762","0.4003","0.4003" +"GO:0086070","SA node cell to atrial cardiac muscle ce...",4,1,0.29,323,"0.25762","0.4003","0.4003" +"GO:0086091","regulation of heart rate by cardiac cond...",4,1,0.29,324,"0.25762","0.4003","0.4003" +"GO:0097327","response to antineoplastic agent",4,1,0.29,325,"0.25762","0.4003","0.4003" +"GO:0098659","inorganic cation import across plasma me...",4,1,0.29,326,"0.25762","0.4003","0.4003" +"GO:0098719","sodium ion import across plasma membrane",4,1,0.29,327,"0.25762","0.4003","0.4003" +"GO:0098739","import across plasma membrane",4,1,0.29,328,"0.25762","0.4003","0.4003" +"GO:0098900","regulation of action potential",4,1,0.29,329,"0.25762","0.4003","0.4003" +"GO:0098901","regulation of cardiac muscle cell action...",4,1,0.29,330,"0.25762","0.4003","0.4003" +"GO:0098909","regulation of cardiac muscle cell action...",4,1,0.29,331,"0.25762","0.4003","0.4003" +"GO:0099587","inorganic ion import across plasma membr...",4,1,0.29,332,"0.25762","0.4003","0.4003" +"GO:0110096","cellular response to aldehyde",4,1,0.29,333,"0.25762","0.4003","0.4003" +"GO:1902065","response to L-glutamate",4,1,0.29,334,"0.25762","0.4003","0.4003" +"GO:1902630","regulation of membrane hyperpolarization",4,1,0.29,335,"0.25762","0.4003","0.4003" +"GO:1903115","regulation of actin filament-based movem...",4,1,0.29,336,"0.25762","0.4003","0.4003" +"GO:1903350","response to dopamine",4,1,0.29,337,"0.25762","0.4003","0.4003" +"GO:1903351","cellular response to dopamine",4,1,0.29,338,"0.25762","0.4003","0.4003" +"GO:1904044","response to aldosterone",4,1,0.29,339,"0.25762","0.4003","0.4003" +"GO:1904045","cellular response to aldosterone",4,1,0.29,340,"0.25762","0.4003","0.4003" +"GO:1990573","potassium ion import across plasma membr...",4,1,0.29,341,"0.25762","0.4003","0.4003" +"GO:0031167","rRNA methylation",3,0,0.22,1689,"1.00000","0.4004","0.4004" +"GO:0007389","pattern specification process",42,3,3.01,872,"0.58990","0.4005","0.4005" +"GO:0002683","negative regulation of immune system pro...",15,1,1.08,990,"0.67363","0.4012","0.4012" +"GO:0051249","regulation of lymphocyte activation",15,1,1.08,991,"0.67363","0.4023","0.4023" +"GO:0006937","regulation of muscle contraction",11,1,0.79,842,"0.55976","0.4029","0.4029" +"GO:0050803","regulation of synapse structure or activ...",18,1,1.29,1098,"0.73934","0.4039","0.4039" +"GO:0050807","regulation of synapse organization",18,1,1.29,1099,"0.73934","0.4039","0.4039" +"GO:0030278","regulation of ossification",8,1,0.57,681,"0.44915","0.4046","0.4046" +"GO:0072524","pyridine-containing compound metabolic p...",19,2,1.36,590,"0.40032","0.4047","0.4047" +"GO:0045185","maintenance of protein location",9,1,0.65,732,"0.48879","0.4060","0.4060" +"GO:0060788","ectodermal placode formation",3,1,0.22,189,"0.20018","0.4089","0.4089" +"GO:0071696","ectodermal placode development",3,1,0.22,190,"0.20018","0.4089","0.4089" +"GO:0071697","ectodermal placode morphogenesis",3,1,0.22,191,"0.20018","0.4089","0.4089" +"GO:0001837","epithelial to mesenchymal transition",3,0,0.22,1690,"1.00000","0.4089","0.4089" +"GO:0003413","chondrocyte differentiation involved in ...",3,0,0.22,1691,"1.00000","0.4089","0.4089" +"GO:0006282","regulation of DNA repair",3,0,0.22,1692,"1.00000","0.4089","0.4089" +"GO:0030511","positive regulation of transforming grow...",3,0,0.22,1693,"1.00000","0.4089","0.4089" +"GO:0040003","chitin-based cuticle development",3,0,0.22,1694,"1.00000","0.4089","0.4089" +"GO:0042335","cuticle development",3,0,0.22,1695,"1.00000","0.4089","0.4089" +"GO:0060349","bone morphogenesis",3,0,0.22,1696,"1.00000","0.4089","0.4089" +"GO:0060350","endochondral bone morphogenesis",3,0,0.22,1697,"1.00000","0.4089","0.4089" +"GO:0060351","cartilage development involved in endoch...",3,0,0.22,1698,"1.00000","0.4089","0.4089" +"GO:1903846","positive regulation of cellular response...",3,0,0.22,1699,"1.00000","0.4089","0.4089" +"GO:2000027","regulation of animal organ morphogenesis",12,0,0.86,1700,"1.00000","0.4091","0.4091" +"GO:0022407","regulation of cell-cell adhesion",9,1,0.65,733,"0.48879","0.4093","0.4093" +"GO:0006898","receptor-mediated endocytosis",9,0,0.65,1701,"1.00000","0.4093","0.4093" +"GO:0050806","positive regulation of synaptic transmis...",9,0,0.65,1702,"1.00000","0.4093","0.4093" +"GO:0045214","sarcomere organization",11,0,0.79,1703,"1.00000","0.4099","0.4099" +"GO:0098660","inorganic ion transmembrane transport",39,2,2.8,1160,"0.78217","0.4140","0.4140" +"GO:0099175","regulation of postsynapse organization",5,1,0.36,440,"0.31095","0.4157","0.4157" +"GO:0001895","retina homeostasis",10,2,0.72,130,"0.15757","0.4180","0.4180" +"GO:1901605","alpha-amino acid metabolic process",23,3,1.65,239,"0.22538","0.4193","0.4193" +"GO:0032785","negative regulation of DNA-templated tra...",3,0,0.22,1704,"1.00000","0.4199","0.4199" +"GO:0034244","negative regulation of transcription elo...",3,0,0.22,1705,"1.00000","0.4199","0.4199" +"GO:0055001","muscle cell development",19,2,1.36,591,"0.40032","0.4216","0.4216" +"GO:0006401","RNA catabolic process",31,2,2.22,978,"0.66388","0.4217","0.4217" +"GO:0030010","establishment of cell polarity",12,0,0.86,1706,"1.00000","0.4217","0.4217" +"GO:0016477","cell migration",49,5,3.51,395,"0.27258","0.4222","0.4222" +"GO:0033013","tetrapyrrole metabolic process",6,0,0.43,1707,"1.00000","0.4224","0.4224" +"GO:0007043","cell-cell junction assembly",5,0,0.36,1708,"1.00000","0.4229","0.4229" +"GO:0072659","protein localization to plasma membrane",9,0,0.65,1709,"1.00000","0.4249","0.4249" +"GO:0009312","oligosaccharide biosynthetic process",5,0,0.36,1710,"1.00000","0.4272","0.4272" +"GO:0001738","morphogenesis of a polarized epithelium",11,0,0.79,1711,"1.00000","0.4272","0.4272" +"GO:0051239","regulation of multicellular organismal p...",147,10,10.54,921,"0.62031","0.4278","0.4278" +"GO:0043462","regulation of ATPase activity",3,0,0.22,1712,"1.00000","0.4279","0.4279" +"GO:0045103","intermediate filament-based process",3,0,0.22,1713,"1.00000","0.4302","0.4302" +"GO:0045104","intermediate filament cytoskeleton organ...",3,0,0.22,1714,"1.00000","0.4302","0.4302" +"GO:0048562","embryonic organ morphogenesis",21,3,1.51,149,"0.18721","0.4303","0.4303" +"GO:0009259","ribonucleotide metabolic process",37,1,2.65,1329,"0.93766","0.4304","0.4304" +"GO:0007405","neuroblast proliferation",4,1,0.29,342,"0.25762","0.4308","0.4308" +"GO:0021782","glial cell development",4,0,0.29,1715,"1.00000","0.4308","0.4308" +"GO:0048866","stem cell fate specification",4,0,0.29,1716,"1.00000","0.4308","0.4308" +"GO:1901987","regulation of cell cycle phase transitio...",10,0,0.72,1717,"1.00000","0.4316","0.4316" +"GO:0060042","retina morphogenesis in camera-type eye",12,3,0.86,55,"0.04931","0.4321","0.4321" +"GO:0022008","neurogenesis",109,6,7.82,1196,"0.80795","0.4335","0.4335" +"GO:0003012","muscle system process",26,2,1.86,858,"0.56675","0.4348","0.4348" +"GO:1903050","regulation of proteolysis involved in ce...",11,0,0.79,1718,"1.00000","0.4349","0.4349" +"GO:1903362","regulation of cellular protein catabolic...",11,0,0.79,1719,"1.00000","0.4349","0.4349" +"GO:0010669","epithelial structure maintenance",4,0,0.29,1720,"1.00000","0.4349","0.4349" +"GO:0048608","reproductive structure development",28,1,2.01,1286,"0.87706","0.4357","0.4357" +"GO:0048332","mesoderm morphogenesis",7,0,0.5,1721,"1.00000","0.4366","0.4366" +"GO:0010923","negative regulation of phosphatase activ...",4,0,0.29,1722,"1.00000","0.4368","0.4368" +"GO:0032515","negative regulation of phosphoprotein ph...",4,0,0.29,1723,"1.00000","0.4368","0.4368" +"GO:0035305","negative regulation of dephosphorylation",4,0,0.29,1724,"1.00000","0.4368","0.4368" +"GO:0035308","negative regulation of protein dephospho...",4,0,0.29,1725,"1.00000","0.4368","0.4368" +"GO:0022904","respiratory electron transport chain",5,0,0.36,1726,"1.00000","0.4404","0.4404" +"GO:0001706","endoderm formation",4,1,0.29,343,"0.25762","0.4410","0.4410" +"GO:0001711","endodermal cell fate commitment",4,1,0.29,344,"0.25762","0.4410","0.4410" +"GO:0001714","endodermal cell fate specification",4,1,0.29,345,"0.25762","0.4410","0.4410" +"GO:0035270","endocrine system development",4,1,0.29,346,"0.25762","0.4410","0.4410" +"GO:0035987","endodermal cell differentiation",4,1,0.29,347,"0.25762","0.4410","0.4410" +"GO:0031214","biomineral tissue development",5,0,0.36,1727,"1.00000","0.4415","0.4415" +"GO:0060348","bone development",5,0,0.36,1728,"1.00000","0.4415","0.4415" +"GO:1902105","regulation of leukocyte differentiation",8,1,0.57,682,"0.44915","0.4421","0.4421" +"GO:0009994","oocyte differentiation",8,0,0.57,1729,"1.00000","0.4421","0.4421" +"GO:0035418","protein localization to synapse",6,1,0.43,530,"0.36047","0.4432","0.4432" +"GO:0050767","regulation of neurogenesis",43,2,3.08,1227,"0.82641","0.4437","0.4437" +"GO:0046474","glycerophospholipid biosynthetic process",13,1,0.93,927,"0.62092","0.4438","0.4438" +"GO:0000447","endonucleolytic cleavage in ITS1 to sepa...",3,0,0.22,1730,"1.00000","0.4447","0.4447" +"GO:0000478","endonucleolytic cleavage involved in rRN...",3,0,0.22,1731,"1.00000","0.4447","0.4447" +"GO:0000479","endonucleolytic cleavage of tricistronic...",3,0,0.22,1732,"1.00000","0.4447","0.4447" +"GO:0090502","RNA phosphodiester bond hydrolysis, endo...",3,0,0.22,1733,"1.00000","0.4447","0.4447" +"GO:0000184","nuclear-transcribed mRNA catabolic proce...",6,1,0.43,531,"0.36047","0.4454","0.4454" +"GO:0001756","somitogenesis",4,0,0.29,1734,"1.00000","0.4461","0.4461" +"GO:0061053","somite development",4,0,0.29,1735,"1.00000","0.4461","0.4461" +"GO:0051101","regulation of DNA binding",4,0,0.29,1736,"1.00000","0.4484","0.4484" +"GO:0016573","histone acetylation",12,0,0.86,1737,"1.00000","0.4507","0.4507" +"GO:0007098","centrosome cycle",5,0,0.36,1738,"1.00000","0.4509","0.4509" +"GO:0031023","microtubule organizing center organizati...",5,0,0.36,1739,"1.00000","0.4509","0.4509" +"GO:0031570","DNA integrity checkpoint",6,0,0.43,1740,"1.00000","0.4516","0.4516" +"GO:0097191","extrinsic apoptotic signaling pathway",7,2,0.5,83,"0.08458","0.4517","0.4517" +"GO:0045667","regulation of osteoblast differentiation",7,1,0.5,624,"0.40646","0.4532","0.4532" +"GO:0008360","regulation of cell shape",7,0,0.5,1741,"1.00000","0.4532","0.4532" +"GO:0048762","mesenchymal cell differentiation",7,0,0.5,1742,"1.00000","0.4532","0.4532" +"GO:0030858","positive regulation of epithelial cell d...",3,1,0.22,192,"0.20018","0.4553","0.4553" +"GO:1902106","negative regulation of leukocyte differe...",3,1,0.22,193,"0.20018","0.4553","0.4553" +"GO:0035914","skeletal muscle cell differentiation",3,0,0.22,1743,"1.00000","0.4553","0.4553" +"GO:1902369","negative regulation of RNA catabolic pro...",3,0,0.22,1744,"1.00000","0.4553","0.4553" +"GO:1902373","negative regulation of mRNA catabolic pr...",3,0,0.22,1745,"1.00000","0.4553","0.4553" +"GO:1903312","negative regulation of mRNA metabolic pr...",3,0,0.22,1746,"1.00000","0.4553","0.4553" +"GO:0055002","striated muscle cell development",18,2,1.29,571,"0.37407","0.4555","0.4555" +"GO:0072583","clathrin-dependent endocytosis",4,0,0.29,1747,"1.00000","0.4578","0.4578" +"GO:0072330","monocarboxylic acid biosynthetic process",16,0,1.15,1748,"1.00000","0.4598","0.4598" +"GO:0006066","alcohol metabolic process",14,3,1,78,"0.07346","0.1988","0.4622" +"GO:0000245","spliceosomal complex assembly",4,0,0.29,1749,"1.00000","0.4630","0.4630" +"GO:0043633","polyadenylation-dependent RNA catabolic ...",3,1,0.22,194,"0.20018","0.4632","0.4632" +"GO:0032434","regulation of proteasomal ubiquitin-depe...",7,0,0.5,1750,"1.00000","0.4664","0.4664" +"GO:0060249","anatomical structure homeostasis",27,4,1.94,102,"0.12340","0.4676","0.4676" +"GO:0008406","gonad development",12,0,0.86,1751,"1.00000","0.4679","0.4679" +"GO:0051094","positive regulation of developmental pro...",68,4,4.88,1092,"0.73145","0.4685","0.4685" +"GO:0019674","NAD metabolic process",5,0,0.36,1752,"1.00000","0.4695","0.4695" +"GO:0000154","rRNA modification",4,0,0.29,1753,"1.00000","0.4706","0.4706" +"GO:0055065","metal ion homeostasis",23,1,1.65,1211,"0.82091","0.4713","0.4713" +"GO:0008340","determination of adult lifespan",5,0,0.36,1754,"1.00000","0.4723","0.4723" +"GO:0042058","regulation of epidermal growth factor re...",5,0,0.36,1755,"1.00000","0.4723","0.4723" +"GO:1901184","regulation of ERBB signaling pathway",5,0,0.36,1756,"1.00000","0.4723","0.4723" +"GO:0006665","sphingolipid metabolic process",10,1,0.72,798,"0.52559","0.4724","0.4724" +"GO:0045494","photoreceptor cell maintenance",5,1,0.36,441,"0.31095","0.4725","0.4725" +"GO:0048507","meristem development",5,1,0.36,442,"0.31095","0.4755","0.4755" +"GO:0015718","monocarboxylic acid transport",8,0,0.57,1757,"1.00000","0.4756","0.4756" +"GO:0009790","embryo development",82,6,5.88,828,"0.54283","0.4759","0.4759" +"GO:0031056","regulation of histone modification",8,2,0.57,95,"0.10760","0.4763","0.4763" +"GO:0030111","regulation of Wnt signaling pathway",21,1,1.51,1168,"0.79188","0.4779","0.4779" +"GO:1901575","organic substance catabolic process",154,13,11.05,411,"0.30834","0.4790","0.4790" +"GO:0009063","cellular amino acid catabolic process",14,2,1,390,"0.26557","0.4791","0.4791" +"GO:0001764","neuron migration",5,1,0.36,443,"0.31095","0.4791","0.4791" +"GO:0050851","antigen receptor-mediated signaling path...",5,1,0.36,444,"0.31095","0.4791","0.4791" +"GO:0009888","tissue development",114,9,8.18,664,"0.43328","0.4795","0.4795" +"GO:0042440","pigment metabolic process",9,2,0.65,111,"0.13204","0.4798","0.4798" +"GO:0007585","respiratory gaseous exchange",3,0,0.22,1758,"1.00000","0.4808","0.4808" +"GO:0031646","positive regulation of neurological syst...",3,0,0.22,1759,"1.00000","0.4808","0.4808" +"GO:0032228","regulation of synaptic transmission, GAB...",3,0,0.22,1760,"1.00000","0.4808","0.4808" +"GO:0050805","negative regulation of synaptic transmis...",3,0,0.22,1761,"1.00000","0.4808","0.4808" +"GO:0051932","synaptic transmission, GABAergic",3,0,0.22,1762,"1.00000","0.4808","0.4808" +"GO:0051965","positive regulation of synapse assembly",3,0,0.22,1763,"1.00000","0.4808","0.4808" +"GO:0060078","regulation of postsynaptic membrane pote...",3,0,0.22,1764,"1.00000","0.4808","0.4808" +"GO:0060079","excitatory postsynaptic potential",3,0,0.22,1765,"1.00000","0.4808","0.4808" +"GO:0097105","presynaptic membrane assembly",3,0,0.22,1766,"1.00000","0.4808","0.4808" +"GO:0098815","modulation of excitatory postsynaptic po...",3,0,0.22,1767,"1.00000","0.4808","0.4808" +"GO:0099565","chemical synaptic transmission, postsyna...",3,0,0.22,1768,"1.00000","0.4808","0.4808" +"GO:1902473","regulation of protein localization to sy...",3,0,0.22,1769,"1.00000","0.4808","0.4808" +"GO:1902474","positive regulation of protein localizat...",3,0,0.22,1770,"1.00000","0.4808","0.4808" +"GO:0022409","positive regulation of cell-cell adhesio...",7,1,0.5,625,"0.40646","0.4818","0.4818" +"GO:0009064","glutamine family amino acid metabolic pr...",11,1,0.79,843,"0.55976","0.4824","0.4824" +"GO:0000375","RNA splicing, via transesterification re...",26,0,1.86,1771,"1.00000","0.4830","0.4830" +"GO:0000377","RNA splicing, via transesterification re...",26,0,1.86,1772,"1.00000","0.4830","0.4830" +"GO:0000398","mRNA splicing, via spliceosome",26,0,1.86,1773,"1.00000","0.4830","0.4830" +"GO:0046545","development of primary female sexual cha...",4,0,0.29,1774,"1.00000","0.4831","0.4831" +"GO:0046660","female sex differentiation",4,0,0.29,1775,"1.00000","0.4831","0.4831" +"GO:0019932","second-messenger-mediated signaling",12,1,0.86,882,"0.59148","0.4831","0.4831" +"GO:0001701","in utero embryonic development",23,3,1.65,240,"0.22538","0.4843","0.4843" +"GO:1901701","cellular response to oxygen-containing c...",41,2,2.94,1180,"0.80540","0.4850","0.4850" +"GO:1905515","non-motile cilium assembly",6,0,0.43,1776,"1.00000","0.4854","0.4854" +"GO:0007166","cell surface receptor signaling pathway",130,8,9.32,1091,"0.72897","0.4869","0.4869" +"GO:0016052","carbohydrate catabolic process",13,2,0.93,246,"0.23813","0.4873","0.4873" +"GO:0045595","regulation of cell differentiation",81,5,5.81,1055,"0.70256","0.4884","0.4884" +"GO:0008643","carbohydrate transport",7,0,0.5,1777,"1.00000","0.4885","0.4885" +"GO:1905475","regulation of protein localization to me...",7,0,0.5,1778,"1.00000","0.4885","0.4885" +"GO:0050769","positive regulation of neurogenesis",22,1,1.58,1183,"0.80694","0.4886","0.4886" +"GO:0042775","mitochondrial ATP synthesis coupled elec...",3,0,0.22,1779,"1.00000","0.4900","0.4900" +"GO:0002275","myeloid cell activation involved in immu...",6,0,0.43,1780,"1.00000","0.4913","0.4913" +"GO:0002283","neutrophil activation involved in immune...",6,0,0.43,1781,"1.00000","0.4913","0.4913" +"GO:0043299","leukocyte degranulation",6,0,0.43,1782,"1.00000","0.4913","0.4913" +"GO:0043312","neutrophil degranulation",6,0,0.43,1783,"1.00000","0.4913","0.4913" +"GO:0050953","sensory perception of light stimulus",12,2,0.86,233,"0.21085","0.4915","0.4915" +"GO:0048738","cardiac muscle tissue development",16,1,1.15,1030,"0.69719","0.4925","0.4925" +"GO:0010799","regulation of peptidyl-threonine phospho...",3,0,0.22,1784,"1.00000","0.4925","0.4925" +"GO:0010800","positive regulation of peptidyl-threonin...",3,0,0.22,1785,"1.00000","0.4925","0.4925" +"GO:0018107","peptidyl-threonine phosphorylation",3,0,0.22,1786,"1.00000","0.4925","0.4925" +"GO:0032365","intracellular lipid transport",3,0,0.22,1787,"1.00000","0.4925","0.4925" +"GO:0002376","immune system process",88,8,6.31,407,"0.29399","0.4936","0.4936" +"GO:0060341","regulation of cellular localization",41,3,2.94,865,"0.57315","0.4948","0.4948" +"GO:0008630","intrinsic apoptotic signaling pathway in...",5,0,0.36,1788,"1.00000","0.4948","0.4948" +"GO:0015931","nucleobase-containing compound transport",13,3,0.93,60,"0.06082","0.4951","0.4951" +"GO:0016485","protein processing",11,2,0.79,143,"0.18392","0.4952","0.4952" +"GO:0055080","cation homeostasis",26,1,1.86,1256,"0.85708","0.4955","0.4955" +"GO:0098771","inorganic ion homeostasis",26,1,1.86,1257,"0.85708","0.4955","0.4955" +"GO:0009653","anatomical structure morphogenesis",175,9,12.55,1294,"0.89570","0.4961","0.4961" +"GO:0046173","polyol biosynthetic process",4,1,0.29,348,"0.25762","0.4966","0.4966" +"GO:0009952","anterior/posterior pattern specification",13,1,0.93,928,"0.62092","0.4970","0.4970" +"GO:0032526","response to retinoic acid",6,1,0.43,532,"0.36047","0.4976","0.4976" +"GO:0051216","cartilage development",6,0,0.43,1789,"1.00000","0.4976","0.4976" +"GO:0009268","response to pH",3,0,0.22,1790,"1.00000","0.4989","0.4989" +"GO:0035735","intraciliary transport involved in ciliu...",3,0,0.22,1791,"1.00000","0.4989","0.4989" +"GO:0009615","response to virus",4,0,0.29,1792,"1.00000","0.4990","0.4990" +"GO:0048699","generation of neurons",107,6,7.67,1172,"0.79342","0.4991","0.4991" +"GO:0016053","organic acid biosynthetic process",24,2,1.72,783,"0.52266","0.5020","0.5020" +"GO:0046394","carboxylic acid biosynthetic process",24,2,1.72,784,"0.52266","0.5020","0.5020" +"GO:0036498","IRE1-mediated unfolded protein response",3,0,0.22,1793,"1.00000","0.5026","0.5026" +"GO:0010927","cellular component assembly involved in ...",20,0,1.43,1794,"1.00000","0.5027","0.5027" +"GO:0043901","negative regulation of multi-organism pr...",7,1,0.5,626,"0.40646","0.5028","0.5028" +"GO:0050795","regulation of behavior",7,1,0.5,627,"0.40646","0.5028","0.5028" +"GO:0016043","cellular component organization",431,18,30.91,1419,"0.99827","0.5034","0.5034" +"GO:0007062","sister chromatid cohesion",9,0,0.65,1795,"1.00000","0.5046","0.5046" +"GO:0016311","dephosphorylation",51,1,3.66,1374,"0.97844","0.5051","0.5051" +"GO:0008380","RNA splicing",35,0,2.51,1796,"1.00000","0.5054","0.5054" +"GO:0002065","columnar/cuboidal epithelial cell differ...",17,3,1.22,99,"0.11744","0.5061","0.5061" +"GO:0003013","circulatory system process",19,2,1.36,592,"0.40032","0.5068","0.5068" +"GO:0008015","blood circulation",19,2,1.36,593,"0.40032","0.5068","0.5068" +"GO:0030279","negative regulation of ossification",6,1,0.43,533,"0.36047","0.5076","0.5076" +"GO:0006612","protein targeting to membrane",3,0,0.22,1797,"1.00000","0.5076","0.5076" +"GO:0070972","protein localization to endoplasmic reti...",3,0,0.22,1798,"1.00000","0.5076","0.5076" +"GO:0006956","complement activation",3,0,0.22,1799,"1.00000","0.5082","0.5082" +"GO:0072376","protein activation cascade",3,0,0.22,1800,"1.00000","0.5082","0.5082" +"GO:0006473","protein acetylation",14,0,1,1801,"1.00000","0.5084","0.5084" +"GO:0003206","cardiac chamber morphogenesis",3,0,0.22,1802,"1.00000","0.5093","0.5093" +"GO:0014013","regulation of gliogenesis",3,0,0.22,1803,"1.00000","0.5093","0.5093" +"GO:0061326","renal tubule development",3,0,0.22,1804,"1.00000","0.5093","0.5093" +"GO:0045930","negative regulation of mitotic cell cycl...",7,0,0.5,1805,"1.00000","0.5098","0.5098" +"GO:1903532","positive regulation of secretion by cell",12,1,0.86,883,"0.59148","0.5112","0.5112" +"GO:0048568","embryonic organ development",33,3,2.37,654,"0.42570","0.5112","0.5112" +"GO:0031623","receptor internalization",3,0,0.22,1806,"1.00000","0.5127","0.5127" +"GO:0060284","regulation of cell development",47,3,3.37,982,"0.66715","0.5128","0.5128" +"GO:0032835","glomerulus development",5,0,0.36,1807,"1.00000","0.5136","0.5136" +"GO:0048522","positive regulation of cellular process",250,12,17.93,1352,"0.95811","0.5149","0.5149" +"GO:0042386","hemocyte differentiation",3,1,0.22,195,"0.20018","0.5172","0.5172" +"GO:0045610","regulation of hemocyte differentiation",3,1,0.22,196,"0.20018","0.5172","0.5172" +"GO:0009100","glycoprotein metabolic process",42,2,3.01,1201,"0.81617","0.5177","0.5177" +"GO:0009225","nucleotide-sugar metabolic process",3,0,0.22,1808,"1.00000","0.5184","0.5184" +"GO:0040013","negative regulation of locomotion",12,1,0.86,884,"0.59148","0.5188","0.5188" +"GO:0035108","limb morphogenesis",5,1,0.36,445,"0.31095","0.5188","0.5188" +"GO:0060173","limb development",5,1,0.36,446,"0.31095","0.5188","0.5188" +"GO:0001890","placenta development",5,0,0.36,1809,"1.00000","0.5188","0.5188" +"GO:0048865","stem cell fate commitment",5,0,0.36,1810,"1.00000","0.5188","0.5188" +"GO:0015858","nucleoside transport",3,1,0.22,197,"0.20018","0.5198","0.5198" +"GO:1901642","nucleoside transmembrane transport",3,1,0.22,198,"0.20018","0.5198","0.5198" +"GO:0042476","odontogenesis",4,0,0.29,1811,"1.00000","0.5200","0.5200" +"GO:0003008","system process",90,5,6.46,1163,"0.78680","0.5206","0.5206" +"GO:0006836","neurotransmitter transport",21,3,1.51,150,"0.18721","0.5240","0.5240" +"GO:0071214","cellular response to abiotic stimulus",19,2,1.36,594,"0.40032","0.5245","0.5245" +"GO:0104004","cellular response to environmental stimu...",19,2,1.36,595,"0.40032","0.5245","0.5245" +"GO:0006368","transcription elongation from RNA polyme...",9,0,0.65,1812,"1.00000","0.5260","0.5260" +"GO:0051186","cofactor metabolic process",56,5,4.02,575,"0.37428","0.5276","0.5276" +"GO:0034109","homotypic cell-cell adhesion",10,1,0.72,799,"0.52559","0.5293","0.5293" +"GO:0060537","muscle tissue development",32,2,2.3,1013,"0.68107","0.5320","0.5320" +"GO:0042180","cellular ketone metabolic process",10,0,0.72,1813,"1.00000","0.5321","0.5321" +"GO:1900006","positive regulation of dendrite developm...",6,0,0.43,1814,"1.00000","0.5324","0.5324" +"GO:0035313","wound healing, spreading of epidermal ce...",3,0,0.22,1815,"1.00000","0.5337","0.5337" +"GO:0006475","internal protein amino acid acetylation",13,0,0.93,1816,"1.00000","0.5337","0.5337" +"GO:0018393","internal peptidyl-lysine acetylation",13,0,0.93,1817,"1.00000","0.5337","0.5337" +"GO:0018394","peptidyl-lysine acetylation",13,0,0.93,1818,"1.00000","0.5337","0.5337" +"GO:0042692","muscle cell differentiation",25,3,1.79,384,"0.26489","0.5350","0.5350" +"GO:0022404","molting cycle process",8,1,0.57,683,"0.44915","0.5352","0.5352" +"GO:0022405","hair cycle process",8,1,0.57,684,"0.44915","0.5352","0.5352" +"GO:0042633","hair cycle",8,1,0.57,685,"0.44915","0.5352","0.5352" +"GO:0034724","DNA replication-independent nucleosome o...",3,0,0.22,1819,"1.00000","0.5354","0.5354" +"GO:0051193","regulation of cofactor metabolic process",4,0,0.29,1820,"1.00000","0.5358","0.5358" +"GO:0006402","mRNA catabolic process",26,2,1.86,859,"0.56675","0.5362","0.5362" +"GO:0061136","regulation of proteasomal protein catabo...",10,0,0.72,1821,"1.00000","0.5371","0.5371" +"GO:0007600","sensory perception",28,3,2.01,494,"0.32541","0.5383","0.5383" +"GO:1902115","regulation of organelle assembly",17,3,1.22,100,"0.11744","0.5392","0.5392" +"GO:0046839","phospholipid dephosphorylation",4,0,0.29,1822,"1.00000","0.5392","0.5392" +"GO:0046856","phosphatidylinositol dephosphorylation",4,0,0.29,1823,"1.00000","0.5392","0.5392" +"GO:0044093","positive regulation of molecular functio...",72,8,5.16,117,"0.14013","0.5392","0.5392" +"GO:0051304","chromosome separation",3,0,0.22,1824,"1.00000","0.5397","0.5397" +"GO:0051306","mitotic sister chromatid separation",3,0,0.22,1825,"1.00000","0.5397","0.5397" +"GO:0007602","phototransduction",4,1,0.29,349,"0.25762","0.5397","0.5397" +"GO:1901361","organic cyclic compound catabolic proces...",57,4,4.09,911,"0.59373","0.5399","0.5399" +"GO:0010212","response to ionizing radiation",8,0,0.57,1826,"1.00000","0.5411","0.5411" +"GO:0008645","hexose transmembrane transport",6,0,0.43,1827,"1.00000","0.5413","0.5413" +"GO:0010827","regulation of glucose transmembrane tran...",6,0,0.43,1828,"1.00000","0.5413","0.5413" +"GO:0015749","monosaccharide transmembrane transport",6,0,0.43,1829,"1.00000","0.5413","0.5413" +"GO:0034219","carbohydrate transmembrane transport",6,0,0.43,1830,"1.00000","0.5413","0.5413" +"GO:1904659","glucose transmembrane transport",6,0,0.43,1831,"1.00000","0.5413","0.5413" +"GO:0040012","regulation of locomotion",42,6,3.01,79,"0.07584","0.5413","0.5413" +"GO:0001894","tissue homeostasis",18,3,1.29,114,"0.13385","0.5430","0.5430" +"GO:0070509","calcium ion import",4,1,0.29,350,"0.25762","0.5437","0.5437" +"GO:0050870","positive regulation of T cell activation",4,0,0.29,1832,"1.00000","0.5447","0.5447" +"GO:1903039","positive regulation of leukocyte cell-ce...",4,0,0.29,1833,"1.00000","0.5447","0.5447" +"GO:0014074","response to purine-containing compound",8,1,0.57,686,"0.44915","0.5450","0.5450" +"GO:0071840","cellular component organization or bioge...",450,19,32.28,1421,"0.99840","0.5453","0.5453" +"GO:0051962","positive regulation of nervous system de...",24,1,1.72,1232,"0.83388","0.5453","0.5453" +"GO:0010469","regulation of signaling receptor activit...",10,0,0.72,1834,"1.00000","0.5459","0.5459" +"GO:0030029","actin filament-based process",69,4,4.95,1110,"0.74206","0.5459","0.5459" +"GO:0035456","response to interferon-beta",5,1,0.36,447,"0.31095","0.5462","0.5462" +"GO:0035458","cellular response to interferon-beta",5,1,0.36,448,"0.31095","0.5462","0.5462" +"GO:0003143","embryonic heart tube morphogenesis",10,1,0.72,800,"0.52559","0.5462","0.5462" +"GO:0061371","determination of heart left/right asymme...",10,1,0.72,801,"0.52559","0.5462","0.5462" +"GO:0006096","glycolytic process",9,0,0.65,1835,"1.00000","0.5463","0.5463" +"GO:0006165","nucleoside diphosphate phosphorylation",9,0,0.65,1836,"1.00000","0.5463","0.5463" +"GO:0006757","ATP generation from ADP",9,0,0.65,1837,"1.00000","0.5463","0.5463" +"GO:0009132","nucleoside diphosphate metabolic process",9,0,0.65,1838,"1.00000","0.5463","0.5463" +"GO:0009135","purine nucleoside diphosphate metabolic ...",9,0,0.65,1839,"1.00000","0.5463","0.5463" +"GO:0009179","purine ribonucleoside diphosphate metabo...",9,0,0.65,1840,"1.00000","0.5463","0.5463" +"GO:0009185","ribonucleoside diphosphate metabolic pro...",9,0,0.65,1841,"1.00000","0.5463","0.5463" +"GO:0042866","pyruvate biosynthetic process",9,0,0.65,1842,"1.00000","0.5463","0.5463" +"GO:0046031","ADP metabolic process",9,0,0.65,1843,"1.00000","0.5463","0.5463" +"GO:0046939","nucleotide phosphorylation",9,0,0.65,1844,"1.00000","0.5463","0.5463" +"GO:0021762","substantia nigra development",5,1,0.36,449,"0.31095","0.5464","0.5464" +"GO:0048857","neural nucleus development",5,1,0.36,450,"0.31095","0.5464","0.5464" +"GO:0003006","developmental process involved in reprod...",66,4,4.73,1059,"0.70928","0.5475","0.5475" +"GO:0035148","tube formation",16,2,1.15,487,"0.32033","0.5478","0.5478" +"GO:0009649","entrainment of circadian clock",3,1,0.22,199,"0.20018","0.5497","0.5497" +"GO:0021536","diencephalon development",3,1,0.22,200,"0.20018","0.5497","0.5497" +"GO:0021781","glial cell fate commitment",3,1,0.22,201,"0.20018","0.5497","0.5497" +"GO:0030539","male genitalia development",3,1,0.22,202,"0.20018","0.5497","0.5497" +"GO:2001222","regulation of neuron migration",3,1,0.22,203,"0.20018","0.5497","0.5497" +"GO:0046879","hormone secretion",7,0,0.5,1845,"1.00000","0.5502","0.5502" +"GO:0043933","protein-containing complex subunit organ...",104,2,7.46,1416,"0.99656","0.5539","0.5539" +"GO:0071711","basement membrane organization",5,0,0.36,1846,"1.00000","0.5542","0.5542" +"GO:0045597","positive regulation of cell differentiat...",45,3,3.23,950,"0.63757","0.5548","0.5548" +"GO:0048870","cell motility",57,5,4.09,582,"0.38899","0.5550","0.5550" +"GO:0051674","localization of cell",57,5,4.09,583,"0.38899","0.5550","0.5550" +"GO:0019098","reproductive behavior",10,2,0.72,131,"0.15757","0.5559","0.5559" +"GO:0002831","regulation of response to biotic stimulu...",5,0,0.36,1847,"1.00000","0.5577","0.5577" +"GO:0050778","positive regulation of immune response",19,2,1.36,596,"0.40032","0.5578","0.5578" +"GO:0007010","cytoskeleton organization",104,4,7.46,1343,"0.94922","0.5579","0.5579" +"GO:0030855","epithelial cell differentiation",30,4,2.15,134,"0.16380","0.5587","0.5587" +"GO:0002064","epithelial cell development",16,1,1.15,1031,"0.69719","0.5590","0.5590" +"GO:0045638","negative regulation of myeloid cell diff...",5,1,0.36,451,"0.31095","0.5595","0.5595" +"GO:0090596","sensory organ morphogenesis",34,5,2.44,85,"0.09173","0.5603","0.5603" +"GO:0001707","mesoderm formation",6,0,0.43,1848,"1.00000","0.5611","0.5611" +"GO:0072384","organelle transport along microtubule",4,0,0.29,1849,"1.00000","0.5616","0.5616" +"GO:1902017","regulation of cilium assembly",10,2,0.72,132,"0.15757","0.5632","0.5632" +"GO:0097479","synaptic vesicle localization",10,1,0.72,802,"0.52559","0.5660","0.5660" +"GO:0060041","retina development in camera-type eye",23,4,1.65,80,"0.07750","0.5676","0.5676" +"GO:0030326","embryonic limb morphogenesis",3,1,0.22,204,"0.20018","0.5678","0.5678" +"GO:0035113","embryonic appendage morphogenesis",3,1,0.22,205,"0.20018","0.5678","0.5678" +"GO:0042733","embryonic digit morphogenesis",3,1,0.22,206,"0.20018","0.5678","0.5678" +"GO:0006470","protein dephosphorylation",41,1,2.94,1350,"0.95394","0.5684","0.5684" +"GO:0045668","negative regulation of osteoblast differ...",5,1,0.36,452,"0.31095","0.5684","0.5684" +"GO:0048864","stem cell development",5,0,0.36,1850,"1.00000","0.5684","0.5684" +"GO:0018210","peptidyl-threonine modification",7,0,0.5,1851,"1.00000","0.5687","0.5687" +"GO:0002263","cell activation involved in immune respo...",8,0,0.57,1852,"1.00000","0.5696","0.5696" +"GO:0002366","leukocyte activation involved in immune ...",8,0,0.57,1853,"1.00000","0.5696","0.5696" +"GO:0015908","fatty acid transport",6,0,0.43,1854,"1.00000","0.5730","0.5730" +"GO:0015909","long-chain fatty acid transport",6,0,0.43,1855,"1.00000","0.5730","0.5730" +"GO:0031935","regulation of chromatin silencing",3,1,0.22,207,"0.20018","0.5733","0.5733" +"GO:0031936","negative regulation of chromatin silenci...",3,1,0.22,208,"0.20018","0.5733","0.5733" +"GO:0060969","negative regulation of gene silencing",3,1,0.22,209,"0.20018","0.5733","0.5733" +"GO:0000018","regulation of DNA recombination",3,0,0.22,1856,"1.00000","0.5733","0.5733" +"GO:0033523","histone H2B ubiquitination",3,0,0.22,1857,"1.00000","0.5733","0.5733" +"GO:0035082","axoneme assembly",3,0,0.22,1858,"1.00000","0.5733","0.5733" +"GO:0045911","positive regulation of DNA recombination",3,0,0.22,1859,"1.00000","0.5733","0.5733" +"GO:0006635","fatty acid beta-oxidation",5,0,0.36,1860,"1.00000","0.5740","0.5740" +"GO:0071345","cellular response to cytokine stimulus",18,1,1.29,1100,"0.73934","0.5743","0.5743" +"GO:0019725","cellular homeostasis",38,1,2.73,1334,"0.94220","0.5755","0.5755" +"GO:0043928","exonucleolytic nuclear-transcribed mRNA ...",3,1,0.22,210,"0.20018","0.5758","0.5758" +"GO:2000113","negative regulation of cellular macromol...",64,3,4.59,1251,"0.85007","0.5766","0.5766" +"GO:0044057","regulation of system process",29,2,2.08,944,"0.62728","0.5781","0.5781" +"GO:0007219","Notch signaling pathway",12,1,0.86,885,"0.59148","0.5781","0.5781" +"GO:0001906","cell killing",4,0,0.29,1861,"1.00000","0.5785","0.5785" +"GO:0031341","regulation of cell killing",4,0,0.29,1862,"1.00000","0.5785","0.5785" +"GO:0031343","positive regulation of cell killing",4,0,0.29,1863,"1.00000","0.5785","0.5785" +"GO:1901615","organic hydroxy compound metabolic proce...",27,4,1.94,103,"0.12340","0.1643","0.5789" +"GO:0071482","cellular response to light stimulus",6,1,0.43,534,"0.36047","0.5791","0.5791" +"GO:2000241","regulation of reproductive process",16,1,1.15,1032,"0.69719","0.5792","0.5792" +"GO:0060828","regulation of canonical Wnt signaling pa...",15,1,1.08,992,"0.67363","0.5798","0.5798" +"GO:0051703","intraspecies interaction between organis...",9,0,0.65,1864,"1.00000","0.5799","0.5799" +"GO:0042462","eye photoreceptor cell development",14,2,1,391,"0.26557","0.5799","0.5799" +"GO:1903829","positive regulation of cellular protein ...",17,0,1.22,1865,"1.00000","0.5814","0.5814" +"GO:0051260","protein homooligomerization",19,1,1.36,1130,"0.75818","0.5830","0.5830" +"GO:0042593","glucose homeostasis",4,0,0.29,1866,"1.00000","0.5830","0.5830" +"GO:0010228","vegetative to reproductive phase transit...",3,0,0.22,1867,"1.00000","0.5831","0.5831" +"GO:0032786","positive regulation of DNA-templated tra...",3,0,0.22,1868,"1.00000","0.5831","0.5831" +"GO:0032968","positive regulation of transcription elo...",3,0,0.22,1869,"1.00000","0.5831","0.5831" +"GO:0046649","lymphocyte activation",18,1,1.29,1101,"0.73934","0.5833","0.5833" +"GO:0032091","negative regulation of protein binding",6,1,0.43,535,"0.36047","0.5848","0.5848" +"GO:0002237","response to molecule of bacterial origin",6,0,0.43,1870,"1.00000","0.5848","0.5848" +"GO:0035266","meristem growth",4,1,0.29,351,"0.25762","0.5850","0.5850" +"GO:0042278","purine nucleoside metabolic process",6,1,0.43,536,"0.36047","0.5868","0.5868" +"GO:0043543","protein acylation",22,0,1.58,1871,"1.00000","0.5870","0.5870" +"GO:0006560","proline metabolic process",3,0,0.22,1872,"1.00000","0.5880","0.5880" +"GO:0007162","negative regulation of cell adhesion",4,0,0.29,1873,"1.00000","0.5890","0.5890" +"GO:0006955","immune response",42,5,3.01,137,"0.17884","0.5892","0.5892" +"GO:0000819","sister chromatid segregation",15,0,1.08,1874,"1.00000","0.5895","0.5895" +"GO:0006265","DNA topological change",4,0,0.29,1875,"1.00000","0.5900","0.5900" +"GO:0070936","protein K48-linked ubiquitination",8,1,0.57,687,"0.44915","0.5908","0.5908" +"GO:0031122","cytoplasmic microtubule organization",3,0,0.22,1876,"1.00000","0.5908","0.5908" +"GO:0097106","postsynaptic density organization",3,0,0.22,1877,"1.00000","0.5908","0.5908" +"GO:0097119","postsynaptic density protein 95 clusteri...",3,0,0.22,1878,"1.00000","0.5908","0.5908" +"GO:0099084","postsynaptic specialization organization",3,0,0.22,1879,"1.00000","0.5908","0.5908" +"GO:0043647","inositol phosphate metabolic process",3,0,0.22,1880,"1.00000","0.5917","0.5917" +"GO:0010629","negative regulation of gene expression",101,5,7.24,1270,"0.86337","0.5921","0.5921" +"GO:0140014","mitotic nuclear division",17,0,1.22,1881,"1.00000","0.5924","0.5924" +"GO:0019362","pyridine nucleotide metabolic process",16,1,1.15,1033,"0.69719","0.5930","0.5930" +"GO:0046496","nicotinamide nucleotide metabolic proces...",16,1,1.15,1034,"0.69719","0.5930","0.5930" +"GO:0051240","positive regulation of multicellular org...",70,4,5.02,1118,"0.75235","0.5941","0.5941" +"GO:0032272","negative regulation of protein polymeriz...",7,0,0.5,1882,"1.00000","0.5944","0.5944" +"GO:0045926","negative regulation of growth",17,0,1.22,1883,"1.00000","0.5945","0.5945" +"GO:0048284","organelle fusion",6,0,0.43,1884,"1.00000","0.5950","0.5950" +"GO:0044839","cell cycle G2/M phase transition",4,0,0.29,1885,"1.00000","0.5950","0.5950" +"GO:1902749","regulation of cell cycle G2/M phase tran...",4,0,0.29,1886,"1.00000","0.5950","0.5950" +"GO:0007549","dosage compensation",3,0,0.22,1887,"1.00000","0.5952","0.5952" +"GO:0030317","flagellated sperm motility",5,0,0.36,1888,"1.00000","0.5955","0.5955" +"GO:0043009","chordate embryonic development",46,5,3.3,242,"0.23095","0.5968","0.5968" +"GO:0043966","histone H3 acetylation",6,0,0.43,1889,"1.00000","0.5974","0.5974" +"GO:0032101","regulation of response to external stimu...",17,0,1.22,1890,"1.00000","0.5979","0.5979" +"GO:0009056","catabolic process",189,16,13.56,398,"0.27608","0.5991","0.5991" +"GO:0006733","oxidoreduction coenzyme metabolic proces...",21,1,1.51,1169,"0.79188","0.5995","0.5995" +"GO:1905477","positive regulation of protein localizat...",5,0,0.36,1891,"1.00000","0.5997","0.5997" +"GO:0048863","stem cell differentiation",14,1,1,960,"0.64826","0.6014","0.6014" +"GO:0051146","striated muscle cell differentiation",23,3,1.65,241,"0.22538","0.6034","0.6034" +"GO:0006487","protein N-linked glycosylation",9,0,0.65,1892,"1.00000","0.6037","0.6037" +"GO:1903827","regulation of cellular protein localizat...",22,0,1.58,1893,"1.00000","0.6052","0.6052" +"GO:0032386","regulation of intracellular transport",20,3,1.43,135,"0.16883","0.6063","0.6063" +"GO:0009116","nucleoside metabolic process",14,1,1,961,"0.64826","0.6086","0.6086" +"GO:1901657","glycosyl compound metabolic process",14,1,1,962,"0.64826","0.6086","0.6086" +"GO:0007606","sensory perception of chemical stimulus",7,0,0.5,1894,"1.00000","0.6091","0.6091" +"GO:1904427","positive regulation of calcium ion trans...",3,0,0.22,1895,"1.00000","0.6105","0.6105" +"GO:1903506","regulation of nucleic acid-templated tra...",300,13,21.52,1392,"0.98854","0.6120","0.6120" +"GO:2001141","regulation of RNA biosynthetic process",300,13,21.52,1393,"0.98854","0.6120","0.6120" +"GO:0015988","energy coupled proton transmembrane tran...",4,1,0.29,352,"0.25762","0.6120","0.6120" +"GO:0015991","ATP hydrolysis coupled proton transport",4,1,0.29,353,"0.25762","0.6120","0.6120" +"GO:0090662","ATP hydrolysis coupled transmembrane tra...",4,1,0.29,354,"0.25762","0.6120","0.6120" +"GO:0099131","ATP hydrolysis coupled ion transmembrane...",4,1,0.29,355,"0.25762","0.6120","0.6120" +"GO:0099132","ATP hydrolysis coupled cation transmembr...",4,1,0.29,356,"0.25762","0.6120","0.6120" +"GO:0030282","bone mineralization",3,0,0.22,1896,"1.00000","0.6125","0.6125" +"GO:0034505","tooth mineralization",3,0,0.22,1897,"1.00000","0.6125","0.6125" +"GO:0042475","odontogenesis of dentin-containing tooth",3,0,0.22,1898,"1.00000","0.6125","0.6125" +"GO:0045778","positive regulation of ossification",3,0,0.22,1899,"1.00000","0.6125","0.6125" +"GO:0070166","enamel mineralization",3,0,0.22,1900,"1.00000","0.6125","0.6125" +"GO:0070167","regulation of biomineral tissue developm...",3,0,0.22,1901,"1.00000","0.6125","0.6125" +"GO:0097186","amelogenesis",3,0,0.22,1902,"1.00000","0.6125","0.6125" +"GO:0034764","positive regulation of transmembrane tra...",12,1,0.86,886,"0.59148","0.6125","0.6125" +"GO:0051092","positive regulation of NF-kappaB transcr...",3,1,0.22,211,"0.20018","0.6128","0.6128" +"GO:0007224","smoothened signaling pathway",5,1,0.36,453,"0.31095","0.6136","0.6136" +"GO:0010506","regulation of autophagy",18,3,1.29,115,"0.13385","0.6140","0.6140" +"GO:0002521","leukocyte differentiation",12,1,0.86,887,"0.59148","0.6143","0.6143" +"GO:0030239","myofibril assembly",14,0,1,1903,"1.00000","0.6150","0.6150" +"GO:0070527","platelet aggregation",9,1,0.65,734,"0.48879","0.6153","0.6153" +"GO:0007618","mating",3,1,0.22,212,"0.20018","0.6154","0.6154" +"GO:0007622","rhythmic behavior",3,1,0.22,213,"0.20018","0.6154","0.6154" +"GO:0048512","circadian behavior",3,1,0.22,214,"0.20018","0.6154","0.6154" +"GO:0030036","actin cytoskeleton organization",64,3,4.59,1252,"0.85007","0.6156","0.6156" +"GO:2001020","regulation of response to DNA damage sti...",9,0,0.65,1904,"1.00000","0.6166","0.6166" +"GO:1901700","response to oxygen-containing compound",66,5,4.73,779,"0.51839","0.6169","0.6169" +"GO:0014706","striated muscle tissue development",30,2,2.15,952,"0.64595","0.6171","0.6171" +"GO:0007029","endoplasmic reticulum organization",7,0,0.5,1905,"1.00000","0.6182","0.6182" +"GO:0009409","response to cold",3,1,0.22,215,"0.20018","0.6189","0.6189" +"GO:0030260","entry into host cell",3,1,0.22,216,"0.20018","0.6189","0.6189" +"GO:0032527","protein exit from endoplasmic reticulum",3,1,0.22,217,"0.20018","0.6189","0.6189" +"GO:0044409","entry into host",3,1,0.22,218,"0.20018","0.6189","0.6189" +"GO:0046718","viral entry into host cell",3,1,0.22,219,"0.20018","0.6189","0.6189" +"GO:0048525","negative regulation of viral process",3,1,0.22,220,"0.20018","0.6189","0.6189" +"GO:0051701","interaction with host",3,1,0.22,221,"0.20018","0.6189","0.6189" +"GO:0051806","entry into cell of other organism involv...",3,1,0.22,222,"0.20018","0.6189","0.6189" +"GO:0051828","entry into other organism involved in sy...",3,1,0.22,223,"0.20018","0.6189","0.6189" +"GO:1903901","negative regulation of viral life cycle",3,1,0.22,224,"0.20018","0.6189","0.6189" +"GO:0000724","double-strand break repair via homologou...",4,0,0.29,1906,"1.00000","0.6190","0.6190" +"GO:0000725","recombinational repair",4,0,0.29,1907,"1.00000","0.6190","0.6190" +"GO:0001824","blastocyst development",4,0,0.29,1908,"1.00000","0.6190","0.6190" +"GO:0061061","muscle structure development",53,4,3.8,824,"0.53461","0.6196","0.6196" +"GO:0042398","cellular modified amino acid biosyntheti...",4,0,0.29,1909,"1.00000","0.6200","0.6200" +"GO:0032594","protein transport within lipid bilayer",3,0,0.22,1910,"1.00000","0.6203","0.6203" +"GO:0042052","rhabdomere development",3,0,0.22,1911,"1.00000","0.6203","0.6203" +"GO:0044860","protein localization to plasma membrane ...",3,0,0.22,1912,"1.00000","0.6203","0.6203" +"GO:1903044","protein localization to membrane raft",3,0,0.22,1913,"1.00000","0.6203","0.6203" +"GO:0030198","extracellular matrix organization",13,0,0.93,1914,"1.00000","0.6210","0.6210" +"GO:0040011","locomotion",90,6,6.46,949,"0.63636","0.6217","0.6217" +"GO:0090090","negative regulation of canonical Wnt sig...",11,1,0.79,844,"0.55976","0.6222","0.6222" +"GO:0050776","regulation of immune response",26,2,1.86,860,"0.56675","0.6229","0.6229" +"GO:0060429","epithelium development",71,6,5.09,603,"0.40082","0.6229","0.6229" +"GO:0042493","response to drug",48,5,3.44,380,"0.25851","0.6235","0.6235" +"GO:0030435","sporulation resulting in formation of a ...",3,0,0.22,1915,"1.00000","0.6238","0.6238" +"GO:0022613","ribonucleoprotein complex biogenesis",34,1,2.44,1310,"0.92180","0.6258","0.6258" +"GO:0051345","positive regulation of hydrolase activit...",29,3,2.08,500,"0.34567","0.6270","0.6270" +"GO:0018243","protein O-linked glycosylation via threo...",4,0,0.29,1916,"1.00000","0.6270","0.6270" +"GO:0050885","neuromuscular process controlling balanc...",6,1,0.43,537,"0.36047","0.6273","0.6273" +"GO:0050905","neuromuscular process",6,1,0.43,538,"0.36047","0.6273","0.6273" +"GO:0006355","regulation of transcription, DNA-templat...",299,13,21.45,1389,"0.98806","0.6276","0.6276" +"GO:0071554","cell wall organization or biogenesis",3,0,0.22,1917,"1.00000","0.6281","0.6281" +"GO:0009127","purine nucleoside monophosphate biosynth...",16,1,1.15,1035,"0.69719","0.6291","0.6291" +"GO:0009168","purine ribonucleoside monophosphate bios...",16,1,1.15,1036,"0.69719","0.6291","0.6291" +"GO:0006970","response to osmotic stress",7,1,0.5,628,"0.40646","0.6312","0.6312" +"GO:0010038","response to metal ion",19,2,1.36,597,"0.40032","0.6326","0.6326" +"GO:0031960","response to corticosteroid",7,1,0.5,629,"0.40646","0.6328","0.6328" +"GO:0046683","response to organophosphorus",7,1,0.5,630,"0.40646","0.6328","0.6328" +"GO:0048488","synaptic vesicle endocytosis",4,0,0.29,1918,"1.00000","0.6335","0.6335" +"GO:0140238","presynaptic endocytosis",4,0,0.29,1919,"1.00000","0.6335","0.6335" +"GO:2000026","regulation of multicellular organismal d...",93,4,6.67,1304,"0.91197","0.6335","0.6335" +"GO:0006091","generation of precursor metabolites and ...",30,2,2.15,953,"0.64595","0.6339","0.6339" +"GO:0035303","regulation of dephosphorylation",8,0,0.57,1920,"1.00000","0.6340","0.6340" +"GO:0035304","regulation of protein dephosphorylation",8,0,0.57,1921,"1.00000","0.6340","0.6340" +"GO:0034599","cellular response to oxidative stress",13,0,0.93,1922,"1.00000","0.6358","0.6358" +"GO:0001942","hair follicle development",7,1,0.5,631,"0.40646","0.6362","0.6362" +"GO:0098773","skin epidermis development",7,1,0.5,632,"0.40646","0.6362","0.6362" +"GO:0014031","mesenchymal cell development",4,0,0.29,1923,"1.00000","0.6365","0.6365" +"GO:0014032","neural crest cell development",4,0,0.29,1924,"1.00000","0.6365","0.6365" +"GO:0014033","neural crest cell differentiation",4,0,0.29,1925,"1.00000","0.6365","0.6365" +"GO:0033962","cytoplasmic mRNA processing body assembl...",4,0,0.29,1926,"1.00000","0.6365","0.6365" +"GO:0009890","negative regulation of biosynthetic proc...",67,4,4.81,1084,"0.72053","0.6365","0.6365" +"GO:0007169","transmembrane receptor protein tyrosine ...",24,0,1.72,1927,"1.00000","0.6372","0.6372" +"GO:0006469","negative regulation of protein kinase ac...",11,2,0.79,144,"0.18392","0.6378","0.6378" +"GO:0031330","negative regulation of cellular cataboli...",13,1,0.93,929,"0.62092","0.6379","0.6379" +"GO:0048468","cell development",142,10,10.18,866,"0.57468","0.6389","0.6389" +"GO:1902275","regulation of chromatin organization",10,2,0.72,133,"0.15757","0.6391","0.6391" +"GO:0006730","one-carbon metabolic process",3,1,0.22,225,"0.20018","0.6405","0.6405" +"GO:0001843","neural tube closure",10,1,0.72,803,"0.52559","0.6410","0.6410" +"GO:0014020","primary neural tube formation",10,1,0.72,804,"0.52559","0.6410","0.6410" +"GO:0060606","tube closure",10,1,0.72,805,"0.52559","0.6410","0.6410" +"GO:0032880","regulation of protein localization",42,2,3.01,1202,"0.81617","0.6413","0.6413" +"GO:0099003","vesicle-mediated transport in synapse",14,1,1,963,"0.64826","0.6418","0.6418" +"GO:0031058","positive regulation of histone modificat...",4,1,0.29,357,"0.25762","0.6435","0.6435" +"GO:1905269","positive regulation of chromatin organiz...",4,1,0.29,358,"0.25762","0.6435","0.6435" +"GO:2000736","regulation of stem cell differentiation",6,0,0.43,1928,"1.00000","0.6440","0.6440" +"GO:0030334","regulation of cell migration",31,4,2.22,136,"0.17822","0.6441","0.6441" +"GO:2000045","regulation of G1/S transition of mitotic...",3,0,0.22,1929,"1.00000","0.6451","0.6451" +"GO:0006954","inflammatory response",12,1,0.86,888,"0.59148","0.6452","0.6452" +"GO:0048598","embryonic morphogenesis",46,4,3.3,652,"0.42241","0.6460","0.6460" +"GO:0006739","NADP metabolic process",3,1,0.22,226,"0.20018","0.6465","0.6465" +"GO:0002121","inter-male aggressive behavior",5,1,0.36,454,"0.31095","0.6471","0.6471" +"GO:0009887","animal organ morphogenesis",79,5,5.67,1008,"0.68106","0.6477","0.6477" +"GO:0010558","negative regulation of macromolecule bio...",65,3,4.66,1263,"0.85745","0.6477","0.6477" +"GO:0043900","regulation of multi-organism process",18,1,1.29,1102,"0.73934","0.6480","0.6480" +"GO:0071902","positive regulation of protein serine/th...",7,0,0.5,1930,"1.00000","0.6480","0.6480" +"GO:0050771","negative regulation of axonogenesis",4,0,0.29,1931,"1.00000","0.6485","0.6485" +"GO:0047496","vesicle transport along microtubule",3,0,0.22,1932,"1.00000","0.6488","0.6488" +"GO:0099518","vesicle cytoskeletal trafficking",3,0,0.22,1933,"1.00000","0.6488","0.6488" +"GO:0008052","sensory organ boundary specification",4,1,0.29,359,"0.25762","0.6490","0.6490" +"GO:0010160","formation of animal organ boundary",4,1,0.29,360,"0.25762","0.6490","0.6490" +"GO:0016360","sensory organ precursor cell fate determ...",4,1,0.29,361,"0.25762","0.6490","0.6490" +"GO:0021543","pallium development",4,1,0.29,362,"0.25762","0.6490","0.6490" +"GO:0021761","limbic system development",4,1,0.29,363,"0.25762","0.6490","0.6490" +"GO:0048806","genitalia development",4,1,0.29,364,"0.25762","0.6490","0.6490" +"GO:0060425","lung morphogenesis",4,1,0.29,365,"0.25762","0.6490","0.6490" +"GO:0060581","cell fate commitment involved in pattern...",4,1,0.29,366,"0.25762","0.6490","0.6490" +"GO:0060582","cell fate determination involved in patt...",4,1,0.29,367,"0.25762","0.6490","0.6490" +"GO:0001654","eye development",54,6,3.87,146,"0.18676","0.6519","0.6519" +"GO:0048880","sensory system development",54,6,3.87,147,"0.18676","0.6519","0.6519" +"GO:0150063","visual system development",54,6,3.87,148,"0.18676","0.6519","0.6519" +"GO:0030308","negative regulation of cell growth",14,0,1,1934,"1.00000","0.6519","0.6519" +"GO:0043628","ncRNA 3'-end processing",3,1,0.22,227,"0.20018","0.6526","0.6526" +"GO:0032970","regulation of actin filament-based proce...",33,1,2.37,1307,"0.91567","0.6527","0.6527" +"GO:0070647","protein modification by small protein co...",78,4,5.59,1222,"0.82364","0.6528","0.6528" +"GO:0071478","cellular response to radiation",10,1,0.72,806,"0.52559","0.6533","0.6533" +"GO:0042051","compound eye photoreceptor development",7,0,0.5,1935,"1.00000","0.6539","0.6539" +"GO:0045017","glycerolipid biosynthetic process",15,1,1.08,993,"0.67363","0.6539","0.6539" +"GO:0031347","regulation of defense response",17,1,1.22,1071,"0.71905","0.6548","0.6548" +"GO:0016180","snRNA processing",5,0,0.36,1936,"1.00000","0.6549","0.6549" +"GO:0022603","regulation of anatomical structure morph...",45,1,3.23,1359,"0.96599","0.6568","0.6568" +"GO:0030900","forebrain development",12,2,0.86,234,"0.21085","0.6602","0.6602" +"GO:0090257","regulation of muscle system process",13,1,0.93,930,"0.62092","0.6609","0.6609" +"GO:0008625","extrinsic apoptotic signaling pathway vi...",3,0,0.22,1937,"1.00000","0.6609","0.6609" +"GO:0010039","response to iron ion",4,0,0.29,1938,"1.00000","0.6609","0.6609" +"GO:0030041","actin filament polymerization",14,0,1,1939,"1.00000","0.6618","0.6618" +"GO:0045088","regulation of innate immune response",12,1,0.86,889,"0.59148","0.6619","0.6619" +"GO:0008283","cell proliferation",66,4,4.73,1060,"0.70928","0.6631","0.6631" +"GO:0021915","neural tube development",14,1,1,964,"0.64826","0.6631","0.6631" +"GO:0071384","cellular response to corticosteroid stim...",6,1,0.43,539,"0.36047","0.6635","0.6635" +"GO:0043588","skin development",10,1,0.72,807,"0.52559","0.6643","0.6643" +"GO:0010828","positive regulation of glucose transmemb...",4,0,0.29,1940,"1.00000","0.6644","0.6644" +"GO:1903076","regulation of protein localization to pl...",4,0,0.29,1941,"1.00000","0.6644","0.6644" +"GO:1904375","regulation of protein localization to ce...",4,0,0.29,1942,"1.00000","0.6644","0.6644" +"GO:0010628","positive regulation of gene expression",69,5,4.95,835,"0.55911","0.6645","0.6645" +"GO:1990823","response to leukemia inhibitory factor",4,0,0.29,1943,"1.00000","0.6654","0.6654" +"GO:1990830","cellular response to leukemia inhibitory...",4,0,0.29,1944,"1.00000","0.6654","0.6654" +"GO:0065007","biological regulation",967,60,69.36,1337,"0.94433","0.1287","0.6662" +"GO:0051604","protein maturation",14,2,1,392,"0.26557","0.6671","0.6671" +"GO:0000003","reproduction",111,9,7.96,604,"0.40137","0.6680","0.6680" +"GO:0009895","negative regulation of catabolic process",16,1,1.15,1037,"0.69719","0.6680","0.6680" +"GO:0032774","RNA biosynthetic process",332,14,23.81,1408,"0.99380","0.6681","0.6681" +"GO:0044089","positive regulation of cellular componen...",34,0,2.44,1945,"1.00000","0.6686","0.6686" +"GO:0055114","oxidation-reduction process",139,12,9.97,401,"0.29140","0.6692","0.6692" +"GO:0048592","eye morphogenesis",33,4,2.37,230,"0.20826","0.6698","0.6698" +"GO:1903053","regulation of extracellular matrix organ...",4,0,0.29,1946,"1.00000","0.6698","0.6698" +"GO:0046883","regulation of hormone secretion",6,0,0.43,1947,"1.00000","0.6700","0.6700" +"GO:0051047","positive regulation of secretion",14,1,1,965,"0.64826","0.6703","0.6703" +"GO:0002790","peptide secretion",14,0,1,1948,"1.00000","0.6703","0.6703" +"GO:0009306","protein secretion",14,0,1,1949,"1.00000","0.6703","0.6703" +"GO:0007368","determination of left/right symmetry",16,1,1.15,1038,"0.69719","0.6722","0.6722" +"GO:0009799","specification of symmetry",16,1,1.15,1039,"0.69719","0.6722","0.6722" +"GO:0009855","determination of bilateral symmetry",16,1,1.15,1040,"0.69719","0.6722","0.6722" +"GO:0050808","synapse organization",32,2,2.3,1014,"0.68107","0.6723","0.6723" +"GO:0050890","cognition",20,0,1.43,1950,"1.00000","0.6728","0.6728" +"GO:0007596","blood coagulation",12,1,0.86,890,"0.59148","0.6736","0.6736" +"GO:0007599","hemostasis",12,1,0.86,891,"0.59148","0.6736","0.6736" +"GO:0050817","coagulation",12,1,0.86,892,"0.59148","0.6736","0.6736" +"GO:0007416","synapse assembly",14,0,1,1951,"1.00000","0.6737","0.6737" +"GO:1905114","cell surface receptor signaling pathway ...",38,1,2.73,1335,"0.94220","0.6740","0.6740" +"GO:0051591","response to cAMP",6,1,0.43,540,"0.36047","0.6756","0.6756" +"GO:0030030","cell projection organization",103,5,7.39,1281,"0.87450","0.6760","0.6760" +"GO:0009166","nucleotide catabolic process",12,0,0.86,1952,"1.00000","0.6762","0.6762" +"GO:1901292","nucleoside phosphate catabolic process",12,0,0.86,1953,"1.00000","0.6762","0.6762" +"GO:0032446","protein modification by small protein co...",61,4,4.38,957,"0.64822","0.6765","0.6765" +"GO:0044248","cellular catabolic process",167,15,11.98,236,"0.21207","0.6766","0.6766" +"GO:0006796","phosphate-containing compound metabolic ...",353,22,25.32,1178,"0.80121","0.6770","0.6770" +"GO:0006952","defense response",49,5,3.51,396,"0.27258","0.6771","0.6771" +"GO:0048193","Golgi vesicle transport",25,3,1.79,385,"0.26489","0.6777","0.6777" +"GO:0006520","cellular amino acid metabolic process",48,5,3.44,381,"0.25851","0.6778","0.6778" +"GO:2000112","regulation of cellular macromolecule bio...",319,14,22.88,1395,"0.98931","0.6785","0.6785" +"GO:0000070","mitotic sister chromatid segregation",11,0,0.79,1954,"1.00000","0.6791","0.6791" +"GO:0007015","actin filament organization",34,2,2.44,1063,"0.71332","0.6795","0.6795" +"GO:0051276","chromosome organization",109,7,7.82,1006,"0.67783","0.6802","0.6802" +"GO:0034329","cell junction assembly",12,0,0.86,1955,"1.00000","0.6802","0.6802" +"GO:0007298","border follicle cell migration",4,1,0.29,368,"0.25762","0.6807","0.6807" +"GO:0008652","cellular amino acid biosynthetic process",7,1,0.5,633,"0.40646","0.6810","0.6810" +"GO:1901607","alpha-amino acid biosynthetic process",7,1,0.5,634,"0.40646","0.6810","0.6810" +"GO:0008219","cell death",95,5,6.81,1224,"0.82499","0.6823","0.6823" +"GO:0048732","gland development",14,2,1,393,"0.26557","0.6824","0.6824" +"GO:0034655","nucleobase-containing compound catabolic...",47,2,3.37,1267,"0.86245","0.6831","0.6831" +"GO:0031329","regulation of cellular catabolic process",40,5,2.87,120,"0.15466","0.6838","0.6838" +"GO:0043062","extracellular structure organization",14,0,1,1956,"1.00000","0.6838","0.6838" +"GO:0090501","RNA phosphodiester bond hydrolysis",9,1,0.65,735,"0.48879","0.6838","0.6838" +"GO:0016241","regulation of macroautophagy",11,2,0.79,145,"0.18392","0.6839","0.6839" +"GO:0035329","hippo signaling",8,0,0.57,1957,"1.00000","0.6842","0.6842" +"GO:0098662","inorganic cation transmembrane transport",37,2,2.65,1120,"0.75655","0.6860","0.6860" +"GO:0050801","ion homeostasis",32,2,2.3,1015,"0.68107","0.6860","0.6860" +"GO:0010256","endomembrane system organization",30,0,2.15,1958,"1.00000","0.6864","0.6864" +"GO:0051704","multi-organism process",117,8,8.39,920,"0.61158","0.6867","0.6867" +"GO:0045747","positive regulation of Notch signaling p...",6,1,0.43,541,"0.36047","0.6881","0.6881" +"GO:0036473","cell death in response to oxidative stre...",6,0,0.43,1959,"1.00000","0.6881","0.6881" +"GO:0009607","response to biotic stimulus",32,2,2.3,1016,"0.68107","0.6884","0.6884" +"GO:0000956","nuclear-transcribed mRNA catabolic proce...",17,1,1.22,1072,"0.71905","0.6887","0.6887" +"GO:0009612","response to mechanical stimulus",17,2,1.22,505,"0.34738","0.6892","0.6892" +"GO:0000045","autophagosome assembly",8,1,0.57,688,"0.44915","0.6894","0.6894" +"GO:1905037","autophagosome organization",8,1,0.57,689,"0.44915","0.6894","0.6894" +"GO:0030048","actin filament-based movement",5,1,0.36,455,"0.31095","0.6898","0.6898" +"GO:0030837","negative regulation of actin filament po...",5,0,0.36,1960,"1.00000","0.6898","0.6898" +"GO:0032309","icosanoid secretion",4,0,0.29,1961,"1.00000","0.6900","0.6900" +"GO:0046717","acid secretion",4,0,0.29,1962,"1.00000","0.6900","0.6900" +"GO:0050482","arachidonic acid secretion",4,0,0.29,1963,"1.00000","0.6900","0.6900" +"GO:0071715","icosanoid transport",4,0,0.29,1964,"1.00000","0.6900","0.6900" +"GO:1901571","fatty acid derivative transport",4,0,0.29,1965,"1.00000","0.6900","0.6900" +"GO:1903963","arachidonate transport",4,0,0.29,1966,"1.00000","0.6900","0.6900" +"GO:0009889","regulation of biosynthetic process",329,15,23.6,1382,"0.98579","0.6901","0.6901" +"GO:0051960","regulation of nervous system development",47,2,3.37,1268,"0.86245","0.6902","0.6902" +"GO:0007140","male meiotic nuclear division",4,0,0.29,1967,"1.00000","0.6905","0.6905" +"GO:0030330","DNA damage response, signal transduction...",4,0,0.29,1968,"1.00000","0.6905","0.6905" +"GO:0072332","intrinsic apoptotic signaling pathway by...",4,0,0.29,1969,"1.00000","0.6905","0.6905" +"GO:1902229","regulation of intrinsic apoptotic signal...",4,0,0.29,1970,"1.00000","0.6905","0.6905" +"GO:0022414","reproductive process",103,9,7.39,479,"0.31728","0.6907","0.6907" +"GO:0050794","regulation of cellular process",865,52,62.04,1353,"0.95969","0.2600","0.6908" +"GO:0030307","positive regulation of cell growth",4,1,0.29,369,"0.25762","0.6915","0.6915" +"GO:0045815","positive regulation of gene expression, ...",4,1,0.29,370,"0.25762","0.6915","0.6915" +"GO:0045862","positive regulation of proteolysis",12,0,0.86,1971,"1.00000","0.6915","0.6915" +"GO:0031348","negative regulation of defense response",4,0,0.29,1972,"1.00000","0.6925","0.6925" +"GO:0060326","cell chemotaxis",4,0,0.29,1973,"1.00000","0.6925","0.6925" +"GO:0098742","cell-cell adhesion via plasma-membrane a...",22,1,1.58,1184,"0.80694","0.6926","0.6926" +"GO:0002066","columnar/cuboidal epithelial cell develo...",10,1,0.72,808,"0.52559","0.6943","0.6943" +"GO:0030707","ovarian follicle cell development",10,1,0.72,809,"0.52559","0.6943","0.6943" +"GO:0007423","sensory organ development",66,7,4.73,152,"0.19077","0.6947","0.6947" +"GO:1903707","negative regulation of hemopoiesis",6,1,0.43,542,"0.36047","0.6949","0.6949" +"GO:0001709","cell fate determination",10,1,0.72,810,"0.52559","0.6958","0.6958" +"GO:0002164","larval development",8,1,0.57,690,"0.44915","0.6967","0.6967" +"GO:2000145","regulation of cell motility",34,4,2.44,237,"0.22380","0.6973","0.6973" +"GO:0007369","gastrulation",16,1,1.15,1041,"0.69719","0.6983","0.6983" +"GO:0030336","negative regulation of cell migration",11,0,0.79,1974,"1.00000","0.6999","0.6999" +"GO:0051271","negative regulation of cellular componen...",11,0,0.79,1975,"1.00000","0.6999","0.6999" +"GO:2000146","negative regulation of cell motility",11,0,0.79,1976,"1.00000","0.6999","0.6999" +"GO:0034446","substrate adhesion-dependent cell spread...",4,1,0.29,371,"0.25762","0.7003","0.7003" +"GO:0050731","positive regulation of peptidyl-tyrosine...",4,1,0.29,372,"0.25762","0.7003","0.7003" +"GO:0061097","regulation of protein tyrosine kinase ac...",4,1,0.29,373,"0.25762","0.7003","0.7003" +"GO:0051568","histone H3-K4 methylation",6,1,0.43,543,"0.36047","0.7005","0.7005" +"GO:0001708","cell fate specification",9,1,0.65,736,"0.48879","0.7008","0.7008" +"GO:0048565","digestive tract development",9,1,0.65,737,"0.48879","0.7008","0.7008" +"GO:0055123","digestive system development",9,1,0.65,738,"0.48879","0.7008","0.7008" +"GO:0048489","synaptic vesicle transport",8,1,0.57,691,"0.44915","0.7009","0.7009" +"GO:0097480","establishment of synaptic vesicle locali...",8,1,0.57,692,"0.44915","0.7009","0.7009" +"GO:0090150","establishment of protein localization to...",11,0,0.79,1977,"1.00000","0.7012","0.7012" +"GO:0007517","muscle organ development",31,1,2.22,1297,"0.90193","0.7013","0.7013" +"GO:0048580","regulation of post-embryonic development",5,1,0.36,456,"0.31095","0.7016","0.7016" +"GO:0009101","glycoprotein biosynthetic process",38,1,2.73,1336,"0.94220","0.7019","0.7019" +"GO:0097435","supramolecular fiber organization",58,2,4.16,1316,"0.92919","0.7020","0.7020" +"GO:0045814","negative regulation of gene expression, ...",10,1,0.72,811,"0.52559","0.7020","0.7020" +"GO:0015748","organophosphate ester transport",5,0,0.36,1978,"1.00000","0.7025","0.7025" +"GO:0006885","regulation of pH",3,0,0.22,1979,"1.00000","0.7026","0.7026" +"GO:0055067","monovalent inorganic cation homeostasis",3,0,0.22,1980,"1.00000","0.7026","0.7026" +"GO:0006536","glutamate metabolic process",3,0,0.22,1981,"1.00000","0.7029","0.7029" +"GO:0033043","regulation of organelle organization",78,4,5.59,1223,"0.82364","0.7032","0.7032" +"GO:0030149","sphingolipid catabolic process",4,1,0.29,374,"0.25762","0.7032","0.7032" +"GO:0046466","membrane lipid catabolic process",4,1,0.29,375,"0.25762","0.7032","0.7032" +"GO:0030833","regulation of actin filament polymerizat...",13,0,0.93,1982,"1.00000","0.7053","0.7053" +"GO:0065003","protein-containing complex assembly",91,1,6.53,1422,"0.99900","0.7057","0.7057" +"GO:0032332","positive regulation of chondrocyte diffe...",3,0,0.22,1983,"1.00000","0.7057","0.7057" +"GO:0061009","common bile duct development",3,0,0.22,1984,"1.00000","0.7057","0.7057" +"GO:0061036","positive regulation of cartilage develop...",3,0,0.22,1985,"1.00000","0.7057","0.7057" +"GO:0072497","mesenchymal stem cell differentiation",3,0,0.22,1986,"1.00000","0.7057","0.7057" +"GO:2000738","positive regulation of stem cell differe...",3,0,0.22,1987,"1.00000","0.7057","0.7057" +"GO:2000739","regulation of mesenchymal stem cell diff...",3,0,0.22,1988,"1.00000","0.7057","0.7057" +"GO:2000741","positive regulation of mesenchymal stem ...",3,0,0.22,1989,"1.00000","0.7057","0.7057" +"GO:0043087","regulation of GTPase activity",25,3,1.79,386,"0.26489","0.7064","0.7064" +"GO:0048871","multicellular organismal homeostasis",21,3,1.51,151,"0.18721","0.7068","0.7068" +"GO:0060070","canonical Wnt signaling pathway",20,1,1.43,1146,"0.77566","0.7071","0.7071" +"GO:0007050","cell cycle arrest",8,1,0.57,693,"0.44915","0.7081","0.7081" +"GO:0002429","immune response-activating cell surface ...",7,1,0.5,635,"0.40646","0.7084","0.7084" +"GO:0032943","mononuclear cell proliferation",7,0,0.5,1990,"1.00000","0.7084","0.7084" +"GO:0032944","regulation of mononuclear cell prolifera...",7,0,0.5,1991,"1.00000","0.7084","0.7084" +"GO:0046651","lymphocyte proliferation",7,0,0.5,1992,"1.00000","0.7084","0.7084" +"GO:0050670","regulation of lymphocyte proliferation",7,0,0.5,1993,"1.00000","0.7084","0.7084" +"GO:0070661","leukocyte proliferation",7,0,0.5,1994,"1.00000","0.7084","0.7084" +"GO:0070663","regulation of leukocyte proliferation",7,0,0.5,1995,"1.00000","0.7084","0.7084" +"GO:0033673","negative regulation of kinase activity",13,2,0.93,247,"0.23813","0.7091","0.7091" +"GO:0043085","positive regulation of catalytic activit...",47,4,3.37,665,"0.43894","0.7095","0.7095" +"GO:0002673","regulation of acute inflammatory respons...",3,0,0.22,1996,"1.00000","0.7097","0.7097" +"GO:0070613","regulation of protein processing",3,0,0.22,1997,"1.00000","0.7097","0.7097" +"GO:1903317","regulation of protein maturation",3,0,0.22,1998,"1.00000","0.7097","0.7097" +"GO:0016579","protein deubiquitination",18,0,1.29,1999,"1.00000","0.7102","0.7102" +"GO:0070646","protein modification by small protein re...",18,0,1.29,2000,"1.00000","0.7102","0.7102" +"GO:0050793","regulation of developmental process",131,7,9.4,1244,"0.84417","0.7103","0.7103" +"GO:0007264","small GTPase mediated signal transductio...",53,3,3.8,1113,"0.74524","0.7104","0.7104" +"GO:0032388","positive regulation of intracellular tra...",12,0,0.86,2001,"1.00000","0.7107","0.7107" +"GO:0033157","regulation of intracellular protein tran...",12,0,0.86,2002,"1.00000","0.7107","0.7107" +"GO:0030856","regulation of epithelial cell differenti...",6,1,0.43,544,"0.36047","0.7108","0.7108" +"GO:0007419","ventral cord development",4,0,0.29,2003,"1.00000","0.7120","0.7120" +"GO:0060324","face development",4,0,0.29,2004,"1.00000","0.7120","0.7120" +"GO:0061041","regulation of wound healing",4,0,0.29,2005,"1.00000","0.7120","0.7120" +"GO:0007424","open tracheal system development",6,0,0.43,2006,"1.00000","0.7120","0.7120" +"GO:0006821","chloride transport",8,1,0.57,694,"0.44915","0.7125","0.7125" +"GO:0051147","regulation of muscle cell differentiatio...",9,0,0.65,2007,"1.00000","0.7126","0.7126" +"GO:0051153","regulation of striated muscle cell diffe...",9,0,0.65,2008,"1.00000","0.7126","0.7126" +"GO:0035330","regulation of hippo signaling",3,0,0.22,2009,"1.00000","0.7127","0.7127" +"GO:0044380","protein localization to cytoskeleton",3,0,0.22,2010,"1.00000","0.7127","0.7127" +"GO:0060039","pericardium development",3,0,0.22,2011,"1.00000","0.7127","0.7127" +"GO:0072698","protein localization to microtubule cyto...",3,0,0.22,2012,"1.00000","0.7127","0.7127" +"GO:0099558","maintenance of synapse structure",3,0,0.22,2013,"1.00000","0.7127","0.7127" +"GO:0019439","aromatic compound catabolic process",55,4,3.94,856,"0.56471","0.7132","0.7132" +"GO:0046700","heterocycle catabolic process",55,3,3.94,1141,"0.76782","0.7132","0.7132" +"GO:0072359","circulatory system development",60,3,4.3,1204,"0.81721","0.7138","0.7138" +"GO:0009892","negative regulation of metabolic process",143,9,10.26,1061,"0.71158","0.7147","0.7147" +"GO:0007507","heart development",42,2,3.01,1203,"0.81617","0.7151","0.7151" +"GO:0010921","regulation of phosphatase activity",6,0,0.43,2014,"1.00000","0.7152","0.7152" +"GO:0043666","regulation of phosphoprotein phosphatase...",6,0,0.43,2015,"1.00000","0.7152","0.7152" +"GO:0007159","leukocyte cell-cell adhesion",6,0,0.43,2016,"1.00000","0.7155","0.7155" +"GO:0006928","movement of cell or subcellular componen...",102,6,7.32,1119,"0.75350","0.7164","0.7164" +"GO:0031327","negative regulation of cellular biosynth...",66,3,4.73,1271,"0.86450","0.7165","0.7165" +"GO:0030217","T cell differentiation",7,0,0.5,2017,"1.00000","0.7166","0.7166" +"GO:0002088","lens development in camera-type eye",5,1,0.36,457,"0.31095","0.7168","0.7168" +"GO:0031101","fin regeneration",5,1,0.36,458,"0.31095","0.7168","0.7168" +"GO:0048754","branching morphogenesis of an epithelial...",5,1,0.36,459,"0.31095","0.7168","0.7168" +"GO:0048859","formation of anatomical boundary",5,1,0.36,460,"0.31095","0.7168","0.7168" +"GO:0045454","cell redox homeostasis",11,0,0.79,2018,"1.00000","0.7182","0.7182" +"GO:0098930","axonal transport",4,0,0.29,2019,"1.00000","0.7192","0.7192" +"GO:0006351","transcription, DNA-templated",329,14,23.6,1405,"0.99295","0.7194","0.7194" +"GO:0035601","protein deacylation",9,0,0.65,2020,"1.00000","0.7199","0.7199" +"GO:0098732","macromolecule deacylation",9,0,0.65,2021,"1.00000","0.7199","0.7199" +"GO:0043207","response to external biotic stimulus",29,2,2.08,945,"0.62728","0.7201","0.7201" +"GO:0051707","response to other organism",29,2,2.08,946,"0.62728","0.7201","0.7201" +"GO:0006396","RNA processing",127,1,9.11,1429,"0.99994","0.7202","0.7202" +"GO:0050852","T cell receptor signaling pathway",4,1,0.29,376,"0.25762","0.7207","0.7207" +"GO:0016236","macroautophagy",19,2,1.36,598,"0.40032","0.7210","0.7210" +"GO:0051385","response to mineralocorticoid",5,1,0.36,461,"0.31095","0.7213","0.7213" +"GO:0048645","animal organ formation",9,1,0.65,739,"0.48879","0.7216","0.7216" +"GO:0032479","regulation of type I interferon producti...",3,0,0.22,2022,"1.00000","0.7216","0.7216" +"GO:0032606","type I interferon production",3,0,0.22,2023,"1.00000","0.7216","0.7216" +"GO:0050830","defense response to Gram-positive bacter...",3,0,0.22,2024,"1.00000","0.7216","0.7216" +"GO:0034097","response to cytokine",22,1,1.58,1185,"0.80694","0.7238","0.7238" +"GO:0031032","actomyosin structure organization",24,0,1.72,2025,"1.00000","0.7242","0.7242" +"GO:0031326","regulation of cellular biosynthetic proc...",326,14,23.38,1403,"0.99200","0.7242","0.7242" +"GO:0009112","nucleobase metabolic process",5,1,0.36,462,"0.31095","0.7244","0.7244" +"GO:0046112","nucleobase biosynthetic process",5,1,0.36,463,"0.31095","0.7244","0.7244" +"GO:0046849","bone remodeling",4,0,0.29,2026,"1.00000","0.7245","0.7245" +"GO:0046850","regulation of bone remodeling",4,0,0.29,2027,"1.00000","0.7245","0.7245" +"GO:1901264","carbohydrate derivative transport",6,1,0.43,545,"0.36047","0.7254","0.7254" +"GO:0032504","multicellular organism reproduction",69,6,4.95,577,"0.37431","0.7256","0.7256" +"GO:0046165","alcohol biosynthetic process",6,1,0.43,546,"0.36047","0.7265","0.7265" +"GO:0006743","ubiquinone metabolic process",5,0,0.36,2028,"1.00000","0.7267","0.7267" +"GO:0006744","ubiquinone biosynthetic process",5,0,0.36,2029,"1.00000","0.7267","0.7267" +"GO:0042181","ketone biosynthetic process",5,0,0.36,2030,"1.00000","0.7267","0.7267" +"GO:1901661","quinone metabolic process",5,0,0.36,2031,"1.00000","0.7267","0.7267" +"GO:1901663","quinone biosynthetic process",5,0,0.36,2032,"1.00000","0.7267","0.7267" +"GO:0045664","regulation of neuron differentiation",39,2,2.8,1161,"0.78217","0.7274","0.7274" +"GO:0002009","morphogenesis of an epithelium",48,3,3.44,1019,"0.68127","0.7284","0.7284" +"GO:0006997","nucleus organization",9,1,0.65,740,"0.48879","0.7288","0.7288" +"GO:0042254","ribosome biogenesis",23,1,1.65,1212,"0.82091","0.7293","0.7293" +"GO:0099563","modification of synaptic structure",3,0,0.22,2033,"1.00000","0.7299","0.7299" +"GO:1901046","positive regulation of oviposition",3,0,0.22,2034,"1.00000","0.7299","0.7299" +"GO:2000369","regulation of clathrin-dependent endocyt...",3,0,0.22,2035,"1.00000","0.7299","0.7299" +"GO:0009651","response to salt stress",3,0,0.22,2036,"1.00000","0.7305","0.7305" +"GO:0060491","regulation of cell projection assembly",21,2,1.51,708,"0.45118","0.7307","0.7307" +"GO:0120032","regulation of plasma membrane bounded ce...",21,2,1.51,709,"0.45118","0.7307","0.7307" +"GO:0046903","secretion",55,1,3.94,1379,"0.98410","0.7321","0.7321" +"GO:0070076","histone lysine demethylation",5,1,0.36,464,"0.31095","0.7323","0.7323" +"GO:0044703","multi-organism reproductive process",66,6,4.73,498,"0.33473","0.7324","0.7324" +"GO:0032436","positive regulation of proteasomal ubiqu...",5,0,0.36,2037,"1.00000","0.7333","0.7333" +"GO:1901800","positive regulation of proteasomal prote...",5,0,0.36,2038,"1.00000","0.7333","0.7333" +"GO:1903052","positive regulation of proteolysis invol...",5,0,0.36,2039,"1.00000","0.7333","0.7333" +"GO:1903364","positive regulation of cellular protein ...",5,0,0.36,2040,"1.00000","0.7333","0.7333" +"GO:2000060","positive regulation of ubiquitin-depende...",5,0,0.36,2041,"1.00000","0.7333","0.7333" +"GO:0031344","regulation of cell projection organizati...",44,3,3.16,939,"0.62212","0.7334","0.7334" +"GO:0120035","regulation of plasma membrane bounded ce...",44,3,3.16,940,"0.62212","0.7334","0.7334" +"GO:0010975","regulation of neuron projection developm...",27,1,1.94,1273,"0.86744","0.7342","0.7342" +"GO:0060271","cilium assembly",29,3,2.08,501,"0.34567","0.7343","0.7343" +"GO:1903037","regulation of leukocyte cell-cell adhesi...",5,0,0.36,2042,"1.00000","0.7348","0.7348" +"GO:0051270","regulation of cellular component movemen...",40,5,2.87,121,"0.15466","0.7350","0.7350" +"GO:0006270","DNA replication initiation",3,0,0.22,2043,"1.00000","0.7357","0.7357" +"GO:0071479","cellular response to ionizing radiation",4,0,0.29,2044,"1.00000","0.7360","0.7360" +"GO:1903078","positive regulation of protein localizat...",3,0,0.22,2045,"1.00000","0.7360","0.7360" +"GO:1904377","positive regulation of protein localizat...",3,0,0.22,2046,"1.00000","0.7360","0.7360" +"GO:0043603","cellular amide metabolic process",77,5,5.52,977,"0.65855","0.7360","0.7360" +"GO:0045665","negative regulation of neuron differenti...",13,1,0.93,931,"0.62092","0.7367","0.7367" +"GO:0022416","chaeta development",4,0,0.29,2047,"1.00000","0.7369","0.7369" +"GO:0048609","multicellular organismal reproductive pr...",65,6,4.66,491,"0.32164","0.7375","0.7375" +"GO:0030323","respiratory tube development",9,1,0.65,741,"0.48879","0.7377","0.7377" +"GO:0030324","lung development",9,1,0.65,742,"0.48879","0.7377","0.7377" +"GO:0045637","regulation of myeloid cell differentiati...",9,1,0.65,743,"0.48879","0.7382","0.7382" +"GO:0006766","vitamin metabolic process",9,1,0.65,744,"0.48879","0.7392","0.7392" +"GO:0022402","cell cycle process",85,4,6.1,1279,"0.87137","0.7404","0.7404" +"GO:0016266","O-glycan processing",6,1,0.43,547,"0.36047","0.7406","0.7406" +"GO:0050673","epithelial cell proliferation",15,1,1.08,994,"0.67363","0.7408","0.7408" +"GO:0019219","regulation of nucleobase-containing comp...",320,14,22.95,1396,"0.98974","0.7421","0.7421" +"GO:0072006","nephron development",7,0,0.5,2048,"1.00000","0.7425","0.7425" +"GO:0048729","tissue morphogenesis",53,3,3.8,1114,"0.74524","0.7431","0.7431" +"GO:0006626","protein targeting to mitochondrion",13,0,0.93,2049,"1.00000","0.7441","0.7441" +"GO:0070585","protein localization to mitochondrion",13,0,0.93,2050,"1.00000","0.7441","0.7441" +"GO:0072655","establishment of protein localization to...",13,0,0.93,2051,"1.00000","0.7441","0.7441" +"GO:0016079","synaptic vesicle exocytosis",4,1,0.29,377,"0.25762","0.7445","0.7445" +"GO:0016075","rRNA catabolic process",5,1,0.36,465,"0.31095","0.7450","0.7450" +"GO:0034661","ncRNA catabolic process",5,1,0.36,466,"0.31095","0.7450","0.7450" +"GO:0002062","chondrocyte differentiation",4,0,0.29,2052,"1.00000","0.7459","0.7459" +"GO:0032330","regulation of chondrocyte differentiatio...",4,0,0.29,2053,"1.00000","0.7459","0.7459" +"GO:0061025","membrane fusion",4,0,0.29,2054,"1.00000","0.7459","0.7459" +"GO:0061035","regulation of cartilage development",4,0,0.29,2055,"1.00000","0.7459","0.7459" +"GO:0048167","regulation of synaptic plasticity",8,1,0.57,695,"0.44915","0.7460","0.7460" +"GO:0006959","humoral immune response",6,0,0.43,2056,"1.00000","0.7467","0.7467" +"GO:0009737","response to abscisic acid",8,0,0.57,2057,"1.00000","0.7470","0.7470" +"GO:0009124","nucleoside monophosphate biosynthetic pr...",18,1,1.29,1103,"0.73934","0.7475","0.7475" +"GO:0009156","ribonucleoside monophosphate biosyntheti...",18,1,1.29,1104,"0.73934","0.7475","0.7475" +"GO:0097659","nucleic acid-templated transcription",330,14,23.67,1406,"0.99325","0.7483","0.7483" +"GO:0044782","cilium organization",30,3,2.15,568,"0.36587","0.7483","0.7483" +"GO:0006486","protein glycosylation",37,1,2.65,1330,"0.93766","0.7490","0.7490" +"GO:0043413","macromolecule glycosylation",37,1,2.65,1331,"0.93766","0.7490","0.7490" +"GO:0070085","glycosylation",37,1,2.65,1332,"0.93766","0.7490","0.7490" +"GO:0006541","glutamine metabolic process",4,1,0.29,378,"0.25762","0.7492","0.7492" +"GO:0009084","glutamine family amino acid biosynthetic...",4,1,0.29,379,"0.25762","0.7492","0.7492" +"GO:0050789","regulation of biological process",917,55,65.77,1363,"0.96744","0.1811","0.7493" +"GO:0007160","cell-matrix adhesion",9,0,0.65,2058,"1.00000","0.7496","0.7496" +"GO:0001570","vasculogenesis",4,0,0.29,2059,"1.00000","0.7497","0.7497" +"GO:0002449","lymphocyte mediated immunity",4,0,0.29,2060,"1.00000","0.7497","0.7497" +"GO:0002703","regulation of leukocyte mediated immunit...",4,0,0.29,2061,"1.00000","0.7497","0.7497" +"GO:0002705","positive regulation of leukocyte mediate...",4,0,0.29,2062,"1.00000","0.7497","0.7497" +"GO:0002706","regulation of lymphocyte mediated immuni...",4,0,0.29,2063,"1.00000","0.7497","0.7497" +"GO:0002708","positive regulation of lymphocyte mediat...",4,0,0.29,2064,"1.00000","0.7497","0.7497" +"GO:0006996","organelle organization",319,15,22.88,1375,"0.97914","0.7498","0.7498" +"GO:0016072","rRNA metabolic process",21,1,1.51,1170,"0.79188","0.7498","0.7498" +"GO:0031334","positive regulation of protein complex a...",17,0,1.22,2065,"1.00000","0.7500","0.7500" +"GO:0031589","cell-substrate adhesion",12,1,0.86,893,"0.59148","0.7502","0.7502" +"GO:0001754","eye photoreceptor cell differentiation",16,2,1.15,488,"0.32033","0.7503","0.7503" +"GO:0023061","signal release",16,1,1.15,1042,"0.69719","0.7503","0.7503" +"GO:0000132","establishment of mitotic spindle orienta...",4,0,0.29,2066,"1.00000","0.7506","0.7506" +"GO:0040001","establishment of mitotic spindle localiz...",4,0,0.29,2067,"1.00000","0.7506","0.7506" +"GO:0051293","establishment of spindle localization",4,0,0.29,2068,"1.00000","0.7506","0.7506" +"GO:0051294","establishment of spindle orientation",4,0,0.29,2069,"1.00000","0.7506","0.7506" +"GO:0051653","spindle localization",4,0,0.29,2070,"1.00000","0.7506","0.7506" +"GO:0007297","ovarian follicle cell migration",5,1,0.36,467,"0.31095","0.7509","0.7509" +"GO:0071695","anatomical structure maturation",7,0,0.5,2071,"1.00000","0.7510","0.7510" +"GO:0048814","regulation of dendrite morphogenesis",5,1,0.36,468,"0.31095","0.7515","0.7515" +"GO:0060997","dendritic spine morphogenesis",5,1,0.36,469,"0.31095","0.7515","0.7515" +"GO:0019233","sensory perception of pain",5,0,0.36,2072,"1.00000","0.7515","0.7515" +"GO:0006892","post-Golgi vesicle-mediated transport",3,0,0.22,2073,"1.00000","0.7523","0.7523" +"GO:0007611","learning or memory",19,0,1.36,2074,"1.00000","0.7534","0.7534" +"GO:0051128","regulation of cellular component organiz...",131,6,9.4,1309,"0.92023","0.7539","0.7539" +"GO:0006749","glutathione metabolic process",3,0,0.22,2075,"1.00000","0.7540","0.7540" +"GO:0036465","synaptic vesicle recycling",6,0,0.43,2076,"1.00000","0.7540","0.7540" +"GO:0035107","appendage morphogenesis",14,1,1,966,"0.64826","0.7541","0.7541" +"GO:0042330","taxis",30,0,2.15,2077,"1.00000","0.7543","0.7543" +"GO:0000469","cleavage involved in rRNA processing",5,1,0.36,470,"0.31095","0.7555","0.7555" +"GO:0019933","cAMP-mediated signaling",8,0,0.57,2078,"1.00000","0.7560","0.7560" +"GO:0019935","cyclic-nucleotide-mediated signaling",8,0,0.57,2079,"1.00000","0.7560","0.7560" +"GO:0048546","digestive tract morphogenesis",7,0,0.5,2080,"1.00000","0.7562","0.7562" +"GO:0006767","water-soluble vitamin metabolic process",7,1,0.5,636,"0.40646","0.7570","0.7570" +"GO:0007044","cell-substrate junction assembly",6,0,0.43,2081,"1.00000","0.7574","0.7574" +"GO:0043406","positive regulation of MAP kinase activi...",6,0,0.43,2082,"1.00000","0.7574","0.7574" +"GO:0008333","endosome to lysosome transport",5,0,0.36,2083,"1.00000","0.7578","0.7578" +"GO:0018209","peptidyl-serine modification",10,0,0.72,2084,"1.00000","0.7582","0.7582" +"GO:1902600","proton transmembrane transport",7,1,0.5,637,"0.40646","0.7583","0.7583" +"GO:0007051","spindle organization",9,1,0.65,745,"0.48879","0.7586","0.7586" +"GO:0009566","fertilization",9,1,0.65,746,"0.48879","0.7586","0.7586" +"GO:1901654","response to ketone",9,1,0.65,747,"0.48879","0.7586","0.7586" +"GO:0045807","positive regulation of endocytosis",9,0,0.65,2085,"1.00000","0.7586","0.7586" +"GO:2001234","negative regulation of apoptotic signali...",9,0,0.65,2086,"1.00000","0.7586","0.7586" +"GO:0008585","female gonad development",3,0,0.22,2087,"1.00000","0.7591","0.7591" +"GO:0042698","ovulation cycle",3,0,0.22,2088,"1.00000","0.7591","0.7591" +"GO:0007018","microtubule-based movement",28,0,2.01,2089,"1.00000","0.7596","0.7596" +"GO:0031331","positive regulation of cellular cataboli...",15,1,1.08,995,"0.67363","0.7604","0.7604" +"GO:0034762","regulation of transmembrane transport",25,2,1.79,831,"0.54508","0.0806","0.7608" +"GO:1905268","negative regulation of chromatin organiz...",5,1,0.36,471,"0.31095","0.7624","0.7624" +"GO:2001251","negative regulation of chromosome organi...",5,1,0.36,472,"0.31095","0.7624","0.7624" +"GO:0000209","protein polyubiquitination",21,2,1.51,710,"0.45118","0.7632","0.7632" +"GO:0043405","regulation of MAP kinase activity",7,0,0.5,2090,"1.00000","0.7634","0.7634" +"GO:1901990","regulation of mitotic cell cycle phase t...",8,0,0.57,2091,"1.00000","0.7639","0.7639" +"GO:0051963","regulation of synapse assembly",7,0,0.5,2092,"1.00000","0.7639","0.7639" +"GO:0051348","negative regulation of transferase activ...",15,2,1.08,405,"0.29302","0.7651","0.7651" +"GO:0001763","morphogenesis of a branching structure",6,1,0.43,548,"0.36047","0.7658","0.7658" +"GO:0048663","neuron fate commitment",6,1,0.43,549,"0.36047","0.7658","0.7658" +"GO:0061138","morphogenesis of a branching epithelium",6,1,0.43,550,"0.36047","0.7658","0.7658" +"GO:0051258","protein polymerization",23,0,1.65,2093,"1.00000","0.7666","0.7666" +"GO:0030162","regulation of proteolysis",30,1,2.15,1291,"0.89426","0.7678","0.7678" +"GO:0010952","positive regulation of peptidase activit...",5,0,0.36,2094,"1.00000","0.7682","0.7682" +"GO:0051489","regulation of filopodium assembly",5,0,0.36,2095,"1.00000","0.7682","0.7682" +"GO:0001655","urogenital system development",20,0,1.43,2096,"1.00000","0.7685","0.7685" +"GO:0010942","positive regulation of cell death",25,3,1.79,387,"0.26489","0.7686","0.7686" +"GO:0009416","response to light stimulus",22,1,1.58,1186,"0.80694","0.7699","0.7699" +"GO:0030001","metal ion transport",71,5,5.09,869,"0.58529","0.7700","0.7700" +"GO:0034765","regulation of ion transmembrane transpor...",19,2,1.36,599,"0.40032","0.0144","0.7700" +"GO:0043094","cellular metabolic compound salvage",3,0,0.22,2097,"1.00000","0.7711","0.7711" +"GO:0006906","vesicle fusion",3,0,0.22,2098,"1.00000","0.7716","0.7716" +"GO:0090174","organelle membrane fusion",3,0,0.22,2099,"1.00000","0.7716","0.7716" +"GO:0018108","peptidyl-tyrosine phosphorylation",5,1,0.36,473,"0.31095","0.7716","0.7716" +"GO:0050730","regulation of peptidyl-tyrosine phosphor...",5,1,0.36,474,"0.31095","0.7716","0.7716" +"GO:0034502","protein localization to chromosome",3,0,0.22,2100,"1.00000","0.7732","0.7732" +"GO:0003407","neural retina development",12,2,0.86,235,"0.21085","0.7735","0.7735" +"GO:0002443","leukocyte mediated immunity",11,0,0.79,2101,"1.00000","0.7739","0.7739" +"GO:0043065","positive regulation of apoptotic process",19,2,1.36,600,"0.40032","0.7742","0.7742" +"GO:0021680","cerebellar Purkinje cell layer developme...",4,0,0.29,2102,"1.00000","0.7747","0.7747" +"GO:0021695","cerebellar cortex development",4,0,0.29,2103,"1.00000","0.7747","0.7747" +"GO:0007049","cell cycle",110,5,7.89,1303,"0.90762","0.7753","0.7753" +"GO:0048583","regulation of response to stimulus",197,10,14.13,1305,"0.91429","0.7767","0.7767" +"GO:0015850","organic hydroxy compound transport",4,0,0.29,2104,"1.00000","0.7770","0.7770" +"GO:0044265","cellular macromolecule catabolic process",76,4,5.45,1194,"0.80759","0.7771","0.7771" +"GO:0072347","response to anesthetic",5,1,0.36,475,"0.31095","0.7776","0.7776" +"GO:0001947","heart looping",9,1,0.65,748,"0.48879","0.7776","0.7776" +"GO:0051602","response to electrical stimulus",7,1,0.5,638,"0.40646","0.7781","0.7781" +"GO:0002444","myeloid leukocyte mediated immunity",7,0,0.5,2105,"1.00000","0.7781","0.7781" +"GO:0002446","neutrophil mediated immunity",7,0,0.5,2106,"1.00000","0.7781","0.7781" +"GO:0030865","cortical cytoskeleton organization",7,0,0.5,2107,"1.00000","0.7781","0.7781" +"GO:0030866","cortical actin cytoskeleton organization",7,0,0.5,2108,"1.00000","0.7781","0.7781" +"GO:0036230","granulocyte activation",7,0,0.5,2109,"1.00000","0.7781","0.7781" +"GO:0042119","neutrophil activation",7,0,0.5,2110,"1.00000","0.7781","0.7781" +"GO:0010592","positive regulation of lamellipodium ass...",3,0,0.22,2111,"1.00000","0.7782","0.7782" +"GO:0032675","regulation of interleukin-6 production",3,0,0.22,2112,"1.00000","0.7782","0.7782" +"GO:0043029","T cell homeostasis",3,0,0.22,2113,"1.00000","0.7782","0.7782" +"GO:0046631","alpha-beta T cell activation",3,0,0.22,2114,"1.00000","0.7782","0.7782" +"GO:0046632","alpha-beta T cell differentiation",3,0,0.22,2115,"1.00000","0.7782","0.7782" +"GO:0048668","collateral sprouting",3,0,0.22,2116,"1.00000","0.7782","0.7782" +"GO:0050766","positive regulation of phagocytosis",3,0,0.22,2117,"1.00000","0.7782","0.7782" +"GO:0050921","positive regulation of chemotaxis",3,0,0.22,2118,"1.00000","0.7782","0.7782" +"GO:0060099","regulation of phagocytosis, engulfment",3,0,0.22,2119,"1.00000","0.7782","0.7782" +"GO:1902745","positive regulation of lamellipodium org...",3,0,0.22,2120,"1.00000","0.7782","0.7782" +"GO:1905153","regulation of membrane invagination",3,0,0.22,2121,"1.00000","0.7782","0.7782" +"GO:0034660","ncRNA metabolic process",68,1,4.88,1409,"0.99411","0.7784","0.7784" +"GO:0090316","positive regulation of intracellular pro...",11,0,0.79,2122,"1.00000","0.7788","0.7788" +"GO:0051254","positive regulation of RNA metabolic pro...",59,5,4.23,651,"0.41833","0.7791","0.7791" +"GO:0198738","cell-cell signaling by wnt",36,1,2.58,1318,"0.93277","0.7799","0.7799" +"GO:0008089","anterograde axonal transport",3,0,0.22,2123,"1.00000","0.7811","0.7811" +"GO:0010556","regulation of macromolecule biosynthetic...",322,14,23.09,1399,"0.99055","0.7813","0.7813" +"GO:0051093","negative regulation of developmental pro...",47,2,3.37,1269,"0.86245","0.7816","0.7816" +"GO:0007338","single fertilization",8,1,0.57,696,"0.44915","0.7823","0.7823" +"GO:0008088","axo-dendritic transport",8,0,0.57,2124,"1.00000","0.7823","0.7823" +"GO:0043902","positive regulation of multi-organism pr...",8,0,0.57,2125,"1.00000","0.7823","0.7823" +"GO:1902850","microtubule cytoskeleton organization in...",8,0,0.57,2126,"1.00000","0.7823","0.7823" +"GO:2001243","negative regulation of intrinsic apoptot...",8,0,0.57,2127,"1.00000","0.7823","0.7823" +"GO:0042771","intrinsic apoptotic signaling pathway in...",3,0,0.22,2128,"1.00000","0.7826","0.7826" +"GO:1902230","negative regulation of intrinsic apoptot...",3,0,0.22,2129,"1.00000","0.7826","0.7826" +"GO:0007411","axon guidance",17,0,1.22,2130,"1.00000","0.7828","0.7828" +"GO:0097485","neuron projection guidance",17,0,1.22,2131,"1.00000","0.7828","0.7828" +"GO:0007498","mesoderm development",15,0,1.08,2132,"1.00000","0.7837","0.7837" +"GO:0000077","DNA damage checkpoint",4,0,0.29,2133,"1.00000","0.7851","0.7851" +"GO:0097305","response to alcohol",18,1,1.29,1105,"0.73934","0.7854","0.7854" +"GO:0051241","negative regulation of multicellular org...",46,2,3.3,1254,"0.85414","0.7858","0.7858" +"GO:0032879","regulation of localization",134,11,9.61,566,"0.36477","0.4354","0.7858" +"GO:0030182","neuron differentiation",98,6,7.03,1066,"0.71779","0.7863","0.7863" +"GO:0032271","regulation of protein polymerization",18,0,1.29,2134,"1.00000","0.7864","0.7864" +"GO:0140053","mitochondrial gene expression",5,1,0.36,476,"0.31095","0.7869","0.7869" +"GO:0009058","biosynthetic process",608,32,43.61,1388,"0.98800","0.7874","0.7874" +"GO:0035265","organ growth",5,0,0.36,2135,"1.00000","0.7891","0.7891" +"GO:0043934","sporulation",5,0,0.36,2136,"1.00000","0.7891","0.7891" +"GO:0140056","organelle localization by membrane tethe...",6,1,0.43,551,"0.36047","0.7892","0.7892" +"GO:0030099","myeloid cell differentiation",18,2,1.29,572,"0.37407","0.7892","0.7892" +"GO:0072001","renal system development",18,0,1.29,2137,"1.00000","0.7892","0.7892" +"GO:0001841","neural tube formation",11,1,0.79,845,"0.55976","0.7897","0.7897" +"GO:0030168","platelet activation",10,1,0.72,812,"0.52559","0.7898","0.7898" +"GO:0015914","phospholipid transport",4,0,0.29,2138,"1.00000","0.7901","0.7901" +"GO:0006508","proteolysis",156,12,11.19,667,"0.44451","0.7902","0.7902" +"GO:0019953","sexual reproduction",62,6,4.45,399,"0.28293","0.7902","0.7902" +"GO:0030510","regulation of BMP signaling pathway",5,0,0.36,2139,"1.00000","0.7917","0.7917" +"GO:0050920","regulation of chemotaxis",5,0,0.36,2140,"1.00000","0.7917","0.7917" +"GO:0006364","rRNA processing",17,1,1.22,1073,"0.71905","0.7924","0.7924" +"GO:0048666","neuron development",82,5,5.88,1062,"0.71294","0.7936","0.7936" +"GO:0048640","negative regulation of developmental gro...",6,0,0.43,2141,"1.00000","0.7939","0.7939" +"GO:0040008","regulation of growth",35,2,2.51,1090,"0.72839","0.7947","0.7947" +"GO:0045893","positive regulation of transcription, DN...",55,5,3.94,509,"0.35957","0.7952","0.7952" +"GO:1902680","positive regulation of RNA biosynthetic ...",55,5,3.94,510,"0.35957","0.7952","0.7952" +"GO:1903508","positive regulation of nucleic acid-temp...",55,5,3.94,511,"0.35957","0.7952","0.7952" +"GO:0009792","embryo development ending in birth or eg...",53,5,3.8,496,"0.33024","0.7959","0.7959" +"GO:0051170","import into nucleus",9,0,0.65,2142,"1.00000","0.7959","0.7959" +"GO:0070534","protein K63-linked ubiquitination",7,1,0.5,639,"0.40646","0.7960","0.7960" +"GO:0001578","microtubule bundle formation",6,0,0.43,2143,"1.00000","0.7961","0.7961" +"GO:0006935","chemotaxis",28,0,2.01,2144,"1.00000","0.7966","0.7966" +"GO:0044270","cellular nitrogen compound catabolic pro...",54,3,3.87,1127,"0.75674","0.7966","0.7966" +"GO:1903533","regulation of protein targeting",10,0,0.72,2145,"1.00000","0.7968","0.7968" +"GO:0042274","ribosomal small subunit biogenesis",5,0,0.36,2146,"1.00000","0.7973","0.7973" +"GO:1901137","carbohydrate derivative biosynthetic pro...",75,2,5.38,1370,"0.97595","0.7975","0.7975" +"GO:0048259","regulation of receptor-mediated endocyto...",5,0,0.36,2147,"1.00000","0.7980","0.7980" +"GO:0010605","negative regulation of macromolecule met...",136,7,9.75,1278,"0.87044","0.7984","0.7984" +"GO:1901799","negative regulation of proteasomal prote...",3,0,0.22,2148,"1.00000","0.7994","0.7994" +"GO:0006518","peptide metabolic process",64,2,4.59,1349,"0.95132","0.7995","0.7995" +"GO:0030072","peptide hormone secretion",5,0,0.36,2149,"1.00000","0.8002","0.8002" +"GO:0030073","insulin secretion",5,0,0.36,2150,"1.00000","0.8002","0.8002" +"GO:0046887","positive regulation of hormone secretion",5,0,0.36,2151,"1.00000","0.8002","0.8002" +"GO:0050796","regulation of insulin secretion",5,0,0.36,2152,"1.00000","0.8002","0.8002" +"GO:0090276","regulation of peptide hormone secretion",5,0,0.36,2153,"1.00000","0.8002","0.8002" +"GO:0034341","response to interferon-gamma",3,0,0.22,2154,"1.00000","0.8004","0.8004" +"GO:0035262","gonad morphogenesis",3,0,0.22,2155,"1.00000","0.8004","0.8004" +"GO:0051016","barbed-end actin filament capping",3,0,0.22,2156,"1.00000","0.8004","0.8004" +"GO:0051693","actin filament capping",3,0,0.22,2157,"1.00000","0.8004","0.8004" +"GO:0071346","cellular response to interferon-gamma",3,0,0.22,2158,"1.00000","0.8004","0.8004" +"GO:0022607","cellular component assembly",185,8,13.27,1355,"0.96413","0.8017","0.8017" +"GO:2001233","regulation of apoptotic signaling pathwa...",15,2,1.08,406,"0.29302","0.8019","0.8019" +"GO:0006814","sodium ion transport",18,2,1.29,573,"0.37407","0.8020","0.8020" +"GO:0007167","enzyme linked receptor protein signaling...",46,0,3.3,2159,"1.00000","0.8023","0.8023" +"GO:0016246","RNA interference",4,0,0.29,2160,"1.00000","0.8025","0.8025" +"GO:0040025","vulval development",3,0,0.22,2161,"1.00000","0.8027","0.8027" +"GO:0090263","positive regulation of canonical Wnt sig...",3,0,0.22,2162,"1.00000","0.8027","0.8027" +"GO:0008544","epidermis development",13,1,0.93,932,"0.62092","0.8032","0.8032" +"GO:0045087","innate immune response",20,2,1.43,661,"0.42604","0.8035","0.8035" +"GO:2001252","positive regulation of chromosome organi...",6,1,0.43,552,"0.36047","0.8037","0.8037" +"GO:0046847","filopodium assembly",6,0,0.43,2163,"1.00000","0.8037","0.8037" +"GO:0032940","secretion by cell",45,1,3.23,1360,"0.96599","0.8053","0.8053" +"GO:0002520","immune system development",33,2,2.37,1053,"0.69755","0.8053","0.8053" +"GO:0060562","epithelial tube morphogenesis",33,3,2.37,655,"0.42570","0.8053","0.8053" +"GO:0001558","regulation of cell growth",20,1,1.43,1147,"0.77566","0.8054","0.8054" +"GO:0001934","positive regulation of protein phosphory...",28,3,2.01,495,"0.32541","0.8054","0.8054" +"GO:0051336","regulation of hydrolase activity",53,5,3.8,497,"0.33024","0.8064","0.8064" +"GO:0016567","protein ubiquitination",56,4,4.02,867,"0.57936","0.8066","0.8066" +"GO:0009314","response to radiation",31,1,2.22,1298,"0.90193","0.8066","0.8066" +"GO:0043903","regulation of symbiosis, encompassing mu...",7,1,0.5,640,"0.40646","0.8068","0.8068" +"GO:0050792","regulation of viral process",7,1,0.5,641,"0.40646","0.8068","0.8068" +"GO:0007088","regulation of mitotic nuclear division",7,0,0.5,2164,"1.00000","0.8068","0.8068" +"GO:0017015","regulation of transforming growth factor...",7,0,0.5,2165,"1.00000","0.8068","0.8068" +"GO:0061077","chaperone-mediated protein folding",7,0,0.5,2166,"1.00000","0.8068","0.8068" +"GO:1903844","regulation of cellular response to trans...",7,0,0.5,2167,"1.00000","0.8068","0.8068" +"GO:0044087","regulation of cellular component biogene...",61,3,4.38,1225,"0.82595","0.8079","0.8079" +"GO:0031401","positive regulation of protein modificat...",42,4,3.01,508,"0.35541","0.8083","0.8083" +"GO:0040007","growth",62,3,4.45,1237,"0.83434","0.8095","0.8095" +"GO:0016331","morphogenesis of embryonic epithelium",16,1,1.15,1043,"0.69719","0.8099","0.8099" +"GO:0001822","kidney development",16,0,1.15,2168,"1.00000","0.8104","0.8104" +"GO:0048534","hematopoietic or lymphoid organ developm...",32,2,2.3,1017,"0.68107","0.8107","0.8107" +"GO:0050727","regulation of inflammatory response",5,0,0.36,2169,"1.00000","0.8108","0.8108" +"GO:0007283","spermatogenesis",26,2,1.86,861,"0.56675","0.8110","0.8110" +"GO:0006310","DNA recombination",18,1,1.29,1106,"0.73934","0.8111","0.8111" +"GO:0032496","response to lipopolysaccharide",5,0,0.36,2170,"1.00000","0.8112","0.8112" +"GO:0071219","cellular response to molecule of bacteri...",5,0,0.36,2171,"1.00000","0.8112","0.8112" +"GO:0071222","cellular response to lipopolysaccharide",5,0,0.36,2172,"1.00000","0.8112","0.8112" +"GO:0006476","protein deacetylation",6,0,0.43,2173,"1.00000","0.8119","0.8119" +"GO:0000302","response to reactive oxygen species",12,0,0.86,2174,"1.00000","0.8119","0.8119" +"GO:0051252","regulation of RNA metabolic process",315,14,22.59,1385,"0.98742","0.8124","0.8124" +"GO:0120036","plasma membrane bounded cell projection ...",99,5,7.1,1253,"0.85143","0.8129","0.8129" +"GO:0035162","embryonic hemopoiesis",6,1,0.43,553,"0.36047","0.8129","0.8129" +"GO:0060968","regulation of gene silencing",6,1,0.43,554,"0.36047","0.8129","0.8129" +"GO:0008593","regulation of Notch signaling pathway",9,1,0.65,749,"0.48879","0.8130","0.8130" +"GO:0001510","RNA methylation",10,0,0.72,2175,"1.00000","0.8134","0.8134" +"GO:0016242","negative regulation of macroautophagy",3,0,0.22,2176,"1.00000","0.8140","0.8140" +"GO:0018991","oviposition",5,0,0.36,2177,"1.00000","0.8141","0.8141" +"GO:0046662","regulation of oviposition",5,0,0.36,2178,"1.00000","0.8141","0.8141" +"GO:0043604","amide biosynthetic process",61,3,4.38,1226,"0.82595","0.8145","0.8145" +"GO:0010154","fruit development",3,0,0.22,2179,"1.00000","0.8148","0.8148" +"GO:0048316","seed development",3,0,0.22,2180,"1.00000","0.8148","0.8148" +"GO:0051443","positive regulation of ubiquitin-protein...",3,0,0.22,2181,"1.00000","0.8148","0.8148" +"GO:0002253","activation of immune response",14,1,1,967,"0.64826","0.8148","0.8148" +"GO:0002118","aggressive behavior",6,1,0.43,555,"0.36047","0.8150","0.8150" +"GO:0030509","BMP signaling pathway",7,0,0.5,2182,"1.00000","0.8151","0.8151" +"GO:1903214","regulation of protein targeting to mitoc...",9,0,0.65,2183,"1.00000","0.8152","0.8152" +"GO:1903747","regulation of establishment of protein l...",9,0,0.65,2184,"1.00000","0.8152","0.8152" +"GO:1903749","positive regulation of establishment of ...",9,0,0.65,2185,"1.00000","0.8152","0.8152" +"GO:1903955","positive regulation of protein targeting...",9,0,0.65,2186,"1.00000","0.8152","0.8152" +"GO:0002252","immune effector process",23,1,1.65,1213,"0.82091","0.8156","0.8156" +"GO:0045596","negative regulation of cell differentiat...",39,2,2.8,1162,"0.78217","0.8156","0.8156" +"GO:0030097","hemopoiesis",31,2,2.22,979,"0.66388","0.8161","0.8161" +"GO:0009896","positive regulation of catabolic process",20,1,1.43,1148,"0.77566","0.8165","0.8165" +"GO:0051130","positive regulation of cellular componen...",63,2,4.52,1340,"0.94815","0.8166","0.8166" +"GO:0017156","calcium ion regulated exocytosis",5,1,0.36,477,"0.31095","0.8173","0.8173" +"GO:0140029","exocytic process",5,1,0.36,478,"0.31095","0.8173","0.8173" +"GO:0048638","regulation of developmental growth",17,1,1.22,1074,"0.71905","0.8207","0.8207" +"GO:0009141","nucleoside triphosphate metabolic proces...",20,0,1.43,2187,"1.00000","0.8209","0.8209" +"GO:0009144","purine nucleoside triphosphate metabolic...",20,0,1.43,2188,"1.00000","0.8209","0.8209" +"GO:0070507","regulation of microtubule cytoskeleton o...",10,0,0.72,2189,"1.00000","0.8213","0.8213" +"GO:0010470","regulation of gastrulation",4,0,0.29,2190,"1.00000","0.8215","0.8215" +"GO:0007156","homophilic cell adhesion via plasma memb...",10,1,0.72,813,"0.52559","0.8216","0.8216" +"GO:0031503","protein-containing complex localization",17,1,1.22,1075,"0.71905","0.8218","0.8218" +"GO:0051384","response to glucocorticoid",3,0,0.22,2191,"1.00000","0.8222","0.8222" +"GO:0010507","negative regulation of autophagy",6,1,0.43,556,"0.36047","0.8224","0.8224" +"GO:0018212","peptidyl-tyrosine modification",6,1,0.43,557,"0.36047","0.8224","0.8224" +"GO:0097061","dendritic spine organization",6,1,0.43,558,"0.36047","0.8224","0.8224" +"GO:0106027","neuron projection organization",6,1,0.43,559,"0.36047","0.8224","0.8224" +"GO:0044283","small molecule biosynthetic process",47,4,3.37,666,"0.43894","0.8224","0.8224" +"GO:1905809","negative regulation of synapse organizat...",5,0,0.36,2192,"1.00000","0.8229","0.8229" +"GO:0002920","regulation of humoral immune response",4,0,0.29,2193,"1.00000","0.8232","0.8232" +"GO:0002526","acute inflammatory response",4,0,0.29,2194,"1.00000","0.8236","0.8236" +"GO:0051495","positive regulation of cytoskeleton orga...",19,0,1.36,2195,"1.00000","0.8243","0.8243" +"GO:0048589","developmental growth",45,3,3.23,951,"0.63757","0.8243","0.8243" +"GO:0045216","cell-cell junction organization",6,0,0.43,2196,"1.00000","0.8251","0.8251" +"GO:0048229","gametophyte development",5,0,0.36,2197,"1.00000","0.8251","0.8251" +"GO:0008154","actin polymerization or depolymerization",17,0,1.22,2198,"1.00000","0.8254","0.8254" +"GO:0072009","nephron epithelium development",3,0,0.22,2199,"1.00000","0.8258","0.8258" +"GO:0072073","kidney epithelium development",3,0,0.22,2200,"1.00000","0.8258","0.8258" +"GO:0009605","response to external stimulus",111,7,7.96,1023,"0.69652","0.8263","0.8263" +"GO:0022406","membrane docking",7,1,0.5,642,"0.40646","0.8266","0.8266" +"GO:0009081","branched-chain amino acid metabolic proc...",3,0,0.22,2201,"1.00000","0.8273","0.8273" +"GO:0009555","pollen development",4,0,0.29,2202,"1.00000","0.8274","0.8274" +"GO:0046907","intracellular transport",151,7,10.83,1315,"0.92834","0.8280","0.8280" +"GO:0051100","negative regulation of binding",7,1,0.5,643,"0.40646","0.8280","0.8280" +"GO:0034622","cellular protein-containing complex asse...",62,0,4.45,2203,"1.00000","0.8283","0.8283" +"GO:0010467","gene expression",538,20,38.59,1430,"0.99994","0.8293","0.8293" +"GO:0002042","cell migration involved in sprouting ang...",3,0,0.22,2204,"1.00000","0.8297","0.8297" +"GO:0033135","regulation of peptidyl-serine phosphoryl...",3,0,0.22,2205,"1.00000","0.8297","0.8297" +"GO:0016055","Wnt signaling pathway",35,1,2.51,1314,"0.92749","0.8302","0.8302" +"GO:0006812","cation transport",102,10,7.32,153,"0.19162","0.4570","0.8305" +"GO:0021953","central nervous system neuron differenti...",8,1,0.57,697,"0.44915","0.8313","0.8313" +"GO:0042246","tissue regeneration",8,1,0.57,698,"0.44915","0.8313","0.8313" +"GO:1903900","regulation of viral life cycle",6,1,0.43,560,"0.36047","0.8320","0.8320" +"GO:0045646","regulation of erythrocyte differentiatio...",6,0,0.43,2206,"1.00000","0.8320","0.8320" +"GO:0051225","spindle assembly",6,0,0.43,2207,"1.00000","0.8320","0.8320" +"GO:0010648","negative regulation of cell communicatio...",59,1,4.23,1390,"0.98828","0.8326","0.8326" +"GO:0023057","negative regulation of signaling",59,1,4.23,1391,"0.98828","0.8326","0.8326" +"GO:0009913","epidermal cell differentiation",5,0,0.36,2208,"1.00000","0.8328","0.8328" +"GO:0042026","protein refolding",6,0,0.43,2209,"1.00000","0.8330","0.8330" +"GO:0001700","embryonic development via the syncytial ...",5,0,0.36,2210,"1.00000","0.8336","0.8336" +"GO:0048639","positive regulation of developmental gro...",5,0,0.36,2211,"1.00000","0.8336","0.8336" +"GO:0007616","long-term memory",3,0,0.22,2212,"1.00000","0.8338","0.8338" +"GO:0001556","oocyte maturation",3,0,0.22,2213,"1.00000","0.8343","0.8343" +"GO:0072375","medium-term memory",3,0,0.22,2214,"1.00000","0.8343","0.8343" +"GO:0042074","cell migration involved in gastrulation",5,0,0.36,2215,"1.00000","0.8345","0.8345" +"GO:0051302","regulation of cell division",5,0,0.36,2216,"1.00000","0.8345","0.8345" +"GO:0031349","positive regulation of defense response",9,1,0.65,750,"0.48879","0.8345","0.8345" +"GO:0045089","positive regulation of innate immune res...",9,1,0.65,751,"0.48879","0.8345","0.8345" +"GO:0002274","myeloid leukocyte activation",9,0,0.65,2217,"1.00000","0.8345","0.8345" +"GO:0098542","defense response to other organism",22,1,1.58,1187,"0.80694","0.8346","0.8346" +"GO:0002119","nematode larval development",4,0,0.29,2218,"1.00000","0.8349","0.8349" +"GO:0007631","feeding behavior",4,0,0.29,2219,"1.00000","0.8349","0.8349" +"GO:0031323","regulation of cellular metabolic process",414,20,29.69,1384,"0.98669","0.8358","0.8358" +"GO:0065009","regulation of molecular function",132,12,9.47,243,"0.23340","0.8432","0.8363" +"GO:0043112","receptor metabolic process",5,0,0.36,2220,"1.00000","0.8365","0.8365" +"GO:0006446","regulation of translational initiation",6,1,0.43,561,"0.36047","0.8367","0.8367" +"GO:1903311","regulation of mRNA metabolic process",14,1,1,968,"0.64826","0.8367","0.8367" +"GO:0033044","regulation of chromosome organization",16,2,1.15,489,"0.32033","0.8371","0.8371" +"GO:0006348","chromatin silencing at telomere",3,0,0.22,2221,"1.00000","0.8371","0.8371" +"GO:0051493","regulation of cytoskeleton organization",32,0,2.3,2222,"1.00000","0.8372","0.8372" +"GO:0072527","pyrimidine-containing compound metabolic...",6,0,0.43,2223,"1.00000","0.8381","0.8381" +"GO:0006915","apoptotic process",77,4,5.52,1200,"0.81576","0.8382","0.8382" +"GO:0000086","G2/M transition of mitotic cell cycle",3,0,0.22,2224,"1.00000","0.8386","0.8386" +"GO:0010389","regulation of G2/M transition of mitotic...",3,0,0.22,2225,"1.00000","0.8386","0.8386" +"GO:0030705","cytoskeleton-dependent intracellular tra...",18,0,1.29,2226,"1.00000","0.8386","0.8386" +"GO:0010771","negative regulation of cell morphogenesi...",5,0,0.36,2227,"1.00000","0.8387","0.8387" +"GO:0010821","regulation of mitochondrion organization",12,0,0.86,2228,"1.00000","0.8390","0.8390" +"GO:0048469","cell maturation",11,0,0.79,2229,"1.00000","0.8390","0.8390" +"GO:0033045","regulation of sister chromatid segregati...",5,0,0.36,2230,"1.00000","0.8391","0.8391" +"GO:0051983","regulation of chromosome segregation",5,0,0.36,2231,"1.00000","0.8391","0.8391" +"GO:0010557","positive regulation of macromolecule bio...",58,5,4.16,605,"0.40368","0.8393","0.8393" +"GO:0043043","peptide biosynthetic process",56,1,4.02,1381,"0.98527","0.8398","0.8398" +"GO:0009059","macromolecule biosynthetic process",470,18,33.71,1425,"0.99972","0.8406","0.8406" +"GO:0006754","ATP biosynthetic process",13,0,0.93,2232,"1.00000","0.8406","0.8406" +"GO:0009142","nucleoside triphosphate biosynthetic pro...",13,0,0.93,2233,"1.00000","0.8406","0.8406" +"GO:0009145","purine nucleoside triphosphate biosynthe...",13,0,0.93,2234,"1.00000","0.8406","0.8406" +"GO:0009201","ribonucleoside triphosphate biosynthetic...",13,0,0.93,2235,"1.00000","0.8406","0.8406" +"GO:0009206","purine ribonucleoside triphosphate biosy...",13,0,0.93,2236,"1.00000","0.8406","0.8406" +"GO:0048519","negative regulation of biological proces...",267,17,19.15,1112,"0.74225","0.8409","0.8409" +"GO:0051046","regulation of secretion",20,1,1.43,1149,"0.77566","0.8418","0.8418" +"GO:0034248","regulation of cellular amide metabolic p...",22,1,1.58,1188,"0.80694","0.8420","0.8420" +"GO:0044843","cell cycle G1/S phase transition",8,1,0.57,699,"0.44915","0.8421","0.8421" +"GO:0006289","nucleotide-excision repair",9,0,0.65,2237,"1.00000","0.8423","0.8423" +"GO:0030587","sorocarp development",7,0,0.5,2238,"1.00000","0.8425","0.8425" +"GO:0090702","non-reproductive fruiting body developme...",7,0,0.5,2239,"1.00000","0.8425","0.8425" +"GO:0099120","socially cooperative development",7,0,0.5,2240,"1.00000","0.8425","0.8425" +"GO:0009894","regulation of catabolic process",48,5,3.44,382,"0.25851","0.8426","0.8426" +"GO:0016049","cell growth",26,1,1.86,1258,"0.85708","0.8436","0.8436" +"GO:0006813","potassium ion transport",20,1,1.43,1150,"0.77566","0.8444","0.8444" +"GO:0006412","translation",55,1,3.94,1380,"0.98410","0.8449","0.8449" +"GO:0044249","cellular biosynthetic process",582,27,41.74,1420,"0.99829","0.8449","0.8449" +"GO:0007034","vacuolar transport",14,2,1,394,"0.26557","0.8451","0.8451" +"GO:1903051","negative regulation of proteolysis invol...",4,0,0.29,2241,"1.00000","0.8452","0.8452" +"GO:1903363","negative regulation of cellular protein ...",4,0,0.29,2242,"1.00000","0.8452","0.8452" +"GO:0001933","negative regulation of protein phosphory...",19,2,1.36,601,"0.40032","0.8459","0.8459" +"GO:0034227","tRNA thio-modification",3,0,0.22,2243,"1.00000","0.8465","0.8465" +"GO:0006643","membrane lipid metabolic process",17,1,1.22,1076,"0.71905","0.8467","0.8467" +"GO:0010970","transport along microtubule",17,0,1.22,2244,"1.00000","0.8469","0.8469" +"GO:0099111","microtubule-based transport",17,0,1.22,2245,"1.00000","0.8469","0.8469" +"GO:1901576","organic substance biosynthetic process",587,29,42.1,1413,"0.99514","0.8474","0.8474" +"GO:0051402","neuron apoptotic process",10,1,0.72,814,"0.52559","0.8478","0.8478" +"GO:0071702","organic substance transport",146,9,10.47,1095,"0.73484","0.8483","0.8483" +"GO:0051726","regulation of cell cycle",60,3,4.3,1205,"0.81721","0.8485","0.8485" +"GO:0050768","negative regulation of neurogenesis",15,1,1.08,996,"0.67363","0.8491","0.8491" +"GO:0007292","female gamete generation",25,2,1.79,832,"0.54508","0.8492","0.8492" +"GO:0045444","fat cell differentiation",8,0,0.57,2246,"1.00000","0.8493","0.8493" +"GO:0009891","positive regulation of biosynthetic proc...",62,5,4.45,713,"0.46189","0.8503","0.8503" +"GO:0031099","regeneration",10,1,0.72,815,"0.52559","0.8503","0.8503" +"GO:0031333","negative regulation of protein complex a...",10,0,0.72,2247,"1.00000","0.8503","0.8503" +"GO:0061024","membrane organization",45,1,3.23,1361,"0.96599","0.8504","0.8504" +"GO:0071229","cellular response to acid chemical",8,0,0.57,2248,"1.00000","0.8504","0.8504" +"GO:0000082","G1/S transition of mitotic cell cycle",7,1,0.5,644,"0.40646","0.8505","0.8505" +"GO:0034641","cellular nitrogen compound metabolic pro...",691,30,49.56,1427,"0.99987","0.8513","0.8513" +"GO:0010822","positive regulation of mitochondrion org...",11,0,0.79,2249,"1.00000","0.8514","0.8514" +"GO:0007276","gamete generation",51,4,3.66,775,"0.50353","0.8535","0.8535" +"GO:0001816","cytokine production",26,1,1.86,1259,"0.85708","0.8539","0.8539" +"GO:0009914","hormone transport",8,0,0.57,2250,"1.00000","0.8541","0.8541" +"GO:0072089","stem cell proliferation",9,1,0.65,752,"0.48879","0.8542","0.8542" +"GO:0002262","myeloid cell homeostasis",12,1,0.86,894,"0.59148","0.8543","0.8543" +"GO:0030218","erythrocyte differentiation",12,1,0.86,895,"0.59148","0.8543","0.8543" +"GO:0034101","erythrocyte homeostasis",12,1,0.86,896,"0.59148","0.8543","0.8543" +"GO:0035690","cellular response to drug",16,1,1.15,1044,"0.69719","0.8545","0.8545" +"GO:0002768","immune response-regulating cell surface ...",9,1,0.65,753,"0.48879","0.8548","0.8548" +"GO:0043254","regulation of protein complex assembly",24,0,1.72,2251,"1.00000","0.8548","0.8548" +"GO:0001825","blastocyst formation",3,0,0.22,2252,"1.00000","0.8553","0.8553" +"GO:0031057","negative regulation of histone modificat...",3,0,0.22,2253,"1.00000","0.8553","0.8553" +"GO:0006357","regulation of transcription by RNA polym...",101,7,7.24,914,"0.59637","0.8558","0.8558" +"GO:0044085","cellular component biogenesis",207,9,14.85,1367,"0.97013","0.8560","0.8560" +"GO:0034645","cellular macromolecule biosynthetic proc...",464,17,33.28,1426,"0.99984","0.8564","0.8564" +"GO:0003007","heart morphogenesis",19,1,1.36,1131,"0.75818","0.8571","0.8571" +"GO:0008582","regulation of synaptic growth at neuromu...",4,0,0.29,2254,"1.00000","0.8575","0.8575" +"GO:0032506","cytokinetic process",4,0,0.29,2255,"1.00000","0.8575","0.8575" +"GO:0045886","negative regulation of synaptic growth a...",4,0,0.29,2256,"1.00000","0.8575","0.8575" +"GO:0051964","negative regulation of synapse assembly",4,0,0.29,2257,"1.00000","0.8575","0.8575" +"GO:1904396","regulation of neuromuscular junction dev...",4,0,0.29,2258,"1.00000","0.8575","0.8575" +"GO:1904397","negative regulation of neuromuscular jun...",4,0,0.29,2259,"1.00000","0.8575","0.8575" +"GO:0033036","macromolecule localization",201,10,14.42,1313,"0.92578","0.8576","0.8576" +"GO:0007052","mitotic spindle organization",5,0,0.36,2260,"1.00000","0.8579","0.8579" +"GO:0010657","muscle cell apoptotic process",5,0,0.36,2261,"1.00000","0.8579","0.8579" +"GO:0010660","regulation of muscle cell apoptotic proc...",5,0,0.36,2262,"1.00000","0.8579","0.8579" +"GO:0014823","response to activity",5,0,0.36,2263,"1.00000","0.8579","0.8579" +"GO:0031112","positive regulation of microtubule polym...",5,0,0.36,2264,"1.00000","0.8579","0.8579" +"GO:0031116","positive regulation of microtubule polym...",5,0,0.36,2265,"1.00000","0.8579","0.8579" +"GO:0045069","regulation of viral genome replication",5,0,0.36,2266,"1.00000","0.8579","0.8579" +"GO:0090307","mitotic spindle assembly",5,0,0.36,2267,"1.00000","0.8579","0.8579" +"GO:0034470","ncRNA processing",47,1,3.37,1368,"0.97078","0.8586","0.8586" +"GO:0031328","positive regulation of cellular biosynth...",61,5,4.38,669,"0.44745","0.8586","0.8586" +"GO:0045935","positive regulation of nucleobase-contai...",64,5,4.59,766,"0.49041","0.8587","0.8587" +"GO:0034614","cellular response to reactive oxygen spe...",9,0,0.65,2268,"1.00000","0.8588","0.8588" +"GO:0032989","cellular component morphogenesis",76,2,5.45,1372,"0.97746","0.8588","0.8588" +"GO:0010675","regulation of cellular carbohydrate meta...",6,0,0.43,2269,"1.00000","0.8590","0.8590" +"GO:0010906","regulation of glucose metabolic process",6,0,0.43,2270,"1.00000","0.8590","0.8590" +"GO:0043951","negative regulation of cAMP-mediated sig...",4,0,0.29,2271,"1.00000","0.8591","0.8591" +"GO:0050000","chromosome localization",4,0,0.29,2272,"1.00000","0.8591","0.8591" +"GO:0051303","establishment of chromosome localization",4,0,0.29,2273,"1.00000","0.8591","0.8591" +"GO:0001817","regulation of cytokine production",25,1,1.79,1249,"0.84591","0.8591","0.8591" +"GO:0071216","cellular response to biotic stimulus",6,0,0.43,2274,"1.00000","0.8593","0.8593" +"GO:0031175","neuron projection development",63,2,4.52,1341,"0.94815","0.8599","0.8599" +"GO:0009968","negative regulation of signal transducti...",57,1,4.09,1383,"0.98635","0.8600","0.8600" +"GO:0048477","oogenesis",23,2,1.65,770,"0.49952","0.8605","0.8605" +"GO:0002440","production of molecular mediator of immu...",3,0,0.22,2275,"1.00000","0.8607","0.8607" +"GO:0001952","regulation of cell-matrix adhesion",5,0,0.36,2276,"1.00000","0.8607","0.8607" +"GO:0010810","regulation of cell-substrate adhesion",5,0,0.36,2277,"1.00000","0.8607","0.8607" +"GO:0006672","ceramide metabolic process",3,0,0.22,2278,"1.00000","0.8609","0.8609" +"GO:0006687","glycosphingolipid metabolic process",3,0,0.22,2279,"1.00000","0.8609","0.8609" +"GO:1902903","regulation of supramolecular fiber organ...",27,0,1.94,2280,"1.00000","0.8610","0.8610" +"GO:0045292","mRNA cis splicing, via spliceosome",4,0,0.29,2281,"1.00000","0.8614","0.8614" +"GO:0043523","regulation of neuron apoptotic process",9,1,0.65,754,"0.48879","0.8619","0.8619" +"GO:1901215","negative regulation of neuron death",9,1,0.65,755,"0.48879","0.8619","0.8619" +"GO:0018205","peptidyl-lysine modification",31,1,2.22,1299,"0.90193","0.8625","0.8625" +"GO:0000187","activation of MAPK activity",4,0,0.29,2282,"1.00000","0.8626","0.8626" +"GO:0030522","intracellular receptor signaling pathway",11,0,0.79,2283,"1.00000","0.8631","0.8631" +"GO:0072528","pyrimidine-containing compound biosynthe...",5,0,0.36,2284,"1.00000","0.8632","0.8632" +"GO:0006006","glucose metabolic process",10,1,0.72,816,"0.52559","0.8632","0.8632" +"GO:0044272","sulfur compound biosynthetic process",7,0,0.5,2285,"1.00000","0.8635","0.8635" +"GO:0051222","positive regulation of protein transport",18,0,1.29,2286,"1.00000","0.8642","0.8642" +"GO:1904951","positive regulation of establishment of ...",18,0,1.29,2287,"1.00000","0.8642","0.8642" +"GO:0007391","dorsal closure",4,0,0.29,2288,"1.00000","0.8645","0.8645" +"GO:0018958","phenol-containing compound metabolic pro...",4,0,0.29,2289,"1.00000","0.8645","0.8645" +"GO:0019748","secondary metabolic process",4,0,0.29,2290,"1.00000","0.8645","0.8645" +"GO:0006418","tRNA aminoacylation for protein translat...",14,0,1,2291,"1.00000","0.8651","0.8651" +"GO:0043038","amino acid activation",14,0,1,2292,"1.00000","0.8651","0.8651" +"GO:0043039","tRNA aminoacylation",14,0,1,2293,"1.00000","0.8651","0.8651" +"GO:0003158","endothelium development",4,0,0.29,2294,"1.00000","0.8653","0.8653" +"GO:0010950","positive regulation of endopeptidase act...",4,0,0.29,2295,"1.00000","0.8653","0.8653" +"GO:0045446","endothelial cell differentiation",4,0,0.29,2296,"1.00000","0.8653","0.8653" +"GO:2001056","positive regulation of cysteine-type end...",4,0,0.29,2297,"1.00000","0.8653","0.8653" +"GO:0032886","regulation of microtubule-based process",11,0,0.79,2298,"1.00000","0.8656","0.8656" +"GO:0008038","neuron recognition",5,0,0.36,2299,"1.00000","0.8659","0.8659" +"GO:1902905","positive regulation of supramolecular fi...",17,0,1.22,2300,"1.00000","0.8659","0.8659" +"GO:0072358","cardiovascular system development",22,1,1.58,1189,"0.80694","0.8662","0.8662" +"GO:0070201","regulation of establishment of protein l...",22,0,1.58,2301,"1.00000","0.8662","0.8662" +"GO:0090287","regulation of cellular response to growt...",14,0,1,2302,"1.00000","0.8664","0.8664" +"GO:1903708","positive regulation of hemopoiesis",6,0,0.43,2303,"1.00000","0.8675","0.8675" +"GO:0031647","regulation of protein stability",13,1,0.93,933,"0.62092","0.8676","0.8676" +"GO:0050790","regulation of catalytic activity",90,7,6.46,717,"0.47023","0.8681","0.8681" +"GO:0071559","response to transforming growth factor b...",16,0,1.15,2304,"1.00000","0.8681","0.8681" +"GO:0071560","cellular response to transforming growth...",16,0,1.15,2305,"1.00000","0.8681","0.8681" +"GO:0007045","cell-substrate adherens junction assembl...",5,0,0.36,2306,"1.00000","0.8685","0.8685" +"GO:0034332","adherens junction organization",5,0,0.36,2307,"1.00000","0.8685","0.8685" +"GO:0034333","adherens junction assembly",5,0,0.36,2308,"1.00000","0.8685","0.8685" +"GO:0048041","focal adhesion assembly",5,0,0.36,2309,"1.00000","0.8685","0.8685" +"GO:0009791","post-embryonic development",32,2,2.3,1018,"0.68107","0.8687","0.8687" +"GO:0030031","cell projection assembly",42,3,3.01,873,"0.58990","0.8691","0.8691" +"GO:0120031","plasma membrane bounded cell projection ...",42,3,3.01,874,"0.58990","0.8691","0.8691" +"GO:0033047","regulation of mitotic sister chromatid s...",4,0,0.29,2310,"1.00000","0.8691","0.8691" +"GO:0006366","transcription by RNA polymerase II",110,7,7.89,1020,"0.68727","0.8692","0.8692" +"GO:0009126","purine nucleoside monophosphate metaboli...",23,1,1.65,1214,"0.82091","0.8701","0.8701" +"GO:0009167","purine ribonucleoside monophosphate meta...",23,1,1.65,1215,"0.82091","0.8701","0.8701" +"GO:0042327","positive regulation of phosphorylation",33,3,2.37,656,"0.42570","0.8703","0.8703" +"GO:0018242","protein O-linked glycosylation via serin...",5,0,0.36,2311,"1.00000","0.8710","0.8710" +"GO:0043068","positive regulation of programmed cell d...",21,2,1.51,711,"0.45118","0.8719","0.8719" +"GO:0051223","regulation of protein transport",21,0,1.51,2312,"1.00000","0.8719","0.8719" +"GO:0090087","regulation of peptide transport",21,0,1.51,2313,"1.00000","0.8719","0.8719" +"GO:0070925","organelle assembly",69,4,4.95,1111,"0.74206","0.8724","0.8724" +"GO:1903828","negative regulation of cellular protein ...",6,0,0.43,2314,"1.00000","0.8728","0.8728" +"GO:0051649","establishment of localization in cell",169,7,12.12,1362,"0.96711","0.8729","0.8729" +"GO:0043281","regulation of cysteine-type endopeptidas...",10,1,0.72,817,"0.52559","0.8729","0.8729" +"GO:0042742","defense response to bacterium",14,1,1,969,"0.64826","0.8733","0.8733" +"GO:0046916","cellular transition metal ion homeostasi...",3,0,0.22,2315,"1.00000","0.8733","0.8733" +"GO:0030517","negative regulation of axon extension",3,0,0.22,2316,"1.00000","0.8735","0.8735" +"GO:1903530","regulation of secretion by cell",15,1,1.08,997,"0.67363","0.8740","0.8740" +"GO:0016073","snRNA metabolic process",6,0,0.43,2317,"1.00000","0.8746","0.8746" +"GO:0045944","positive regulation of transcription by ...",44,3,3.16,941,"0.62212","0.8748","0.8748" +"GO:0042326","negative regulation of phosphorylation",21,2,1.51,712,"0.45118","0.8753","0.8753" +"GO:0002697","regulation of immune effector process",9,0,0.65,2318,"1.00000","0.8754","0.8754" +"GO:0035239","tube morphogenesis",49,5,3.51,397,"0.27258","0.8754","0.8754" +"GO:0007274","neuromuscular synaptic transmission",3,0,0.22,2319,"1.00000","0.8754","0.8754" +"GO:0001838","embryonic epithelial tube formation",12,1,0.86,897,"0.59148","0.8757","0.8757" +"GO:0072175","epithelial tube formation",12,1,0.86,898,"0.59148","0.8757","0.8757" +"GO:0043524","negative regulation of neuron apoptotic ...",8,1,0.57,700,"0.44915","0.8763","0.8763" +"GO:0016202","regulation of striated muscle tissue dev...",9,0,0.65,2320,"1.00000","0.8767","0.8767" +"GO:0048634","regulation of muscle organ development",9,0,0.65,2321,"1.00000","0.8767","0.8767" +"GO:1901861","regulation of muscle tissue development",9,0,0.65,2322,"1.00000","0.8767","0.8767" +"GO:0010721","negative regulation of cell development",17,1,1.22,1077,"0.71905","0.8772","0.8772" +"GO:0010769","regulation of cell morphogenesis involve...",15,1,1.08,998,"0.67363","0.8774","0.8774" +"GO:0010638","positive regulation of organelle organiz...",41,1,2.94,1351,"0.95394","0.8776","0.8776" +"GO:0009110","vitamin biosynthetic process",3,0,0.22,2323,"1.00000","0.8776","0.8776" +"GO:0042364","water-soluble vitamin biosynthetic proce...",3,0,0.22,2324,"1.00000","0.8776","0.8776" +"GO:0010035","response to inorganic substance",30,3,2.15,569,"0.36587","0.8776","0.8776" +"GO:0001944","vasculature development",20,1,1.43,1151,"0.77566","0.8777","0.8777" +"GO:0045165","cell fate commitment",20,1,1.43,1152,"0.77566","0.8777","0.8777" +"GO:0006379","mRNA cleavage",3,0,0.22,2325,"1.00000","0.8778","0.8778" +"GO:0031324","negative regulation of cellular metaboli...",108,6,7.75,1177,"0.80079","0.8788","0.8788" +"GO:0006342","chromatin silencing",8,1,0.57,701,"0.44915","0.8792","0.8792" +"GO:0006482","protein demethylation",8,1,0.57,702,"0.44915","0.8792","0.8792" +"GO:0008214","protein dealkylation",8,1,0.57,703,"0.44915","0.8792","0.8792" +"GO:0016577","histone demethylation",8,1,0.57,704,"0.44915","0.8792","0.8792" +"GO:0045927","positive regulation of growth",8,1,0.57,705,"0.44915","0.8792","0.8792" +"GO:0070988","demethylation",8,1,0.57,706,"0.44915","0.8792","0.8792" +"GO:0010508","positive regulation of autophagy",5,0,0.36,2326,"1.00000","0.8797","0.8797" +"GO:1903047","mitotic cell cycle process",43,3,3.08,917,"0.60623","0.8803","0.8803" +"GO:0006606","protein import into nucleus",7,0,0.5,2327,"1.00000","0.8803","0.8803" +"GO:0060548","negative regulation of cell death",40,2,2.87,1176,"0.79407","0.8804","0.8804" +"GO:0032956","regulation of actin cytoskeleton organiz...",23,0,1.65,2328,"1.00000","0.8805","0.8805" +"GO:0016569","covalent chromatin modification",48,2,3.44,1277,"0.87033","0.8812","0.8812" +"GO:1904029","regulation of cyclin-dependent protein k...",8,1,0.57,707,"0.44915","0.8813","0.8813" +"GO:0090304","nucleic acid metabolic process",548,17,39.3,1439,"1.00000","0.8815","0.8815" +"GO:0006304","DNA modification",3,0,0.22,2329,"1.00000","0.8818","0.8818" +"GO:0006305","DNA alkylation",3,0,0.22,2330,"1.00000","0.8818","0.8818" +"GO:0006306","DNA methylation",3,0,0.22,2331,"1.00000","0.8818","0.8818" +"GO:0044728","DNA methylation or demethylation",3,0,0.22,2332,"1.00000","0.8818","0.8818" +"GO:0071453","cellular response to oxygen levels",7,0,0.5,2333,"1.00000","0.8820","0.8820" +"GO:0097237","cellular response to toxic substance",8,0,0.57,2334,"1.00000","0.8828","0.8828" +"GO:0001667","ameboidal-type cell migration",19,1,1.36,1132,"0.75818","0.8834","0.8834" +"GO:0009636","response to toxic substance",19,2,1.36,602,"0.40032","0.8834","0.8834" +"GO:0001568","blood vessel development",19,0,1.36,2335,"1.00000","0.8834","0.8834" +"GO:0001932","regulation of protein phosphorylation",50,4,3.59,725,"0.48766","0.8846","0.8846" +"GO:0007608","sensory perception of smell",4,0,0.29,2336,"1.00000","0.8847","0.8847" +"GO:0010656","negative regulation of muscle cell apopt...",4,0,0.29,2337,"1.00000","0.8847","0.8847" +"GO:0010658","striated muscle cell apoptotic process",4,0,0.29,2338,"1.00000","0.8847","0.8847" +"GO:0010659","cardiac muscle cell apoptotic process",4,0,0.29,2339,"1.00000","0.8847","0.8847" +"GO:0010662","regulation of striated muscle cell apopt...",4,0,0.29,2340,"1.00000","0.8847","0.8847" +"GO:0010664","negative regulation of striated muscle c...",4,0,0.29,2341,"1.00000","0.8847","0.8847" +"GO:0010665","regulation of cardiac muscle cell apopto...",4,0,0.29,2342,"1.00000","0.8847","0.8847" +"GO:0010667","negative regulation of cardiac muscle ce...",4,0,0.29,2343,"1.00000","0.8847","0.8847" +"GO:0030512","negative regulation of transforming grow...",4,0,0.29,2344,"1.00000","0.8847","0.8847" +"GO:0032570","response to progesterone",4,0,0.29,2345,"1.00000","0.8847","0.8847" +"GO:0045639","positive regulation of myeloid cell diff...",4,0,0.29,2346,"1.00000","0.8847","0.8847" +"GO:0045648","positive regulation of erythrocyte diffe...",4,0,0.29,2347,"1.00000","0.8847","0.8847" +"GO:0046686","response to cadmium ion",4,0,0.29,2348,"1.00000","0.8847","0.8847" +"GO:0048524","positive regulation of viral process",4,0,0.29,2349,"1.00000","0.8847","0.8847" +"GO:0072321","chaperone-mediated protein transport",4,0,0.29,2350,"1.00000","0.8847","0.8847" +"GO:1900408","negative regulation of cellular response...",4,0,0.29,2351,"1.00000","0.8847","0.8847" +"GO:1903313","positive regulation of mRNA metabolic pr...",4,0,0.29,2352,"1.00000","0.8847","0.8847" +"GO:1903332","regulation of protein folding",4,0,0.29,2353,"1.00000","0.8847","0.8847" +"GO:1903845","negative regulation of cellular response...",4,0,0.29,2354,"1.00000","0.8847","0.8847" +"GO:0052547","regulation of peptidase activity",14,1,1,970,"0.64826","0.8847","0.8847" +"GO:0045861","negative regulation of proteolysis",14,0,1,2355,"1.00000","0.8847","0.8847" +"GO:0042461","photoreceptor cell development",16,2,1.15,490,"0.32033","0.8852","0.8852" +"GO:0050821","protein stabilization",9,0,0.65,2356,"1.00000","0.8853","0.8853" +"GO:0010977","negative regulation of neuron projection...",6,0,0.43,2357,"1.00000","0.8854","0.8854" +"GO:0044770","cell cycle phase transition",16,1,1.15,1045,"0.69719","0.8856","0.8856" +"GO:0042060","wound healing",30,2,2.15,954,"0.64595","0.8859","0.8859" +"GO:0033500","carbohydrate homeostasis",5,0,0.36,2358,"1.00000","0.8868","0.8868" +"GO:0000288","nuclear-transcribed mRNA catabolic proce...",6,1,0.43,562,"0.36047","0.8869","0.8869" +"GO:0043487","regulation of RNA stability",6,1,0.43,563,"0.36047","0.8869","0.8869" +"GO:0043488","regulation of mRNA stability",6,1,0.43,564,"0.36047","0.8869","0.8869" +"GO:0030038","contractile actin filament bundle assemb...",9,0,0.65,2359,"1.00000","0.8872","0.8872" +"GO:0043149","stress fiber assembly",9,0,0.65,2360,"1.00000","0.8872","0.8872" +"GO:0006515","protein quality control for misfolded or...",7,1,0.5,645,"0.40646","0.8876","0.8876" +"GO:0030433","ubiquitin-dependent ERAD pathway",7,1,0.5,646,"0.40646","0.8876","0.8876" +"GO:0051788","response to misfolded protein",7,1,0.5,647,"0.40646","0.8876","0.8876" +"GO:0071218","cellular response to misfolded protein",7,1,0.5,648,"0.40646","0.8876","0.8876" +"GO:0090066","regulation of anatomical structure size",27,1,1.94,1274,"0.86744","0.8883","0.8883" +"GO:0010001","glial cell differentiation",11,1,0.79,846,"0.55976","0.8884","0.8884" +"GO:0042063","gliogenesis",11,1,0.79,847,"0.55976","0.8884","0.8884" +"GO:0007632","visual behavior",3,0,0.22,2361,"1.00000","0.8885","0.8885" +"GO:0008542","visual learning",3,0,0.22,2362,"1.00000","0.8885","0.8885" +"GO:0033687","osteoblast proliferation",3,0,0.22,2363,"1.00000","0.8885","0.8885" +"GO:0033688","regulation of osteoblast proliferation",3,0,0.22,2364,"1.00000","0.8885","0.8885" +"GO:0033690","positive regulation of osteoblast prolif...",3,0,0.22,2365,"1.00000","0.8885","0.8885" +"GO:0046580","negative regulation of Ras protein signa...",3,0,0.22,2366,"1.00000","0.8885","0.8885" +"GO:0048333","mesodermal cell differentiation",3,0,0.22,2367,"1.00000","0.8885","0.8885" +"GO:0051058","negative regulation of small GTPase medi...",3,0,0.22,2368,"1.00000","0.8885","0.8885" +"GO:0071260","cellular response to mechanical stimulus",3,0,0.22,2369,"1.00000","0.8885","0.8885" +"GO:0090598","male anatomical structure morphogenesis",3,0,0.22,2370,"1.00000","0.8885","0.8885" +"GO:0001819","positive regulation of cytokine producti...",12,1,0.86,899,"0.59148","0.8889","0.8889" +"GO:0034504","protein localization to nucleus",12,0,0.86,2371,"1.00000","0.8889","0.8889" +"GO:0006206","pyrimidine nucleobase metabolic process",4,0,0.29,2372,"1.00000","0.8890","0.8890" +"GO:0006207","'de novo' pyrimidine nucleobase biosynth...",4,0,0.29,2373,"1.00000","0.8890","0.8890" +"GO:0019856","pyrimidine nucleobase biosynthetic proce...",4,0,0.29,2374,"1.00000","0.8890","0.8890" +"GO:0043069","negative regulation of programmed cell d...",37,2,2.65,1121,"0.75655","0.8890","0.8890" +"GO:0048514","blood vessel morphogenesis",18,0,1.29,2375,"1.00000","0.8893","0.8893" +"GO:0001776","leukocyte homeostasis",4,0,0.29,2376,"1.00000","0.8893","0.8893" +"GO:0002260","lymphocyte homeostasis",4,0,0.29,2377,"1.00000","0.8893","0.8893" +"GO:0010591","regulation of lamellipodium assembly",4,0,0.29,2378,"1.00000","0.8893","0.8893" +"GO:0032635","interleukin-6 production",4,0,0.29,2379,"1.00000","0.8893","0.8893" +"GO:1902743","regulation of lamellipodium organization",4,0,0.29,2380,"1.00000","0.8893","0.8893" +"GO:0045666","positive regulation of neuron differenti...",18,1,1.29,1107,"0.73934","0.8899","0.8899" +"GO:0010562","positive regulation of phosphorus metabo...",35,3,2.51,714,"0.46452","0.8907","0.8907" +"GO:0045937","positive regulation of phosphate metabol...",35,3,2.51,715,"0.46452","0.8907","0.8907" +"GO:0006575","cellular modified amino acid metabolic p...",11,0,0.79,2381,"1.00000","0.8908","0.8908" +"GO:0015672","monovalent inorganic cation transport",39,4,2.8,409,"0.30510","0.8917","0.8917" +"GO:0043066","negative regulation of apoptotic process",36,1,2.58,1319,"0.93277","0.8919","0.8919" +"GO:0061013","regulation of mRNA catabolic process",9,1,0.65,756,"0.48879","0.8919","0.8919" +"GO:0007020","microtubule nucleation",4,0,0.29,2382,"1.00000","0.8925","0.8925" +"GO:0044419","interspecies interaction between organis...",13,1,0.93,934,"0.62092","0.8925","0.8925" +"GO:0009966","regulation of signal transduction",152,8,10.9,1276,"0.86813","0.8932","0.8932" +"GO:0010468","regulation of gene expression",367,17,26.32,1387,"0.98797","0.8933","0.8933" +"GO:0001818","negative regulation of cytokine producti...",6,0,0.43,2383,"1.00000","0.8941","0.8941" +"GO:0048872","homeostasis of number of cells",17,1,1.22,1078,"0.71905","0.8951","0.8951" +"GO:0090130","tissue migration",17,1,1.22,1079,"0.71905","0.8951","0.8951" +"GO:2000147","positive regulation of cell motility",17,0,1.22,2384,"1.00000","0.8951","0.8951" +"GO:0090317","negative regulation of intracellular pro...",3,0,0.22,2385,"1.00000","0.8952","0.8952" +"GO:2001244","positive regulation of intrinsic apoptot...",3,0,0.22,2386,"1.00000","0.8952","0.8952" +"GO:0019222","regulation of metabolic process",448,23,32.13,1373,"0.97802","0.8958","0.8958" +"GO:0023051","regulation of signaling",177,12,12.69,948,"0.62871","0.8958","0.8958" +"GO:0097190","apoptotic signaling pathway",20,2,1.43,662,"0.42604","0.8960","0.8960" +"GO:0032268","regulation of cellular protein metabolic...",113,7,8.1,1065,"0.71451","0.8963","0.8963" +"GO:0006582","melanin metabolic process",3,0,0.22,2387,"1.00000","0.8966","0.8966" +"GO:0019730","antimicrobial humoral response",3,0,0.22,2388,"1.00000","0.8966","0.8966" +"GO:0035006","melanization defense response",3,0,0.22,2389,"1.00000","0.8966","0.8966" +"GO:0035112","genitalia morphogenesis",3,0,0.22,2390,"1.00000","0.8966","0.8966" +"GO:0051491","positive regulation of filopodium assemb...",3,0,0.22,2391,"1.00000","0.8966","0.8966" +"GO:0060428","lung epithelium development",3,0,0.22,2392,"1.00000","0.8966","0.8966" +"GO:2000278","regulation of DNA biosynthetic process",3,0,0.22,2393,"1.00000","0.8966","0.8966" +"GO:0032273","positive regulation of protein polymeriz...",14,0,1,2394,"1.00000","0.8966","0.8966" +"GO:0060560","developmental growth involved in morphog...",14,0,1,2395,"1.00000","0.8966","0.8966" +"GO:0006914","autophagy",39,3,2.8,826,"0.53843","0.8971","0.8971" +"GO:0061919","process utilizing autophagic mechanism",39,3,2.8,827,"0.53843","0.8971","0.8971" +"GO:0009299","mRNA transcription",3,0,0.22,2396,"1.00000","0.8972","0.8972" +"GO:0042789","mRNA transcription by RNA polymerase II",3,0,0.22,2397,"1.00000","0.8972","0.8972" +"GO:0045844","positive regulation of striated muscle t...",3,0,0.22,2398,"1.00000","0.8972","0.8972" +"GO:0048636","positive regulation of muscle organ deve...",3,0,0.22,2399,"1.00000","0.8972","0.8972" +"GO:0048641","regulation of skeletal muscle tissue dev...",3,0,0.22,2400,"1.00000","0.8972","0.8972" +"GO:0048643","positive regulation of skeletal muscle t...",3,0,0.22,2401,"1.00000","0.8972","0.8972" +"GO:0060914","heart formation",3,0,0.22,2402,"1.00000","0.8972","0.8972" +"GO:1901863","positive regulation of muscle tissue dev...",3,0,0.22,2403,"1.00000","0.8972","0.8972" +"GO:1905207","regulation of cardiocyte differentiation",3,0,0.22,2404,"1.00000","0.8972","0.8972" +"GO:2000035","regulation of stem cell division",3,0,0.22,2405,"1.00000","0.8972","0.8972" +"GO:0031111","negative regulation of microtubule polym...",5,0,0.36,2406,"1.00000","0.8974","0.8974" +"GO:0048523","negative regulation of cellular process",221,10,15.85,1357,"0.96554","0.8976","0.8976" +"GO:0006725","cellular aromatic compound metabolic pro...",648,26,46.48,1432,"0.99996","0.8978","0.8978" +"GO:0042592","homeostatic process",90,7,6.46,718,"0.47023","0.8987","0.8987" +"GO:0097722","sperm motility",6,0,0.43,2407,"1.00000","0.8989","0.8989" +"GO:0010941","regulation of cell death",66,5,4.73,780,"0.51839","0.8995","0.8995" +"GO:0044260","cellular macromolecule metabolic process",851,36,61.04,1436,"0.99999","0.8995","0.8995" +"GO:0008064","regulation of actin polymerization or de...",15,0,1.08,2408,"1.00000","0.8997","0.8997" +"GO:0030335","positive regulation of cell migration",15,0,1.08,2409,"1.00000","0.8997","0.8997" +"GO:0030832","regulation of actin filament length",15,0,1.08,2410,"1.00000","0.8997","0.8997" +"GO:0051494","negative regulation of cytoskeleton orga...",15,0,1.08,2411,"1.00000","0.8997","0.8997" +"GO:0048644","muscle organ morphogenesis",3,0,0.22,2412,"1.00000","0.8998","0.8998" +"GO:0055008","cardiac muscle tissue morphogenesis",3,0,0.22,2413,"1.00000","0.8998","0.8998" +"GO:0060415","muscle tissue morphogenesis",3,0,0.22,2414,"1.00000","0.8998","0.8998" +"GO:0032535","regulation of cellular component size",24,0,1.72,2415,"1.00000","0.9002","0.9002" +"GO:0051098","regulation of binding",16,1,1.15,1046,"0.69719","0.9002","0.9002" +"GO:0032984","protein-containing complex disassembly",19,1,1.36,1133,"0.75818","0.9004","0.9004" +"GO:0110053","regulation of actin filament organizatio...",19,0,1.36,2416,"1.00000","0.9004","0.9004" +"GO:0052548","regulation of endopeptidase activity",12,1,0.86,900,"0.59148","0.9004","0.9004" +"GO:2000116","regulation of cysteine-type endopeptidas...",12,1,0.86,901,"0.59148","0.9004","0.9004" +"GO:0090132","epithelium migration",16,1,1.15,1047,"0.69719","0.9010","0.9010" +"GO:0046677","response to antibiotic",16,0,1.15,2417,"1.00000","0.9010","0.9010" +"GO:1901797","negative regulation of signal transducti...",3,0,0.22,2418,"1.00000","0.9011","0.9011" +"GO:0030902","hindbrain development",9,1,0.65,757,"0.48879","0.9017","0.9017" +"GO:0031398","positive regulation of protein ubiquitin...",9,1,0.65,758,"0.48879","0.9017","0.9017" +"GO:1903322","positive regulation of protein modificat...",9,1,0.65,759,"0.48879","0.9017","0.9017" +"GO:0035640","exploration behavior",4,0,0.29,2419,"1.00000","0.9018","0.9018" +"GO:0010646","regulation of cell communication",174,11,12.48,1068,"0.71876","0.9020","0.9020" +"GO:0006900","vesicle budding from membrane",4,0,0.29,2420,"1.00000","0.9022","0.9022" +"GO:0009057","macromolecule catabolic process",90,5,6.46,1164,"0.78680","0.9023","0.9023" +"GO:0099402","plant organ development",7,0,0.5,2421,"1.00000","0.9028","0.9028" +"GO:0044092","negative regulation of molecular functio...",35,3,2.51,716,"0.46452","0.9030","0.9030" +"GO:0080090","regulation of primary metabolic process",405,20,29.05,1377,"0.98164","0.9031","0.9031" +"GO:0023052","signaling",452,30,32.42,1067,"0.71828","0.6248","0.9031" +"GO:0034330","cell junction organization",13,0,0.93,2422,"1.00000","0.9035","0.9035" +"GO:0000281","mitotic cytokinesis",9,1,0.65,760,"0.48879","0.9038","0.9038" +"GO:0045732","positive regulation of protein catabolic...",10,0,0.72,2423,"1.00000","0.9040","0.9040" +"GO:0040017","positive regulation of locomotion",23,2,1.65,771,"0.49952","0.9042","0.9042" +"GO:0044772","mitotic cell cycle phase transition",13,1,0.93,935,"0.62092","0.9061","0.9061" +"GO:0032270","positive regulation of cellular protein ...",53,4,3.8,825,"0.53461","0.9063","0.9063" +"GO:0032147","activation of protein kinase activity",7,0,0.5,2424,"1.00000","0.9065","0.9065" +"GO:0009617","response to bacterium",20,2,1.43,663,"0.42604","0.9066","0.9066" +"GO:0045055","regulated exocytosis",12,1,0.86,902,"0.59148","0.9068","0.9068" +"GO:0031399","regulation of protein modification proce...",80,6,5.74,777,"0.51788","0.9069","0.9069" +"GO:0010631","epithelial cell migration",15,1,1.08,999,"0.67363","0.9069","0.9069" +"GO:0048736","appendage development",15,1,1.08,1000,"0.67363","0.9069","0.9069" +"GO:1903706","regulation of hemopoiesis",15,1,1.08,1001,"0.67363","0.9069","0.9069" +"GO:0071900","regulation of protein serine/threonine k...",15,0,1.08,2425,"1.00000","0.9069","0.9069" +"GO:0045765","regulation of angiogenesis",8,0,0.57,2426,"1.00000","0.9074","0.9074" +"GO:1901342","regulation of vasculature development",8,0,0.57,2427,"1.00000","0.9074","0.9074" +"GO:0009611","response to wounding",34,3,2.44,668,"0.44524","0.9074","0.9074" +"GO:0001935","endothelial cell proliferation",6,0,0.43,2428,"1.00000","0.9074","0.9074" +"GO:0022604","regulation of cell morphogenesis",22,1,1.58,1190,"0.80694","0.9082","0.9082" +"GO:0071804","cellular potassium ion transport",11,1,0.79,848,"0.55976","0.9082","0.9082" +"GO:0071805","potassium ion transmembrane transport",11,1,0.79,849,"0.55976","0.9082","0.9082" +"GO:0016032","viral process",11,1,0.79,850,"0.55976","0.9083","0.9083" +"GO:0044403","symbiont process",11,1,0.79,851,"0.55976","0.9083","0.9083" +"GO:0062012","regulation of small molecule metabolic p...",9,0,0.65,2429,"1.00000","0.9086","0.9086" +"GO:0051301","cell division",30,1,2.15,1292,"0.89426","0.9088","0.9088" +"GO:0007030","Golgi organization",10,0,0.72,2430,"1.00000","0.9088","0.9088" +"GO:1901360","organic cyclic compound metabolic proces...",664,27,47.62,1431,"0.99996","0.9088","0.9088" +"GO:1902532","negative regulation of intracellular sig...",30,0,2.15,2431,"1.00000","0.9093","0.9093" +"GO:0045859","regulation of protein kinase activity",24,2,1.72,785,"0.52266","0.9097","0.9097" +"GO:1990542","mitochondrial transmembrane transport",9,0,0.65,2432,"1.00000","0.9103","0.9103" +"GO:0006259","DNA metabolic process",97,3,6.96,1369,"0.97550","0.9104","0.9104" +"GO:1902904","negative regulation of supramolecular fi...",17,0,1.22,2433,"1.00000","0.9104","0.9104" +"GO:0030518","intracellular steroid hormone receptor s...",7,0,0.5,2434,"1.00000","0.9107","0.9107" +"GO:0045471","response to ethanol",7,0,0.5,2435,"1.00000","0.9107","0.9107" +"GO:0000079","regulation of cyclin-dependent protein s...",4,0,0.29,2436,"1.00000","0.9108","0.9108" +"GO:0051961","negative regulation of nervous system de...",18,1,1.29,1108,"0.73934","0.9110","0.9110" +"GO:0042035","regulation of cytokine biosynthetic proc...",5,0,0.36,2437,"1.00000","0.9110","0.9110" +"GO:0042089","cytokine biosynthetic process",5,0,0.36,2438,"1.00000","0.9110","0.9110" +"GO:0042107","cytokine metabolic process",5,0,0.36,2439,"1.00000","0.9110","0.9110" +"GO:0009451","RNA modification",27,0,1.94,2440,"1.00000","0.9114","0.9114" +"GO:0012501","programmed cell death",85,4,6.1,1280,"0.87137","0.9116","0.9116" +"GO:0009991","response to extracellular stimulus",24,1,1.72,1233,"0.83388","0.9117","0.9117" +"GO:0031667","response to nutrient levels",24,1,1.72,1234,"0.83388","0.9117","0.9117" +"GO:0048585","negative regulation of response to stimu...",70,1,5.02,1412,"0.99495","0.9120","0.9120" +"GO:0001909","leukocyte mediated cytotoxicity",3,0,0.22,2441,"1.00000","0.9122","0.9122" +"GO:0001910","regulation of leukocyte mediated cytotox...",3,0,0.22,2442,"1.00000","0.9122","0.9122" +"GO:0001912","positive regulation of leukocyte mediate...",3,0,0.22,2443,"1.00000","0.9122","0.9122" +"GO:0001959","regulation of cytokine-mediated signalin...",3,0,0.22,2444,"1.00000","0.9122","0.9122" +"GO:0001961","positive regulation of cytokine-mediated...",3,0,0.22,2445,"1.00000","0.9122","0.9122" +"GO:0002250","adaptive immune response",3,0,0.22,2446,"1.00000","0.9122","0.9122" +"GO:0002460","adaptive immune response based on somati...",3,0,0.22,2447,"1.00000","0.9122","0.9122" +"GO:0002753","cytoplasmic pattern recognition receptor...",3,0,0.22,2448,"1.00000","0.9122","0.9122" +"GO:0002819","regulation of adaptive immune response",3,0,0.22,2449,"1.00000","0.9122","0.9122" +"GO:0002821","positive regulation of adaptive immune r...",3,0,0.22,2450,"1.00000","0.9122","0.9122" +"GO:0002822","regulation of adaptive immune response b...",3,0,0.22,2451,"1.00000","0.9122","0.9122" +"GO:0002824","positive regulation of adaptive immune r...",3,0,0.22,2452,"1.00000","0.9122","0.9122" +"GO:0002931","response to ischemia",3,0,0.22,2453,"1.00000","0.9122","0.9122" +"GO:0003018","vascular process in circulatory system",3,0,0.22,2454,"1.00000","0.9122","0.9122" +"GO:0006458","'de novo' protein folding",3,0,0.22,2455,"1.00000","0.9122","0.9122" +"GO:0007339","binding of sperm to zona pellucida",3,0,0.22,2456,"1.00000","0.9122","0.9122" +"GO:0009988","cell-cell recognition",3,0,0.22,2457,"1.00000","0.9122","0.9122" +"GO:0010286","heat acclimation",3,0,0.22,2458,"1.00000","0.9122","0.9122" +"GO:0019221","cytokine-mediated signaling pathway",3,0,0.22,2459,"1.00000","0.9122","0.9122" +"GO:0032069","regulation of nuclease activity",3,0,0.22,2460,"1.00000","0.9122","0.9122" +"GO:0032075","positive regulation of nuclease activity",3,0,0.22,2461,"1.00000","0.9122","0.9122" +"GO:0034612","response to tumor necrosis factor",3,0,0.22,2462,"1.00000","0.9122","0.9122" +"GO:0035036","sperm-egg recognition",3,0,0.22,2463,"1.00000","0.9122","0.9122" +"GO:0035821","modification of morphology or physiology...",3,0,0.22,2464,"1.00000","0.9122","0.9122" +"GO:0044788","modulation by host of viral process",3,0,0.22,2465,"1.00000","0.9122","0.9122" +"GO:0044794","positive regulation by host of viral pro...",3,0,0.22,2466,"1.00000","0.9122","0.9122" +"GO:0044827","modulation by host of viral genome repli...",3,0,0.22,2467,"1.00000","0.9122","0.9122" +"GO:0044829","positive regulation by host of viral gen...",3,0,0.22,2468,"1.00000","0.9122","0.9122" +"GO:0045070","positive regulation of viral genome repl...",3,0,0.22,2469,"1.00000","0.9122","0.9122" +"GO:0051084","'de novo' posttranslational protein fold...",3,0,0.22,2470,"1.00000","0.9122","0.9122" +"GO:0051085","chaperone cofactor-dependent protein ref...",3,0,0.22,2471,"1.00000","0.9122","0.9122" +"GO:0051702","interaction with symbiont",3,0,0.22,2472,"1.00000","0.9122","0.9122" +"GO:0051817","modification of morphology or physiology...",3,0,0.22,2473,"1.00000","0.9122","0.9122" +"GO:0051851","modification by host of symbiont morphol...",3,0,0.22,2474,"1.00000","0.9122","0.9122" +"GO:0060759","regulation of response to cytokine stimu...",3,0,0.22,2475,"1.00000","0.9122","0.9122" +"GO:0060760","positive regulation of response to cytok...",3,0,0.22,2476,"1.00000","0.9122","0.9122" +"GO:0061083","regulation of protein refolding",3,0,0.22,2477,"1.00000","0.9122","0.9122" +"GO:0071276","cellular response to cadmium ion",3,0,0.22,2478,"1.00000","0.9122","0.9122" +"GO:0090083","regulation of inclusion body assembly",3,0,0.22,2479,"1.00000","0.9122","0.9122" +"GO:0090084","negative regulation of inclusion body as...",3,0,0.22,2480,"1.00000","0.9122","0.9122" +"GO:0090559","regulation of membrane permeability",3,0,0.22,2481,"1.00000","0.9122","0.9122" +"GO:1902236","negative regulation of endoplasmic retic...",3,0,0.22,2482,"1.00000","0.9122","0.9122" +"GO:1903202","negative regulation of oxidative stress-...",3,0,0.22,2483,"1.00000","0.9122","0.9122" +"GO:1903902","positive regulation of viral life cycle",3,0,0.22,2484,"1.00000","0.9122","0.9122" +"GO:1905710","positive regulation of membrane permeabi...",3,0,0.22,2485,"1.00000","0.9122","0.9122" +"GO:2001237","negative regulation of extrinsic apoptot...",3,0,0.22,2486,"1.00000","0.9122","0.9122" +"GO:0061515","myeloid cell development",7,0,0.5,2487,"1.00000","0.9124","0.9124" +"GO:0043410","positive regulation of MAPK cascade",13,1,0.93,936,"0.62092","0.9125","0.9125" +"GO:0007006","mitochondrial membrane organization",4,0,0.29,2488,"1.00000","0.9127","0.9127" +"GO:0032355","response to estradiol",3,0,0.22,2489,"1.00000","0.9128","0.9128" +"GO:0048569","post-embryonic animal organ development",14,1,1,971,"0.64826","0.9129","0.9129" +"GO:0001525","angiogenesis",14,0,1,2490,"1.00000","0.9129","0.9129" +"GO:0048749","compound eye development",14,0,1,2491,"1.00000","0.9129","0.9129" +"GO:0046483","heterocycle metabolic process",644,24,46.19,1435,"0.99999","0.9132","0.9132" +"GO:0032387","negative regulation of intracellular tra...",4,0,0.29,2492,"1.00000","0.9134","0.9134" +"GO:0032640","tumor necrosis factor production",4,0,0.29,2493,"1.00000","0.9134","0.9134" +"GO:0032680","regulation of tumor necrosis factor prod...",4,0,0.29,2494,"1.00000","0.9134","0.9134" +"GO:0071706","tumor necrosis factor superfamily cytoki...",4,0,0.29,2495,"1.00000","0.9134","0.9134" +"GO:1903555","regulation of tumor necrosis factor supe...",4,0,0.29,2496,"1.00000","0.9134","0.9134" +"GO:0045184","establishment of protein localization",113,4,8.1,1365,"0.96831","0.9147","0.9147" +"GO:0043244","regulation of protein complex disassembl...",12,1,0.86,903,"0.59148","0.9151","0.9151" +"GO:0010564","regulation of cell cycle process",28,0,2.01,2497,"1.00000","0.9151","0.9151" +"GO:0016441","posttranscriptional gene silencing",10,0,0.72,2498,"1.00000","0.9153","0.9153" +"GO:0035194","posttranscriptional gene silencing by RN...",10,0,0.72,2499,"1.00000","0.9153","0.9153" +"GO:0071772","response to BMP",8,0,0.57,2500,"1.00000","0.9154","0.9154" +"GO:0071773","cellular response to BMP stimulus",8,0,0.57,2501,"1.00000","0.9154","0.9154" +"GO:0034404","nucleobase-containing small molecule bio...",14,0,1,2502,"1.00000","0.9156","0.9156" +"GO:0044237","cellular metabolic process",1269,71,91.02,1424,"0.99939","0.9150","0.9161" +"GO:0031346","positive regulation of cell projection o...",20,0,1.43,2503,"1.00000","0.9162","0.9162" +"GO:0006886","intracellular protein transport",75,2,5.38,1371,"0.97595","0.9163","0.9163" +"GO:0040019","positive regulation of embryonic develop...",5,0,0.36,2504,"1.00000","0.9169","0.9169" +"GO:0016570","histone modification",45,2,3.23,1246,"0.84538","0.9189","0.9189" +"GO:0016070","RNA metabolic process",483,16,34.64,1433,"0.99998","0.9189","0.9189" +"GO:0007444","imaginal disc development",13,0,0.93,2505,"1.00000","0.9189","0.9189" +"GO:0051346","negative regulation of hydrolase activit...",13,0,0.93,2506,"1.00000","0.9189","0.9189" +"GO:0097193","intrinsic apoptotic signaling pathway",13,0,0.93,2507,"1.00000","0.9189","0.9189" +"GO:0051171","regulation of nitrogen compound metaboli...",400,19,28.69,1386,"0.98784","0.9191","0.9191" +"GO:0007041","lysosomal transport",9,1,0.65,761,"0.48879","0.9193","0.9193" +"GO:0006139","nucleobase-containing compound metabolic...",622,22,44.61,1437,"1.00000","0.9203","0.9203" +"GO:0006839","mitochondrial transport",25,0,1.79,2508,"1.00000","0.9209","0.9209" +"GO:0051648","vesicle localization",14,1,1,972,"0.64826","0.9210","0.9210" +"GO:0046530","photoreceptor cell differentiation",18,2,1.29,574,"0.37407","0.9210","0.9210" +"GO:0048285","organelle fission",33,0,2.37,2509,"1.00000","0.9211","0.9211" +"GO:0043393","regulation of protein binding",10,1,0.72,818,"0.52559","0.9217","0.9217" +"GO:0008306","associative learning",7,0,0.5,2510,"1.00000","0.9217","0.9217" +"GO:0034103","regulation of tissue remodeling",5,0,0.36,2511,"1.00000","0.9220","0.9220" +"GO:0042221","response to chemical",200,12,14.34,1167,"0.78884","0.9222","0.9222" +"GO:0033143","regulation of intracellular steroid horm...",6,0,0.43,2512,"1.00000","0.9230","0.9230" +"GO:0000902","cell morphogenesis",59,2,4.23,1322,"0.93344","0.9240","0.9240" +"GO:0032024","positive regulation of insulin secretion",4,0,0.29,2513,"1.00000","0.9243","0.9243" +"GO:0090277","positive regulation of peptide hormone s...",4,0,0.29,2514,"1.00000","0.9243","0.9243" +"GO:0051272","positive regulation of cellular componen...",18,0,1.29,2515,"1.00000","0.9243","0.9243" +"GO:0019058","viral life cycle",9,1,0.65,762,"0.48879","0.9244","0.9244" +"GO:0045168","cell-cell signaling involved in cell fat...",4,0,0.29,2516,"1.00000","0.9246","0.9246" +"GO:0046331","lateral inhibition",4,0,0.29,2517,"1.00000","0.9246","0.9246" +"GO:0048793","pronephros development",3,0,0.22,2518,"1.00000","0.9247","0.9247" +"GO:0050770","regulation of axonogenesis",9,0,0.65,2519,"1.00000","0.9247","0.9247" +"GO:0048813","dendrite morphogenesis",12,1,0.86,904,"0.59148","0.9247","0.9247" +"GO:0002764","immune response-regulating signaling pat...",12,1,0.86,905,"0.59148","0.9249","0.9249" +"GO:0070997","neuron death",12,1,0.86,906,"0.59148","0.9249","0.9249" +"GO:0001745","compound eye morphogenesis",12,0,0.86,2520,"1.00000","0.9249","0.9249" +"GO:0002165","instar larval or pupal development",12,0,0.86,2521,"1.00000","0.9249","0.9249" +"GO:0048588","developmental cell growth",12,0,0.86,2522,"1.00000","0.9249","0.9249" +"GO:0090092","regulation of transmembrane receptor pro...",12,0,0.86,2523,"1.00000","0.9249","0.9249" +"GO:0043473","pigmentation",3,0,0.22,2524,"1.00000","0.9257","0.9257" +"GO:0048194","Golgi vesicle budding",3,0,0.22,2525,"1.00000","0.9257","0.9257" +"GO:0090114","COPII-coated vesicle budding",3,0,0.22,2526,"1.00000","0.9257","0.9257" +"GO:0061572","actin filament bundle organization",14,0,1,2527,"1.00000","0.9257","0.9257" +"GO:0032259","methylation",40,1,2.87,1347,"0.95032","0.9258","0.9258" +"GO:0009123","nucleoside monophosphate metabolic proce...",26,1,1.86,1260,"0.85708","0.9258","0.9258" +"GO:0009161","ribonucleoside monophosphate metabolic p...",26,1,1.86,1261,"0.85708","0.9258","0.9258" +"GO:0008104","protein localization",175,9,12.55,1295,"0.89570","0.9264","0.9264" +"GO:0060147","regulation of posttranscriptional gene s...",3,0,0.22,2528,"1.00000","0.9273","0.9273" +"GO:0060964","regulation of gene silencing by miRNA",3,0,0.22,2529,"1.00000","0.9273","0.9273" +"GO:0060966","regulation of gene silencing by RNA",3,0,0.22,2530,"1.00000","0.9273","0.9273" +"GO:0032020","ISG15-protein conjugation",3,0,0.22,2531,"1.00000","0.9274","0.9274" +"GO:0010563","negative regulation of phosphorus metabo...",26,2,1.86,862,"0.56675","0.9278","0.9278" +"GO:0045936","negative regulation of phosphate metabol...",26,2,1.86,863,"0.56675","0.9278","0.9278" +"GO:0000280","nuclear division",30,0,2.15,2532,"1.00000","0.9281","0.9281" +"GO:0048584","positive regulation of response to stimu...",86,5,6.17,1116,"0.75188","0.9285","0.9285" +"GO:0071897","DNA biosynthetic process",9,0,0.65,2533,"1.00000","0.9289","0.9289" +"GO:0043687","post-translational protein modification",5,0,0.36,2534,"1.00000","0.9291","0.9291" +"GO:0072593","reactive oxygen species metabolic proces...",7,0,0.5,2535,"1.00000","0.9295","0.9295" +"GO:0016575","histone deacetylation",5,0,0.36,2536,"1.00000","0.9296","0.9296" +"GO:0022622","root system development",5,0,0.36,2537,"1.00000","0.9296","0.9296" +"GO:0048364","root development",5,0,0.36,2538,"1.00000","0.9296","0.9296" +"GO:0051646","mitochondrion localization",5,0,0.36,2539,"1.00000","0.9296","0.9296" +"GO:1900407","regulation of cellular response to oxida...",5,0,0.36,2540,"1.00000","0.9296","0.9296" +"GO:0045934","negative regulation of nucleobase-contai...",62,2,4.45,1338,"0.94479","0.9298","0.9298" +"GO:0000165","MAPK cascade",23,1,1.65,1216,"0.82091","0.9299","0.9299" +"GO:0010639","negative regulation of organelle organiz...",23,1,1.65,1217,"0.82091","0.9299","0.9299" +"GO:0023014","signal transduction by protein phosphory...",23,1,1.65,1218,"0.82091","0.9299","0.9299" +"GO:0051247","positive regulation of protein metabolic...",57,4,4.09,912,"0.59373","0.9305","0.9305" +"GO:0001954","positive regulation of cell-matrix adhes...",3,0,0.22,2541,"1.00000","0.9307","0.9307" +"GO:0010811","positive regulation of cell-substrate ad...",3,0,0.22,2542,"1.00000","0.9307","0.9307" +"GO:0043161","proteasome-mediated ubiquitin-dependent ...",22,2,1.58,723,"0.47568","0.9307","0.9307" +"GO:0051017","actin filament bundle assembly",13,0,0.93,2543,"1.00000","0.9309","0.9309" +"GO:0002757","immune response-activating signal transd...",11,1,0.79,852,"0.55976","0.9310","0.9310" +"GO:1901214","regulation of neuron death",11,1,0.79,853,"0.55976","0.9310","0.9310" +"GO:0031109","microtubule polymerization or depolymeri...",11,0,0.79,2544,"1.00000","0.9310","0.9310" +"GO:0042110","T cell activation",11,0,0.79,2545,"1.00000","0.9310","0.9310" +"GO:2001242","regulation of intrinsic apoptotic signal...",11,0,0.79,2546,"1.00000","0.9310","0.9310" +"GO:0006851","mitochondrial calcium ion transmembrane ...",3,0,0.22,2547,"1.00000","0.9310","0.9310" +"GO:0036444","calcium import into the mitochondrion",3,0,0.22,2548,"1.00000","0.9310","0.9310" +"GO:0051560","mitochondrial calcium ion homeostasis",3,0,0.22,2549,"1.00000","0.9310","0.9310" +"GO:0072331","signal transduction by p53 class mediato...",12,0,0.86,2550,"1.00000","0.9313","0.9313" +"GO:0030534","adult behavior",9,1,0.65,763,"0.48879","0.9317","0.9317" +"GO:0044271","cellular nitrogen compound biosynthetic ...",450,21,32.28,1407,"0.99360","0.9318","0.9318" +"GO:0006888","ER to Golgi vesicle-mediated transport",11,0,0.79,2551,"1.00000","0.9319","0.9319" +"GO:0050896","response to stimulus",682,45,48.92,1157,"0.77883","0.3779","0.9320" +"GO:0051253","negative regulation of RNA metabolic pro...",60,2,4.3,1326,"0.93745","0.9321","0.9321" +"GO:0042981","regulation of apoptotic process",55,4,3.94,857,"0.56471","0.9325","0.9325" +"GO:0006810","transport",530,56,38.01,2,"0.00067","0.1258","0.9326" +"GO:0045892","negative regulation of transcription, DN...",59,2,4.23,1323,"0.93344","0.9328","0.9328" +"GO:1902679","negative regulation of RNA biosynthetic ...",59,2,4.23,1324,"0.93344","0.9328","0.9328" +"GO:1903507","negative regulation of nucleic acid-temp...",59,2,4.23,1325,"0.93344","0.9328","0.9328" +"GO:0015031","protein transport",104,4,7.46,1344,"0.94922","0.9330","0.9330" +"GO:0015833","peptide transport",104,4,7.46,1345,"0.94922","0.9330","0.9330" +"GO:0042886","amide transport",104,4,7.46,1346,"0.94922","0.9330","0.9330" +"GO:0002040","sprouting angiogenesis",4,0,0.29,2552,"1.00000","0.9331","0.9331" +"GO:0010594","regulation of endothelial cell migration",4,0,0.29,2553,"1.00000","0.9331","0.9331" +"GO:0032874","positive regulation of stress-activated ...",4,0,0.29,2554,"1.00000","0.9331","0.9331" +"GO:0036474","cell death in response to hydrogen perox...",4,0,0.29,2555,"1.00000","0.9331","0.9331" +"GO:0043535","regulation of blood vessel endothelial c...",4,0,0.29,2556,"1.00000","0.9331","0.9331" +"GO:0070304","positive regulation of stress-activated ...",4,0,0.29,2557,"1.00000","0.9331","0.9331" +"GO:1901566","organonitrogen compound biosynthetic pro...",173,9,12.41,1289,"0.88804","0.9340","0.9340" +"GO:0042073","intraciliary transport",7,0,0.5,2558,"1.00000","0.9341","0.9341" +"GO:0000278","mitotic cell cycle",51,3,3.66,1088,"0.72097","0.9342","0.9342" +"GO:0018196","peptidyl-asparagine modification",3,0,0.22,2559,"1.00000","0.9343","0.9343" +"GO:0018279","protein N-linked glycosylation via aspar...",3,0,0.22,2560,"1.00000","0.9343","0.9343" +"GO:0042533","tumor necrosis factor biosynthetic proce...",3,0,0.22,2561,"1.00000","0.9343","0.9343" +"GO:0042534","regulation of tumor necrosis factor bios...",3,0,0.22,2562,"1.00000","0.9343","0.9343" +"GO:0043542","endothelial cell migration",8,0,0.57,2563,"1.00000","0.9352","0.9352" +"GO:0000122","negative regulation of transcription by ...",37,2,2.65,1122,"0.75655","0.9352","0.9352" +"GO:0032103","positive regulation of response to exter...",5,0,0.36,2564,"1.00000","0.9354","0.9354" +"GO:0060541","respiratory system development",17,1,1.22,1080,"0.71905","0.9355","0.9355" +"GO:0007346","regulation of mitotic cell cycle",21,1,1.51,1171,"0.79188","0.9358","0.9358" +"GO:0007031","peroxisome organization",6,0,0.43,2565,"1.00000","0.9361","0.9361" +"GO:0042176","regulation of protein catabolic process",18,0,1.29,2566,"1.00000","0.9363","0.9363" +"GO:0006493","protein O-linked glycosylation",16,1,1.15,1048,"0.69719","0.9363","0.9363" +"GO:0050663","cytokine secretion",4,0,0.29,2567,"1.00000","0.9365","0.9365" +"GO:0048024","regulation of mRNA splicing, via spliceo...",5,0,0.36,2568,"1.00000","0.9367","0.9367" +"GO:0048821","erythrocyte development",5,0,0.36,2569,"1.00000","0.9367","0.9367" +"GO:0050684","regulation of mRNA processing",5,0,0.36,2570,"1.00000","0.9367","0.9367" +"GO:0042273","ribosomal large subunit biogenesis",4,0,0.29,2571,"1.00000","0.9368","0.9368" +"GO:0051049","regulation of transport",80,6,5.74,778,"0.51788","0.4935","0.9371" +"GO:0006413","translational initiation",10,1,0.72,819,"0.52559","0.9371","0.9371" +"GO:0007552","metamorphosis",10,0,0.72,2572,"1.00000","0.9371","0.9371" +"GO:0007560","imaginal disc morphogenesis",10,0,0.72,2573,"1.00000","0.9371","0.9371" +"GO:0048563","post-embryonic animal organ morphogenesi...",10,0,0.72,2574,"1.00000","0.9371","0.9371" +"GO:0048707","instar larval or pupal morphogenesis",10,0,0.72,2575,"1.00000","0.9371","0.9371" +"GO:0007269","neurotransmitter secretion",9,1,0.65,764,"0.48879","0.9376","0.9376" +"GO:0099643","signal release from synapse",9,1,0.65,765,"0.48879","0.9376","0.9376" +"GO:0009199","ribonucleoside triphosphate metabolic pr...",19,0,1.36,2576,"1.00000","0.9376","0.9376" +"GO:0009205","purine ribonucleoside triphosphate metab...",19,0,1.36,2577,"1.00000","0.9376","0.9376" +"GO:0046034","ATP metabolic process",19,0,1.36,2578,"1.00000","0.9376","0.9376" +"GO:0051224","negative regulation of protein transport",4,0,0.29,2579,"1.00000","0.9379","0.9379" +"GO:1904950","negative regulation of establishment of ...",4,0,0.29,2580,"1.00000","0.9379","0.9379" +"GO:0035295","tube development",56,5,4.02,576,"0.37428","0.9381","0.9381" +"GO:0051205","protein insertion into membrane",4,0,0.29,2581,"1.00000","0.9387","0.9387" +"GO:0006400","tRNA modification",15,0,1.08,2582,"1.00000","0.9388","0.9388" +"GO:0030968","endoplasmic reticulum unfolded protein r...",4,0,0.29,2583,"1.00000","0.9393","0.9393" +"GO:0034620","cellular response to unfolded protein",4,0,0.29,2584,"1.00000","0.9393","0.9393" +"GO:0032269","negative regulation of cellular protein ...",47,3,3.37,983,"0.66715","0.9393","0.9393" +"GO:1903034","regulation of response to wounding",6,0,0.43,2585,"1.00000","0.9393","0.9393" +"GO:0050863","regulation of T cell activation",9,0,0.65,2586,"1.00000","0.9394","0.9394" +"GO:0010324","membrane invagination",6,0,0.43,2587,"1.00000","0.9395","0.9395" +"GO:0048515","spermatid differentiation",16,1,1.15,1049,"0.69719","0.9398","0.9398" +"GO:0035195","gene silencing by miRNA",7,0,0.5,2588,"1.00000","0.9400","0.9400" +"GO:0030488","tRNA methylation",3,0,0.22,2589,"1.00000","0.9401","0.9401" +"GO:0070979","protein K11-linked ubiquitination",7,0,0.5,2590,"1.00000","0.9402","0.9402" +"GO:0032990","cell part morphogenesis",46,2,3.3,1255,"0.85414","0.9406","0.9406" +"GO:0006605","protein targeting",22,0,1.58,2591,"1.00000","0.9407","0.9407" +"GO:0042325","regulation of phosphorylation",59,4,4.23,937,"0.62158","0.9408","0.9408" +"GO:0000910","cytokinesis",16,1,1.15,1050,"0.69719","0.9412","0.9412" +"GO:0043624","cellular protein complex disassembly",11,0,0.79,2592,"1.00000","0.9412","0.9412" +"GO:0008356","asymmetric cell division",6,0,0.43,2593,"1.00000","0.9413","0.9413" +"GO:0017145","stem cell division",6,0,0.43,2594,"1.00000","0.9413","0.9413" +"GO:0007229","integrin-mediated signaling pathway",6,0,0.43,2595,"1.00000","0.9415","0.9415" +"GO:0036294","cellular response to decreased oxygen le...",6,0,0.43,2596,"1.00000","0.9415","0.9415" +"GO:0071456","cellular response to hypoxia",6,0,0.43,2597,"1.00000","0.9415","0.9415" +"GO:0051172","negative regulation of nitrogen compound...",104,5,7.46,1287,"0.87977","0.9416","0.9416" +"GO:0031113","regulation of microtubule polymerization",6,0,0.43,2598,"1.00000","0.9418","0.9418" +"GO:0043408","regulation of MAPK cascade",19,1,1.36,1134,"0.75818","0.9418","0.9418" +"GO:0006984","ER-nucleus signaling pathway",4,0,0.29,2599,"1.00000","0.9420","0.9420" +"GO:1902652","secondary alcohol metabolic process",4,0,0.29,2600,"1.00000","0.9420","0.9420" +"GO:0060255","regulation of macromolecule metabolic pr...",426,19,30.55,1414,"0.99558","0.9422","0.9422" +"GO:0006109","regulation of carbohydrate metabolic pro...",7,0,0.5,2601,"1.00000","0.9428","0.9428" +"GO:0001522","pseudouridine synthesis",4,0,0.29,2602,"1.00000","0.9431","0.9431" +"GO:0048812","neuron projection morphogenesis",44,2,3.16,1239,"0.83614","0.9431","0.9431" +"GO:0048858","cell projection morphogenesis",44,2,3.16,1240,"0.83614","0.9431","0.9431" +"GO:0120039","plasma membrane bounded cell projection ...",44,2,3.16,1241,"0.83614","0.9431","0.9431" +"GO:0002791","regulation of peptide secretion",9,0,0.65,2603,"1.00000","0.9432","0.9432" +"GO:0008361","regulation of cell size",9,0,0.65,2604,"1.00000","0.9432","0.9432" +"GO:0035120","post-embryonic appendage morphogenesis",9,0,0.65,2605,"1.00000","0.9432","0.9432" +"GO:0035220","wing disc development",9,0,0.65,2606,"1.00000","0.9432","0.9432" +"GO:0046785","microtubule polymerization",9,0,0.65,2607,"1.00000","0.9432","0.9432" +"GO:0050708","regulation of protein secretion",9,0,0.65,2608,"1.00000","0.9432","0.9432" +"GO:0051099","positive regulation of binding",9,0,0.65,2609,"1.00000","0.9432","0.9432" +"GO:0071236","cellular response to antibiotic",9,0,0.65,2610,"1.00000","0.9432","0.9432" +"GO:0120034","positive regulation of plasma membrane b...",9,0,0.65,2611,"1.00000","0.9432","0.9432" +"GO:1990138","neuron projection extension",9,0,0.65,2612,"1.00000","0.9432","0.9432" +"GO:0043067","regulation of programmed cell death",57,4,4.09,913,"0.59373","0.9433","0.9433" +"GO:0045598","regulation of fat cell differentiation",4,0,0.29,2613,"1.00000","0.9433","0.9433" +"GO:0045682","regulation of epidermis development",4,0,0.29,2614,"1.00000","0.9433","0.9433" +"GO:0048709","oligodendrocyte differentiation",4,0,0.29,2615,"1.00000","0.9433","0.9433" +"GO:0070841","inclusion body assembly",4,0,0.29,2616,"1.00000","0.9433","0.9433" +"GO:1903201","regulation of oxidative stress-induced c...",4,0,0.29,2617,"1.00000","0.9433","0.9433" +"GO:2001023","regulation of response to drug",4,0,0.29,2618,"1.00000","0.9433","0.9433" +"GO:0000904","cell morphogenesis involved in different...",43,2,3.08,1228,"0.82641","0.9444","0.9444" +"GO:0022412","cellular process involved in reproductio...",43,3,3.08,918,"0.60623","0.9444","0.9444" +"GO:0007179","transforming growth factor beta receptor...",13,0,0.93,2619,"1.00000","0.9445","0.9445" +"GO:0010976","positive regulation of neuron projection...",13,0,0.93,2620,"1.00000","0.9449","0.9449" +"GO:0044238","primary metabolic process",1320,78,94.67,1417,"0.99661","0.9460","0.9453" +"GO:0048232","male gamete generation",30,2,2.15,955,"0.64595","0.9454","0.9454" +"GO:0031396","regulation of protein ubiquitination",12,1,0.86,907,"0.59148","0.9462","0.9462" +"GO:0051261","protein depolymerization",10,0,0.72,2621,"1.00000","0.9465","0.9465" +"GO:0007040","lysosome organization",6,0,0.43,2622,"1.00000","0.9465","0.9465" +"GO:0080171","lytic vacuole organization",6,0,0.43,2623,"1.00000","0.9465","0.9465" +"GO:0032543","mitochondrial translation",3,0,0.22,2624,"1.00000","0.9470","0.9470" +"GO:0010770","positive regulation of cell morphogenesi...",5,0,0.36,2625,"1.00000","0.9471","0.9471" +"GO:0034976","response to endoplasmic reticulum stress",17,1,1.22,1081,"0.71905","0.9478","0.9478" +"GO:0061640","cytoskeleton-dependent cytokinesis",12,1,0.86,908,"0.59148","0.9480","0.9480" +"GO:0070373","negative regulation of ERK1 and ERK2 cas...",4,0,0.29,2626,"1.00000","0.9480","0.9480" +"GO:0043401","steroid hormone mediated signaling pathw...",15,1,1.08,1002,"0.67363","0.9483","0.9483" +"GO:0009886","post-embryonic animal morphogenesis",12,0,0.86,2627,"1.00000","0.9490","0.9490" +"GO:0010466","negative regulation of peptidase activit...",6,0,0.43,2628,"1.00000","0.9490","0.9490" +"GO:0019079","viral genome replication",6,0,0.43,2629,"1.00000","0.9490","0.9490" +"GO:0043549","regulation of kinase activity",29,2,2.08,947,"0.62728","0.9492","0.9492" +"GO:2000377","regulation of reactive oxygen species me...",5,0,0.36,2630,"1.00000","0.9492","0.9492" +"GO:0001751","compound eye photoreceptor cell differen...",8,0,0.57,2631,"1.00000","0.9494","0.9494" +"GO:0007472","wing disc morphogenesis",8,0,0.57,2632,"1.00000","0.9494","0.9494" +"GO:0007476","imaginal disc-derived wing morphogenesis",8,0,0.57,2633,"1.00000","0.9494","0.9494" +"GO:0010632","regulation of epithelial cell migration",8,0,0.57,2634,"1.00000","0.9494","0.9494" +"GO:0031110","regulation of microtubule polymerization...",8,0,0.57,2635,"1.00000","0.9494","0.9494" +"GO:0035114","imaginal disc-derived appendage morphoge...",8,0,0.57,2636,"1.00000","0.9494","0.9494" +"GO:0042542","response to hydrogen peroxide",8,0,0.57,2637,"1.00000","0.9494","0.9494" +"GO:0043409","negative regulation of MAPK cascade",8,0,0.57,2638,"1.00000","0.9494","0.9494" +"GO:0046777","protein autophosphorylation",8,0,0.57,2639,"1.00000","0.9494","0.9494" +"GO:0048675","axon extension",8,0,0.57,2640,"1.00000","0.9494","0.9494" +"GO:0048737","imaginal disc-derived appendage developm...",8,0,0.57,2641,"1.00000","0.9494","0.9494" +"GO:0090101","negative regulation of transmembrane rec...",8,0,0.57,2642,"1.00000","0.9494","0.9494" +"GO:0090288","negative regulation of cellular response...",8,0,0.57,2643,"1.00000","0.9494","0.9494" +"GO:0040029","regulation of gene expression, epigeneti...",22,1,1.58,1191,"0.80694","0.9496","0.9496" +"GO:0098657","import into cell",46,4,3.3,653,"0.42241","0.9496","0.9496" +"GO:0071363","cellular response to growth factor stimu...",27,0,1.94,2644,"1.00000","0.9497","0.9497" +"GO:0071704","organic substance metabolic process",1388,84,99.55,1410,"0.99447","0.9487","0.9498" +"GO:0036503","ERAD pathway",10,1,0.72,820,"0.52559","0.9498","0.9498" +"GO:0016239","positive regulation of macroautophagy",3,0,0.22,2645,"1.00000","0.9507","0.9507" +"GO:0006911","phagocytosis, engulfment",5,0,0.36,2646,"1.00000","0.9508","0.9508" +"GO:0042098","T cell proliferation",5,0,0.36,2647,"1.00000","0.9508","0.9508" +"GO:0042129","regulation of T cell proliferation",5,0,0.36,2648,"1.00000","0.9508","0.9508" +"GO:0099024","plasma membrane invagination",5,0,0.36,2649,"1.00000","0.9508","0.9508" +"GO:0006986","response to unfolded protein",7,0,0.5,2650,"1.00000","0.9508","0.9508" +"GO:0021700","developmental maturation",16,0,1.15,2651,"1.00000","0.9508","0.9508" +"GO:0051246","regulation of protein metabolic process",124,8,8.89,1007,"0.67791","0.9513","0.9513" +"GO:0010647","positive regulation of cell communicatio...",67,5,4.81,821,"0.53214","0.9520","0.9520" +"GO:0023056","positive regulation of signaling",67,5,4.81,822,"0.53214","0.9520","0.9520" +"GO:0007281","germ cell development",37,3,2.65,773,"0.50216","0.9521","0.9521" +"GO:0048667","cell morphogenesis involved in neuron di...",37,2,2.65,1123,"0.75655","0.9521","0.9521" +"GO:0061564","axon development",37,1,2.65,1333,"0.93766","0.9521","0.9521" +"GO:0009967","positive regulation of signal transducti...",61,4,4.38,958,"0.64822","0.9523","0.9523" +"GO:0009628","response to abiotic stimulus",81,5,5.81,1056,"0.70256","0.9525","0.9525" +"GO:0010453","regulation of cell fate commitment",3,0,0.22,2652,"1.00000","0.9526","0.9526" +"GO:0042659","regulation of cell fate specification",3,0,0.22,2653,"1.00000","0.9526","0.9526" +"GO:0006414","translational elongation",3,0,0.22,2654,"1.00000","0.9531","0.9531" +"GO:0008152","metabolic process",1586,100,113.75,1397,"0.99009","0.9538","0.9536" +"GO:1902531","regulation of intracellular signal trans...",86,5,6.17,1117,"0.75188","0.9536","0.9536" +"GO:0007059","chromosome segregation",19,0,1.36,2655,"1.00000","0.9541","0.9541" +"GO:0043414","macromolecule methylation",36,1,2.58,1320,"0.93277","0.9545","0.9545" +"GO:0031345","negative regulation of cell projection o...",9,0,0.65,2656,"1.00000","0.9546","0.9546" +"GO:0043086","negative regulation of catalytic activit...",30,2,2.15,956,"0.64595","0.9551","0.9551" +"GO:0007032","endosome organization",5,0,0.36,2657,"1.00000","0.9552","0.9552" +"GO:0042177","negative regulation of protein catabolic...",6,0,0.43,2658,"1.00000","0.9554","0.9554" +"GO:0002793","positive regulation of peptide secretion",7,0,0.5,2659,"1.00000","0.9556","0.9556" +"GO:0007635","chemosensory behavior",7,0,0.5,2660,"1.00000","0.9556","0.9556" +"GO:0021549","cerebellum development",7,0,0.5,2661,"1.00000","0.9556","0.9556" +"GO:0022037","metencephalon development",7,0,0.5,2662,"1.00000","0.9556","0.9556" +"GO:0043534","blood vessel endothelial cell migration",7,0,0.5,2663,"1.00000","0.9556","0.9556" +"GO:0050714","positive regulation of protein secretion",7,0,0.5,2664,"1.00000","0.9556","0.9556" +"GO:0050829","defense response to Gram-negative bacter...",7,0,0.5,2665,"1.00000","0.9556","0.9556" +"GO:0070301","cellular response to hydrogen peroxide",7,0,0.5,2666,"1.00000","0.9556","0.9556" +"GO:0070371","ERK1 and ERK2 cascade",7,0,0.5,2667,"1.00000","0.9556","0.9556" +"GO:1905897","regulation of response to endoplasmic re...",7,0,0.5,2668,"1.00000","0.9556","0.9556" +"GO:0006399","tRNA metabolic process",40,1,2.87,1348,"0.95032","0.9561","0.9561" +"GO:0098813","nuclear chromosome segregation",18,0,1.29,2669,"1.00000","0.9565","0.9565" +"GO:0044706","multi-multicellular organism process",8,0,0.57,2670,"1.00000","0.9566","0.9566" +"GO:0071300","cellular response to retinoic acid",4,0,0.29,2671,"1.00000","0.9568","0.9568" +"GO:1903320","regulation of protein modification by sm...",14,1,1,973,"0.64826","0.9569","0.9569" +"GO:0043242","negative regulation of protein complex d...",8,0,0.57,2672,"1.00000","0.9570","0.9570" +"GO:1901879","regulation of protein depolymerization",8,0,0.57,2673,"1.00000","0.9570","0.9570" +"GO:1901880","negative regulation of protein depolymer...",8,0,0.57,2674,"1.00000","0.9570","0.9570" +"GO:0030521","androgen receptor signaling pathway",3,0,0.22,2675,"1.00000","0.9572","0.9572" +"GO:0045604","regulation of epidermal cell differentia...",3,0,0.22,2676,"1.00000","0.9572","0.9572" +"GO:1901031","regulation of response to reactive oxyge...",3,0,0.22,2677,"1.00000","0.9572","0.9572" +"GO:1903205","regulation of hydrogen peroxide-induced ...",3,0,0.22,2678,"1.00000","0.9572","0.9572" +"GO:2001038","regulation of cellular response to drug",3,0,0.22,2679,"1.00000","0.9572","0.9572" +"GO:0010951","negative regulation of endopeptidase act...",5,0,0.36,2680,"1.00000","0.9573","0.9573" +"GO:2000117","negative regulation of cysteine-type end...",5,0,0.36,2681,"1.00000","0.9573","0.9573" +"GO:0051129","negative regulation of cellular componen...",43,1,3.08,1354,"0.96042","0.9575","0.9575" +"GO:0010498","proteasomal protein catabolic process",25,2,1.79,833,"0.54508","0.9576","0.9576" +"GO:0007127","meiosis I",5,0,0.36,2682,"1.00000","0.9586","0.9586" +"GO:0042770","signal transduction in response to DNA d...",5,0,0.36,2683,"1.00000","0.9586","0.9586" +"GO:0061982","meiosis I cell cycle process",5,0,0.36,2684,"1.00000","0.9586","0.9586" +"GO:0018345","protein palmitoylation",6,0,0.43,2685,"1.00000","0.9587","0.9587" +"GO:1901888","regulation of cell junction assembly",4,0,0.29,2686,"1.00000","0.9589","0.9589" +"GO:0031668","cellular response to extracellular stimu...",10,0,0.72,2687,"1.00000","0.9591","0.9591" +"GO:0031669","cellular response to nutrient levels",10,0,0.72,2688,"1.00000","0.9591","0.9591" +"GO:0007409","axonogenesis",31,1,2.22,1300,"0.90193","0.9598","0.9598" +"GO:0031400","negative regulation of protein modificat...",31,2,2.22,980,"0.66388","0.9598","0.9598" +"GO:0007626","locomotory behavior",13,0,0.93,2689,"1.00000","0.9599","0.9599" +"GO:0098722","asymmetric stem cell division",4,0,0.29,2690,"1.00000","0.9605","0.9605" +"GO:0032870","cellular response to hormone stimulus",37,3,2.65,774,"0.50216","0.9606","0.9606" +"GO:0030520","intracellular estrogen receptor signalin...",3,0,0.22,2691,"1.00000","0.9608","0.9608" +"GO:0033146","regulation of intracellular estrogen rec...",3,0,0.22,2692,"1.00000","0.9608","0.9608" +"GO:0009755","hormone-mediated signaling pathway",17,1,1.22,1082,"0.71905","0.9610","0.9610" +"GO:0051179","localization",624,60,44.76,10,"0.00479","0.2705","0.9613" +"GO:0031529","ruffle organization",5,0,0.36,2693,"1.00000","0.9614","0.9614" +"GO:0000422","autophagy of mitochondrion",5,0,0.36,2694,"1.00000","0.9616","0.9616" +"GO:0061726","mitochondrion disassembly",5,0,0.36,2695,"1.00000","0.9616","0.9616" +"GO:1903008","organelle disassembly",5,0,0.36,2696,"1.00000","0.9616","0.9616" +"GO:0002699","positive regulation of immune effector p...",6,0,0.43,2697,"1.00000","0.9618","0.9618" +"GO:0007249","I-kappaB kinase/NF-kappaB signaling",6,0,0.43,2698,"1.00000","0.9618","0.9618" +"GO:0010634","positive regulation of epithelial cell m...",6,0,0.43,2699,"1.00000","0.9618","0.9618" +"GO:0030032","lamellipodium assembly",6,0,0.43,2700,"1.00000","0.9618","0.9618" +"GO:0030177","positive regulation of Wnt signaling pat...",6,0,0.43,2701,"1.00000","0.9618","0.9618" +"GO:0030516","regulation of axon extension",6,0,0.43,2702,"1.00000","0.9618","0.9618" +"GO:0032231","regulation of actin filament bundle asse...",6,0,0.43,2703,"1.00000","0.9618","0.9618" +"GO:0043122","regulation of I-kappaB kinase/NF-kappaB ...",6,0,0.43,2704,"1.00000","0.9618","0.9618" +"GO:0043277","apoptotic cell clearance",6,0,0.43,2705,"1.00000","0.9618","0.9618" +"GO:0045766","positive regulation of angiogenesis",6,0,0.43,2706,"1.00000","0.9618","0.9618" +"GO:0061387","regulation of extent of cell growth",6,0,0.43,2707,"1.00000","0.9618","0.9618" +"GO:0097581","lamellipodium organization",6,0,0.43,2708,"1.00000","0.9618","0.9618" +"GO:0110020","regulation of actomyosin structure organ...",6,0,0.43,2709,"1.00000","0.9618","0.9618" +"GO:1903573","negative regulation of response to endop...",6,0,0.43,2710,"1.00000","0.9618","0.9618" +"GO:1904018","positive regulation of vasculature devel...",6,0,0.43,2711,"1.00000","0.9618","0.9618" +"GO:0043632","modification-dependent macromolecule cat...",40,3,2.87,834,"0.55599","0.9619","0.9619" +"GO:0018193","peptidyl-amino acid modification",63,2,4.52,1342,"0.94815","0.9620","0.9620" +"GO:1902533","positive regulation of intracellular sig...",28,2,2.01,919,"0.60785","0.9622","0.9622" +"GO:0006479","protein methylation",24,1,1.72,1235,"0.83388","0.9625","0.9625" +"GO:0008213","protein alkylation",24,1,1.72,1236,"0.83388","0.9625","0.9625" +"GO:0006793","phosphorus metabolic process",355,22,25.46,1197,"0.80981","0.7004","0.9627" +"GO:0008344","adult locomotory behavior",4,0,0.29,2712,"1.00000","0.9627","0.9627" +"GO:0002218","activation of innate immune response",5,0,0.36,2713,"1.00000","0.9629","0.9629" +"GO:0002221","pattern recognition receptor signaling p...",5,0,0.36,2714,"1.00000","0.9629","0.9629" +"GO:0002758","innate immune response-activating signal...",5,0,0.36,2715,"1.00000","0.9629","0.9629" +"GO:0034968","histone lysine methylation",11,1,0.79,854,"0.55976","0.9649","0.9649" +"GO:0043170","macromolecule metabolic process",1077,50,77.25,1438,"1.00000","0.9651","0.9651" +"GO:0031325","positive regulation of cellular metaboli...",117,7,8.39,1115,"0.74832","0.9651","0.9651" +"GO:0000731","DNA synthesis involved in DNA repair",3,0,0.22,2716,"1.00000","0.9657","0.9657" +"GO:0019985","translesion synthesis",3,0,0.22,2717,"1.00000","0.9657","0.9657" +"GO:0043154","negative regulation of cysteine-type end...",4,0,0.29,2718,"1.00000","0.9657","0.9657" +"GO:0051234","establishment of localization",546,56,39.16,5,"0.00146","0.1946","0.9658" +"GO:0008037","cell recognition",8,0,0.57,2719,"1.00000","0.9658","0.9658" +"GO:0016050","vesicle organization",19,1,1.36,1135,"0.75818","0.9659","0.9659" +"GO:0051783","regulation of nuclear division",11,0,0.79,2720,"1.00000","0.9660","0.9660" +"GO:0044267","cellular protein metabolic process",485,20,34.79,1423,"0.99927","0.9661","0.9661" +"GO:0016310","phosphorylation",226,14,16.21,1140,"0.76383","0.9662","0.9662" +"GO:0006807","nitrogen compound metabolic process",1199,63,86,1428,"0.99990","0.9667","0.9667" +"GO:0070848","response to growth factor",30,1,2.15,1293,"0.89426","0.9669","0.9669" +"GO:0002097","tRNA wobble base modification",8,0,0.57,2721,"1.00000","0.9670","0.9670" +"GO:0002098","tRNA wobble uridine modification",8,0,0.57,2722,"1.00000","0.9670","0.9670" +"GO:0071383","cellular response to steroid hormone sti...",22,2,1.58,724,"0.47568","0.9671","0.9671" +"GO:0043484","regulation of RNA splicing",8,0,0.57,2723,"1.00000","0.9675","0.9675" +"GO:0030042","actin filament depolymerization",6,0,0.43,2724,"1.00000","0.9676","0.9676" +"GO:0030834","regulation of actin filament depolymeriz...",6,0,0.43,2725,"1.00000","0.9676","0.9676" +"GO:0030835","negative regulation of actin filament de...",6,0,0.43,2726,"1.00000","0.9676","0.9676" +"GO:0007286","spermatid development",15,1,1.08,1003,"0.67363","0.9676","0.9676" +"GO:0031532","actin cytoskeleton reorganization",5,0,0.36,2727,"1.00000","0.9681","0.9681" +"GO:0043954","cellular component maintenance",5,0,0.36,2728,"1.00000","0.9681","0.9681" +"GO:0051492","regulation of stress fiber assembly",5,0,0.36,2729,"1.00000","0.9681","0.9681" +"GO:0070372","regulation of ERK1 and ERK2 cascade",5,0,0.36,2730,"1.00000","0.9681","0.9681" +"GO:0071901","negative regulation of protein serine/th...",5,0,0.36,2731,"1.00000","0.9681","0.9681" +"GO:1903321","negative regulation of protein modificat...",5,0,0.36,2732,"1.00000","0.9681","0.9681" +"GO:0051656","establishment of organelle localization",23,1,1.65,1219,"0.82091","0.9682","0.9682" +"GO:0097178","ruffle assembly",4,0,0.29,2733,"1.00000","0.9690","0.9690" +"GO:1900027","regulation of ruffle assembly",4,0,0.29,2734,"1.00000","0.9690","0.9690" +"GO:0045333","cellular respiration",12,0,0.86,2735,"1.00000","0.9691","0.9691" +"GO:0060026","convergent extension",3,0,0.22,2736,"1.00000","0.9692","0.9692" +"GO:0006974","cellular response to DNA damage stimulus",83,4,5.95,1265,"0.85900","0.9695","0.9695" +"GO:1902882","regulation of response to oxidative stre...",6,0,0.43,2737,"1.00000","0.9695","0.9695" +"GO:0045860","positive regulation of protein kinase ac...",14,1,1,974,"0.64826","0.9699","0.9699" +"GO:1901136","carbohydrate derivative catabolic proces...",8,0,0.57,2738,"1.00000","0.9704","0.9704" +"GO:0045995","regulation of embryonic development",8,0,0.57,2739,"1.00000","0.9707","0.9707" +"GO:0010033","response to organic substance",130,7,9.32,1242,"0.83844","0.9717","0.9717" +"GO:0019220","regulation of phosphate metabolic proces...",67,4,4.81,1085,"0.72053","0.9717","0.9717" +"GO:0051174","regulation of phosphorus metabolic proce...",67,4,4.81,1086,"0.72053","0.9717","0.9717" +"GO:0001666","response to hypoxia",9,0,0.65,2740,"1.00000","0.9721","0.9721" +"GO:0031098","stress-activated protein kinase signalin...",9,0,0.65,2741,"1.00000","0.9721","0.9721" +"GO:0036293","response to decreased oxygen levels",9,0,0.65,2742,"1.00000","0.9721","0.9721" +"GO:0045787","positive regulation of cell cycle",9,0,0.65,2743,"1.00000","0.9721","0.9721" +"GO:0070482","response to oxygen levels",9,0,0.65,2744,"1.00000","0.9721","0.9721" +"GO:0006505","GPI anchor metabolic process",6,0,0.43,2745,"1.00000","0.9726","0.9726" +"GO:0006506","GPI anchor biosynthetic process",6,0,0.43,2746,"1.00000","0.9726","0.9726" +"GO:0006661","phosphatidylinositol biosynthetic proces...",6,0,0.43,2747,"1.00000","0.9726","0.9726" +"GO:0009247","glycolipid biosynthetic process",6,0,0.43,2748,"1.00000","0.9726","0.9726" +"GO:0003205","cardiac chamber development",5,0,0.36,2749,"1.00000","0.9729","0.9729" +"GO:0018022","peptidyl-lysine methylation",14,1,1,975,"0.64826","0.9729","0.9729" +"GO:0140013","meiotic nuclear division",11,0,0.79,2750,"1.00000","0.9732","0.9732" +"GO:0060627","regulation of vesicle-mediated transport",27,1,1.94,1275,"0.86744","0.9733","0.9733" +"GO:0006099","tricarboxylic acid cycle",8,0,0.57,2751,"1.00000","0.9735","0.9735" +"GO:0009060","aerobic respiration",8,0,0.57,2752,"1.00000","0.9735","0.9735" +"GO:0008033","tRNA processing",24,0,1.72,2753,"1.00000","0.9736","0.9736" +"GO:0051338","regulation of transferase activity",34,2,2.44,1064,"0.71332","0.9737","0.9737" +"GO:0031050","dsRNA processing",3,0,0.22,2754,"1.00000","0.9739","0.9739" +"GO:0070918","production of small RNA involved in gene...",3,0,0.22,2755,"1.00000","0.9739","0.9739" +"GO:0010998","regulation of translational initiation b...",4,0,0.29,2756,"1.00000","0.9744","0.9744" +"GO:0021575","hindbrain morphogenesis",4,0,0.29,2757,"1.00000","0.9744","0.9744" +"GO:0021587","cerebellum morphogenesis",4,0,0.29,2758,"1.00000","0.9744","0.9744" +"GO:0030514","negative regulation of BMP signaling pat...",4,0,0.29,2759,"1.00000","0.9744","0.9744" +"GO:0032092","positive regulation of protein binding",4,0,0.29,2760,"1.00000","0.9744","0.9744" +"GO:0032233","positive regulation of actin filament bu...",4,0,0.29,2761,"1.00000","0.9744","0.9744" +"GO:0042048","olfactory behavior",4,0,0.29,2762,"1.00000","0.9744","0.9744" +"GO:0043555","regulation of translation in response to...",4,0,0.29,2763,"1.00000","0.9744","0.9744" +"GO:0043558","regulation of translational initiation i...",4,0,0.29,2764,"1.00000","0.9744","0.9744" +"GO:0043652","engulfment of apoptotic cell",4,0,0.29,2765,"1.00000","0.9744","0.9744" +"GO:0048708","astrocyte differentiation",4,0,0.29,2766,"1.00000","0.9744","0.9744" +"GO:0051438","regulation of ubiquitin-protein transfer...",4,0,0.29,2767,"1.00000","0.9744","0.9744" +"GO:0070059","intrinsic apoptotic signaling pathway in...",4,0,0.29,2768,"1.00000","0.9744","0.9744" +"GO:1902235","regulation of endoplasmic reticulum stre...",4,0,0.29,2769,"1.00000","0.9744","0.9744" +"GO:2001021","negative regulation of response to DNA d...",4,0,0.29,2770,"1.00000","0.9744","0.9744" +"GO:0033993","response to lipid",49,3,3.51,1022,"0.69495","0.9745","0.9745" +"GO:1902883","negative regulation of response to oxida...",5,0,0.36,2771,"1.00000","0.9746","0.9746" +"GO:0035967","cellular response to topologically incor...",12,1,0.86,909,"0.59148","0.9746","0.9746" +"GO:0009411","response to UV",8,0,0.57,2772,"1.00000","0.9752","0.9752" +"GO:0051403","stress-activated MAPK cascade",8,0,0.57,2773,"1.00000","0.9752","0.9752" +"GO:0022411","cellular component disassembly",25,1,1.79,1250,"0.84591","0.9753","0.9753" +"GO:0051321","meiotic cell cycle",19,0,1.36,2774,"1.00000","0.9753","0.9753" +"GO:0006266","DNA ligation",3,0,0.22,2775,"1.00000","0.9758","0.9758" +"GO:0051103","DNA ligation involved in DNA repair",3,0,0.22,2776,"1.00000","0.9758","0.9758" +"GO:0035556","intracellular signal transduction",177,9,12.69,1301,"0.90293","0.9761","0.9761" +"GO:0016571","histone methylation",15,1,1.08,1004,"0.67363","0.9767","0.9767" +"GO:0032418","lysosome localization",3,0,0.22,2777,"1.00000","0.9767","0.9767" +"GO:0044257","cellular protein catabolic process",43,2,3.08,1229,"0.82641","0.9770","0.9770" +"GO:0051603","proteolysis involved in cellular protein...",43,2,3.08,1230,"0.82641","0.9770","0.9770" +"GO:0006790","sulfur compound metabolic process",16,0,1.15,2778,"1.00000","0.9771","0.9771" +"GO:0042594","response to starvation",16,0,1.15,2779,"1.00000","0.9771","0.9771" +"GO:0031145","anaphase-promoting complex-dependent cat...",3,0,0.22,2780,"1.00000","0.9776","0.9776" +"GO:0038093","Fc receptor signaling pathway",3,0,0.22,2781,"1.00000","0.9776","0.9776" +"GO:0043162","ubiquitin-dependent protein catabolic pr...",3,0,0.22,2782,"1.00000","0.9776","0.9776" +"GO:0061418","regulation of transcription from RNA pol...",3,0,0.22,2783,"1.00000","0.9776","0.9776" +"GO:1903046","meiotic cell cycle process",17,0,1.22,2784,"1.00000","0.9779","0.9779" +"GO:0042157","lipoprotein metabolic process",17,0,1.22,2785,"1.00000","0.9780","0.9780" +"GO:0007528","neuromuscular junction development",7,0,0.5,2786,"1.00000","0.9783","0.9783" +"GO:0007565","female pregnancy",7,0,0.5,2787,"1.00000","0.9783","0.9783" +"GO:0090068","positive regulation of cell cycle proces...",7,0,0.5,2788,"1.00000","0.9783","0.9783" +"GO:0003231","cardiac ventricle development",4,0,0.29,2789,"1.00000","0.9783","0.9783" +"GO:0016458","gene silencing",19,1,1.36,1136,"0.75818","0.9783","0.9783" +"GO:0051650","establishment of vesicle localization",12,1,0.86,910,"0.59148","0.9785","0.9785" +"GO:0006979","response to oxidative stress",30,0,2.15,2790,"1.00000","0.9793","0.9793" +"GO:0022900","electron transport chain",8,0,0.57,2791,"1.00000","0.9793","0.9793" +"GO:0007154","cell communication",464,31,33.28,1058,"0.70663","0.6600","0.9796" +"GO:0071496","cellular response to external stimulus",12,0,0.86,2792,"1.00000","0.9800","0.9800" +"GO:0008355","olfactory learning",3,0,0.22,2793,"1.00000","0.9807","0.9807" +"GO:0010595","positive regulation of endothelial cell ...",3,0,0.22,2794,"1.00000","0.9807","0.9807" +"GO:0031397","negative regulation of protein ubiquitin...",3,0,0.22,2795,"1.00000","0.9807","0.9807" +"GO:0034250","positive regulation of cellular amide me...",3,0,0.22,2796,"1.00000","0.9807","0.9807" +"GO:0043123","positive regulation of I-kappaB kinase/N...",3,0,0.22,2797,"1.00000","0.9807","0.9807" +"GO:0043124","negative regulation of I-kappaB kinase/N...",3,0,0.22,2798,"1.00000","0.9807","0.9807" +"GO:0043536","positive regulation of blood vessel endo...",3,0,0.22,2799,"1.00000","0.9807","0.9807" +"GO:0045727","positive regulation of translation",3,0,0.22,2800,"1.00000","0.9807","0.9807" +"GO:0048010","vascular endothelial growth factor recep...",3,0,0.22,2801,"1.00000","0.9807","0.9807" +"GO:0048538","thymus development",3,0,0.22,2802,"1.00000","0.9807","0.9807" +"GO:0051496","positive regulation of stress fiber asse...",3,0,0.22,2803,"1.00000","0.9807","0.9807" +"GO:0051893","regulation of focal adhesion assembly",3,0,0.22,2804,"1.00000","0.9807","0.9807" +"GO:0070374","positive regulation of ERK1 and ERK2 cas...",3,0,0.22,2805,"1.00000","0.9807","0.9807" +"GO:0090109","regulation of cell-substrate junction as...",3,0,0.22,2806,"1.00000","0.9807","0.9807" +"GO:1903391","regulation of adherens junction organiza...",3,0,0.22,2807,"1.00000","0.9807","0.9807" +"GO:2000242","negative regulation of reproductive proc...",3,0,0.22,2808,"1.00000","0.9807","0.9807" +"GO:2000249","regulation of actin cytoskeleton reorgan...",3,0,0.22,2809,"1.00000","0.9807","0.9807" +"GO:0051173","positive regulation of nitrogen compound...",105,6,7.53,1155,"0.77808","0.9811","0.9811" +"GO:0007254","JNK cascade",6,0,0.43,2810,"1.00000","0.9813","0.9813" +"GO:0032872","regulation of stress-activated MAPK casc...",6,0,0.43,2811,"1.00000","0.9813","0.9813" +"GO:0043949","regulation of cAMP-mediated signaling",6,0,0.43,2812,"1.00000","0.9813","0.9813" +"GO:0045931","positive regulation of mitotic cell cycl...",6,0,0.43,2813,"1.00000","0.9813","0.9813" +"GO:0051124","synaptic growth at neuromuscular junctio...",6,0,0.43,2814,"1.00000","0.9813","0.9813" +"GO:0070302","regulation of stress-activated protein k...",6,0,0.43,2815,"1.00000","0.9813","0.9813" +"GO:0055072","iron ion homeostasis",4,0,0.29,2816,"1.00000","0.9817","0.9817" +"GO:0030100","regulation of endocytosis",18,1,1.29,1109,"0.73934","0.9822","0.9822" +"GO:0072350","tricarboxylic acid metabolic process",11,0,0.79,2817,"1.00000","0.9823","0.9823" +"GO:0033674","positive regulation of kinase activity",16,1,1.15,1051,"0.69719","0.9826","0.9826" +"GO:0010608","posttranscriptional regulation of gene e...",37,2,2.65,1124,"0.75655","0.9827","0.9827" +"GO:0006909","phagocytosis",17,1,1.22,1083,"0.71905","0.9827","0.9827" +"GO:0051248","negative regulation of protein metabolic...",52,3,3.73,1094,"0.73332","0.9828","0.9828" +"GO:0071806","protein transmembrane transport",6,0,0.43,2818,"1.00000","0.9836","0.9836" +"GO:0006457","protein folding",22,1,1.58,1192,"0.80694","0.9839","0.9839" +"GO:0016999","antibiotic metabolic process",10,0,0.72,2819,"1.00000","0.9839","0.9839" +"GO:0031047","gene silencing by RNA",14,0,1,2820,"1.00000","0.9840","0.9840" +"GO:0007165","signal transduction",421,26,30.2,1238,"0.83523","0.8123","0.9844" +"GO:0006301","postreplication repair",5,0,0.36,2821,"1.00000","0.9844","0.9844" +"GO:0046328","regulation of JNK cascade",5,0,0.36,2822,"1.00000","0.9844","0.9844" +"GO:0051187","cofactor catabolic process",4,0,0.29,2823,"1.00000","0.9851","0.9851" +"GO:0007033","vacuole organization",15,1,1.08,1005,"0.67363","0.9852","0.9852" +"GO:0031929","TOR signaling",10,0,0.72,2824,"1.00000","0.9854","0.9854" +"GO:0006101","citrate metabolic process",9,0,0.65,2825,"1.00000","0.9855","0.9855" +"GO:0009893","positive regulation of metabolic process",127,7,9.11,1207,"0.82025","0.9858","0.9858" +"GO:0007568","aging",26,1,1.86,1262,"0.85708","0.9860","0.9860" +"GO:0007005","mitochondrion organization",39,1,2.8,1339,"0.94641","0.9863","0.9863" +"GO:0044743","protein transmembrane import into intrac...",5,0,0.36,2826,"1.00000","0.9863","0.9863" +"GO:0007017","microtubule-based process",64,1,4.59,1402,"0.99200","0.9869","0.9869" +"GO:0009267","cellular response to starvation",9,0,0.65,2827,"1.00000","0.9871","0.9871" +"GO:0051051","negative regulation of transport",13,0,0.93,2828,"1.00000","0.9871","0.9871" +"GO:0040020","regulation of meiotic nuclear division",4,0,0.29,2829,"1.00000","0.9875","0.9875" +"GO:0051445","regulation of meiotic cell cycle",4,0,0.29,2830,"1.00000","0.9875","0.9875" +"GO:0051785","positive regulation of nuclear division",4,0,0.29,2831,"1.00000","0.9875","0.9875" +"GO:0060135","maternal process involved in female preg...",4,0,0.29,2832,"1.00000","0.9875","0.9875" +"GO:0006511","ubiquitin-dependent protein catabolic pr...",37,2,2.65,1125,"0.75655","0.9882","0.9882" +"GO:0019941","modification-dependent protein catabolic...",37,2,2.65,1126,"0.75655","0.9882","0.9882" +"GO:0006464","cellular protein modification process",409,19,29.33,1400,"0.99135","0.9884","0.9884" +"GO:0036211","protein modification process",409,19,29.33,1401,"0.99135","0.9884","0.9884" +"GO:0006298","mismatch repair",4,0,0.29,2833,"1.00000","0.9888","0.9888" +"GO:0006152","purine nucleoside catabolic process",3,0,0.22,2834,"1.00000","0.9888","0.9888" +"GO:0009164","nucleoside catabolic process",3,0,0.22,2835,"1.00000","0.9888","0.9888" +"GO:0034656","nucleobase-containing small molecule cat...",3,0,0.22,2836,"1.00000","0.9888","0.9888" +"GO:0042219","cellular modified amino acid catabolic p...",3,0,0.22,2837,"1.00000","0.9888","0.9888" +"GO:0042454","ribonucleoside catabolic process",3,0,0.22,2838,"1.00000","0.9888","0.9888" +"GO:1901658","glycosyl compound catabolic process",3,0,0.22,2839,"1.00000","0.9888","0.9888" +"GO:0065002","intracellular protein transmembrane tran...",4,0,0.29,2840,"1.00000","0.9890","0.9890" +"GO:0007178","transmembrane receptor protein serine/th...",25,0,1.79,2841,"1.00000","0.9894","0.9894" +"GO:0071241","cellular response to inorganic substance",7,0,0.5,2842,"1.00000","0.9900","0.9900" +"GO:0071248","cellular response to metal ion",7,0,0.5,2843,"1.00000","0.9900","0.9900" +"GO:0071407","cellular response to organic cyclic comp...",26,2,1.86,864,"0.56675","0.9901","0.9901" +"GO:0071705","nitrogen compound transport",126,10,9.04,650,"0.41745","0.8597","0.9903" +"GO:0032006","regulation of TOR signaling",9,0,0.65,2844,"1.00000","0.9904","0.9904" +"GO:0070727","cellular macromolecule localization",132,5,9.47,1364,"0.96748","0.9905","0.9905" +"GO:0043412","macromolecule modification",438,19,31.41,1418,"0.99731","0.9906","0.9906" +"GO:0046330","positive regulation of JNK cascade",3,0,0.22,2845,"1.00000","0.9906","0.9906" +"GO:0006417","regulation of translation",20,1,1.43,1153,"0.77566","0.9907","0.9907" +"GO:0014070","response to organic cyclic compound",42,3,3.01,875,"0.58990","0.9910","0.9910" +"GO:0010604","positive regulation of macromolecule met...",111,6,7.96,1220,"0.82167","0.9910","0.9910" +"GO:0043618","regulation of transcription from RNA pol...",6,0,0.43,2846,"1.00000","0.9914","0.9914" +"GO:0043620","regulation of DNA-templated transcriptio...",6,0,0.43,2847,"1.00000","0.9914","0.9914" +"GO:0055076","transition metal ion homeostasis",6,0,0.43,2848,"1.00000","0.9914","0.9914" +"GO:0007131","reciprocal meiotic recombination",3,0,0.22,2849,"1.00000","0.9916","0.9916" +"GO:0035825","homologous recombination",3,0,0.22,2850,"1.00000","0.9916","0.9916" +"GO:0048545","response to steroid hormone",27,2,1.94,871,"0.58768","0.9918","0.9918" +"GO:0006625","protein targeting to peroxisome",3,0,0.22,2851,"1.00000","0.9918","0.9918" +"GO:0043574","peroxisomal transport",3,0,0.22,2852,"1.00000","0.9918","0.9918" +"GO:0072662","protein localization to peroxisome",3,0,0.22,2853,"1.00000","0.9918","0.9918" +"GO:0072663","establishment of protein localization to...",3,0,0.22,2854,"1.00000","0.9918","0.9918" +"GO:0051347","positive regulation of transferase activ...",19,1,1.36,1137,"0.75818","0.9921","0.9921" +"GO:0045132","meiotic chromosome segregation",3,0,0.22,2855,"1.00000","0.9927","0.9927" +"GO:0009725","response to hormone",56,4,4.02,868,"0.57936","0.9928","0.9928" +"GO:0016226","iron-sulfur cluster assembly",5,0,0.36,2856,"1.00000","0.9928","0.9928" +"GO:0031163","metallo-sulfur cluster assembly",5,0,0.36,2857,"1.00000","0.9928","0.9928" +"GO:0000226","microtubule cytoskeleton organization",34,1,2.44,1311,"0.92180","0.9929","0.9929" +"GO:0071396","cellular response to lipid",33,2,2.37,1054,"0.69755","0.9929","0.9929" +"GO:0050764","regulation of phagocytosis",7,0,0.5,2858,"1.00000","0.9931","0.9931" +"GO:0000413","protein peptidyl-prolyl isomerization",4,0,0.29,2859,"1.00000","0.9932","0.9932" +"GO:0018208","peptidyl-proline modification",4,0,0.29,2860,"1.00000","0.9932","0.9932" +"GO:0051641","cellular localization",221,9,15.85,1378,"0.98375","0.9933","0.9933" +"GO:0006281","DNA repair",60,2,4.3,1327,"0.93745","0.9936","0.9936" +"GO:0048278","vesicle docking",5,0,0.36,2861,"1.00000","0.9937","0.9937" +"GO:0033363","secretory granule organization",3,0,0.22,2862,"1.00000","0.9946","0.9946" +"GO:0032008","positive regulation of TOR signaling",5,0,0.36,2863,"1.00000","0.9947","0.9947" +"GO:0009119","ribonucleoside metabolic process",6,0,0.43,2864,"1.00000","0.9947","0.9947" +"GO:0006468","protein phosphorylation",185,12,13.27,1021,"0.69055","0.9948","0.9948" +"GO:0009719","response to endogenous stimulus",76,4,5.45,1195,"0.80759","0.9948","0.9948" +"GO:0009987","cellular process",1795,105,128.74,1434,"0.99999","0.9885","0.9948" +"GO:0034613","cellular protein localization",131,5,9.4,1358,"0.96582","0.9948","0.9948" +"GO:0006904","vesicle docking involved in exocytosis",4,0,0.29,2865,"1.00000","0.9949","0.9949" +"GO:0072594","establishment of protein localization to...",24,0,1.72,2866,"1.00000","0.9953","0.9953" +"GO:0015985","energy coupled proton transport, down el...",3,0,0.22,2867,"1.00000","0.9954","0.9954" +"GO:0015986","ATP synthesis coupled proton transport",3,0,0.22,2868,"1.00000","0.9954","0.9954" +"GO:0035966","response to topologically incorrect prot...",16,1,1.15,1052,"0.69719","0.9955","0.9955" +"GO:0016192","vesicle-mediated transport",150,8,10.76,1264,"0.85846","0.9958","0.9958" +"GO:0071495","cellular response to endogenous stimulus",60,3,4.3,1206,"0.81721","0.9959","0.9959" +"GO:0045806","negative regulation of endocytosis",4,0,0.29,2869,"1.00000","0.9960","0.9960" +"GO:0009266","response to temperature stimulus",20,1,1.43,1154,"0.77566","0.9961","0.9961" +"GO:0051640","organelle localization",38,2,2.73,1142,"0.76967","0.9962","0.9962" +"GO:0072523","purine-containing compound catabolic pro...",4,0,0.29,2870,"1.00000","0.9965","0.9965" +"GO:0009408","response to heat",16,0,1.15,2871,"1.00000","0.9969","0.9969" +"GO:0080134","regulation of response to stress",52,1,3.73,1376,"0.98002","0.9970","0.9970" +"GO:0008637","apoptotic mitochondrial changes",3,0,0.22,2872,"1.00000","0.9970","0.9970" +"GO:0006950","response to stress",227,12,16.28,1302,"0.90624","0.9973","0.9973" +"GO:0046128","purine ribonucleoside metabolic process",3,0,0.22,2873,"1.00000","0.9973","0.9973" +"GO:1901565","organonitrogen compound catabolic proces...",84,5,6.02,1093,"0.73292","0.9974","0.9974" +"GO:0030163","protein catabolic process",57,2,4.09,1312,"0.92469","0.9977","0.9977" +"GO:0006497","protein lipidation",14,0,1,2874,"1.00000","0.9979","0.9979" +"GO:0042158","lipoprotein biosynthetic process",14,0,1,2875,"1.00000","0.9979","0.9979" +"GO:0033108","mitochondrial respiratory chain complex ...",6,0,0.43,2876,"1.00000","0.9979","0.9979" +"GO:0017038","protein import",10,0,0.72,2877,"1.00000","0.9980","0.9980" +"GO:0080135","regulation of cellular response to stres...",30,0,2.15,2878,"1.00000","0.9983","0.9983" +"GO:0010257","NADH dehydrogenase complex assembly",5,0,0.36,2879,"1.00000","0.9983","0.9983" +"GO:0032981","mitochondrial respiratory chain complex ...",5,0,0.36,2880,"1.00000","0.9983","0.9983" +"GO:0006664","glycolipid metabolic process",10,0,0.72,2881,"1.00000","0.9985","0.9985" +"GO:1903509","liposaccharide metabolic process",10,0,0.72,2882,"1.00000","0.9985","0.9985" +"GO:1901564","organonitrogen compound metabolic proces...",720,48,51.64,1138,"0.76055","0.9987","0.9987" +"GO:0006887","exocytosis",22,1,1.58,1193,"0.80694","0.9987","0.9987" +"GO:0034605","cellular response to heat",6,0,0.43,2883,"1.00000","0.9988","0.9988" +"GO:0046467","membrane lipid biosynthetic process",7,0,0.5,2884,"1.00000","0.9989","0.9989" +"GO:0051716","cellular response to stimulus",559,36,40.09,1179,"0.80357","0.7604","0.9991" +"GO:0040034","regulation of development, heterochronic",6,0,0.43,2885,"1.00000","0.9992","0.9992" +"GO:1900034","regulation of cellular response to heat",4,0,0.29,2886,"1.00000","0.9992","0.9992" +"GO:0033365","protein localization to organelle",44,0,3.16,2887,"1.00000","0.9993","0.9993" +"GO:0007569","cell aging",6,0,0.43,2888,"1.00000","0.9997","0.9997" +"GO:0019538","protein metabolic process",583,30,41.81,1398,"0.99024","0.9997","0.9997" +"GO:0090342","regulation of cell aging",4,0,0.29,2889,"1.00000","0.9998","0.9998" +"GO:0090398","cellular senescence",4,0,0.29,2890,"1.00000","0.9998","0.9998" +"GO:2000772","regulation of cellular senescence",4,0,0.29,2891,"1.00000","0.9998","0.9998" +"GO:0033554","cellular response to stress",135,6,9.68,1321,"0.93293","0.9998","0.9998" +"GO:0070887","cellular response to chemical stimulus",113,4,8.1,1366,"0.96831","0.9998","0.9998" +"GO:1901796","regulation of signal transduction by p53...",9,0,0.65,2892,"1.00000","0.9998","0.9998" +"GO:0006897","endocytosis",41,2,2.94,1181,"0.80540","0.9999","0.9999" +"GO:0071310","cellular response to organic substance",89,4,6.38,1290,"0.89334","0.9999","0.9999" +"GO:0000041","transition metal ion transport",6,0,0.43,2893,"1.00000","1.0000","1.0000" +"GO:0006826","iron ion transport",4,0,0.29,2894,"1.00000","1.0000","1.0000" +"GO:0034629","cellular protein-containing complex loca...",3,0,0.22,2895,"1.00000","1.0000","1.0000" +"GO:0008150","biological_process",2426,174,174,2896,"1.00000","1.0000","1.0000" +"GO:0022898","regulation of transmembrane transporter ...",17,2,1.22,506,"0.34738","0.0100","1.0000" +"GO:0032409","regulation of transporter activity",17,2,1.22,507,"0.34738","0.0100","1.0000" diff --git a/GO_enrichment_output/contrast_postlaying_emerging_downregulated.csv b/GO_enrichment_output/contrast_postlaying_emerging_downregulated.csv index cd304cb..6234abf 100644 --- a/GO_enrichment_output/contrast_postlaying_emerging_downregulated.csv +++ b/GO_enrichment_output/contrast_postlaying_emerging_downregulated.csv @@ -1,6 +1,1163 @@ "GO.ID","Term","Annotated","Significant","Expected","Rank in classicFisher","classicFisher","classicKS","elimKS" "GO:0006874","cellular calcium ion homeostasis",17,13,4.94,2,"6.7e-05","2.7e-05","2.7e-05" "GO:0044272","sulfur compound biosynthetic process",10,8,2.9,13,"0.00123","0.00021","0.00021" +"GO:0046394","carboxylic acid biosynthetic process",34,20,9.87,5,"0.00025","0.00073","0.00073" "GO:0045214","sarcomere organization",13,9,3.78,26,"0.00307","0.00110","0.00110" -"GO:0001974","blood vessel remodeling",8,6,2.32,79,"0.00939","0.00137","0.00137" "GO:0006090","pyruvate metabolic process",13,10,3.78,7,"0.00047","0.00174","0.00174" +"GO:0014902","myotube differentiation",11,7,3.19,83,"0.01777","0.00215","0.00215" +"GO:0051091","positive regulation of DNA-binding trans...",11,8,3.19,30,"0.00335","0.00215","0.00215" +"GO:0055007","cardiac muscle cell differentiation",10,7,2.9,69,"0.00859","0.00239","0.00239" +"GO:0009108","coenzyme biosynthetic process",37,20,10.74,12,"0.00114","0.00377","0.00377" +"GO:0009260","ribonucleotide biosynthetic process",40,20,11.62,44,"0.00388","0.00705","0.00705" +"GO:0046578","regulation of Ras protein signal transdu...",27,10,7.84,240,"0.23532","0.00754","0.00754" +"GO:0046496","nicotinamide nucleotide metabolic proces...",19,12,5.52,16,"0.00199","0.00795","0.00795" +"GO:0006720","isoprenoid metabolic process",19,11,5.52,66,"0.00787","0.00827","0.00827" +"GO:0070588","calcium ion transmembrane transport",15,10,4.36,23,"0.00272","0.00890","0.00890" +"GO:0040013","negative regulation of locomotion",11,6,3.19,139,"0.06739","0.00971","0.00971" +"GO:0046434","organophosphate catabolic process",22,12,6.39,77,"0.01037","0.01000","0.01000" +"GO:0016052","carbohydrate catabolic process",15,10,4.36,24,"0.00272","0.01005","0.01005" +"GO:0032271","regulation of protein polymerization",20,7,5.81,286,"0.35513","0.01054","0.01054" +"GO:0006096","glycolytic process",11,8,3.19,31,"0.00335","0.01117","0.01117" +"GO:0006165","nucleoside diphosphate phosphorylation",11,8,3.19,32,"0.00335","0.01117","0.01117" +"GO:0006757","ATP generation from ADP",11,8,3.19,33,"0.00335","0.01117","0.01117" +"GO:0009132","nucleoside diphosphate metabolic process",11,8,3.19,34,"0.00335","0.01117","0.01117" +"GO:0009135","purine nucleoside diphosphate metabolic ...",11,8,3.19,35,"0.00335","0.01117","0.01117" +"GO:0009179","purine ribonucleoside diphosphate metabo...",11,8,3.19,36,"0.00335","0.01117","0.01117" +"GO:0009185","ribonucleoside diphosphate metabolic pro...",11,8,3.19,37,"0.00335","0.01117","0.01117" +"GO:0042866","pyruvate biosynthetic process",11,8,3.19,38,"0.00335","0.01117","0.01117" +"GO:0046031","ADP metabolic process",11,8,3.19,39,"0.00335","0.01117","0.01117" +"GO:0046939","nucleotide phosphorylation",11,8,3.19,40,"0.00335","0.01117","0.01117" +"GO:0050878","regulation of body fluid levels",16,9,4.65,87,"0.02038","0.01128","0.01128" +"GO:0072522","purine-containing compound biosynthetic ...",41,20,11.91,60,"0.00556","0.01141","0.01141" +"GO:0009152","purine ribonucleotide biosynthetic proce...",39,19,11.33,64,"0.00695","0.01156","0.01156" +"GO:0008299","isoprenoid biosynthetic process",11,7,3.19,84,"0.01777","0.01157","0.01157" +"GO:0019637","organophosphate metabolic process",141,56,40.95,29,"0.00326","0.00115","0.01186" +"GO:0051270","regulation of cellular component movemen...",36,10,10.45,481,"0.62928","0.01224","0.01224" +"GO:0035023","regulation of Rho protein signal transdu...",20,8,5.81,235,"0.19845","0.01237","0.01237" +"GO:0009150","purine ribonucleotide metabolic process",58,25,16.84,80,"0.01453","0.01322","0.01322" +"GO:0030334","regulation of cell migration",30,9,8.71,402,"0.52301","0.01445","0.01445" +"GO:0007596","blood coagulation",11,6,3.19,140,"0.06739","0.01504","0.01504" +"GO:0007599","hemostasis",11,6,3.19,141,"0.06739","0.01504","0.01504" +"GO:0050817","coagulation",11,6,3.19,142,"0.06739","0.01504","0.01504" +"GO:0051258","protein polymerization",23,8,6.68,281,"0.34269","0.01573","0.01573" +"GO:0072525","pyridine-containing compound biosyntheti...",18,11,5.23,51,"0.00447","0.01715","0.01715" +"GO:0007154","cell communication",484,152,140.56,176,"0.10974","0.00347","0.01726" +"GO:0030336","negative regulation of cell migration",10,5,2.9,193,"0.13382","0.01749","0.01749" +"GO:0051271","negative regulation of cellular componen...",10,5,2.9,194,"0.13382","0.01749","0.01749" +"GO:2000146","negative regulation of cell motility",10,5,2.9,195,"0.13382","0.01749","0.01749" +"GO:0007517","muscle organ development",29,14,8.42,91,"0.02149","0.01776","0.01776" +"GO:0007165","signal transduction",445,135,129.23,257,"0.26946","0.00297","0.01793" +"GO:0006164","purine nucleotide biosynthetic process",40,19,11.62,73,"0.00973","0.01828","0.01828" +"GO:0023052","signaling",479,149,139.1,206,"0.14465","0.00347","0.01915" +"GO:0019359","nicotinamide nucleotide biosynthetic pro...",16,10,4.65,58,"0.00538","0.01990","0.01990" +"GO:0019363","pyridine nucleotide biosynthetic process",16,10,4.65,59,"0.00538","0.01990","0.01990" +"GO:0072330","monocarboxylic acid biosynthetic process",23,13,6.68,55,"0.00514","0.02071","0.02071" +"GO:2000145","regulation of cell motility",32,10,9.29,355,"0.45707","0.02154","0.02154" +"GO:0007266","Rho protein signal transduction",22,8,6.39,262,"0.29227","0.02244","0.02244" +"GO:0030168","platelet activation",10,6,2.9,114,"0.04032","0.02583","0.02583" +"GO:0070527","platelet aggregation",10,6,2.9,115,"0.04032","0.02583","0.02583" +"GO:0001775","cell activation",40,12,11.62,393,"0.50667","0.02661","0.02661" +"GO:0016999","antibiotic metabolic process",16,6,4.65,266,"0.30852","0.02819","0.02819" +"GO:0010647","positive regulation of cell communicatio...",63,16,18.3,633,"0.78200","0.02900","0.02900" +"GO:0023056","positive regulation of signaling",63,16,18.3,634,"0.78200","0.02900","0.02900" +"GO:0051606","detection of stimulus",20,10,5.81,113,"0.03818","0.02905","0.02905" +"GO:0006796","phosphate-containing compound metabolic ...",371,130,107.74,41,"0.00369","0.00436","0.03005" +"GO:0071214","cellular response to abiotic stimulus",17,10,4.94,71,"0.00971","0.03025","0.03025" +"GO:0104004","cellular response to environmental stimu...",17,10,4.94,72,"0.00971","0.03025","0.03025" +"GO:0006793","phosphorus metabolic process",373,131,108.32,28,"0.00322","0.00459","0.03135" +"GO:0006081","cellular aldehyde metabolic process",10,5,2.9,196,"0.13382","0.03138","0.03138" +"GO:0051668","localization within membrane",11,6,3.19,143,"0.06739","0.03255","0.03255" +"GO:0034404","nucleobase-containing small molecule bio...",19,10,5.52,99,"0.02558","0.03388","0.03388" +"GO:0043254","regulation of protein complex assembly",27,8,7.84,408,"0.54606","0.03405","0.03405" +"GO:0030097","hemopoiesis",29,7,8.42,635,"0.78210","0.03525","0.03525" +"GO:0007623","circadian rhythm",12,5,3.48,247,"0.25098","0.03527","0.03527" +"GO:0006163","purine nucleotide metabolic process",61,25,17.71,102,"0.02886","0.03626","0.03626" +"GO:0044057","regulation of system process",29,11,8.42,227,"0.19404","0.03798","0.03798" +"GO:0009967","positive regulation of signal transducti...",58,13,16.84,811,"0.90096","0.03809","0.03809" +"GO:0009123","nucleoside monophosphate metabolic proce...",44,18,12.78,132,"0.05979","0.03935","0.03935" +"GO:0009161","ribonucleoside monophosphate metabolic p...",44,18,12.78,133,"0.05979","0.03935","0.03935" +"GO:0051241","negative regulation of multicellular org...",46,10,13.36,805,"0.90017","0.04375","0.04375" +"GO:0048870","cell motility",53,15,15.39,462,"0.59995","0.04391","0.04391" +"GO:0051674","localization of cell",53,15,15.39,463,"0.59995","0.04391","0.04391" +"GO:0008610","lipid biosynthetic process",62,24,18.01,137,"0.06225","0.04392","0.04392" +"GO:0032970","regulation of actin filament-based proce...",34,12,9.87,255,"0.26298","0.04443","0.04443" +"GO:0003012","muscle system process",27,11,7.84,189,"0.12960","0.04467","0.04467" +"GO:0055114","oxidation-reduction process",169,60,49.08,112,"0.03503","0.04555","0.04555" +"GO:0005975","carbohydrate metabolic process",79,28,22.94,187,"0.12611","0.04562","0.04562" +"GO:0010721","negative regulation of cell development",14,5,4.07,300,"0.38435","0.04593","0.04593" +"GO:0072521","purine-containing compound metabolic pro...",64,26,18.59,103,"0.02936","0.04594","0.04594" +"GO:0045596","negative regulation of cell differentiat...",39,12,11.33,360,"0.46571","0.04603","0.04603" +"GO:0030041","actin filament polymerization",15,5,4.36,348,"0.45148","0.04607","0.04607" +"GO:0045445","myoblast differentiation",10,5,2.9,197,"0.13382","0.04651","0.04651" +"GO:0045661","regulation of myoblast differentiation",10,5,2.9,198,"0.13382","0.04651","0.04651" +"GO:0060048","cardiac muscle contraction",10,5,2.9,199,"0.13382","0.04651","0.04651" +"GO:1902904","negative regulation of supramolecular fi...",16,7,4.65,210,"0.15272","0.04842","0.04842" +"GO:0051093","negative regulation of developmental pro...",48,14,13.94,411,"0.54757","0.04872","0.04872" +"GO:0009612","response to mechanical stimulus",22,11,6.39,107,"0.03013","0.04945","0.04945" +"GO:0060538","skeletal muscle organ development",15,7,4.36,178,"0.11301","0.05013","0.05013" +"GO:0009124","nucleoside monophosphate biosynthetic pr...",30,14,8.71,104,"0.02982","0.05036","0.05036" +"GO:0009156","ribonucleoside monophosphate biosyntheti...",30,14,8.71,105,"0.02982","0.05036","0.05036" +"GO:0006937","regulation of muscle contraction",10,3,2.9,446,"0.59158","0.05121","0.05121" +"GO:0071804","cellular potassium ion transport",10,5,2.9,200,"0.13382","0.05121","0.05121" +"GO:0071805","potassium ion transmembrane transport",10,5,2.9,201,"0.13382","0.05121","0.05121" +"GO:0090257","regulation of muscle system process",10,3,2.9,447,"0.59158","0.05121","0.05121" +"GO:0006101","citrate metabolic process",14,5,4.07,301,"0.38435","0.05209","0.05209" +"GO:0072350","tricarboxylic acid metabolic process",14,5,4.07,302,"0.38435","0.05209","0.05209" +"GO:0010959","regulation of metal ion transport",13,8,3.78,81,"0.01462","0.05540","0.05540" +"GO:1901605","alpha-amino acid metabolic process",21,11,6.1,86,"0.02025","0.05560","0.05560" +"GO:0009166","nucleotide catabolic process",16,9,4.65,88,"0.02038","0.05583","0.05583" +"GO:1901292","nucleoside phosphate catabolic process",16,9,4.65,89,"0.02038","0.05583","0.05583" +"GO:0006936","muscle contraction",23,9,6.68,232,"0.19773","0.05592","0.05592" +"GO:0007164","establishment of tissue polarity",14,7,4.07,153,"0.07948","0.05649","0.05649" +"GO:0008016","regulation of heart contraction",14,7,4.07,154,"0.07948","0.05649","0.05649" +"GO:0048771","tissue remodeling",14,6,4.07,228,"0.19526","0.05649","0.05649" +"GO:0017144","drug metabolic process",104,40,30.2,92,"0.02185","0.05651","0.05651" +"GO:0030833","regulation of actin filament polymerizat...",14,4,4.07,468,"0.61547","0.06166","0.06166" +"GO:0000226","microtubule cytoskeleton organization",28,6,8.13,748,"0.86661","0.06194","0.06194" +"GO:0050768","negative regulation of neurogenesis",13,5,3.78,270,"0.31682","0.06297","0.06297" +"GO:0009581","detection of external stimulus",17,9,4.94,109,"0.03239","0.06388","0.06388" +"GO:0009582","detection of abiotic stimulus",17,9,4.94,110,"0.03239","0.06388","0.06388" +"GO:0048534","hematopoietic or lymphoid organ developm...",30,7,8.71,652,"0.81316","0.06666","0.06666" +"GO:0009199","ribonucleoside triphosphate metabolic pr...",37,16,10.74,121,"0.04475","0.06756","0.06756" +"GO:0009205","purine ribonucleoside triphosphate metab...",37,16,10.74,122,"0.04475","0.06756","0.06756" +"GO:0046034","ATP metabolic process",37,16,10.74,123,"0.04475","0.06756","0.06756" +"GO:0051239","regulation of multicellular organismal p...",153,43,44.43,487,"0.63528","0.06766","0.06766" +"GO:0032879","regulation of localization",129,44,37.46,184,"0.11510","0.06834","0.06834" +"GO:0048584","positive regulation of response to stimu...",85,19,24.68,895,"0.93689","0.06990","0.06990" +"GO:1902903","regulation of supramolecular fiber organ...",28,9,8.13,334,"0.42770","0.06996","0.06996" +"GO:0006099","tricarboxylic acid cycle",13,4,3.78,414,"0.54944","0.07063","0.07063" +"GO:0006941","striated muscle contraction",11,5,3.19,221,"0.18918","0.07160","0.07160" +"GO:0034109","homotypic cell-cell adhesion",11,6,3.19,144,"0.06739","0.07160","0.07160" +"GO:0040012","regulation of locomotion",39,11,11.33,465,"0.60669","0.00820","0.07298" +"GO:0007286","spermatid development",14,7,4.07,155,"0.07948","0.07370","0.07370" +"GO:0031333","negative regulation of protein complex a...",11,5,3.19,222,"0.18918","0.07692","0.07692" +"GO:0006754","ATP biosynthetic process",24,12,6.97,94,"0.02384","0.07772","0.07772" +"GO:0009142","nucleoside triphosphate biosynthetic pro...",24,12,6.97,95,"0.02384","0.07772","0.07772" +"GO:0009145","purine nucleoside triphosphate biosynthe...",24,12,6.97,96,"0.02384","0.07772","0.07772" +"GO:0009201","ribonucleoside triphosphate biosynthetic...",24,12,6.97,97,"0.02384","0.07772","0.07772" +"GO:0009206","purine ribonucleoside triphosphate biosy...",24,12,6.97,98,"0.02384","0.07772","0.07772" +"GO:0003015","heart process",15,7,4.36,179,"0.11301","0.07778","0.07778" +"GO:0060047","heart contraction",15,7,4.36,180,"0.11301","0.07778","0.07778" +"GO:1903522","regulation of blood circulation",15,7,4.36,181,"0.11301","0.07778","0.07778" +"GO:0001738","morphogenesis of a polarized epithelium",14,7,4.07,156,"0.07948","0.07783","0.07783" +"GO:1902532","negative regulation of intracellular sig...",27,6,7.84,712,"0.84106","0.07800","0.07800" +"GO:0050890","cognition",21,7,6.1,329,"0.41076","0.07987","0.07987" +"GO:0016477","cell migration",51,14,14.81,494,"0.65191","0.08177","0.08177" +"GO:0032273","positive regulation of protein polymeriz...",13,3,3.78,619,"0.77657","0.08238","0.08238" +"GO:0031400","negative regulation of protein modificat...",33,11,9.58,283,"0.35331","0.08349","0.08349" +"GO:0045665","negative regulation of neuron differenti...",11,4,3.19,316,"0.40224","0.08409","0.08409" +"GO:0009126","purine nucleoside monophosphate metaboli...",42,16,12.2,191,"0.12962","0.08599","0.08599" +"GO:0009167","purine ribonucleoside monophosphate meta...",42,16,12.2,192,"0.12962","0.08599","0.08599" +"GO:0019318","hexose metabolic process",14,7,4.07,157,"0.07948","0.08696","0.08696" +"GO:0098662","inorganic cation transmembrane transport",53,22,15.39,111,"0.03365","0.01793","0.08718" +"GO:0001817","regulation of cytokine production",23,6,6.68,555,"0.69831","0.08743","0.08743" +"GO:0035556","intracellular signal transduction",183,55,53.14,325,"0.40542","0.01304","0.08975" +"GO:0009611","response to wounding",31,12,9,215,"0.15961","0.09123","0.09123" +"GO:0031334","positive regulation of protein complex a...",17,3,4.94,835,"0.91068","0.09192","0.09192" +"GO:0009060","aerobic respiration",15,4,4.36,525,"0.67511","0.09236","0.09236" +"GO:0009141","nucleoside triphosphate metabolic proces...",38,16,11.04,129,"0.05719","0.09545","0.09545" +"GO:0009144","purine nucleoside triphosphate metabolic...",38,16,11.04,130,"0.05719","0.09545","0.09545" +"GO:0031589","cell-substrate adhesion",14,5,4.07,303,"0.38435","0.09658","0.09658" +"GO:0007519","skeletal muscle tissue development",14,6,4.07,229,"0.19526","0.09759","0.09759" +"GO:0006813","potassium ion transport",19,9,5.52,149,"0.06919","0.09795","0.09795" +"GO:0007611","learning or memory",20,7,5.81,287,"0.35513","0.09895","0.09895" +"GO:0033673","negative regulation of kinase activity",17,7,4.94,234,"0.19788","0.10219","0.10219" +"GO:0051129","negative regulation of cellular componen...",39,12,11.33,361,"0.46571","0.10330","0.10330" +"GO:0043086","negative regulation of catalytic activit...",32,11,9.29,268,"0.31092","0.10363","0.10363" +"GO:0010638","positive regulation of organelle organiz...",39,7,11.33,950,"0.96249","0.10387","0.10387" +"GO:0032507","maintenance of protein location in cell",10,6,2.9,116,"0.04032","0.10744","0.10744" +"GO:0051651","maintenance of location in cell",10,6,2.9,117,"0.04032","0.10744","0.10744" +"GO:0006694","steroid biosynthetic process",17,8,4.94,160,"0.08822","0.10902","0.10902" +"GO:0008202","steroid metabolic process",20,9,5.81,164,"0.09457","0.11023","0.11023" +"GO:0051094","positive regulation of developmental pro...",74,22,21.49,389,"0.49212","0.11117","0.11117" +"GO:0002521","leukocyte differentiation",10,1,2.9,958,"0.96789","0.11117","0.11117" +"GO:0050896","response to stimulus",668,207,193.99,174,"0.10399","0.05599","0.11182" +"GO:0003013","circulatory system process",18,8,5.23,185,"0.11997","0.11252","0.11252" +"GO:0008015","blood circulation",18,8,5.23,186,"0.11997","0.11252","0.11252" +"GO:0001933","negative regulation of protein phosphory...",26,10,7.55,231,"0.19617","0.11266","0.11266" +"GO:0007163","establishment or maintenance of cell pol...",15,4,4.36,526,"0.67511","0.11287","0.11287" +"GO:0007010","cytoskeleton organization",105,35,30.49,220,"0.18817","0.01320","0.11537" +"GO:0002520","immune system development",31,7,9,708,"0.84067","0.11568","0.11568" +"GO:0065009","regulation of molecular function",118,40,34.27,202,"0.13855","0.02944","0.11574" +"GO:0022603","regulation of anatomical structure morph...",51,16,14.81,326,"0.40723","0.11729","0.11729" +"GO:0048518","positive regulation of biological proces...",285,77,82.77,645,"0.80799","0.04781","0.11740" +"GO:0048522","positive regulation of cellular process",246,65,71.44,732,"0.84869","0.11761","0.11761" +"GO:0007613","memory",10,3,2.9,448,"0.59158","0.11893","0.11893" +"GO:0030308","negative regulation of cell growth",10,3,2.9,449,"0.59158","0.11893","0.11893" +"GO:0001558","regulation of cell growth",17,4,4.94,608,"0.77416","0.11938","0.11938" +"GO:0032269","negative regulation of cellular protein ...",45,14,13.07,338,"0.43450","0.11939","0.11939" +"GO:0042133","neurotransmitter metabolic process",13,6,3.78,207,"0.14564","0.11949","0.11949" +"GO:0098660","inorganic ion transmembrane transport",55,23,15.97,100,"0.02758","0.02208","0.12041" +"GO:0009127","purine nucleoside monophosphate biosynth...",28,12,8.13,158,"0.08230","0.12063","0.12063" +"GO:0009168","purine ribonucleoside monophosphate bios...",28,12,8.13,159,"0.08230","0.12063","0.12063" +"GO:0034765","regulation of ion transmembrane transpor...",18,9,5.23,124,"0.04853","0.12087","0.12087" +"GO:0030182","neuron differentiation",102,33,29.62,253,"0.25780","0.12087","0.12087" +"GO:0006644","phospholipid metabolic process",54,17,15.68,313,"0.39479","0.12229","0.12229" +"GO:0007610","behavior",60,18,17.42,386,"0.48363","0.12381","0.12381" +"GO:0006650","glycerophospholipid metabolic process",39,14,11.33,237,"0.21687","0.12443","0.12443" +"GO:0048515","spermatid differentiation",15,7,4.36,182,"0.11301","0.12705","0.12705" +"GO:0030335","positive regulation of cell migration",13,3,3.78,620,"0.77657","0.12956","0.12956" +"GO:0048666","neuron development",88,30,25.56,217,"0.17207","0.12991","0.12991" +"GO:0001745","compound eye morphogenesis",10,3,2.9,450,"0.59158","0.13349","0.13349" +"GO:0006469","negative regulation of protein kinase ac...",16,7,4.65,211,"0.15272","0.13475","0.13475" +"GO:1902905","positive regulation of supramolecular fi...",17,4,4.94,609,"0.77416","0.13492","0.13492" +"GO:0045664","regulation of neuron differentiation",41,11,11.91,544,"0.68051","0.13499","0.13499" +"GO:0030162","regulation of proteolysis",20,8,5.81,236,"0.19845","0.13676","0.13676" +"GO:0001736","establishment of planar polarity",13,6,3.78,208,"0.14564","0.13757","0.13757" +"GO:2000027","regulation of animal organ morphogenesis",13,5,3.78,271,"0.31682","0.13757","0.13757" +"GO:0031647","regulation of protein stability",13,2,3.78,864,"0.92746","0.13835","0.13835" +"GO:0098609","cell-cell adhesion",62,24,18.01,138,"0.06225","0.14018","0.14018" +"GO:0042060","wound healing",28,11,8.13,216,"0.16020","0.14065","0.14065" +"GO:0007420","brain development",51,16,14.81,327,"0.40723","0.14296","0.14296" +"GO:0055085","transmembrane transport",278,96,80.73,85,"0.01989","0.05052","0.14504" +"GO:0042326","negative regulation of phosphorylation",28,10,8.13,260,"0.27706","0.14512","0.14512" +"GO:0008064","regulation of actin polymerization or de...",15,4,4.36,527,"0.67511","0.14567","0.14567" +"GO:0030832","regulation of actin filament length",15,4,4.36,528,"0.67511","0.14567","0.14567" +"GO:0045321","leukocyte activation",30,6,8.71,830,"0.90753","0.14655","0.14655" +"GO:0051494","negative regulation of cytoskeleton orga...",16,6,4.65,267,"0.30852","0.14673","0.14673" +"GO:0033865","nucleoside bisphosphate metabolic proces...",11,6,3.19,145,"0.06739","0.14746","0.14746" +"GO:0033875","ribonucleoside bisphosphate metabolic pr...",11,6,3.19,146,"0.06739","0.14746","0.14746" +"GO:0034032","purine nucleoside bisphosphate metabolic...",11,6,3.19,147,"0.06739","0.14746","0.14746" +"GO:0000165","MAPK cascade",25,8,7.26,342,"0.44576","0.14768","0.14768" +"GO:0023014","signal transduction by protein phosphory...",25,8,7.26,343,"0.44576","0.14768","0.14768" +"GO:0043408","regulation of MAPK cascade",22,6,6.39,492,"0.65180","0.14835","0.14835" +"GO:0051961","negative regulation of nervous system de...",14,5,4.07,304,"0.38435","0.15053","0.15053" +"GO:0002694","regulation of leukocyte activation",17,3,4.94,836,"0.91068","0.15180","0.15180" +"GO:0050865","regulation of cell activation",17,3,4.94,837,"0.91068","0.15180","0.15180" +"GO:0044092","negative regulation of molecular functio...",37,11,10.74,403,"0.52563","0.15234","0.15234" +"GO:0006508","proteolysis",124,36,36.01,406,"0.53626","0.15238","0.15238" +"GO:0040017","positive regulation of locomotion",19,3,5.52,914,"0.94546","0.15611","0.15611" +"GO:0046649","lymphocyte activation",19,3,5.52,915,"0.94546","0.15611","0.15611" +"GO:0010639","negative regulation of organelle organiz...",22,7,6.39,363,"0.46606","0.15667","0.15667" +"GO:0045666","positive regulation of neuron differenti...",15,6,4.36,243,"0.25010","0.15804","0.15804" +"GO:0055002","striated muscle cell development",24,14,6.97,19,"0.00248","0.00048","0.15953" +"GO:0045185","maintenance of protein location",11,6,3.19,148,"0.06739","0.16027","0.16027" +"GO:0048738","cardiac muscle tissue development",16,9,4.65,90,"0.02038","0.00097","0.16225" +"GO:1902531","regulation of intracellular signal trans...",90,23,26.14,644,"0.80428","0.01214","0.16349" +"GO:0051493","regulation of cytoskeleton organization",35,8,10.16,713,"0.84138","0.16406","0.16406" +"GO:0045333","cellular respiration",25,6,7.26,627,"0.77822","0.16903","0.16903" +"GO:0030029","actin filament-based process",73,29,21.2,108,"0.03037","0.01615","0.16908" +"GO:0051240","positive regulation of multicellular org...",75,20,21.78,562,"0.71835","0.16991","0.16991" +"GO:0051495","positive regulation of cytoskeleton orga...",20,4,5.81,768,"0.87623","0.17025","0.17025" +"GO:0110053","regulation of actin filament organizatio...",20,6,5.81,409,"0.54675","0.17025","0.17025" +"GO:0001816","cytokine production",24,6,6.97,592,"0.74046","0.17050","0.17050" +"GO:0016567","protein ubiquitination",41,8,11.91,901,"0.94187","0.17187","0.17187" +"GO:0045597","positive regulation of cell differentiat...",50,15,14.52,390,"0.49404","0.17455","0.17455" +"GO:0008154","actin polymerization or depolymerization",18,5,5.23,485,"0.63501","0.17480","0.17480" +"GO:2000026","regulation of multicellular organismal d...",104,29,30.2,491,"0.64194","0.17802","0.17802" +"GO:0050793","regulation of developmental process",135,37,39.2,554,"0.69819","0.17942","0.17942" +"GO:0034220","ion transmembrane transport",105,37,30.49,169,"0.09468","0.09558","0.18398" +"GO:0006091","generation of precursor metabolites and ...",44,17,12.78,175,"0.10784","0.18531","0.18531" +"GO:0052547","regulation of peptidase activity",11,5,3.19,223,"0.18918","0.18545","0.18545" +"GO:0052548","regulation of endopeptidase activity",11,5,3.19,224,"0.18918","0.18545","0.18545" +"GO:2000116","regulation of cysteine-type endopeptidas...",11,5,3.19,225,"0.18918","0.18545","0.18545" +"GO:0032787","monocarboxylic acid metabolic process",44,22,12.78,20,"0.00249","0.01126","0.18646" +"GO:0051248","negative regulation of protein metabolic...",49,15,14.23,357,"0.45735","0.18657","0.18657" +"GO:0034762","regulation of transmembrane transport",24,11,6.97,131,"0.05925","0.18751","0.18751" +"GO:0000209","protein polyubiquitination",16,4,4.65,577,"0.72799","0.19210","0.19210" +"GO:0051348","negative regulation of transferase activ...",18,7,5.23,242,"0.24746","0.19487","0.19487" +"GO:0019693","ribose phosphate metabolic process",62,28,18.01,52,"0.00459","0.00542","0.19762" +"GO:0051716","cellular response to stimulus",540,164,156.82,239,"0.23459","0.06526","0.19806" +"GO:0002682","regulation of immune system process",48,10,13.94,862,"0.92710","0.19828","0.19828" +"GO:0051188","cofactor biosynthetic process",41,22,11.91,8,"0.00074","0.00274","0.19833" +"GO:0007160","cell-matrix adhesion",11,4,3.19,317,"0.40224","0.20014","0.20014" +"GO:0051249","regulation of lymphocyte activation",15,3,4.36,734,"0.85685","0.20049","0.20049" +"GO:0051272","positive regulation of cellular componen...",15,3,4.36,735,"0.85685","0.20049","0.20049" +"GO:0051705","multi-organism behavior",12,6,3.48,172,"0.10267","0.20513","0.20513" +"GO:0001819","positive regulation of cytokine producti...",11,2,3.19,755,"0.87423","0.20906","0.20906" +"GO:0002376","immune system process",88,24,25.56,550,"0.68432","0.21004","0.21004" +"GO:0051346","negative regulation of hydrolase activit...",14,4,4.07,469,"0.61547","0.21115","0.21115" +"GO:0007155","cell adhesion",101,37,29.33,127,"0.05624","0.21326","0.21326" +"GO:0022610","biological adhesion",101,37,29.33,128,"0.05624","0.21326","0.21326" +"GO:0001894","tissue homeostasis",16,7,4.65,212,"0.15272","0.21348","0.21348" +"GO:1901615","organic hydroxy compound metabolic proce...",36,13,10.45,238,"0.22148","0.21537","0.21537" +"GO:0006520","cellular amino acid metabolic process",40,16,11.62,163,"0.08875","0.21555","0.21555" +"GO:0090407","organophosphate biosynthetic process",81,33,23.52,79,"0.01446","0.03342","0.21823" +"GO:0043542","endothelial cell migration",10,3,2.9,451,"0.59158","0.21881","0.21881" +"GO:0050821","protein stabilization",10,1,2.9,959,"0.96789","0.21881","0.21881" +"GO:0055001","muscle cell development",25,14,7.26,46,"0.00415","0.00086","0.22064" +"GO:0030099","myeloid cell differentiation",15,1,4.36,1105,"0.99428","0.22229","0.22229" +"GO:0006066","alcohol metabolic process",21,8,6.1,241,"0.24387","0.22289","0.22289" +"GO:0009116","nucleoside metabolic process",12,5,3.48,248,"0.25098","0.22408","0.22408" +"GO:0016049","cell growth",24,7,6.97,430,"0.57185","0.22421","0.22421" +"GO:0006836","neurotransmitter transport",26,7,7.55,518,"0.66666","0.22480","0.22480" +"GO:0031032","actomyosin structure organization",27,14,7.84,74,"0.01017","0.00241","0.22687" +"GO:0042127","regulation of cell proliferation",51,14,14.81,495,"0.65191","0.22771","0.22771" +"GO:0070507","regulation of microtubule cytoskeleton o...",11,3,3.19,499,"0.66258","0.23004","0.23004" +"GO:0006040","amino sugar metabolic process",25,8,7.26,344,"0.44576","0.23049","0.23049" +"GO:1901071","glucosamine-containing compound metaboli...",25,8,7.26,345,"0.44576","0.23049","0.23049" +"GO:0006417","regulation of translation",16,3,4.65,789,"0.88659","0.23129","0.23129" +"GO:0034248","regulation of cellular amide metabolic p...",16,3,4.65,790,"0.88659","0.23129","0.23129" +"GO:0060041","retina development in camera-type eye",21,7,6.1,330,"0.41076","0.23211","0.23211" +"GO:0005996","monosaccharide metabolic process",17,8,4.94,161,"0.08822","0.23306","0.23306" +"GO:0022604","regulation of cell morphogenesis",24,5,6.97,752,"0.87010","0.23510","0.23510" +"GO:1904062","regulation of cation transmembrane trans...",17,8,4.94,162,"0.08822","0.23579","0.23579" +"GO:0006979","response to oxidative stress",38,13,11.04,264,"0.29300","0.23958","0.23958" +"GO:0009628","response to abiotic stimulus",76,24,22.07,282,"0.35146","0.23991","0.23991" +"GO:1901617","organic hydroxy compound biosynthetic pr...",23,9,6.68,233,"0.19773","0.24067","0.24067" +"GO:0016054","organic acid catabolic process",20,9,5.81,165,"0.09457","0.24280","0.24280" +"GO:0046395","carboxylic acid catabolic process",20,9,5.81,166,"0.09457","0.24280","0.24280" +"GO:0055074","calcium ion homeostasis",18,14,5.23,1,"2.4e-05","1.2e-05","0.24389" +"GO:0051146","striated muscle cell differentiation",28,15,8.13,57,"0.00531","0.00099","0.24623" +"GO:0046486","glycerolipid metabolic process",44,15,12.78,259,"0.27697","0.24770","0.24770" +"GO:0099173","postsynapse organization",14,6,4.07,230,"0.19526","0.24963","0.24963" +"GO:0048585","negative regulation of response to stimu...",71,16,20.62,845,"0.91571","0.25153","0.25153" +"GO:0007169","transmembrane receptor protein tyrosine ...",23,5,6.68,718,"0.84309","0.25337","0.25337" +"GO:0007498","mesoderm development",11,2,3.19,756,"0.87423","0.25431","0.25431" +"GO:0042110","T cell activation",11,1,3.19,1004,"0.97725","0.25431","0.25431" +"GO:0051235","maintenance of location",20,9,5.81,167,"0.09457","0.25593","0.25593" +"GO:0009063","cellular amino acid catabolic process",12,6,3.48,173,"0.10267","0.25703","0.25703" +"GO:0006631","fatty acid metabolic process",24,8,6.97,312,"0.39417","0.25746","0.25746" +"GO:0002253","activation of immune response",11,1,3.19,1005,"0.97725","0.25889","0.25889" +"GO:0016125","sterol metabolic process",12,5,3.48,249,"0.25098","0.25902","0.25902" +"GO:0046165","alcohol biosynthetic process",12,5,3.48,250,"0.25098","0.25902","0.25902" +"GO:0043269","regulation of ion transport",26,11,7.55,171,"0.10249","0.25962","0.25962" +"GO:0032446","protein modification by small protein co...",42,8,12.2,927,"0.95153","0.25990","0.25990" +"GO:0030036","actin cytoskeleton organization",70,28,20.33,106,"0.03010","0.02807","0.25993" +"GO:0002684","positive regulation of immune system pro...",25,6,7.26,628,"0.77822","0.26192","0.26192" +"GO:0030239","myofibril assembly",19,12,5.52,17,"0.00199","0.00050","0.26209" +"GO:0007264","small GTPase mediated signal transductio...",55,17,15.97,335,"0.42935","0.00688","0.26645" +"GO:0006810","transport",580,181,168.43,170,"0.10206","0.14044","0.26660" +"GO:0070887","cellular response to chemical stimulus",115,25,33.4,995,"0.97220","0.26687","0.26687" +"GO:2000147","positive regulation of cell motility",14,3,4.07,663,"0.82050","0.26732","0.26732" +"GO:2000241","regulation of reproductive process",14,1,4.07,1086,"0.99192","0.26732","0.26732" +"GO:0006811","ion transport",208,71,60.4,126,"0.05456","0.07965","0.26849" +"GO:0090066","regulation of anatomical structure size",29,7,8.42,636,"0.78210","0.26863","0.26863" +"GO:0010498","proteasomal protein catabolic process",19,4,5.52,721,"0.84775","0.26870","0.26870" +"GO:0043087","regulation of GTPase activity",22,4,6.39,848,"0.91962","0.26925","0.26925" +"GO:0060322","head development",53,16,15.39,382,"0.47856","0.26954","0.26954" +"GO:0044283","small molecule biosynthetic process",60,29,17.42,10,"0.00108","0.00101","0.27028" +"GO:0051179","localization",663,205,192.54,183,"0.11372","0.15180","0.27102" +"GO:0007417","central nervous system development",67,18,19.46,558,"0.69877","0.27144","0.27144" +"GO:0048583","regulation of response to stimulus",195,55,56.63,484,"0.63389","0.07417","0.27164" +"GO:0051246","regulation of protein metabolic process",105,27,30.49,646,"0.80920","0.27513","0.27513" +"GO:0032268","regulation of cellular protein metabolic...",99,26,28.75,603,"0.76678","0.27589","0.27589" +"GO:0032956","regulation of actin cytoskeleton organiz...",25,6,7.26,629,"0.77822","0.27650","0.27650" +"GO:0048468","cell development",154,51,44.72,204,"0.14459","0.03763","0.27667" +"GO:0048511","rhythmic process",15,5,4.36,349,"0.45148","0.27877","0.27877" +"GO:0006816","calcium ion transport",22,14,6.39,9,"0.00074","0.00279","0.27909" +"GO:0009725","response to hormone",53,11,15.39,894,"0.93689","0.27932","0.27932" +"GO:0061564","axon development",37,13,10.74,252,"0.25634","0.27954","0.27954" +"GO:1903829","positive regulation of cellular protein ...",14,3,4.07,664,"0.82050","0.28144","0.28144" +"GO:0048749","compound eye development",12,3,3.48,567,"0.72415","0.28201","0.28201" +"GO:0007292","female gamete generation",22,3,6.39,996,"0.97482","0.28350","0.28350" +"GO:0050794","regulation of cellular process",831,238,241.33,490,"0.64141","0.10359","0.28468" +"GO:0010608","posttranscriptional regulation of gene e...",23,3,6.68,1025,"0.98068","0.28555","0.28555" +"GO:0098655","cation transmembrane transport",65,25,18.88,136,"0.06216","0.09182","0.28620" +"GO:0045861","negative regulation of proteolysis",10,4,2.9,274,"0.32476","0.28834","0.28834" +"GO:0019953","sexual reproduction",55,15,15.97,517,"0.66479","0.29003","0.29003" +"GO:0006820","anion transport",45,13,13.07,426,"0.56601","0.29038","0.29038" +"GO:0015672","monovalent inorganic cation transport",62,20,18.01,278,"0.33038","0.29525","0.29525" +"GO:0007015","actin filament organization",35,10,10.16,445,"0.58869","0.29584","0.29584" +"GO:0051049","regulation of transport",78,28,22.65,177,"0.11068","0.29610","0.29610" +"GO:0022898","regulation of transmembrane transporter ...",15,6,4.36,244,"0.25010","0.30145","0.30145" +"GO:0032409","regulation of transporter activity",15,6,4.36,245,"0.25010","0.30145","0.30145" +"GO:0032412","regulation of ion transmembrane transpor...",15,6,4.36,246,"0.25010","0.30145","0.30145" +"GO:0016358","dendrite development",18,6,5.23,336,"0.42959","0.30259","0.30259" +"GO:0008285","negative regulation of cell proliferatio...",20,4,5.81,769,"0.87623","0.30286","0.30286" +"GO:0040008","regulation of growth",34,7,9.87,816,"0.90421","0.30343","0.30343" +"GO:0050767","regulation of neurogenesis",48,11,13.94,750,"0.86675","0.30364","0.30364" +"GO:0010646","regulation of cell communication",177,48,51.4,593,"0.74733","0.04595","0.30396" +"GO:0003008","system process",92,27,26.72,396,"0.51424","0.30602","0.30602" +"GO:0031175","neuron projection development",69,21,20.04,340,"0.44363","0.30799","0.30799" +"GO:0006812","cation transport",127,47,36.88,101,"0.02845","0.07932","0.30970" +"GO:0033043","regulation of organelle organization",74,15,21.49,984,"0.96914","0.31001","0.31001" +"GO:0072507","divalent inorganic cation homeostasis",19,14,5.52,4,"6.8e-05","3.2e-05","0.31124" +"GO:0010563","negative regulation of phosphorus metabo...",33,11,9.58,284,"0.35331","0.31155","0.31155" +"GO:0045936","negative regulation of phosphate metabol...",33,11,9.58,285,"0.35331","0.31155","0.31155" +"GO:0045595","regulation of cell differentiation",90,24,26.14,586,"0.73056","0.31345","0.31345" +"GO:0022008","neurogenesis",117,36,33.98,293,"0.37079","0.31497","0.31497" +"GO:0044282","small molecule catabolic process",24,10,6.97,188,"0.12770","0.31669","0.31669" +"GO:0048699","generation of neurons",115,35,33.4,324,"0.40328","0.31763","0.31763" +"GO:0000956","nuclear-transcribed mRNA catabolic proce...",10,0,2.9,1145,"1.00000","0.32004","0.32004" +"GO:0002757","immune response-activating signal transd...",10,0,2.9,1146,"1.00000","0.32004","0.32004" +"GO:0002764","immune response-regulating signaling pat...",10,0,2.9,1147,"1.00000","0.32004","0.32004" +"GO:1902533","positive regulation of intracellular sig...",30,8,8.71,541,"0.68007","0.32094","0.32094" +"GO:0023051","regulation of signaling",182,49,52.85,605,"0.76899","0.05179","0.32266" +"GO:0043244","regulation of protein complex disassembl...",11,3,3.19,500,"0.66258","0.32295","0.32295" +"GO:0010821","regulation of mitochondrion organization",10,2,2.9,687,"0.83575","0.32331","0.32331" +"GO:0051050","positive regulation of transport",44,13,12.78,404,"0.52802","0.32353","0.32353" +"GO:1903047","mitotic cell cycle process",35,9,10.16,585,"0.72820","0.32727","0.32727" +"GO:0010605","negative regulation of macromolecule met...",108,24,31.36,947,"0.95890","0.32767","0.32767" +"GO:0016311","dephosphorylation",50,17,14.52,254,"0.26243","0.32780","0.32780" +"GO:0003333","amino acid transmembrane transport",12,4,3.48,371,"0.47786","0.32862","0.32862" +"GO:0098742","cell-cell adhesion via plasma-membrane a...",22,8,6.39,263,"0.29227","0.33168","0.33168" +"GO:0015893","drug transport",12,4,3.48,372,"0.47786","0.33299","0.33299" +"GO:0010927","cellular component assembly involved in ...",23,13,6.68,56,"0.00514","0.00127","0.33412" +"GO:0001666","response to hypoxia",11,3,3.19,501,"0.66258","0.33445","0.33445" +"GO:0036293","response to decreased oxygen levels",11,3,3.19,502,"0.66258","0.33445","0.33445" +"GO:0070482","response to oxygen levels",11,3,3.19,503,"0.66258","0.33445","0.33445" +"GO:1901657","glycosyl compound metabolic process",13,5,3.78,272,"0.31682","0.33640","0.33640" +"GO:0007612","learning",14,5,4.07,305,"0.38435","0.33668","0.33668" +"GO:0050790","regulation of catalytic activity",83,21,24.1,648,"0.81158","0.33798","0.33798" +"GO:0007186","G protein-coupled receptor signaling pat...",85,27,24.68,277,"0.32481","0.34038","0.34038" +"GO:0070647","protein modification by small protein co...",55,10,15.97,1018,"0.97830","0.34041","0.34041" +"GO:0051261","protein depolymerization",10,2,2.9,688,"0.83575","0.34063","0.34063" +"GO:1902600","proton transmembrane transport",25,7,7.26,476,"0.62089","0.34088","0.34088" +"GO:0034599","cellular response to oxidative stress",13,4,3.78,415,"0.54944","0.34172","0.34172" +"GO:0034976","response to endoplasmic reticulum stress",16,4,4.65,578,"0.72799","0.34230","0.34230" +"GO:0044703","multi-organism reproductive process",59,15,17.13,618,"0.77534","0.34262","0.34262" +"GO:0030707","ovarian follicle cell development",10,1,2.9,960,"0.96789","0.34334","0.34334" +"GO:0032535","regulation of cellular component size",24,4,6.97,921,"0.94885","0.34483","0.34483" +"GO:0051098","regulation of binding",13,6,3.78,209,"0.14564","0.34589","0.34589" +"GO:0046677","response to antibiotic",14,3,4.07,665,"0.82050","0.34630","0.34630" +"GO:0001754","eye photoreceptor cell differentiation",11,4,3.19,318,"0.40224","0.34851","0.34851" +"GO:0046530","photoreceptor cell differentiation",11,4,3.19,319,"0.40224","0.34851","0.34851" +"GO:0006030","chitin metabolic process",22,7,6.39,364,"0.46606","0.34856","0.34856" +"GO:0051128","regulation of cellular component organiz...",127,30,36.88,881,"0.93332","0.34940","0.34940" +"GO:0097190","apoptotic signaling pathway",23,5,6.68,719,"0.84309","0.35036","0.35036" +"GO:0006753","nucleoside phosphate metabolic process",78,34,22.65,42,"0.00380","0.00692","0.35125" +"GO:0009117","nucleotide metabolic process",78,34,22.65,43,"0.00380","0.00692","0.35125" +"GO:0006470","protein dephosphorylation",34,12,9.87,256,"0.26298","0.35446","0.35446" +"GO:0048523","negative regulation of cellular process",204,60,59.24,384,"0.47972","0.35508","0.35508" +"GO:0072593","reactive oxygen species metabolic proces...",11,5,3.19,226,"0.18918","0.35757","0.35757" +"GO:0051234","establishment of localization",590,182,171.34,203,"0.14349","0.20239","0.35760" +"GO:0009719","response to endogenous stimulus",75,14,21.78,1053,"0.98678","0.35901","0.35901" +"GO:0051173","positive regulation of nitrogen compound...",103,24,29.91,857,"0.92511","0.35965","0.35965" +"GO:0044281","small molecule metabolic process",230,87,66.79,14,"0.00156","0.00480","0.35991" +"GO:0043401","steroid hormone mediated signaling pathw...",18,4,5.23,655,"0.81392","0.36035","0.36035" +"GO:0061061","muscle structure development",54,23,15.68,93,"0.02186","0.01073","0.36082" +"GO:0051056","regulation of small GTPase mediated sign...",31,11,9,258,"0.26988","0.00695","0.36146" +"GO:0022412","cellular process involved in reproductio...",36,10,10.45,482,"0.62928","0.36152","0.36152" +"GO:0032870","cellular response to hormone stimulus",35,5,10.16,1060,"0.98809","0.36309","0.36309" +"GO:0050804","modulation of chemical synaptic transmis...",22,7,6.39,365,"0.46606","0.36351","0.36351" +"GO:0099177","regulation of trans-synaptic signaling",22,7,6.39,366,"0.46606","0.36351","0.36351" +"GO:0051960","regulation of nervous system development",50,11,14.52,803,"0.90006","0.36404","0.36404" +"GO:0009416","response to light stimulus",17,6,4.94,291,"0.36888","0.36475","0.36475" +"GO:0016197","endosomal transport",24,4,6.97,922,"0.94885","0.36530","0.36530" +"GO:0000281","mitotic cytokinesis",12,4,3.48,373,"0.47786","0.36664","0.36664" +"GO:0006338","chromatin remodeling",12,4,3.48,374,"0.47786","0.36664","0.36664" +"GO:0061640","cytoskeleton-dependent cytokinesis",12,4,3.48,375,"0.47786","0.36664","0.36664" +"GO:0048513","animal organ development",185,55,53.72,341,"0.44413","0.11249","0.37077" +"GO:0097164","ammonium ion metabolic process",15,5,4.36,350,"0.45148","0.37266","0.37266" +"GO:0048278","vesicle docking",10,3,2.9,452,"0.59158","0.37316","0.37316" +"GO:0034655","nucleobase-containing compound catabolic...",36,11,10.45,385,"0.48318","0.37419","0.37419" +"GO:0048871","multicellular organismal homeostasis",19,8,5.52,213,"0.15689","0.37635","0.37635" +"GO:1901361","organic cyclic compound catabolic proces...",43,14,12.49,288,"0.35830","0.37641","0.37641" +"GO:0001505","regulation of neurotransmitter levels",30,8,8.71,542,"0.68007","0.38053","0.38053" +"GO:0051345","positive regulation of hydrolase activit...",24,4,6.97,923,"0.94885","0.38079","0.38079" +"GO:0043547","positive regulation of GTPase activity",14,2,4.07,909,"0.94529","0.38189","0.38189" +"GO:0010648","negative regulation of cell communicatio...",63,10,18.3,1112,"0.99545","0.38220","0.38220" +"GO:0023057","negative regulation of signaling",63,10,18.3,1113,"0.99545","0.38220","0.38220" +"GO:0071495","cellular response to endogenous stimulus",58,8,16.84,1127,"0.99828","0.38688","0.38688" +"GO:0051051","negative regulation of transport",10,4,2.9,275,"0.32476","0.38961","0.38961" +"GO:0006865","amino acid transport",13,4,3.78,416,"0.54944","0.39246","0.39246" +"GO:0043434","response to peptide hormone",11,2,3.19,757,"0.87423","0.39387","0.39387" +"GO:0015980","energy derivation by oxidation of organi...",31,9,9,429,"0.56867","0.39408","0.39408" +"GO:0043410","positive regulation of MAPK cascade",14,4,4.07,470,"0.61547","0.39644","0.39644" +"GO:0009968","negative regulation of signal transducti...",61,10,17.71,1102,"0.99317","0.39794","0.39794" +"GO:0098656","anion transmembrane transport",18,6,5.23,337,"0.42959","0.39860","0.39860" +"GO:0016310","phosphorylation",224,72,65.05,214,"0.15908","0.40285","0.40285" +"GO:0045765","regulation of angiogenesis",12,4,3.48,376,"0.47786","0.40325","0.40325" +"GO:1901342","regulation of vasculature development",12,4,3.48,377,"0.47786","0.40325","0.40325" +"GO:0015698","inorganic anion transport",13,4,3.78,417,"0.54944","0.40490","0.40490" +"GO:0010975","regulation of neuron projection developm...",29,8,8.42,488,"0.63819","0.40507","0.40507" +"GO:0009892","negative regulation of metabolic process",115,27,33.4,874,"0.92921","0.40637","0.40637" +"GO:0043405","regulation of MAP kinase activity",12,1,3.48,1038,"0.98389","0.40783","0.40783" +"GO:0002274","myeloid leukocyte activation",10,2,2.9,689,"0.83575","0.40862","0.40862" +"GO:0006575","cellular modified amino acid metabolic p...",10,2,2.9,690,"0.83575","0.40862","0.40862" +"GO:0030100","regulation of endocytosis",15,2,4.36,938,"0.95889","0.40874","0.40874" +"GO:0071900","regulation of protein serine/threonine k...",18,2,5.23,1029,"0.98290","0.41002","0.41002" +"GO:0009966","regulation of signal transduction",155,39,45.01,786,"0.88450","0.06171","0.41154" +"GO:0045926","negative regulation of growth",12,3,3.48,568,"0.72415","0.41202","0.41202" +"GO:0044087","regulation of cellular component biogene...",59,16,17.13,537,"0.67683","0.41254","0.41254" +"GO:0050778","positive regulation of immune response",18,2,5.23,1030,"0.98290","0.41290","0.41290" +"GO:0046903","secretion",63,18,18.3,441,"0.58146","0.41475","0.41475" +"GO:1990778","protein localization to cell periphery",14,5,4.07,306,"0.38435","0.41651","0.41651" +"GO:0065007","biological regulation",930,267,270.08,483,"0.62983","0.24745","0.41827" +"GO:0000302","response to reactive oxygen species",12,5,3.48,251,"0.25098","0.41922","0.41922" +"GO:1901652","response to peptide",12,2,3.48,821,"0.90424","0.41922","0.41922" +"GO:0008284","positive regulation of cell proliferatio...",25,8,7.26,346,"0.44576","0.41960","0.41960" +"GO:0032886","regulation of microtubule-based process",12,3,3.48,569,"0.72415","0.41990","0.41990" +"GO:0042692","muscle cell differentiation",30,15,8.71,78,"0.01196","0.00253","0.42154" +"GO:0009891","positive regulation of biosynthetic proc...",67,17,19.46,639,"0.78839","0.42379","0.42379" +"GO:0032984","protein-containing complex disassembly",18,4,5.23,656,"0.81392","0.42405","0.42405" +"GO:0048477","oogenesis",20,3,5.81,932,"0.95767","0.42449","0.42449" +"GO:0007281","germ cell development",32,9,9.29,467,"0.61234","0.42722","0.42722" +"GO:0072524","pyridine-containing compound metabolic p...",21,13,6.1,15,"0.00168","0.00689","0.42726" +"GO:0009165","nucleotide biosynthetic process",52,25,15.1,21,"0.00259","0.01503","0.42964" +"GO:1901293","nucleoside phosphate biosynthetic proces...",52,25,15.1,22,"0.00259","0.01503","0.42964" +"GO:0032101","regulation of response to external stimu...",14,3,4.07,666,"0.82050","0.42983","0.42983" +"GO:0045944","positive regulation of transcription by ...",44,12,12.78,497,"0.65868","0.43133","0.43133" +"GO:0009259","ribonucleotide metabolic process",59,26,17.13,70,"0.00916","0.00868","0.43210" +"GO:0015985","energy coupled proton transport, down el...",11,3,3.19,504,"0.66258","0.43222","0.43222" +"GO:0015986","ATP synthesis coupled proton transport",11,3,3.19,505,"0.66258","0.43222","0.43222" +"GO:0015849","organic acid transport",24,7,6.97,431,"0.57185","0.43259","0.43259" +"GO:0046942","carboxylic acid transport",24,7,6.97,432,"0.57185","0.43259","0.43259" +"GO:0050789","regulation of biological process",874,247,253.81,595,"0.75402","0.17630","0.43402" +"GO:0140056","organelle localization by membrane tethe...",11,3,3.19,506,"0.66258","0.43424","0.43424" +"GO:0044772","mitotic cell cycle phase transition",11,3,3.19,507,"0.66258","0.43439","0.43439" +"GO:0009605","response to external stimulus",114,33,33.11,407,"0.54575","0.43547","0.43547" +"GO:0014706","striated muscle tissue development",25,11,7.26,152,"0.07904","0.02373","0.43568" +"GO:0007409","axonogenesis",32,10,9.29,356,"0.45707","0.43614","0.43614" +"GO:0006357","regulation of transcription by RNA polym...",90,22,26.14,746,"0.86471","0.43804","0.43804" +"GO:0010629","negative regulation of gene expression",72,11,20.91,1126,"0.99817","0.44059","0.44059" +"GO:1901135","carbohydrate derivative metabolic proces...",161,57,46.76,118,"0.04151","0.07049","0.44204" +"GO:0002683","negative regulation of immune system pro...",16,3,4.65,791,"0.88659","0.44220","0.44220" +"GO:0032940","secretion by cell",51,13,14.81,601,"0.76111","0.44561","0.44561" +"GO:0060249","anatomical structure homeostasis",21,7,6.1,331,"0.41076","0.44603","0.44603" +"GO:0006629","lipid metabolic process",158,56,45.88,119,"0.04222","0.12798","0.44795" +"GO:0006664","glycolipid metabolic process",11,3,3.19,508,"0.66258","0.44850","0.44850" +"GO:1903509","liposaccharide metabolic process",11,3,3.19,509,"0.66258","0.44850","0.44850" +"GO:0000278","mitotic cell cycle",42,9,12.2,808,"0.90078","0.44866","0.44866" +"GO:0035148","tube formation",14,5,4.07,307,"0.38435","0.45059","0.45059" +"GO:0010976","positive regulation of neuron projection...",12,4,3.48,378,"0.47786","0.45164","0.45164" +"GO:0043010","camera-type eye development",30,10,8.71,290,"0.36575","0.45256","0.45256" +"GO:0071383","cellular response to steroid hormone sti...",23,4,6.68,889,"0.93573","0.45287","0.45287" +"GO:0050769","positive regulation of neurogenesis",24,7,6.97,433,"0.57185","0.45546","0.45546" +"GO:0072659","protein localization to plasma membrane",12,4,3.48,379,"0.47786","0.45558","0.45558" +"GO:0007276","gamete generation",46,12,13.36,566,"0.72401","0.45670","0.45670" +"GO:0001654","eye development",50,14,14.52,473,"0.61850","0.45696","0.45696" +"GO:0048880","sensory system development",50,14,14.52,474,"0.61850","0.45696","0.45696" +"GO:0150063","visual system development",50,14,14.52,475,"0.61850","0.45696","0.45696" +"GO:0097435","supramolecular fiber organization",60,23,17.42,150,"0.07429","0.03696","0.45812" +"GO:0006928","movement of cell or subcellular componen...",93,24,27.01,640,"0.79173","0.46077","0.46077" +"GO:0046488","phosphatidylinositol metabolic process",25,8,7.26,347,"0.44576","0.46166","0.46166" +"GO:0048514","blood vessel morphogenesis",26,6,7.55,649,"0.81168","0.46185","0.46185" +"GO:0060429","epithelium development",70,20,20.33,440,"0.58093","0.46216","0.46216" +"GO:0032388","positive regulation of intracellular tra...",10,2,2.9,691,"0.83575","0.46323","0.46323" +"GO:0033157","regulation of intracellular protein tran...",10,2,2.9,692,"0.83575","0.46323","0.46323" +"GO:0009888","tissue development",107,32,31.07,358,"0.45751","0.18035","0.46382" +"GO:0044265","cellular macromolecule catabolic process",55,10,15.97,1019,"0.97830","0.46727","0.46727" +"GO:0010631","epithelial cell migration",15,3,4.36,736,"0.85685","0.46775","0.46775" +"GO:0043632","modification-dependent macromolecule cat...",33,7,9.58,787,"0.88594","0.46848","0.46848" +"GO:0051130","positive regulation of cellular componen...",68,16,19.75,773,"0.87670","0.46962","0.46962" +"GO:0032270","positive regulation of cellular protein ...",51,11,14.81,843,"0.91395","0.47097","0.47097" +"GO:0007369","gastrulation",11,4,3.19,320,"0.40224","0.47260","0.47260" +"GO:0097193","intrinsic apoptotic signaling pathway",13,3,3.78,621,"0.77657","0.47432","0.47432" +"GO:0050773","regulation of dendrite development",16,4,4.65,579,"0.72799","0.47527","0.47527" +"GO:0050776","regulation of immune response",21,2,6.1,1099,"0.99305","0.47606","0.47606" +"GO:0046700","heterocycle catabolic process",41,13,11.91,328,"0.40976","0.47636","0.47636" +"GO:0090130","tissue migration",17,4,4.94,610,"0.77416","0.47770","0.47770" +"GO:0090132","epithelium migration",17,4,4.94,611,"0.77416","0.47770","0.47770" +"GO:0051247","positive regulation of protein metabolic...",54,11,15.68,919,"0.94623","0.47804","0.47804" +"GO:0022904","respiratory electron transport chain",11,2,3.19,758,"0.87423","0.47872","0.47872" +"GO:2001234","negative regulation of apoptotic signali...",14,3,4.07,667,"0.82050","0.47913","0.47913" +"GO:0007423","sensory organ development",63,19,18.3,369,"0.46966","0.48000","0.48000" +"GO:0009791","post-embryonic development",25,1,7.26,1138,"0.99982","0.48049","0.48049" +"GO:0010720","positive regulation of cell development",26,7,7.55,519,"0.66666","0.48248","0.48248" +"GO:0051962","positive regulation of nervous system de...",26,7,7.55,520,"0.66666","0.48248","0.48248" +"GO:0051336","regulation of hydrolase activity",48,10,13.94,863,"0.92710","0.48310","0.48310" +"GO:0000910","cytokinesis",15,5,4.36,351,"0.45148","0.48893","0.48893" +"GO:0043161","proteasome-mediated ubiquitin-dependent ...",16,3,4.65,792,"0.88659","0.49010","0.49010" +"GO:0022406","membrane docking",12,3,3.48,570,"0.72415","0.49173","0.49173" +"GO:0044770","cell cycle phase transition",13,3,3.78,622,"0.77657","0.49202","0.49202" +"GO:0030705","cytoskeleton-dependent intracellular tra...",14,5,4.07,308,"0.38435","0.49408","0.49408" +"GO:0010243","response to organonitrogen compound",34,7,9.87,817,"0.90421","0.49412","0.49412" +"GO:0016579","protein deubiquitination",13,2,3.78,865,"0.92746","0.49661","0.49661" +"GO:0070646","protein modification by small protein re...",13,2,3.78,866,"0.92746","0.49661","0.49661" +"GO:0034613","cellular protein localization",126,36,36.59,442,"0.58235","0.49918","0.49918" +"GO:0070727","cellular macromolecule localization",126,36,36.59,443,"0.58235","0.49918","0.49918" +"GO:0031346","positive regulation of cell projection o...",17,5,4.94,435,"0.57794","0.49980","0.49980" +"GO:0061572","actin filament bundle organization",10,3,2.9,453,"0.59158","0.50418","0.50418" +"GO:0042445","hormone metabolic process",11,3,3.19,510,"0.66258","0.50500","0.50500" +"GO:0048812","neuron projection morphogenesis",50,16,14.52,294,"0.37174","0.50590","0.50590" +"GO:0048858","cell projection morphogenesis",50,16,14.52,295,"0.37174","0.50590","0.50590" +"GO:0120039","plasma membrane bounded cell projection ...",50,16,14.52,296,"0.37174","0.50590","0.50590" +"GO:0031399","regulation of protein modification proce...",75,19,21.78,642,"0.80043","0.50755","0.50755" +"GO:0060341","regulation of cellular localization",40,12,11.62,394,"0.50667","0.50934","0.50934" +"GO:0019098","reproductive behavior",11,1,3.19,1006,"0.97725","0.50942","0.50942" +"GO:0009755","hormone-mediated signaling pathway",19,4,5.52,722,"0.84775","0.50964","0.50964" +"GO:0002252","immune effector process",21,5,6.1,614,"0.77529","0.51291","0.51291" +"GO:1903825","organic acid transmembrane transport",15,5,4.36,352,"0.45148","0.51562","0.51562" +"GO:1905039","carboxylic acid transmembrane transport",15,5,4.36,353,"0.45148","0.51562","0.51562" +"GO:0051047","positive regulation of secretion",15,4,4.36,529,"0.67511","0.51627","0.51627" +"GO:0051222","positive regulation of protein transport",15,3,4.36,737,"0.85685","0.51627","0.51627" +"GO:1904951","positive regulation of establishment of ...",15,3,4.36,738,"0.85685","0.51627","0.51627" +"GO:0010769","regulation of cell morphogenesis involve...",17,3,4.94,838,"0.91068","0.51785","0.51785" +"GO:0048609","multicellular organismal reproductive pr...",58,14,16.84,706,"0.83617","0.51857","0.51857" +"GO:0006909","phagocytosis",16,5,4.65,397,"0.51645","0.52487","0.52487" +"GO:0016042","lipid catabolic process",26,9,7.55,279,"0.33129","0.52533","0.52533" +"GO:0044257","cellular protein catabolic process",35,8,10.16,714,"0.84138","0.52591","0.52591" +"GO:0051603","proteolysis involved in cellular protein...",35,8,10.16,715,"0.84138","0.52591","0.52591" +"GO:0031347","regulation of defense response",16,2,4.65,985,"0.96922","0.52653","0.52653" +"GO:0048519","negative regulation of biological proces...",232,62,67.37,659,"0.81414","0.35145","0.52807" +"GO:2001257","regulation of cation channel activity",14,5,4.07,309,"0.38435","0.52819","0.52819" +"GO:0019439","aromatic compound catabolic process",40,13,11.62,292,"0.37013","0.53118","0.53118" +"GO:0006479","protein methylation",15,2,4.36,939,"0.95889","0.53141","0.53141" +"GO:0008213","protein alkylation",15,2,4.36,940,"0.95889","0.53141","0.53141" +"GO:0044089","positive regulation of cellular componen...",35,8,10.16,716,"0.84138","0.53198","0.53198" +"GO:0035966","response to topologically incorrect prot...",14,3,4.07,668,"0.82050","0.53201","0.53201" +"GO:0001932","regulation of protein phosphorylation",53,16,15.39,383,"0.47856","0.53406","0.53406" +"GO:0007283","spermatogenesis",25,9,7.26,261,"0.28452","0.53623","0.53623" +"GO:1903706","regulation of hemopoiesis",13,0,3.78,1148,"1.00000","0.53631","0.53631" +"GO:0045017","glycerolipid biosynthetic process",18,4,5.23,657,"0.81392","0.53819","0.53819" +"GO:0048565","digestive tract development",10,1,2.9,961,"0.96789","0.54037","0.54037" +"GO:0055123","digestive system development",10,1,2.9,962,"0.96789","0.54037","0.54037" +"GO:0035050","embryonic heart tube development",10,0,2.9,1149,"1.00000","0.54037","0.54037" +"GO:0048646","anatomical structure formation involved ...",77,29,22.36,134,"0.06095","0.06829","0.54418" +"GO:0010604","positive regulation of macromolecule met...",108,23,31.36,998,"0.97552","0.54624","0.54624" +"GO:0015988","energy coupled proton transmembrane tran...",15,4,4.36,530,"0.67511","0.54663","0.54663" +"GO:0015991","ATP hydrolysis coupled proton transport",15,4,4.36,531,"0.67511","0.54663","0.54663" +"GO:0090662","ATP hydrolysis coupled transmembrane tra...",15,4,4.36,532,"0.67511","0.54663","0.54663" +"GO:0099131","ATP hydrolysis coupled ion transmembrane...",15,4,4.36,533,"0.67511","0.54663","0.54663" +"GO:0099132","ATP hydrolysis coupled cation transmembr...",15,4,4.36,534,"0.67511","0.54663","0.54663" +"GO:0008283","cell proliferation",62,15,18.01,707,"0.83989","0.54682","0.54682" +"GO:0120036","plasma membrane bounded cell projection ...",99,27,28.75,552,"0.69071","0.54876","0.54876" +"GO:0044093","positive regulation of molecular functio...",63,20,18.3,289,"0.36129","0.14837","0.54934" +"GO:0060560","developmental growth involved in morphog...",13,3,3.78,623,"0.77657","0.55140","0.55140" +"GO:0002009","morphogenesis of an epithelium",52,16,15.1,339,"0.44294","0.55246","0.55246" +"GO:0071310","cellular response to organic substance",92,16,26.72,1120,"0.99700","0.55370","0.55370" +"GO:0002443","leukocyte mediated immunity",10,3,2.9,454,"0.59158","0.55580","0.55580" +"GO:0048729","tissue morphogenesis",55,16,15.97,412,"0.54850","0.55673","0.55673" +"GO:0032990","cell part morphogenesis",54,17,15.68,314,"0.39479","0.55801","0.55801" +"GO:0051704","multi-organism process",111,29,32.23,638,"0.78670","0.55935","0.55935" +"GO:2001242","regulation of intrinsic apoptotic signal...",11,2,3.19,759,"0.87423","0.56137","0.56137" +"GO:1903532","positive regulation of secretion by cell",13,3,3.78,624,"0.77657","0.56412","0.56412" +"GO:0090150","establishment of protein localization to...",13,5,3.78,273,"0.31682","0.56427","0.56427" +"GO:0006366","transcription by RNA polymerase II",100,23,29.04,880,"0.93220","0.56890","0.56890" +"GO:0031344","regulation of cell projection organizati...",41,11,11.91,545,"0.68051","0.57077","0.57077" +"GO:0098657","import into cell",41,11,11.91,546,"0.68051","0.57077","0.57077" +"GO:0120035","regulation of plasma membrane bounded ce...",41,11,11.91,547,"0.68051","0.57077","0.57077" +"GO:0045165","cell fate commitment",22,7,6.39,367,"0.46606","0.57140","0.57140" +"GO:1901698","response to nitrogen compound",37,7,10.74,906,"0.94475","0.57173","0.57173" +"GO:0071396","cellular response to lipid",38,7,11.04,929,"0.95439","0.57365","0.57365" +"GO:0031349","positive regulation of defense response",10,1,2.9,963,"0.96789","0.57457","0.57457" +"GO:0009887","animal organ morphogenesis",77,21,22.36,538,"0.67782","0.57570","0.57570" +"GO:0060627","regulation of vesicle-mediated transport",24,4,6.97,924,"0.94885","0.57806","0.57806" +"GO:0048545","response to steroid hormone",28,4,8.13,1023,"0.98032","0.58040","0.58040" +"GO:0080134","regulation of response to stress",53,13,15.39,647,"0.81068","0.58146","0.58146" +"GO:0006511","ubiquitin-dependent protein catabolic pr...",31,7,9,709,"0.84067","0.58250","0.58250" +"GO:0019941","modification-dependent protein catabolic...",31,7,9,710,"0.84067","0.58250","0.58250" +"GO:0018130","heterocycle biosynthetic process",358,104,103.97,401,"0.52100","0.51726","0.58368" +"GO:0051260","protein homooligomerization",17,5,4.94,436,"0.57794","0.58762","0.58762" +"GO:0044270","cellular nitrogen compound catabolic pro...",39,12,11.33,362,"0.46571","0.58850","0.58850" +"GO:0022900","electron transport chain",14,3,4.07,669,"0.82050","0.58892","0.58892" +"GO:0051321","meiotic cell cycle",12,3,3.48,571,"0.72415","0.58921","0.58921" +"GO:1903046","meiotic cell cycle process",12,3,3.48,572,"0.72415","0.58921","0.58921" +"GO:0060284","regulation of cell development",55,12,15.97,841,"0.91377","0.58980","0.58980" +"GO:0046474","glycerophospholipid biosynthetic process",17,4,4.94,612,"0.77416","0.58989","0.58989" +"GO:0001568","blood vessel development",28,6,8.13,749,"0.86661","0.59003","0.59003" +"GO:0007268","chemical synaptic transmission",32,8,9.29,596,"0.75431","0.59072","0.59072" +"GO:0098916","anterograde trans-synaptic signaling",32,8,9.29,597,"0.75431","0.59072","0.59072" +"GO:0099536","synaptic signaling",32,8,9.29,598,"0.75431","0.59072","0.59072" +"GO:0099537","trans-synaptic signaling",32,8,9.29,599,"0.75431","0.59072","0.59072" +"GO:0030154","cell differentiation",208,64,60.4,265,"0.30778","0.14202","0.59226" +"GO:0048592","eye morphogenesis",27,7,7.84,559,"0.70887","0.59655","0.59655" +"GO:0048588","developmental cell growth",11,2,3.19,760,"0.87423","0.59662","0.59662" +"GO:0043900","regulation of multi-organism process",17,3,4.94,839,"0.91068","0.59857","0.59857" +"GO:0019438","aromatic compound biosynthetic process",353,102,102.51,413,"0.54883","0.53253","0.59936" +"GO:0051090","regulation of DNA-binding transcription ...",12,8,3.48,65,"0.00751","0.00441","0.60120" +"GO:0000122","negative regulation of transcription by ...",31,5,9,992,"0.96995","0.60175","0.60175" +"GO:0006732","coenzyme metabolic process",47,24,13.65,11,"0.00109","0.00461","0.60266" +"GO:0006952","defense response",49,9,14.23,994,"0.97050","0.60297","0.60297" +"GO:0030155","regulation of cell adhesion",17,5,4.94,437,"0.57794","0.60336","0.60336" +"GO:0032989","cellular component morphogenesis",94,34,27.3,151,"0.07712","0.12267","0.60383" +"GO:2001233","regulation of apoptotic signaling pathwa...",20,4,5.81,770,"0.87623","0.60492","0.60492" +"GO:0045893","positive regulation of transcription, DN...",54,13,15.68,683,"0.83245","0.60548","0.60548" +"GO:1902680","positive regulation of RNA biosynthetic ...",54,13,15.68,684,"0.83245","0.60548","0.60548" +"GO:1903508","positive regulation of nucleic acid-temp...",54,13,15.68,685,"0.83245","0.60548","0.60548" +"GO:0006888","ER to Golgi vesicle-mediated transport",10,3,2.9,455,"0.59158","0.60569","0.60569" +"GO:1901700","response to oxygen-containing compound",68,15,19.75,858,"0.92576","0.60662","0.60662" +"GO:1901362","organic cyclic compound biosynthetic pro...",373,111,108.32,311,"0.39110","0.53956","0.61044" +"GO:0051186","cofactor metabolic process",58,27,16.84,27,"0.00317","0.01416","0.61083" +"GO:0001944","vasculature development",30,7,8.71,653,"0.81316","0.61136","0.61136" +"GO:0032504","multicellular organism reproduction",62,14,18.01,814,"0.90180","0.61222","0.61222" +"GO:0006402","mRNA catabolic process",18,2,5.23,1031,"0.98290","0.61404","0.61404" +"GO:0009266","response to temperature stimulus",18,3,5.23,875,"0.93003","0.61649","0.61649" +"GO:0060537","muscle tissue development",27,11,7.84,190,"0.12960","0.07357","0.61970" +"GO:0050877","nervous system process",55,14,15.97,604,"0.76838","0.62015","0.62015" +"GO:0001525","angiogenesis",20,5,5.81,590,"0.73383","0.62118","0.62118" +"GO:0009893","positive regulation of metabolic process",130,28,37.75,1028,"0.98147","0.62136","0.62136" +"GO:0007389","pattern specification process",39,6,11.33,1051,"0.98565","0.62182","0.62182" +"GO:0042493","response to drug",50,12,14.52,682,"0.82876","0.62183","0.62183" +"GO:0045859","regulation of protein kinase activity",29,8,8.42,489,"0.63819","0.62334","0.62334" +"GO:0031929","TOR signaling",10,1,2.9,964,"0.96789","0.62372","0.62372" +"GO:0062012","regulation of small molecule metabolic p...",10,3,2.9,456,"0.59158","0.62372","0.62372" +"GO:0007017","microtubule-based process",49,10,14.23,896,"0.93805","0.62544","0.62544" +"GO:0072657","protein localization to membrane",29,9,8.42,370,"0.47583","0.62749","0.62749" +"GO:0033993","response to lipid",52,12,15.1,751,"0.86838","0.62928","0.62928" +"GO:0009451","RNA modification",12,1,3.48,1039,"0.98389","0.63096","0.63096" +"GO:0046467","membrane lipid biosynthetic process",11,3,3.19,511,"0.66258","0.63365","0.63365" +"GO:0006468","protein phosphorylation",178,55,51.69,269,"0.31209","0.63670","0.63670" +"GO:0040011","locomotion",91,25,26.43,524,"0.67051","0.24986","0.63711" +"GO:0031325","positive regulation of cellular metaboli...",117,26,33.98,954,"0.96443","0.64182","0.64182" +"GO:0051641","cellular localization",204,57,59.24,523,"0.66823","0.64271","0.64271" +"GO:0006897","endocytosis",37,10,10.74,522,"0.66766","0.64629","0.64629" +"GO:0034654","nucleobase-containing compound biosynthe...",338,97,98.16,444,"0.58254","0.57961","0.64739" +"GO:0031324","negative regulation of cellular metaboli...",96,25,27.88,631,"0.77923","0.64875","0.64875" +"GO:1902115","regulation of organelle assembly",14,4,4.07,471,"0.61547","0.64903","0.64903" +"GO:0051726","regulation of cell cycle",50,11,14.52,804,"0.90006","0.64949","0.64949" +"GO:0001101","response to acid chemical",20,3,5.81,933,"0.95767","0.65015","0.65015" +"GO:0009653","anatomical structure morphogenesis",184,54,53.43,387,"0.49160","0.22676","0.65016" +"GO:1901701","cellular response to oxygen-containing c...",42,7,12.2,1021,"0.97959","0.65142","0.65142" +"GO:0051254","positive regulation of RNA metabolic pro...",57,13,16.55,788,"0.88643","0.65160","0.65160" +"GO:0070838","divalent metal ion transport",25,14,7.26,47,"0.00415","0.01534","0.65200" +"GO:0072511","divalent inorganic cation transport",25,14,7.26,48,"0.00415","0.01534","0.65200" +"GO:0001667","ameboidal-type cell migration",18,3,5.23,876,"0.93003","0.65299","0.65299" +"GO:0051301","cell division",25,7,7.26,477,"0.62089","0.65388","0.65388" +"GO:0048232","male gamete generation",27,9,7.84,298,"0.37928","0.65920","0.65920" +"GO:0051259","protein complex oligomerization",23,7,6.68,399,"0.52003","0.66020","0.66020" +"GO:0042325","regulation of phosphorylation",61,17,17.71,480,"0.62923","0.66098","0.66098" +"GO:0035690","cellular response to drug",13,1,3.78,1061,"0.98859","0.66145","0.66145" +"GO:0006497","protein lipidation",14,3,4.07,670,"0.82050","0.66156","0.66156" +"GO:0042157","lipoprotein metabolic process",14,3,4.07,671,"0.82050","0.66156","0.66156" +"GO:0042158","lipoprotein biosynthetic process",14,3,4.07,672,"0.82050","0.66156","0.66156" +"GO:0048638","regulation of developmental growth",16,1,4.65,1116,"0.99595","0.66230","0.66230" +"GO:0071417","cellular response to organonitrogen comp...",12,1,3.48,1040,"0.98389","0.66314","0.66314" +"GO:0007166","cell surface receptor signaling pathway",125,25,36.3,1101,"0.99313","0.66341","0.66341" +"GO:0008654","phospholipid biosynthetic process",24,5,6.97,753,"0.87010","0.66583","0.66583" +"GO:0097305","response to alcohol",15,2,4.36,941,"0.95889","0.66616","0.66616" +"GO:0010557","positive regulation of macromolecule bio...",58,13,16.84,812,"0.90096","0.66626","0.66626" +"GO:0045935","positive regulation of nucleobase-contai...",58,13,16.84,813,"0.90096","0.66626","0.66626" +"GO:0030030","cell projection organization",103,27,29.91,607,"0.77369","0.66748","0.66748" +"GO:0043549","regulation of kinase activity",31,8,9,563,"0.71882","0.67090","0.67090" +"GO:0010817","regulation of hormone levels",26,6,7.55,650,"0.81168","0.67492","0.67492" +"GO:0008544","epidermis development",14,5,4.07,310,"0.38435","0.67883","0.67883" +"GO:0030001","metal ion transport",72,28,20.91,120,"0.04369","0.13030","0.68169" +"GO:0010876","lipid localization",30,6,8.71,831,"0.90753","0.68318","0.68318" +"GO:0042773","ATP synthesis coupled electron transport",10,2,2.9,693,"0.83575","0.68555","0.68555" +"GO:0009314","response to radiation",24,7,6.97,434,"0.57185","0.68572","0.68572" +"GO:0007219","Notch signaling pathway",11,2,3.19,761,"0.87423","0.68634","0.68634" +"GO:0007399","nervous system development",166,46,48.21,549,"0.68145","0.68966","0.68966" +"GO:0032386","regulation of intracellular transport",16,4,4.65,580,"0.72799","0.68981","0.68981" +"GO:0022402","cell cycle process",65,14,18.88,887,"0.93540","0.68999","0.68999" +"GO:0022407","regulation of cell-cell adhesion",11,3,3.19,512,"0.66258","0.69064","0.69064" +"GO:0035967","cellular response to topologically incor...",10,1,2.9,965,"0.96789","0.69198","0.69198" +"GO:0007346","regulation of mitotic cell cycle",16,2,4.65,986,"0.96922","0.69311","0.69311" +"GO:0019216","regulation of lipid metabolic process",16,4,4.65,581,"0.72799","0.69717","0.69717" +"GO:0031328","positive regulation of cellular biosynth...",61,15,17.71,661,"0.82011","0.69726","0.69726" +"GO:0051656","establishment of organelle localization",22,4,6.39,849,"0.91962","0.69936","0.69936" +"GO:0006413","translational initiation",10,3,2.9,457,"0.59158","0.69998","0.69998" +"GO:0015711","organic anion transport",31,8,9,564,"0.71882","0.70229","0.70229" +"GO:0140014","mitotic nuclear division",10,2,2.9,694,"0.83575","0.70636","0.70636" +"GO:0006605","protein targeting",25,7,7.26,478,"0.62089","0.70658","0.70658" +"GO:0042063","gliogenesis",10,3,2.9,458,"0.59158","0.70954","0.70954" +"GO:0001503","ossification",14,4,4.07,472,"0.61547","0.71202","0.71202" +"GO:0032880","regulation of protein localization",40,9,11.62,745,"0.86456","0.71318","0.71318" +"GO:0006355","regulation of transcription, DNA-templat...",260,68,75.51,776,"0.87756","0.67486","0.71492" +"GO:1903506","regulation of nucleic acid-templated tra...",260,68,75.51,777,"0.87756","0.67486","0.71492" +"GO:2001141","regulation of RNA biosynthetic process",260,68,75.51,778,"0.87756","0.67486","0.71492" +"GO:0016051","carbohydrate biosynthetic process",13,4,3.78,418,"0.54944","0.71586","0.71586" +"GO:0009636","response to toxic substance",19,4,5.52,723,"0.84775","0.71619","0.71619" +"GO:0043065","positive regulation of apoptotic process",19,4,5.52,724,"0.84775","0.71619","0.71619" +"GO:0043068","positive regulation of programmed cell d...",19,4,5.52,725,"0.84775","0.71619","0.71619" +"GO:0030178","negative regulation of Wnt signaling pat...",13,1,3.78,1062,"0.98859","0.71933","0.71933" +"GO:0045088","regulation of innate immune response",13,1,3.78,1063,"0.98859","0.71933","0.71933" +"GO:0022411","cellular component disassembly",23,4,6.68,890,"0.93573","0.72203","0.72203" +"GO:0051172","negative regulation of nitrogen compound...",91,23,26.43,678,"0.82194","0.72215","0.72215" +"GO:1903827","regulation of cellular protein localizat...",20,5,5.81,591,"0.73383","0.72414","0.72414" +"GO:0006643","membrane lipid metabolic process",20,6,5.81,410,"0.54675","0.72581","0.72581" +"GO:0007267","cell-cell signaling",70,15,20.33,905,"0.94395","0.72584","0.72584" +"GO:0031330","negative regulation of cellular cataboli...",11,3,3.19,513,"0.66258","0.72670","0.72670" +"GO:0006915","apoptotic process",71,13,20.62,1056,"0.98742","0.72717","0.72717" +"GO:0010941","regulation of cell death",65,16,18.88,681,"0.82469","0.72720","0.72720" +"GO:0042742","defense response to bacterium",11,4,3.19,321,"0.40224","0.72850","0.72850" +"GO:0007601","visual perception",12,4,3.48,380,"0.47786","0.73002","0.73002" +"GO:0048593","camera-type eye morphogenesis",12,3,3.48,573,"0.72415","0.73002","0.73002" +"GO:0050953","sensory perception of light stimulus",12,4,3.48,381,"0.47786","0.73002","0.73002" +"GO:0042147","retrograde transport, endosome to Golgi",13,2,3.78,867,"0.92746","0.73036","0.73036" +"GO:0051046","regulation of secretion",23,7,6.68,400,"0.52003","0.73054","0.73054" +"GO:0010942","positive regulation of cell death",22,4,6.39,850,"0.91962","0.73122","0.73122" +"GO:0051640","organelle localization",39,9,11.33,717,"0.84281","0.73260","0.73260" +"GO:0002065","columnar/cuboidal epithelial cell differ...",15,3,4.36,739,"0.85685","0.73462","0.73462" +"GO:0007626","locomotory behavior",15,1,4.36,1106,"0.99428","0.73462","0.73462" +"GO:0071407","cellular response to organic cyclic comp...",29,6,8.42,796,"0.88865","0.73684","0.73684" +"GO:0030900","forebrain development",16,2,4.65,987,"0.96922","0.73817","0.73817" +"GO:0001655","urogenital system development",21,4,6.1,800,"0.89998","0.73849","0.73849" +"GO:0031396","regulation of protein ubiquitination",10,0,2.9,1150,"1.00000","0.73863","0.73863" +"GO:1903320","regulation of protein modification by sm...",10,0,2.9,1151,"1.00000","0.73863","0.73863" +"GO:0000902","cell morphogenesis",71,20,20.62,466,"0.61049","0.73976","0.73976" +"GO:0034329","cell junction assembly",11,4,3.19,322,"0.40224","0.74025","0.74025" +"GO:0034330","cell junction organization",11,4,3.19,323,"0.40224","0.74025","0.74025" +"GO:0006325","chromatin organization",50,13,14.52,588,"0.73327","0.74453","0.74453" +"GO:0007265","Ras protein signal transduction",31,10,9,332,"0.41140","0.00695","0.74575" +"GO:0050673","epithelial cell proliferation",14,1,4.07,1087,"0.99192","0.74997","0.74997" +"GO:0045184","establishment of protein localization",112,26,32.53,888,"0.93552","0.75233","0.75233" +"GO:0009952","anterior/posterior pattern specification",12,1,3.48,1041,"0.98389","0.75322","0.75322" +"GO:0035239","tube morphogenesis",54,12,15.68,806,"0.90036","0.75532","0.75532" +"GO:0000375","RNA splicing, via transesterification re...",14,1,4.07,1088,"0.99192","0.75632","0.75632" +"GO:0000377","RNA splicing, via transesterification re...",14,1,4.07,1089,"0.99192","0.75632","0.75632" +"GO:0000398","mRNA splicing, via spliceosome",14,1,4.07,1090,"0.99192","0.75632","0.75632" +"GO:0022414","reproductive process",88,22,25.56,686,"0.83399","0.75667","0.75667" +"GO:0010970","transport along microtubule",13,4,3.78,419,"0.54944","0.75670","0.75670" +"GO:0099111","microtubule-based transport",13,4,3.78,420,"0.54944","0.75670","0.75670" +"GO:0016482","cytosolic transport",17,4,4.94,613,"0.77416","0.75690","0.75690" +"GO:0033365","protein localization to organelle",42,11,12.2,560,"0.71416","0.75895","0.75895" +"GO:0002066","columnar/cuboidal epithelial cell develo...",12,1,3.48,1042,"0.98389","0.76061","0.76061" +"GO:1901575","organic substance catabolic process",129,38,37.46,388,"0.49203","0.76407","0.76407" +"GO:0043085","positive regulation of catalytic activit...",42,6,12.2,1098,"0.99275","0.76573","0.76573" +"GO:0008219","cell death",85,18,24.68,952,"0.96315","0.76619","0.76619" +"GO:0006886","intracellular protein transport",77,18,22.36,799,"0.89466","0.76694","0.76694" +"GO:0072358","cardiovascular system development",31,7,9,711,"0.84067","0.76713","0.76713" +"GO:0050808","synapse organization",30,8,8.71,543,"0.68007","0.76767","0.76767" +"GO:0009408","response to heat",15,2,4.36,942,"0.95889","0.76910","0.76910" +"GO:0031326","regulation of cellular biosynthetic proc...",283,74,82.18,795,"0.88812","0.73253","0.77047" +"GO:0007033","vacuole organization",11,3,3.19,514,"0.66258","0.77114","0.77114" +"GO:0007269","neurotransmitter secretion",11,1,3.19,1007,"0.97725","0.77114","0.77114" +"GO:0099643","signal release from synapse",11,1,3.19,1008,"0.97725","0.77114","0.77114" +"GO:0044248","cellular catabolic process",141,41,40.95,405,"0.52941","0.77205","0.77205" +"GO:0010035","response to inorganic substance",25,7,7.26,479,"0.62089","0.77958","0.77958" +"GO:0006887","exocytosis",29,6,8.42,797,"0.88865","0.78082","0.78082" +"GO:0006351","transcription, DNA-templated",283,72,82.18,883,"0.93346","0.75131","0.78092" +"GO:0032774","RNA biosynthetic process",283,72,82.18,884,"0.93346","0.75131","0.78092" +"GO:0097659","nucleic acid-templated transcription",283,72,82.18,885,"0.93346","0.75131","0.78092" +"GO:0048869","cellular developmental process",220,66,63.89,315,"0.39761","0.26060","0.78138" +"GO:0016331","morphogenesis of embryonic epithelium",16,5,4.65,398,"0.51645","0.78174","0.78174" +"GO:0072001","renal system development",19,4,5.52,726,"0.84775","0.78206","0.78206" +"GO:0048732","gland development",15,3,4.36,740,"0.85685","0.78314","0.78314" +"GO:1901699","cellular response to nitrogen compound",15,1,4.36,1107,"0.99428","0.78374","0.78374" +"GO:0007424","open tracheal system development",10,4,2.9,276,"0.32476","0.78417","0.78417" +"GO:0042886","amide transport",109,26,31.65,833,"0.91021","0.78464","0.78464" +"GO:0010556","regulation of macromolecule biosynthetic...",279,72,81.02,834,"0.91061","0.74860","0.78642" +"GO:0042391","regulation of membrane potential",13,4,3.78,421,"0.54944","0.78750","0.78750" +"GO:0090305","nucleic acid phosphodiester bond hydroly...",10,1,2.9,966,"0.96789","0.78785","0.78785" +"GO:2000112","regulation of cellular macromolecule bio...",278,71,80.73,860,"0.92631","0.75260","0.79038" +"GO:0003002","regionalization",26,4,7.55,982,"0.96803","0.79139","0.79139" +"GO:0043624","cellular protein complex disassembly",12,2,3.48,822,"0.90424","0.79236","0.79236" +"GO:0071496","cellular response to external stimulus",12,3,3.48,574,"0.72415","0.79249","0.79249" +"GO:0060562","epithelial tube morphogenesis",34,4,9.87,1115,"0.99575","0.79280","0.79280" +"GO:0010628","positive regulation of gene expression",68,15,19.75,859,"0.92576","0.79311","0.79311" +"GO:0045454","cell redox homeostasis",13,1,3.78,1064,"0.98859","0.79470","0.79470" +"GO:0033036","macromolecule localization",199,51,57.79,782,"0.88386","0.79479","0.79479" +"GO:0015833","peptide transport",108,25,31.36,886,"0.93439","0.79529","0.79529" +"GO:0048469","cell maturation",14,2,4.07,910,"0.94529","0.79608","0.79608" +"GO:0003007","heart morphogenesis",20,3,5.81,934,"0.95767","0.79672","0.79672" +"GO:0055086","nucleobase-containing small molecule met...",91,37,26.43,76,"0.01026","0.03765","0.79748" +"GO:0006457","protein folding",19,5,5.52,551,"0.68706","0.79973","0.79973" +"GO:0051223","regulation of protein transport",19,4,5.52,727,"0.84775","0.80015","0.80015" +"GO:0090087","regulation of peptide transport",19,4,5.52,728,"0.84775","0.80015","0.80015" +"GO:0010033","response to organic substance",127,27,36.88,1037,"0.98372","0.80020","0.80020" +"GO:0006323","DNA packaging",12,2,3.48,823,"0.90424","0.80111","0.80111" +"GO:0006869","lipid transport",25,6,7.26,630,"0.77822","0.80324","0.80324" +"GO:0048285","organelle fission",20,3,5.81,935,"0.95767","0.80337","0.80337" +"GO:0015031","protein transport",107,25,31.07,861,"0.92647","0.80585","0.80585" +"GO:0006401","RNA catabolic process",19,2,5.52,1054,"0.98731","0.80610","0.80610" +"GO:0045087","innate immune response",19,3,5.52,916,"0.94546","0.80610","0.80610" +"GO:0044255","cellular lipid metabolic process",112,38,32.53,205,"0.14460","0.20724","0.80818" +"GO:0051338","regulation of transferase activity",36,9,10.45,602,"0.76117","0.80840","0.80840" +"GO:0099504","synaptic vesicle cycle",15,3,4.36,741,"0.85685","0.81099","0.81099" +"GO:0070201","regulation of establishment of protein l...",20,4,5.81,771,"0.87623","0.81146","0.81146" +"GO:0019752","carboxylic acid metabolic process",107,44,31.07,50,"0.00415","0.01972","0.81243" +"GO:0009889","regulation of biosynthetic process",289,77,83.93,730,"0.84810","0.69941","0.81629" +"GO:0006626","protein targeting to mitochondrion",13,4,3.78,422,"0.54944","0.81655","0.81655" +"GO:0070585","protein localization to mitochondrion",13,4,3.78,423,"0.54944","0.81655","0.81655" +"GO:0072655","establishment of protein localization to...",13,4,3.78,424,"0.54944","0.81655","0.81655" +"GO:0035220","wing disc development",10,1,2.9,967,"0.96789","0.81663","0.81663" +"GO:0002790","peptide secretion",15,4,4.36,535,"0.67511","0.81905","0.81905" +"GO:0009306","protein secretion",15,4,4.36,536,"0.67511","0.81905","0.81905" +"GO:1901564","organonitrogen compound metabolic proces...",673,196,195.44,391,"0.49650","0.63629","0.81910" +"GO:0007167","enzyme linked receptor protein signaling...",44,7,12.78,1052,"0.98662","0.82058","0.82058" +"GO:0070925","organelle assembly",64,19,18.59,392,"0.50214","0.25262","0.82102" +"GO:0051252","regulation of RNA metabolic process",270,69,78.41,851,"0.92229","0.78440","0.82135" +"GO:0006955","immune response",39,8,11.33,846,"0.91735","0.82153","0.82153" +"GO:0007179","transforming growth factor beta receptor...",11,2,3.19,762,"0.87423","0.82162","0.82162" +"GO:0080135","regulation of cellular response to stres...",34,7,9.87,818,"0.90421","0.82166","0.82166" +"GO:0030258","lipid modification",22,7,6.39,368,"0.46606","0.82455","0.82455" +"GO:0042981","regulation of apoptotic process",54,12,15.68,807,"0.90036","0.82521","0.82521" +"GO:0010564","regulation of cell cycle process",26,3,7.55,1084,"0.99144","0.82558","0.82558" +"GO:0048568","embryonic organ development",31,5,9,993,"0.96995","0.82598","0.82598" +"GO:0048731","system development",263,74,76.38,496,"0.65839","0.48999","0.82639" +"GO:0006022","aminoglycan metabolic process",26,7,7.55,521,"0.66666","0.82944","0.82944" +"GO:0050906","detection of stimulus involved in sensor...",10,3,2.9,459,"0.59158","0.83049","0.83049" +"GO:0006119","oxidative phosphorylation",11,2,3.19,763,"0.87423","0.83057","0.83057" +"GO:0021915","neural tube development",12,1,3.48,1043,"0.98389","0.83164","0.83164" +"GO:0035295","tube development",57,12,16.55,893,"0.93610","0.83259","0.83259" +"GO:0034097","response to cytokine",20,2,5.81,1074,"0.99060","0.83457","0.83457" +"GO:0045892","negative regulation of transcription, DN...",46,7,13.36,1080,"0.99133","0.83644","0.83644" +"GO:0051253","negative regulation of RNA metabolic pro...",46,7,13.36,1081,"0.99133","0.83644","0.83644" +"GO:1902679","negative regulation of RNA biosynthetic ...",46,7,13.36,1082,"0.99133","0.83644","0.83644" +"GO:1903507","negative regulation of nucleic acid-temp...",46,7,13.36,1083,"0.99133","0.83644","0.83644" +"GO:0043414","macromolecule methylation",25,3,7.26,1071,"0.98874","0.83645","0.83645" +"GO:0008104","protein localization",170,45,49.37,643,"0.80269","0.83794","0.83794" +"GO:0048863","stem cell differentiation",17,2,4.94,1001,"0.97703","0.83870","0.83870" +"GO:0016569","covalent chromatin modification",30,7,8.71,654,"0.81316","0.83906","0.83906" +"GO:0051648","vesicle localization",16,4,4.65,582,"0.72799","0.84349","0.84349" +"GO:0007018","microtubule-based movement",21,6,6.1,464,"0.60114","0.84531","0.84531" +"GO:0006082","organic acid metabolic process",108,44,31.36,53,"0.00510","0.02376","0.84597" +"GO:0043436","oxoacid metabolic process",108,44,31.36,54,"0.00510","0.02376","0.84597" +"GO:0030855","epithelial cell differentiation",28,8,8.13,461,"0.59340","0.84629","0.84629" +"GO:0032259","methylation",28,3,8.13,1110,"0.99509","0.84629","0.84629" +"GO:0019932","second-messenger-mediated signaling",15,2,4.36,943,"0.95889","0.84739","0.84739" +"GO:0071345","cellular response to cytokine stimulus",18,1,5.23,1124,"0.99797","0.84992","0.84992" +"GO:0007034","vacuolar transport",16,4,4.65,583,"0.72799","0.85018","0.85018" +"GO:0045055","regulated exocytosis",13,2,3.78,868,"0.92746","0.85235","0.85235" +"GO:0048667","cell morphogenesis involved in neuron di...",41,11,11.91,548,"0.68051","0.85509","0.85509" +"GO:0030163","protein catabolic process",47,9,13.65,931,"0.95752","0.85626","0.85626" +"GO:0090596","sensory organ morphogenesis",29,7,8.42,637,"0.78210","0.85837","0.85837" +"GO:0031401","positive regulation of protein modificat...",41,8,11.91,902,"0.94187","0.86058","0.86058" +"GO:0043543","protein acylation",18,2,5.23,1032,"0.98290","0.86300","0.86300" +"GO:0031323","regulation of cellular metabolic process",364,96,105.71,810,"0.90087","0.84478","0.86812" +"GO:0016241","regulation of macroautophagy",13,4,3.78,425,"0.54944","0.86835","0.86835" +"GO:0090287","regulation of cellular response to growt...",14,1,4.07,1091,"0.99192","0.86836","0.86836" +"GO:0030278","regulation of ossification",10,2,2.9,695,"0.83575","0.86908","0.86908" +"GO:0007049","cell cycle",84,19,24.39,873,"0.92830","0.86956","0.86956" +"GO:0043066","negative regulation of apoptotic process",36,7,10.45,882,"0.93334","0.87152","0.87152" +"GO:0009792","embryo development ending in birth or eg...",48,12,13.94,632,"0.78076","0.87267","0.87267" +"GO:0007444","imaginal disc development",15,1,4.36,1108,"0.99428","0.87292","0.87292" +"GO:0071702","organic substance transport",161,41,46.76,754,"0.87047","0.87300","0.87300" +"GO:0048598","embryonic morphogenesis",42,10,12.2,676,"0.82167","0.87329","0.87329" +"GO:0009798","axis specification",10,1,2.9,968,"0.96789","0.87341","0.87341" +"GO:0006493","protein O-linked glycosylation",12,2,3.48,824,"0.90424","0.87563","0.87563" +"GO:0051171","regulation of nitrogen compound metaboli...",339,91,98.45,731,"0.84814","0.80312","0.87784" +"GO:0050801","ion homeostasis",36,17,10.45,82,"0.01519","0.02491","0.87912" +"GO:0030111","regulation of Wnt signaling pathway",18,1,5.23,1125,"0.99797","0.87916","0.87916" +"GO:0000904","cell morphogenesis involved in different...",50,13,14.52,589,"0.73327","0.87958","0.87958" +"GO:0032501","multicellular organismal process",361,97,104.84,733,"0.85348","0.73828","0.87964" +"GO:0051276","chromosome organization",68,16,19.75,774,"0.87670","0.88007","0.88007" +"GO:0070848","response to growth factor",29,4,8.42,1048,"0.98464","0.88239","0.88239" +"GO:0014070","response to organic cyclic compound",45,10,13.07,781,"0.88386","0.88277","0.88277" +"GO:0042176","regulation of protein catabolic process",15,3,4.36,742,"0.85685","0.88427","0.88427" +"GO:0009790","embryo development",77,17,22.36,892,"0.93589","0.88485","0.88485" +"GO:0012501","programmed cell death",76,14,22.07,1072,"0.98888","0.88756","0.88756" +"GO:0007600","sensory perception",30,6,8.71,832,"0.90753","0.88834","0.88834" +"GO:0071103","DNA conformation change",15,3,4.36,743,"0.85685","0.88860","0.88860" +"GO:0043069","negative regulation of programmed cell d...",37,7,10.74,907,"0.94475","0.88871","0.88871" +"GO:0031503","protein-containing complex localization",13,2,3.78,869,"0.92746","0.88941","0.88941" +"GO:0006665","sphingolipid metabolic process",11,3,3.19,515,"0.66258","0.89011","0.89011" +"GO:0006914","autophagy",38,11,11.04,427,"0.56693","0.89066","0.89066" +"GO:0061919","process utilizing autophagic mechanism",38,11,11.04,428,"0.56693","0.89066","0.89066" +"GO:0045927","positive regulation of growth",12,1,3.48,1044,"0.98389","0.89125","0.89125" +"GO:0051650","establishment of vesicle localization",14,3,4.07,673,"0.82050","0.89182","0.89182" +"GO:0099003","vesicle-mediated transport in synapse",14,3,4.07,674,"0.82050","0.89182","0.89182" +"GO:0090090","negative regulation of canonical Wnt sig...",10,1,2.9,969,"0.96789","0.89302","0.89302" +"GO:0071705","nitrogen compound transport",135,35,39.2,662,"0.82042","0.89322","0.89322" +"GO:0048878","chemical homeostasis",50,20,14.52,135,"0.06133","0.08367","0.89431" +"GO:1901565","organonitrogen compound catabolic proces...",68,16,19.75,775,"0.87670","0.89538","0.89538" +"GO:0043062","extracellular structure organization",14,3,4.07,675,"0.82050","0.89589","0.89589" +"GO:0006397","mRNA processing",29,3,8.42,1118,"0.99630","0.89678","0.89678" +"GO:1901566","organonitrogen compound biosynthetic pro...",185,54,53.72,395,"0.51117","0.89704","0.89704" +"GO:0044271","cellular nitrogen compound biosynthetic ...",407,109,118.19,779,"0.87831","0.88596","0.89739" +"GO:0031329","regulation of cellular catabolic process",38,8,11.04,815,"0.90206","0.89999","0.89999" +"GO:0009100","glycoprotein metabolic process",42,10,12.2,677,"0.82167","0.90031","0.90031" +"GO:0060828","regulation of canonical Wnt signaling pa...",14,1,4.07,1092,"0.99192","0.90121","0.90121" +"GO:0035051","cardiocyte differentiation",13,7,3.78,125,"0.05253","0.02007","0.90197" +"GO:0042592","homeostatic process",87,27,25.27,297,"0.37784","0.24134","0.90481" +"GO:0016236","macroautophagy",17,5,4.94,438,"0.57794","0.90510","0.90510" +"GO:0009890","negative regulation of biosynthetic proc...",52,9,15.1,1034,"0.98334","0.90595","0.90595" +"GO:0031327","negative regulation of cellular biosynth...",52,9,15.1,1035,"0.98334","0.90595","0.90595" +"GO:1903311","regulation of mRNA metabolic process",12,1,3.48,1045,"0.98389","0.90631","0.90631" +"GO:0080090","regulation of primary metabolic process",348,92,101.06,798,"0.89006","0.86249","0.90661" +"GO:0007507","heart development",49,16,14.23,280,"0.33676","0.25500","0.90680" +"GO:0060491","regulation of cell projection assembly",16,3,4.65,793,"0.88659","0.90727","0.90727" +"GO:0120032","regulation of plasma membrane bounded ce...",16,3,4.65,794,"0.88659","0.90727","0.90727" +"GO:0043067","regulation of programmed cell death",55,12,15.97,842,"0.91377","0.90824","0.90824" +"GO:0000280","nuclear division",16,2,4.65,988,"0.96922","0.90915","0.90915" +"GO:0055080","cation homeostasis",31,16,9,62,"0.00647","0.01672","0.90962" +"GO:0098771","inorganic ion homeostasis",31,16,9,63,"0.00647","0.01672","0.90962" +"GO:0009895","negative regulation of catabolic process",13,3,3.78,625,"0.77657","0.91149","0.91149" +"GO:0043009","chordate embryonic development",41,8,11.91,903,"0.94187","0.91180","0.91180" +"GO:0016072","rRNA metabolic process",10,0,2.9,1152,"1.00000","0.91390","0.91390" +"GO:0009056","catabolic process",163,49,47.34,333,"0.41355","0.91407","0.91407" +"GO:0002791","regulation of peptide secretion",10,2,2.9,696,"0.83575","0.91547","0.91547" +"GO:0050708","regulation of protein secretion",10,2,2.9,697,"0.83575","0.91547","0.91547" +"GO:1990542","mitochondrial transmembrane transport",10,3,2.9,460,"0.59158","0.91547","0.91547" +"GO:0031099","regeneration",10,1,2.9,970,"0.96789","0.91599","0.91599" +"GO:0010506","regulation of autophagy",23,6,6.68,556,"0.69831","0.91661","0.91661" +"GO:0006954","inflammatory response",13,1,3.78,1065,"0.98859","0.91817","0.91817" +"GO:0048872","homeostasis of number of cells",13,1,3.78,1066,"0.98859","0.91817","0.91817" +"GO:0060548","negative regulation of cell death",39,8,11.33,847,"0.91735","0.91876","0.91876" +"GO:0042330","taxis",34,5,9.87,1049,"0.98491","0.91909","0.91909" +"GO:1905114","cell surface receptor signaling pathway ...",30,4,8.71,1059,"0.98805","0.91975","0.91975" +"GO:0001934","positive regulation of protein phosphory...",28,7,8.13,594,"0.74736","0.91991","0.91991" +"GO:0000819","sister chromatid segregation",11,2,3.19,764,"0.87423","0.92090","0.92090" +"GO:0006935","chemotaxis",33,5,9.58,1026,"0.98095","0.92141","0.92141" +"GO:0016570","histone modification",28,5,8.13,904,"0.94217","0.92160","0.92160" +"GO:0065008","regulation of biological quality",200,55,58.08,561,"0.71797","0.61643","0.92248" +"GO:0016071","mRNA metabolic process",49,5,14.23,1137,"0.99967","0.92378","0.92378" +"GO:0048193","Golgi vesicle transport",23,6,6.68,557,"0.69831","0.92392","0.92392" +"GO:0051703","intraspecies interaction between organis...",10,2,2.9,698,"0.83575","0.92460","0.92460" +"GO:0071363","cellular response to growth factor stimu...",28,3,8.13,1111,"0.99509","0.92495","0.92495" +"GO:0007568","aging",26,4,7.55,983,"0.96803","0.92504","0.92504" +"GO:0019219","regulation of nucleobase-containing comp...",274,70,79.57,856,"0.92432","0.89609","0.92505" +"GO:0009058","biosynthetic process",567,166,164.66,359,"0.46292","0.60583","0.92650" +"GO:0016055","Wnt signaling pathway",27,3,7.84,1103,"0.99351","0.92756","0.92756" +"GO:0198738","cell-cell signaling by wnt",27,3,7.84,1104,"0.99351","0.92756","0.92756" +"GO:0060485","mesenchyme development",13,2,3.78,870,"0.92746","0.92772","0.92772" +"GO:0008380","RNA splicing",20,2,5.81,1075,"0.99060","0.92789","0.92789" +"GO:0022618","ribonucleoprotein complex assembly",13,1,3.78,1067,"0.98859","0.92806","0.92806" +"GO:0071826","ribonucleoprotein complex subunit organi...",13,1,3.78,1068,"0.98859","0.92806","0.92806" +"GO:0051347","positive regulation of transferase activ...",19,2,5.52,1055,"0.98731","0.92945","0.92945" +"GO:0007368","determination of left/right symmetry",14,1,4.07,1093,"0.99192","0.92946","0.92946" +"GO:0009799","specification of symmetry",14,1,4.07,1094,"0.99192","0.92946","0.92946" +"GO:0009855","determination of bilateral symmetry",14,1,4.07,1095,"0.99192","0.92946","0.92946" +"GO:0019220","regulation of phosphate metabolic proces...",68,18,19.75,575,"0.72489","0.92992","0.92992" +"GO:0051174","regulation of phosphorus metabolic proce...",68,18,19.75,576,"0.72489","0.92992","0.92992" +"GO:0046879","hormone secretion",11,2,3.19,765,"0.87423","0.93019","0.93019" +"GO:0045444","fat cell differentiation",10,1,2.9,971,"0.96789","0.93139","0.93139" +"GO:1903530","regulation of secretion by cell",18,4,5.23,658,"0.81392","0.93297","0.93297" +"GO:0042327","positive regulation of phosphorylation",32,7,9.29,747,"0.86485","0.93354","0.93354" +"GO:0010468","regulation of gene expression",304,74,88.28,1020,"0.97860","0.89646","0.93407" +"GO:0007178","transmembrane receptor protein serine/th...",24,3,6.97,1050,"0.98523","0.93543","0.93543" +"GO:0048762","mesenchymal cell differentiation",11,2,3.19,766,"0.87423","0.93609","0.93609" +"GO:0030323","respiratory tube development",10,2,2.9,699,"0.83575","0.93652","0.93652" +"GO:0030324","lung development",10,2,2.9,700,"0.83575","0.93652","0.93652" +"GO:0097479","synaptic vesicle localization",12,2,3.48,825,"0.90424","0.93721","0.93721" +"GO:0007275","multicellular organism development",302,82,87.7,641,"0.79961","0.73099","0.93726" +"GO:0010038","response to metal ion",17,3,4.94,840,"0.91068","0.93844","0.93844" +"GO:0021700","developmental maturation",16,2,4.65,989,"0.96922","0.93952","0.93952" +"GO:0010558","negative regulation of macromolecule bio...",51,8,14.81,1085,"0.99191","0.93962","0.93962" +"GO:0003006","developmental process involved in reprod...",57,15,16.55,565,"0.72349","0.93992","0.93992" +"GO:0001822","kidney development",15,3,4.36,744,"0.85685","0.94126","0.94126" +"GO:0009914","hormone transport",12,2,3.48,826,"0.90424","0.94228","0.94228" +"GO:0045786","negative regulation of cell cycle",21,4,6.1,801,"0.89998","0.94249","0.94249" +"GO:0060541","respiratory system development",21,5,6.1,615,"0.77529","0.94334","0.94334" +"GO:0018205","peptidyl-lysine modification",20,2,5.81,1076,"0.99060","0.94354","0.94354" +"GO:0044242","cellular lipid catabolic process",18,5,5.23,486,"0.63501","0.94357","0.94357" +"GO:0098813","nuclear chromosome segregation",13,2,3.78,871,"0.92746","0.94371","0.94371" +"GO:0006839","mitochondrial transport",22,6,6.39,493,"0.65180","0.94390","0.94390" +"GO:0009617","response to bacterium",21,5,6.1,616,"0.77529","0.94460","0.94460" +"GO:0048569","post-embryonic animal organ development",13,1,3.78,1069,"0.98859","0.94485","0.94485" +"GO:0048562","embryonic organ morphogenesis",20,3,5.81,936,"0.95767","0.94507","0.94507" +"GO:0006396","RNA processing",65,5,18.88,1144,"1.00000","0.94552","0.94552" +"GO:0060070","canonical Wnt signaling pathway",17,2,4.94,1002,"0.97703","0.94730","0.94730" +"GO:0055065","metal ion homeostasis",25,14,7.26,49,"0.00415","0.00166","0.94744" +"GO:0030198","extracellular matrix organization",12,2,3.48,827,"0.90424","0.94792","0.94792" +"GO:0009057","macromolecule catabolic process",68,12,19.75,1073,"0.99014","0.94841","0.94841" +"GO:0015718","monocarboxylic acid transport",11,2,3.19,767,"0.87423","0.94942","0.94942" +"GO:0045934","negative regulation of nucleobase-contai...",49,8,14.23,1058,"0.98769","0.95042","0.95042" +"GO:0023061","signal release",18,3,5.23,877,"0.93003","0.95105","0.95105" +"GO:0001501","skeletal system development",18,3,5.23,878,"0.93003","0.95129","0.95129" +"GO:0002064","epithelial cell development",18,3,5.23,879,"0.93003","0.95129","0.95129" +"GO:0048736","appendage development",18,2,5.23,1033,"0.98290","0.95129","0.95129" +"GO:0007059","chromosome segregation",14,2,4.07,911,"0.94529","0.95247","0.95247" +"GO:0061024","membrane organization",44,12,12.78,498,"0.65868","0.95363","0.95363" +"GO:0006873","cellular ion homeostasis",24,13,6.97,67,"0.00829","0.00280","0.95388" +"GO:0030003","cellular cation homeostasis",24,13,6.97,68,"0.00829","0.00280","0.95388" +"GO:0001701","in utero embryonic development",21,2,6.1,1100,"0.99305","0.95419","0.95419" +"GO:0007411","axon guidance",19,3,5.52,917,"0.94546","0.95424","0.95424" +"GO:0097485","neuron projection guidance",19,3,5.52,918,"0.94546","0.95424","0.95424" +"GO:0072359","circulatory system development",66,20,19.17,354,"0.45634","0.32786","0.95624" +"GO:0030031","cell projection assembly",32,5,9.29,999,"0.97603","0.95627","0.95627" +"GO:0120031","plasma membrane bounded cell projection ...",32,5,9.29,1000,"0.97603","0.95627","0.95627" +"GO:0035107","appendage morphogenesis",16,2,4.65,990,"0.96922","0.95662","0.95662" +"GO:0006486","protein glycosylation",37,8,10.74,783,"0.88445","0.95727","0.95727" +"GO:0043413","macromolecule glycosylation",37,8,10.74,784,"0.88445","0.95727","0.95727" +"GO:0070085","glycosylation",37,8,10.74,785,"0.88445","0.95727","0.95727" +"GO:0032502","developmental process",356,99,103.38,587,"0.73082","0.80073","0.95821" +"GO:0009607","response to biotic stimulus",31,6,9,853,"0.92357","0.95846","0.95846" +"GO:0043207","response to external biotic stimulus",31,6,9,854,"0.92357","0.95846","0.95846" +"GO:0051707","response to other organism",31,6,9,855,"0.92357","0.95846","0.95846" +"GO:0071559","response to transforming growth factor b...",15,2,4.36,944,"0.95889","0.95929","0.95929" +"GO:0071560","cellular response to transforming growth...",15,2,4.36,945,"0.95889","0.95929","0.95929" +"GO:0007548","sex differentiation",16,4,4.65,584,"0.72799","0.95980","0.95980" +"GO:0098542","defense response to other organism",21,4,6.1,802,"0.89998","0.96190","0.96190" +"GO:0033044","regulation of chromosome organization",12,1,3.48,1046,"0.98389","0.96316","0.96316" +"GO:0060255","regulation of macromolecule metabolic pr...",359,91,104.26,949,"0.96006","0.86887","0.96371" +"GO:0006260","DNA replication",13,3,3.78,626,"0.77657","0.96379","0.96379" +"GO:0010467","gene expression",407,85,118.19,1143,"0.99998","0.96316","0.96525" +"GO:0044782","cilium organization",20,2,5.81,1077,"0.99060","0.96543","0.96543" +"GO:0060271","cilium assembly",20,2,5.81,1078,"0.99060","0.96543","0.96543" +"GO:0009101","glycoprotein biosynthetic process",38,9,11.04,660,"0.81841","0.96570","0.96570" +"GO:0006790","sulfur compound metabolic process",20,9,5.81,168,"0.09457","0.06166","0.96628" +"GO:0031667","response to nutrient levels",19,4,5.52,729,"0.84775","0.96674","0.96674" +"GO:2000113","negative regulation of cellular macromol...",50,7,14.52,1119,"0.99648","0.96684","0.96684" +"GO:0006875","cellular metal ion homeostasis",22,13,6.39,25,"0.00303","0.00103","0.96686" +"GO:0048608","reproductive structure development",21,3,6.1,956,"0.96729","0.96731","0.96731" +"GO:0048856","anatomical structure development",328,89,95.25,651,"0.81171","0.78581","0.96742" +"GO:0006473","protein acetylation",11,0,3.19,1153,"1.00000","0.96866","0.96866" +"GO:0006475","internal protein amino acid acetylation",11,0,3.19,1154,"1.00000","0.96866","0.96866" +"GO:0018393","internal peptidyl-lysine acetylation",11,0,3.19,1155,"1.00000","0.96866","0.96866" +"GO:0018394","peptidyl-lysine acetylation",11,0,3.19,1156,"1.00000","0.96866","0.96866" +"GO:0008152","metabolic process",1430,419,415.28,299,"0.38246","0.74513","0.96916" +"GO:0009987","cellular process",1660,464,482.07,981,"0.96794","0.96771","0.96998" +"GO:0009886","post-embryonic animal morphogenesis",11,1,3.19,1009,"0.97725","0.97003","0.97003" +"GO:0090092","regulation of transmembrane receptor pro...",11,0,3.19,1157,"1.00000","0.97003","0.97003" +"GO:0044262","cellular carbohydrate metabolic process",17,5,4.94,439,"0.57794","0.97014","0.97014" +"GO:0050803","regulation of synapse structure or activ...",16,2,4.65,991,"0.96922","0.97090","0.97090" +"GO:0016573","histone acetylation",10,0,2.9,1158,"1.00000","0.97148","0.97148" +"GO:0017038","protein import",11,3,3.19,516,"0.66258","0.97168","0.97168" +"GO:0034504","protein localization to nucleus",10,1,2.9,972,"0.96789","0.97180","0.97180" +"GO:0050807","regulation of synapse organization",15,2,4.36,946,"0.95889","0.97270","0.97270" +"GO:0002165","instar larval or pupal development",10,1,2.9,973,"0.96789","0.97273","0.97273" +"GO:0007552","metamorphosis",10,1,2.9,974,"0.96789","0.97273","0.97273" +"GO:0007560","imaginal disc morphogenesis",10,1,2.9,975,"0.96789","0.97273","0.97273" +"GO:0048563","post-embryonic animal organ morphogenesi...",10,1,2.9,976,"0.96789","0.97273","0.97273" +"GO:0048705","skeletal system morphogenesis",10,2,2.9,701,"0.83575","0.97273","0.97273" +"GO:0048707","instar larval or pupal morphogenesis",10,1,2.9,977,"0.96789","0.97273","0.97273" +"GO:0000003","reproduction",95,22,27.59,852,"0.92246","0.97399","0.97399" +"GO:0016050","vesicle organization",14,2,4.07,912,"0.94529","0.97451","0.97451" +"GO:0016070","RNA metabolic process",360,80,104.55,1132,"0.99937","0.97420","0.97486" +"GO:0048489","synaptic vesicle transport",10,1,2.9,978,"0.96789","0.97545","0.97545" +"GO:0097480","establishment of synaptic vesicle locali...",10,1,2.9,979,"0.96789","0.97545","0.97545" +"GO:0007416","synapse assembly",13,2,3.78,872,"0.92746","0.97632","0.97632" +"GO:0018193","peptidyl-amino acid modification",52,9,15.1,1036,"0.98334","0.97659","0.97659" +"GO:0043933","protein-containing complex subunit organ...",108,24,31.36,948,"0.95890","0.97845","0.97845" +"GO:0006464","cellular protein modification process",354,96,102.8,679,"0.82308","0.97888","0.97888" +"GO:0036211","protein modification process",354,96,102.8,680,"0.82308","0.97888","0.97888" +"GO:0034470","ncRNA processing",25,1,7.26,1139,"0.99982","0.97905","0.97905" +"GO:0006974","cellular response to DNA damage stimulus",44,5,12.78,1131,"0.99874","0.97909","0.97909" +"GO:0022607","cellular component assembly",176,44,51.11,829,"0.90700","0.92210","0.97933" +"GO:0033674","positive regulation of kinase activity",15,1,4.36,1109,"0.99428","0.97956","0.97956" +"GO:0044085","cellular component biogenesis",190,46,55.18,920,"0.94855","0.94736","0.97985" +"GO:0065003","protein-containing complex assembly",97,22,28.17,898,"0.93901","0.98072","0.98072" +"GO:0007031","peroxisome organization",10,2,2.9,702,"0.83575","0.98124","0.98124" +"GO:0065004","protein-DNA complex assembly",10,0,2.9,1159,"1.00000","0.98150","0.98150" +"GO:0071824","protein-DNA complex subunit organization",10,0,2.9,1160,"1.00000","0.98150","0.98150" +"GO:0009894","regulation of catabolic process",45,9,13.07,899,"0.93968","0.98199","0.98199" +"GO:0043603","cellular amide metabolic process",71,13,20.62,1057,"0.98742","0.98216","0.98216" +"GO:0043412","macromolecule modification",368,98,106.87,780,"0.87984","0.98254","0.98254" +"GO:0001763","morphogenesis of a branching structure",10,2,2.9,703,"0.83575","0.98301","0.98301" +"GO:0006814","sodium ion transport",21,5,6.1,617,"0.77529","0.98336","0.98336" +"GO:0034641","cellular nitrogen compound metabolic pro...",549,134,159.43,1122,"0.99757","0.97824","0.98356" +"GO:1901576","organic substance biosynthetic process",547,155,158.85,539,"0.67900","0.85123","0.98384" +"GO:1901137","carbohydrate derivative biosynthetic pro...",92,31,26.72,219,"0.18683","0.30936","0.98482" +"GO:1901360","organic cyclic compound metabolic proces...",529,140,153.62,897,"0.93863","0.98137","0.98512" +"GO:2001020","regulation of response to DNA damage sti...",11,1,3.19,1010,"0.97725","0.98515","0.98515" +"GO:0009991","response to extracellular stimulus",20,4,5.81,772,"0.87623","0.98525","0.98525" +"GO:0016192","vesicle-mediated transport",139,32,40.37,937,"0.95859","0.98554","0.98554" +"GO:0043604","amide biosynthetic process",56,9,16.26,1097,"0.99253","0.98599","0.98599" +"GO:0006725","cellular aromatic compound metabolic pro...",508,130,147.53,1016,"0.97750","0.98356","0.98671" +"GO:0046483","heterocycle metabolic process",508,130,147.53,1017,"0.97750","0.98356","0.98671" +"GO:0006281","DNA repair",28,4,8.13,1024,"0.98032","0.98673","0.98673" +"GO:0006518","peptide metabolic process",53,6,15.39,1135,"0.99951","0.98676","0.98676" +"GO:0006950","response to stress",198,48,57.5,926,"0.95095","0.98680","0.98680" +"GO:0034622","cellular protein-containing complex asse...",67,15,19.46,844,"0.91493","0.98682","0.98682" +"GO:0019222","regulation of metabolic process",389,99,112.97,951,"0.96267","0.88036","0.98718" +"GO:0006412","translation",47,5,13.65,1133,"0.99943","0.98828","0.98828" +"GO:0043043","peptide biosynthetic process",47,5,13.65,1134,"0.99943","0.98828","0.98828" +"GO:0006352","DNA-templated transcription, initiation",11,1,3.19,1011,"0.97725","0.98835","0.98835" +"GO:0006139","nucleobase-containing compound metabolic...",485,123,140.85,1027,"0.98110","0.98528","0.98839" +"GO:0006913","nucleocytoplasmic transport",12,2,3.48,828,"0.90424","0.98934","0.98934" +"GO:0070997","neuron death",10,2,2.9,704,"0.83575","0.98941","0.98941" +"GO:1901214","regulation of neuron death",10,2,2.9,705,"0.83575","0.98941","0.98941" +"GO:0006310","DNA recombination",13,1,3.78,1070,"0.98859","0.98955","0.98955" +"GO:0090304","nucleic acid metabolic process",395,85,114.71,1141,"0.99991","0.98830","0.98988" +"GO:0008033","tRNA processing",11,1,3.19,1012,"0.97725","0.99078","0.99078" +"GO:0033554","cellular response to stress",94,16,27.3,1123,"0.99792","0.99092","0.99092" +"GO:0034660","ncRNA metabolic process",36,2,10.45,1142,"0.99994","0.99105","0.99105" +"GO:0009896","positive regulation of catabolic process",22,3,6.39,997,"0.97482","0.99124","0.99124" +"GO:0048589","developmental growth",42,7,12.2,1022,"0.97959","0.99181","0.99181" +"GO:0044237","cellular metabolic process",1111,315,322.64,606,"0.77079","0.98120","0.99188" +"GO:0071704","organic substance metabolic process",1213,345,352.26,600,"0.76011","0.96108","0.99232" +"GO:0042594","response to starvation",11,1,3.19,1013,"0.97725","0.99260","0.99260" +"GO:0006733","oxidoreduction coenzyme metabolic proces...",21,12,6.1,61,"0.00636","0.02496","0.99292" +"GO:0031331","positive regulation of cellular cataboli...",17,2,4.94,1003,"0.97703","0.99324","0.99324" +"GO:0045860","positive regulation of protein kinase ac...",14,1,4.07,1096,"0.99192","0.99374","0.99374" +"GO:0006807","nitrogen compound metabolic process",1007,276,292.44,900,"0.94039","0.99285","0.99376" +"GO:0044238","primary metabolic process",1135,325,329.61,540,"0.67902","0.99041","0.99379" +"GO:0040007","growth",58,12,16.84,908,"0.94527","0.99418","0.99418" +"GO:0044249","cellular biosynthetic process",538,152,156.24,553,"0.69481","0.91562","0.99430" +"GO:0006399","tRNA metabolic process",20,2,5.81,1079,"0.99060","0.99505","0.99505" +"GO:0061458","reproductive system development",23,4,6.68,891,"0.93573","0.99554","0.99554" +"GO:0043170","macromolecule metabolic process",868,217,252.07,1136,"0.99963","0.99555","0.99620" +"GO:0044260","cellular macromolecule metabolic process",707,178,205.32,1121,"0.99726","0.99559","0.99634" +"GO:0071840","cellular component organization or bioge...",401,93,116.45,1128,"0.99836","0.99244","0.99728" +"GO:0022613","ribonucleoprotein complex biogenesis",25,1,7.26,1140,"0.99982","0.99735","0.99735" +"GO:0019538","protein metabolic process",499,130,144.91,930,"0.95750","0.99749","0.99749" +"GO:0016043","cellular component organization",389,92,112.97,1117,"0.99613","0.98496","0.99762" +"GO:0051169","nuclear transport",14,2,4.07,913,"0.94529","0.99763","0.99763" +"GO:0019725","cellular homeostasis",41,15,11.91,218,"0.18278","0.06471","0.99771" +"GO:0007005","mitochondrion organization",42,9,12.2,809,"0.90078","0.99776","0.99776" +"GO:0042221","response to chemical",205,49,59.53,953,"0.96405","0.99788","0.99788" +"GO:0010259","multicellular organism aging",10,1,2.9,980,"0.96789","0.99807","0.99807" +"GO:0042254","ribosome biogenesis",16,0,4.65,1161,"1.00000","0.99831","0.99831" +"GO:0044267","cellular protein metabolic process",421,106,122.26,1015,"0.97745","0.99832","0.99832" +"GO:0010562","positive regulation of phosphorus metabo...",34,7,9.87,819,"0.90421","0.99875","0.99875" +"GO:0045937","positive regulation of phosphate metabol...",34,7,9.87,820,"0.90421","0.99875","0.99875" +"GO:0072594","establishment of protein localization to...",23,5,6.68,720,"0.84309","0.99878","0.99878" +"GO:0015931","nucleobase-containing compound transport",12,1,3.48,1047,"0.98389","0.99901","0.99901" +"GO:0055082","cellular chemical homeostasis",27,14,7.84,75,"0.01017","0.00357","0.99905" +"GO:0010256","endomembrane system organization",24,4,6.97,925,"0.94885","0.99912","0.99912" +"GO:0009059","macromolecule biosynthetic process",398,92,115.58,1129,"0.99849","0.99897","0.99932" +"GO:0034645","cellular macromolecule biosynthetic proc...",395,91,114.71,1130,"0.99862","0.99912","0.99933" +"GO:0006996","organelle organization",265,65,76.96,955,"0.96478","0.99868","0.99958" +"GO:0006259","DNA metabolic process",49,7,14.23,1114,"0.99557","0.99993","0.99993" +"GO:0051649","establishment of localization in cell",161,38,46.76,928,"0.95420","0.99994","0.99994" +"GO:0046907","intracellular transport",145,33,42.11,957,"0.96754","0.99994","0.99994" +"GO:0051052","regulation of DNA metabolic process",11,1,3.19,1014,"0.97725","0.99998","0.99998" +"GO:0008150","biological_process",2345,681,681,1162,"1.00000","1.00000","1.00000" +"GO:0016053","organic acid biosynthetic process",34,20,9.87,6,"0.00025","0.00073","1.00000" +"GO:0019362","pyridine nucleotide metabolic process",19,12,5.52,18,"0.00199","0.00795","1.00000" +"GO:0046390","ribose phosphate biosynthetic process",40,20,11.62,45,"0.00388","0.00705","1.00000" +"GO:0072503","cellular divalent inorganic cation homeo...",17,13,4.94,3,"6.7e-05","2.7e-05","1.00000" diff --git a/GO_enrichment_output/contrast_postlaying_emerging_upregulated.csv b/GO_enrichment_output/contrast_postlaying_emerging_upregulated.csv index 1a306e0..aa985b1 100644 --- a/GO_enrichment_output/contrast_postlaying_emerging_upregulated.csv +++ b/GO_enrichment_output/contrast_postlaying_emerging_upregulated.csv @@ -3,4 +3,2960 @@ "GO:0006260","DNA replication",69,44,18.19,2,"4.4e-11","2.0e-10","2.8e-05" "GO:0006270","DNA replication initiation",10,9,2.64,14,"4.5e-05","8.2e-05","8.2e-05" "GO:0006261","DNA-dependent DNA replication",32,22,8.44,6,"5.5e-07","2.9e-06","0.0011" -"GO:0000398","mRNA splicing, via spliceosome",59,22,15.56,72,"0.041","0.0012","0.0012" +"GO:0000398","mRNA splicing, via spliceosome",59,22,15.56,72,"0.04123","0.00118","0.0012" +"GO:0016070","RNA metabolic process",678,186,178.76,393,"0.24867","2.0e-05","0.0014" +"GO:0016567","protein ubiquitination",80,26,21.09,199,"0.12910","0.00203","0.0020" +"GO:0006310","DNA recombination",23,13,6.06,19,"0.00202","0.00238","0.0024" +"GO:0022402","cell cycle process",125,50,32.96,17,"0.00046","0.00308","0.0031" +"GO:0048511","rhythmic process",32,13,8.44,88,"0.05477","0.00392","0.0039" +"GO:0036297","interstrand cross-link repair",4,4,1.05,25,"0.00480","0.00419","0.0042" +"GO:0097237","cellular response to toxic substance",18,5,4.75,964,"0.53531","0.00425","0.0042" +"GO:0000077","DNA damage checkpoint",10,6,2.64,54,"0.02537","0.00464","0.0046" +"GO:0051726","regulation of cell cycle",91,41,23.99,15,"7.1e-05","0.00080","0.0048" +"GO:0007017","microtubule-based process",85,31,22.41,53,"0.02408","0.00427","0.0051" +"GO:0051276","chromosome organization",171,59,45.08,31,"0.00929","0.00516","0.0052" +"GO:0006302","double-strand break repair",16,9,4.22,32,"0.01060","0.00545","0.0054" +"GO:0034605","cellular response to heat",21,5,5.54,1540,"0.68574","0.00679","0.0068" +"GO:0050778","positive regulation of immune response",33,11,8.7,376,"0.23275","0.00712","0.0071" +"GO:0051052","regulation of DNA metabolic process",19,10,5.01,35,"0.01288","0.00758","0.0076" +"GO:0031109","microtubule polymerization or depolymeri...",14,4,3.69,944,"0.52650","0.00826","0.0083" +"GO:0006749","glutathione metabolic process",8,5,2.11,61,"0.03392","0.00834","0.0083" +"GO:0080134","regulation of response to stress",80,26,21.09,200,"0.12910","0.00851","0.0085" +"GO:0042542","response to hydrogen peroxide",17,5,4.48,818,"0.47840","0.00865","0.0086" +"GO:0017145","stem cell division",7,5,1.85,40,"0.01621","0.00970","0.0097" +"GO:0006400","tRNA modification",28,9,7.38,540,"0.30620","0.00984","0.0098" +"GO:0070301","cellular response to hydrogen peroxide",15,4,3.95,1077,"0.58736","0.01015","0.0101" +"GO:1900407","regulation of cellular response to oxida...",15,6,3.95,312,"0.17946","0.01015","0.0101" +"GO:0033044","regulation of chromosome organization",29,13,7.65,51,"0.02378","0.01043","0.0104" +"GO:1903311","regulation of mRNA metabolic process",22,6,5.8,975,"0.54270","0.01053","0.0105" +"GO:0042026","protein refolding",20,6,5.27,774,"0.43841","0.01195","0.0120" +"GO:0051338","regulation of transferase activity",37,14,9.76,118,"0.08303","0.01199","0.0120" +"GO:0000819","sister chromatid segregation",24,13,6.33,21,"0.00336","0.01212","0.0121" +"GO:0046785","microtubule polymerization",13,4,3.43,792,"0.46157","0.01311","0.0131" +"GO:2001234","negative regulation of apoptotic signali...",13,5,3.43,380,"0.24118","0.01311","0.0131" +"GO:0000075","cell cycle checkpoint",24,15,6.33,16,"0.00020","0.00015","0.0131" +"GO:0006954","inflammatory response",8,4,2.11,201,"0.13325","0.01319","0.0132" +"GO:0007059","chromosome segregation",30,15,7.91,24,"0.00456","0.01326","0.0133" +"GO:0007093","mitotic cell cycle checkpoint",14,8,3.69,37,"0.01417","0.01366","0.0137" +"GO:0080135","regulation of cellular response to stres...",55,19,14.5,151,"0.11002","0.01510","0.0151" +"GO:0002697","regulation of immune effector process",14,3,3.69,1827,"0.75711","0.01531","0.0153" +"GO:1900408","negative regulation of cellular response...",14,6,3.69,219,"0.13668","0.01531","0.0153" +"GO:1902883","negative regulation of response to oxida...",14,6,3.69,220,"0.13668","0.01531","0.0153" +"GO:1903201","regulation of oxidative stress-induced c...",14,5,3.69,531,"0.29924","0.01531","0.0153" +"GO:2001023","regulation of response to drug",14,4,3.69,945,"0.52650","0.01531","0.0153" +"GO:0006396","RNA processing",221,62,58.27,535,"0.30078","3.2e-05","0.0155" +"GO:0007178","transmembrane receptor protein serine/th...",19,6,5.01,631,"0.38441","0.01705","0.0171" +"GO:0006352","DNA-templated transcription, initiation",30,11,7.91,242,"0.14088","0.01712","0.0171" +"GO:0071806","protein transmembrane transport",20,6,5.27,775,"0.43841","0.01712","0.0171" +"GO:2001252","positive regulation of chromosome organi...",11,6,2.9,76,"0.04359","0.01764","0.0176" +"GO:0043101","purine-containing compound salvage",4,3,1.05,92,"0.05868","0.01770","0.0177" +"GO:0000070","mitotic sister chromatid segregation",18,10,4.75,29,"0.00794","0.01771","0.0177" +"GO:2001020","regulation of response to DNA damage sti...",13,7,3.43,57,"0.03190","0.01809","0.0181" +"GO:0070534","protein K63-linked ubiquitination",11,6,2.9,77,"0.04359","0.01813","0.0181" +"GO:0042078","germ-line stem cell division",4,3,1.05,93,"0.05868","0.01854","0.0185" +"GO:0098728","germline stem cell asymmetric division",4,3,1.05,94,"0.05868","0.01854","0.0185" +"GO:0000278","mitotic cell cycle",85,34,22.41,22,"0.00371","0.01889","0.0189" +"GO:0007041","lysosomal transport",15,3,3.95,2000,"0.79955","0.01955","0.0195" +"GO:0071236","cellular response to antibiotic",17,5,4.48,819,"0.47840","0.01955","0.0196" +"GO:0006751","glutathione catabolic process",4,3,1.05,95,"0.05868","0.01963","0.0196" +"GO:0043171","peptide catabolic process",4,3,1.05,96,"0.05868","0.01963","0.0196" +"GO:0007622","rhythmic behavior",4,3,1.05,97,"0.05868","0.01987","0.0199" +"GO:0007020","microtubule nucleation",12,4,3.16,641,"0.39376","0.02076","0.0208" +"GO:0000079","regulation of cyclin-dependent protein s...",6,4,1.58,78,"0.04508","0.02110","0.0211" +"GO:0006289","nucleotide-excision repair",13,4,3.43,793,"0.46157","0.02126","0.0213" +"GO:0030510","regulation of BMP signaling pathway",5,2,1.32,659,"0.39599","0.02197","0.0220" +"GO:0009791","post-embryonic development",31,9,8.17,752,"0.43446","0.02243","0.0224" +"GO:0035690","cellular response to drug",20,6,5.27,776,"0.43841","0.02255","0.0226" +"GO:0043484","regulation of RNA splicing",17,5,4.48,820,"0.47840","0.02290","0.0229" +"GO:0002699","positive regulation of immune effector p...",13,3,3.43,1731,"0.70769","0.02307","0.0231" +"GO:0036465","synaptic vesicle recycling",13,3,3.43,1732,"0.70769","0.02307","0.0231" +"GO:0036474","cell death in response to hydrogen perox...",13,4,3.43,794,"0.46157","0.02307","0.0231" +"GO:0048024","regulation of mRNA splicing, via spliceo...",13,5,3.43,381,"0.24118","0.02307","0.0231" +"GO:0050684","regulation of mRNA processing",13,5,3.43,382,"0.24118","0.02307","0.0231" +"GO:1901031","regulation of response to reactive oxyge...",13,4,3.43,795,"0.46157","0.02307","0.0231" +"GO:1903202","negative regulation of oxidative stress-...",13,5,3.43,383,"0.24118","0.02307","0.0231" +"GO:1903205","regulation of hydrogen peroxide-induced ...",13,4,3.43,796,"0.46157","0.02307","0.0231" +"GO:2001038","regulation of cellular response to drug",13,4,3.43,797,"0.46157","0.02307","0.0231" +"GO:0006913","nucleocytoplasmic transport",49,16,12.92,358,"0.19721","0.02326","0.0233" +"GO:0051169","nuclear transport",49,16,12.92,359,"0.19721","0.02326","0.0233" +"GO:0006282","regulation of DNA repair",6,4,1.58,79,"0.04508","0.02371","0.0237" +"GO:0034762","regulation of transmembrane transport",15,7,3.95,108,"0.07250","0.02375","0.0237" +"GO:0044743","protein transmembrane import into intrac...",19,5,5.01,1133,"0.58921","0.02386","0.0239" +"GO:0090287","regulation of cellular response to growt...",15,4,3.95,1078,"0.58736","0.02436","0.0244" +"GO:0007623","circadian rhythm",17,9,4.48,42,"0.01736","0.02484","0.0248" +"GO:0042752","regulation of circadian rhythm",14,8,3.69,38,"0.01417","0.02585","0.0259" +"GO:0008356","asymmetric cell division",6,4,1.58,80,"0.04508","0.02601","0.0260" +"GO:0098722","asymmetric stem cell division",6,4,1.58,81,"0.04508","0.02601","0.0260" +"GO:1901987","regulation of cell cycle phase transitio...",20,10,5.27,49,"0.01980","0.02610","0.0261" +"GO:0031347","regulation of defense response",26,8,6.85,622,"0.37459","0.02755","0.0275" +"GO:0030177","positive regulation of Wnt signaling pat...",7,2,1.85,1087,"0.58869","0.02823","0.0282" +"GO:0007034","vacuolar transport",25,4,6.59,2308,"0.92769","0.02823","0.0282" +"GO:1901362","organic cyclic compound biosynthetic pro...",487,139,128.4,195,"0.12655","0.02849","0.0285" +"GO:1902882","regulation of response to oxidative stre...",16,6,4.22,372,"0.22676","0.02893","0.0289" +"GO:0010564","regulation of cell cycle process",47,20,12.39,33,"0.01112","0.02897","0.0290" +"GO:0000245","spliceosomal complex assembly",5,4,1.32,48,"0.01897","0.02909","0.0291" +"GO:0034654","nucleobase-containing compound biosynthe...",465,133,122.6,196,"0.12695","0.02946","0.0295" +"GO:0034764","positive regulation of transmembrane tra...",10,4,2.64,400,"0.25657","0.02958","0.0296" +"GO:0097659","nucleic acid-templated transcription",410,116,108.1,317,"0.18397","0.02996","0.0300" +"GO:0035966","response to topologically incorrect prot...",27,7,7.12,1148,"0.59415","0.03005","0.0301" +"GO:0032774","RNA biosynthetic process",415,118,109.42,252,"0.16421","0.03010","0.0301" +"GO:0050764","regulation of phagocytosis",16,3,4.22,2058,"0.83559","0.03029","0.0303" +"GO:0033045","regulation of sister chromatid segregati...",8,5,2.11,62,"0.03392","0.03040","0.0304" +"GO:0033047","regulation of mitotic sister chromatid s...",8,5,2.11,63,"0.03392","0.03040","0.0304" +"GO:0051304","chromosome separation",8,5,2.11,64,"0.03392","0.03040","0.0304" +"GO:0051983","regulation of chromosome segregation",8,5,2.11,65,"0.03392","0.03040","0.0304" +"GO:0006457","protein folding",71,15,18.72,2178,"0.87689","0.03068","0.0307" +"GO:1903047","mitotic cell cycle process",71,29,18.72,27,"0.00503","0.03073","0.0307" +"GO:0048285","organelle fission",51,21,13.45,39,"0.01438","0.03167","0.0317" +"GO:0019438","aromatic compound biosynthetic process",474,136,124.97,153,"0.11444","0.03247","0.0325" +"GO:2001243","negative regulation of intrinsic apoptot...",11,5,2.9,233,"0.13730","0.03279","0.0328" +"GO:0007040","lysosome organization",14,3,3.69,1828,"0.75711","0.03304","0.0330" +"GO:0080171","lytic vacuole organization",14,3,3.69,1829,"0.75711","0.03304","0.0330" +"GO:0006351","transcription, DNA-templated",409,115,107.83,363,"0.20819","0.03349","0.0335" +"GO:0018130","heterocycle biosynthetic process",481,138,126.82,152,"0.11242","0.03394","0.0339" +"GO:0048488","synaptic vesicle endocytosis",12,3,3.16,1437,"0.65089","0.03468","0.0347" +"GO:0140238","presynaptic endocytosis",12,3,3.16,1438,"0.65089","0.03468","0.0347" +"GO:1901032","negative regulation of response to react...",12,4,3.16,642,"0.39376","0.03468","0.0347" +"GO:1903206","negative regulation of hydrogen peroxide...",12,4,3.16,643,"0.39376","0.03468","0.0347" +"GO:2001024","negative regulation of response to drug",12,4,3.16,644,"0.39376","0.03468","0.0347" +"GO:2001039","negative regulation of cellular response...",12,4,3.16,645,"0.39376","0.03468","0.0347" +"GO:0031349","positive regulation of defense response",19,7,5.01,364,"0.21340","0.03500","0.0350" +"GO:0034767","positive regulation of ion transmembrane...",8,4,2.11,202,"0.13325","0.03515","0.0352" +"GO:1904064","positive regulation of cation transmembr...",8,4,2.11,203,"0.13325","0.03515","0.0352" +"GO:0045005","DNA-dependent DNA replication maintenanc...",3,3,0.79,44,"0.01827","0.03623","0.0362" +"GO:0001959","regulation of cytokine-mediated signalin...",7,3,1.85,418,"0.27227","0.03720","0.0372" +"GO:0001961","positive regulation of cytokine-mediated...",7,3,1.85,419,"0.27227","0.03720","0.0372" +"GO:0060759","regulation of response to cytokine stimu...",7,3,1.85,420,"0.27227","0.03720","0.0372" +"GO:0060760","positive regulation of response to cytok...",7,3,1.85,421,"0.27227","0.03720","0.0372" +"GO:0045786","negative regulation of cell cycle",38,18,10.02,23,"0.00411","0.00247","0.0373" +"GO:0034765","regulation of ion transmembrane transpor...",13,7,3.43,58,"0.03190","0.03749","0.0375" +"GO:0090092","regulation of transmembrane receptor pro...",13,5,3.43,384,"0.24118","0.03749","0.0375" +"GO:1904062","regulation of cation transmembrane trans...",13,7,3.43,59,"0.03190","0.03749","0.0375" +"GO:2001242","regulation of intrinsic apoptotic signal...",14,6,3.69,221,"0.13668","0.03762","0.0376" +"GO:0031145","anaphase-promoting complex-dependent cat...",7,4,1.85,119,"0.08358","0.03775","0.0377" +"GO:0016074","snoRNA metabolic process",3,2,0.79,257,"0.17178","0.03864","0.0386" +"GO:0034404","nucleobase-containing small molecule bio...",14,6,3.69,222,"0.13668","0.03935","0.0393" +"GO:0000387","spliceosomal snRNP assembly",10,5,2.64,135,"0.09471","0.03948","0.0395" +"GO:0016075","rRNA catabolic process",3,2,0.79,258,"0.17178","0.03951","0.0395" +"GO:0034661","ncRNA catabolic process",3,2,0.79,259,"0.17178","0.03951","0.0395" +"GO:0050727","regulation of inflammatory response",5,2,1.32,660,"0.39599","0.03972","0.0397" +"GO:0098813","nuclear chromosome segregation",27,13,7.12,34,"0.01202","0.03995","0.0400" +"GO:0030488","tRNA methylation",9,4,2.37,345,"0.19182","0.04057","0.0406" +"GO:0017038","protein import",31,9,8.17,753,"0.43446","0.04076","0.0408" +"GO:0051170","import into nucleus",25,7,6.59,910,"0.50216","0.04088","0.0409" +"GO:0007062","sister chromatid cohesion",10,6,2.64,55,"0.02537","0.04124","0.0412" +"GO:1901796","regulation of signal transduction by p53...",10,4,2.64,401,"0.25657","0.04208","0.0421" +"GO:0043467","regulation of generation of precursor me...",6,3,1.58,323,"0.19140","0.04227","0.0423" +"GO:0032355","response to estradiol",15,3,3.95,2001,"0.79955","0.04261","0.0426" +"GO:0046686","response to cadmium ion",15,6,3.95,313,"0.17946","0.04261","0.0426" +"GO:0000288","nuclear-transcribed mRNA catabolic proce...",7,2,1.85,1088,"0.58869","0.04345","0.0435" +"GO:0043487","regulation of RNA stability",7,1,1.85,2187,"0.88294","0.04345","0.0435" +"GO:0043488","regulation of mRNA stability",7,1,1.85,2188,"0.88294","0.04345","0.0435" +"GO:0032784","regulation of DNA-templated transcriptio...",8,3,2.11,585,"0.35567","0.04353","0.0435" +"GO:0065003","protein-containing complex assembly",130,38,34.27,397,"0.25279","0.04404","0.0440" +"GO:0000280","nuclear division",47,19,12.39,52,"0.02395","0.04484","0.0448" +"GO:0071363","cellular response to growth factor stimu...",22,5,5.8,1782,"0.72780","0.04494","0.0449" +"GO:0045089","positive regulation of innate immune res...",15,5,3.95,602,"0.35913","0.04507","0.0451" +"GO:0072594","establishment of protein localization to...",58,13,15.29,1987,"0.79784","0.04567","0.0457" +"GO:0044272","sulfur compound biosynthetic process",10,3,2.64,920,"0.51518","0.04664","0.0466" +"GO:0007018","microtubule-based movement",45,13,11.86,734,"0.40462","0.04683","0.0468" +"GO:1905392","plant organ morphogenesis",6,2,1.58,848,"0.49828","0.04704","0.0470" +"GO:0050663","cytokine secretion",4,1,1.05,1567,"0.70624","0.04719","0.0472" +"GO:2001257","regulation of cation channel activity",9,6,2.37,36,"0.01302","0.04761","0.0476" +"GO:0070841","inclusion body assembly",12,3,3.16,1439,"0.65089","0.04764","0.0476" +"GO:0044273","sulfur compound catabolic process",5,3,1.32,158,"0.11824","0.04805","0.0481" +"GO:0045930","negative regulation of mitotic cell cycl...",16,8,4.22,70,"0.03635","0.05022","0.0502" +"GO:0007569","cell aging",5,1,1.32,1859,"0.78380","0.05060","0.0506" +"GO:2001021","negative regulation of response to DNA d...",5,2,1.32,661,"0.39599","0.05060","0.0506" +"GO:1901797","negative regulation of signal transducti...",6,2,1.58,849,"0.49828","0.05110","0.0511" +"GO:0061326","renal tubule development",5,3,1.32,159,"0.11824","0.05140","0.0514" +"GO:0072080","nephron tubule development",5,3,1.32,160,"0.11824","0.05140","0.0514" +"GO:0031110","regulation of microtubule polymerization...",10,2,2.64,1954,"0.78585","0.05161","0.0516" +"GO:0001909","leukocyte mediated cytotoxicity",11,3,2.9,1005,"0.58661","0.05199","0.0520" +"GO:0001910","regulation of leukocyte mediated cytotox...",11,3,2.9,1006,"0.58661","0.05199","0.0520" +"GO:0001912","positive regulation of leukocyte mediate...",11,3,2.9,1007,"0.58661","0.05199","0.0520" +"GO:0001913","T cell mediated cytotoxicity",11,3,2.9,1008,"0.58661","0.05199","0.0520" +"GO:0001914","regulation of T cell mediated cytotoxici...",11,3,2.9,1009,"0.58661","0.05199","0.0520" +"GO:0001916","positive regulation of T cell mediated c...",11,3,2.9,1010,"0.58661","0.05199","0.0520" +"GO:0002250","adaptive immune response",11,3,2.9,1011,"0.58661","0.05199","0.0520" +"GO:0002449","lymphocyte mediated immunity",11,3,2.9,1012,"0.58661","0.05199","0.0520" +"GO:0002456","T cell mediated immunity",11,3,2.9,1013,"0.58661","0.05199","0.0520" +"GO:0002460","adaptive immune response based on somati...",11,3,2.9,1014,"0.58661","0.05199","0.0520" +"GO:0002703","regulation of leukocyte mediated immunit...",11,3,2.9,1015,"0.58661","0.05199","0.0520" +"GO:0002705","positive regulation of leukocyte mediate...",11,3,2.9,1016,"0.58661","0.05199","0.0520" +"GO:0002706","regulation of lymphocyte mediated immuni...",11,3,2.9,1017,"0.58661","0.05199","0.0520" +"GO:0002708","positive regulation of lymphocyte mediat...",11,3,2.9,1018,"0.58661","0.05199","0.0520" +"GO:0002709","regulation of T cell mediated immunity",11,3,2.9,1019,"0.58661","0.05199","0.0520" +"GO:0002711","positive regulation of T cell mediated i...",11,3,2.9,1020,"0.58661","0.05199","0.0520" +"GO:0002819","regulation of adaptive immune response",11,3,2.9,1021,"0.58661","0.05199","0.0520" +"GO:0002821","positive regulation of adaptive immune r...",11,3,2.9,1022,"0.58661","0.05199","0.0520" +"GO:0002822","regulation of adaptive immune response b...",11,3,2.9,1023,"0.58661","0.05199","0.0520" +"GO:0002824","positive regulation of adaptive immune r...",11,3,2.9,1024,"0.58661","0.05199","0.0520" +"GO:0007608","sensory perception of smell",11,3,2.9,1025,"0.58661","0.05199","0.0520" +"GO:0010045","response to nickel cation",11,3,2.9,1026,"0.58661","0.05199","0.0520" +"GO:0010656","negative regulation of muscle cell apopt...",11,3,2.9,1027,"0.58661","0.05199","0.0520" +"GO:0010657","muscle cell apoptotic process",11,3,2.9,1028,"0.58661","0.05199","0.0520" +"GO:0010658","striated muscle cell apoptotic process",11,3,2.9,1029,"0.58661","0.05199","0.0520" +"GO:0010659","cardiac muscle cell apoptotic process",11,3,2.9,1030,"0.58661","0.05199","0.0520" +"GO:0010660","regulation of muscle cell apoptotic proc...",11,3,2.9,1031,"0.58661","0.05199","0.0520" +"GO:0010662","regulation of striated muscle cell apopt...",11,3,2.9,1032,"0.58661","0.05199","0.0520" +"GO:0010664","negative regulation of striated muscle c...",11,3,2.9,1033,"0.58661","0.05199","0.0520" +"GO:0010665","regulation of cardiac muscle cell apopto...",11,3,2.9,1034,"0.58661","0.05199","0.0520" +"GO:0010667","negative regulation of cardiac muscle ce...",11,3,2.9,1035,"0.58661","0.05199","0.0520" +"GO:0016191","synaptic vesicle uncoating",11,3,2.9,1036,"0.58661","0.05199","0.0520" +"GO:0033120","positive regulation of RNA splicing",11,3,2.9,1037,"0.58661","0.05199","0.0520" +"GO:0044849","estrous cycle",11,3,2.9,1038,"0.58661","0.05199","0.0520" +"GO:0048026","positive regulation of mRNA splicing, vi...",11,3,2.9,1039,"0.58661","0.05199","0.0520" +"GO:0050685","positive regulation of mRNA processing",11,3,2.9,1040,"0.58661","0.05199","0.0520" +"GO:0061083","regulation of protein refolding",11,3,2.9,1041,"0.58661","0.05199","0.0520" +"GO:0061684","chaperone-mediated autophagy",11,3,2.9,1042,"0.58661","0.05199","0.0520" +"GO:0061738","late endosomal microautophagy",11,3,2.9,1043,"0.58661","0.05199","0.0520" +"GO:0061741","chaperone-mediated protein transport inv...",11,3,2.9,1044,"0.58661","0.05199","0.0520" +"GO:0071276","cellular response to cadmium ion",11,3,2.9,1045,"0.58661","0.05199","0.0520" +"GO:0072318","clathrin coat disassembly",11,3,2.9,1046,"0.58661","0.05199","0.0520" +"GO:0072319","vesicle uncoating",11,3,2.9,1047,"0.58661","0.05199","0.0520" +"GO:0097212","lysosomal membrane organization",11,3,2.9,1048,"0.58661","0.05199","0.0520" +"GO:0097213","regulation of lysosomal membrane permeab...",11,3,2.9,1049,"0.58661","0.05199","0.0520" +"GO:0097214","positive regulation of lysosomal membran...",11,3,2.9,1050,"0.58661","0.05199","0.0520" +"GO:1903334","positive regulation of protein folding",11,3,2.9,1051,"0.58661","0.05199","0.0520" +"GO:1904592","positive regulation of protein refolding",11,3,2.9,1052,"0.58661","0.05199","0.0520" +"GO:1904764","chaperone-mediated autophagy translocati...",11,3,2.9,1053,"0.58661","0.05199","0.0520" +"GO:1990832","slow axonal transport",11,3,2.9,1054,"0.58661","0.05199","0.0520" +"GO:1990834","response to odorant",11,3,2.9,1055,"0.58661","0.05199","0.0520" +"GO:0044770","cell cycle phase transition",40,15,10.55,115,"0.07975","0.05344","0.0534" +"GO:0032411","positive regulation of transporter activ...",7,4,1.85,120,"0.08358","0.05348","0.0535" +"GO:1901990","regulation of mitotic cell cycle phase t...",18,9,4.75,56,"0.02677","0.05363","0.0536" +"GO:0043457","regulation of cellular respiration",3,2,0.79,260,"0.17178","0.05375","0.0537" +"GO:0022898","regulation of transmembrane transporter ...",12,7,3.16,45,"0.01896","0.05386","0.0539" +"GO:0032409","regulation of transporter activity",12,7,3.16,46,"0.01896","0.05386","0.0539" +"GO:0032412","regulation of ion transmembrane transpor...",12,7,3.16,47,"0.01896","0.05386","0.0539" +"GO:0000724","double-strand break repair via homologou...",8,5,2.11,66,"0.03392","0.05413","0.0541" +"GO:0000725","recombinational repair",8,5,2.11,67,"0.03392","0.05413","0.0541" +"GO:0031570","DNA integrity checkpoint",15,10,3.95,18,"0.00121","0.00075","0.0549" +"GO:0006089","lactate metabolic process",3,2,0.79,261,"0.17178","0.05675","0.0567" +"GO:0097039","protein linear polyubiquitination",4,3,1.05,98,"0.05868","0.05752","0.0575" +"GO:0045292","mRNA cis splicing, via spliceosome",5,2,1.32,662,"0.39599","0.05869","0.0587" +"GO:0010923","negative regulation of phosphatase activ...",4,3,1.05,99,"0.05868","0.05873","0.0587" +"GO:0031396","regulation of protein ubiquitination",26,9,6.85,370,"0.22626","0.05921","0.0592" +"GO:0033209","tumor necrosis factor-mediated signaling...",6,2,1.58,850,"0.49828","0.05959","0.0596" +"GO:0034612","response to tumor necrosis factor",6,2,1.58,851,"0.49828","0.05959","0.0596" +"GO:0071356","cellular response to tumor necrosis fact...",6,2,1.58,852,"0.49828","0.05959","0.0596" +"GO:1903332","regulation of protein folding",15,4,3.95,1079,"0.58736","0.06004","0.0600" +"GO:1904029","regulation of cyclin-dependent protein k...",7,4,1.85,121,"0.08358","0.06025","0.0603" +"GO:0019219","regulation of nucleobase-containing comp...",389,112,102.56,215,"0.13389","0.04320","0.0609" +"GO:0022613","ribonucleoprotein complex biogenesis",88,27,23.2,362,"0.20689","0.06216","0.0622" +"GO:0050729","positive regulation of inflammatory resp...",3,2,0.79,262,"0.17178","0.06242","0.0624" +"GO:0071824","protein-DNA complex subunit organization",20,7,5.27,412,"0.25842","0.06301","0.0630" +"GO:0006325","chromatin organization",119,37,31.37,241,"0.13835","0.06370","0.0637" +"GO:0007140","male meiotic nuclear division",9,4,2.37,346,"0.19182","0.06396","0.0640" +"GO:0006605","protein targeting",43,7,11.34,2391,"0.96024","0.06436","0.0644" +"GO:0006402","mRNA catabolic process",28,4,7.38,2394,"0.96089","0.06443","0.0644" +"GO:0070848","response to growth factor",24,5,6.33,1994,"0.79936","0.06446","0.0645" +"GO:0070647","protein modification by small protein co...",113,37,29.79,112,"0.07398","0.00297","0.0651" +"GO:0043933","protein-containing complex subunit organ...",153,42,40.34,737,"0.40839","0.06543","0.0654" +"GO:0001906","cell killing",12,3,3.16,1440,"0.65089","0.06635","0.0664" +"GO:0031341","regulation of cell killing",12,3,3.16,1441,"0.65089","0.06635","0.0664" +"GO:0031343","positive regulation of cell killing",12,3,3.16,1442,"0.65089","0.06635","0.0664" +"GO:0043270","positive regulation of ion transport",12,5,3.16,319,"0.18664","0.06635","0.0664" +"GO:0006513","protein monoubiquitination",14,6,3.69,223,"0.13668","0.06782","0.0678" +"GO:0043094","cellular metabolic compound salvage",5,3,1.32,161,"0.11824","0.06782","0.0678" +"GO:0034614","cellular response to reactive oxygen spe...",17,4,4.48,1549,"0.69414","0.06801","0.0680" +"GO:0000413","protein peptidyl-prolyl isomerization",15,5,3.95,603,"0.35913","0.06849","0.0685" +"GO:0018208","peptidyl-proline modification",15,5,3.95,604,"0.35913","0.06849","0.0685" +"GO:0043462","regulation of ATPase activity",11,3,2.9,1056,"0.58661","0.06914","0.0691" +"GO:0090083","regulation of inclusion body assembly",11,3,2.9,1057,"0.58661","0.06914","0.0691" +"GO:0090084","negative regulation of inclusion body as...",11,3,2.9,1058,"0.58661","0.06914","0.0691" +"GO:1900034","regulation of cellular response to heat",11,2,2.9,2047,"0.83013","0.06914","0.0691" +"GO:0034599","cellular response to oxidative stress",23,7,6.06,728,"0.40428","0.07007","0.0701" +"GO:0072331","signal transduction by p53 class mediato...",12,5,3.16,320,"0.18664","0.07173","0.0717" +"GO:0000082","G1/S transition of mitotic cell cycle",17,5,4.48,821,"0.47840","0.07187","0.0719" +"GO:0010508","positive regulation of autophagy",3,0,0.79,2494,"1.00000","0.07200","0.0720" +"GO:1903169","regulation of calcium ion transmembrane ...",7,3,1.85,422,"0.27227","0.07332","0.0733" +"GO:0000209","protein polyubiquitination",27,11,7.12,111,"0.07297","0.07362","0.0736" +"GO:0009914","hormone transport",9,3,2.37,758,"0.43760","0.07470","0.0747" +"GO:0046879","hormone secretion",9,3,2.37,759,"0.43760","0.07470","0.0747" +"GO:0002526","acute inflammatory response",4,1,1.05,1568,"0.70624","0.07579","0.0758" +"GO:0002673","regulation of acute inflammatory respons...",4,1,1.05,1569,"0.70624","0.07579","0.0758" +"GO:0043068","positive regulation of programmed cell d...",23,10,6.06,90,"0.05605","0.07607","0.0761" +"GO:0031401","positive regulation of protein modificat...",47,16,12.39,246,"0.14983","0.07640","0.0764" +"GO:2001233","regulation of apoptotic signaling pathwa...",21,8,5.54,250,"0.16361","0.07694","0.0769" +"GO:0019221","cytokine-mediated signaling pathway",11,4,2.9,552,"0.32472","0.07717","0.0772" +"GO:0018212","peptidyl-tyrosine modification",5,1,1.32,1860,"0.78380","0.07751","0.0775" +"GO:0006622","protein targeting to lysosome",10,2,2.64,1955,"0.78585","0.07768","0.0777" +"GO:0006623","protein targeting to vacuole",10,2,2.64,1956,"0.78585","0.07768","0.0777" +"GO:0061462","protein localization to lysosome",10,2,2.64,1957,"0.78585","0.07768","0.0777" +"GO:0061740","protein targeting to lysosome involved i...",10,2,2.64,1958,"0.78585","0.07768","0.0777" +"GO:0071211","protein targeting to vacuole involved in...",10,2,2.64,1959,"0.78585","0.07768","0.0777" +"GO:0006301","postreplication repair",6,3,1.58,324,"0.19140","0.07779","0.0778" +"GO:0006606","protein import into nucleus",23,7,6.06,729,"0.40428","0.07832","0.0783" +"GO:0010015","root morphogenesis",5,2,1.32,663,"0.39599","0.07837","0.0784" +"GO:0010053","root epidermal cell differentiation",5,2,1.32,664,"0.39599","0.07837","0.0784" +"GO:0090263","positive regulation of canonical Wnt sig...",5,1,1.32,1861,"0.78380","0.07837","0.0784" +"GO:0090558","plant epidermis development",5,2,1.32,665,"0.39599","0.07837","0.0784" +"GO:0090627","plant epidermal cell differentiation",5,2,1.32,666,"0.39599","0.07837","0.0784" +"GO:0010942","positive regulation of cell death",26,11,6.85,91,"0.05612","0.07914","0.0791" +"GO:0002084","protein depalmitoylation",4,3,1.05,100,"0.05868","0.07941","0.0794" +"GO:0042159","lipoprotein catabolic process",4,3,1.05,101,"0.05868","0.07941","0.0794" +"GO:0098734","macromolecule depalmitoylation",4,3,1.05,102,"0.05868","0.07941","0.0794" +"GO:0043632","modification-dependent macromolecule cat...",82,24,21.62,545,"0.31112","0.08027","0.0803" +"GO:0051252","regulation of RNA metabolic process",373,102,98.34,575,"0.34275","0.08055","0.0806" +"GO:0010468","regulation of gene expression",433,117,114.16,635,"0.38836","0.08068","0.0807" +"GO:0031113","regulation of microtubule polymerization",9,2,2.37,1786,"0.73172","0.08089","0.0809" +"GO:0032414","positive regulation of ion transmembrane...",6,3,1.58,325,"0.19140","0.08133","0.0813" +"GO:0006397","mRNA processing",77,27,20.3,89,"0.05486","0.00056","0.0813" +"GO:0003012","muscle system process",14,6,3.69,224,"0.13668","0.08390","0.0839" +"GO:0030509","BMP signaling pathway",6,2,1.58,853,"0.49828","0.08395","0.0839" +"GO:0009948","anterior/posterior axis specification",5,2,1.32,667,"0.39599","0.08396","0.0840" +"GO:0030073","insulin secretion",7,3,1.85,423,"0.27227","0.08528","0.0853" +"GO:0046883","regulation of hormone secretion",7,2,1.85,1089,"0.58869","0.08528","0.0853" +"GO:0035967","cellular response to topologically incor...",20,5,5.27,1422,"0.63947","0.08557","0.0856" +"GO:0070585","protein localization to mitochondrion",25,4,6.59,2309,"0.92769","0.08621","0.0862" +"GO:0072655","establishment of protein localization to...",25,4,6.59,2310,"0.92769","0.08621","0.0862" +"GO:0035601","protein deacylation",15,7,3.95,109,"0.07250","0.08630","0.0863" +"GO:0098732","macromolecule deacylation",15,7,3.95,110,"0.07250","0.08630","0.0863" +"GO:0002685","regulation of leukocyte migration",4,1,1.05,1570,"0.70624","0.08630","0.0863" +"GO:0050900","leukocyte migration",4,1,1.05,1571,"0.70624","0.08630","0.0863" +"GO:0010469","regulation of signaling receptor activit...",6,2,1.58,854,"0.49828","0.08692","0.0869" +"GO:0030534","adult behavior",6,4,1.58,82,"0.04508","0.08692","0.0869" +"GO:0034332","adherens junction organization",6,2,1.58,855,"0.49828","0.08692","0.0869" +"GO:0034333","adherens junction assembly",6,2,1.58,856,"0.49828","0.08692","0.0869" +"GO:0043086","negative regulation of catalytic activit...",31,13,8.17,75,"0.04240","0.08697","0.0870" +"GO:0042219","cellular modified amino acid catabolic p...",6,3,1.58,326,"0.19140","0.08715","0.0871" +"GO:0060711","labyrinthine layer development",6,2,1.58,857,"0.49828","0.08726","0.0873" +"GO:0051225","spindle assembly",12,5,3.16,321,"0.18664","0.08771","0.0877" +"GO:1903320","regulation of protein modification by sm...",28,9,7.38,541,"0.30620","0.08789","0.0879" +"GO:0070507","regulation of microtubule cytoskeleton o...",12,3,3.16,1443,"0.65089","0.08791","0.0879" +"GO:0002429","immune response-activating cell surface ...",10,5,2.64,136,"0.09471","0.08918","0.0892" +"GO:0010992","ubiquitin recycling",5,3,1.32,162,"0.11824","0.08923","0.0892" +"GO:0010994","free ubiquitin chain polymerization",5,3,1.32,163,"0.11824","0.08923","0.0892" +"GO:0045739","positive regulation of DNA repair",5,3,1.32,164,"0.11824","0.08923","0.0892" +"GO:1902914","regulation of protein polyubiquitination",5,3,1.32,165,"0.11824","0.08923","0.0892" +"GO:1902916","positive regulation of protein polyubiqu...",5,3,1.32,166,"0.11824","0.08923","0.0892" +"GO:0006401","RNA catabolic process",35,5,9.23,2426,"0.97286","0.08963","0.0896" +"GO:0051259","protein complex oligomerization",15,5,3.95,605,"0.35913","0.09050","0.0905" +"GO:0001890","placenta development",13,5,3.43,385,"0.24118","0.09064","0.0906" +"GO:0016575","histone deacetylation",10,4,2.64,402,"0.25657","0.09076","0.0908" +"GO:0010921","regulation of phosphatase activity",8,4,2.11,204,"0.13325","0.09095","0.0910" +"GO:0042698","ovulation cycle",13,3,3.43,1733,"0.70769","0.09096","0.0910" +"GO:0050766","positive regulation of phagocytosis",13,3,3.43,1734,"0.70769","0.09096","0.0910" +"GO:0061635","regulation of protein complex stability",13,3,3.43,1735,"0.70769","0.09096","0.0910" +"GO:0072321","chaperone-mediated protein transport",13,3,3.43,1736,"0.70769","0.09096","0.0910" +"GO:1903313","positive regulation of mRNA metabolic pr...",13,3,3.43,1737,"0.70769","0.09096","0.0910" +"GO:0007091","metaphase/anaphase transition of mitotic...",7,4,1.85,122,"0.08358","0.09124","0.0912" +"GO:0010965","regulation of mitotic sister chromatid s...",7,4,1.85,123,"0.08358","0.09124","0.0912" +"GO:0030071","regulation of mitotic metaphase/anaphase...",7,4,1.85,124,"0.08358","0.09124","0.0912" +"GO:0044784","metaphase/anaphase transition of cell cy...",7,4,1.85,125,"0.08358","0.09124","0.0912" +"GO:0051306","mitotic sister chromatid separation",7,4,1.85,126,"0.08358","0.09124","0.0912" +"GO:1902099","regulation of metaphase/anaphase transit...",7,4,1.85,127,"0.08358","0.09124","0.0912" +"GO:1905818","regulation of chromosome separation",7,4,1.85,128,"0.08358","0.09124","0.0912" +"GO:0007023","post-chaperonin tubulin folding pathway",3,0,0.79,2495,"1.00000","0.09167","0.0917" +"GO:0044774","mitotic DNA integrity checkpoint",5,3,1.32,167,"0.11824","0.09180","0.0918" +"GO:0045454","cell redox homeostasis",26,4,6.85,2359,"0.94087","0.09188","0.0919" +"GO:0043984","histone H4-K16 acetylation",4,2,1.05,450,"0.28489","0.09198","0.0920" +"GO:0090100","positive regulation of transmembrane rec...",4,2,1.05,451,"0.28489","0.09198","0.0920" +"GO:1902229","regulation of intrinsic apoptotic signal...",4,2,1.05,452,"0.28489","0.09198","0.0920" +"GO:0072009","nephron epithelium development",6,3,1.58,327,"0.19140","0.09311","0.0931" +"GO:0072073","kidney epithelium development",6,3,1.58,328,"0.19140","0.09311","0.0931" +"GO:0009166","nucleotide catabolic process",7,3,1.85,424,"0.27227","0.09395","0.0939" +"GO:0050790","regulation of catalytic activity",105,30,27.68,571,"0.33592","0.09416","0.0942" +"GO:0033365","protein localization to organelle",76,17,20.04,2041,"0.82422","0.09432","0.0943" +"GO:0010286","heat acclimation",5,1,1.32,1862,"0.78380","0.09543","0.0954" +"GO:0010803","regulation of tumor necrosis factor-medi...",5,2,1.32,668,"0.39599","0.09543","0.0954" +"GO:0097201","negative regulation of transcription fro...",5,1,1.32,1863,"0.78380","0.09543","0.0954" +"GO:1903265","positive regulation of tumor necrosis fa...",5,2,1.32,669,"0.39599","0.09543","0.0954" +"GO:0051258","protein polymerization",37,12,9.76,394,"0.25098","0.09596","0.0960" +"GO:0031058","positive regulation of histone modificat...",8,4,2.11,205,"0.13325","0.09606","0.0961" +"GO:1905269","positive regulation of chromatin organiz...",8,4,2.11,206,"0.13325","0.09606","0.0961" +"GO:1901654","response to ketone",22,6,5.8,976,"0.54270","0.09669","0.0967" +"GO:0036473","cell death in response to oxidative stre...",16,5,4.22,744,"0.41930","0.09692","0.0969" +"GO:2001022","positive regulation of response to DNA d...",7,4,1.85,129,"0.08358","0.09753","0.0975" +"GO:0002756","MyD88-independent toll-like receptor sig...",3,2,0.79,263,"0.17178","0.09777","0.0978" +"GO:0030718","germ-line stem cell population maintenan...",3,2,0.79,264,"0.17178","0.09777","0.0978" +"GO:0035519","protein K29-linked ubiquitination",3,2,0.79,265,"0.17178","0.09777","0.0978" +"GO:0045466","R7 cell differentiation",3,2,0.79,266,"0.17178","0.09777","0.0978" +"GO:0046532","regulation of photoreceptor cell differe...",3,2,0.79,267,"0.17178","0.09777","0.0978" +"GO:0000910","cytokinesis",13,7,3.43,60,"0.03190","0.09781","0.0978" +"GO:0050829","defense response to Gram-negative bacter...",5,2,1.32,670,"0.39599","0.09848","0.0985" +"GO:0030072","peptide hormone secretion",8,3,2.11,586,"0.35567","0.09974","0.0997" +"GO:0043269","regulation of ion transport",18,7,4.75,253,"0.17160","0.09989","0.0999" +"GO:0065004","protein-DNA complex assembly",17,7,4.48,214,"0.13380","0.10079","0.1008" +"GO:0051347","positive regulation of transferase activ...",18,6,4.75,563,"0.33041","0.10096","0.1010" +"GO:0001525","angiogenesis",3,1,0.79,1158,"0.60090","0.10134","0.1013" +"GO:0001952","regulation of cell-matrix adhesion",3,1,0.79,1159,"0.60090","0.10134","0.1013" +"GO:0030514","negative regulation of BMP signaling pat...",3,1,0.79,1160,"0.60090","0.10134","0.1013" +"GO:0043518","negative regulation of DNA damage respon...",3,1,0.79,1161,"0.60090","0.10134","0.1013" +"GO:0046631","alpha-beta T cell activation",3,1,0.79,1162,"0.60090","0.10134","0.1013" +"GO:0046632","alpha-beta T cell differentiation",3,1,0.79,1163,"0.60090","0.10134","0.1013" +"GO:0048668","collateral sprouting",3,1,0.79,1164,"0.60090","0.10134","0.1013" +"GO:0051341","regulation of oxidoreductase activity",3,1,0.79,1165,"0.60090","0.10134","0.1013" +"GO:0051893","regulation of focal adhesion assembly",3,1,0.79,1166,"0.60090","0.10134","0.1013" +"GO:0071219","cellular response to molecule of bacteri...",3,1,0.79,1167,"0.60090","0.10134","0.1013" +"GO:0071222","cellular response to lipopolysaccharide",3,1,0.79,1168,"0.60090","0.10134","0.1013" +"GO:0090109","regulation of cell-substrate junction as...",3,1,0.79,1169,"0.60090","0.10134","0.1013" +"GO:0097061","dendritic spine organization",3,1,0.79,1170,"0.60090","0.10134","0.1013" +"GO:0106027","neuron projection organization",3,1,0.79,1171,"0.60090","0.10134","0.1013" +"GO:1903391","regulation of adherens junction organiza...",3,1,0.79,1172,"0.60090","0.10134","0.1013" +"GO:0006909","phagocytosis",19,3,5.01,2258,"0.91210","0.10232","0.1023" +"GO:0048512","circadian behavior",3,2,0.79,268,"0.17178","0.10234","0.1023" +"GO:2000779","regulation of double-strand break repair",3,2,0.79,269,"0.17178","0.10234","0.1023" +"GO:0030330","DNA damage response, signal transduction...",7,3,1.85,425,"0.27227","0.10246","0.1025" +"GO:0042770","signal transduction in response to DNA d...",7,3,1.85,426,"0.27227","0.10246","0.1025" +"GO:1902749","regulation of cell cycle G2/M phase tran...",9,5,2.37,103,"0.06004","0.10282","0.1028" +"GO:0044843","cell cycle G1/S phase transition",19,5,5.01,1134,"0.58921","0.10371","0.1037" +"GO:0045088","regulation of innate immune response",19,6,5.01,632,"0.38441","0.10371","0.1037" +"GO:0044772","mitotic cell cycle phase transition",36,13,9.49,198,"0.12733","0.10409","0.1041" +"GO:0010948","negative regulation of cell cycle proces...",14,6,3.69,225,"0.13668","0.10499","0.1050" +"GO:0051438","regulation of ubiquitin-protein transfer...",5,3,1.32,168,"0.11824","0.10553","0.1055" +"GO:0007346","regulation of mitotic cell cycle",41,16,10.81,86,"0.05084","0.10601","0.1060" +"GO:0006511","ubiquitin-dependent protein catabolic pr...",81,24,21.36,524,"0.28714","0.10652","0.1065" +"GO:0019941","modification-dependent protein catabolic...",81,24,21.36,525,"0.28714","0.10652","0.1065" +"GO:0006937","regulation of muscle contraction",6,3,1.58,329,"0.19140","0.10659","0.1066" +"GO:0006941","striated muscle contraction",6,4,1.58,83,"0.04508","0.10659","0.1066" +"GO:1901019","regulation of calcium ion transmembrane ...",6,3,1.58,330,"0.19140","0.10659","0.1066" +"GO:0065009","regulation of molecular function",137,42,36.12,244,"0.14267","0.10673","0.1067" +"GO:0031056","regulation of histone modification",13,6,3.43,147,"0.09937","0.10736","0.1074" +"GO:0016049","cell growth",28,8,7.38,805,"0.46637","0.10750","0.1075" +"GO:0016072","rRNA metabolic process",45,13,11.86,735,"0.40462","0.10754","0.1075" +"GO:0006979","response to oxidative stress",41,15,10.81,145,"0.09642","0.10966","0.1081" +"GO:0006458","'de novo' protein folding",17,5,4.48,822,"0.47840","0.10813","0.1081" +"GO:0097435","supramolecular fiber organization",54,17,14.24,379,"0.23657","0.10860","0.1086" +"GO:0006473","protein acetylation",21,7,5.54,537,"0.30583","0.10933","0.1093" +"GO:0045103","intermediate filament-based process",4,2,1.05,453,"0.28489","0.11078","0.1108" +"GO:0045104","intermediate filament cytoskeleton organ...",4,2,1.05,454,"0.28489","0.11078","0.1108" +"GO:0044706","multi-multicellular organism process",10,5,2.64,137,"0.09471","0.11101","0.1110" +"GO:0043981","histone H4-K5 acetylation",3,2,0.79,270,"0.17178","0.11111","0.1111" +"GO:0043982","histone H4-K8 acetylation",3,2,0.79,271,"0.17178","0.11111","0.1111" +"GO:0007049","cell cycle",171,71,45.08,11,"6.2e-06","8.9e-05","0.1150" +"GO:0051028","mRNA transport",9,3,2.37,760,"0.43760","0.11517","0.1152" +"GO:0001892","embryonic placenta development",8,3,2.11,587,"0.35567","0.11518","0.1152" +"GO:0097327","response to antineoplastic agent",4,2,1.05,455,"0.28489","0.11522","0.1152" +"GO:0000723","telomere maintenance",11,5,2.9,234,"0.13730","0.11539","0.1154" +"GO:0032200","telomere organization",11,5,2.9,235,"0.13730","0.11539","0.1154" +"GO:0010769","regulation of cell morphogenesis involve...",7,2,1.85,1090,"0.58869","0.11564","0.1156" +"GO:0061640","cytoskeleton-dependent cytokinesis",9,4,2.37,347,"0.19182","0.11604","0.1160" +"GO:0051346","negative regulation of hydrolase activit...",19,9,5.01,71,"0.03927","0.11665","0.1167" +"GO:0043065","positive regulation of apoptotic process",21,9,5.54,114,"0.07479","0.11665","0.1167" +"GO:0016071","mRNA metabolic process",101,30,26.63,396,"0.25149","0.00193","0.1173" +"GO:0001510","RNA methylation",18,6,4.75,564,"0.33041","0.11765","0.1177" +"GO:0007568","aging",27,6,7.12,1825,"0.75545","0.11913","0.1191" +"GO:0006974","cellular response to DNA damage stimulus",134,67,35.33,3,"1.7e-09","4.5e-09","0.1206" +"GO:0140014","mitotic nuclear division",31,12,8.17,134,"0.08958","0.12119","0.1212" +"GO:0090276","regulation of peptide hormone secretion",6,2,1.58,858,"0.49828","0.12132","0.1213" +"GO:0009262","deoxyribonucleotide metabolic process",7,4,1.85,130,"0.08358","0.12271","0.1227" +"GO:2000112","regulation of cellular macromolecule bio...",391,108,103.09,529,"0.29071","0.12305","0.1230" +"GO:0071900","regulation of protein serine/threonine k...",15,6,3.95,314,"0.17946","0.12333","0.1233" +"GO:0032418","lysosome localization",5,2,1.32,671,"0.39599","0.12365","0.1237" +"GO:1904427","positive regulation of calcium ion trans...",5,2,1.32,672,"0.39599","0.12365","0.1237" +"GO:0031397","negative regulation of protein ubiquitin...",7,2,1.85,1091,"0.58869","0.12367","0.1237" +"GO:1903506","regulation of nucleic acid-templated tra...",356,99,93.86,440,"0.27336","0.12389","0.1239" +"GO:0006750","glutathione biosynthetic process",3,2,0.79,272,"0.17178","0.12550","0.1255" +"GO:0019184","nonribosomal peptide biosynthetic proces...",3,2,0.79,273,"0.17178","0.12550","0.1255" +"GO:0010968","regulation of microtubule nucleation",8,2,2.11,1470,"0.66636","0.12604","0.1260" +"GO:0031112","positive regulation of microtubule polym...",8,2,2.11,1471,"0.66636","0.12604","0.1260" +"GO:0031116","positive regulation of microtubule polym...",8,2,2.11,1472,"0.66636","0.12604","0.1260" +"GO:0060236","regulation of mitotic spindle organizati...",8,2,2.11,1473,"0.66636","0.12604","0.1260" +"GO:0090063","positive regulation of microtubule nucle...",8,2,2.11,1474,"0.66636","0.12604","0.1260" +"GO:0090224","regulation of spindle organization",8,2,2.11,1475,"0.66636","0.12604","0.1260" +"GO:0051301","cell division",29,15,7.65,20,"0.00300","0.01110","0.1272" +"GO:0031325","positive regulation of cellular metaboli...",140,43,36.91,217,"0.13615","0.12764","0.1276" +"GO:0034655","nucleobase-containing compound catabolic...",49,9,12.92,2322,"0.93060","0.12768","0.1277" +"GO:0016319","mushroom body development",3,1,0.79,1173,"0.60090","0.12852","0.1285" +"GO:0034260","negative regulation of GTPase activity",3,2,0.79,274,"0.17178","0.12852","0.1285" +"GO:0032886","regulation of microtubule-based process",14,3,3.69,1830,"0.75711","0.12857","0.1286" +"GO:0007286","spermatid development",22,7,5.8,579,"0.35474","0.12905","0.1290" +"GO:0048515","spermatid differentiation",22,7,5.8,580,"0.35474","0.12905","0.1290" +"GO:0010822","positive regulation of mitochondrion org...",15,2,3.95,2331,"0.93587","0.12934","0.1293" +"GO:0002119","nematode larval development",4,1,1.05,1572,"0.70624","0.12936","0.1294" +"GO:0018108","peptidyl-tyrosine phosphorylation",4,0,1.05,2496,"1.00000","0.12936","0.1294" +"GO:0050730","regulation of peptidyl-tyrosine phosphor...",4,0,1.05,2497,"1.00000","0.12936","0.1294" +"GO:0050731","positive regulation of peptidyl-tyrosine...",4,0,1.05,2498,"1.00000","0.12936","0.1294" +"GO:0090257","regulation of muscle system process",10,4,2.64,403,"0.25657","0.13001","0.1300" +"GO:0043549","regulation of kinase activity",27,8,7.12,747,"0.42061","0.13008","0.1301" +"GO:0006952","defense response",55,16,14.5,618,"0.37082","0.13127","0.1313" +"GO:1905710","positive regulation of membrane permeabi...",12,3,3.16,1444,"0.65089","0.13149","0.1315" +"GO:0006275","regulation of DNA replication",6,4,1.58,84,"0.04508","0.13259","0.1326" +"GO:0045047","protein targeting to ER",6,2,1.58,859,"0.49828","0.13275","0.1328" +"GO:0072599","establishment of protein localization to...",6,2,1.58,860,"0.49828","0.13275","0.1328" +"GO:0035305","negative regulation of dephosphorylation",5,3,1.32,169,"0.11824","0.13291","0.1329" +"GO:0006266","DNA ligation",3,2,0.79,275,"0.17178","0.13415","0.1342" +"GO:0051103","DNA ligation involved in DNA repair",3,2,0.79,276,"0.17178","0.13415","0.1342" +"GO:0002768","immune response-regulating cell surface ...",11,5,2.9,236,"0.13730","0.13417","0.1342" +"GO:0010556","regulation of macromolecule biosynthetic...",395,110,104.14,398,"0.25315","0.13451","0.1345" +"GO:0045934","negative regulation of nucleobase-contai...",90,25,23.73,743,"0.41888","0.13462","0.1346" +"GO:0072718","response to cisplatin",3,2,0.79,277,"0.17178","0.13472","0.1347" +"GO:0042391","regulation of membrane potential",10,5,2.64,138,"0.09471","0.13489","0.1349" +"GO:0070979","protein K11-linked ubiquitination",6,2,1.58,861,"0.49828","0.13561","0.1356" +"GO:0006355","regulation of transcription, DNA-templat...",355,98,93.6,536,"0.30532","0.13581","0.1358" +"GO:0021549","cerebellum development",18,4,4.75,1807,"0.73952","0.13620","0.1362" +"GO:0022037","metencephalon development",18,4,4.75,1808,"0.73952","0.13620","0.1362" +"GO:0009893","positive regulation of metabolic process",152,45,40.08,360,"0.19993","0.13675","0.1367" +"GO:0007606","sensory perception of chemical stimulus",15,4,3.95,1080,"0.58736","0.13685","0.1368" +"GO:0032570","response to progesterone",15,3,3.95,2002,"0.79955","0.13685","0.1368" +"GO:0045069","regulation of viral genome replication",15,4,3.95,1081,"0.58736","0.13685","0.1368" +"GO:0099504","synaptic vesicle cycle",15,3,3.95,2003,"0.79955","0.13685","0.1368" +"GO:1903902","positive regulation of viral life cycle",15,3,3.95,2004,"0.79955","0.13685","0.1368" +"GO:0002218","activation of innate immune response",12,3,3.16,1445,"0.65089","0.13690","0.1369" +"GO:0002758","innate immune response-activating signal...",12,3,3.16,1446,"0.65089","0.13690","0.1369" +"GO:0001558","regulation of cell growth",22,7,5.8,581,"0.35474","0.13741","0.1374" +"GO:0002027","regulation of heart rate",5,3,1.32,170,"0.11824","0.13773","0.1377" +"GO:0003205","cardiac chamber development",5,3,1.32,171,"0.11824","0.13773","0.1377" +"GO:0003231","cardiac ventricle development",5,3,1.32,172,"0.11824","0.13773","0.1377" +"GO:0035637","multicellular organismal signaling",5,3,1.32,173,"0.11824","0.13773","0.1377" +"GO:0061337","cardiac conduction",5,3,1.32,174,"0.11824","0.13773","0.1377" +"GO:1902253","regulation of intrinsic apoptotic signal...",4,1,1.05,1573,"0.70624","0.13790","0.1379" +"GO:1902254","negative regulation of intrinsic apoptot...",4,1,1.05,1574,"0.70624","0.13790","0.1379" +"GO:1901292","nucleoside phosphate catabolic process",9,4,2.37,348,"0.19182","0.13807","0.1381" +"GO:0033043","regulation of organelle organization",93,27,24.52,547,"0.31297","0.13899","0.1390" +"GO:0045859","regulation of protein kinase activity",23,8,6.06,390,"0.24149","0.14117","0.1412" +"GO:0010604","positive regulation of macromolecule met...",140,43,36.91,218,"0.13615","0.14124","0.1412" +"GO:0034243","regulation of transcription elongation f...",5,1,1.32,1864,"0.78380","0.14132","0.1413" +"GO:0007094","mitotic spindle assembly checkpoint",5,3,1.32,175,"0.11824","0.14177","0.1418" +"GO:0031577","spindle checkpoint",5,3,1.32,176,"0.11824","0.14177","0.1418" +"GO:0033046","negative regulation of sister chromatid ...",5,3,1.32,177,"0.11824","0.14177","0.1418" +"GO:0033048","negative regulation of mitotic sister ch...",5,3,1.32,178,"0.11824","0.14177","0.1418" +"GO:0045839","negative regulation of mitotic nuclear d...",5,3,1.32,179,"0.11824","0.14177","0.1418" +"GO:0045841","negative regulation of mitotic metaphase...",5,3,1.32,180,"0.11824","0.14177","0.1418" +"GO:0051985","negative regulation of chromosome segreg...",5,3,1.32,181,"0.11824","0.14177","0.1418" +"GO:0071173","spindle assembly checkpoint",5,3,1.32,182,"0.11824","0.14177","0.1418" +"GO:0071174","mitotic spindle checkpoint",5,3,1.32,183,"0.11824","0.14177","0.1418" +"GO:1902100","negative regulation of metaphase/anaphas...",5,3,1.32,184,"0.11824","0.14177","0.1418" +"GO:1905819","negative regulation of chromosome separa...",5,3,1.32,185,"0.11824","0.14177","0.1418" +"GO:2000816","negative regulation of mitotic sister ch...",5,3,1.32,186,"0.11824","0.14177","0.1418" +"GO:2001141","regulation of RNA biosynthetic process",357,99,94.12,521,"0.28491","0.14205","0.1421" +"GO:0072006","nephron development",7,3,1.85,427,"0.27227","0.14207","0.1421" +"GO:0009147","pyrimidine nucleoside triphosphate metab...",4,2,1.05,456,"0.28489","0.14293","0.1429" +"GO:0002757","immune response-activating signal transd...",18,6,4.75,565,"0.33041","0.14302","0.1430" +"GO:0031348","negative regulation of defense response",3,1,0.79,1174,"0.60090","0.14384","0.1438" +"GO:0032781","positive regulation of ATPase activity",9,3,2.37,761,"0.43760","0.14400","0.1440" +"GO:0047496","vesicle transport along microtubule",3,2,0.79,278,"0.17178","0.14444","0.1444" +"GO:0099518","vesicle cytoskeletal trafficking",3,2,0.79,279,"0.17178","0.14444","0.1444" +"GO:0072384","organelle transport along microtubule",6,3,1.58,331,"0.19140","0.14473","0.1447" +"GO:0042398","cellular modified amino acid biosyntheti...",4,2,1.05,457,"0.28489","0.14519","0.1452" +"GO:0043543","protein acylation",29,11,7.65,156,"0.11538","0.14535","0.1453" +"GO:0061458","reproductive system development",37,9,9.76,1528,"0.67274","0.14724","0.1472" +"GO:0006475","internal protein amino acid acetylation",19,5,5.01,1135,"0.58921","0.14743","0.1474" +"GO:0016573","histone acetylation",19,5,5.01,1136,"0.58921","0.14743","0.1474" +"GO:0018393","internal peptidyl-lysine acetylation",19,5,5.01,1137,"0.58921","0.14743","0.1474" +"GO:0018394","peptidyl-lysine acetylation",19,5,5.01,1138,"0.58921","0.14743","0.1474" +"GO:0090559","regulation of membrane permeability",14,4,3.69,946,"0.52650","0.14834","0.1483" +"GO:0010039","response to iron ion",8,4,2.11,207,"0.13325","0.14834","0.1483" +"GO:0043124","negative regulation of I-kappaB kinase/N...",3,0,0.79,2499,"1.00000","0.14888","0.1489" +"GO:0051172","negative regulation of nitrogen compound...",131,34,34.54,1001,"0.57805","0.15086","0.1509" +"GO:0010558","negative regulation of macromolecule bio...",91,24,23.99,974,"0.54035","0.15158","0.1516" +"GO:0002753","cytoplasmic pattern recognition receptor...",4,1,1.05,1575,"0.70624","0.15277","0.1528" +"GO:0032069","regulation of nuclease activity",4,1,1.05,1576,"0.70624","0.15277","0.1528" +"GO:0032075","positive regulation of nuclease activity",4,1,1.05,1577,"0.70624","0.15277","0.1528" +"GO:0032637","interleukin-8 production",4,1,1.05,1578,"0.70624","0.15277","0.1528" +"GO:0032677","regulation of interleukin-8 production",4,1,1.05,1579,"0.70624","0.15277","0.1528" +"GO:0032757","positive regulation of interleukin-8 pro...",4,1,1.05,1580,"0.70624","0.15277","0.1528" +"GO:0060699","regulation of endoribonuclease activity",4,1,1.05,1581,"0.70624","0.15277","0.1528" +"GO:0060700","regulation of ribonuclease activity",4,1,1.05,1582,"0.70624","0.15277","0.1528" +"GO:0070370","cellular heat acclimation",4,1,1.05,1583,"0.70624","0.15277","0.1528" +"GO:1902380","positive regulation of endoribonuclease ...",4,1,1.05,1584,"0.70624","0.15277","0.1528" +"GO:0051443","positive regulation of ubiquitin-protein...",3,2,0.79,280,"0.17178","0.15429","0.1543" +"GO:0031102","neuron projection regeneration",5,1,1.32,1865,"0.78380","0.15490","0.1549" +"GO:0031103","axon regeneration",5,1,1.32,1866,"0.78380","0.15490","0.1549" +"GO:0048678","response to axon injury",5,1,1.32,1867,"0.78380","0.15490","0.1549" +"GO:0060048","cardiac muscle contraction",5,3,1.32,187,"0.11824","0.15490","0.1549" +"GO:0006626","protein targeting to mitochondrion",23,3,6.06,2399,"0.96402","0.15543","0.1554" +"GO:0008088","axo-dendritic transport",14,4,3.69,947,"0.52650","0.15554","0.1555" +"GO:0051128","regulation of cellular component organiz...",152,43,40.08,549,"0.31937","0.15567","0.1557" +"GO:0048588","developmental cell growth",10,2,2.64,1960,"0.78585","0.15614","0.1561" +"GO:0036265","RNA (guanine-N7)-methylation",3,1,0.79,1175,"0.60090","0.15667","0.1567" +"GO:0006936","muscle contraction",9,5,2.37,104,"0.06004","0.15672","0.1567" +"GO:0015908","fatty acid transport",5,2,1.32,673,"0.39599","0.15684","0.1568" +"GO:0015909","long-chain fatty acid transport",5,2,1.32,674,"0.39599","0.15684","0.1568" +"GO:0032309","icosanoid secretion",5,2,1.32,675,"0.39599","0.15684","0.1568" +"GO:0046717","acid secretion",5,2,1.32,676,"0.39599","0.15684","0.1568" +"GO:0050482","arachidonic acid secretion",5,2,1.32,677,"0.39599","0.15684","0.1568" +"GO:0071715","icosanoid transport",5,2,1.32,678,"0.39599","0.15684","0.1568" +"GO:1901571","fatty acid derivative transport",5,2,1.32,679,"0.39599","0.15684","0.1568" +"GO:1903963","arachidonate transport",5,2,1.32,680,"0.39599","0.15684","0.1568" +"GO:0045639","positive regulation of myeloid cell diff...",3,1,0.79,1176,"0.60090","0.15705","0.1571" +"GO:0045648","positive regulation of erythrocyte diffe...",3,1,0.79,1177,"0.60090","0.15705","0.1571" +"GO:0046718","viral entry into host cell",3,1,0.79,1178,"0.60090","0.15705","0.1571" +"GO:0061077","chaperone-mediated protein folding",22,6,5.8,977,"0.54270","0.15735","0.1574" +"GO:2000113","negative regulation of cellular macromol...",88,22,23.2,1467,"0.65647","0.15783","0.1578" +"GO:0009219","pyrimidine deoxyribonucleotide metabolic...",4,2,1.05,458,"0.28489","0.15864","0.1586" +"GO:0006220","pyrimidine nucleotide metabolic process",10,4,2.64,404,"0.25657","0.15962","0.1596" +"GO:0070059","intrinsic apoptotic signaling pathway in...",7,4,1.85,131,"0.08358","0.16302","0.1630" +"GO:0006434","seryl-tRNA aminoacylation",3,1,0.79,1179,"0.60090","0.16476","0.1648" +"GO:0051090","regulation of DNA-binding transcription ...",18,8,4.75,113,"0.07440","0.16506","0.1651" +"GO:0031326","regulation of cellular biosynthetic proc...",400,111,105.46,417,"0.26682","0.16572","0.1657" +"GO:0007010","cytoskeleton organization",94,33,24.78,68,"0.03568","0.12557","0.1659" +"GO:0044839","cell cycle G2/M phase transition",11,5,2.9,237,"0.13730","0.16589","0.1659" +"GO:0034504","protein localization to nucleus",30,8,7.91,995,"0.55495","0.16610","0.1661" +"GO:0009268","response to pH",4,2,1.05,459,"0.28489","0.16660","0.1666" +"GO:0072593","reactive oxygen species metabolic proces...",4,2,1.05,460,"0.28489","0.16660","0.1666" +"GO:2000377","regulation of reactive oxygen species me...",4,2,1.05,461,"0.28489","0.16660","0.1666" +"GO:1903578","regulation of ATP metabolic process",4,2,1.05,462,"0.28489","0.16694","0.1669" +"GO:0030511","positive regulation of transforming grow...",3,1,0.79,1180,"0.60090","0.16713","0.1671" +"GO:0042771","intrinsic apoptotic signaling pathway in...",3,1,0.79,1181,"0.60090","0.16713","0.1671" +"GO:0090342","regulation of cell aging",3,1,0.79,1182,"0.60090","0.16713","0.1671" +"GO:0090398","cellular senescence",3,1,0.79,1183,"0.60090","0.16713","0.1671" +"GO:1902165","regulation of intrinsic apoptotic signal...",3,1,0.79,1184,"0.60090","0.16713","0.1671" +"GO:1902166","negative regulation of intrinsic apoptot...",3,1,0.79,1185,"0.60090","0.16713","0.1671" +"GO:1902230","negative regulation of intrinsic apoptot...",3,1,0.79,1186,"0.60090","0.16713","0.1671" +"GO:1903846","positive regulation of cellular response...",3,1,0.79,1187,"0.60090","0.16713","0.1671" +"GO:2000772","regulation of cellular senescence",3,1,0.79,1188,"0.60090","0.16713","0.1671" +"GO:0031327","negative regulation of cellular biosynth...",93,25,24.52,844,"0.49482","0.16827","0.1683" +"GO:0070646","protein modification by small protein re...",29,9,7.65,577,"0.34839","0.16930","0.1693" +"GO:0043967","histone H4 acetylation",9,4,2.37,349,"0.19182","0.17016","0.1702" +"GO:0002443","leukocyte mediated immunity",16,3,4.22,2059,"0.83559","0.17036","0.1704" +"GO:0007413","axonal fasciculation",8,2,2.11,1476,"0.66636","0.17095","0.1710" +"GO:0034401","chromatin organization involved in regul...",8,2,2.11,1477,"0.66636","0.17095","0.1710" +"GO:0046685","response to arsenic-containing substance",8,2,2.11,1478,"0.66636","0.17095","0.1710" +"GO:0046688","response to copper ion",8,3,2.11,588,"0.35567","0.17095","0.1710" +"GO:0070828","heterochromatin organization",8,2,2.11,1479,"0.66636","0.17095","0.1710" +"GO:0070868","heterochromatin organization involved in...",8,2,2.11,1480,"0.66636","0.17095","0.1710" +"GO:0097549","chromatin organization involved in negat...",8,2,2.11,1481,"0.66636","0.17095","0.1710" +"GO:0106030","neuron projection fasciculation",8,2,2.11,1482,"0.66636","0.17095","0.1710" +"GO:0044093","positive regulation of molecular functio...",82,26,21.62,249,"0.16150","0.17116","0.1712" +"GO:0006508","proteolysis",237,65,62.49,625,"0.37465","0.17118","0.1712" +"GO:0007204","positive regulation of cytosolic calcium...",5,1,1.32,1868,"0.78380","0.17253","0.1725" +"GO:0050796","regulation of insulin secretion",5,2,1.32,681,"0.39599","0.17253","0.1725" +"GO:0051480","regulation of cytosolic calcium ion conc...",5,1,1.32,1869,"0.78380","0.17253","0.1725" +"GO:0009649","entrainment of circadian clock",4,2,1.05,463,"0.28489","0.17355","0.1736" +"GO:0030308","negative regulation of cell growth",14,5,3.69,532,"0.29924","0.17421","0.1742" +"GO:0048608","reproductive structure development",36,9,9.49,1416,"0.63718","0.17421","0.1742" +"GO:0030098","lymphocyte differentiation",5,1,1.32,1870,"0.78380","0.17464","0.1746" +"GO:0030217","T cell differentiation",5,1,1.32,1871,"0.78380","0.17464","0.1746" +"GO:0072089","stem cell proliferation",5,1,1.32,1872,"0.78380","0.17464","0.1746" +"GO:0035456","response to interferon-beta",6,3,1.58,332,"0.19140","0.17508","0.1751" +"GO:0035458","cellular response to interferon-beta",6,3,1.58,333,"0.19140","0.17508","0.1751" +"GO:0016569","covalent chromatin modification",75,23,19.77,375,"0.23162","0.17663","0.1766" +"GO:0010821","regulation of mitochondrion organization",17,3,4.48,2154,"0.86590","0.17667","0.1767" +"GO:0045926","negative regulation of growth",19,7,5.01,365,"0.21340","0.17678","0.1768" +"GO:0045216","cell-cell junction organization",4,2,1.05,464,"0.28489","0.17698","0.1770" +"GO:0048232","male gamete generation",39,11,10.28,789,"0.45714","0.17983","0.1798" +"GO:0022604","regulation of cell morphogenesis",10,3,2.64,921,"0.51518","0.18051","0.1805" +"GO:0060560","developmental growth involved in morphog...",10,2,2.64,1961,"0.78585","0.18051","0.1805" +"GO:0000291","nuclear-transcribed mRNA catabolic proce...",3,1,0.79,1189,"0.60090","0.18268","0.1827" +"GO:0043928","exonucleolytic nuclear-transcribed mRNA ...",3,1,0.79,1190,"0.60090","0.18268","0.1827" +"GO:0065002","intracellular protein transmembrane tran...",9,3,2.37,762,"0.43760","0.18310","0.1831" +"GO:0060255","regulation of macromolecule metabolic pr...",518,143,136.57,399,"0.25502","0.14244","0.1833" +"GO:0034622","cellular protein-containing complex asse...",115,33,30.32,548,"0.31449","0.18461","0.1846" +"GO:0009890","negative regulation of biosynthetic proc...",95,26,25.05,783,"0.45046","0.18578","0.1858" +"GO:0046777","protein autophosphorylation",17,3,4.48,2155,"0.86590","0.18670","0.1867" +"GO:0048524","positive regulation of viral process",17,4,4.48,1550,"0.69414","0.18670","0.1867" +"GO:1903900","regulation of viral life cycle",17,4,4.48,1551,"0.69414","0.18670","0.1867" +"GO:0010810","regulation of cell-substrate adhesion",5,1,1.32,1873,"0.78380","0.18709","0.1871" +"GO:0002253","activation of immune response",20,6,5.27,777,"0.43841","0.18732","0.1873" +"GO:0006813","potassium ion transport",12,3,3.16,1447,"0.65089","0.18756","0.1876" +"GO:1901021","positive regulation of calcium ion trans...",4,2,1.05,465,"0.28489","0.18794","0.1879" +"GO:0032103","positive regulation of response to exter...",9,3,2.37,763,"0.43760","0.18862","0.1886" +"GO:1901988","negative regulation of cell cycle phase ...",10,5,2.64,139,"0.09471","0.18867","0.1887" +"GO:1901991","negative regulation of mitotic cell cycl...",10,5,2.64,140,"0.09471","0.18867","0.1887" +"GO:0061564","axon development",35,8,9.23,1815,"0.74188","0.18879","0.1888" +"GO:0015931","nucleobase-containing compound transport",23,7,6.06,730,"0.40428","0.18922","0.1892" +"GO:0006405","RNA export from nucleus",15,5,3.95,606,"0.35913","0.18947","0.1895" +"GO:0044314","protein K27-linked ubiquitination",4,2,1.05,466,"0.28489","0.18969","0.1897" +"GO:0085020","protein K6-linked ubiquitination",4,2,1.05,467,"0.28489","0.18969","0.1897" +"GO:0031399","regulation of protein modification proce...",90,30,23.73,116,"0.08241","0.19015","0.1902" +"GO:0042135","neurotransmitter catabolic process",3,1,0.79,1191,"0.60090","0.19082","0.1908" +"GO:0014823","response to activity",14,4,3.69,948,"0.52650","0.19111","0.1911" +"GO:0045070","positive regulation of viral genome repl...",14,3,3.69,1831,"0.75711","0.19111","0.1911" +"GO:0051084","'de novo' posttranslational protein fold...",14,4,3.69,949,"0.52650","0.19111","0.1911" +"GO:0045109","intermediate filament organization",3,1,0.79,1192,"0.60090","0.19213","0.1921" +"GO:1903522","regulation of blood circulation",12,6,3.16,105,"0.06823","0.19234","0.1923" +"GO:0051173","positive regulation of nitrogen compound...",131,40,34.54,248,"0.15670","0.19236","0.1924" +"GO:0006476","protein deacetylation",11,4,2.9,553,"0.32472","0.19273","0.1927" +"GO:0007507","heart development",25,10,6.59,144,"0.09563","0.19436","0.1944" +"GO:0006304","DNA modification",4,2,1.05,468,"0.28489","0.19474","0.1947" +"GO:0017015","regulation of transforming growth factor...",7,2,1.85,1092,"0.58869","0.19476","0.1948" +"GO:0090101","negative regulation of transmembrane rec...",7,2,1.85,1093,"0.58869","0.19476","0.1948" +"GO:0090169","regulation of spindle assembly",7,1,1.85,2189,"0.88294","0.19476","0.1948" +"GO:0090288","negative regulation of cellular response...",7,2,1.85,1094,"0.58869","0.19476","0.1948" +"GO:1901673","regulation of mitotic spindle assembly",7,1,1.85,2190,"0.88294","0.19476","0.1948" +"GO:1903844","regulation of cellular response to trans...",7,2,1.85,1095,"0.58869","0.19476","0.1948" +"GO:0002221","pattern recognition receptor signaling p...",11,3,2.9,1059,"0.58661","0.19495","0.1950" +"GO:0007015","actin filament organization",27,9,7.12,416,"0.26530","0.19583","0.1958" +"GO:0022603","regulation of anatomical structure morph...",27,10,7.12,245,"0.14816","0.19583","0.1958" +"GO:0036010","protein localization to endosome",5,2,1.32,682,"0.39599","0.19611","0.1961" +"GO:0006406","mRNA export from nucleus",8,3,2.11,589,"0.35567","0.19702","0.1970" +"GO:0071427","mRNA-containing ribonucleoprotein comple...",8,3,2.11,590,"0.35567","0.19702","0.1970" +"GO:0001657","ureteric bud development",4,2,1.05,469,"0.28489","0.19718","0.1972" +"GO:0001658","branching involved in ureteric bud morph...",4,2,1.05,470,"0.28489","0.19718","0.1972" +"GO:0001823","mesonephros development",4,2,1.05,471,"0.28489","0.19718","0.1972" +"GO:0060675","ureteric bud morphogenesis",4,2,1.05,472,"0.28489","0.19718","0.1972" +"GO:0060993","kidney morphogenesis",4,2,1.05,473,"0.28489","0.19718","0.1972" +"GO:0061333","renal tubule morphogenesis",4,2,1.05,474,"0.28489","0.19718","0.1972" +"GO:0072028","nephron morphogenesis",4,2,1.05,475,"0.28489","0.19718","0.1972" +"GO:0072078","nephron tubule morphogenesis",4,2,1.05,476,"0.28489","0.19718","0.1972" +"GO:0072088","nephron epithelium morphogenesis",4,2,1.05,477,"0.28489","0.19718","0.1972" +"GO:0072163","mesonephric epithelium development",4,2,1.05,478,"0.28489","0.19718","0.1972" +"GO:0072164","mesonephric tubule development",4,2,1.05,479,"0.28489","0.19718","0.1972" +"GO:0072171","mesonephric tubule morphogenesis",4,2,1.05,480,"0.28489","0.19718","0.1972" +"GO:0008334","histone mRNA metabolic process",4,2,1.05,481,"0.28489","0.19756","0.1976" +"GO:0042670","retinal cone cell differentiation",3,1,0.79,1193,"0.60090","0.19788","0.1979" +"GO:0046549","retinal cone cell development",3,1,0.79,1194,"0.60090","0.19788","0.1979" +"GO:0060081","membrane hyperpolarization",3,2,0.79,281,"0.17178","0.19788","0.1979" +"GO:2001259","positive regulation of cation channel ac...",3,2,0.79,282,"0.17178","0.19788","0.1979" +"GO:0046434","organophosphate catabolic process",14,6,3.69,226,"0.13668","0.19828","0.1983" +"GO:0045935","positive regulation of nucleobase-contai...",82,24,21.62,546,"0.31112","0.19838","0.1984" +"GO:2001235","positive regulation of apoptotic signali...",11,5,2.9,238,"0.13730","0.19876","0.1988" +"GO:0032786","positive regulation of DNA-templated tra...",4,2,1.05,482,"0.28489","0.19911","0.1991" +"GO:0007405","neuroblast proliferation",4,1,1.05,1585,"0.70624","0.20080","0.2008" +"GO:0006364","rRNA processing",42,11,11.07,998,"0.56969","0.20138","0.2014" +"GO:0007076","mitotic chromosome condensation",3,2,0.79,283,"0.17178","0.20147","0.2015" +"GO:0110096","cellular response to aldehyde",4,2,1.05,483,"0.28489","0.20224","0.2022" +"GO:0010605","negative regulation of macromolecule met...",162,37,42.71,2172,"0.87412","0.20256","0.2026" +"GO:1901655","cellular response to ketone",6,3,1.58,334,"0.19140","0.20267","0.2027" +"GO:0051127","positive regulation of actin nucleation",7,4,1.85,132,"0.08358","0.20298","0.2030" +"GO:0060284","regulation of cell development",38,11,10.02,742,"0.41848","0.20378","0.2038" +"GO:0001751","compound eye photoreceptor cell differen...",8,4,2.11,208,"0.13325","0.20458","0.2046" +"GO:0032088","negative regulation of NF-kappaB transcr...",3,2,0.79,284,"0.17178","0.20496","0.2050" +"GO:0051168","nuclear export",17,6,4.48,442,"0.27747","0.20499","0.2050" +"GO:0070936","protein K48-linked ubiquitination",10,4,2.64,405,"0.25657","0.20577","0.2058" +"GO:0010389","regulation of G2/M transition of mitotic...",8,4,2.11,209,"0.13325","0.20711","0.2071" +"GO:0009266","response to temperature stimulus",39,11,10.28,790,"0.45714","0.01335","0.2072" +"GO:0032515","negative regulation of phosphoprotein ph...",3,2,0.79,285,"0.17178","0.20772","0.2077" +"GO:1903779","regulation of cardiac conduction",3,2,0.79,286,"0.17178","0.20772","0.2077" +"GO:0051262","protein tetramerization",6,3,1.58,335,"0.19140","0.20774","0.2077" +"GO:0033674","positive regulation of kinase activity",12,3,3.16,1448,"0.65089","0.20796","0.2080" +"GO:0042592","homeostatic process",99,26,26.1,988,"0.54888","0.20976","0.2098" +"GO:0009889","regulation of biosynthetic process",402,111,105.99,526,"0.28873","0.20981","0.2098" +"GO:0006334","nucleosome assembly",9,4,2.37,350,"0.19182","0.20996","0.2100" +"GO:0031497","chromatin assembly",9,4,2.37,351,"0.19182","0.20996","0.2100" +"GO:0006354","DNA-templated transcription, elongation",18,6,4.75,566,"0.33041","0.21012","0.2101" +"GO:0016579","protein deubiquitination",27,8,7.12,748,"0.42061","0.21080","0.2108" +"GO:0009617","response to bacterium",19,5,5.01,1139,"0.58921","0.21111","0.2111" +"GO:0071897","DNA biosynthetic process",10,4,2.64,406,"0.25657","0.21126","0.2113" +"GO:1902235","regulation of endoplasmic reticulum stre...",6,3,1.58,336,"0.19140","0.21136","0.2114" +"GO:2001237","negative regulation of extrinsic apoptot...",6,3,1.58,337,"0.19140","0.21136","0.2114" +"GO:0010638","positive regulation of organelle organiz...",57,15,15.03,993,"0.55470","0.21221","0.2122" +"GO:0140013","meiotic nuclear division",15,6,3.95,315,"0.17946","0.21237","0.2124" +"GO:0097193","intrinsic apoptotic signaling pathway",18,7,4.75,254,"0.17160","0.21331","0.2133" +"GO:0007179","transforming growth factor beta receptor...",11,3,2.9,1060,"0.58661","0.21332","0.2133" +"GO:0001763","morphogenesis of a branching structure",7,3,1.85,428,"0.27227","0.21358","0.2136" +"GO:0048754","branching morphogenesis of an epithelial...",7,3,1.85,429,"0.27227","0.21358","0.2136" +"GO:0061138","morphogenesis of a branching epithelium",7,3,1.85,430,"0.27227","0.21358","0.2136" +"GO:0071772","response to BMP",7,2,1.85,1096,"0.58869","0.21358","0.2136" +"GO:0071773","cellular response to BMP stimulus",7,2,1.85,1097,"0.58869","0.21358","0.2136" +"GO:0035372","protein localization to microtubule",3,2,0.79,287,"0.17178","0.21393","0.2139" +"GO:0044380","protein localization to cytoskeleton",3,2,0.79,288,"0.17178","0.21393","0.2139" +"GO:0072698","protein localization to microtubule cyto...",3,2,0.79,289,"0.17178","0.21393","0.2139" +"GO:0060669","embryonic placenta morphogenesis",4,1,1.05,1586,"0.70624","0.21398","0.2140" +"GO:0060706","cell differentiation involved in embryon...",4,1,1.05,1587,"0.70624","0.21398","0.2140" +"GO:0060710","chorio-allantoic fusion",4,1,1.05,1588,"0.70624","0.21398","0.2140" +"GO:0060713","labyrinthine layer morphogenesis",4,1,1.05,1589,"0.70624","0.21398","0.2140" +"GO:0060715","syncytiotrophoblast cell differentiation...",4,1,1.05,1590,"0.70624","0.21398","0.2140" +"GO:0060717","chorion development",4,1,1.05,1591,"0.70624","0.21398","0.2140" +"GO:1903867","extraembryonic membrane development",4,1,1.05,1592,"0.70624","0.21398","0.2140" +"GO:0010771","negative regulation of cell morphogenesi...",5,2,1.32,683,"0.39599","0.21443","0.2144" +"GO:0048367","shoot system development",5,2,1.32,684,"0.39599","0.21443","0.2144" +"GO:0050770","regulation of axonogenesis",5,1,1.32,1874,"0.78380","0.21443","0.2144" +"GO:0061387","regulation of extent of cell growth",5,1,1.32,1875,"0.78380","0.21443","0.2144" +"GO:0071216","cellular response to biotic stimulus",5,1,1.32,1876,"0.78380","0.21443","0.2144" +"GO:0051092","positive regulation of NF-kappaB transcr...",9,4,2.37,352,"0.19182","0.21565","0.2157" +"GO:0010959","regulation of metal ion transport",12,4,3.16,646,"0.39376","0.21601","0.2160" +"GO:0018193","peptidyl-amino acid modification",97,21,25.57,2219,"0.88472","0.21608","0.2161" +"GO:0090175","regulation of establishment of planar po...",3,1,0.79,1195,"0.60090","0.21725","0.2172" +"GO:0009735","response to cytokinin",3,0,0.79,2500,"1.00000","0.21725","0.2172" +"GO:0044057","regulation of system process",19,8,5.01,148,"0.09994","0.21800","0.2180" +"GO:0016570","histone modification",71,21,18.72,544,"0.30814","0.21890","0.2189" +"GO:0090307","mitotic spindle assembly",9,2,2.37,1787,"0.73172","0.21905","0.2190" +"GO:1902275","regulation of chromatin organization",19,7,5.01,366,"0.21340","0.21921","0.2192" +"GO:0010608","posttranscriptional regulation of gene e...",51,11,13.45,2042,"0.82710","0.22156","0.2216" +"GO:0043902","positive regulation of multi-organism pr...",22,6,5.8,978,"0.54270","0.22257","0.2226" +"GO:0006030","chitin metabolic process",21,8,5.54,251,"0.16361","0.22298","0.2230" +"GO:0046530","photoreceptor cell differentiation",18,7,4.75,255,"0.17160","0.22347","0.2235" +"GO:0060359","response to ammonium ion",6,2,1.58,862,"0.49828","0.22405","0.2241" +"GO:0030307","positive regulation of cell growth",3,2,0.79,290,"0.17178","0.22430","0.2243" +"GO:0001508","action potential",4,2,1.05,484,"0.28489","0.22505","0.2250" +"GO:0006942","regulation of striated muscle contractio...",4,2,1.05,485,"0.28489","0.22505","0.2250" +"GO:0035308","negative regulation of protein dephospho...",4,2,1.05,486,"0.28489","0.22505","0.2250" +"GO:0048679","regulation of axon regeneration",4,1,1.05,1593,"0.70624","0.22505","0.2250" +"GO:0048680","positive regulation of axon regeneration",4,1,1.05,1594,"0.70624","0.22505","0.2250" +"GO:0055117","regulation of cardiac muscle contraction",4,2,1.05,487,"0.28489","0.22505","0.2250" +"GO:0070570","regulation of neuron projection regenera...",4,1,1.05,1595,"0.70624","0.22505","0.2250" +"GO:0070572","positive regulation of neuron projection...",4,1,1.05,1596,"0.70624","0.22505","0.2250" +"GO:0086065","cell communication involved in cardiac c...",4,2,1.05,488,"0.28489","0.22505","0.2250" +"GO:1903036","positive regulation of response to wound...",4,1,1.05,1597,"0.70624","0.22505","0.2250" +"GO:1903523","negative regulation of blood circulation",4,2,1.05,489,"0.28489","0.22505","0.2250" +"GO:0009127","purine nucleoside monophosphate biosynth...",8,4,2.11,210,"0.13325","0.22572","0.2257" +"GO:0009156","ribonucleoside monophosphate biosyntheti...",8,4,2.11,211,"0.13325","0.22572","0.2257" +"GO:0009168","purine ribonucleoside monophosphate bios...",8,4,2.11,212,"0.13325","0.22572","0.2257" +"GO:0034470","ncRNA processing",99,27,26.1,788,"0.45645","0.03134","0.2262" +"GO:0009615","response to virus",6,3,1.58,338,"0.19140","0.22624","0.2262" +"GO:0007565","female pregnancy",9,4,2.37,353,"0.19182","0.22717","0.2272" +"GO:0006090","pyruvate metabolic process",4,1,1.05,1598,"0.70624","0.22801","0.2280" +"GO:0051193","regulation of cofactor metabolic process",4,1,1.05,1599,"0.70624","0.22801","0.2280" +"GO:0071902","positive regulation of protein serine/th...",4,2,1.05,490,"0.28489","0.22801","0.2280" +"GO:0006029","proteoglycan metabolic process",3,0,0.79,2501,"1.00000","0.22986","0.2299" +"GO:0030166","proteoglycan biosynthetic process",3,0,0.79,2502,"1.00000","0.22986","0.2299" +"GO:0032270","positive regulation of cellular protein ...",74,22,19.51,530,"0.29251","0.22996","0.2300" +"GO:0030100","regulation of endocytosis",22,3,5.8,2387,"0.95478","0.23055","0.2306" +"GO:0051493","regulation of cytoskeleton organization",34,10,8.96,736,"0.40577","0.23121","0.2312" +"GO:0051187","cofactor catabolic process",9,3,2.37,764,"0.43760","0.23355","0.2336" +"GO:0072527","pyrimidine-containing compound metabolic...",14,6,3.69,227,"0.13668","0.23416","0.2342" +"GO:0051302","regulation of cell division",5,2,1.32,685,"0.39599","0.23452","0.2345" +"GO:0071804","cellular potassium ion transport",6,2,1.58,863,"0.49828","0.23535","0.2354" +"GO:0071805","potassium ion transmembrane transport",6,2,1.58,864,"0.49828","0.23535","0.2354" +"GO:0051171","regulation of nitrogen compound metaboli...",490,135,129.19,439,"0.27298","0.18458","0.2356" +"GO:0001701","in utero embryonic development",22,6,5.8,979,"0.54270","0.23641","0.2364" +"GO:0009394","2'-deoxyribonucleotide metabolic process",5,2,1.32,686,"0.39599","0.23647","0.2365" +"GO:0019692","deoxyribose phosphate metabolic process",5,2,1.32,687,"0.39599","0.23647","0.2365" +"GO:0008333","endosome to lysosome transport",3,0,0.79,2503,"1.00000","0.23684","0.2368" +"GO:0090068","positive regulation of cell cycle proces...",12,4,3.16,647,"0.39376","0.23809","0.2381" +"GO:0050792","regulation of viral process",19,5,5.01,1140,"0.58921","0.23824","0.2382" +"GO:0045892","negative regulation of transcription, DN...",81,21,21.36,1002,"0.57948","0.23828","0.2383" +"GO:0051054","positive regulation of DNA metabolic pro...",11,4,2.9,554,"0.32472","0.23842","0.2384" +"GO:0002237","response to molecule of bacterial origin",7,1,1.85,2191,"0.88294","0.23897","0.2390" +"GO:0060249","anatomical structure homeostasis",26,10,6.85,194,"0.12032","0.23910","0.2391" +"GO:0006360","transcription by RNA polymerase I",4,0,1.05,2504,"1.00000","0.24014","0.2401" +"GO:0045860","positive regulation of protein kinase ac...",11,3,2.9,1061,"0.58661","0.24125","0.2413" +"GO:2000027","regulation of animal organ morphogenesis",11,5,2.9,239,"0.13730","0.24125","0.2413" +"GO:0031324","negative regulation of cellular metaboli...",135,34,35.59,1468,"0.65805","0.24239","0.2424" +"GO:0006986","response to unfolded protein",17,4,4.48,1552,"0.69414","0.24283","0.2428" +"GO:0007339","binding of sperm to zona pellucida",7,2,1.85,1098,"0.58869","0.24287","0.2429" +"GO:0009988","cell-cell recognition",7,2,1.85,1099,"0.58869","0.24287","0.2429" +"GO:0035036","sperm-egg recognition",7,2,1.85,1100,"0.58869","0.24287","0.2429" +"GO:0001745","compound eye morphogenesis",13,5,3.43,386,"0.24118","0.24291","0.2429" +"GO:0051091","positive regulation of DNA-binding trans...",12,6,3.16,106,"0.06823","0.24336","0.2434" +"GO:0044257","cellular protein catabolic process",94,25,24.78,937,"0.51989","0.24442","0.2444" +"GO:0051603","proteolysis involved in cellular protein...",94,25,24.78,938,"0.51989","0.24442","0.2444" +"GO:0033028","myeloid cell apoptotic process",3,1,0.79,1196,"0.60090","0.24448","0.2445" +"GO:0033032","regulation of myeloid cell apoptotic pro...",3,1,0.79,1197,"0.60090","0.24448","0.2445" +"GO:0033033","negative regulation of myeloid cell apop...",3,1,0.79,1198,"0.60090","0.24448","0.2445" +"GO:0035872","nucleotide-binding domain, leucine rich ...",3,1,0.79,1199,"0.60090","0.24448","0.2445" +"GO:0038034","signal transduction in absence of ligand",3,1,0.79,1200,"0.60090","0.24448","0.2445" +"GO:0070423","nucleotide-binding oligomerization domai...",3,1,0.79,1201,"0.60090","0.24448","0.2445" +"GO:0070424","regulation of nucleotide-binding oligome...",3,1,0.79,1202,"0.60090","0.24448","0.2445" +"GO:0070426","positive regulation of nucleotide-bindin...",3,1,0.79,1203,"0.60090","0.24448","0.2445" +"GO:0070431","nucleotide-binding oligomerization domai...",3,1,0.79,1204,"0.60090","0.24448","0.2445" +"GO:0070432","regulation of nucleotide-binding oligome...",3,1,0.79,1205,"0.60090","0.24448","0.2445" +"GO:0070434","positive regulation of nucleotide-bindin...",3,1,0.79,1206,"0.60090","0.24448","0.2445" +"GO:0097192","extrinsic apoptotic signaling pathway in...",3,1,0.79,1207,"0.60090","0.24448","0.2445" +"GO:1901099","negative regulation of signal transducti...",3,1,0.79,1208,"0.60090","0.24448","0.2445" +"GO:2001239","regulation of extrinsic apoptotic signal...",3,1,0.79,1209,"0.60090","0.24448","0.2445" +"GO:2001240","negative regulation of extrinsic apoptot...",3,1,0.79,1210,"0.60090","0.24448","0.2445" +"GO:0016246","RNA interference",12,4,3.16,648,"0.39376","0.24473","0.2447" +"GO:0072665","protein localization to vacuole",13,2,3.43,2236,"0.89476","0.24497","0.2450" +"GO:0072666","establishment of protein localization to...",13,2,3.43,2237,"0.89476","0.24497","0.2450" +"GO:0010522","regulation of calcium ion transport into...",4,1,1.05,1600,"0.70624","0.24531","0.2453" +"GO:0051899","membrane depolarization",4,2,1.05,491,"0.28489","0.24531","0.2453" +"GO:0060401","cytosolic calcium ion transport",4,1,1.05,1601,"0.70624","0.24531","0.2453" +"GO:0060402","calcium ion transport into cytosol",4,1,1.05,1602,"0.70624","0.24531","0.2453" +"GO:0034219","carbohydrate transmembrane transport",4,0,1.05,2505,"1.00000","0.24531","0.2453" +"GO:0051784","negative regulation of nuclear division",6,3,1.58,339,"0.19140","0.24579","0.2458" +"GO:0002478","antigen processing and presentation of e...",4,1,1.05,1603,"0.70624","0.24591","0.2459" +"GO:0019882","antigen processing and presentation",4,1,1.05,1604,"0.70624","0.24591","0.2459" +"GO:0019884","antigen processing and presentation of e...",4,1,1.05,1605,"0.70624","0.24591","0.2459" +"GO:0048002","antigen processing and presentation of p...",4,1,1.05,1606,"0.70624","0.24591","0.2459" +"GO:0032410","negative regulation of transporter activ...",3,2,0.79,291,"0.17178","0.24689","0.2469" +"GO:0032413","negative regulation of ion transmembrane...",3,2,0.79,292,"0.17178","0.24689","0.2469" +"GO:0034763","negative regulation of transmembrane tra...",3,2,0.79,293,"0.17178","0.24689","0.2469" +"GO:0034766","negative regulation of ion transmembrane...",3,2,0.79,294,"0.17178","0.24689","0.2469" +"GO:0043271","negative regulation of ion transport",3,2,0.79,295,"0.17178","0.24689","0.2469" +"GO:0051896","regulation of protein kinase B signaling",3,2,0.79,296,"0.17178","0.24689","0.2469" +"GO:0099601","regulation of neurotransmitter receptor ...",3,2,0.79,297,"0.17178","0.24689","0.2469" +"GO:1900449","regulation of glutamate receptor signali...",3,2,0.79,298,"0.17178","0.24689","0.2469" +"GO:1904063","negative regulation of cation transmembr...",3,2,0.79,299,"0.17178","0.24689","0.2469" +"GO:2001258","negative regulation of cation channel ac...",3,2,0.79,300,"0.17178","0.24689","0.2469" +"GO:1902236","negative regulation of endoplasmic retic...",5,3,1.32,188,"0.11824","0.24702","0.2470" +"GO:0009410","response to xenobiotic stimulus",7,4,1.85,133,"0.08358","0.24760","0.2476" +"GO:0002764","immune response-regulating signaling pat...",19,6,5.01,633,"0.38441","0.24860","0.2486" +"GO:0051928","positive regulation of calcium ion trans...",8,3,2.11,591,"0.35567","0.25028","0.2503" +"GO:1903842","response to arsenite ion",7,2,1.85,1101,"0.58869","0.25078","0.2508" +"GO:0042274","ribosomal small subunit biogenesis",10,2,2.64,1962,"0.78585","0.25157","0.2516" +"GO:0070897","transcription preinitiation complex asse...",6,2,1.58,865,"0.49828","0.25181","0.2518" +"GO:1903747","regulation of establishment of protein l...",13,1,3.43,2442,"0.98148","0.25222","0.2522" +"GO:0019079","viral genome replication",16,4,4.22,1428,"0.64337","0.25253","0.2525" +"GO:0051261","protein depolymerization",16,4,4.22,1429,"0.64337","0.25253","0.2525" +"GO:0099003","vesicle-mediated transport in synapse",16,3,4.22,2060,"0.83559","0.25253","0.2525" +"GO:0009084","glutamine family amino acid biosynthetic...",3,2,0.79,301,"0.17178","0.25262","0.2526" +"GO:0006928","movement of cell or subcellular componen...",95,23,25.05,1776,"0.72308","0.25358","0.2536" +"GO:0001822","kidney development",21,7,5.54,538,"0.30583","0.25478","0.2548" +"GO:0072001","renal system development",21,7,5.54,539,"0.30583","0.25478","0.2548" +"GO:0007283","spermatogenesis",36,10,9.49,835,"0.48687","0.25646","0.2565" +"GO:0050851","antigen receptor-mediated signaling path...",7,3,1.85,431,"0.27227","0.25723","0.2572" +"GO:0050852","T cell receptor signaling pathway",7,3,1.85,432,"0.27227","0.25723","0.2572" +"GO:0002164","larval development",8,3,2.11,592,"0.35567","0.25826","0.2583" +"GO:0010038","response to metal ion",30,11,7.91,243,"0.14088","0.25895","0.2589" +"GO:1902679","negative regulation of RNA biosynthetic ...",83,22,21.88,959,"0.53113","0.26024","0.2602" +"GO:1903507","negative regulation of nucleic acid-temp...",83,22,21.88,960,"0.53113","0.26024","0.2602" +"GO:0006613","cotranslational protein targeting to mem...",4,1,1.05,1607,"0.70624","0.26049","0.2605" +"GO:0006614","SRP-dependent cotranslational protein ta...",4,1,1.05,1608,"0.70624","0.26049","0.2605" +"GO:0022618","ribonucleoprotein complex assembly",31,10,8.17,522,"0.28589","0.26069","0.2607" +"GO:0071826","ribonucleoprotein complex subunit organi...",31,10,8.17,523,"0.28589","0.26069","0.2607" +"GO:0034394","protein localization to cell surface",3,1,0.79,1211,"0.60090","0.26076","0.2608" +"GO:2000008","regulation of protein localization to ce...",3,1,0.79,1212,"0.60090","0.26076","0.2608" +"GO:0007064","mitotic sister chromatid cohesion",6,3,1.58,340,"0.19140","0.26220","0.2622" +"GO:0031398","positive regulation of protein ubiquitin...",17,6,4.48,443,"0.27747","0.26229","0.2623" +"GO:1903322","positive regulation of protein modificat...",17,6,4.48,444,"0.27747","0.26229","0.2623" +"GO:0045787","positive regulation of cell cycle",16,6,4.22,373,"0.22676","0.26323","0.2632" +"GO:0044788","modulation by host of viral process",13,3,3.43,1738,"0.70769","0.26332","0.2633" +"GO:0044794","positive regulation by host of viral pro...",13,3,3.43,1739,"0.70769","0.26332","0.2633" +"GO:0044827","modulation by host of viral genome repli...",13,3,3.43,1740,"0.70769","0.26332","0.2633" +"GO:0044829","positive regulation by host of viral gen...",13,3,3.43,1741,"0.70769","0.26332","0.2633" +"GO:0051085","chaperone cofactor-dependent protein ref...",13,3,3.43,1742,"0.70769","0.26332","0.2633" +"GO:0008344","adult locomotory behavior",4,2,1.05,492,"0.28489","0.26421","0.2642" +"GO:0060135","maternal process involved in female preg...",4,2,1.05,493,"0.28489","0.26421","0.2642" +"GO:0070193","synaptonemal complex organization",4,1,1.05,1609,"0.70624","0.26421","0.2642" +"GO:1901071","glucosamine-containing compound metaboli...",22,8,5.8,361,"0.20103","0.26453","0.2645" +"GO:0051321","meiotic cell cycle",22,7,5.8,582,"0.35474","0.26506","0.2651" +"GO:0010970","transport along microtubule",22,6,5.8,980,"0.54270","0.26627","0.2663" +"GO:0030705","cytoskeleton-dependent intracellular tra...",22,6,5.8,981,"0.54270","0.26627","0.2663" +"GO:0099111","microtubule-based transport",22,6,5.8,982,"0.54270","0.26627","0.2663" +"GO:0010628","positive regulation of gene expression",81,22,21.36,816,"0.47770","0.26694","0.2669" +"GO:0007167","enzyme linked receptor protein signaling...",36,8,9.49,1844,"0.77179","0.26707","0.2671" +"GO:0010941","regulation of cell death",79,26,20.83,154,"0.11450","0.26739","0.2674" +"GO:0032984","protein-containing complex disassembly",31,6,8.17,2152,"0.86537","0.26807","0.2681" +"GO:0072525","pyridine-containing compound biosyntheti...",5,1,1.32,1877,"0.78380","0.26831","0.2683" +"GO:0090311","regulation of protein deacetylation",6,3,1.58,341,"0.19140","0.26833","0.2683" +"GO:0022412","cellular process involved in reproductio...",45,10,11.86,1979,"0.78723","0.26834","0.2683" +"GO:0090312","positive regulation of protein deacetyla...",4,2,1.05,494,"0.28489","0.26892","0.2689" +"GO:0009226","nucleotide-sugar biosynthetic process",4,1,1.05,1610,"0.70624","0.27066","0.2707" +"GO:0001756","somitogenesis",5,3,1.32,189,"0.11824","0.27184","0.2718" +"GO:0061053","somite development",5,3,1.32,190,"0.11824","0.27184","0.2718" +"GO:0046474","glycerophospholipid biosynthetic process",16,4,4.22,1430,"0.64337","0.27214","0.2721" +"GO:0009163","nucleoside biosynthetic process",5,2,1.32,688,"0.39599","0.27256","0.2726" +"GO:0042455","ribonucleoside biosynthetic process",5,2,1.32,689,"0.39599","0.27256","0.2726" +"GO:0046939","nucleotide phosphorylation",5,2,1.32,690,"0.39599","0.27256","0.2726" +"GO:1901659","glycosyl compound biosynthetic process",5,2,1.32,691,"0.39599","0.27256","0.2726" +"GO:0007088","regulation of mitotic nuclear division",17,6,4.48,445,"0.27747","0.27400","0.2740" +"GO:0002521","leukocyte differentiation",6,1,1.58,2070,"0.84091","0.27403","0.2740" +"GO:0031334","positive regulation of protein complex a...",27,7,7.12,1149,"0.59415","0.27417","0.2742" +"GO:0022417","protein maturation by protein folding",3,2,0.79,302,"0.17178","0.27474","0.2747" +"GO:0032042","mitochondrial DNA metabolic process",3,2,0.79,303,"0.17178","0.27474","0.2747" +"GO:0044837","actomyosin contractile ring organization",4,2,1.05,495,"0.28489","0.27592","0.2759" +"GO:0006826","iron ion transport",4,1,1.05,1611,"0.70624","0.27624","0.2762" +"GO:0072358","cardiovascular system development",10,3,2.64,922,"0.51518","0.27674","0.2767" +"GO:0016925","protein sumoylation",3,2,0.79,304,"0.17178","0.27696","0.2770" +"GO:0016241","regulation of macroautophagy",6,1,1.58,2071,"0.84091","0.27704","0.2770" +"GO:0006869","lipid transport",24,7,6.33,785,"0.45366","0.27747","0.2775" +"GO:0016574","histone ubiquitination",8,3,2.11,593,"0.35567","0.27763","0.2776" +"GO:0051247","positive regulation of protein metabolic...",77,22,20.3,617,"0.37002","0.27804","0.2780" +"GO:0000041","transition metal ion transport",11,2,2.9,2048,"0.83013","0.27909","0.2791" +"GO:0044703","multi-organism reproductive process",72,17,18.98,1818,"0.74579","0.28037","0.2804" +"GO:0016322","neuron remodeling",5,2,1.32,692,"0.39599","0.28190","0.2819" +"GO:0042551","neuron maturation",5,2,1.32,693,"0.39599","0.28190","0.2819" +"GO:0000266","mitochondrial fission",4,2,1.05,496,"0.28489","0.28221","0.2822" +"GO:0070266","necroptotic process",4,2,1.05,497,"0.28489","0.28221","0.2822" +"GO:0042157","lipoprotein metabolic process",18,6,4.75,567,"0.33041","0.28240","0.2824" +"GO:1903708","positive regulation of hemopoiesis",5,1,1.32,1878,"0.78380","0.28263","0.2826" +"GO:0002520","immune system development",20,4,5.27,2024,"0.81463","0.28287","0.2829" +"GO:0048534","hematopoietic or lymphoid organ developm...",20,4,5.27,2025,"0.81463","0.28287","0.2829" +"GO:0031323","regulation of cellular metabolic process",497,136,131.04,543,"0.30642","0.22623","0.2847" +"GO:0051701","interaction with host",6,2,1.58,866,"0.49828","0.28511","0.2851" +"GO:0009409","response to cold",3,1,0.79,1213,"0.60090","0.28557","0.2856" +"GO:0070194","synaptonemal complex disassembly",3,1,0.79,1214,"0.60090","0.28557","0.2856" +"GO:1901894","regulation of calcium-transporting ATPas...",3,1,0.79,1215,"0.60090","0.28557","0.2856" +"GO:1901896","positive regulation of calcium-transport...",3,1,0.79,1216,"0.60090","0.28557","0.2856" +"GO:0044092","negative regulation of molecular functio...",43,15,11.34,216,"0.13579","0.28823","0.2882" +"GO:0000086","G2/M transition of mitotic cell cycle",10,4,2.64,407,"0.25657","0.28858","0.2886" +"GO:0045806","negative regulation of endocytosis",3,0,0.79,2506,"1.00000","0.28899","0.2890" +"GO:0051924","regulation of calcium ion transport",11,4,2.9,555,"0.32472","0.28923","0.2892" +"GO:0001655","urogenital system development",22,7,5.8,583,"0.35474","0.28925","0.2892" +"GO:0055074","calcium ion homeostasis",13,3,3.43,1743,"0.70769","0.28951","0.2895" +"GO:0051607","defense response to virus",5,2,1.32,694,"0.39599","0.28996","0.2900" +"GO:2000045","regulation of G1/S transition of mitotic...",3,1,0.79,1217,"0.60090","0.29013","0.2901" +"GO:0006298","mismatch repair",6,3,1.58,342,"0.19140","0.29048","0.2905" +"GO:0001895","retina homeostasis",5,3,1.32,191,"0.11824","0.29070","0.2907" +"GO:0045494","photoreceptor cell maintenance",5,3,1.32,192,"0.11824","0.29070","0.2907" +"GO:0009908","flower development",4,1,1.05,1612,"0.70624","0.29189","0.2919" +"GO:0090567","reproductive shoot system development",4,1,1.05,1613,"0.70624","0.29189","0.2919" +"GO:0030516","regulation of axon extension",4,0,1.05,2507,"1.00000","0.29189","0.2919" +"GO:0048675","axon extension",4,0,1.05,2508,"1.00000","0.29189","0.2919" +"GO:1990138","neuron projection extension",4,0,1.05,2509,"1.00000","0.29189","0.2919" +"GO:0030029","actin filament-based process",52,17,13.71,318,"0.18621","0.29218","0.2922" +"GO:0032496","response to lipopolysaccharide",6,1,1.58,2072,"0.84091","0.29333","0.2933" +"GO:0009719","response to endogenous stimulus",78,19,20.56,1562,"0.69982","0.29406","0.2941" +"GO:0008585","female gonad development",5,2,1.32,695,"0.39599","0.29516","0.2952" +"GO:0044265","cellular macromolecule catabolic process",129,29,34.01,2171,"0.87131","0.29609","0.2961" +"GO:0001700","embryonic development via the syncytial ...",9,2,2.37,1788,"0.73172","0.29613","0.2961" +"GO:0071559","response to transforming growth factor b...",13,3,3.43,1744,"0.70769","0.29718","0.2972" +"GO:0071560","cellular response to transforming growth...",13,3,3.43,1745,"0.70769","0.29718","0.2972" +"GO:0014896","muscle hypertrophy",3,2,0.79,305,"0.17178","0.29821","0.2982" +"GO:0032968","positive regulation of transcription elo...",3,1,0.79,1218,"0.60090","0.29821","0.2982" +"GO:0003015","heart process",10,5,2.64,141,"0.09471","0.30019","0.3002" +"GO:0008016","regulation of heart contraction",10,5,2.64,142,"0.09471","0.30019","0.3002" +"GO:0035303","regulation of dephosphorylation",10,4,2.64,408,"0.25657","0.30019","0.3002" +"GO:0060047","heart contraction",10,5,2.64,143,"0.09471","0.30019","0.3002" +"GO:0098657","import into cell",42,8,11.07,2249,"0.90001","0.30037","0.3004" +"GO:0006333","chromatin assembly or disassembly",14,5,3.69,533,"0.29924","0.30051","0.3005" +"GO:0007552","metamorphosis",8,2,2.11,1483,"0.66636","0.30060","0.3006" +"GO:0007560","imaginal disc morphogenesis",8,2,2.11,1484,"0.66636","0.30060","0.3006" +"GO:0048563","post-embryonic animal organ morphogenesi...",8,2,2.11,1485,"0.66636","0.30060","0.3006" +"GO:0048707","instar larval or pupal morphogenesis",8,2,2.11,1486,"0.66636","0.30060","0.3006" +"GO:0046545","development of primary female sexual cha...",6,2,1.58,867,"0.49828","0.30071","0.3007" +"GO:0046660","female sex differentiation",6,2,1.58,868,"0.49828","0.30071","0.3007" +"GO:0008630","intrinsic apoptotic signaling pathway in...",5,2,1.32,696,"0.39599","0.30192","0.3019" +"GO:0009057","macromolecule catabolic process",155,37,40.87,1982,"0.79241","0.30249","0.3025" +"GO:0010629","negative regulation of gene expression",123,25,32.43,2386,"0.95459","0.30288","0.3029" +"GO:0007215","glutamate receptor signaling pathway",5,3,1.32,193,"0.11824","0.30571","0.3057" +"GO:0098754","detoxification",3,1,0.79,1219,"0.60090","0.30641","0.3064" +"GO:1990748","cellular detoxification",3,1,0.79,1220,"0.60090","0.30641","0.3064" +"GO:1903827","regulation of cellular protein localizat...",36,9,9.49,1417,"0.63718","0.30795","0.3080" +"GO:0006040","amino sugar metabolic process",23,8,6.06,391,"0.24149","0.30807","0.3081" +"GO:0043412","macromolecule modification",531,149,140,311,"0.17564","0.01148","0.3086" +"GO:0050657","nucleic acid transport",18,5,4.75,965,"0.53531","0.30997","0.3100" +"GO:0050658","RNA transport",18,5,4.75,966,"0.53531","0.30997","0.3100" +"GO:0051236","establishment of RNA localization",18,5,4.75,967,"0.53531","0.30997","0.3100" +"GO:0001522","pseudouridine synthesis",13,3,3.43,1746,"0.70769","0.31153","0.3115" +"GO:1903321","negative regulation of protein modificat...",12,3,3.16,1449,"0.65089","0.31396","0.3140" +"GO:0090501","RNA phosphodiester bond hydrolysis",15,4,3.95,1082,"0.58736","0.31558","0.3156" +"GO:1905897","regulation of response to endoplasmic re...",14,6,3.69,228,"0.13668","0.31655","0.3166" +"GO:0003013","circulatory system process",14,6,3.69,229,"0.13668","0.31721","0.3172" +"GO:0008015","blood circulation",14,6,3.69,230,"0.13668","0.31721","0.3172" +"GO:0032434","regulation of proteasomal ubiquitin-depe...",10,3,2.64,923,"0.51518","0.31865","0.3186" +"GO:2000058","regulation of ubiquitin-dependent protei...",10,3,2.64,924,"0.51518","0.31865","0.3186" +"GO:0061013","regulation of mRNA catabolic process",9,1,2.37,2340,"0.93665","0.32208","0.3221" +"GO:0051253","negative regulation of RNA metabolic pro...",84,22,22.15,996,"0.55733","0.32264","0.3226" +"GO:0097164","ammonium ion metabolic process",13,5,3.43,387,"0.24118","0.32460","0.3246" +"GO:0007276","gamete generation",58,13,15.29,1988,"0.79784","0.32567","0.3257" +"GO:0032924","activin receptor signaling pathway",3,1,0.79,1221,"0.60090","0.32687","0.3269" +"GO:0032925","regulation of activin receptor signaling...",3,1,0.79,1222,"0.60090","0.32687","0.3269" +"GO:0033197","response to vitamin E",3,1,0.79,1223,"0.60090","0.32687","0.3269" +"GO:0033273","response to vitamin",3,1,0.79,1224,"0.60090","0.32687","0.3269" +"GO:0035584","calcium-mediated signaling using intrace...",3,2,0.79,306,"0.17178","0.32687","0.3269" +"GO:0035773","insulin secretion involved in cellular r...",3,1,0.79,1225,"0.60090","0.32687","0.3269" +"GO:0051208","sequestering of calcium ion",3,1,0.79,1226,"0.60090","0.32687","0.3269" +"GO:0051209","release of sequestered calcium ion into ...",3,1,0.79,1227,"0.60090","0.32687","0.3269" +"GO:0051279","regulation of release of sequestered cal...",3,1,0.79,1228,"0.60090","0.32687","0.3269" +"GO:0051282","regulation of sequestering of calcium io...",3,1,0.79,1229,"0.60090","0.32687","0.3269" +"GO:0051283","negative regulation of sequestering of c...",3,1,0.79,1230,"0.60090","0.32687","0.3269" +"GO:0097553","calcium ion transmembrane import into cy...",3,1,0.79,1231,"0.60090","0.32687","0.3269" +"GO:1902850","microtubule cytoskeleton organization in...",14,5,3.69,534,"0.29924","0.32973","0.3297" +"GO:0071383","cellular response to steroid hormone sti...",20,7,5.27,413,"0.25842","0.32985","0.3299" +"GO:0035268","protein mannosylation",3,1,0.79,1232,"0.60090","0.32994","0.3299" +"GO:0035269","protein O-linked mannosylation",3,1,0.79,1233,"0.60090","0.32994","0.3299" +"GO:0097502","mannosylation",3,1,0.79,1234,"0.60090","0.32994","0.3299" +"GO:0043666","regulation of phosphoprotein phosphatase...",6,2,1.58,869,"0.49828","0.33104","0.3310" +"GO:0043161","proteasome-mediated ubiquitin-dependent ...",43,13,11.34,569,"0.33454","0.33170","0.3317" +"GO:0097178","ruffle assembly",4,2,1.05,498,"0.28489","0.33255","0.3325" +"GO:1900027","regulation of ruffle assembly",4,2,1.05,499,"0.28489","0.33255","0.3325" +"GO:0000469","cleavage involved in rRNA processing",7,3,1.85,433,"0.27227","0.33293","0.3329" +"GO:0034660","ncRNA metabolic process",137,36,36.12,985,"0.54353","0.08161","0.3343" +"GO:0051125","regulation of actin nucleation",8,4,2.11,213,"0.13325","0.33433","0.3343" +"GO:0007409","axonogenesis",28,5,7.38,2248,"0.89747","0.33488","0.3349" +"GO:0019953","sexual reproduction",67,15,17.66,2023,"0.81161","0.33518","0.3352" +"GO:0010035","response to inorganic substance",38,12,10.02,449,"0.28489","0.11272","0.3360" +"GO:0035821","modification of morphology or physiology...",15,4,3.95,1083,"0.58736","0.33614","0.3361" +"GO:0051817","modification of morphology or physiology...",15,4,3.95,1084,"0.58736","0.33614","0.3361" +"GO:1902904","negative regulation of supramolecular fi...",15,3,3.95,2005,"0.79955","0.33614","0.3361" +"GO:0090150","establishment of protein localization to...",18,5,4.75,968,"0.53531","0.33622","0.3362" +"GO:0045116","protein neddylation",5,2,1.32,697,"0.39599","0.33706","0.3371" +"GO:0015748","organophosphate ester transport",3,1,0.79,1235,"0.60090","0.33800","0.3380" +"GO:0007044","cell-substrate junction assembly",4,1,1.05,1614,"0.70624","0.33919","0.3392" +"GO:0007045","cell-substrate adherens junction assembl...",4,1,1.05,1615,"0.70624","0.33919","0.3392" +"GO:0007160","cell-matrix adhesion",4,1,1.05,1616,"0.70624","0.33919","0.3392" +"GO:0007611","learning or memory",4,2,1.05,500,"0.28489","0.33919","0.3392" +"GO:0043516","regulation of DNA damage response, signa...",4,1,1.05,1617,"0.70624","0.33919","0.3392" +"GO:0048041","focal adhesion assembly",4,1,1.05,1618,"0.70624","0.33919","0.3392" +"GO:0060688","regulation of morphogenesis of a branchi...",4,1,1.05,1619,"0.70624","0.33919","0.3392" +"GO:2001244","positive regulation of intrinsic apoptot...",4,2,1.05,501,"0.28489","0.33919","0.3392" +"GO:0048663","neuron fate commitment",4,0,1.05,2510,"1.00000","0.33919","0.3392" +"GO:0006323","DNA packaging",14,6,3.69,231,"0.13668","0.33981","0.3398" +"GO:1903008","organelle disassembly",5,0,1.32,2511,"1.00000","0.34028","0.3403" +"GO:0006874","cellular calcium ion homeostasis",12,3,3.16,1450,"0.65089","0.34046","0.3405" +"GO:0006814","sodium ion transport",19,8,5.01,149,"0.09994","0.34169","0.3417" +"GO:0000447","endonucleolytic cleavage in ITS1 to sepa...",3,1,0.79,1236,"0.60090","0.34176","0.3418" +"GO:0071103","DNA conformation change",18,7,4.75,256,"0.17160","0.34219","0.3422" +"GO:1903214","regulation of protein targeting to mitoc...",12,1,3.16,2429,"0.97481","0.34402","0.3440" +"GO:1903533","regulation of protein targeting",12,1,3.16,2430,"0.97481","0.34402","0.3440" +"GO:1903749","positive regulation of establishment of ...",12,1,3.16,2431,"0.97481","0.34402","0.3440" +"GO:1903955","positive regulation of protein targeting...",12,1,3.16,2432,"0.97481","0.34402","0.3440" +"GO:0006694","steroid biosynthetic process",7,1,1.85,2192,"0.88294","0.34439","0.3444" +"GO:0006342","chromatin silencing",19,5,5.01,1141,"0.58921","0.34453","0.3445" +"GO:0045814","negative regulation of gene expression, ...",19,5,5.01,1142,"0.58921","0.34453","0.3445" +"GO:0009651","response to salt stress",4,1,1.05,1620,"0.70624","0.34481","0.3448" +"GO:0007052","mitotic spindle organization",11,3,2.9,1062,"0.58661","0.34578","0.3458" +"GO:1903046","meiotic cell cycle process",18,6,4.75,568,"0.33041","0.34623","0.3462" +"GO:0031589","cell-substrate adhesion",9,1,2.37,2341,"0.93665","0.34658","0.3466" +"GO:0003254","regulation of membrane depolarization",3,1,0.79,1237,"0.60090","0.34870","0.3487" +"GO:0008645","hexose transmembrane transport",3,0,0.79,2512,"1.00000","0.34870","0.3487" +"GO:0015749","monosaccharide transmembrane transport",3,0,0.79,2513,"1.00000","0.34870","0.3487" +"GO:0046887","positive regulation of hormone secretion",3,0,0.79,2514,"1.00000","0.34870","0.3487" +"GO:0019359","nicotinamide nucleotide biosynthetic pro...",4,1,1.05,1621,"0.70624","0.34920","0.3492" +"GO:0019363","pyridine nucleotide biosynthetic process",4,1,1.05,1622,"0.70624","0.34920","0.3492" +"GO:0000578","embryonic axis specification",5,2,1.32,698,"0.39599","0.35006","0.3501" +"GO:0043085","positive regulation of catalytic activit...",59,16,15.56,846,"0.49753","0.35084","0.3508" +"GO:0006515","protein quality control for misfolded or...",5,2,1.32,699,"0.39599","0.35171","0.3517" +"GO:0014902","myotube differentiation",5,2,1.32,700,"0.39599","0.35171","0.3517" +"GO:0030521","androgen receptor signaling pathway",5,2,1.32,701,"0.39599","0.35171","0.3517" +"GO:0071218","cellular response to misfolded protein",5,2,1.32,702,"0.39599","0.35171","0.3517" +"GO:0033260","nuclear DNA replication",4,2,1.05,502,"0.28489","0.35177","0.3518" +"GO:0044786","cell cycle DNA replication",4,2,1.05,503,"0.28489","0.35177","0.3518" +"GO:0000226","microtubule cytoskeleton organization",42,15,11.07,155,"0.11511","0.25197","0.3519" +"GO:0015718","monocarboxylic acid transport",8,3,2.11,594,"0.35567","0.35220","0.3522" +"GO:0021510","spinal cord development",5,0,1.32,2515,"1.00000","0.35253","0.3525" +"GO:0021953","central nervous system neuron differenti...",5,0,1.32,2516,"1.00000","0.35253","0.3525" +"GO:0060341","regulation of cellular localization",53,12,13.97,1849,"0.77896","0.35380","0.3538" +"GO:0022414","reproductive process",109,31,28.74,576,"0.34304","0.35425","0.3543" +"GO:0060485","mesenchyme development",7,2,1.85,1102,"0.58869","0.35508","0.3551" +"GO:1905475","regulation of protein localization to me...",4,1,1.05,1623,"0.70624","0.35509","0.3551" +"GO:0042461","photoreceptor cell development",13,5,3.43,388,"0.24118","0.35510","0.3551" +"GO:0031929","TOR signaling",12,2,3.16,2157,"0.86598","0.35569","0.3557" +"GO:1902532","negative regulation of intracellular sig...",32,9,8.44,811,"0.47729","0.35573","0.3557" +"GO:0008037","cell recognition",12,3,3.16,1451,"0.65089","0.35677","0.3568" +"GO:0032446","protein modification by small protein co...",90,30,23.73,117,"0.08241","0.00316","0.3572" +"GO:0006366","transcription by RNA polymerase II",124,34,32.69,750,"0.42749","0.35774","0.3577" +"GO:0032273","positive regulation of protein polymeriz...",26,7,6.85,989,"0.54916","0.35848","0.3585" +"GO:0042254","ribosome biogenesis",66,18,17.4,828,"0.48034","0.36065","0.3606" +"GO:0048523","negative regulation of cellular process",250,74,65.91,197,"0.12730","0.16697","0.3608" +"GO:0000460","maturation of 5.8S rRNA",9,4,2.37,354,"0.19182","0.36099","0.3610" +"GO:0030001","metal ion transport",59,16,15.56,847,"0.49753","0.36165","0.3617" +"GO:0080090","regulation of primary metabolic process",498,135,131.3,601,"0.35778","0.29320","0.3622" +"GO:0007141","male meiosis I",6,2,1.58,870,"0.49828","0.36342","0.3634" +"GO:0051153","regulation of striated muscle cell diffe...",5,1,1.32,1879,"0.78380","0.36417","0.3642" +"GO:0007281","germ cell development",42,9,11.07,2035,"0.81685","0.36433","0.3643" +"GO:0032943","mononuclear cell proliferation",6,2,1.58,871,"0.49828","0.36449","0.3645" +"GO:0042098","T cell proliferation",6,2,1.58,872,"0.49828","0.36449","0.3645" +"GO:0045637","regulation of myeloid cell differentiati...",6,1,1.58,2073,"0.84091","0.36449","0.3645" +"GO:0045646","regulation of erythrocyte differentiatio...",6,1,1.58,2074,"0.84091","0.36449","0.3645" +"GO:0046651","lymphocyte proliferation",6,2,1.58,873,"0.49828","0.36449","0.3645" +"GO:0070661","leukocyte proliferation",6,2,1.58,874,"0.49828","0.36449","0.3645" +"GO:0051053","negative regulation of DNA metabolic pro...",3,2,0.79,307,"0.17178","0.36454","0.3645" +"GO:0090329","regulation of DNA-dependent DNA replicat...",3,2,0.79,308,"0.17178","0.36454","0.3645" +"GO:0044085","cellular component biogenesis",272,76,71.71,527,"0.28943","0.36601","0.3660" +"GO:1900024","regulation of substrate adhesion-depende...",3,1,0.79,1238,"0.60090","0.36605","0.3661" +"GO:0048569","post-embryonic animal organ development",10,2,2.64,1963,"0.78585","0.36628","0.3663" +"GO:0001974","blood vessel remodeling",3,2,0.79,309,"0.17178","0.36649","0.3665" +"GO:1901989","positive regulation of cell cycle phase ...",6,2,1.58,875,"0.49828","0.36664","0.3666" +"GO:1901214","regulation of neuron death",14,6,3.69,232,"0.13668","0.36677","0.3668" +"GO:0032990","cell part morphogenesis",31,5,8.17,2356,"0.94075","0.36690","0.3669" +"GO:0048477","oogenesis",26,6,6.85,1768,"0.71961","0.36768","0.3677" +"GO:0034446","substrate adhesion-dependent cell spread...",4,1,1.05,1624,"0.70624","0.36778","0.3678" +"GO:0006612","protein targeting to membrane",7,2,1.85,1103,"0.58869","0.36792","0.3679" +"GO:0090151","establishment of protein localization to...",5,2,1.32,703,"0.39599","0.36837","0.3684" +"GO:0009124","nucleoside monophosphate biosynthetic pr...",9,4,2.37,355,"0.19182","0.36849","0.3685" +"GO:0072359","circulatory system development",36,12,9.49,367,"0.21866","0.36935","0.3694" +"GO:0030097","hemopoiesis",19,3,5.01,2259,"0.91210","0.36979","0.3698" +"GO:0007291","sperm individualization",4,2,1.05,504,"0.28489","0.37004","0.3700" +"GO:0007349","cellularization",4,2,1.05,505,"0.28489","0.37004","0.3700" +"GO:0018200","peptidyl-glutamic acid modification",4,0,1.05,2517,"1.00000","0.37004","0.3700" +"GO:0008038","neuron recognition",9,2,2.37,1789,"0.73172","0.37026","0.3703" +"GO:0031099","regeneration",14,3,3.69,1832,"0.75711","0.37030","0.3703" +"GO:0050953","sensory perception of light stimulus",14,1,3.69,2454,"0.98638","0.37030","0.3703" +"GO:0051788","response to misfolded protein",6,2,1.58,876,"0.49828","0.37080","0.3708" +"GO:0030099","myeloid cell differentiation",12,2,3.16,2158,"0.86598","0.37128","0.3713" +"GO:0030902","hindbrain development",20,4,5.27,2026,"0.81463","0.37144","0.3714" +"GO:0009452","7-methylguanosine RNA capping",4,0,1.05,2518,"1.00000","0.37174","0.3717" +"GO:0036260","RNA capping",4,0,1.05,2519,"1.00000","0.37174","0.3717" +"GO:0009451","RNA modification",54,14,14.24,1003,"0.58194","0.01013","0.3726" +"GO:0046488","phosphatidylinositol metabolic process",16,3,4.22,2061,"0.83559","0.37299","0.3730" +"GO:0061515","myeloid cell development",6,1,1.58,2075,"0.84091","0.37373","0.3737" +"GO:0072347","response to anesthetic",7,3,1.85,434,"0.27227","0.37393","0.3739" +"GO:0010467","gene expression",851,209,224.37,2327,"0.93155","0.05819","0.3748" +"GO:0043401","steroid hormone mediated signaling pathw...",17,6,4.48,446,"0.27747","0.37704","0.3770" +"GO:0007417","central nervous system development",54,10,14.24,2330,"0.93486","0.37716","0.3772" +"GO:0006413","translational initiation",15,5,3.95,607,"0.35913","0.37736","0.3774" +"GO:0002165","instar larval or pupal development",12,4,3.16,649,"0.39376","0.37875","0.3787" +"GO:0007472","wing disc morphogenesis",6,1,1.58,2076,"0.84091","0.37902","0.3790" +"GO:0010212","response to ionizing radiation",6,2,1.58,877,"0.49828","0.37902","0.3790" +"GO:0051017","actin filament bundle assembly",6,2,1.58,878,"0.49828","0.37902","0.3790" +"GO:0061572","actin filament bundle organization",6,2,1.58,879,"0.49828","0.37902","0.3790" +"GO:0031050","dsRNA processing",3,1,0.79,1239,"0.60090","0.37984","0.3798" +"GO:0070918","production of small RNA involved in gene...",3,1,0.79,1240,"0.60090","0.37984","0.3798" +"GO:0051260","protein homooligomerization",10,3,2.64,925,"0.51518","0.38069","0.3807" +"GO:0043628","ncRNA 3'-end processing",6,2,1.58,880,"0.49828","0.38105","0.3811" +"GO:0071901","negative regulation of protein serine/th...",4,1,1.05,1625,"0.70624","0.38165","0.3817" +"GO:0002263","cell activation involved in immune respo...",6,0,1.58,2520,"1.00000","0.38215","0.3822" +"GO:0002274","myeloid leukocyte activation",6,0,1.58,2521,"1.00000","0.38215","0.3822" +"GO:0002366","leukocyte activation involved in immune ...",6,0,1.58,2522,"1.00000","0.38215","0.3822" +"GO:0002444","myeloid leukocyte mediated immunity",6,0,1.58,2523,"1.00000","0.38215","0.3822" +"GO:0002446","neutrophil mediated immunity",6,0,1.58,2524,"1.00000","0.38215","0.3822" +"GO:0036230","granulocyte activation",6,0,1.58,2525,"1.00000","0.38215","0.3822" +"GO:0042119","neutrophil activation",6,0,1.58,2526,"1.00000","0.38215","0.3822" +"GO:0071025","RNA surveillance",3,1,0.79,1241,"0.60090","0.38227","0.3823" +"GO:0002791","regulation of peptide secretion",10,2,2.64,1964,"0.78585","0.38251","0.3825" +"GO:0043243","positive regulation of protein complex d...",3,0,0.79,2527,"1.00000","0.38316","0.3832" +"GO:0030036","actin cytoskeleton organization",50,16,13.18,369,"0.22327","0.38359","0.3836" +"GO:0007033","vacuole organization",22,3,5.8,2388,"0.95478","0.38449","0.3845" +"GO:0007249","I-kappaB kinase/NF-kappaB signaling",9,2,2.37,1790,"0.73172","0.38541","0.3854" +"GO:0043122","regulation of I-kappaB kinase/NF-kappaB ...",9,2,2.37,1791,"0.73172","0.38541","0.3854" +"GO:0048589","developmental growth",44,12,11.6,914,"0.50320","0.38543","0.3854" +"GO:0000956","nuclear-transcribed mRNA catabolic proce...",19,3,5.01,2260,"0.91210","0.38549","0.3855" +"GO:0048644","muscle organ morphogenesis",4,2,1.05,506,"0.28489","0.38569","0.3857" +"GO:0051775","response to redox state",4,2,1.05,507,"0.28489","0.38569","0.3857" +"GO:0055008","cardiac muscle tissue morphogenesis",4,2,1.05,508,"0.28489","0.38569","0.3857" +"GO:0060415","muscle tissue morphogenesis",4,2,1.05,509,"0.28489","0.38569","0.3857" +"GO:0048609","multicellular organismal reproductive pr...",71,16,18.72,2022,"0.80888","0.38608","0.3861" +"GO:0006165","nucleoside diphosphate phosphorylation",4,1,1.05,1626,"0.70624","0.38762","0.3876" +"GO:0042451","purine nucleoside biosynthetic process",4,1,1.05,1627,"0.70624","0.38762","0.3876" +"GO:0046129","purine ribonucleoside biosynthetic proce...",4,1,1.05,1628,"0.70624","0.38762","0.3876" +"GO:0051783","regulation of nuclear division",19,6,5.01,634,"0.38441","0.38762","0.3876" +"GO:0019725","cellular homeostasis",56,13,14.76,1821,"0.75209","0.38801","0.3880" +"GO:0016441","posttranscriptional gene silencing",17,4,4.48,1553,"0.69414","0.38890","0.3889" +"GO:0035194","posttranscriptional gene silencing by RN...",17,4,4.48,1554,"0.69414","0.38890","0.3889" +"GO:0009126","purine nucleoside monophosphate metaboli...",25,8,6.59,560,"0.32895","0.38907","0.3891" +"GO:0009167","purine ribonucleoside monophosphate meta...",25,8,6.59,561,"0.32895","0.38907","0.3891" +"GO:0043624","cellular protein complex disassembly",25,5,6.59,2044,"0.82914","0.38907","0.3891" +"GO:0009612","response to mechanical stimulus",8,3,2.11,595,"0.35567","0.38964","0.3896" +"GO:0010976","positive regulation of neuron projection...",8,1,2.11,2268,"0.91388","0.38964","0.3896" +"GO:0099173","postsynapse organization",5,1,1.32,1880,"0.78380","0.38973","0.3897" +"GO:0007051","spindle organization",17,6,4.48,447,"0.27747","0.38994","0.3899" +"GO:1902903","regulation of supramolecular fiber organ...",34,9,8.96,997,"0.56023","0.39323","0.3932" +"GO:0046034","ATP metabolic process",22,6,5.8,983,"0.54270","0.39409","0.3941" +"GO:0030163","protein catabolic process",121,33,31.9,779,"0.44391","0.39421","0.3942" +"GO:0051130","positive regulation of cellular componen...",82,19,21.62,1950,"0.78420","0.39524","0.3952" +"GO:0009733","response to auxin",5,1,1.32,1881,"0.78380","0.39582","0.3958" +"GO:0016458","gene silencing",29,7,7.65,1530,"0.67666","0.39675","0.3968" +"GO:0002252","immune effector process",30,5,7.91,2312,"0.92860","0.39677","0.3968" +"GO:0031047","gene silencing by RNA",20,5,5.27,1423,"0.63947","0.39688","0.3969" +"GO:0007549","dosage compensation",3,1,0.79,1242,"0.60090","0.39725","0.3972" +"GO:0009048","dosage compensation by inactivation of X...",3,1,0.79,1243,"0.60090","0.39725","0.3972" +"GO:0010977","negative regulation of neuron projection...",3,1,0.79,1244,"0.60090","0.39725","0.3972" +"GO:0050771","negative regulation of axonogenesis",3,1,0.79,1245,"0.60090","0.39725","0.3972" +"GO:0051865","protein autoubiquitination",3,1,0.79,1246,"0.60090","0.39725","0.3972" +"GO:0060765","regulation of androgen receptor signalin...",3,1,0.79,1247,"0.60090","0.39725","0.3972" +"GO:0048437","floral organ development",3,0,0.79,2528,"1.00000","0.39725","0.3972" +"GO:0048438","floral whorl development",3,0,0.79,2529,"1.00000","0.39725","0.3972" +"GO:0048443","stamen development",3,0,0.79,2530,"1.00000","0.39725","0.3972" +"GO:0048466","androecium development",3,0,0.79,2531,"1.00000","0.39725","0.3972" +"GO:0048827","phyllome development",3,0,0.79,2532,"1.00000","0.39725","0.3972" +"GO:0007050","cell cycle arrest",8,2,2.11,1487,"0.66636","0.39776","0.3978" +"GO:0050920","regulation of chemotaxis",4,0,1.05,2533,"1.00000","0.39850","0.3985" +"GO:0006022","aminoglycan metabolic process",25,8,6.59,562,"0.32895","0.39884","0.3988" +"GO:0043966","histone H3 acetylation",6,2,1.58,881,"0.49828","0.39925","0.3993" +"GO:0097190","apoptotic signaling pathway",28,9,7.38,542,"0.30620","0.40081","0.4008" +"GO:0002065","columnar/cuboidal epithelial cell differ...",22,5,5.8,1783,"0.72780","0.40153","0.4015" +"GO:0009408","response to heat",37,9,9.76,1529,"0.67274","0.02442","0.4015" +"GO:0030856","regulation of epithelial cell differenti...",3,1,0.79,1248,"0.60090","0.40177","0.4018" +"GO:0060996","dendritic spine development",3,1,0.79,1249,"0.60090","0.40177","0.4018" +"GO:1901215","negative regulation of neuron death",11,5,2.9,240,"0.13730","0.40306","0.4031" +"GO:0030865","cortical cytoskeleton organization",5,2,1.32,704,"0.39599","0.40370","0.4037" +"GO:0030866","cortical actin cytoskeleton organization",5,2,1.32,705,"0.39599","0.40370","0.4037" +"GO:0032506","cytokinetic process",5,2,1.32,706,"0.39599","0.40370","0.4037" +"GO:0048469","cell maturation",13,3,3.43,1747,"0.70769","0.40393","0.4039" +"GO:0007519","skeletal muscle tissue development",17,4,4.48,1555,"0.69414","0.40447","0.4045" +"GO:1902108","regulation of mitochondrial membrane per...",4,2,1.05,510,"0.28489","0.40518","0.4052" +"GO:0048762","mesenchymal cell differentiation",5,1,1.32,1882,"0.78380","0.40547","0.4055" +"GO:0006468","protein phosphorylation",183,50,48.25,738,"0.40962","0.40648","0.4065" +"GO:0043170","macromolecule metabolic process",1554,439,409.72,28,"0.00605","4.4e-06","0.4084" +"GO:0030713","ovarian follicle cell stalk formation",3,0,0.79,2534,"1.00000","0.40883","0.4088" +"GO:0070086","ubiquitin-dependent endocytosis",3,0,0.79,2535,"1.00000","0.40883","0.4088" +"GO:0008285","negative regulation of cell proliferatio...",27,7,7.12,1150,"0.59415","0.40938","0.4094" +"GO:0051129","negative regulation of cellular componen...",51,14,13.45,833,"0.48333","0.41089","0.4109" +"GO:0006284","base-excision repair",4,1,1.05,1629,"0.70624","0.41131","0.4113" +"GO:0006464","cellular protein modification process",475,132,125.24,377,"0.23585","0.04940","0.4116" +"GO:0036211","protein modification process",475,132,125.24,378,"0.23585","0.04940","0.4116" +"GO:0061351","neural precursor cell proliferation",5,1,1.32,1883,"0.78380","0.41166","0.4117" +"GO:0072332","intrinsic apoptotic signaling pathway by...",5,1,1.32,1884,"0.78380","0.41255","0.4125" +"GO:0009880","embryonic pattern specification",9,2,2.37,1792,"0.73172","0.41390","0.4139" +"GO:0048519","negative regulation of biological proces...",301,86,79.36,357,"0.19675","0.21657","0.4148" +"GO:0007600","sensory perception",35,8,9.23,1816,"0.74188","0.41490","0.4149" +"GO:0006828","manganese ion transport",4,0,1.05,2536,"1.00000","0.41509","0.4151" +"GO:0008219","cell death",105,31,27.68,414,"0.25928","0.41572","0.4157" +"GO:0031063","regulation of histone deacetylation",4,2,1.05,511,"0.28489","0.41628","0.4163" +"GO:1903573","negative regulation of response to endop...",12,5,3.16,322,"0.18664","0.41786","0.4179" +"GO:0048585","negative regulation of response to stimu...",77,21,20.3,809,"0.47143","0.41798","0.4180" +"GO:0007601","visual perception",13,0,3.43,2537,"1.00000","0.41937","0.4194" +"GO:0001816","cytokine production",18,2,4.75,2420,"0.97022","0.41979","0.4198" +"GO:0006259","DNA metabolic process",172,94,45.35,1,"3.7e-16","1.1e-14","0.4207" +"GO:0006812","cation transport",74,19,19.51,1156,"0.59916","0.42170","0.4217" +"GO:0000422","autophagy of mitochondrion",4,0,1.05,2538,"1.00000","0.42229","0.4223" +"GO:0061726","mitochondrion disassembly",4,0,1.05,2539,"1.00000","0.42229","0.4223" +"GO:0009892","negative regulation of metabolic process",170,38,44.82,2256,"0.90753","0.42243","0.4224" +"GO:2001236","regulation of extrinsic apoptotic signal...",9,4,2.37,356,"0.19182","0.42377","0.4238" +"GO:0048667","cell morphogenesis involved in neuron di...",30,5,7.91,2313,"0.92860","0.42404","0.4240" +"GO:0048812","neuron projection morphogenesis",30,5,7.91,2314,"0.92860","0.42404","0.4240" +"GO:0048858","cell projection morphogenesis",30,5,7.91,2315,"0.92860","0.42404","0.4240" +"GO:0120039","plasma membrane bounded cell projection ...",30,5,7.91,2316,"0.92860","0.42404","0.4240" +"GO:0006357","regulation of transcription by RNA polym...",103,28,27.16,804,"0.46221","0.42414","0.4241" +"GO:0032504","multicellular organism reproduction",74,16,19.51,2150,"0.85913","0.42416","0.4242" +"GO:0051495","positive regulation of cytoskeleton orga...",27,7,7.12,1151,"0.59415","0.42566","0.4257" +"GO:1902905","positive regulation of supramolecular fi...",27,7,7.12,1152,"0.59415","0.42566","0.4257" +"GO:0110110","positive regulation of animal organ morp...",4,2,1.05,512,"0.28489","0.42671","0.4267" +"GO:0022607","cellular component assembly",212,60,55.89,441,"0.27696","0.42723","0.4272" +"GO:0040019","positive regulation of embryonic develop...",5,2,1.32,707,"0.39599","0.42778","0.4278" +"GO:0032970","regulation of actin filament-based proce...",26,9,6.85,371,"0.22626","0.42900","0.4290" +"GO:0031123","RNA 3'-end processing",13,3,3.43,1748,"0.70769","0.42920","0.4292" +"GO:0019222","regulation of metabolic process",541,145,142.64,741,"0.41771","0.35829","0.4320" +"GO:0042177","negative regulation of protein catabolic...",7,3,1.85,435,"0.27227","0.43217","0.4322" +"GO:1903706","regulation of hemopoiesis",10,1,2.64,2374,"0.95341","0.43316","0.4332" +"GO:0006505","GPI anchor metabolic process",7,2,1.85,1104,"0.58869","0.43324","0.4332" +"GO:0006506","GPI anchor biosynthetic process",7,2,1.85,1105,"0.58869","0.43324","0.4332" +"GO:0006661","phosphatidylinositol biosynthetic proces...",7,2,1.85,1106,"0.58869","0.43324","0.4332" +"GO:0009123","nucleoside monophosphate metabolic proce...",27,8,7.12,749,"0.42061","0.43560","0.4356" +"GO:0001775","cell activation",21,4,5.54,2134,"0.84495","0.43645","0.4365" +"GO:0043162","ubiquitin-dependent protein catabolic pr...",7,1,1.85,2193,"0.88294","0.43647","0.4365" +"GO:0044270","cellular nitrogen compound catabolic pro...",57,9,15.03,2440,"0.98093","0.43657","0.4366" +"GO:0030490","maturation of SSU-rRNA",6,1,1.58,2077,"0.84091","0.43744","0.4374" +"GO:0030048","actin filament-based movement",3,1,0.79,1250,"0.60090","0.43805","0.4380" +"GO:0050922","negative regulation of chemotaxis",3,0,0.79,2540,"1.00000","0.43805","0.4380" +"GO:0045471","response to ethanol",14,3,3.69,1833,"0.75711","0.43887","0.4389" +"GO:0051702","interaction with symbiont",14,3,3.69,1834,"0.75711","0.43887","0.4389" +"GO:0051851","modification by host of symbiont morphol...",14,3,3.69,1835,"0.75711","0.43887","0.4389" +"GO:0031329","regulation of cellular catabolic process",47,10,12.39,2056,"0.83254","0.43912","0.4391" +"GO:0000003","reproduction",115,31,30.32,817,"0.47826","0.43954","0.4395" +"GO:0018342","protein prenylation",5,1,1.32,1885,"0.78380","0.44049","0.4405" +"GO:0097354","prenylation",5,1,1.32,1886,"0.78380","0.44049","0.4405" +"GO:0002224","toll-like receptor signaling pathway",7,2,1.85,1107,"0.58869","0.44186","0.4419" +"GO:0045017","glycerolipid biosynthetic process",18,4,4.75,1809,"0.73952","0.44381","0.4438" +"GO:1901135","carbohydrate derivative metabolic proces...",148,40,39.02,791,"0.45807","0.44400","0.4440" +"GO:0051131","chaperone-mediated protein complex assem...",5,1,1.32,1887,"0.78380","0.44506","0.4451" +"GO:0061217","regulation of mesonephros development",3,1,0.79,1251,"0.60090","0.44560","0.4456" +"GO:0090183","regulation of kidney development",3,1,0.79,1252,"0.60090","0.44560","0.4456" +"GO:0090189","regulation of branching involved in uret...",3,1,0.79,1253,"0.60090","0.44560","0.4456" +"GO:0051606","detection of stimulus",9,3,2.37,765,"0.43760","0.44586","0.4459" +"GO:0051051","negative regulation of transport",17,6,4.48,448,"0.27747","0.44723","0.4472" +"GO:0015698","inorganic anion transport",6,2,1.58,882,"0.49828","0.44746","0.4475" +"GO:0002275","myeloid cell activation involved in immu...",5,0,1.32,2541,"1.00000","0.44873","0.4487" +"GO:0002283","neutrophil activation involved in immune...",5,0,1.32,2542,"1.00000","0.44873","0.4487" +"GO:0043299","leukocyte degranulation",5,0,1.32,2543,"1.00000","0.44873","0.4487" +"GO:0043312","neutrophil degranulation",5,0,1.32,2544,"1.00000","0.44873","0.4487" +"GO:0043491","protein kinase B signaling",4,2,1.05,513,"0.28489","0.44952","0.4495" +"GO:2000243","positive regulation of reproductive proc...",4,2,1.05,514,"0.28489","0.44952","0.4495" +"GO:0032271","regulation of protein polymerization",28,7,7.38,1412,"0.63675","0.45163","0.4516" +"GO:0040029","regulation of gene expression, epigeneti...",32,8,8.44,1411,"0.63671","0.45167","0.4517" +"GO:0051254","positive regulation of RNA metabolic pro...",70,18,18.46,1153,"0.59595","0.45230","0.4523" +"GO:0045087","innate immune response",27,6,7.12,1826,"0.75545","0.45269","0.4527" +"GO:0006368","transcription elongation from RNA polyme...",14,4,3.69,950,"0.52650","0.45270","0.4527" +"GO:0042051","compound eye photoreceptor development",4,2,1.05,515,"0.28489","0.45282","0.4528" +"GO:0007584","response to nutrient",9,3,2.37,766,"0.43760","0.45355","0.4535" +"GO:0031167","rRNA methylation",6,2,1.58,883,"0.49828","0.45436","0.4544" +"GO:0018205","peptidyl-lysine modification",45,9,11.86,2176,"0.87665","0.45553","0.4555" +"GO:0072507","divalent inorganic cation homeostasis",15,3,3.95,2006,"0.79955","0.45567","0.4557" +"GO:0006140","regulation of nucleotide metabolic proce...",5,2,1.32,708,"0.39599","0.45704","0.4570" +"GO:0006754","ATP biosynthetic process",5,2,1.32,709,"0.39599","0.45704","0.4570" +"GO:1900542","regulation of purine nucleotide metaboli...",5,2,1.32,710,"0.39599","0.45704","0.4570" +"GO:0090066","regulation of anatomical structure size",37,10,9.76,955,"0.52653","0.45737","0.4574" +"GO:1904292","regulation of ERAD pathway",7,3,1.85,436,"0.27227","0.45821","0.4582" +"GO:2000026","regulation of multicellular organismal d...",63,18,16.61,637,"0.39070","0.45933","0.4593" +"GO:0043044","ATP-dependent chromatin remodeling",3,0,0.79,2545,"1.00000","0.45941","0.4594" +"GO:0051348","negative regulation of transferase activ...",10,4,2.64,409,"0.25657","0.45979","0.4598" +"GO:0034728","nucleosome organization",13,4,3.43,798,"0.46157","0.45981","0.4598" +"GO:0002931","response to ischemia",3,1,0.79,1254,"0.60090","0.46013","0.4601" +"GO:1903076","regulation of protein localization to pl...",3,1,0.79,1255,"0.60090","0.46013","0.4601" +"GO:1904375","regulation of protein localization to ce...",3,1,0.79,1256,"0.60090","0.46013","0.4601" +"GO:0009395","phospholipid catabolic process",4,2,1.05,516,"0.28489","0.46027","0.4603" +"GO:0010876","lipid localization",30,9,7.91,638,"0.39133","0.46269","0.4627" +"GO:0008064","regulation of actin polymerization or de...",21,6,5.54,839,"0.49144","0.46357","0.4636" +"GO:0030832","regulation of actin filament length",21,6,5.54,840,"0.49144","0.46357","0.4636" +"GO:0110053","regulation of actin filament organizatio...",21,6,5.54,841,"0.49144","0.46357","0.4636" +"GO:0031505","fungal-type cell wall organization",3,0,0.79,2546,"1.00000","0.46444","0.4644" +"GO:0045229","external encapsulating structure organiz...",3,0,0.79,2547,"1.00000","0.46444","0.4644" +"GO:0071555","cell wall organization",3,0,0.79,2548,"1.00000","0.46444","0.4644" +"GO:0007292","female gamete generation",30,7,7.91,1760,"0.71370","0.46460","0.4646" +"GO:0042058","regulation of epidermal growth factor re...",5,1,1.32,1888,"0.78380","0.46540","0.4654" +"GO:1901184","regulation of ERBB signaling pathway",5,1,1.32,1889,"0.78380","0.46540","0.4654" +"GO:2001251","negative regulation of chromosome organi...",16,5,4.22,745,"0.41930","0.46569","0.4657" +"GO:0009144","purine nucleoside triphosphate metabolic...",26,6,6.85,1769,"0.71961","0.46710","0.4671" +"GO:0009199","ribonucleoside triphosphate metabolic pr...",26,7,6.85,990,"0.54916","0.46710","0.4671" +"GO:0006836","neurotransmitter transport",19,5,5.01,1143,"0.58921","0.46738","0.4674" +"GO:0008654","phospholipid biosynthetic process",22,5,5.8,1784,"0.72780","0.46756","0.4676" +"GO:0048545","response to steroid hormone",37,10,9.76,956,"0.52653","0.46879","0.4688" +"GO:0070887","cellular response to chemical stimulus",116,31,30.58,909,"0.50096","0.43292","0.4688" +"GO:0044773","mitotic DNA damage checkpoint",3,1,0.79,1257,"0.60090","0.46926","0.4693" +"GO:0044818","mitotic G2/M transition checkpoint",3,1,0.79,1258,"0.60090","0.46926","0.4693" +"GO:0022411","cellular component disassembly",37,6,9.76,2372,"0.95148","0.46927","0.4693" +"GO:0009116","nucleoside metabolic process",17,5,4.48,823,"0.47840","0.47051","0.4705" +"GO:1901657","glycosyl compound metabolic process",17,5,4.48,824,"0.47840","0.47051","0.4705" +"GO:0055114","oxidation-reduction process",113,36,29.79,150,"0.10807","0.47287","0.4729" +"GO:0030260","entry into host cell",4,1,1.05,1630,"0.70624","0.47425","0.4742" +"GO:0044409","entry into host",4,1,1.05,1631,"0.70624","0.47425","0.4742" +"GO:0051806","entry into cell of other organism involv...",4,1,1.05,1632,"0.70624","0.47425","0.4742" +"GO:0051828","entry into other organism involved in sy...",4,1,1.05,1633,"0.70624","0.47425","0.4742" +"GO:0010639","negative regulation of organelle organiz...",25,7,6.59,911,"0.50216","0.47428","0.4743" +"GO:0018095","protein polyglutamylation",3,0,0.79,2549,"1.00000","0.47458","0.4746" +"GO:0060632","regulation of microtubule-based movement",3,0,0.79,2550,"1.00000","0.47458","0.4746" +"GO:0002684","positive regulation of immune system pro...",37,12,9.76,395,"0.25098","0.00522","0.4748" +"GO:0001932","regulation of protein phosphorylation",48,16,12.66,310,"0.17269","0.47527","0.4753" +"GO:0030149","sphingolipid catabolic process",5,2,1.32,711,"0.39599","0.47569","0.4757" +"GO:0046466","membrane lipid catabolic process",5,2,1.32,712,"0.39599","0.47569","0.4757" +"GO:0034314","Arp2/3 complex-mediated actin nucleation",7,2,1.85,1108,"0.58869","0.47588","0.4759" +"GO:0006367","transcription initiation from RNA polyme...",13,3,3.43,1749,"0.70769","0.47686","0.4769" +"GO:0031400","negative regulation of protein modificat...",35,10,9.23,782,"0.44649","0.47833","0.4783" +"GO:0010720","positive regulation of cell development",17,3,4.48,2156,"0.86590","0.47857","0.4786" +"GO:0050808","synapse organization",17,4,4.48,1556,"0.69414","0.47857","0.4786" +"GO:0016482","cytosolic transport",16,4,4.22,1431,"0.64337","0.47996","0.4800" +"GO:0006650","glycerophospholipid metabolic process",27,5,7.12,2179,"0.87789","0.48041","0.4804" +"GO:0034698","response to gonadotropin",3,1,0.79,1259,"0.60090","0.48113","0.4811" +"GO:0042182","ketone catabolic process",3,0,0.79,2551,"1.00000","0.48113","0.4811" +"GO:0042373","vitamin K metabolic process",3,0,0.79,2552,"1.00000","0.48113","0.4811" +"GO:0010498","proteasomal protein catabolic process",49,14,12.92,740,"0.41531","0.48132","0.4813" +"GO:0048749","compound eye development",15,5,3.95,608,"0.35913","0.48215","0.4821" +"GO:0048640","negative regulation of developmental gro...",7,3,1.85,437,"0.27227","0.48256","0.4826" +"GO:0048872","homeostasis of number of cells",15,2,3.95,2332,"0.93587","0.48378","0.4838" +"GO:0015672","monovalent inorganic cation transport",32,10,8.44,559,"0.32502","0.48452","0.4845" +"GO:0048584","positive regulation of response to stimu...",92,27,24.26,528,"0.29038","0.20594","0.4846" +"GO:0050803","regulation of synapse structure or activ...",12,3,3.16,1452,"0.65089","0.48461","0.4846" +"GO:0045664","regulation of neuron differentiation",26,6,6.85,1770,"0.71961","0.48529","0.4853" +"GO:0032880","regulation of protein localization",56,13,14.76,1822,"0.75209","0.48535","0.4854" +"GO:0009141","nucleoside triphosphate metabolic proces...",30,9,7.91,639,"0.39133","0.48538","0.4854" +"GO:0009135","purine nucleoside diphosphate metabolic ...",3,1,0.79,1260,"0.60090","0.48673","0.4867" +"GO:0009179","purine ribonucleoside diphosphate metabo...",3,1,0.79,1261,"0.60090","0.48673","0.4867" +"GO:0009185","ribonucleoside diphosphate metabolic pro...",3,1,0.79,1262,"0.60090","0.48673","0.4867" +"GO:0016052","carbohydrate catabolic process",3,1,0.79,1263,"0.60090","0.48673","0.4867" +"GO:0030808","regulation of nucleotide biosynthetic pr...",3,1,0.79,1264,"0.60090","0.48673","0.4867" +"GO:0043406","positive regulation of MAP kinase activi...",3,1,0.79,1265,"0.60090","0.48673","0.4867" +"GO:0046031","ADP metabolic process",3,1,0.79,1266,"0.60090","0.48673","0.4867" +"GO:0051196","regulation of coenzyme metabolic process",3,1,0.79,1267,"0.60090","0.48673","0.4867" +"GO:1900371","regulation of purine nucleotide biosynth...",3,1,0.79,1268,"0.60090","0.48673","0.4867" +"GO:0002833","positive regulation of response to bioti...",3,0,0.79,2553,"1.00000","0.48673","0.4867" +"GO:0007517","muscle organ development",31,9,8.17,754,"0.43446","0.48729","0.4873" +"GO:1903034","regulation of response to wounding",6,1,1.58,2078,"0.84091","0.48922","0.4892" +"GO:0060322","head development",42,8,11.07,2250,"0.90001","0.49008","0.4901" +"GO:0006241","CTP biosynthetic process",3,1,0.79,1269,"0.60090","0.49137","0.4914" +"GO:0009148","pyrimidine nucleoside triphosphate biosy...",3,1,0.79,1270,"0.60090","0.49137","0.4914" +"GO:0009208","pyrimidine ribonucleoside triphosphate m...",3,1,0.79,1271,"0.60090","0.49137","0.4914" +"GO:0009209","pyrimidine ribonucleoside triphosphate b...",3,1,0.79,1272,"0.60090","0.49137","0.4914" +"GO:0009218","pyrimidine ribonucleotide metabolic proc...",3,1,0.79,1273,"0.60090","0.49137","0.4914" +"GO:0009220","pyrimidine ribonucleotide biosynthetic p...",3,1,0.79,1274,"0.60090","0.49137","0.4914" +"GO:0046036","CTP metabolic process",3,1,0.79,1275,"0.60090","0.49137","0.4914" +"GO:0046132","pyrimidine ribonucleoside biosynthetic p...",3,1,0.79,1276,"0.60090","0.49137","0.4914" +"GO:0046134","pyrimidine nucleoside biosynthetic proce...",3,1,0.79,1277,"0.60090","0.49137","0.4914" +"GO:0006497","protein lipidation",15,5,3.95,609,"0.35913","0.49144","0.4914" +"GO:0042158","lipoprotein biosynthetic process",15,5,3.95,610,"0.35913","0.49144","0.4914" +"GO:0006417","regulation of translation",27,5,7.12,2180,"0.87789","0.49234","0.4923" +"GO:0000002","mitochondrial genome maintenance",4,2,1.05,517,"0.28489","0.49302","0.4930" +"GO:0051972","regulation of telomerase activity",3,1,0.79,1278,"0.60090","0.49333","0.4933" +"GO:0008154","actin polymerization or depolymerization",22,7,5.8,584,"0.35474","0.49386","0.4939" +"GO:0055001","muscle cell development",6,3,1.58,343,"0.19140","0.49407","0.4941" +"GO:0055002","striated muscle cell development",6,3,1.58,344,"0.19140","0.49407","0.4941" +"GO:0042742","defense response to bacterium",12,4,3.16,650,"0.39376","0.49453","0.4945" +"GO:0042303","molting cycle",5,1,1.32,1890,"0.78380","0.49458","0.4946" +"GO:0042633","hair cycle",5,1,1.32,1891,"0.78380","0.49458","0.4946" +"GO:0009967","positive regulation of signal transducti...",66,18,17.4,829,"0.48034","0.49567","0.4957" +"GO:0032535","regulation of cellular component size",31,9,8.17,755,"0.43446","0.49701","0.4970" +"GO:0050708","regulation of protein secretion",9,2,2.37,1793,"0.73172","0.49763","0.4976" +"GO:0002262","myeloid cell homeostasis",10,1,2.64,2375,"0.95341","0.49908","0.4991" +"GO:0030218","erythrocyte differentiation",10,1,2.64,2376,"0.95341","0.49908","0.4991" +"GO:0034101","erythrocyte homeostasis",10,1,2.64,2377,"0.95341","0.49908","0.4991" +"GO:0048771","tissue remodeling",5,2,1.32,713,"0.39599","0.49933","0.4993" +"GO:0070588","calcium ion transmembrane transport",12,3,3.16,1453,"0.65089","0.50019","0.5002" +"GO:0046700","heterocycle catabolic process",56,9,14.76,2437,"0.97738","0.50058","0.5006" +"GO:0001934","positive regulation of protein phosphory...",23,7,6.06,731,"0.40428","0.50142","0.5014" +"GO:0009314","response to radiation",30,9,7.91,640,"0.39133","0.50173","0.5017" +"GO:0043254","regulation of protein complex assembly",30,7,7.91,1761,"0.71370","0.50173","0.5017" +"GO:0000462","maturation of SSU-rRNA from tricistronic...",5,1,1.32,1892,"0.78380","0.50220","0.5022" +"GO:0090502","RNA phosphodiester bond hydrolysis, endo...",5,2,1.32,714,"0.39599","0.50220","0.5022" +"GO:0006897","endocytosis",39,6,10.28,2416,"0.96641","0.50368","0.5037" +"GO:0010975","regulation of neuron projection developm...",15,3,3.95,2007,"0.79955","0.50411","0.5041" +"GO:0070997","neuron death",15,6,3.95,316,"0.17946","0.50411","0.5041" +"GO:0042330","taxis",23,3,6.06,2400,"0.96402","0.50428","0.5043" +"GO:0016310","phosphorylation",205,54,54.05,961,"0.53163","0.50435","0.5043" +"GO:0042493","response to drug",49,13,12.92,986,"0.54461","0.32051","0.5050" +"GO:0006820","anion transport",32,7,8.44,1846,"0.77888","0.50756","0.5076" +"GO:0071695","anatomical structure maturation",8,2,2.11,1488,"0.66636","0.50776","0.5078" +"GO:0009205","purine ribonucleoside triphosphate metab...",25,6,6.59,1538,"0.68027","0.50831","0.5083" +"GO:0032008","positive regulation of TOR signaling",4,0,1.05,2554,"1.00000","0.50880","0.5088" +"GO:0070265","necrotic cell death",6,2,1.58,884,"0.49828","0.51010","0.5101" +"GO:0032944","regulation of mononuclear cell prolifera...",4,1,1.05,1634,"0.70624","0.51051","0.5105" +"GO:0042129","regulation of T cell proliferation",4,1,1.05,1635,"0.70624","0.51051","0.5105" +"GO:0050670","regulation of lymphocyte proliferation",4,1,1.05,1636,"0.70624","0.51051","0.5105" +"GO:0070663","regulation of leukocyte proliferation",4,1,1.05,1637,"0.70624","0.51051","0.5105" +"GO:0001776","leukocyte homeostasis",4,0,1.05,2555,"1.00000","0.51051","0.5105" +"GO:0002260","lymphocyte homeostasis",4,0,1.05,2556,"1.00000","0.51051","0.5105" +"GO:0060218","hematopoietic stem cell differentiation",4,0,1.05,2557,"1.00000","0.51051","0.5105" +"GO:1901532","regulation of hematopoietic progenitor c...",4,0,1.05,2558,"1.00000","0.51051","0.5105" +"GO:1902036","regulation of hematopoietic stem cell di...",4,0,1.05,2559,"1.00000","0.51051","0.5105" +"GO:0015740","C4-dicarboxylate transport",4,1,1.05,1638,"0.70624","0.51137","0.5114" +"GO:0007031","peroxisome organization",4,1,1.05,1639,"0.70624","0.51158","0.5116" +"GO:0071241","cellular response to inorganic substance",16,4,4.22,1432,"0.64337","0.51170","0.5117" +"GO:0022622","root system development",7,2,1.85,1109,"0.58869","0.51184","0.5118" +"GO:0048364","root development",7,2,1.85,1110,"0.58869","0.51184","0.5118" +"GO:0003008","system process",72,20,18.98,757,"0.43648","0.51276","0.5128" +"GO:0090305","nucleic acid phosphodiester bond hydroly...",18,5,4.75,969,"0.53531","0.51278","0.5128" +"GO:0006403","RNA localization",23,6,6.06,1146,"0.59156","0.51432","0.5143" +"GO:0006783","heme biosynthetic process",3,0,0.79,2560,"1.00000","0.51726","0.5173" +"GO:0042168","heme metabolic process",3,0,0.79,2561,"1.00000","0.51726","0.5173" +"GO:0046148","pigment biosynthetic process",3,0,0.79,2562,"1.00000","0.51726","0.5173" +"GO:0001754","eye photoreceptor cell differentiation",15,5,3.95,611,"0.35913","0.51741","0.5174" +"GO:0006643","membrane lipid metabolic process",15,5,3.95,612,"0.35913","0.51741","0.5174" +"GO:0040001","establishment of mitotic spindle localiz...",4,2,1.05,518,"0.28489","0.51867","0.5187" +"GO:0051293","establishment of spindle localization",4,2,1.05,519,"0.28489","0.51867","0.5187" +"GO:0051653","spindle localization",4,2,1.05,520,"0.28489","0.51867","0.5187" +"GO:0048821","erythrocyte development",4,0,1.05,2563,"1.00000","0.51910","0.5191" +"GO:0009886","post-embryonic animal morphogenesis",9,2,2.37,1794,"0.73172","0.51977","0.5198" +"GO:0040008","regulation of growth",36,11,9.49,572,"0.34151","0.51981","0.5198" +"GO:1903828","negative regulation of cellular protein ...",13,5,3.43,389,"0.24118","0.52002","0.5200" +"GO:0071214","cellular response to abiotic stimulus",12,4,3.16,651,"0.39376","0.52112","0.5211" +"GO:0104004","cellular response to environmental stimu...",12,4,3.16,652,"0.39376","0.52112","0.5211" +"GO:0021987","cerebral cortex development",3,1,0.79,1279,"0.60090","0.52123","0.5212" +"GO:0006269","DNA replication, synthesis of RNA primer",3,1,0.79,1280,"0.60090","0.52148","0.5215" +"GO:0032956","regulation of actin cytoskeleton organiz...",23,7,6.06,732,"0.40428","0.52296","0.5230" +"GO:0010817","regulation of hormone levels",23,4,6.06,2231,"0.89317","0.52332","0.5233" +"GO:0010390","histone monoubiquitination",5,1,1.32,1893,"0.78380","0.52426","0.5243" +"GO:0043903","regulation of symbiosis, encompassing mu...",21,5,5.54,1541,"0.68574","0.52469","0.5247" +"GO:0050767","regulation of neurogenesis",31,7,8.17,1820,"0.74778","0.52594","0.5259" +"GO:0009161","ribonucleoside monophosphate metabolic p...",26,8,6.85,623,"0.37459","0.52601","0.5260" +"GO:0097305","response to alcohol",26,6,6.85,1771,"0.71961","0.52601","0.5260" +"GO:0043631","RNA polyadenylation",8,2,2.11,1489,"0.66636","0.52662","0.5266" +"GO:0006835","dicarboxylic acid transport",7,2,1.85,1111,"0.58869","0.52664","0.5266" +"GO:0007610","behavior",36,12,9.49,368,"0.21866","0.52711","0.5271" +"GO:0006796","phosphate-containing compound metabolic ...",316,84,83.31,834,"0.48666","0.52981","0.5298" +"GO:0070972","protein localization to endoplasmic reti...",9,2,2.37,1795,"0.73172","0.52985","0.5298" +"GO:0071495","cellular response to endogenous stimulus",54,13,14.24,1563,"0.69993","0.52997","0.5300" +"GO:0034330","cell junction organization",13,4,3.43,799,"0.46157","0.53032","0.5303" +"GO:0008033","tRNA processing",51,13,13.45,1405,"0.61047","0.03555","0.5304" +"GO:0006399","tRNA metabolic process",82,21,21.62,1402,"0.60527","0.10553","0.5314" +"GO:1901700","response to oxygen-containing compound",65,14,17.14,2138,"0.85050","0.37198","0.5316" +"GO:0050793","regulation of developmental process",103,29,27.16,621,"0.37406","0.53270","0.5327" +"GO:0072528","pyrimidine-containing compound biosynthe...",9,3,2.37,767,"0.43760","0.53345","0.5335" +"GO:0045010","actin nucleation",15,5,3.95,613,"0.35913","0.53360","0.5336" +"GO:0002066","columnar/cuboidal epithelial cell develo...",17,4,4.48,1557,"0.69414","0.53404","0.5340" +"GO:0009743","response to carbohydrate",8,1,2.11,2269,"0.91388","0.53442","0.5344" +"GO:0043066","negative regulation of apoptotic process",43,11,11.34,1401,"0.60509","0.53444","0.5344" +"GO:0051205","protein insertion into membrane",5,1,1.32,1894,"0.78380","0.53490","0.5349" +"GO:0045879","negative regulation of smoothened signal...",3,1,0.79,1281,"0.60090","0.53520","0.5352" +"GO:0055065","metal ion homeostasis",21,4,5.54,2135,"0.84495","0.53595","0.5359" +"GO:0035088","establishment or maintenance of apical/b...",4,1,1.05,1640,"0.70624","0.53724","0.5372" +"GO:0045197","establishment or maintenance of epitheli...",4,1,1.05,1641,"0.70624","0.53724","0.5372" +"GO:0061245","establishment or maintenance of bipolar ...",4,1,1.05,1642,"0.70624","0.53724","0.5372" +"GO:0009913","epidermal cell differentiation",4,0,1.05,2564,"1.00000","0.53724","0.5372" +"GO:0007127","meiosis I",9,3,2.37,768,"0.43760","0.53765","0.5376" +"GO:0034720","histone H3-K4 demethylation",5,1,1.32,1895,"0.78380","0.53781","0.5378" +"GO:0043408","regulation of MAPK cascade",19,2,5.01,2435,"0.97706","0.53788","0.5379" +"GO:0044089","positive regulation of cellular componen...",41,9,10.81,1983,"0.79261","0.53796","0.5380" +"GO:0097722","sperm motility",7,1,1.85,2194,"0.88294","0.54040","0.5404" +"GO:0097300","programmed necrotic cell death",5,2,1.32,715,"0.39599","0.54169","0.5417" +"GO:0042059","negative regulation of epidermal growth ...",4,1,1.05,1643,"0.70624","0.54245","0.5424" +"GO:1901185","negative regulation of ERBB signaling pa...",4,1,1.05,1644,"0.70624","0.54245","0.5424" +"GO:0043433","negative regulation of DNA-binding trans...",5,2,1.32,716,"0.39599","0.54266","0.5427" +"GO:0043968","histone H2A acetylation",4,1,1.05,1645,"0.70624","0.54266","0.5427" +"GO:0009566","fertilization",13,3,3.43,1750,"0.70769","0.54381","0.5438" +"GO:0090316","positive regulation of intracellular pro...",13,1,3.43,2443,"0.98148","0.54381","0.5438" +"GO:0008202","steroid metabolic process",13,1,3.43,2444,"0.98148","0.54417","0.5442" +"GO:0016073","snRNA metabolic process",11,3,2.9,1063,"0.58661","0.54525","0.5452" +"GO:0043067","regulation of programmed cell death",68,20,17.93,558,"0.32474","0.54566","0.5457" +"GO:0097191","extrinsic apoptotic signaling pathway",10,4,2.64,410,"0.25657","0.54612","0.5461" +"GO:0006811","ion transport",118,31,31.11,987,"0.54584","0.54698","0.5470" +"GO:0051704","multi-organism process",131,32,34.54,1785,"0.72842","0.54703","0.5470" +"GO:0007420","brain development",41,8,10.81,2217,"0.88417","0.54765","0.5477" +"GO:0008544","epidermis development",9,1,2.37,2342,"0.93665","0.54866","0.5487" +"GO:0001967","suckling behavior",3,1,0.79,1282,"0.60090","0.54873","0.5487" +"GO:0007350","blastoderm segmentation",4,1,1.05,1646,"0.70624","0.54875","0.5487" +"GO:0009994","oocyte differentiation",4,1,1.05,1647,"0.70624","0.54875","0.5487" +"GO:0048599","oocyte development",4,1,1.05,1648,"0.70624","0.54875","0.5487" +"GO:0006793","phosphorus metabolic process",319,84,84.11,958,"0.52933","0.54922","0.5492" +"GO:0045666","positive regulation of neuron differenti...",14,2,3.69,2290,"0.91770","0.55000","0.5500" +"GO:1901565","organonitrogen compound catabolic proces...",148,39,39.02,963,"0.53441","0.55003","0.5500" +"GO:0009887","animal organ morphogenesis",62,19,16.35,415,"0.26084","0.55034","0.5503" +"GO:0045321","leukocyte activation",19,3,5.01,2261,"0.91210","0.55038","0.5504" +"GO:0070201","regulation of establishment of protein l...",36,7,9.49,2174,"0.87507","0.55081","0.5508" +"GO:0021700","developmental maturation",17,4,4.48,1558,"0.69414","0.55104","0.5510" +"GO:0045444","fat cell differentiation",10,2,2.64,1965,"0.78585","0.55163","0.5516" +"GO:0000466","maturation of 5.8S rRNA from tricistroni...",7,3,1.85,438,"0.27227","0.55191","0.5519" +"GO:0032268","regulation of cellular protein metabolic...",148,41,39.02,630,"0.38363","0.55206","0.5521" +"GO:0001568","blood vessel development",8,2,2.11,1490,"0.66636","0.55317","0.5532" +"GO:0001944","vasculature development",8,2,2.11,1491,"0.66636","0.55317","0.5532" +"GO:0007626","locomotory behavior",11,4,2.9,556,"0.32472","0.55379","0.5538" +"GO:0031065","positive regulation of histone deacetyla...",3,1,0.79,1283,"0.60090","0.55426","0.5543" +"GO:0051050","positive regulation of transport",47,9,12.39,2254,"0.90687","0.55572","0.5557" +"GO:0072529","pyrimidine-containing compound catabolic...",3,1,0.79,1284,"0.60090","0.55577","0.5558" +"GO:0000904","cell morphogenesis involved in different...",41,8,10.81,2218,"0.88417","0.55608","0.5561" +"GO:0009952","anterior/posterior pattern specification",12,4,3.16,653,"0.39376","0.55647","0.5565" +"GO:0007444","imaginal disc development",11,3,2.9,1064,"0.58661","0.55682","0.5568" +"GO:0050807","regulation of synapse organization",11,3,2.9,1065,"0.58661","0.55682","0.5568" +"GO:0044260","cellular macromolecule metabolic process",1203,342,317.17,41,"0.01721","0.00521","0.5585" +"GO:0060219","camera-type eye photoreceptor cell diffe...",4,1,1.05,1649,"0.70624","0.55921","0.5592" +"GO:0032006","regulation of TOR signaling",9,1,2.37,2343,"0.93665","0.55957","0.5596" +"GO:0090087","regulation of peptide transport",35,7,9.23,2139,"0.85499","0.56013","0.5601" +"GO:0007308","oocyte construction",3,1,0.79,1285,"0.60090","0.56031","0.5603" +"GO:0007309","oocyte axis specification",3,1,0.79,1286,"0.60090","0.56031","0.5603" +"GO:0008298","intracellular mRNA localization",3,1,0.79,1287,"0.60090","0.56031","0.5603" +"GO:0060810","intracellular mRNA localization involved...",3,1,0.79,1288,"0.60090","0.56031","0.5603" +"GO:0045995","regulation of embryonic development",8,3,2.11,596,"0.35567","0.56213","0.5621" +"GO:0009968","negative regulation of signal transducti...",56,15,14.76,939,"0.52298","0.56262","0.5626" +"GO:0010648","negative regulation of cell communicatio...",56,15,14.76,940,"0.52298","0.56262","0.5626" +"GO:0023057","negative regulation of signaling",56,15,14.76,941,"0.52298","0.56262","0.5626" +"GO:0014070","response to organic cyclic compound",55,14,14.5,1406,"0.61310","0.56331","0.5633" +"GO:0032436","positive regulation of proteasomal ubiqu...",8,2,2.11,1492,"0.66636","0.56475","0.5648" +"GO:2000060","positive regulation of ubiquitin-depende...",8,2,2.11,1493,"0.66636","0.56475","0.5648" +"GO:0031016","pancreas development",3,1,0.79,1289,"0.60090","0.56560","0.5656" +"GO:0035270","endocrine system development",3,1,0.79,1290,"0.60090","0.56560","0.5656" +"GO:0071479","cellular response to ionizing radiation",3,1,0.79,1291,"0.60090","0.56560","0.5656" +"GO:2000322","regulation of glucocorticoid receptor si...",3,1,0.79,1292,"0.60090","0.56560","0.5656" +"GO:0051147","regulation of muscle cell differentiatio...",6,1,1.58,2079,"0.84091","0.56602","0.5660" +"GO:0070838","divalent metal ion transport",20,4,5.27,2027,"0.81463","0.56625","0.5663" +"GO:0072511","divalent inorganic cation transport",20,4,5.27,2028,"0.81463","0.56625","0.5663" +"GO:0002683","negative regulation of immune system pro...",10,2,2.64,1966,"0.78585","0.56683","0.5668" +"GO:0043647","inositol phosphate metabolic process",3,0,0.79,2565,"1.00000","0.56686","0.5669" +"GO:0032091","negative regulation of protein binding",4,1,1.05,1650,"0.70624","0.56773","0.5677" +"GO:0090085","regulation of protein deubiquitination",4,1,1.05,1651,"0.70624","0.56773","0.5677" +"GO:0090086","negative regulation of protein deubiquit...",4,1,1.05,1652,"0.70624","0.56773","0.5677" +"GO:1903644","regulation of chaperone-mediated protein...",4,1,1.05,1653,"0.70624","0.56773","0.5677" +"GO:0051705","multi-organism behavior",5,1,1.32,1896,"0.78380","0.56801","0.5680" +"GO:0001819","positive regulation of cytokine producti...",11,1,2.9,2407,"0.96574","0.56882","0.5688" +"GO:0010033","response to organic substance",148,34,39.02,2142,"0.85558","0.56912","0.5691" +"GO:0007631","feeding behavior",8,1,2.11,2270,"0.91388","0.56940","0.5694" +"GO:0043409","negative regulation of MAPK cascade",8,0,2.11,2566,"1.00000","0.56940","0.5694" +"GO:0032101","regulation of response to external stimu...",19,4,5.01,1853,"0.77960","0.56945","0.5695" +"GO:0051223","regulation of protein transport",34,7,8.96,2054,"0.83236","0.56960","0.5696" +"GO:0007043","cell-cell junction assembly",3,1,0.79,1293,"0.60090","0.57090","0.5709" +"GO:0042067","establishment of ommatidial planar polar...",3,1,0.79,1294,"0.60090","0.57090","0.5709" +"GO:0043297","apical junction assembly",3,1,0.79,1295,"0.60090","0.57090","0.5709" +"GO:0010563","negative regulation of phosphorus metabo...",24,7,6.33,786,"0.45366","0.57099","0.5710" +"GO:0045936","negative regulation of phosphate metabol...",24,7,6.33,787,"0.45366","0.57099","0.5710" +"GO:0001817","regulation of cytokine production",16,1,4.22,2473,"0.99265","0.57148","0.5715" +"GO:0045893","positive regulation of transcription, DN...",55,15,14.5,837,"0.49068","0.57193","0.5719" +"GO:1903508","positive regulation of nucleic acid-temp...",55,15,14.5,838,"0.49068","0.57193","0.5719" +"GO:0042773","ATP synthesis coupled electron transport",5,2,1.32,717,"0.39599","0.57290","0.5729" +"GO:0042775","mitochondrial ATP synthesis coupled elec...",5,2,1.32,718,"0.39599","0.57290","0.5729" +"GO:0046902","regulation of mitochondrial membrane per...",5,2,1.32,719,"0.39599","0.57290","0.5729" +"GO:0050773","regulation of dendrite development",3,1,0.79,1296,"0.60090","0.57318","0.5732" +"GO:0006353","DNA-templated transcription, termination",3,1,0.79,1297,"0.60090","0.57444","0.5744" +"GO:0006369","termination of RNA polymerase II transcr...",3,1,0.79,1298,"0.60090","0.57444","0.5744" +"GO:0045807","positive regulation of endocytosis",18,3,4.75,2225,"0.89117","0.57567","0.5757" +"GO:0060538","skeletal muscle organ development",18,4,4.75,1810,"0.73952","0.57567","0.5757" +"GO:0050877","nervous system process",52,14,13.71,936,"0.51687","0.57580","0.5758" +"GO:0000478","endonucleolytic cleavage involved in rRN...",4,1,1.05,1654,"0.70624","0.57648","0.5765" +"GO:0000479","endonucleolytic cleavage of tricistronic...",4,1,1.05,1655,"0.70624","0.57648","0.5765" +"GO:0009142","nucleoside triphosphate biosynthetic pro...",8,3,2.11,597,"0.35567","0.57667","0.5767" +"GO:0009201","ribonucleoside triphosphate biosynthetic...",8,3,2.11,598,"0.35567","0.57667","0.5767" +"GO:0060537","muscle tissue development",29,8,7.65,918,"0.51131","0.57681","0.5768" +"GO:0009605","response to external stimulus",104,26,27.42,1469,"0.66338","0.57731","0.5773" +"GO:0006625","protein targeting to peroxisome",3,1,0.79,1299,"0.60090","0.57798","0.5780" +"GO:0043574","peroxisomal transport",3,1,0.79,1300,"0.60090","0.57798","0.5780" +"GO:0072662","protein localization to peroxisome",3,1,0.79,1301,"0.60090","0.57798","0.5780" +"GO:0072663","establishment of protein localization to...",3,1,0.79,1302,"0.60090","0.57798","0.5780" +"GO:0000154","rRNA modification",11,3,2.9,1066,"0.58661","0.57952","0.5795" +"GO:0012501","programmed cell death",93,25,24.52,845,"0.49482","0.57972","0.5797" +"GO:0006420","arginyl-tRNA aminoacylation",3,1,0.79,1303,"0.60090","0.58076","0.5808" +"GO:0040007","growth",68,19,17.93,751,"0.42875","0.58141","0.5814" +"GO:0009755","hormone-mediated signaling pathway",20,6,5.27,778,"0.43841","0.58196","0.5820" +"GO:0050890","cognition",7,2,1.85,1112,"0.58869","0.58199","0.5820" +"GO:0046822","regulation of nucleocytoplasmic transpor...",7,2,1.85,1113,"0.58869","0.58431","0.5843" +"GO:0030518","intracellular steroid hormone receptor s...",12,4,3.16,654,"0.39376","0.58455","0.5845" +"GO:0072348","sulfur compound transport",4,1,1.05,1656,"0.70624","0.58525","0.5852" +"GO:0044248","cellular catabolic process",209,45,55.1,2392,"0.96046","0.58528","0.5853" +"GO:0009790","embryo development",89,21,23.47,1840,"0.76305","0.58649","0.5865" +"GO:0060548","negative regulation of cell death",55,16,14.5,619,"0.37082","0.58684","0.5868" +"GO:0042981","regulation of apoptotic process",65,19,17.14,573,"0.34238","0.58695","0.5869" +"GO:0006816","calcium ion transport",17,4,4.48,1559,"0.69414","0.58750","0.5875" +"GO:0006644","phospholipid metabolic process",40,9,10.55,1843,"0.76610","0.58769","0.5877" +"GO:1903829","positive regulation of cellular protein ...",20,3,5.27,2319,"0.92930","0.58786","0.5879" +"GO:0042147","retrograde transport, endosome to Golgi",10,4,2.64,411,"0.25657","0.58901","0.5890" +"GO:0008380","RNA splicing",71,23,18.72,247,"0.15124","0.00362","0.5905" +"GO:0006664","glycolipid metabolic process",12,4,3.16,655,"0.39376","0.59063","0.5906" +"GO:1903509","liposaccharide metabolic process",12,4,3.16,656,"0.39376","0.59063","0.5906" +"GO:1901575","organic substance catabolic process",206,50,54.31,1951,"0.78430","0.59087","0.5909" +"GO:0031503","protein-containing complex localization",18,5,4.75,970,"0.53531","0.59308","0.5931" +"GO:0019439","aromatic compound catabolic process",57,9,15.03,2441,"0.98093","0.59452","0.5945" +"GO:0072503","cellular divalent inorganic cation homeo...",13,3,3.43,1751,"0.70769","0.59530","0.5953" +"GO:0010972","negative regulation of G2/M transition o...",4,1,1.05,1657,"0.70624","0.59599","0.5960" +"GO:1902750","negative regulation of cell cycle G2/M p...",4,1,1.05,1658,"0.70624","0.59599","0.5960" +"GO:0071478","cellular response to radiation",9,3,2.37,769,"0.43760","0.59653","0.5965" +"GO:0007338","single fertilization",10,2,2.64,1967,"0.78585","0.59665","0.5967" +"GO:0009119","ribonucleoside metabolic process",10,2,2.64,1968,"0.78585","0.59735","0.5973" +"GO:0006536","glutamate metabolic process",3,1,0.79,1304,"0.60090","0.59747","0.5975" +"GO:0010506","regulation of autophagy",10,1,2.64,2378,"0.95341","0.59804","0.5980" +"GO:0006379","mRNA cleavage",7,1,1.85,2195,"0.88294","0.59825","0.5982" +"GO:0002790","peptide secretion",19,4,5.01,1854,"0.77960","0.59829","0.5983" +"GO:0009306","protein secretion",19,4,5.01,1855,"0.77960","0.59829","0.5983" +"GO:0031529","ruffle organization",5,2,1.32,720,"0.39599","0.59839","0.5984" +"GO:0000281","mitotic cytokinesis",3,1,0.79,1305,"0.60090","0.59975","0.5998" +"GO:0007005","mitochondrion organization",52,10,13.71,2266,"0.91334","0.60040","0.6004" +"GO:0045039","protein import into mitochondrial inner ...",4,1,1.05,1659,"0.70624","0.60126","0.6013" +"GO:0006665","sphingolipid metabolic process",6,2,1.58,885,"0.49828","0.60129","0.6013" +"GO:0019538","protein metabolic process",856,201,225.69,2471,"0.99099","0.45193","0.6014" +"GO:1901264","carbohydrate derivative transport",5,1,1.32,1897,"0.78380","0.60232","0.6023" +"GO:0032147","activation of protein kinase activity",3,1,0.79,1306,"0.60090","0.60280","0.6028" +"GO:0009653","anatomical structure morphogenesis",144,40,37.97,627,"0.37815","0.60372","0.6037" +"GO:0045638","negative regulation of myeloid cell diff...",3,0,0.79,2567,"1.00000","0.60406","0.6041" +"GO:0045647","negative regulation of erythrocyte diffe...",3,0,0.79,2568,"1.00000","0.60406","0.6041" +"GO:0070373","negative regulation of ERK1 and ERK2 cas...",3,0,0.79,2569,"1.00000","0.60406","0.6041" +"GO:1903707","negative regulation of hemopoiesis",3,0,0.79,2570,"1.00000","0.60406","0.6041" +"GO:0009628","response to abiotic stimulus",91,25,23.99,781,"0.44421","0.34311","0.6046" +"GO:0071310","cellular response to organic substance",97,24,25.57,1539,"0.68189","0.60467","0.6047" +"GO:0045862","positive regulation of proteolysis",26,6,6.85,1772,"0.71961","0.60551","0.6055" +"GO:0010458","exit from mitosis",3,1,0.79,1307,"0.60090","0.60584","0.6058" +"GO:0045840","positive regulation of mitotic nuclear d...",3,1,0.79,1308,"0.60090","0.60584","0.6058" +"GO:0031345","negative regulation of cell projection o...",6,1,1.58,2080,"0.84091","0.60613","0.6061" +"GO:0035220","wing disc development",7,1,1.85,2196,"0.88294","0.60638","0.6064" +"GO:0043123","positive regulation of I-kappaB kinase/N...",7,2,1.85,1114,"0.58869","0.60638","0.6064" +"GO:0043248","proteasome assembly",6,1,1.58,2081,"0.84091","0.60684","0.6068" +"GO:0030838","positive regulation of actin filament po...",18,5,4.75,971,"0.53531","0.60708","0.6071" +"GO:0015849","organic acid transport",21,5,5.54,1542,"0.68574","0.60762","0.6076" +"GO:0046942","carboxylic acid transport",21,5,5.54,1543,"0.68574","0.60762","0.6076" +"GO:0017148","negative regulation of translation",5,0,1.32,2571,"1.00000","0.60920","0.6092" +"GO:0034249","negative regulation of cellular amide me...",5,0,1.32,2572,"1.00000","0.60920","0.6092" +"GO:0098930","axonal transport",3,1,0.79,1309,"0.60090","0.60964","0.6096" +"GO:0051224","negative regulation of protein transport",9,3,2.37,770,"0.43760","0.60972","0.6097" +"GO:0046677","response to antibiotic",26,6,6.85,1773,"0.71961","0.18351","0.6108" +"GO:0018196","peptidyl-asparagine modification",10,2,2.64,1969,"0.78585","0.61125","0.6112" +"GO:0018279","protein N-linked glycosylation via aspar...",10,2,2.64,1970,"0.78585","0.61125","0.6112" +"GO:0055086","nucleobase-containing small molecule met...",84,24,22.15,615,"0.36073","0.61143","0.6114" +"GO:0006914","autophagy",40,5,10.55,2469,"0.99041","0.61144","0.6114" +"GO:0061919","process utilizing autophagic mechanism",40,5,10.55,2470,"0.99041","0.61144","0.6114" +"GO:0002062","chondrocyte differentiation",4,0,1.05,2573,"1.00000","0.61268","0.6127" +"GO:0006338","chromatin remodeling",16,5,4.22,746,"0.41930","0.61280","0.6128" +"GO:0034250","positive regulation of cellular amide me...",5,1,1.32,1898,"0.78380","0.61312","0.6131" +"GO:0045727","positive regulation of translation",5,1,1.32,1899,"0.78380","0.61312","0.6131" +"GO:0045598","regulation of fat cell differentiation",6,1,1.58,2082,"0.84091","0.61491","0.6149" +"GO:0007612","learning",3,1,0.79,1310,"0.60090","0.61597","0.6160" +"GO:0031532","actin cytoskeleton reorganization",3,1,0.79,1311,"0.60090","0.61597","0.6160" +"GO:0043954","cellular component maintenance",3,1,0.79,1312,"0.60090","0.61597","0.6160" +"GO:0001764","neuron migration",3,0,0.79,2574,"1.00000","0.61597","0.6160" +"GO:0010634","positive regulation of epithelial cell m...",3,0,0.79,2575,"1.00000","0.61597","0.6160" +"GO:0033135","regulation of peptidyl-serine phosphoryl...",3,0,0.79,2576,"1.00000","0.61597","0.6160" +"GO:0045580","regulation of T cell differentiation",3,0,0.79,2577,"1.00000","0.61597","0.6160" +"GO:0045619","regulation of lymphocyte differentiation",3,0,0.79,2578,"1.00000","0.61597","0.6160" +"GO:0070374","positive regulation of ERK1 and ERK2 cas...",3,0,0.79,2579,"1.00000","0.61597","0.6160" +"GO:1902105","regulation of leukocyte differentiation",3,0,0.79,2580,"1.00000","0.61597","0.6160" +"GO:1901361","organic cyclic compound catabolic proces...",59,9,15.56,2459,"0.98654","0.61607","0.6161" +"GO:0009894","regulation of catabolic process",55,11,14.5,2246,"0.89476","0.61612","0.6161" +"GO:0006753","nucleoside phosphate metabolic process",67,18,17.66,917,"0.50996","0.61631","0.6163" +"GO:0060173","limb development",6,1,1.58,2083,"0.84091","0.61760","0.6176" +"GO:0009991","response to extracellular stimulus",37,8,9.76,1991,"0.79911","0.61793","0.6179" +"GO:0031667","response to nutrient levels",37,8,9.76,1992,"0.79911","0.61793","0.6179" +"GO:0003333","amino acid transmembrane transport",11,2,2.9,2049,"0.83013","0.61860","0.6186" +"GO:0006865","amino acid transport",11,2,2.9,2050,"0.83013","0.61860","0.6186" +"GO:0031214","biomineral tissue development",4,1,1.05,1660,"0.70624","0.61882","0.6188" +"GO:0070167","regulation of biomineral tissue developm...",4,1,1.05,1661,"0.70624","0.61882","0.6188" +"GO:0008543","fibroblast growth factor receptor signal...",4,0,1.05,2581,"1.00000","0.61882","0.6188" +"GO:0040036","regulation of fibroblast growth factor r...",4,0,1.05,2582,"1.00000","0.61882","0.6188" +"GO:0044344","cellular response to fibroblast growth f...",4,0,1.05,2583,"1.00000","0.61882","0.6188" +"GO:0071774","response to fibroblast growth factor",4,0,1.05,2584,"1.00000","0.61882","0.6188" +"GO:0006470","protein dephosphorylation",25,7,6.59,912,"0.50216","0.61941","0.6194" +"GO:0006839","mitochondrial transport",38,6,10.02,2390,"0.95957","0.61968","0.6197" +"GO:0006418","tRNA aminoacylation for protein translat...",30,7,7.91,1762,"0.71370","0.61990","0.6199" +"GO:0043038","amino acid activation",30,7,7.91,1763,"0.71370","0.61990","0.6199" +"GO:0043039","tRNA aminoacylation",30,7,7.91,1764,"0.71370","0.61990","0.6199" +"GO:0006099","tricarboxylic acid cycle",3,0,0.79,2585,"1.00000","0.62003","0.6200" +"GO:0006101","citrate metabolic process",3,0,0.79,2586,"1.00000","0.62003","0.6200" +"GO:0042327","positive regulation of phosphorylation",26,8,6.85,624,"0.37459","0.62245","0.6224" +"GO:0048738","cardiac muscle tissue development",9,3,2.37,771,"0.43760","0.62260","0.6226" +"GO:1901888","regulation of cell junction assembly",5,1,1.32,1900,"0.78380","0.62294","0.6229" +"GO:0007476","imaginal disc-derived wing morphogenesis",5,0,1.32,2587,"1.00000","0.62294","0.6229" +"GO:0035114","imaginal disc-derived appendage morphoge...",5,0,1.32,2588,"1.00000","0.62294","0.6229" +"GO:0048737","imaginal disc-derived appendage developm...",5,0,1.32,2589,"1.00000","0.62294","0.6229" +"GO:0010257","NADH dehydrogenase complex assembly",5,0,1.32,2590,"1.00000","0.62392","0.6239" +"GO:0032981","mitochondrial respiratory chain complex ...",5,0,1.32,2591,"1.00000","0.62392","0.6239" +"GO:0010951","negative regulation of endopeptidase act...",7,2,1.85,1115,"0.58869","0.62497","0.6250" +"GO:0043154","negative regulation of cysteine-type end...",7,2,1.85,1116,"0.58869","0.62497","0.6250" +"GO:2000117","negative regulation of cysteine-type end...",7,2,1.85,1117,"0.58869","0.62497","0.6250" +"GO:0030707","ovarian follicle cell development",16,3,4.22,2062,"0.83559","0.62566","0.6257" +"GO:0032386","regulation of intracellular transport",32,6,8.44,2220,"0.88534","0.62612","0.6261" +"GO:0009259","ribonucleotide metabolic process",38,9,10.02,1565,"0.70614","0.62641","0.6264" +"GO:0006471","protein ADP-ribosylation",4,1,1.05,1662,"0.70624","0.62650","0.6265" +"GO:0006465","signal peptide processing",3,1,0.79,1313,"0.60090","0.62813","0.6281" +"GO:0009187","cyclic nucleotide metabolic process",3,0,0.79,2592,"1.00000","0.62838","0.6284" +"GO:0009190","cyclic nucleotide biosynthetic process",3,0,0.79,2593,"1.00000","0.62838","0.6284" +"GO:0008045","motor neuron axon guidance",3,0,0.79,2594,"1.00000","0.62889","0.6289" +"GO:0030522","intracellular receptor signaling pathway",17,5,4.48,825,"0.47840","0.62890","0.6289" +"GO:0006265","DNA topological change",4,1,1.05,1663,"0.70624","0.62891","0.6289" +"GO:0006448","regulation of translational elongation",5,0,1.32,2595,"1.00000","0.62980","0.6298" +"GO:0031647","regulation of protein stability",26,6,6.85,1774,"0.71961","0.63005","0.6300" +"GO:0071248","cellular response to metal ion",15,3,3.95,2008,"0.79955","0.63149","0.6315" +"GO:0030900","forebrain development",20,4,5.27,2029,"0.81463","0.63165","0.6317" +"GO:0048008","platelet-derived growth factor receptor ...",3,0,0.79,2596,"1.00000","0.63218","0.6322" +"GO:0031331","positive regulation of cellular cataboli...",20,3,5.27,2320,"0.92930","0.63313","0.6331" +"GO:0045944","positive regulation of transcription by ...",34,8,8.96,1758,"0.70936","0.63343","0.6334" +"GO:0009607","response to biotic stimulus",36,9,9.49,1418,"0.63718","0.63439","0.6344" +"GO:0007029","endoplasmic reticulum organization",8,0,2.11,2597,"1.00000","0.63519","0.6352" +"GO:0009581","detection of external stimulus",7,1,1.85,2197,"0.88294","0.63542","0.6354" +"GO:0009582","detection of abiotic stimulus",7,1,1.85,2198,"0.88294","0.63542","0.6354" +"GO:0033500","carbohydrate homeostasis",7,2,1.85,1118,"0.58869","0.63542","0.6354" +"GO:0042593","glucose homeostasis",7,2,1.85,1119,"0.58869","0.63542","0.6354" +"GO:0031032","actomyosin structure organization",13,4,3.43,800,"0.46157","0.63577","0.6358" +"GO:0048638","regulation of developmental growth",15,5,3.95,614,"0.35913","0.63602","0.6360" +"GO:0019220","regulation of phosphate metabolic proces...",65,19,17.14,574,"0.34238","0.63620","0.6362" +"GO:0018345","protein palmitoylation",5,2,1.32,721,"0.39599","0.63666","0.6367" +"GO:0016578","histone deubiquitination",3,1,0.79,1314,"0.60090","0.63825","0.6382" +"GO:0003018","vascular process in circulatory system",3,1,0.79,1315,"0.60090","0.63850","0.6385" +"GO:0035296","regulation of tube diameter",3,1,0.79,1316,"0.60090","0.63850","0.6385" +"GO:0035794","positive regulation of mitochondrial mem...",3,1,0.79,1317,"0.60090","0.63850","0.6385" +"GO:0042310","vasoconstriction",3,1,0.79,1318,"0.60090","0.63850","0.6385" +"GO:0050880","regulation of blood vessel size",3,1,0.79,1319,"0.60090","0.63850","0.6385" +"GO:0097345","mitochondrial outer membrane permeabiliz...",3,1,0.79,1320,"0.60090","0.63850","0.6385" +"GO:0097746","regulation of blood vessel diameter",3,1,0.79,1321,"0.60090","0.63850","0.6385" +"GO:0097756","negative regulation of blood vessel diam...",3,1,0.79,1322,"0.60090","0.63850","0.6385" +"GO:1902110","positive regulation of mitochondrial mem...",3,1,0.79,1323,"0.60090","0.63850","0.6385" +"GO:1902686","mitochondrial outer membrane permeabiliz...",3,1,0.79,1324,"0.60090","0.63850","0.6385" +"GO:0014031","mesenchymal cell development",4,1,1.05,1664,"0.70624","0.64008","0.6401" +"GO:0014032","neural crest cell development",4,1,1.05,1665,"0.70624","0.64008","0.6401" +"GO:0014033","neural crest cell differentiation",4,1,1.05,1666,"0.70624","0.64008","0.6401" +"GO:0006891","intra-Golgi vesicle-mediated transport",3,0,0.79,2598,"1.00000","0.64052","0.6405" +"GO:0032102","negative regulation of response to exter...",5,0,1.32,2599,"1.00000","0.64058","0.6406" +"GO:0032456","endocytic recycling",4,1,1.05,1667,"0.70624","0.64271","0.6427" +"GO:0009792","embryo development ending in birth or eg...",54,11,14.24,2181,"0.88029","0.64276","0.6428" +"GO:1902680","positive regulation of RNA biosynthetic ...",56,15,14.76,942,"0.52298","0.64335","0.6433" +"GO:0035195","gene silencing by miRNA",6,1,1.58,2084,"0.84091","0.64391","0.6439" +"GO:0030512","negative regulation of transforming grow...",4,1,1.05,1668,"0.70624","0.64424","0.6442" +"GO:1903845","negative regulation of cellular response...",4,1,1.05,1669,"0.70624","0.64424","0.6442" +"GO:0009056","catabolic process",232,53,61.17,2265,"0.91287","0.64490","0.6449" +"GO:0048260","positive regulation of receptor-mediated...",3,0,0.79,2600,"1.00000","0.64557","0.6456" +"GO:1902946","protein localization to early endosome",3,0,0.79,2601,"1.00000","0.64557","0.6456" +"GO:0032259","methylation",58,14,15.29,1561,"0.69939","0.64611","0.6461" +"GO:0034472","snRNA 3'-end processing",4,1,1.05,1670,"0.70624","0.64621","0.6462" +"GO:0099402","plant organ development",11,3,2.9,1067,"0.58661","0.64651","0.6465" +"GO:0045596","negative regulation of cell differentiat...",26,5,6.85,2140,"0.85522","0.64660","0.6466" +"GO:0051604","protein maturation",24,4,6.33,2257,"0.91193","0.64662","0.6466" +"GO:0033143","regulation of intracellular steroid horm...",8,2,2.11,1494,"0.66636","0.64711","0.6471" +"GO:0014074","response to purine-containing compound",8,2,2.11,1495,"0.66636","0.64757","0.6476" +"GO:0051592","response to calcium ion",8,2,2.11,1496,"0.66636","0.64757","0.6476" +"GO:0051146","striated muscle cell differentiation",12,3,3.16,1454,"0.65089","0.64781","0.6478" +"GO:0009081","branched-chain amino acid metabolic proc...",3,1,0.79,1325,"0.60090","0.64835","0.6483" +"GO:0046328","regulation of JNK cascade",5,1,1.32,1901,"0.78380","0.64938","0.6494" +"GO:0006935","chemotaxis",21,3,5.54,2365,"0.94335","0.65059","0.6506" +"GO:0050801","ion homeostasis",26,6,6.85,1775,"0.71961","0.65202","0.6520" +"GO:0001824","blastocyst development",4,1,1.05,1671,"0.70624","0.65232","0.6523" +"GO:0061982","meiosis I cell cycle process",10,3,2.64,926,"0.51518","0.65285","0.6529" +"GO:0043009","chordate embryonic development",42,8,11.07,2251,"0.90001","0.65427","0.6543" +"GO:0007006","mitochondrial membrane organization",12,4,3.16,657,"0.39376","0.65538","0.6554" +"GO:0010466","negative regulation of peptidase activit...",9,3,2.37,772,"0.43760","0.65545","0.6555" +"GO:0034754","cellular hormone metabolic process",5,0,1.32,2602,"1.00000","0.65621","0.6562" +"GO:0040013","negative regulation of locomotion",7,0,1.85,2603,"1.00000","0.65625","0.6562" +"GO:0051271","negative regulation of cellular componen...",7,0,1.85,2604,"1.00000","0.65625","0.6562" +"GO:2000146","negative regulation of cell motility",7,0,1.85,2605,"1.00000","0.65625","0.6562" +"GO:0015850","organic hydroxy compound transport",9,2,2.37,1796,"0.73172","0.65662","0.6566" +"GO:0006915","apoptotic process",86,23,22.67,916,"0.50988","0.65897","0.6590" +"GO:0030162","regulation of proteolysis",47,10,12.39,2057,"0.83254","0.65926","0.6593" +"GO:0014706","striated muscle tissue development",28,7,7.38,1413,"0.63675","0.65934","0.6593" +"GO:0097306","cellular response to alcohol",8,2,2.11,1497,"0.66636","0.65962","0.6596" +"GO:0032989","cellular component morphogenesis",58,13,15.29,1989,"0.79784","0.66057","0.6606" +"GO:0030317","flagellated sperm motility",6,1,1.58,2085,"0.84091","0.66084","0.6608" +"GO:0030447","filamentous growth",3,0,0.79,2606,"1.00000","0.66169","0.6617" +"GO:0007169","transmembrane receptor protein tyrosine ...",18,2,4.75,2421,"0.97022","0.66170","0.6617" +"GO:0030326","embryonic limb morphogenesis",3,1,0.79,1326,"0.60090","0.66194","0.6619" +"GO:0035113","embryonic appendage morphogenesis",3,1,0.79,1327,"0.60090","0.66194","0.6619" +"GO:0042733","embryonic digit morphogenesis",3,1,0.79,1328,"0.60090","0.66194","0.6619" +"GO:0032269","negative regulation of cellular protein ...",54,12,14.24,2021,"0.80154","0.66349","0.6635" +"GO:0050878","regulation of body fluid levels",4,1,1.05,1672,"0.70624","0.66387","0.6639" +"GO:0050909","sensory perception of taste",4,1,1.05,1673,"0.70624","0.66496","0.6650" +"GO:0098656","anion transmembrane transport",19,3,5.01,2262,"0.91210","0.66507","0.6651" +"GO:0009150","purine ribonucleotide metabolic process",37,8,9.76,1993,"0.79911","0.66580","0.6658" +"GO:0008593","regulation of Notch signaling pathway",11,3,2.9,1068,"0.58661","0.66612","0.6661" +"GO:0031958","corticosteroid receptor signaling pathwa...",4,1,1.05,1674,"0.70624","0.66735","0.6673" +"GO:0042921","glucocorticoid receptor signaling pathwa...",4,1,1.05,1675,"0.70624","0.66735","0.6673" +"GO:0048859","formation of anatomical boundary",3,0,0.79,2607,"1.00000","0.66771","0.6677" +"GO:0048522","positive regulation of cellular process",277,70,73.03,1548,"0.69176","0.66780","0.6678" +"GO:0015711","organic anion transport",25,5,6.59,2045,"0.82914","0.66855","0.6686" +"GO:0006984","ER-nucleus signaling pathway",3,0,0.79,2608,"1.00000","0.66897","0.6690" +"GO:0016577","histone demethylation",11,3,2.9,1069,"0.58661","0.66914","0.6691" +"GO:0008272","sulfate transport",3,1,0.79,1329,"0.60090","0.66922","0.6692" +"GO:0006892","post-Golgi vesicle-mediated transport",4,1,1.05,1676,"0.70624","0.66930","0.6693" +"GO:0043069","negative regulation of programmed cell d...",46,12,12.13,1000,"0.57399","0.66959","0.6696" +"GO:0009263","deoxyribonucleotide biosynthetic process",3,1,0.79,1330,"0.60090","0.67022","0.6702" +"GO:0007254","JNK cascade",8,2,2.11,1498,"0.66636","0.67130","0.6713" +"GO:0010830","regulation of myotube differentiation",4,1,1.05,1677,"0.70624","0.67147","0.6715" +"GO:0031938","regulation of chromatin silencing at tel...",4,1,1.05,1678,"0.70624","0.67147","0.6715" +"GO:0043244","regulation of protein complex disassembl...",9,2,2.37,1797,"0.73172","0.67156","0.6716" +"GO:0006970","response to osmotic stress",7,1,1.85,2199,"0.88294","0.67236","0.6724" +"GO:0010001","glial cell differentiation",8,1,2.11,2271,"0.91388","0.67253","0.6725" +"GO:0038202","TORC1 signaling",3,0,0.79,2609,"1.00000","0.67272","0.6727" +"GO:1903432","regulation of TORC1 signaling",3,0,0.79,2610,"1.00000","0.67272","0.6727" +"GO:0016999","antibiotic metabolic process",8,1,2.11,2272,"0.91388","0.67299","0.6730" +"GO:1902806","regulation of cell cycle G1/S phase tran...",4,1,1.05,1679,"0.70624","0.67342","0.6734" +"GO:0032388","positive regulation of intracellular tra...",17,2,4.48,2396,"0.96144","0.67366","0.6737" +"GO:0051960","regulation of nervous system development",35,8,9.23,1817,"0.74188","0.67467","0.6747" +"GO:0048729","tissue morphogenesis",39,12,10.28,550,"0.32006","0.67469","0.6747" +"GO:0045834","positive regulation of lipid metabolic p...",3,1,0.79,1331,"0.60090","0.67547","0.6755" +"GO:0009891","positive regulation of biosynthetic proc...",66,18,17.4,830,"0.48034","0.67831","0.6783" +"GO:0031328","positive regulation of cellular biosynth...",66,18,17.4,831,"0.48034","0.67831","0.6783" +"GO:0006469","negative regulation of protein kinase ac...",5,1,1.32,1902,"0.78380","0.67856","0.6786" +"GO:0021543","pallium development",5,1,1.32,1903,"0.78380","0.68049","0.6805" +"GO:0098542","defense response to other organism",23,7,6.06,733,"0.40428","0.68070","0.6807" +"GO:0000394","RNA splicing, via endonucleolytic cleava...",4,0,1.05,2611,"1.00000","0.68229","0.6823" +"GO:0006388","tRNA splicing, via endonucleolytic cleav...",4,0,1.05,2612,"1.00000","0.68229","0.6823" +"GO:0035151","regulation of tube size, open tracheal s...",3,0,0.79,2613,"1.00000","0.68421","0.6842" +"GO:0035152","regulation of tube architecture, open tr...",3,0,0.79,2614,"1.00000","0.68421","0.6842" +"GO:0055007","cardiac muscle cell differentiation",4,1,1.05,1680,"0.70624","0.68445","0.6844" +"GO:0016202","regulation of striated muscle tissue dev...",4,0,1.05,2615,"1.00000","0.68445","0.6844" +"GO:0048634","regulation of muscle organ development",4,0,1.05,2616,"1.00000","0.68445","0.6844" +"GO:0048709","oligodendrocyte differentiation",4,0,1.05,2617,"1.00000","0.68445","0.6844" +"GO:1901861","regulation of muscle tissue development",4,0,1.05,2618,"1.00000","0.68445","0.6844" +"GO:0010647","positive regulation of cell communicatio...",72,18,18.98,1435,"0.64961","0.68508","0.6851" +"GO:0023056","positive regulation of signaling",72,18,18.98,1436,"0.64961","0.68508","0.6851" +"GO:0006611","protein export from nucleus",13,4,3.43,801,"0.46157","0.68618","0.6862" +"GO:0046467","membrane lipid biosynthetic process",10,2,2.64,1971,"0.78585","0.68719","0.6872" +"GO:0006213","pyrimidine nucleoside metabolic process",5,1,1.32,1904,"0.78380","0.68821","0.6882" +"GO:0046131","pyrimidine ribonucleoside metabolic proc...",5,1,1.32,1905,"0.78380","0.68821","0.6882" +"GO:1903825","organic acid transmembrane transport",13,2,3.43,2238,"0.89476","0.68869","0.6887" +"GO:1905039","carboxylic acid transmembrane transport",13,2,3.43,2239,"0.89476","0.68869","0.6887" +"GO:0009798","axis specification",14,3,3.69,1836,"0.75711","0.68919","0.6892" +"GO:0060191","regulation of lipase activity",3,0,0.79,2619,"1.00000","0.68943","0.6894" +"GO:0048870","cell motility",44,8,11.6,2304,"0.92625","0.68987","0.6899" +"GO:0051674","localization of cell",44,8,11.6,2305,"0.92625","0.68987","0.6899" +"GO:0043281","regulation of cysteine-type endopeptidas...",10,3,2.64,927,"0.51518","0.69060","0.6906" +"GO:2000116","regulation of cysteine-type endopeptidas...",10,3,2.64,928,"0.51518","0.69060","0.6906" +"GO:0030042","actin filament depolymerization",4,1,1.05,1681,"0.70624","0.69070","0.6907" +"GO:0030834","regulation of actin filament depolymeriz...",4,1,1.05,1682,"0.70624","0.69070","0.6907" +"GO:0030835","negative regulation of actin filament de...",4,1,1.05,1683,"0.70624","0.69070","0.6907" +"GO:0006383","transcription by RNA polymerase III",4,1,1.05,1684,"0.70624","0.69113","0.6911" +"GO:0016180","snRNA processing",7,2,1.85,1120,"0.58869","0.69180","0.6918" +"GO:0040011","locomotion",68,13,17.93,2355,"0.93895","0.69198","0.6920" +"GO:0007269","neurotransmitter secretion",12,2,3.16,2159,"0.86598","0.69257","0.6926" +"GO:0099643","signal release from synapse",12,2,3.16,2160,"0.86598","0.69257","0.6926" +"GO:0032465","regulation of cytokinesis",3,1,0.79,1332,"0.60090","0.69291","0.6929" +"GO:0001818","negative regulation of cytokine producti...",3,0,0.79,2620,"1.00000","0.69316","0.6932" +"GO:0061136","regulation of proteasomal protein catabo...",21,6,5.54,842,"0.49144","0.69376","0.6938" +"GO:1903050","regulation of proteolysis involved in ce...",21,6,5.54,843,"0.49144","0.69376","0.6938" +"GO:0048731","system development",239,63,63.01,957,"0.52742","0.69411","0.6941" +"GO:0036503","ERAD pathway",23,6,6.06,1147,"0.59156","0.69449","0.6945" +"GO:0045595","regulation of cell differentiation",67,14,17.66,2185,"0.88072","0.69540","0.6954" +"GO:0072657","protein localization to membrane",31,9,8.17,756,"0.43446","0.69572","0.6957" +"GO:0009260","ribonucleotide biosynthetic process",17,5,4.48,826,"0.47840","0.69652","0.6965" +"GO:0046390","ribose phosphate biosynthetic process",17,5,4.48,827,"0.47840","0.69652","0.6965" +"GO:0009416","response to light stimulus",21,5,5.54,1544,"0.68574","0.69771","0.6977" +"GO:0043393","regulation of protein binding",15,3,3.95,2009,"0.79955","0.69779","0.6978" +"GO:0051289","protein homotetramerization",3,1,0.79,1333,"0.60090","0.69860","0.6986" +"GO:0071320","cellular response to cAMP",3,1,0.79,1334,"0.60090","0.69860","0.6986" +"GO:0030041","actin filament polymerization",20,5,5.27,1424,"0.63947","0.69885","0.6988" +"GO:0030833","regulation of actin filament polymerizat...",20,5,5.27,1425,"0.63947","0.69885","0.6988" +"GO:0050905","neuromuscular process",4,1,1.05,1685,"0.70624","0.69971","0.6997" +"GO:0016311","dephosphorylation",37,11,9.76,629,"0.37981","0.69999","0.7000" +"GO:0048666","neuron development",63,15,16.61,1780,"0.72439","0.70032","0.7003" +"GO:0051174","regulation of phosphorus metabolic proce...",66,19,17.4,620,"0.37084","0.70065","0.7007" +"GO:0043207","response to external biotic stimulus",32,9,8.44,812,"0.47729","0.70106","0.7011" +"GO:0051707","response to other organism",32,9,8.44,813,"0.47729","0.70106","0.7011" +"GO:0072524","pyridine-containing compound metabolic p...",9,2,2.37,1798,"0.73172","0.70132","0.7013" +"GO:0043900","regulation of multi-organism process",29,7,7.65,1531,"0.67666","0.70343","0.7034" +"GO:0031960","response to corticosteroid",5,1,1.32,1906,"0.78380","0.70356","0.7036" +"GO:1904950","negative regulation of establishment of ...",10,3,2.64,929,"0.51518","0.70417","0.7042" +"GO:0006807","nitrogen compound metabolic process",1682,473,443.46,26,"0.00498","3.2e-05","0.7043" +"GO:0071554","cell wall organization or biogenesis",5,0,1.32,2621,"1.00000","0.70451","0.7045" +"GO:0140029","exocytic process",4,0,1.05,2622,"1.00000","0.70569","0.7057" +"GO:0098655","cation transmembrane transport",36,10,9.49,836,"0.48687","0.70617","0.7062" +"GO:0006139","nucleobase-containing compound metabolic...",888,287,234.12,7,"8.2e-07","6.2e-11","0.7069" +"GO:0009117","nucleotide metabolic process",64,17,16.87,962,"0.53410","0.70699","0.7070" +"GO:0033157","regulation of intracellular protein tran...",21,4,5.54,2136,"0.84495","0.70753","0.7075" +"GO:0008637","apoptotic mitochondrial changes",6,2,1.58,886,"0.49828","0.70890","0.7089" +"GO:0003007","heart morphogenesis",11,4,2.9,557,"0.32472","0.71120","0.7112" +"GO:0034227","tRNA thio-modification",4,1,1.05,1686,"0.70624","0.71165","0.7116" +"GO:0050777","negative regulation of immune response",3,1,0.79,1335,"0.60090","0.71264","0.7126" +"GO:0051785","positive regulation of nuclear division",4,1,1.05,1687,"0.70624","0.71292","0.7129" +"GO:1901992","positive regulation of mitotic cell cycl...",4,1,1.05,1688,"0.70624","0.71292","0.7129" +"GO:2000278","regulation of DNA biosynthetic process",4,1,1.05,1689,"0.70624","0.71377","0.7138" +"GO:0006221","pyrimidine nucleotide biosynthetic proce...",7,1,1.85,2200,"0.88294","0.71441","0.7144" +"GO:0045333","cellular respiration",12,3,3.16,1455,"0.65089","0.71590","0.7159" +"GO:0006120","mitochondrial electron transport, NADH t...",3,1,0.79,1336,"0.60090","0.71606","0.7161" +"GO:0016042","lipid catabolic process",18,5,4.75,972,"0.53531","0.71718","0.7172" +"GO:0031346","positive regulation of cell projection o...",12,2,3.16,2161,"0.86598","0.71749","0.7175" +"GO:0034329","cell junction assembly",12,3,3.16,1456,"0.65089","0.71749","0.7175" +"GO:0042110","T cell activation",12,3,3.16,1457,"0.65089","0.71749","0.7175" +"GO:0046649","lymphocyte activation",12,3,3.16,1458,"0.65089","0.71749","0.7175" +"GO:0030970","retrograde protein transport, ER to cyto...",6,2,1.58,887,"0.49828","0.71930","0.7193" +"GO:0070861","regulation of protein exit from endoplas...",6,2,1.58,888,"0.49828","0.71930","0.7193" +"GO:0070862","negative regulation of protein exit from...",6,2,1.58,889,"0.49828","0.71930","0.7193" +"GO:1901799","negative regulation of proteasomal prote...",6,2,1.58,890,"0.49828","0.71930","0.7193" +"GO:1903051","negative regulation of proteolysis invol...",6,2,1.58,891,"0.49828","0.71930","0.7193" +"GO:1903363","negative regulation of cellular protein ...",6,2,1.58,892,"0.49828","0.71930","0.7193" +"GO:1903513","endoplasmic reticulum to cytosol transpo...",6,2,1.58,893,"0.49828","0.71930","0.7193" +"GO:1904152","regulation of retrograde protein transpo...",6,2,1.58,894,"0.49828","0.71930","0.7193" +"GO:1904153","negative regulation of retrograde protei...",6,2,1.58,895,"0.49828","0.71930","0.7193" +"GO:1904293","negative regulation of ERAD pathway",6,2,1.58,896,"0.49828","0.71930","0.7193" +"GO:0051222","positive regulation of protein transport",20,1,5.27,2479,"0.99786","0.71937","0.7194" +"GO:1904951","positive regulation of establishment of ...",20,1,5.27,2480,"0.99786","0.71937","0.7194" +"GO:0006779","porphyrin-containing compound biosynthet...",6,1,1.58,2086,"0.84091","0.72188","0.7219" +"GO:0046683","response to organophosphorus",6,1,1.58,2087,"0.84091","0.72205","0.7221" +"GO:0042325","regulation of phosphorylation",57,17,15.03,551,"0.32096","0.72213","0.7221" +"GO:0034341","response to interferon-gamma",4,0,1.05,2623,"1.00000","0.72244","0.7224" +"GO:0071346","cellular response to interferon-gamma",4,0,1.05,2624,"1.00000","0.72244","0.7224" +"GO:0009746","response to hexose",5,1,1.32,1907,"0.78380","0.72254","0.7225" +"GO:0009749","response to glucose",5,1,1.32,1908,"0.78380","0.72254","0.7225" +"GO:0034284","response to monosaccharide",5,1,1.32,1909,"0.78380","0.72254","0.7225" +"GO:0072520","seminiferous tubule development",5,1,1.32,1910,"0.78380","0.72254","0.7225" +"GO:0009060","aerobic respiration",4,0,1.05,2625,"1.00000","0.72329","0.7233" +"GO:0008361","regulation of cell size",8,2,2.11,1499,"0.66636","0.72343","0.7234" +"GO:0048229","gametophyte development",8,0,2.11,2626,"1.00000","0.72343","0.7234" +"GO:0006119","oxidative phosphorylation",8,3,2.11,599,"0.35567","0.72432","0.7243" +"GO:0002009","morphogenesis of an epithelium",32,9,8.44,814,"0.47729","0.72467","0.7247" +"GO:0010562","positive regulation of phosphorus metabo...",28,8,7.38,806,"0.46637","0.72493","0.7249" +"GO:0045937","positive regulation of phosphate metabol...",28,8,7.38,807,"0.46637","0.72493","0.7249" +"GO:0051241","negative regulation of multicellular org...",33,4,8.7,2461,"0.98681","0.72552","0.7255" +"GO:0032787","monocarboxylic acid metabolic process",25,5,6.59,2046,"0.82914","0.72657","0.7266" +"GO:0007548","sex differentiation",18,4,4.75,1811,"0.73952","0.72665","0.7267" +"GO:0051336","regulation of hydrolase activity",56,13,14.76,1823,"0.75209","0.72668","0.7267" +"GO:0071166","ribonucleoprotein complex localization",11,3,2.9,1070,"0.58661","0.72728","0.7273" +"GO:0071426","ribonucleoprotein complex export from nu...",11,3,2.9,1071,"0.58661","0.72728","0.7273" +"GO:0048708","astrocyte differentiation",4,0,1.05,2627,"1.00000","0.72854","0.7285" +"GO:0051049","regulation of transport",80,17,21.09,2216,"0.88332","0.72892","0.7289" +"GO:0030239","myofibril assembly",5,2,1.32,722,"0.39599","0.73007","0.7301" +"GO:0010557","positive regulation of macromolecule bio...",63,17,16.61,915,"0.50394","0.73016","0.7302" +"GO:0019827","stem cell population maintenance",13,3,3.43,1752,"0.70769","0.73167","0.7317" +"GO:0098727","maintenance of cell number",13,3,3.43,1753,"0.70769","0.73167","0.7317" +"GO:0006775","fat-soluble vitamin metabolic process",7,2,1.85,1121,"0.58869","0.73226","0.7323" +"GO:0070372","regulation of ERK1 and ERK2 cascade",6,0,1.58,2628,"1.00000","0.73337","0.7334" +"GO:0048514","blood vessel morphogenesis",6,1,1.58,2088,"0.84091","0.73440","0.7344" +"GO:0035120","post-embryonic appendage morphogenesis",6,0,1.58,2629,"1.00000","0.73440","0.7344" +"GO:0030111","regulation of Wnt signaling pathway",16,3,4.22,2063,"0.83559","0.73540","0.7354" +"GO:0042133","neurotransmitter metabolic process",6,1,1.58,2089,"0.84091","0.73542","0.7354" +"GO:0006825","copper ion transport",3,1,0.79,1337,"0.60090","0.73573","0.7357" +"GO:0035434","copper ion transmembrane transport",3,1,0.79,1338,"0.60090","0.73573","0.7357" +"GO:0036314","response to sterol",5,1,1.32,1911,"0.78380","0.73661","0.7366" +"GO:0036315","cellular response to sterol",5,1,1.32,1912,"0.78380","0.73661","0.7366" +"GO:0021680","cerebellar Purkinje cell layer developme...",6,1,1.58,2090,"0.84091","0.73746","0.7375" +"GO:0021695","cerebellar cortex development",6,1,1.58,2091,"0.84091","0.73746","0.7375" +"GO:0023051","regulation of signaling",150,37,39.55,1767,"0.71621","0.73820","0.7382" +"GO:0032387","negative regulation of intracellular tra...",8,3,2.11,600,"0.35567","0.73869","0.7387" +"GO:0032874","positive regulation of stress-activated ...",3,1,0.79,1339,"0.60090","0.73885","0.7389" +"GO:0046330","positive regulation of JNK cascade",3,1,0.79,1340,"0.60090","0.73885","0.7389" +"GO:0070304","positive regulation of stress-activated ...",3,1,0.79,1341,"0.60090","0.73885","0.7389" +"GO:1905332","positive regulation of morphogenesis of ...",4,1,1.05,1690,"0.70624","0.73899","0.7390" +"GO:0009247","glycolipid biosynthetic process",8,2,2.11,1500,"0.66636","0.74001","0.7400" +"GO:0019693","ribose phosphate metabolic process",40,10,10.55,1420,"0.63799","0.74073","0.7407" +"GO:0045132","meiotic chromosome segregation",3,0,0.79,2630,"1.00000","0.74077","0.7408" +"GO:0003006","developmental process involved in reprod...",73,19,19.25,999,"0.57192","0.74092","0.7409" +"GO:0035304","regulation of protein dephosphorylation",8,2,2.11,1501,"0.66636","0.74148","0.7415" +"GO:0001505","regulation of neurotransmitter levels",19,4,5.01,1856,"0.77960","0.74175","0.7418" +"GO:0007369","gastrulation",19,5,5.01,1144,"0.58921","0.74175","0.7418" +"GO:0033108","mitochondrial respiratory chain complex ...",8,0,2.11,2631,"1.00000","0.74324","0.7432" +"GO:0098660","inorganic ion transmembrane transport",29,7,7.65,1532,"0.67666","0.74434","0.7443" +"GO:0098662","inorganic cation transmembrane transport",29,7,7.65,1533,"0.67666","0.74434","0.7443" +"GO:0043405","regulation of MAP kinase activity",6,1,1.58,2092,"0.84091","0.74526","0.7453" +"GO:0070129","regulation of mitochondrial translation",3,1,0.79,1342,"0.60090","0.74580","0.7458" +"GO:0043410","positive regulation of MAPK cascade",9,2,2.37,1799,"0.73172","0.74627","0.7463" +"GO:0007602","phototransduction",6,0,1.58,2632,"1.00000","0.74645","0.7464" +"GO:0009583","detection of light stimulus",6,0,1.58,2633,"1.00000","0.74645","0.7464" +"GO:0007007","inner mitochondrial membrane organizatio...",7,2,1.85,1122,"0.58869","0.74657","0.7466" +"GO:0032502","developmental process",352,95,92.81,739,"0.41037","0.74708","0.7471" +"GO:0035239","tube morphogenesis",29,8,7.65,919,"0.51131","0.74712","0.7471" +"GO:0009895","negative regulation of catabolic process",14,4,3.69,951,"0.52650","0.74777","0.7478" +"GO:0052547","regulation of peptidase activity",14,4,3.69,952,"0.52650","0.74777","0.7478" +"GO:0050769","positive regulation of neurogenesis",15,2,3.95,2333,"0.93587","0.74791","0.7479" +"GO:0008104","protein localization",208,46,54.84,2354,"0.93880","0.74801","0.7480" +"GO:0042127","regulation of cell proliferation",53,12,13.97,1850,"0.77896","0.74856","0.7486" +"GO:0042246","tissue regeneration",8,2,2.11,1502,"0.66636","0.74866","0.7487" +"GO:0009225","nucleotide-sugar metabolic process",6,1,1.58,2093,"0.84091","0.75217","0.7522" +"GO:1903362","regulation of cellular protein catabolic...",22,6,5.8,984,"0.54270","0.75308","0.7531" +"GO:0022008","neurogenesis",89,21,23.47,1841,"0.76305","0.75396","0.7540" +"GO:0009888","tissue development",117,31,30.85,943,"0.52351","0.75417","0.7542" +"GO:0009145","purine nucleoside triphosphate biosynthe...",7,2,1.85,1123,"0.58869","0.75419","0.7542" +"GO:0009206","purine ribonucleoside triphosphate biosy...",7,2,1.85,1124,"0.58869","0.75419","0.7542" +"GO:0008291","acetylcholine metabolic process",4,1,1.05,1691,"0.70624","0.75489","0.7549" +"GO:0033238","regulation of cellular amine metabolic p...",4,1,1.05,1692,"0.70624","0.75489","0.7549" +"GO:0051385","response to mineralocorticoid",4,1,1.05,1693,"0.70624","0.75489","0.7549" +"GO:1900619","acetate ester metabolic process",4,1,1.05,1694,"0.70624","0.75489","0.7549" +"GO:0021761","limbic system development",4,0,1.05,2634,"1.00000","0.75489","0.7549" +"GO:0035295","tube development",45,12,11.86,973,"0.53905","0.75507","0.7551" +"GO:0071852","fungal-type cell wall organization or bi...",4,0,1.05,2635,"1.00000","0.75571","0.7557" +"GO:0000726","non-recombinational repair",6,1,1.58,2094,"0.84091","0.75619","0.7562" +"GO:0006303","double-strand break repair via nonhomolo...",6,1,1.58,2095,"0.84091","0.75619","0.7562" +"GO:0051567","histone H3-K9 methylation",3,1,0.79,1343,"0.60090","0.75672","0.7567" +"GO:0051570","regulation of histone H3-K9 methylation",3,1,0.79,1344,"0.60090","0.75672","0.7567" +"GO:0051573","negative regulation of histone H3-K9 met...",3,1,0.79,1345,"0.60090","0.75672","0.7567" +"GO:0061647","histone H3-K9 modification",3,1,0.79,1346,"0.60090","0.75672","0.7567" +"GO:0002182","cytoplasmic translational elongation",3,0,0.79,2636,"1.00000","0.75790","0.7579" +"GO:0017182","peptidyl-diphthamide metabolic process",3,0,0.79,2637,"1.00000","0.75790","0.7579" +"GO:0017183","peptidyl-diphthamide biosynthetic proces...",3,0,0.79,2638,"1.00000","0.75790","0.7579" +"GO:0018202","peptidyl-histidine modification",3,0,0.79,2639,"1.00000","0.75790","0.7579" +"GO:1900247","regulation of cytoplasmic translational ...",3,0,0.79,2640,"1.00000","0.75790","0.7579" +"GO:2000765","regulation of cytoplasmic translation",3,0,0.79,2641,"1.00000","0.75790","0.7579" +"GO:0006109","regulation of carbohydrate metabolic pro...",10,3,2.64,930,"0.51518","0.75846","0.7585" +"GO:0007163","establishment or maintenance of cell pol...",12,2,3.16,2162,"0.86598","0.75863","0.7586" +"GO:0030466","chromatin silencing at silent mating-typ...",3,1,0.79,1347,"0.60090","0.75955","0.7595" +"GO:0031939","negative regulation of chromatin silenci...",3,1,0.79,1348,"0.60090","0.75955","0.7595" +"GO:0043951","negative regulation of cAMP-mediated sig...",3,1,0.79,1349,"0.60090","0.75955","0.7595" +"GO:0061186","negative regulation of chromatin silenci...",3,1,0.79,1350,"0.60090","0.75955","0.7595" +"GO:0090054","regulation of chromatin silencing at sil...",3,1,0.79,1351,"0.60090","0.75955","0.7595" +"GO:0050821","protein stabilization",12,3,3.16,1459,"0.65089","0.76028","0.7603" +"GO:0007268","chemical synaptic transmission",26,4,6.85,2360,"0.94087","0.76080","0.7608" +"GO:0098916","anterograde trans-synaptic signaling",26,4,6.85,2361,"0.94087","0.76080","0.7608" +"GO:0099536","synaptic signaling",26,4,6.85,2362,"0.94087","0.76080","0.7608" +"GO:0099537","trans-synaptic signaling",26,4,6.85,2363,"0.94087","0.76080","0.7608" +"GO:0007416","synapse assembly",9,3,2.37,773,"0.43760","0.76146","0.7615" +"GO:0043242","negative regulation of protein complex d...",5,1,1.32,1913,"0.78380","0.76149","0.7615" +"GO:0051494","negative regulation of cytoskeleton orga...",5,1,1.32,1914,"0.78380","0.76149","0.7615" +"GO:1901879","regulation of protein depolymerization",5,1,1.32,1915,"0.78380","0.76149","0.7615" +"GO:1901880","negative regulation of protein depolymer...",5,1,1.32,1916,"0.78380","0.76149","0.7615" +"GO:0006898","receptor-mediated endocytosis",8,2,2.11,1503,"0.66636","0.76170","0.7617" +"GO:0051591","response to cAMP",5,1,1.32,1917,"0.78380","0.76240","0.7624" +"GO:0021537","telencephalon development",7,1,1.85,2201,"0.88294","0.76284","0.7628" +"GO:1900180","regulation of protein localization to nu...",4,0,1.05,2642,"1.00000","0.76305","0.7631" +"GO:0060828","regulation of canonical Wnt signaling pa...",11,2,2.9,2051,"0.83013","0.76347","0.7635" +"GO:2000241","regulation of reproductive process",10,3,2.64,931,"0.51518","0.76361","0.7636" +"GO:0002064","epithelial cell development",23,4,6.06,2232,"0.89317","0.76397","0.7640" +"GO:0030336","negative regulation of cell migration",6,0,1.58,2643,"1.00000","0.76451","0.7645" +"GO:0006790","sulfur compound metabolic process",29,9,7.65,578,"0.34839","0.48274","0.7648" +"GO:0022904","respiratory electron transport chain",6,2,1.58,897,"0.49828","0.76500","0.7650" +"GO:0001736","establishment of planar polarity",8,2,2.11,1504,"0.66636","0.76515","0.7651" +"GO:0001738","morphogenesis of a polarized epithelium",8,2,2.11,1505,"0.66636","0.76515","0.7651" +"GO:0007164","establishment of tissue polarity",8,2,2.11,1506,"0.66636","0.76515","0.7651" +"GO:1905330","regulation of morphogenesis of an epithe...",8,2,2.11,1507,"0.66636","0.76515","0.7651" +"GO:0010721","negative regulation of cell development",16,3,4.22,2064,"0.83559","0.76540","0.7654" +"GO:0048598","embryonic morphogenesis",50,12,13.18,1564,"0.70078","0.76618","0.7662" +"GO:1901136","carbohydrate derivative catabolic proces...",10,3,2.64,932,"0.51518","0.76618","0.7662" +"GO:0001678","cellular glucose homeostasis",4,1,1.05,1695,"0.70624","0.76811","0.7681" +"GO:0071322","cellular response to carbohydrate stimul...",4,1,1.05,1696,"0.70624","0.76811","0.7681" +"GO:0071326","cellular response to monosaccharide stim...",4,1,1.05,1697,"0.70624","0.76811","0.7681" +"GO:0071331","cellular response to hexose stimulus",4,1,1.05,1698,"0.70624","0.76811","0.7681" +"GO:0071333","cellular response to glucose stimulus",4,1,1.05,1699,"0.70624","0.76811","0.7681" +"GO:0042462","eye photoreceptor cell development",10,3,2.64,933,"0.51518","0.76874","0.7687" +"GO:0051093","negative regulation of developmental pro...",34,7,8.96,2055,"0.83236","0.76926","0.7693" +"GO:0070988","demethylation",13,3,3.43,1754,"0.70769","0.77050","0.7705" +"GO:0052548","regulation of endopeptidase activity",11,3,2.9,1072,"0.58661","0.77091","0.7709" +"GO:0008152","metabolic process",1983,540,522.82,87,"0.05440","0.01002","0.7710" +"GO:0015893","drug transport",10,2,2.64,1972,"0.78585","0.77129","0.7713" +"GO:0030261","chromosome condensation",5,2,1.32,723,"0.39599","0.77145","0.7714" +"GO:0045747","positive regulation of Notch signaling p...",7,2,1.85,1125,"0.58869","0.77247","0.7725" +"GO:0002244","hematopoietic progenitor cell differenti...",5,0,1.32,2644,"1.00000","0.77324","0.7732" +"GO:0061061","muscle structure development",44,11,11.6,1421,"0.63905","0.77344","0.7734" +"GO:0040034","regulation of development, heterochronic",4,0,1.05,2645,"1.00000","0.77455","0.7746" +"GO:0009411","response to UV",6,2,1.58,898,"0.49828","0.77471","0.7747" +"GO:0060416","response to growth hormone",3,0,0.79,2646,"1.00000","0.77472","0.7747" +"GO:0045597","positive regulation of cell differentiat...",30,4,7.91,2428,"0.97446","0.77516","0.7752" +"GO:0003407","neural retina development",12,3,3.16,1460,"0.65089","0.77557","0.7756" +"GO:0001573","ganglioside metabolic process",3,1,0.79,1352,"0.60090","0.77564","0.7756" +"GO:0006687","glycosphingolipid metabolic process",3,1,0.79,1353,"0.60090","0.77564","0.7756" +"GO:0006689","ganglioside catabolic process",3,1,0.79,1354,"0.60090","0.77564","0.7756" +"GO:0019377","glycolipid catabolic process",3,1,0.79,1355,"0.60090","0.77564","0.7756" +"GO:0046479","glycosphingolipid catabolic process",3,1,0.79,1356,"0.60090","0.77564","0.7756" +"GO:0046514","ceramide catabolic process",3,1,0.79,1357,"0.60090","0.77564","0.7756" +"GO:0009064","glutamine family amino acid metabolic pr...",6,2,1.58,899,"0.49828","0.77586","0.7759" +"GO:0021575","hindbrain morphogenesis",5,0,1.32,2647,"1.00000","0.77593","0.7759" +"GO:0021587","cerebellum morphogenesis",5,0,1.32,2648,"1.00000","0.77593","0.7759" +"GO:0030433","ubiquitin-dependent ERAD pathway",20,4,5.27,2030,"0.81463","0.77665","0.7767" +"GO:0033993","response to lipid",53,12,13.97,1851,"0.77896","0.77672","0.7767" +"GO:0006950","response to stress",294,107,77.51,13,"3.9e-05","6.2e-05","0.7768" +"GO:0060562","epithelial tube morphogenesis",25,7,6.59,913,"0.50216","0.77806","0.7781" +"GO:0045165","cell fate commitment",15,3,3.95,2010,"0.79955","0.77837","0.7784" +"GO:0006778","porphyrin-containing compound metabolic ...",9,2,2.37,1800,"0.73172","0.77919","0.7792" +"GO:0033013","tetrapyrrole metabolic process",9,2,2.37,1801,"0.73172","0.77919","0.7792" +"GO:0065008","regulation of biological quality",204,47,53.79,2222,"0.88656","0.78021","0.7802" +"GO:0008283","cell proliferation",71,17,18.72,1777,"0.72308","0.78022","0.7802" +"GO:0006348","chromatin silencing at telomere",5,1,1.32,1918,"0.78380","0.78039","0.7804" +"GO:0006378","mRNA polyadenylation",6,1,1.58,2096,"0.84091","0.78042","0.7804" +"GO:0008589","regulation of smoothened signaling pathw...",4,1,1.05,1700,"0.70624","0.78213","0.7821" +"GO:0010646","regulation of cell communication",149,36,39.28,1842,"0.76324","0.78268","0.7827" +"GO:0000132","establishment of mitotic spindle orienta...",3,1,0.79,1358,"0.60090","0.78368","0.7837" +"GO:0051294","establishment of spindle orientation",3,1,0.79,1359,"0.60090","0.78368","0.7837" +"GO:0030032","lamellipodium assembly",3,0,0.79,2649,"1.00000","0.78368","0.7837" +"GO:0030038","contractile actin filament bundle assemb...",3,0,0.79,2650,"1.00000","0.78368","0.7837" +"GO:0033962","cytoplasmic mRNA processing body assembl...",3,0,0.79,2651,"1.00000","0.78368","0.7837" +"GO:0043149","stress fiber assembly",3,0,0.79,2652,"1.00000","0.78368","0.7837" +"GO:0045667","regulation of osteoblast differentiation",3,0,0.79,2653,"1.00000","0.78368","0.7837" +"GO:0097581","lamellipodium organization",3,0,0.79,2654,"1.00000","0.78368","0.7837" +"GO:0046128","purine ribonucleoside metabolic process",7,1,1.85,2202,"0.88294","0.78408","0.7841" +"GO:0006875","cellular metal ion homeostasis",18,3,4.75,2226,"0.89117","0.78508","0.7851" +"GO:0035266","meristem growth",4,1,1.05,1701,"0.70624","0.78510","0.7851" +"GO:0040039","inductive cell migration",3,1,0.79,1360,"0.60090","0.78551","0.7855" +"GO:0016477","cell migration",34,6,8.96,2301,"0.91782","0.78565","0.7856" +"GO:0050776","regulation of immune response",44,13,11.6,616,"0.36935","0.05262","0.7863" +"GO:0061448","connective tissue development",8,1,2.11,2273,"0.91388","0.78666","0.7867" +"GO:0001889","liver development",4,1,1.05,1702,"0.70624","0.78845","0.7885" +"GO:0061008","hepaticobiliary system development",4,1,1.05,1703,"0.70624","0.78845","0.7885" +"GO:0072330","monocarboxylic acid biosynthetic process",14,3,3.69,1837,"0.75711","0.78934","0.7893" +"GO:0048592","eye morphogenesis",28,7,7.38,1414,"0.63675","0.79048","0.7905" +"GO:0044267","cellular protein metabolic process",724,170,190.88,2449,"0.98270","0.62264","0.7910" +"GO:0007219","Notch signaling pathway",14,4,3.69,953,"0.52650","0.79155","0.7916" +"GO:0060070","canonical Wnt signaling pathway",14,2,3.69,2291,"0.91770","0.79155","0.7916" +"GO:0015918","sterol transport",5,0,1.32,2655,"1.00000","0.79187","0.7919" +"GO:0048513","animal organ development",185,51,48.78,628,"0.37886","0.79199","0.7920" +"GO:0019915","lipid storage",6,2,1.58,900,"0.49828","0.79203","0.7920" +"GO:0031098","stress-activated protein kinase signalin...",10,3,2.64,934,"0.51518","0.79265","0.7926" +"GO:0120034","positive regulation of plasma membrane b...",5,1,1.32,1919,"0.78380","0.79275","0.7927" +"GO:0048468","cell development",122,31,32.17,1410,"0.63174","0.79319","0.7932" +"GO:0043618","regulation of transcription from RNA pol...",13,2,3.43,2240,"0.89476","0.79462","0.7946" +"GO:0043620","regulation of DNA-templated transcriptio...",13,2,3.43,2241,"0.89476","0.79462","0.7946" +"GO:0045184","establishment of protein localization",164,35,43.24,2368,"0.94732","0.79545","0.7955" +"GO:0051270","regulation of cellular component movemen...",26,4,6.85,2364,"0.94087","0.79596","0.7960" +"GO:0030198","extracellular matrix organization",15,2,3.95,2334,"0.93587","0.79722","0.7972" +"GO:0043062","extracellular structure organization",15,2,3.95,2335,"0.93587","0.79722","0.7972" +"GO:0009725","response to hormone",62,14,16.35,1984,"0.79466","0.79797","0.7980" +"GO:0009966","regulation of signal transduction",138,35,36.38,1427,"0.64096","0.79961","0.7996" +"GO:0055080","cation homeostasis",24,5,6.33,1995,"0.79936","0.80031","0.8003" +"GO:0098771","inorganic ion homeostasis",24,5,6.33,1996,"0.79936","0.80031","0.8003" +"GO:0034220","ion transmembrane transport",57,14,15.03,1527,"0.67194","0.80055","0.8005" +"GO:0033014","tetrapyrrole biosynthetic process",8,2,2.11,1508,"0.66636","0.80116","0.8012" +"GO:0071840","cellular component organization or bioge...",586,162,154.5,374,"0.22923","0.18752","0.8015" +"GO:0001709","cell fate determination",6,0,1.58,2656,"1.00000","0.80155","0.8016" +"GO:0006766","vitamin metabolic process",11,3,2.9,1073,"0.58661","0.80338","0.8034" +"GO:0042220","response to cocaine",3,1,0.79,1361,"0.60090","0.80374","0.8037" +"GO:0001942","hair follicle development",4,0,1.05,2657,"1.00000","0.80382","0.8038" +"GO:0022404","molting cycle process",4,0,1.05,2658,"1.00000","0.80382","0.8038" +"GO:0022405","hair cycle process",4,0,1.05,2659,"1.00000","0.80382","0.8038" +"GO:0098773","skin epidermis development",4,0,1.05,2660,"1.00000","0.80382","0.8038" +"GO:0007166","cell surface receptor signaling pathway",106,29,27.95,780,"0.44420","0.80411","0.8041" +"GO:0044238","primary metabolic process",1737,481,457.96,50,"0.02176","0.00025","0.8044" +"GO:1901701","cellular response to oxygen-containing c...",42,9,11.07,2036,"0.81685","0.80442","0.8044" +"GO:0048736","appendage development",13,1,3.43,2445,"0.98148","0.80494","0.8049" +"GO:1901698","response to nitrogen compound",56,12,14.76,2129,"0.84157","0.80556","0.8056" +"GO:0006488","dolichol-linked oligosaccharide biosynth...",5,2,1.32,724,"0.39599","0.80574","0.8057" +"GO:0030010","establishment of cell polarity",9,1,2.37,2344,"0.93665","0.80619","0.8062" +"GO:0048568","embryonic organ development",38,9,10.02,1566,"0.70614","0.80635","0.8063" +"GO:0007162","negative regulation of cell adhesion",5,1,1.32,1920,"0.78380","0.80659","0.8066" +"GO:0031175","neuron projection development",46,9,12.13,2230,"0.89264","0.80673","0.8067" +"GO:0015696","ammonium transport",4,1,1.05,1704,"0.70624","0.80765","0.8077" +"GO:0034103","regulation of tissue remodeling",4,1,1.05,1705,"0.70624","0.80765","0.8077" +"GO:0007156","homophilic cell adhesion via plasma memb...",6,2,1.58,901,"0.49828","0.80845","0.8084" +"GO:0000902","cell morphogenesis",49,9,12.92,2323,"0.93060","0.80866","0.8087" +"GO:0008584","male gonad development",7,1,1.85,2203,"0.88294","0.80878","0.8088" +"GO:0046546","development of primary male sexual chara...",7,1,1.85,2204,"0.88294","0.80878","0.8088" +"GO:0043588","skin development",8,0,2.11,2661,"1.00000","0.80971","0.8097" +"GO:0019637","organophosphate metabolic process",112,29,29.53,1004,"0.58315","0.80978","0.8098" +"GO:0002026","regulation of the force of heart contrac...",3,1,0.79,1362,"0.60090","0.80993","0.8099" +"GO:0033240","positive regulation of cellular amine me...",3,1,0.79,1363,"0.60090","0.80993","0.8099" +"GO:0021766","hippocampus development",3,0,0.79,2662,"1.00000","0.80993","0.8099" +"GO:0032350","regulation of hormone metabolic process",3,0,0.79,2663,"1.00000","0.80993","0.8099" +"GO:0042755","eating behavior",3,0,0.79,2664,"1.00000","0.80993","0.8099" +"GO:0051384","response to glucocorticoid",3,0,0.79,2665,"1.00000","0.80993","0.8099" +"GO:0015807","L-amino acid transport",6,1,1.58,2097,"0.84091","0.81016","0.8102" +"GO:1902475","L-alpha-amino acid transmembrane transpo...",6,1,1.58,2098,"0.84091","0.81016","0.8102" +"GO:0045022","early endosome to late endosome transpor...",3,0,0.79,2666,"1.00000","0.81037","0.8104" +"GO:0098927","vesicle-mediated transport between endos...",3,0,0.79,2667,"1.00000","0.81037","0.8104" +"GO:0006955","immune response",58,13,15.29,1990,"0.79784","0.36828","0.8116" +"GO:0019722","calcium-mediated signaling",5,2,1.32,725,"0.39599","0.81256","0.8126" +"GO:0007411","axon guidance",18,3,4.75,2227,"0.89117","0.81308","0.8131" +"GO:0097485","neuron projection guidance",18,3,4.75,2228,"0.89117","0.81308","0.8131" +"GO:0090630","activation of GTPase activity",4,1,1.05,1706,"0.70624","0.81317","0.8132" +"GO:1905952","regulation of lipid localization",4,0,1.05,2668,"1.00000","0.81412","0.8141" +"GO:0008406","gonad development",15,3,3.95,2011,"0.79955","0.81506","0.8151" +"GO:0000463","maturation of LSU-rRNA from tricistronic...",5,2,1.32,726,"0.39599","0.81509","0.8151" +"GO:0000470","maturation of LSU-rRNA",5,2,1.32,727,"0.39599","0.81509","0.8151" +"GO:0017144","drug metabolic process",66,16,17.4,1560,"0.69905","0.81551","0.8155" +"GO:0018210","peptidyl-threonine modification",6,1,1.58,2099,"0.84091","0.81573","0.8157" +"GO:0016485","protein processing",14,2,3.69,2292,"0.91770","0.81604","0.8160" +"GO:0042306","regulation of protein import into nucleu...",3,0,0.79,2669,"1.00000","0.81648","0.8165" +"GO:1904589","regulation of protein import",3,0,0.79,2670,"1.00000","0.81648","0.8165" +"GO:0019362","pyridine nucleotide metabolic process",8,2,2.11,1509,"0.66636","0.81654","0.8165" +"GO:0046496","nicotinamide nucleotide metabolic proces...",8,2,2.11,1510,"0.66636","0.81654","0.8165" +"GO:0051246","regulation of protein metabolic process",160,41,42.18,1409,"0.61773","0.81690","0.8169" +"GO:1901800","positive regulation of proteasomal prote...",12,3,3.16,1461,"0.65089","0.81779","0.8178" +"GO:1903052","positive regulation of proteolysis invol...",12,3,3.16,1462,"0.65089","0.81779","0.8178" +"GO:1903364","positive regulation of cellular protein ...",12,3,3.16,1463,"0.65089","0.81779","0.8178" +"GO:0062014","negative regulation of small molecule me...",4,1,1.05,1707,"0.70624","0.81957","0.8196" +"GO:0033522","histone H2A ubiquitination",4,0,1.05,2671,"1.00000","0.81957","0.8196" +"GO:0019058","viral life cycle",23,4,6.06,2233,"0.89317","0.81966","0.8197" +"GO:0033673","negative regulation of kinase activity",7,1,1.85,2205,"0.88294","0.81978","0.8198" +"GO:0071345","cellular response to cytokine stimulus",28,7,7.38,1415,"0.63675","0.82003","0.8200" +"GO:0030182","neuron differentiation",77,17,20.3,2069,"0.84074","0.82136","0.8214" +"GO:0006487","protein N-linked glycosylation",18,4,4.75,1812,"0.73952","0.82196","0.8220" +"GO:2001238","positive regulation of extrinsic apoptot...",3,1,0.79,1364,"0.60090","0.82253","0.8225" +"GO:0044283","small molecule biosynthetic process",51,11,13.45,2043,"0.82710","0.82271","0.8227" +"GO:0032527","protein exit from endoplasmic reticulum",7,2,1.85,1126,"0.58869","0.82275","0.8227" +"GO:0090317","negative regulation of intracellular pro...",7,2,1.85,1127,"0.58869","0.82275","0.8227" +"GO:1901568","fatty acid derivative metabolic process",7,0,1.85,2672,"1.00000","0.82275","0.8227" +"GO:0032872","regulation of stress-activated MAPK casc...",6,1,1.58,2100,"0.84091","0.82291","0.8229" +"GO:0070302","regulation of stress-activated protein k...",6,1,1.58,2101,"0.84091","0.82291","0.8229" +"GO:0016266","O-glycan processing",8,2,2.11,1511,"0.66636","0.82316","0.8232" +"GO:0050795","regulation of behavior",7,2,1.85,1128,"0.58869","0.82373","0.8237" +"GO:1902533","positive regulation of intracellular sig...",30,6,7.91,2131,"0.84261","0.82441","0.8244" +"GO:0090304","nucleic acid metabolic process",809,266,213.3,5,"5.0e-07","4.3e-12","0.8245" +"GO:0071396","cellular response to lipid",29,7,7.65,1534,"0.67666","0.82498","0.8250" +"GO:0071407","cellular response to organic cyclic comp...",29,7,7.65,1535,"0.67666","0.82498","0.8250" +"GO:0032092","positive regulation of protein binding",8,1,2.11,2274,"0.91388","0.82578","0.8258" +"GO:0043648","dicarboxylic acid metabolic process",6,1,1.58,2102,"0.84091","0.82579","0.8258" +"GO:0033554","cellular response to stress",211,83,55.63,12,"1.2e-05","2.0e-05","0.8264" +"GO:0050848","regulation of calcium-mediated signaling",3,1,0.79,1365,"0.60090","0.82638","0.8264" +"GO:0006023","aminoglycan biosynthetic process",4,0,1.05,2673,"1.00000","0.82719","0.8272" +"GO:0006024","glycosaminoglycan biosynthetic process",4,0,1.05,2674,"1.00000","0.82719","0.8272" +"GO:0030203","glycosaminoglycan metabolic process",4,0,1.05,2675,"1.00000","0.82719","0.8272" +"GO:0002097","tRNA wobble base modification",8,2,2.11,1512,"0.66636","0.82735","0.8273" +"GO:0002098","tRNA wobble uridine modification",8,2,2.11,1513,"0.66636","0.82735","0.8273" +"GO:0010950","positive regulation of endopeptidase act...",3,1,0.79,1366,"0.60090","0.82745","0.8274" +"GO:0046165","alcohol biosynthetic process",4,1,1.05,1708,"0.70624","0.82792","0.8279" +"GO:0032879","regulation of localization",123,27,32.43,2235,"0.89448","0.82822","0.8282" +"GO:0072350","tricarboxylic acid metabolic process",5,1,1.32,1921,"0.78380","0.82843","0.8284" +"GO:0042176","regulation of protein catabolic process",29,7,7.65,1536,"0.67666","0.82849","0.8285" +"GO:0090596","sensory organ morphogenesis",30,7,7.91,1765,"0.71370","0.82949","0.8295" +"GO:0062012","regulation of small molecule metabolic p...",13,3,3.43,1755,"0.70769","0.83038","0.8304" +"GO:0010243","response to organonitrogen compound",53,12,13.97,1852,"0.77896","0.83040","0.8304" +"GO:0051345","positive regulation of hydrolase activit...",32,7,8.44,1847,"0.77888","0.83061","0.8306" +"GO:0048864","stem cell development",5,1,1.32,1922,"0.78380","0.83089","0.8309" +"GO:0009101","glycoprotein biosynthetic process",47,9,12.39,2255,"0.90687","0.83094","0.8309" +"GO:0045168","cell-cell signaling involved in cell fat...",5,1,1.32,1923,"0.78380","0.83171","0.8317" +"GO:0046331","lateral inhibition",5,1,1.32,1924,"0.78380","0.83171","0.8317" +"GO:0046834","lipid phosphorylation",3,0,0.79,2676,"1.00000","0.83190","0.8319" +"GO:0046854","phosphatidylinositol phosphorylation",3,0,0.79,2677,"1.00000","0.83190","0.8319" +"GO:0019932","second-messenger-mediated signaling",11,3,2.9,1074,"0.58661","0.83238","0.8324" +"GO:0035107","appendage morphogenesis",11,1,2.9,2408,"0.96574","0.83238","0.8324" +"GO:0050768","negative regulation of neurogenesis",11,1,2.9,2409,"0.96574","0.83238","0.8324" +"GO:0070723","response to cholesterol",3,0,0.79,2678,"1.00000","0.83253","0.8325" +"GO:0071397","cellular response to cholesterol",3,0,0.79,2679,"1.00000","0.83253","0.8325" +"GO:0060563","neuroepithelial cell differentiation",4,0,1.05,2680,"1.00000","0.83287","0.8329" +"GO:0030334","regulation of cell migration",20,2,5.27,2448,"0.98237","0.83292","0.8329" +"GO:0051124","synaptic growth at neuromuscular junctio...",6,2,1.58,902,"0.49828","0.83403","0.8340" +"GO:0007098","centrosome cycle",5,1,1.32,1925,"0.78380","0.83416","0.8342" +"GO:0031023","microtubule organizing center organizati...",5,1,1.32,1926,"0.78380","0.83416","0.8342" +"GO:0051094","positive regulation of developmental pro...",42,8,11.07,2252,"0.90001","0.83531","0.8353" +"GO:0009066","aspartate family amino acid metabolic pr...",4,0,1.05,2681,"1.00000","0.83704","0.8370" +"GO:0007635","chemosensory behavior",3,0,0.79,2682,"1.00000","0.83735","0.8374" +"GO:0046661","male sex differentiation",8,1,2.11,2275,"0.91388","0.83755","0.8375" +"GO:0048580","regulation of post-embryonic development",3,1,0.79,1367,"0.60090","0.83922","0.8392" +"GO:0090351","seedling development",3,0,0.79,2683,"1.00000","0.83922","0.8392" +"GO:0051240","positive regulation of multicellular org...",44,8,11.6,2306,"0.92625","0.84131","0.8413" +"GO:0040012","regulation of locomotion",29,4,7.65,2417,"0.96835","0.84155","0.8416" +"GO:0090069","regulation of ribosome biogenesis",3,0,0.79,2684,"1.00000","0.84171","0.8417" +"GO:0010677","negative regulation of cellular carbohyd...",3,1,0.79,1368,"0.60090","0.84212","0.8421" +"GO:0045912","negative regulation of carbohydrate meta...",3,1,0.79,1369,"0.60090","0.84212","0.8421" +"GO:0051881","regulation of mitochondrial membrane pot...",3,1,0.79,1370,"0.60090","0.84212","0.8421" +"GO:1901617","organic hydroxy compound biosynthetic pr...",5,1,1.32,1927,"0.78380","0.84222","0.8422" +"GO:0007566","embryo implantation",3,0,0.79,2685,"1.00000","0.84377","0.8438" +"GO:0030587","sorocarp development",3,0,0.79,2686,"1.00000","0.84377","0.8438" +"GO:0044764","multi-organism cellular process",3,0,0.79,2687,"1.00000","0.84377","0.8438" +"GO:0051703","intraspecies interaction between organis...",3,0,0.79,2688,"1.00000","0.84377","0.8438" +"GO:0090702","non-reproductive fruiting body developme...",3,0,0.79,2689,"1.00000","0.84377","0.8438" +"GO:0099120","socially cooperative development",3,0,0.79,2690,"1.00000","0.84377","0.8438" +"GO:0009620","response to fungus",3,0,0.79,2691,"1.00000","0.84438","0.8444" +"GO:0050832","defense response to fungus",3,0,0.79,2692,"1.00000","0.84438","0.8444" +"GO:0006415","translational termination",9,1,2.37,2345,"0.93665","0.84490","0.8449" +"GO:0010927","cellular component assembly involved in ...",8,2,2.11,1514,"0.66636","0.84565","0.8456" +"GO:0007009","plasma membrane organization",7,2,1.85,1129,"0.58869","0.84583","0.8458" +"GO:0016236","macroautophagy",18,2,4.75,2422,"0.97022","0.84584","0.8458" +"GO:0001933","negative regulation of protein phosphory...",16,4,4.22,1433,"0.64337","0.84617","0.8462" +"GO:0060042","retina morphogenesis in camera-type eye",12,2,3.16,2163,"0.86598","0.84617","0.8462" +"GO:0042063","gliogenesis",10,1,2.64,2379,"0.95341","0.84643","0.8464" +"GO:0045931","positive regulation of mitotic cell cycl...",10,2,2.64,1973,"0.78585","0.84643","0.8464" +"GO:0042221","response to chemical",213,55,56.16,1400,"0.60188","0.77885","0.8469" +"GO:0035108","limb morphogenesis",5,1,1.32,1928,"0.78380","0.84699","0.8470" +"GO:0009072","aromatic amino acid family metabolic pro...",9,1,2.37,2346,"0.93665","0.84715","0.8471" +"GO:0006855","drug transmembrane transport",7,1,1.85,2206,"0.88294","0.84770","0.8477" +"GO:0000184","nuclear-transcribed mRNA catabolic proce...",5,0,1.32,2693,"1.00000","0.84856","0.8486" +"GO:0009165","nucleotide biosynthetic process",30,6,7.91,2132,"0.84261","0.84959","0.8496" +"GO:1901293","nucleoside phosphate biosynthetic proces...",30,6,7.91,2133,"0.84261","0.84959","0.8496" +"GO:0031330","negative regulation of cellular cataboli...",12,3,3.16,1464,"0.65089","0.84974","0.8497" +"GO:0032330","regulation of chondrocyte differentiatio...",3,0,0.79,2694,"1.00000","0.85090","0.8509" +"GO:0032526","response to retinoic acid",3,0,0.79,2695,"1.00000","0.85090","0.8509" +"GO:0035518","histone H2A monoubiquitination",3,0,0.79,2696,"1.00000","0.85090","0.8509" +"GO:0061035","regulation of cartilage development",3,0,0.79,2697,"1.00000","0.85090","0.8509" +"GO:0001894","tissue homeostasis",12,4,3.16,658,"0.39376","0.85116","0.8512" +"GO:0030154","cell differentiation",183,47,48.25,1407,"0.61508","0.85157","0.8516" +"GO:0036294","cellular response to decreased oxygen le...",8,1,2.11,2276,"0.91388","0.85261","0.8526" +"GO:0071453","cellular response to oxygen levels",8,1,2.11,2277,"0.91388","0.85261","0.8526" +"GO:0071456","cellular response to hypoxia",8,1,2.11,2278,"0.91388","0.85261","0.8526" +"GO:0051656","establishment of organelle localization",26,7,6.85,991,"0.54916","0.85440","0.8544" +"GO:0042692","muscle cell differentiation",14,3,3.69,1838,"0.75711","0.85473","0.8547" +"GO:0043687","post-translational protein modification",5,1,1.32,1929,"0.78380","0.85481","0.8548" +"GO:0030282","bone mineralization",3,0,0.79,2698,"1.00000","0.85512","0.8551" +"GO:0030500","regulation of bone mineralization",3,0,0.79,2699,"1.00000","0.85512","0.8551" +"GO:0033036","macromolecule localization",245,58,64.59,2151,"0.85980","0.85531","0.8553" +"GO:0045137","development of primary sexual characteri...",16,3,4.22,2065,"0.83559","0.85547","0.8555" +"GO:0007478","leg disc morphogenesis",3,0,0.79,2700,"1.00000","0.85711","0.8571" +"GO:0007480","imaginal disc-derived leg morphogenesis",3,0,0.79,2701,"1.00000","0.85711","0.8571" +"GO:0032368","regulation of lipid transport",3,0,0.79,2702,"1.00000","0.85711","0.8571" +"GO:0045927","positive regulation of growth",8,2,2.11,1515,"0.66636","0.85727","0.8573" +"GO:0001704","formation of primary germ layer",6,0,1.58,2703,"1.00000","0.85802","0.8580" +"GO:0120033","negative regulation of plasma membrane b...",3,0,0.79,2704,"1.00000","0.85831","0.8583" +"GO:0021692","cerebellar Purkinje cell layer morphogen...",3,0,0.79,2705,"1.00000","0.85890","0.8589" +"GO:0021696","cerebellar cortex morphogenesis",3,0,0.79,2706,"1.00000","0.85890","0.8589" +"GO:0071704","organic substance metabolic process",1811,501,477.48,43,"0.01792","0.00091","0.8590" +"GO:0031935","regulation of chromatin silencing",5,1,1.32,1930,"0.78380","0.85944","0.8594" +"GO:0031936","negative regulation of chromatin silenci...",5,1,1.32,1931,"0.78380","0.85944","0.8594" +"GO:0060969","negative regulation of gene silencing",5,1,1.32,1932,"0.78380","0.85944","0.8594" +"GO:0035556","intracellular signal transduction",134,30,35.33,2184,"0.88058","0.85963","0.8596" +"GO:0048562","embryonic organ morphogenesis",15,3,3.95,2012,"0.79955","0.86069","0.8607" +"GO:0046486","glycerolipid metabolic process",30,5,7.91,2317,"0.92860","0.86070","0.8607" +"GO:0001667","ameboidal-type cell migration",9,1,2.37,2347,"0.93665","0.86071","0.8607" +"GO:0046890","regulation of lipid biosynthetic process",5,1,1.32,1933,"0.78380","0.86096","0.8610" +"GO:0050680","negative regulation of epithelial cell p...",6,1,1.58,2103,"0.84091","0.86235","0.8623" +"GO:0050806","positive regulation of synaptic transmis...",8,1,2.11,2279,"0.91388","0.86235","0.8624" +"GO:0043901","negative regulation of multi-organism pr...",4,1,1.05,1709,"0.70624","0.86247","0.8625" +"GO:0097352","autophagosome maturation",4,1,1.05,1710,"0.70624","0.86247","0.8625" +"GO:0007293","germarium-derived egg chamber formation",4,0,1.05,2707,"1.00000","0.86247","0.8625" +"GO:0051641","cellular localization",257,53,67.76,2465,"0.98966","0.86248","0.8625" +"GO:0048869","cellular developmental process",187,48,49.3,1408,"0.61758","0.86260","0.8626" +"GO:2000145","regulation of cell motility",23,3,6.06,2401,"0.96402","0.86273","0.8627" +"GO:0007398","ectoderm development",4,1,1.05,1711,"0.70624","0.86298","0.8630" +"GO:0010668","ectodermal cell differentiation",4,1,1.05,1712,"0.70624","0.86298","0.8630" +"GO:0007220","Notch receptor processing",4,0,1.05,2708,"1.00000","0.86298","0.8630" +"GO:0060795","cell fate commitment involved in formati...",4,0,1.05,2709,"1.00000","0.86298","0.8630" +"GO:0051248","negative regulation of protein metabolic...",56,12,14.76,2130,"0.84157","0.86304","0.8630" +"GO:0051640","organelle localization",36,9,9.49,1419,"0.63718","0.86337","0.8634" +"GO:0006520","cellular amino acid metabolic process",62,14,16.35,1985,"0.79466","0.86399","0.8640" +"GO:0002682","regulation of immune system process",57,15,15.03,994,"0.55470","0.10862","0.8642" +"GO:0015780","nucleotide-sugar transmembrane transport",3,0,0.79,2710,"1.00000","0.86421","0.8642" +"GO:0090481","pyrimidine nucleotide-sugar transmembran...",3,0,0.79,2711,"1.00000","0.86421","0.8642" +"GO:0000122","negative regulation of transcription by ...",34,4,8.96,2463,"0.98947","0.86481","0.8648" +"GO:0051298","centrosome duplication",4,1,1.05,1713,"0.70624","0.86501","0.8650" +"GO:0022900","electron transport chain",7,2,1.85,1130,"0.58869","0.86506","0.8651" +"GO:0007173","epidermal growth factor receptor signali...",6,1,1.58,2104,"0.84091","0.86539","0.8654" +"GO:0038127","ERBB signaling pathway",6,1,1.58,2105,"0.84091","0.86539","0.8654" +"GO:0002793","positive regulation of peptide secretion",6,0,1.58,2712,"1.00000","0.86635","0.8664" +"GO:0042440","pigment metabolic process",6,0,1.58,2713,"1.00000","0.86635","0.8664" +"GO:0048699","generation of neurons",84,18,22.15,2183,"0.88037","0.86655","0.8665" +"GO:0006873","cellular ion homeostasis",20,4,5.27,2031,"0.81463","0.86709","0.8671" +"GO:0030003","cellular cation homeostasis",20,4,5.27,2032,"0.81463","0.86709","0.8671" +"GO:0046475","glycerophospholipid catabolic process",3,1,0.79,1371,"0.60090","0.86886","0.8689" +"GO:0071985","multivesicular body sorting pathway",4,0,1.05,2714,"1.00000","0.86903","0.8690" +"GO:0042060","wound healing",15,2,3.95,2336,"0.93587","0.86941","0.8694" +"GO:0031060","regulation of histone methylation",4,1,1.05,1714,"0.70624","0.86953","0.8695" +"GO:0031061","negative regulation of histone methylati...",4,1,1.05,1715,"0.70624","0.86953","0.8695" +"GO:1990542","mitochondrial transmembrane transport",11,2,2.9,2052,"0.83013","0.87011","0.8701" +"GO:0035051","cardiocyte differentiation",5,1,1.32,1934,"0.78380","0.87074","0.8707" +"GO:0034976","response to endoplasmic reticulum stress",35,9,9.23,1157,"0.59960","0.87108","0.8711" +"GO:0019751","polyol metabolic process",4,0,1.05,2715,"1.00000","0.87169","0.8717" +"GO:0035150","regulation of tube size",6,1,1.58,2106,"0.84091","0.87220","0.8722" +"GO:0034097","response to cytokine",30,7,7.91,1766,"0.71370","0.87301","0.8730" +"GO:0009953","dorsal/ventral pattern formation",8,0,2.11,2716,"1.00000","0.87336","0.8734" +"GO:0042073","intraciliary transport",4,0,1.05,2717,"1.00000","0.87367","0.8737" +"GO:0006739","NADP metabolic process",4,1,1.05,1716,"0.70624","0.87416","0.8742" +"GO:0008631","intrinsic apoptotic signaling pathway in...",3,1,0.79,1372,"0.60090","0.87477","0.8748" +"GO:0048015","phosphatidylinositol-mediated signaling",3,1,0.79,1373,"0.60090","0.87477","0.8748" +"GO:0048017","inositol lipid-mediated signaling",3,1,0.79,1374,"0.60090","0.87477","0.8748" +"GO:0070050","neuron cellular homeostasis",3,1,0.79,1375,"0.60090","0.87477","0.8748" +"GO:0009067","aspartate family amino acid biosynthetic...",3,0,0.79,2718,"1.00000","0.87515","0.8751" +"GO:0007498","mesoderm development",8,1,2.11,2280,"0.91388","0.87521","0.8752" +"GO:0090130","tissue migration",8,0,2.11,2719,"1.00000","0.87521","0.8752" +"GO:0006482","protein demethylation",12,3,3.16,1465,"0.65089","0.87552","0.8755" +"GO:0008214","protein dealkylation",12,3,3.16,1466,"0.65089","0.87552","0.8755" +"GO:0034968","histone lysine methylation",11,3,2.9,1075,"0.58661","0.87705","0.8771" +"GO:0001708","cell fate specification",4,0,1.05,2720,"1.00000","0.87726","0.8773" +"GO:0045861","negative regulation of proteolysis",21,5,5.54,1545,"0.68574","0.87747","0.8775" +"GO:0006486","protein glycosylation",44,9,11.6,2143,"0.85876","0.87764","0.8776" +"GO:0043413","macromolecule glycosylation",44,9,11.6,2144,"0.85876","0.87764","0.8776" +"GO:0070085","glycosylation",44,9,11.6,2145,"0.85876","0.87764","0.8776" +"GO:0048878","chemical homeostasis",34,8,8.96,1759,"0.70936","0.87827","0.8783" +"GO:0007259","JAK-STAT cascade",4,0,1.05,2721,"1.00000","0.87840","0.8784" +"GO:0097696","STAT cascade",4,0,1.05,2722,"1.00000","0.87840","0.8784" +"GO:1901137","carbohydrate derivative biosynthetic pro...",81,20,21.36,1537,"0.67713","0.87845","0.8785" +"GO:0002831","regulation of response to biotic stimulu...",6,0,1.58,2723,"1.00000","0.87847","0.8785" +"GO:0051235","maintenance of location",13,3,3.43,1756,"0.70769","0.87933","0.8793" +"GO:0043043","peptide biosynthetic process",192,24,50.62,2491,"1.00000","0.87944","0.8794" +"GO:0051098","regulation of binding",20,3,5.27,2321,"0.92930","0.87963","0.8796" +"GO:0007131","reciprocal meiotic recombination",3,1,0.79,1376,"0.60090","0.87965","0.8796" +"GO:0035825","homologous recombination",3,1,0.79,1377,"0.60090","0.87965","0.8796" +"GO:0008610","lipid biosynthetic process",52,8,13.71,2439,"0.98068","0.87974","0.8797" +"GO:0019098","reproductive behavior",7,1,1.85,2207,"0.88294","0.88160","0.8816" +"GO:0042326","negative regulation of phosphorylation",21,5,5.54,1546,"0.68574","0.88387","0.8839" +"GO:1902117","positive regulation of organelle assembl...",3,0,0.79,2724,"1.00000","0.88463","0.8846" +"GO:0043414","macromolecule methylation",49,11,12.92,1858,"0.78273","0.88477","0.8848" +"GO:0051650","establishment of vesicle localization",13,4,3.43,802,"0.46157","0.88536","0.8854" +"GO:0051188","cofactor biosynthetic process",26,7,6.85,992,"0.54916","0.88575","0.8858" +"GO:0060429","epithelium development",71,17,18.72,1778,"0.72308","0.88606","0.8861" +"GO:0048871","multicellular organismal homeostasis",13,4,3.43,803,"0.46157","0.88607","0.8861" +"GO:0042594","response to starvation",26,5,6.85,2141,"0.85522","0.88662","0.8866" +"GO:0006672","ceramide metabolic process",4,1,1.05,1717,"0.70624","0.88701","0.8870" +"GO:0044087","regulation of cellular component biogene...",67,14,17.66,2186,"0.88072","0.88724","0.8872" +"GO:0043112","receptor metabolic process",5,0,1.32,2725,"1.00000","0.88735","0.8874" +"GO:0050714","positive regulation of protein secretion",5,0,1.32,2726,"1.00000","0.88735","0.8874" +"GO:0015031","protein transport",151,31,39.81,2404,"0.96422","0.88797","0.8880" +"GO:0015833","peptide transport",151,31,39.81,2405,"0.96422","0.88797","0.8880" +"GO:0042886","amide transport",151,31,39.81,2406,"0.96422","0.88797","0.8880" +"GO:0000165","MAPK cascade",24,3,6.33,2424,"0.97146","0.88824","0.8882" +"GO:0023014","signal transduction by protein phosphory...",24,3,6.33,2425,"0.97146","0.88824","0.8882" +"GO:0006890","retrograde vesicle-mediated transport, G...",7,1,1.85,2208,"0.88294","0.88830","0.8883" +"GO:0006996","organelle organization",390,113,102.82,157,"0.11567","0.31701","0.8887" +"GO:0008643","carbohydrate transport",8,0,2.11,2727,"1.00000","0.88879","0.8888" +"GO:0034613","cellular protein localization",171,34,45.08,2450,"0.98317","0.88915","0.8892" +"GO:0046425","regulation of JAK-STAT cascade",3,0,0.79,2728,"1.00000","0.88935","0.8894" +"GO:1904892","regulation of STAT cascade",3,0,0.79,2729,"1.00000","0.88935","0.8894" +"GO:0010632","regulation of epithelial cell migration",4,0,1.05,2730,"1.00000","0.88983","0.8898" +"GO:0045665","negative regulation of neuron differenti...",7,1,1.85,2209,"0.88294","0.88996","0.8900" +"GO:0001503","ossification",7,0,1.85,2731,"1.00000","0.88996","0.8900" +"GO:0010631","epithelial cell migration",7,0,1.85,2732,"1.00000","0.88996","0.8900" +"GO:0070371","ERK1 and ERK2 cascade",7,0,1.85,2733,"1.00000","0.88996","0.8900" +"GO:0090132","epithelium migration",7,0,1.85,2734,"1.00000","0.88996","0.8900" +"GO:0043279","response to alkaloid",6,2,1.58,903,"0.49828","0.89065","0.8906" +"GO:0009611","response to wounding",22,3,5.8,2389,"0.95478","0.89113","0.8911" +"GO:0009100","glycoprotein metabolic process",52,10,13.71,2267,"0.91334","0.89123","0.8912" +"GO:0071702","organic substance transport",203,44,53.52,2385,"0.95356","0.89232","0.8923" +"GO:0019673","GDP-mannose metabolic process",3,1,0.79,1378,"0.60090","0.89275","0.8927" +"GO:0016043","cellular component organization",532,147,140.26,392,"0.24646","0.21535","0.8940" +"GO:0006412","translation",189,22,49.83,2493,"1.00000","0.89459","0.8946" +"GO:0016197","endosomal transport",18,4,4.75,1813,"0.73952","0.89469","0.8947" +"GO:0017004","cytochrome complex assembly",3,0,0.79,2735,"1.00000","0.89487","0.8949" +"GO:0001705","ectoderm formation",3,0,0.79,2736,"1.00000","0.89540","0.8954" +"GO:0001712","ectodermal cell fate commitment",3,0,0.79,2737,"1.00000","0.89540","0.8954" +"GO:0001713","ectodermal cell fate determination",3,0,0.79,2738,"1.00000","0.89540","0.8954" +"GO:0009074","aromatic amino acid family catabolic pro...",6,0,1.58,2739,"1.00000","0.89542","0.8954" +"GO:0018105","peptidyl-serine phosphorylation",4,0,1.05,2740,"1.00000","0.89552","0.8955" +"GO:0071417","cellular response to organonitrogen comp...",13,3,3.43,1757,"0.70769","0.89588","0.8959" +"GO:0051402","neuron apoptotic process",11,3,2.9,1076,"0.58661","0.89596","0.8960" +"GO:0009737","response to abscisic acid",6,1,1.58,2107,"0.84091","0.89616","0.8962" +"GO:0046483","heterocycle metabolic process",910,292,239.92,8,"1.3e-06","3.5e-10","0.8976" +"GO:0051046","regulation of secretion",14,2,3.69,2293,"0.91770","0.89852","0.8985" +"GO:1903530","regulation of secretion by cell",14,2,3.69,2294,"0.91770","0.89852","0.8985" +"GO:0040017","positive regulation of locomotion",18,3,4.75,2229,"0.89117","0.89885","0.8988" +"GO:0033559","unsaturated fatty acid metabolic process",6,0,1.58,2741,"1.00000","0.89900","0.8990" +"GO:0001947","heart looping",6,2,1.58,904,"0.49828","0.89937","0.8994" +"GO:0003143","embryonic heart tube morphogenesis",6,2,1.58,905,"0.49828","0.89937","0.8994" +"GO:0035050","embryonic heart tube development",6,2,1.58,906,"0.49828","0.89937","0.8994" +"GO:0061371","determination of heart left/right asymme...",6,2,1.58,907,"0.49828","0.89937","0.8994" +"GO:0001501","skeletal system development",16,0,4.22,2742,"1.00000","0.89986","0.8999" +"GO:0032509","endosome transport via multivesicular bo...",3,0,0.79,2743,"1.00000","0.90011","0.9001" +"GO:0045324","late endosome to vacuole transport",3,0,0.79,2744,"1.00000","0.90011","0.9001" +"GO:0046755","viral budding",3,0,0.79,2745,"1.00000","0.90011","0.9001" +"GO:0030004","cellular monovalent inorganic cation hom...",3,1,0.79,1379,"0.60090","0.90028","0.9003" +"GO:0030641","regulation of cellular pH",3,1,0.79,1380,"0.60090","0.90028","0.9003" +"GO:0051453","regulation of intracellular pH",3,1,0.79,1381,"0.60090","0.90028","0.9003" +"GO:0120009","intermembrane lipid transfer",3,1,0.79,1382,"0.60090","0.90028","0.9003" +"GO:0006725","cellular aromatic compound metabolic pro...",911,291,240.19,9,"2.3e-06","9.9e-10","0.9003" +"GO:0007224","smoothened signaling pathway",7,1,1.85,2210,"0.88294","0.90045","0.9004" +"GO:0045785","positive regulation of cell adhesion",7,0,1.85,2746,"1.00000","0.90045","0.9004" +"GO:0016331","morphogenesis of embryonic epithelium",10,2,2.64,1974,"0.78585","0.90078","0.9008" +"GO:0006163","purine nucleotide metabolic process",40,8,10.55,2169,"0.86630","0.90117","0.9012" +"GO:0031101","fin regeneration",6,0,1.58,2747,"1.00000","0.90193","0.9019" +"GO:0048813","dendrite morphogenesis",6,0,1.58,2748,"1.00000","0.90193","0.9019" +"GO:0007389","pattern specification process",34,6,8.96,2302,"0.91782","0.90204","0.9020" +"GO:0070727","cellular macromolecule localization",173,35,45.61,2438,"0.97843","0.90217","0.9022" +"GO:0051962","positive regulation of nervous system de...",16,2,4.22,2369,"0.95020","0.90247","0.9025" +"GO:0048732","gland development",10,2,2.64,1975,"0.78585","0.90313","0.9031" +"GO:0042982","amyloid precursor protein metabolic proc...",6,1,1.58,2108,"0.84091","0.90349","0.9035" +"GO:0042987","amyloid precursor protein catabolic proc...",6,1,1.58,2109,"0.84091","0.90349","0.9035" +"GO:0007528","neuromuscular junction development",7,2,1.85,1131,"0.58869","0.90358","0.9036" +"GO:0016358","dendrite development",10,1,2.64,2380,"0.95341","0.90359","0.9036" +"GO:1905515","non-motile cilium assembly",3,0,0.79,2749,"1.00000","0.90370","0.9037" +"GO:0019674","NAD metabolic process",4,0,1.05,2750,"1.00000","0.90376","0.9038" +"GO:0023061","signal release",24,5,6.33,1997,"0.79936","0.90386","0.9039" +"GO:0046903","secretion",54,8,14.24,2460,"0.98654","0.90418","0.9042" +"GO:1902531","regulation of intracellular signal trans...",78,18,20.56,1952,"0.78572","0.90460","0.9046" +"GO:0019933","cAMP-mediated signaling",6,1,1.58,2110,"0.84091","0.90493","0.9049" +"GO:0019935","cyclic-nucleotide-mediated signaling",6,1,1.58,2111,"0.84091","0.90493","0.9049" +"GO:0048565","digestive tract development",6,1,1.58,2112,"0.84091","0.90493","0.9049" +"GO:0055123","digestive system development",6,1,1.58,2113,"0.84091","0.90493","0.9049" +"GO:0030178","negative regulation of Wnt signaling pat...",6,0,1.58,2751,"1.00000","0.90493","0.9049" +"GO:0043523","regulation of neuron apoptotic process",10,3,2.64,935,"0.51518","0.90499","0.9050" +"GO:0051403","stress-activated MAPK cascade",9,2,2.37,1802,"0.73172","0.90521","0.9052" +"GO:0070076","histone lysine demethylation",9,2,2.37,1803,"0.73172","0.90521","0.9052" +"GO:0006066","alcohol metabolic process",11,1,2.9,2410,"0.96574","0.90559","0.9056" +"GO:0010224","response to UV-B",3,1,0.79,1383,"0.60090","0.90674","0.9067" +"GO:0038093","Fc receptor signaling pathway",3,0,0.79,2752,"1.00000","0.90674","0.9067" +"GO:0046839","phospholipid dephosphorylation",3,0,0.79,2753,"1.00000","0.90674","0.9067" +"GO:0018242","protein O-linked glycosylation via serin...",4,1,1.05,1718,"0.70624","0.90741","0.9074" +"GO:0018243","protein O-linked glycosylation via threo...",4,0,1.05,2754,"1.00000","0.90741","0.9074" +"GO:0048856","anatomical structure development",317,82,83.58,1403,"0.60789","0.90791","0.9079" +"GO:0045732","positive regulation of protein catabolic...",15,3,3.95,2013,"0.79955","0.90845","0.9084" +"GO:0019318","hexose metabolic process",14,3,3.69,1839,"0.75711","0.90845","0.9085" +"GO:0031344","regulation of cell projection organizati...",31,8,8.17,1154,"0.59685","0.91140","0.9114" +"GO:0120035","regulation of plasma membrane bounded ce...",31,8,8.17,1155,"0.59685","0.91140","0.9114" +"GO:0007368","determination of left/right symmetry",8,2,2.11,1516,"0.66636","0.91329","0.9133" +"GO:0009799","specification of symmetry",8,2,2.11,1517,"0.66636","0.91329","0.9133" +"GO:0009855","determination of bilateral symmetry",8,2,2.11,1518,"0.66636","0.91329","0.9133" +"GO:0045886","negative regulation of synaptic growth a...",3,1,0.79,1384,"0.60090","0.91334","0.9133" +"GO:0051964","negative regulation of synapse assembly",3,1,0.79,1385,"0.60090","0.91334","0.9133" +"GO:1904397","negative regulation of neuromuscular jun...",3,1,0.79,1386,"0.60090","0.91334","0.9133" +"GO:1905809","negative regulation of synapse organizat...",3,1,0.79,1387,"0.60090","0.91334","0.9133" +"GO:0031124","mRNA 3'-end processing",8,2,2.11,1519,"0.66636","0.91389","0.9139" +"GO:0030278","regulation of ossification",5,0,1.32,2755,"1.00000","0.91398","0.9140" +"GO:0035148","tube formation",9,1,2.37,2348,"0.93665","0.91410","0.9141" +"GO:0051272","positive regulation of cellular componen...",14,2,3.69,2295,"0.91770","0.91431","0.9143" +"GO:2000147","positive regulation of cell motility",14,2,3.69,2296,"0.91770","0.91431","0.9143" +"GO:0002376","immune system process",90,21,23.73,1857,"0.78177","0.34035","0.9163" +"GO:1902808","positive regulation of cell cycle G1/S p...",3,0,0.79,2756,"1.00000","0.91641","0.9164" +"GO:0042255","ribosome assembly",9,2,2.37,1804,"0.73172","0.91661","0.9166" +"GO:0000054","ribosomal subunit export from nucleus",3,0,0.79,2757,"1.00000","0.91705","0.9170" +"GO:0000055","ribosomal large subunit export from nucl...",3,0,0.79,2758,"1.00000","0.91705","0.9170" +"GO:0033750","ribosome localization",3,0,0.79,2759,"1.00000","0.91705","0.9170" +"GO:0071428","rRNA-containing ribonucleoprotein comple...",3,0,0.79,2760,"1.00000","0.91705","0.9170" +"GO:0035218","leg disc development",4,0,1.05,2761,"1.00000","0.91730","0.9173" +"GO:1905268","negative regulation of chromatin organiz...",11,2,2.9,2053,"0.83013","0.91741","0.9174" +"GO:0006568","tryptophan metabolic process",3,0,0.79,2762,"1.00000","0.91784","0.9178" +"GO:0006569","tryptophan catabolic process",3,0,0.79,2763,"1.00000","0.91784","0.9178" +"GO:0006586","indolalkylamine metabolic process",3,0,0.79,2764,"1.00000","0.91784","0.9178" +"GO:0009310","amine catabolic process",3,0,0.79,2765,"1.00000","0.91784","0.9178" +"GO:0042402","cellular biogenic amine catabolic proces...",3,0,0.79,2766,"1.00000","0.91784","0.9178" +"GO:0042430","indole-containing compound metabolic pro...",3,0,0.79,2767,"1.00000","0.91784","0.9178" +"GO:0042436","indole-containing compound catabolic pro...",3,0,0.79,2768,"1.00000","0.91784","0.9178" +"GO:0046218","indolalkylamine catabolic process",3,0,0.79,2769,"1.00000","0.91784","0.9178" +"GO:0006767","water-soluble vitamin metabolic process",3,1,0.79,1388,"0.60090","0.91816","0.9182" +"GO:0006094","gluconeogenesis",5,1,1.32,1935,"0.78380","0.91832","0.9183" +"GO:0019319","hexose biosynthetic process",5,1,1.32,1936,"0.78380","0.91832","0.9183" +"GO:0046364","monosaccharide biosynthetic process",5,1,1.32,1937,"0.78380","0.91832","0.9183" +"GO:0050804","modulation of chemical synaptic transmis...",11,1,2.9,2411,"0.96574","0.91866","0.9187" +"GO:0099177","regulation of trans-synaptic signaling",11,1,2.9,2412,"0.96574","0.91866","0.9187" +"GO:0003002","regionalization",28,4,7.38,2395,"0.96089","0.91877","0.9188" +"GO:1902991","regulation of amyloid precursor protein ...",5,1,1.32,1938,"0.78380","0.91893","0.9189" +"GO:0043949","regulation of cAMP-mediated signaling",5,1,1.32,1939,"0.78380","0.91955","0.9195" +"GO:0010842","retina layer formation",6,1,1.58,2114,"0.84091","0.92004","0.9200" +"GO:0030968","endoplasmic reticulum unfolded protein r...",8,1,2.11,2281,"0.91388","0.92015","0.9201" +"GO:0034620","cellular response to unfolded protein",8,1,2.11,2282,"0.91388","0.92015","0.9201" +"GO:0001649","osteoblast differentiation",5,0,1.32,2770,"1.00000","0.92015","0.9202" +"GO:0043583","ear development",5,0,1.32,2771,"1.00000","0.92015","0.9202" +"GO:0048839","inner ear development",5,0,1.32,2772,"1.00000","0.92015","0.9202" +"GO:0043604","amide biosynthetic process",196,24,51.68,2492,"1.00000","0.92146","0.9215" +"GO:0001666","response to hypoxia",12,2,3.16,2164,"0.86598","0.92207","0.9221" +"GO:0036293","response to decreased oxygen levels",12,2,3.16,2165,"0.86598","0.92207","0.9221" +"GO:0070482","response to oxygen levels",12,2,3.16,2166,"0.86598","0.92207","0.9221" +"GO:0007165","signal transduction",324,80,85.42,1953,"0.78578","0.92268","0.9227" +"GO:0048193","Golgi vesicle transport",35,3,9.23,2482,"0.99809","0.92293","0.9229" +"GO:0001838","embryonic epithelial tube formation",8,1,2.11,2283,"0.91388","0.92329","0.9233" +"GO:0021915","neural tube development",8,1,2.11,2284,"0.91388","0.92329","0.9233" +"GO:0043524","negative regulation of neuron apoptotic ...",8,2,2.11,1520,"0.66636","0.92329","0.9233" +"GO:0072175","epithelial tube formation",8,1,2.11,2285,"0.91388","0.92329","0.9233" +"GO:0048705","skeletal system morphogenesis",8,0,2.11,2773,"1.00000","0.92329","0.9233" +"GO:0009896","positive regulation of catabolic process",23,3,6.06,2402,"0.96402","0.92396","0.9240" +"GO:0016226","iron-sulfur cluster assembly",8,0,2.11,2774,"1.00000","0.92405","0.9240" +"GO:0031163","metallo-sulfur cluster assembly",8,0,2.11,2775,"1.00000","0.92405","0.9240" +"GO:0005996","monosaccharide metabolic process",16,3,4.22,2066,"0.83559","0.92422","0.9242" +"GO:0006636","unsaturated fatty acid biosynthetic proc...",4,0,1.05,2776,"1.00000","0.92447","0.9245" +"GO:0006692","prostanoid metabolic process",4,0,1.05,2777,"1.00000","0.92447","0.9245" +"GO:0006693","prostaglandin metabolic process",4,0,1.05,2778,"1.00000","0.92447","0.9245" +"GO:0006721","terpenoid metabolic process",4,0,1.05,2779,"1.00000","0.92447","0.9245" +"GO:1901570","fatty acid derivative biosynthetic proce...",4,0,1.05,2780,"1.00000","0.92447","0.9245" +"GO:0032870","cellular response to hormone stimulus",32,7,8.44,1848,"0.77888","0.92515","0.9252" +"GO:1902600","proton transmembrane transport",5,1,1.32,1940,"0.78380","0.92554","0.9255" +"GO:0006490","oligosaccharide-lipid intermediate biosy...",6,2,1.58,908,"0.49828","0.92562","0.9256" +"GO:0050678","regulation of epithelial cell proliferat...",8,1,2.11,2286,"0.91388","0.92582","0.9258" +"GO:0030335","positive regulation of cell migration",12,1,3.16,2433,"0.97481","0.92614","0.9261" +"GO:0051099","positive regulation of binding",12,2,3.16,2167,"0.86598","0.92614","0.9261" +"GO:0007399","nervous system development",127,31,33.48,1781,"0.72765","0.92627","0.9263" +"GO:0055082","cellular chemical homeostasis",22,4,5.8,2170,"0.87099","0.92710","0.9271" +"GO:0060627","regulation of vesicle-mediated transport",32,3,8.44,2477,"0.99592","0.92937","0.9294" +"GO:0009152","purine ribonucleotide biosynthetic proce...",16,4,4.22,1434,"0.64337","0.92946","0.9295" +"GO:0061025","membrane fusion",6,0,1.58,2781,"1.00000","0.92955","0.9296" +"GO:0060348","bone development",5,0,1.32,2782,"1.00000","0.93076","0.9308" +"GO:0010831","positive regulation of myotube different...",3,1,0.79,1389,"0.60090","0.93085","0.9309" +"GO:0051149","positive regulation of muscle cell diffe...",3,1,0.79,1390,"0.60090","0.93085","0.9309" +"GO:0051155","positive regulation of striated muscle c...",3,1,0.79,1391,"0.60090","0.93085","0.9309" +"GO:0140253","cell-cell fusion",3,0,0.79,2783,"1.00000","0.93085","0.9309" +"GO:1901890","positive regulation of cell junction ass...",3,0,0.79,2784,"1.00000","0.93085","0.9309" +"GO:1903044","protein localization to membrane raft",3,0,0.79,2785,"1.00000","0.93085","0.9309" +"GO:0090407","organophosphate biosynthetic process",56,13,14.76,1824,"0.75209","0.93105","0.9310" +"GO:0008652","cellular amino acid biosynthetic process",10,2,2.64,1976,"0.78585","0.93142","0.9314" +"GO:1901607","alpha-amino acid biosynthetic process",10,2,2.64,1977,"0.78585","0.93142","0.9314" +"GO:1901068","guanosine-containing compound metabolic ...",4,0,1.05,2786,"1.00000","0.93174","0.9317" +"GO:0017157","regulation of exocytosis",3,0,0.79,2787,"1.00000","0.93217","0.9322" +"GO:0006081","cellular aldehyde metabolic process",8,2,2.11,1521,"0.66636","0.93221","0.9322" +"GO:0030855","epithelial cell differentiation",35,6,9.23,2325,"0.93081","0.93222","0.9322" +"GO:1901360","organic cyclic compound metabolic proces...",928,294,244.67,10,"4.8e-06","2.7e-09","0.9324" +"GO:0090114","COPII-coated vesicle budding",5,1,1.32,1941,"0.78380","0.93247","0.9325" +"GO:0001841","neural tube formation",7,1,1.85,2211,"0.88294","0.93257","0.9326" +"GO:0060968","regulation of gene silencing",7,1,1.85,2212,"0.88294","0.93257","0.9326" +"GO:0048706","embryonic skeletal system development",7,0,1.85,2788,"1.00000","0.93257","0.9326" +"GO:0002694","regulation of leukocyte activation",9,1,2.37,2349,"0.93665","0.93334","0.9333" +"GO:0006006","glucose metabolic process",9,2,2.37,1805,"0.73172","0.93334","0.9333" +"GO:0050865","regulation of cell activation",9,1,2.37,2350,"0.93665","0.93334","0.9333" +"GO:0008625","extrinsic apoptotic signaling pathway vi...",3,1,0.79,1392,"0.60090","0.93362","0.9336" +"GO:0051239","regulation of multicellular organismal p...",103,24,27.16,1986,"0.79619","0.93426","0.9343" +"GO:0035264","multicellular organism growth",7,2,1.85,1132,"0.58869","0.93456","0.9346" +"GO:0018991","oviposition",4,0,1.05,2789,"1.00000","0.93463","0.9346" +"GO:0061355","Wnt protein secretion",4,0,1.05,2790,"1.00000","0.93463","0.9346" +"GO:0031057","negative regulation of histone modificat...",5,1,1.32,1942,"0.78380","0.93471","0.9347" +"GO:0045445","myoblast differentiation",4,1,1.05,1719,"0.70624","0.93562","0.9356" +"GO:0045661","regulation of myoblast differentiation",4,1,1.05,1720,"0.70624","0.93562","0.9356" +"GO:0010669","epithelial structure maintenance",4,0,1.05,2791,"1.00000","0.93562","0.9356" +"GO:0030279","negative regulation of ossification",4,0,1.05,2792,"1.00000","0.93562","0.9356" +"GO:0042471","ear morphogenesis",4,0,1.05,2793,"1.00000","0.93562","0.9356" +"GO:0042472","inner ear morphogenesis",4,0,1.05,2794,"1.00000","0.93562","0.9356" +"GO:0048546","digestive tract morphogenesis",4,0,1.05,2795,"1.00000","0.93562","0.9356" +"GO:0090090","negative regulation of canonical Wnt sig...",4,0,1.05,2796,"1.00000","0.93562","0.9356" +"GO:0051216","cartilage development",7,0,1.85,2797,"1.00000","0.93587","0.9359" +"GO:1901653","cellular response to peptide",9,2,2.37,1806,"0.73172","0.93608","0.9361" +"GO:0072659","protein localization to plasma membrane",8,2,2.11,1522,"0.66636","0.93645","0.9364" +"GO:0006575","cellular modified amino acid metabolic p...",12,6,3.16,107,"0.06823","0.06387","0.9370" +"GO:0006886","intracellular protein transport",118,23,31.11,2419,"0.97013","0.93796","0.9380" +"GO:0035282","segmentation",15,4,3.95,1085,"0.58736","0.93835","0.9383" +"GO:0055085","transmembrane transport",159,40,41.92,1525,"0.66938","0.93889","0.9389" +"GO:0007605","sensory perception of sound",4,1,1.05,1721,"0.70624","0.93904","0.9390" +"GO:0050954","sensory perception of mechanical stimulu...",4,1,1.05,1722,"0.70624","0.93904","0.9390" +"GO:0071705","nitrogen compound transport",172,36,45.35,2398,"0.96325","0.93966","0.9397" +"GO:0051648","vesicle localization",14,4,3.69,954,"0.52650","0.94147","0.9415" +"GO:0006164","purine nucleotide biosynthetic process",18,4,4.75,1814,"0.73952","0.94167","0.9417" +"GO:0001843","neural tube closure",6,1,1.58,2115,"0.84091","0.94194","0.9419" +"GO:0014020","primary neural tube formation",6,1,1.58,2116,"0.84091","0.94194","0.9419" +"GO:0045815","positive regulation of gene expression, ...",6,1,1.58,2117,"0.84091","0.94194","0.9419" +"GO:0060606","tube closure",6,1,1.58,2118,"0.84091","0.94194","0.9419" +"GO:1904888","cranial skeletal system development",6,0,1.58,2798,"1.00000","0.94194","0.9419" +"GO:1901699","cellular response to nitrogen compound",15,3,3.95,2014,"0.79955","0.94236","0.9424" +"GO:0060041","retina development in camera-type eye",19,3,5.01,2263,"0.91210","0.94238","0.9424" +"GO:0051100","negative regulation of binding",6,1,1.58,2119,"0.84091","0.94252","0.9425" +"GO:0055076","transition metal ion homeostasis",6,1,1.58,2120,"0.84091","0.94252","0.9425" +"GO:0010952","positive regulation of peptidase activit...",4,1,1.05,1723,"0.70624","0.94272","0.9427" +"GO:0030155","regulation of cell adhesion",15,2,3.95,2337,"0.93587","0.94327","0.9433" +"GO:1901652","response to peptide",13,2,3.43,2242,"0.89476","0.94337","0.9434" +"GO:0000027","ribosomal large subunit assembly",6,1,1.58,2121,"0.84091","0.94366","0.9437" +"GO:0002181","cytoplasmic translation",6,0,1.58,2799,"1.00000","0.94366","0.9437" +"GO:0006082","organic acid metabolic process",93,20,24.52,2223,"0.88706","0.94411","0.9441" +"GO:0043436","oxoacid metabolic process",93,20,24.52,2224,"0.88706","0.94411","0.9441" +"GO:0055072","iron ion homeostasis",5,1,1.32,1943,"0.78380","0.94591","0.9459" +"GO:0016032","viral process",31,6,8.17,2153,"0.86537","0.94676","0.9468" +"GO:0034453","microtubule anchoring",3,1,0.79,1393,"0.60090","0.94685","0.9468" +"GO:0048489","synaptic vesicle transport",3,0,0.79,2800,"1.00000","0.94711","0.9471" +"GO:0097480","establishment of synaptic vesicle locali...",3,0,0.79,2801,"1.00000","0.94711","0.9471" +"GO:0018209","peptidyl-serine modification",9,1,2.37,2351,"0.93665","0.94764","0.9476" +"GO:0198738","cell-cell signaling by wnt",32,6,8.44,2221,"0.88534","0.94828","0.9483" +"GO:0032543","mitochondrial translation",14,1,3.69,2455,"0.98638","0.94837","0.9484" +"GO:0140053","mitochondrial gene expression",14,1,3.69,2456,"0.98638","0.94837","0.9484" +"GO:0006901","vesicle coating",3,1,0.79,1394,"0.60090","0.94840","0.9484" +"GO:0035964","COPI-coated vesicle budding",3,1,0.79,1395,"0.60090","0.94840","0.9484" +"GO:0048200","Golgi transport vesicle coating",3,1,0.79,1396,"0.60090","0.94840","0.9484" +"GO:0048205","COPI coating of Golgi vesicle",3,1,0.79,1397,"0.60090","0.94840","0.9484" +"GO:0010675","regulation of cellular carbohydrate meta...",8,2,2.11,1523,"0.66636","0.94942","0.9494" +"GO:0048518","positive regulation of biological proces...",321,83,84.63,1404,"0.61017","0.64874","0.9494" +"GO:0051181","cofactor transport",5,1,1.32,1944,"0.78380","0.94943","0.9494" +"GO:0006959","humoral immune response",3,0,0.79,2802,"1.00000","0.94943","0.9494" +"GO:0072522","purine-containing compound biosynthetic ...",20,5,5.27,1426,"0.63947","0.94966","0.9497" +"GO:1990778","protein localization to cell periphery",10,2,2.64,1978,"0.78585","0.94984","0.9498" +"GO:0009950","dorsal/ventral axis specification",3,0,0.79,2803,"1.00000","0.95058","0.9506" +"GO:0046662","regulation of oviposition",3,0,0.79,2804,"1.00000","0.95058","0.9506" +"GO:0001654","eye development",44,9,11.6,2146,"0.85876","0.95102","0.9510" +"GO:0048880","sensory system development",44,9,11.6,2147,"0.85876","0.95102","0.9510" +"GO:0150063","visual system development",44,9,11.6,2148,"0.85876","0.95102","0.9510" +"GO:0021782","glial cell development",3,0,0.79,2805,"1.00000","0.95133","0.9513" +"GO:0035019","somatic stem cell population maintenance",3,0,0.79,2806,"1.00000","0.95133","0.9513" +"GO:0071599","otic vesicle development",3,0,0.79,2807,"1.00000","0.95133","0.9513" +"GO:0071600","otic vesicle morphogenesis",3,0,0.79,2808,"1.00000","0.95133","0.9513" +"GO:0048701","embryonic cranial skeleton morphogenesis",5,0,1.32,2809,"1.00000","0.95139","0.9514" +"GO:0048704","embryonic skeletal system morphogenesis",5,0,1.32,2810,"1.00000","0.95139","0.9514" +"GO:0046916","cellular transition metal ion homeostasi...",5,0,1.32,2811,"1.00000","0.95188","0.9519" +"GO:0097428","protein maturation by iron-sulfur cluste...",5,0,1.32,2812,"1.00000","0.95188","0.9519" +"GO:0006637","acyl-CoA metabolic process",4,0,1.05,2813,"1.00000","0.95196","0.9520" +"GO:0035383","thioester metabolic process",4,0,1.05,2814,"1.00000","0.95196","0.9520" +"GO:0006720","isoprenoid metabolic process",10,0,2.64,2815,"1.00000","0.95294","0.9529" +"GO:0048583","regulation of response to stimulus",194,52,51.15,810,"0.47179","0.58026","0.9533" +"GO:0019216","regulation of lipid metabolic process",10,1,2.64,2381,"0.95341","0.95328","0.9533" +"GO:0043087","regulation of GTPase activity",20,4,5.27,2033,"0.81463","0.95331","0.9533" +"GO:0007154","cell communication",362,87,95.44,2173,"0.87425","0.95386","0.9539" +"GO:0006633","fatty acid biosynthetic process",10,1,2.64,2382,"0.95341","0.95495","0.9550" +"GO:0009311","oligosaccharide metabolic process",6,0,1.58,2816,"1.00000","0.95683","0.9568" +"GO:0009132","nucleoside diphosphate metabolic process",6,1,1.58,2122,"0.84091","0.95733","0.9573" +"GO:0009636","response to toxic substance",32,9,8.44,815,"0.47729","0.05341","0.9584" +"GO:0042737","drug catabolic process",3,0,0.79,2817,"1.00000","0.95848","0.9585" +"GO:0009164","nucleoside catabolic process",4,0,1.05,2818,"1.00000","0.95915","0.9592" +"GO:0034656","nucleobase-containing small molecule cat...",4,0,1.05,2819,"1.00000","0.95915","0.9592" +"GO:0042454","ribonucleoside catabolic process",4,0,1.05,2820,"1.00000","0.95915","0.9592" +"GO:1901658","glycosyl compound catabolic process",4,0,1.05,2821,"1.00000","0.95915","0.9592" +"GO:0007424","open tracheal system development",4,0,1.05,2822,"1.00000","0.95935","0.9594" +"GO:0009555","pollen development",6,0,1.58,2823,"1.00000","0.95939","0.9594" +"GO:0035162","embryonic hemopoiesis",4,0,1.05,2824,"1.00000","0.96094","0.9609" +"GO:0098742","cell-cell adhesion via plasma-membrane a...",8,2,2.11,1524,"0.66636","0.96123","0.9612" +"GO:0006631","fatty acid metabolic process",19,3,5.01,2264,"0.91210","0.96127","0.9613" +"GO:0006879","cellular iron ion homeostasis",4,0,1.05,2825,"1.00000","0.96133","0.9613" +"GO:0045185","maintenance of protein location",4,0,1.05,2826,"1.00000","0.96133","0.9613" +"GO:0050673","epithelial cell proliferation",10,1,2.64,2383,"0.95341","0.96137","0.9614" +"GO:0006888","ER to Golgi vesicle-mediated transport",17,1,4.48,2474,"0.99460","0.96204","0.9620" +"GO:0034248","regulation of cellular amide metabolic p...",30,5,7.91,2318,"0.92860","0.96222","0.9622" +"GO:0046039","GTP metabolic process",3,0,0.79,2827,"1.00000","0.96269","0.9627" +"GO:0019752","carboxylic acid metabolic process",92,20,24.26,2175,"0.87518","0.96341","0.9634" +"GO:0006690","icosanoid metabolic process",5,0,1.32,2828,"1.00000","0.96369","0.9637" +"GO:0007030","Golgi organization",16,3,4.22,2067,"0.83559","0.96424","0.9642" +"GO:0002115","store-operated calcium entry",3,1,0.79,1398,"0.60090","0.96477","0.9648" +"GO:1902626","assembly of large subunit precursor of p...",3,1,0.79,1399,"0.60090","0.96573","0.9657" +"GO:0001963","synaptic transmission, dopaminergic",4,1,1.05,1724,"0.70624","0.96579","0.9658" +"GO:0018958","phenol-containing compound metabolic pro...",4,1,1.05,1725,"0.70624","0.96579","0.9658" +"GO:0023052","signaling",351,86,92.54,2039,"0.81905","0.96740","0.9674" +"GO:0006733","oxidoreduction coenzyme metabolic proces...",12,2,3.16,2168,"0.86598","0.96835","0.9683" +"GO:1901564","organonitrogen compound metabolic proces...",999,243,263.39,2418,"0.97010","0.93314","0.9689" +"GO:0001523","retinoid metabolic process",3,0,0.79,2829,"1.00000","0.96957","0.9696" +"GO:0016101","diterpenoid metabolic process",3,0,0.79,2830,"1.00000","0.96957","0.9696" +"GO:2000177","regulation of neural precursor cell prol...",3,0,0.79,2831,"1.00000","0.97057","0.9706" +"GO:0006903","vesicle targeting",6,1,1.58,2123,"0.84091","0.97132","0.9713" +"GO:0040014","regulation of multicellular organism gro...",3,0,0.79,2832,"1.00000","0.97145","0.9715" +"GO:0048639","positive regulation of developmental gro...",3,0,0.79,2833,"1.00000","0.97145","0.9715" +"GO:0031333","negative regulation of protein complex a...",4,0,1.05,2834,"1.00000","0.97154","0.9715" +"GO:0043434","response to peptide hormone",12,1,3.16,2434,"0.97481","0.97185","0.9718" +"GO:0006518","peptide metabolic process",215,31,56.69,2488,"1.00000","0.98176","0.9722" +"GO:0032940","secretion by cell",50,6,13.18,2478,"0.99633","0.97221","0.9722" +"GO:0007423","sensory organ development",49,9,12.92,2324,"0.93060","0.97243","0.9724" +"GO:0051963","regulation of synapse assembly",5,1,1.32,1945,"0.78380","0.97283","0.9728" +"GO:0008284","positive regulation of cell proliferatio...",18,2,4.75,2423,"0.97022","0.97438","0.9744" +"GO:0051101","regulation of DNA binding",4,0,1.05,2835,"1.00000","0.97482","0.9748" +"GO:2000736","regulation of stem cell differentiation",8,0,2.11,2836,"1.00000","0.97504","0.9750" +"GO:0010259","multicellular organism aging",4,0,1.05,2837,"1.00000","0.97592","0.9759" +"GO:0048199","vesicle targeting, to, from or within Go...",5,1,1.32,1946,"0.78380","0.97605","0.9761" +"GO:0034308","primary alcohol metabolic process",5,1,1.32,1947,"0.78380","0.97640","0.9764" +"GO:0016055","Wnt signaling pathway",28,6,7.38,1980,"0.78783","0.97645","0.9765" +"GO:1905114","cell surface receptor signaling pathway ...",28,6,7.38,1981,"0.78783","0.97645","0.9765" +"GO:0042445","hormone metabolic process",11,1,2.9,2413,"0.96574","0.97664","0.9766" +"GO:0044242","cellular lipid catabolic process",15,3,3.95,2015,"0.79955","0.97688","0.9769" +"GO:0048284","organelle fusion",8,0,2.11,2838,"1.00000","0.97713","0.9771" +"GO:1901615","organic hydroxy compound metabolic proce...",23,3,6.06,2403,"0.96402","0.97727","0.9773" +"GO:0042180","cellular ketone metabolic process",14,1,3.69,2457,"0.98638","0.97729","0.9773" +"GO:0050896","response to stimulus",633,185,166.89,69,"0.03597","0.10808","0.9776" +"GO:0009308","amine metabolic process",11,1,2.9,2414,"0.96574","0.97837","0.9784" +"GO:0044106","cellular amine metabolic process",11,1,2.9,2415,"0.96574","0.97837","0.9784" +"GO:0030837","negative regulation of actin filament po...",3,0,0.79,2839,"1.00000","0.97858","0.9786" +"GO:0032272","negative regulation of protein polymeriz...",3,0,0.79,2840,"1.00000","0.97858","0.9786" +"GO:0051693","actin filament capping",3,0,0.79,2841,"1.00000","0.97858","0.9786" +"GO:0009069","serine family amino acid metabolic proce...",4,0,1.05,2842,"1.00000","0.97880","0.9788" +"GO:0016050","vesicle organization",21,2,5.54,2458,"0.98648","0.97895","0.9789" +"GO:0048259","regulation of receptor-mediated endocyto...",6,0,1.58,2843,"1.00000","0.97941","0.9794" +"GO:0010565","regulation of cellular ketone metabolic ...",3,0,0.79,2844,"1.00000","0.97951","0.9795" +"GO:0051649","establishment of localization in cell",200,40,52.73,2462,"0.98794","0.97958","0.9796" +"GO:0006595","polyamine metabolic process",3,0,0.79,2845,"1.00000","0.97992","0.9799" +"GO:0006596","polyamine biosynthetic process",3,0,0.79,2846,"1.00000","0.97992","0.9799" +"GO:0009309","amine biosynthetic process",3,0,0.79,2847,"1.00000","0.97992","0.9799" +"GO:0042401","cellular biogenic amine biosynthetic pro...",3,0,0.79,2848,"1.00000","0.97992","0.9799" +"GO:0007186","G protein-coupled receptor signaling pat...",39,7,10.28,2303,"0.92193","0.98026","0.9803" +"GO:0016053","organic acid biosynthetic process",24,5,6.33,1998,"0.79936","0.98031","0.9803" +"GO:0046394","carboxylic acid biosynthetic process",24,5,6.33,1999,"0.79936","0.98031","0.9803" +"GO:0006810","transport",479,100,126.29,2485,"0.99907","0.98077","0.9808" +"GO:0006885","regulation of pH",4,1,1.05,1726,"0.70624","0.98101","0.9810" +"GO:0055067","monovalent inorganic cation homeostasis",4,1,1.05,1727,"0.70624","0.98101","0.9810" +"GO:1903025","regulation of RNA polymerase II regulato...",3,0,0.79,2849,"1.00000","0.98106","0.9811" +"GO:2000677","regulation of transcription regulatory r...",3,0,0.79,2850,"1.00000","0.98106","0.9811" +"GO:0048646","anatomical structure formation involved ...",54,11,14.24,2182,"0.88029","0.98108","0.9811" +"GO:0005975","carbohydrate metabolic process",57,12,15.03,2149,"0.85911","0.98152","0.9815" +"GO:0051961","negative regulation of nervous system de...",15,2,3.95,2338,"0.93587","0.98210","0.9821" +"GO:0051234","establishment of localization",498,106,131.3,2483,"0.99839","0.98212","0.9821" +"GO:0007379","segment specification",4,0,1.05,2851,"1.00000","0.98324","0.9832" +"GO:0072521","purine-containing compound metabolic pro...",45,9,11.86,2177,"0.87665","0.98326","0.9833" +"GO:0044419","interspecies interaction between organis...",37,6,9.76,2373,"0.95148","0.98364","0.9836" +"GO:0009070","serine family amino acid biosynthetic pr...",3,0,0.79,2852,"1.00000","0.98406","0.9841" +"GO:1901661","quinone metabolic process",6,0,1.58,2853,"1.00000","0.98408","0.9841" +"GO:0046907","intracellular transport",186,35,49.04,2476,"0.99506","0.98432","0.9843" +"GO:0044403","symbiont process",35,6,9.23,2326,"0.93081","0.98453","0.9845" +"GO:0044281","small molecule metabolic process",210,48,55.37,2253,"0.90140","0.98521","0.9852" +"GO:0051186","cofactor metabolic process",53,13,13.97,1526,"0.67152","0.92995","0.9854" +"GO:0006906","vesicle fusion",5,0,1.32,2854,"1.00000","0.98566","0.9857" +"GO:0090174","organelle membrane fusion",5,0,1.32,2855,"1.00000","0.98566","0.9857" +"GO:0034389","lipid droplet organization",5,1,1.32,1948,"0.78380","0.98593","0.9859" +"GO:0051179","localization",565,123,148.96,2481,"0.99796","0.98610","0.9861" +"GO:0006576","cellular biogenic amine metabolic proces...",7,0,1.85,2856,"1.00000","0.98620","0.9862" +"GO:0006900","vesicle budding from membrane",6,1,1.58,2124,"0.84091","0.98649","0.9865" +"GO:0048194","Golgi vesicle budding",6,1,1.58,2125,"0.84091","0.98649","0.9865" +"GO:0019068","virion assembly",6,0,1.58,2857,"1.00000","0.98649","0.9865" +"GO:0070925","organelle assembly",62,11,16.35,2393,"0.96060","0.98709","0.9871" +"GO:0008582","regulation of synaptic growth at neuromu...",4,1,1.05,1728,"0.70624","0.98757","0.9876" +"GO:1904396","regulation of neuromuscular junction dev...",4,1,1.05,1729,"0.70624","0.98757","0.9876" +"GO:0006493","protein O-linked glycosylation",15,4,3.95,1086,"0.58736","0.98842","0.9884" +"GO:0034645","cellular macromolecule biosynthetic proc...",722,194,190.36,626,"0.37747","0.66196","0.9887" +"GO:0070125","mitochondrial translational elongation",3,0,0.79,2858,"1.00000","0.98875","0.9888" +"GO:0070126","mitochondrial translational termination",3,0,0.79,2859,"1.00000","0.98875","0.9888" +"GO:0048863","stem cell differentiation",15,1,3.95,2466,"0.98999","0.98898","0.9890" +"GO:0001101","response to acid chemical",14,2,3.69,2297,"0.91770","0.98913","0.9891" +"GO:1901566","organonitrogen compound biosynthetic pro...",314,53,82.79,2487,"0.99999","0.98919","0.9892" +"GO:0046503","glycerolipid catabolic process",6,1,1.58,2126,"0.84091","0.98922","0.9892" +"GO:0006743","ubiquinone metabolic process",4,0,1.05,2860,"1.00000","0.98937","0.9894" +"GO:0006744","ubiquinone biosynthetic process",4,0,1.05,2861,"1.00000","0.98937","0.9894" +"GO:0042181","ketone biosynthetic process",4,0,1.05,2862,"1.00000","0.98937","0.9894" +"GO:1901663","quinone biosynthetic process",4,0,1.05,2863,"1.00000","0.98937","0.9894" +"GO:1903053","regulation of extracellular matrix organ...",3,0,0.79,2864,"1.00000","0.99002","0.9900" +"GO:0048881","mechanosensory lateral line system devel...",3,0,0.79,2865,"1.00000","0.99019","0.9902" +"GO:0048882","lateral line development",3,0,0.79,2866,"1.00000","0.99019","0.9902" +"GO:0048925","lateral line system development",3,0,0.79,2867,"1.00000","0.99019","0.9902" +"GO:0007155","cell adhesion",42,9,11.07,2037,"0.81685","0.99034","0.9903" +"GO:0022610","biological adhesion",42,9,11.07,2038,"0.81685","0.99034","0.9903" +"GO:0007275","multicellular organism development",295,74,77.78,1779,"0.72319","0.99057","0.9906" +"GO:0050794","regulation of cellular process",879,227,231.75,1547,"0.68603","0.99252","0.9910" +"GO:0035459","cargo loading into vesicle",4,1,1.05,1730,"0.70624","0.99098","0.9910" +"GO:0006091","generation of precursor metabolites and ...",20,4,5.27,2034,"0.81463","0.99118","0.9912" +"GO:0044282","small molecule catabolic process",22,0,5.8,2868,"1.00000","0.99121","0.9912" +"GO:0006732","coenzyme metabolic process",25,4,6.59,2311,"0.92769","0.99148","0.9915" +"GO:0007596","blood coagulation",3,0,0.79,2869,"1.00000","0.99165","0.9916" +"GO:0007599","hemostasis",3,0,0.79,2870,"1.00000","0.99165","0.9916" +"GO:0050817","coagulation",3,0,0.79,2871,"1.00000","0.99165","0.9916" +"GO:0110020","regulation of actomyosin structure organ...",3,0,0.79,2872,"1.00000","0.99165","0.9916" +"GO:0007267","cell-cell signaling",71,14,18.72,2307,"0.92645","0.99240","0.9924" +"GO:0050863","regulation of T cell activation",8,1,2.11,2287,"0.91388","0.99272","0.9927" +"GO:0051249","regulation of lymphocyte activation",8,1,2.11,2288,"0.91388","0.99272","0.9927" +"GO:0032501","multicellular organismal process",358,89,94.39,1845,"0.77447","0.99277","0.9928" +"GO:0006638","neutral lipid metabolic process",4,0,1.05,2873,"1.00000","0.99281","0.9928" +"GO:0006639","acylglycerol metabolic process",4,0,1.05,2874,"1.00000","0.99281","0.9928" +"GO:0010507","negative regulation of autophagy",4,0,1.05,2875,"1.00000","0.99281","0.9928" +"GO:0016571","histone methylation",15,3,3.95,2016,"0.79955","0.99284","0.9928" +"GO:0018022","peptidyl-lysine methylation",21,3,5.54,2366,"0.94335","0.99285","0.9929" +"GO:0051047","positive regulation of secretion",10,0,2.64,2876,"1.00000","0.99293","0.9929" +"GO:1903532","positive regulation of secretion by cell",10,0,2.64,2877,"1.00000","0.99293","0.9929" +"GO:0001675","acrosome assembly",3,0,0.79,2878,"1.00000","0.99323","0.9932" +"GO:0002088","lens development in camera-type eye",3,0,0.79,2879,"1.00000","0.99323","0.9932" +"GO:0033363","secretory granule organization",3,0,0.79,2880,"1.00000","0.99323","0.9932" +"GO:0060628","regulation of ER to Golgi vesicle-mediat...",3,0,0.79,2881,"1.00000","0.99323","0.9932" +"GO:1902953","positive regulation of ER to Golgi vesic...",3,0,0.79,2882,"1.00000","0.99323","0.9932" +"GO:0008299","isoprenoid biosynthetic process",5,0,1.32,2883,"1.00000","0.99323","0.9932" +"GO:0015980","energy derivation by oxidation of organi...",15,3,3.95,2017,"0.79955","0.99339","0.9934" +"GO:0009059","macromolecule biosynthetic process",729,197,192.2,570,"0.33582","0.63795","0.9934" +"GO:0035265","organ growth",7,0,1.85,2884,"1.00000","0.99341","0.9934" +"GO:0009109","coenzyme catabolic process",3,0,0.79,2885,"1.00000","0.99366","0.9937" +"GO:0009111","vitamin catabolic process",3,0,0.79,2886,"1.00000","0.99366","0.9937" +"GO:0009062","fatty acid catabolic process",4,0,1.05,2887,"1.00000","0.99381","0.9938" +"GO:0072329","monocarboxylic acid catabolic process",4,0,1.05,2888,"1.00000","0.99381","0.9938" +"GO:0034641","cellular nitrogen compound metabolic pro...",1087,314,286.59,30,"0.00885","0.00133","0.9939" +"GO:0061024","membrane organization",55,11,14.5,2247,"0.89476","0.99415","0.9941" +"GO:0048507","meristem development",6,1,1.58,2127,"0.84091","0.99435","0.9944" +"GO:0044271","cellular nitrogen compound biosynthetic ...",673,162,177.44,2367,"0.94629","0.99437","0.9944" +"GO:0016054","organic acid catabolic process",14,0,3.69,2889,"1.00000","0.99442","0.9944" +"GO:0046395","carboxylic acid catabolic process",14,0,3.69,2890,"1.00000","0.99442","0.9944" +"GO:0009108","coenzyme biosynthetic process",16,3,4.22,2068,"0.83559","0.99456","0.9946" +"GO:0006641","triglyceride metabolic process",3,0,0.79,2891,"1.00000","0.99460","0.9946" +"GO:0016242","negative regulation of macroautophagy",3,0,0.79,2892,"1.00000","0.99460","0.9946" +"GO:0046461","neutral lipid catabolic process",3,0,0.79,2893,"1.00000","0.99460","0.9946" +"GO:0046464","acylglycerol catabolic process",3,0,0.79,2894,"1.00000","0.99460","0.9946" +"GO:0050994","regulation of lipid catabolic process",3,0,0.79,2895,"1.00000","0.99460","0.9946" +"GO:0016051","carbohydrate biosynthetic process",16,2,4.22,2370,"0.95020","0.99486","0.9949" +"GO:1990823","response to leukemia inhibitory factor",7,1,1.85,2213,"0.88294","0.99486","0.9949" +"GO:1990830","cellular response to leukemia inhibitory...",7,1,1.85,2214,"0.88294","0.99486","0.9949" +"GO:0006887","exocytosis",20,0,5.27,2896,"1.00000","0.99495","0.9949" +"GO:0060491","regulation of cell projection assembly",15,3,3.95,2018,"0.79955","0.99518","0.9952" +"GO:0120032","regulation of plasma membrane bounded ce...",15,3,3.95,2019,"0.79955","0.99518","0.9952" +"GO:0044262","cellular carbohydrate metabolic process",14,2,3.69,2298,"0.91770","0.99524","0.9952" +"GO:0022407","regulation of cell-cell adhesion",5,0,1.32,2897,"1.00000","0.99545","0.9954" +"GO:0022409","positive regulation of cell-cell adhesio...",5,0,1.32,2898,"1.00000","0.99545","0.9954" +"GO:0043010","camera-type eye development",27,3,7.12,2451,"0.98600","0.99590","0.9959" +"GO:0010256","endomembrane system organization",35,5,9.23,2427,"0.97286","0.99592","0.9959" +"GO:0007032","endosome organization",4,0,1.05,2899,"1.00000","0.99598","0.9960" +"GO:0009058","biosynthetic process",862,229,227.27,784,"0.45325","0.84566","0.9960" +"GO:0009063","cellular amino acid catabolic process",10,0,2.64,2900,"1.00000","0.99601","0.9960" +"GO:1901606","alpha-amino acid catabolic process",10,0,2.64,2901,"1.00000","0.99601","0.9960" +"GO:0035329","hippo signaling",4,0,1.05,2902,"1.00000","0.99623","0.9962" +"GO:0007264","small GTPase mediated signal transductio...",29,3,7.65,2472,"0.99139","0.99630","0.9963" +"GO:0002696","positive regulation of leukocyte activat...",4,0,1.05,2903,"1.00000","0.99636","0.9964" +"GO:0007159","leukocyte cell-cell adhesion",4,0,1.05,2904,"1.00000","0.99636","0.9964" +"GO:0050867","positive regulation of cell activation",4,0,1.05,2905,"1.00000","0.99636","0.9964" +"GO:0050870","positive regulation of T cell activation",4,0,1.05,2906,"1.00000","0.99636","0.9964" +"GO:0051251","positive regulation of lymphocyte activa...",4,0,1.05,2907,"1.00000","0.99636","0.9964" +"GO:1903037","regulation of leukocyte cell-cell adhesi...",4,0,1.05,2908,"1.00000","0.99636","0.9964" +"GO:1903039","positive regulation of leukocyte cell-ce...",4,0,1.05,2909,"1.00000","0.99636","0.9964" +"GO:0042278","purine nucleoside metabolic process",9,1,2.37,2352,"0.93665","0.99641","0.9964" +"GO:0007265","Ras protein signal transduction",17,2,4.48,2397,"0.96144","0.99650","0.9965" +"GO:0051716","cellular response to stimulus",507,149,133.67,85,"0.04999","0.14339","0.9968" +"GO:0006997","nucleus organization",15,1,3.95,2467,"0.98999","0.99684","0.9968" +"GO:0051056","regulation of small GTPase mediated sign...",15,1,3.95,2468,"0.98999","0.99691","0.9969" +"GO:0030258","lipid modification",9,1,2.37,2353,"0.93665","0.99694","0.9969" +"GO:0044237","cellular metabolic process",1668,455,439.77,146,"0.09674","0.00559","0.9969" +"GO:1901576","organic substance biosynthetic process",846,224,223.05,832,"0.48206","0.89222","0.9970" +"GO:0006629","lipid metabolic process",119,27,31.37,2137,"0.85044","0.99709","0.9971" +"GO:0009553","embryo sac development",3,0,0.79,2910,"1.00000","0.99718","0.9972" +"GO:0071375","cellular response to peptide hormone sti...",8,1,2.11,2289,"0.91388","0.99728","0.9973" +"GO:0046578","regulation of Ras protein signal transdu...",13,1,3.43,2446,"0.98148","0.99732","0.9973" +"GO:0032869","cellular response to insulin stimulus",5,1,1.32,1949,"0.78380","0.99747","0.9975" +"GO:0009987","cellular process",2210,584,582.67,808,"0.46649","0.07360","0.9975" +"GO:0098609","cell-cell adhesion",23,4,6.06,2234,"0.89317","0.99758","0.9976" +"GO:0010906","regulation of glucose metabolic process",7,1,1.85,2215,"0.88294","0.99762","0.9976" +"GO:0033865","nucleoside bisphosphate metabolic proces...",7,0,1.85,2911,"1.00000","0.99762","0.9976" +"GO:0033875","ribonucleoside bisphosphate metabolic pr...",7,0,1.85,2912,"1.00000","0.99762","0.9976" +"GO:0034032","purine nucleoside bisphosphate metabolic...",7,0,1.85,2913,"1.00000","0.99762","0.9976" +"GO:0048593","camera-type eye morphogenesis",15,2,3.95,2339,"0.93587","0.99773","0.9977" +"GO:0045055","regulated exocytosis",9,0,2.37,2914,"1.00000","0.99773","0.9977" +"GO:0003382","epithelial cell morphogenesis",3,0,0.79,2915,"1.00000","0.99780","0.9978" +"GO:0033169","histone H3-K9 demethylation",3,0,0.79,2916,"1.00000","0.99780","0.9978" +"GO:2000036","regulation of stem cell population maint...",3,0,0.79,2917,"1.00000","0.99780","0.9978" +"GO:0044249","cellular biosynthetic process",829,222,218.57,636,"0.39016","0.83674","0.9979" +"GO:0030728","ovulation",3,0,0.79,2918,"1.00000","0.99788","0.9979" +"GO:0032868","response to insulin",6,1,1.58,2128,"0.84091","0.99796","0.9980" +"GO:0043603","cellular amide metabolic process",229,33,60.38,2490,"1.00000","0.99941","0.9981" +"GO:0000045","autophagosome assembly",6,0,1.58,2919,"1.00000","0.99815","0.9981" +"GO:1905037","autophagosome organization",6,0,1.58,2920,"1.00000","0.99815","0.9981" +"GO:0007266","Rho protein signal transduction",9,0,2.37,2921,"1.00000","0.99815","0.9981" +"GO:0006479","protein methylation",31,5,8.17,2357,"0.94075","0.99816","0.9982" +"GO:0008213","protein alkylation",31,5,8.17,2358,"0.94075","0.99816","0.9982" +"GO:0050789","regulation of biological process",940,241,247.83,1819,"0.74758","0.99913","0.9982" +"GO:0005976","polysaccharide metabolic process",4,0,1.05,2922,"1.00000","0.99824","0.9982" +"GO:0034637","cellular carbohydrate biosynthetic proce...",4,0,1.05,2923,"1.00000","0.99824","0.9982" +"GO:0044264","cellular polysaccharide metabolic proces...",4,0,1.05,2924,"1.00000","0.99824","0.9982" +"GO:0071229","cellular response to acid chemical",5,0,1.32,2925,"1.00000","0.99830","0.9983" +"GO:0035023","regulation of Rho protein signal transdu...",8,0,2.11,2926,"1.00000","0.99836","0.9984" +"GO:0006414","translational elongation",17,1,4.48,2475,"0.99460","0.99839","0.9984" +"GO:0009312","oligosaccharide biosynthetic process",5,0,1.32,2927,"1.00000","0.99840","0.9984" +"GO:0001516","prostaglandin biosynthetic process",3,0,0.79,2928,"1.00000","0.99853","0.9985" +"GO:0046456","icosanoid biosynthetic process",3,0,0.79,2929,"1.00000","0.99853","0.9985" +"GO:0046457","prostanoid biosynthetic process",3,0,0.79,2930,"1.00000","0.99853","0.9985" +"GO:0033866","nucleoside bisphosphate biosynthetic pro...",4,0,1.05,2931,"1.00000","0.99864","0.9986" +"GO:0034030","ribonucleoside bisphosphate biosynthetic...",4,0,1.05,2932,"1.00000","0.99864","0.9986" +"GO:0034033","purine nucleoside bisphosphate biosynthe...",4,0,1.05,2933,"1.00000","0.99864","0.9986" +"GO:0000271","polysaccharide biosynthetic process",3,0,0.79,2934,"1.00000","0.99868","0.9987" +"GO:0005977","glycogen metabolic process",3,0,0.79,2935,"1.00000","0.99868","0.9987" +"GO:0006073","cellular glucan metabolic process",3,0,0.79,2936,"1.00000","0.99868","0.9987" +"GO:0006112","energy reserve metabolic process",3,0,0.79,2937,"1.00000","0.99868","0.9987" +"GO:0033692","cellular polysaccharide biosynthetic pro...",3,0,0.79,2938,"1.00000","0.99868","0.9987" +"GO:0044042","glucan metabolic process",3,0,0.79,2939,"1.00000","0.99868","0.9987" +"GO:0006152","purine nucleoside catabolic process",3,0,0.79,2940,"1.00000","0.99881","0.9988" +"GO:0006730","one-carbon metabolic process",3,0,0.79,2941,"1.00000","0.99881","0.9988" +"GO:0072523","purine-containing compound catabolic pro...",3,0,0.79,2942,"1.00000","0.99881","0.9988" +"GO:1901605","alpha-amino acid metabolic process",22,2,5.8,2464,"0.98965","0.99891","0.9989" +"GO:0071496","cellular response to external stimulus",14,2,3.69,2299,"0.91770","0.99894","0.9989" +"GO:0006111","regulation of gluconeogenesis",3,0,0.79,2943,"1.00000","0.99898","0.9990" +"GO:0035357","peroxisome proliferator activated recept...",3,0,0.79,2944,"1.00000","0.99898","0.9990" +"GO:0043255","regulation of carbohydrate biosynthetic ...",3,0,0.79,2945,"1.00000","0.99898","0.9990" +"GO:0009267","cellular response to starvation",13,2,3.43,2243,"0.89476","0.99901","0.9990" +"GO:0031668","cellular response to extracellular stimu...",13,2,3.43,2244,"0.89476","0.99901","0.9990" +"GO:0031669","cellular response to nutrient levels",13,2,3.43,2245,"0.89476","0.99901","0.9990" +"GO:0000302","response to reactive oxygen species",19,5,5.01,1145,"0.58921","0.05706","0.9993" +"GO:0016192","vesicle-mediated transport",141,16,37.18,2489,"1.00000","0.99938","0.9994" +"GO:0071482","cellular response to light stimulus",4,0,1.05,2946,"1.00000","0.99940","0.9994" +"GO:0051668","localization within membrane",5,0,1.32,2947,"1.00000","0.99948","0.9995" +"GO:0006998","nuclear envelope organization",4,0,1.05,2948,"1.00000","0.99954","0.9995" +"GO:0007603","phototransduction, visible light",3,0,0.79,2949,"1.00000","0.99955","0.9995" +"GO:0009584","detection of visible light",3,0,0.79,2950,"1.00000","0.99955","0.9995" +"GO:0009642","response to light intensity",3,0,0.79,2951,"1.00000","0.99955","0.9995" +"GO:0016056","rhodopsin mediated signaling pathway",3,0,0.79,2952,"1.00000","0.99955","0.9995" +"GO:0044091","membrane biogenesis",4,0,1.05,2953,"1.00000","0.99958","0.9996" +"GO:0097479","synaptic vesicle localization",4,0,1.05,2954,"1.00000","0.99958","0.9996" +"GO:0065007","biological regulation",989,251,260.75,2040,"0.82197","0.99960","0.9996" +"GO:0030030","cell projection organization",76,15,20.04,2328,"0.93177","0.99967","0.9997" +"GO:0120036","plasma membrane bounded cell projection ...",76,15,20.04,2329,"0.93177","0.99967","0.9997" +"GO:0071709","membrane assembly",3,0,0.79,2955,"1.00000","0.99969","0.9997" +"GO:0042273","ribosomal large subunit biogenesis",15,3,3.95,2020,"0.79955","0.99975","0.9997" +"GO:0061418","regulation of transcription from RNA pol...",5,0,1.32,2956,"1.00000","0.99978","0.9998" +"GO:0044255","cellular lipid metabolic process",83,16,21.88,2371,"0.95066","0.99980","0.9998" +"GO:0070544","histone H3-K36 demethylation",4,0,1.05,2957,"1.00000","0.99982","0.9998" +"GO:0030031","cell projection assembly",27,3,7.12,2452,"0.98600","0.99989","0.9999" +"GO:0120031","plasma membrane bounded cell projection ...",27,3,7.12,2453,"0.98600","0.99989","0.9999" +"GO:0044782","cilium organization",25,1,6.59,2486,"0.99954","0.99989","0.9999" +"GO:0060271","cilium assembly",22,1,5.8,2484,"0.99884","0.99991","0.9999" +"GO:1902115","regulation of organelle assembly",19,2,5.01,2436,"0.97706","0.99992","0.9999" +"GO:0043547","positive regulation of GTPase activity",14,2,3.69,2300,"0.91770","0.99994","0.9999" +"GO:1902017","regulation of cilium assembly",10,1,2.64,2384,"0.95341","0.99996","1.0000" +"GO:0060541","respiratory system development",13,1,3.43,2447,"0.98148","0.99997","1.0000" +"GO:0030323","respiratory tube development",6,0,1.58,2958,"1.00000","0.99999","1.0000" +"GO:0030324","lung development",5,0,1.32,2959,"1.00000","0.99999","1.0000" +"GO:1902074","response to salt",3,0,0.79,2960,"1.00000","0.99999","1.0000" +"GO:0000375","RNA splicing, via transesterification re...",59,22,15.56,73,"0.04123","0.00118","1.0000" +"GO:0000377","RNA splicing, via transesterification re...",59,22,15.56,74,"0.04123","0.00118","1.0000" +"GO:0008150","biological_process",2765,729,729,2961,"1.00000","1.00000","1.0000" diff --git a/GO_enrichment_output/contrast_postlaying_nonlaying_downregulated.csv b/GO_enrichment_output/contrast_postlaying_nonlaying_downregulated.csv index 149dbb3..ef2dc52 100644 --- a/GO_enrichment_output/contrast_postlaying_nonlaying_downregulated.csv +++ b/GO_enrichment_output/contrast_postlaying_nonlaying_downregulated.csv @@ -1,6 +1,1127 @@ "GO.ID","Term","Annotated","Significant","Expected","Rank in classicFisher","classicFisher","classicKS","elimKS" "GO:0030336","negative regulation of cell migration",11,4,0.66,1,"0.0029","0.00027","0.00027" -"GO:0007165","signal transduction",450,32,27.02,130,"0.1588","0.00068","0.00096" -"GO:0009913","epidermal cell differentiation",6,0,0.36,1191,"1.0000","0.00152","0.00152" -"GO:0006468","protein phosphorylation",188,11,11.29,803,"0.5855","0.00355","0.00355" -"GO:0046903","secretion",59,7,3.54,57,"0.0600","0.00579","0.00579" +"GO:0006468","protein phosphorylation",188,11,11.29,442,"0.5855","0.00355","0.00355" +"GO:0046903","secretion",59,7,3.54,26,"0.0600","0.00579","0.00579" +"GO:0050767","regulation of neurogenesis",37,5,2.22,30,"0.0671","0.00737","0.00737" +"GO:0035556","intracellular signal transduction",191,19,11.47,9,"0.0169","0.00916","0.00916" +"GO:0045597","positive regulation of cell differentiat...",47,2,2.82,643,"0.7853","0.01085","0.01085" +"GO:0030182","neuron differentiation",87,7,5.22,174,"0.2648","0.01172","0.01172" +"GO:0080134","regulation of response to stress",53,4,3.18,248,"0.3951","0.01378","0.01378" +"GO:0001738","morphogenesis of a polarized epithelium",13,0,0.78,830,"1.0000","0.01614","0.01614" +"GO:0007164","establishment of tissue polarity",13,0,0.78,831,"1.0000","0.01614","0.01614" +"GO:0007165","signal transduction",450,32,27.02,86,"0.1588","0.00068","0.01847" +"GO:0045664","regulation of neuron differentiation",33,5,1.98,21,"0.0442","0.01955","0.01955" +"GO:0051046","regulation of secretion",21,4,1.26,16,"0.0335","0.02235","0.02235" +"GO:0090130","tissue migration",16,1,0.96,483,"0.6300","0.02305","0.02305" +"GO:0008610","lipid biosynthetic process",56,2,3.36,703,"0.8607","0.02378","0.02378" +"GO:1902904","negative regulation of supramolecular fi...",13,2,0.78,102,"0.1813","0.02390","0.02390" +"GO:0051128","regulation of cellular component organiz...",130,8,7.81,375,"0.5266","0.02423","0.02423" +"GO:0007264","small GTPase mediated signal transductio...",61,5,3.66,196,"0.3024","0.02449","0.02449" +"GO:0051716","cellular response to stimulus",539,35,32.36,209,"0.3232","0.00081","0.02650" +"GO:0006644","phospholipid metabolic process",50,5,3,97,"0.1777","0.02777","0.02777" +"GO:0001736","establishment of planar polarity",12,0,0.72,832,"1.0000","0.02828","0.02828" +"GO:0023052","signaling",482,32,28.94,188,"0.2849","0.00161","0.02841" +"GO:0032940","secretion by cell",46,4,2.76,195,"0.2972","0.02879","0.02879" +"GO:0033043","regulation of organelle organization",81,4,4.86,596,"0.7291","0.03162","0.03162" +"GO:0090132","epithelium migration",15,1,0.9,450,"0.6062","0.03464","0.03464" +"GO:0006497","protein lipidation",12,0,0.72,833,"1.0000","0.03610","0.03610" +"GO:0042157","lipoprotein metabolic process",12,0,0.72,834,"1.0000","0.03610","0.03610" +"GO:0042158","lipoprotein biosynthetic process",12,0,0.72,835,"1.0000","0.03610","0.03610" +"GO:0046486","glycerolipid metabolic process",40,3,2.4,283,"0.4349","0.03640","0.03640" +"GO:0031344","regulation of cell projection organizati...",34,5,2.04,22,"0.0494","0.03929","0.03929" +"GO:0120035","regulation of plasma membrane bounded ce...",34,5,2.04,23,"0.0494","0.03929","0.03929" +"GO:0008202","steroid metabolic process",17,1,1.02,516,"0.6524","0.03932","0.03932" +"GO:0006836","neurotransmitter transport",23,0,1.38,836,"1.0000","0.03959","0.03959" +"GO:0007154","cell communication",488,33,29.3,159,"0.2416","0.00264","0.03972" +"GO:0007167","enzyme linked receptor protein signaling...",42,2,2.52,601,"0.7296","0.04146","0.04146" +"GO:0001667","ameboidal-type cell migration",17,1,1.02,517,"0.6524","0.04153","0.04153" +"GO:0006650","glycerophospholipid metabolic process",34,3,2.04,211,"0.3348","0.04304","0.04304" +"GO:0044087","regulation of cellular component biogene...",60,6,3.6,80,"0.1473","0.04334","0.04334" +"GO:0048666","neuron development",72,7,4.32,69,"0.1371","0.04355","0.04355" +"GO:0031175","neuron projection development",53,7,3.18,18,"0.0364","0.04378","0.04378" +"GO:0001817","regulation of cytokine production",24,2,1.44,269,"0.4277","0.04482","0.04482" +"GO:0010720","positive regulation of cell development",21,2,1.26,230,"0.3625","0.04573","0.04573" +"GO:2001234","negative regulation of apoptotic signali...",11,1,0.66,330,"0.4948","0.04606","0.04606" +"GO:0010506","regulation of autophagy",17,1,1.02,518,"0.6524","0.04686","0.04686" +"GO:0051240","positive regulation of multicellular org...",70,8,4.2,25,"0.0552","0.04788","0.04788" +"GO:0043254","regulation of protein complex assembly",27,3,1.62,138,"0.2182","0.04832","0.04832" +"GO:0090066","regulation of anatomical structure size",25,2,1.5,289,"0.4486","0.04981","0.04981" +"GO:0065008","regulation of biological quality",183,11,10.99,396,"0.5475","0.05083","0.05083" +"GO:0010631","epithelial cell migration",14,1,0.84,427,"0.5809","0.05179","0.05179" +"GO:0060341","regulation of cellular localization",38,4,2.28,115,"0.1909","0.05326","0.05326" +"GO:0032990","cell part morphogenesis",40,3,2.4,284,"0.4349","0.05358","0.05358" +"GO:0043087","regulation of GTPase activity",24,2,1.44,270,"0.4277","0.05577","0.05577" +"GO:0006629","lipid metabolic process",139,8,8.35,449,"0.6057","0.05735","0.05735" +"GO:0001505","regulation of neurotransmitter levels",24,3,1.44,94,"0.1712","0.05913","0.05913" +"GO:0007169","transmembrane receptor protein tyrosine ...",21,2,1.26,231,"0.3625","0.06011","0.06011" +"GO:0007269","neurotransmitter secretion",10,0,0.6,837,"1.0000","0.06047","0.06047" +"GO:0099643","signal release from synapse",10,0,0.6,838,"1.0000","0.06047","0.06047" +"GO:1990778","protein localization to cell periphery",12,1,0.72,360,"0.5253","0.06194","0.06194" +"GO:0007611","learning or memory",18,5,1.08,3,"0.0033","0.06240","0.06240" +"GO:0009607","response to biotic stimulus",24,2,1.44,271,"0.4277","0.06322","0.06322" +"GO:0043207","response to external biotic stimulus",24,2,1.44,272,"0.4277","0.06322","0.06322" +"GO:0051707","response to other organism",24,2,1.44,273,"0.4277","0.06322","0.06322" +"GO:0098742","cell-cell adhesion via plasma-membrane a...",17,3,1.02,31,"0.0776","0.06380","0.06380" +"GO:0048812","neuron projection morphogenesis",39,3,2.34,257,"0.4185","0.06473","0.06473" +"GO:0048858","cell projection morphogenesis",39,3,2.34,258,"0.4185","0.06473","0.06473" +"GO:0120039","plasma membrane bounded cell projection ...",39,3,2.34,259,"0.4185","0.06473","0.06473" +"GO:0048514","blood vessel morphogenesis",26,2,1.56,314,"0.4692","0.06597","0.06597" +"GO:0050890","cognition",21,5,1.26,7,"0.0067","0.06675","0.06675" +"GO:0046578","regulation of Ras protein signal transdu...",31,2,1.86,418,"0.5646","0.06677","0.06677" +"GO:0050769","positive regulation of neurogenesis",19,2,1.14,203,"0.3176","0.06816","0.06816" +"GO:0072001","renal system development",14,1,0.84,428,"0.5809","0.07095","0.07095" +"GO:1902275","regulation of chromatin organization",12,0,0.72,839,"1.0000","0.07161","0.07161" +"GO:0022603","regulation of anatomical structure morph...",44,3,2.64,350,"0.4985","0.07236","0.07236" +"GO:0010033","response to organic substance",116,7,6.97,398,"0.5535","0.07237","0.07237" +"GO:0008544","epidermis development",12,0,0.72,840,"1.0000","0.07552","0.07552" +"GO:0048738","cardiac muscle tissue development",16,1,0.96,484,"0.6300","0.07559","0.07559" +"GO:0044272","sulfur compound biosynthetic process",10,2,0.6,49,"0.1174","0.07719","0.07719" +"GO:0007010","cytoskeleton organization",105,4,6.3,744,"0.8877","0.07776","0.07776" +"GO:0072659","protein localization to plasma membrane",11,1,0.66,331,"0.4948","0.07819","0.07819" +"GO:0050821","protein stabilization",11,0,0.66,841,"1.0000","0.07819","0.07819" +"GO:0006470","protein dephosphorylation",34,4,2.04,78,"0.1434","0.07953","0.07953" +"GO:0070887","cellular response to chemical stimulus",112,8,6.73,229,"0.3577","0.08143","0.08143" +"GO:0031349","positive regulation of defense response",11,1,0.66,332,"0.4948","0.08207","0.08207" +"GO:0045089","positive regulation of innate immune res...",11,1,0.66,333,"0.4948","0.08207","0.08207" +"GO:0050768","negative regulation of neurogenesis",10,2,0.6,50,"0.1174","0.08490","0.08490" +"GO:0046488","phosphatidylinositol metabolic process",21,2,1.26,232,"0.3625","0.08811","0.08811" +"GO:0051668","localization within membrane",11,4,0.66,2,"0.0029","0.09010","0.09010" +"GO:0032101","regulation of response to external stimu...",14,0,0.84,842,"1.0000","0.09033","0.09033" +"GO:0051093","negative regulation of developmental pro...",48,4,2.88,210,"0.3250","0.09101","0.09101" +"GO:0060537","muscle tissue development",29,1,1.74,684,"0.8360","0.09178","0.09178" +"GO:0051047","positive regulation of secretion",13,3,0.78,19,"0.0388","0.09280","0.09280" +"GO:0080135","regulation of cellular response to stres...",30,2,1.8,389,"0.5465","0.09466","0.09466" +"GO:0032271","regulation of protein polymerization",21,2,1.26,233,"0.3625","0.09617","0.09617" +"GO:0044255","cellular lipid metabolic process",98,6,5.88,387,"0.5433","0.09809","0.09809" +"GO:0031056","regulation of histone modification",11,0,0.66,843,"1.0000","0.09964","0.09964" +"GO:0010975","regulation of neuron projection developm...",22,5,1.32,8,"0.0083","0.10091","0.10091" +"GO:0016049","cell growth",22,1,1.32,608,"0.7457","0.10091","0.10091" +"GO:0006887","exocytosis",24,1,1.44,634,"0.7756","0.10099","0.10099" +"GO:0051129","negative regulation of cellular componen...",42,4,2.52,160,"0.2426","0.10115","0.10115" +"GO:0044089","positive regulation of cellular componen...",37,4,2.22,99,"0.1786","0.10146","0.10146" +"GO:1903829","positive regulation of cellular protein ...",14,0,0.84,844,"1.0000","0.10154","0.10154" +"GO:0043062","extracellular structure organization",14,2,0.84,120,"0.2037","0.10404","0.10404" +"GO:0031329","regulation of cellular catabolic process",34,2,2.04,474,"0.6158","0.10591","0.10591" +"GO:0051494","negative regulation of cytoskeleton orga...",14,2,0.84,121,"0.2037","0.10591","0.10591" +"GO:0006694","steroid biosynthetic process",14,0,0.84,845,"1.0000","0.10619","0.10619" +"GO:0016197","endosomal transport",24,2,1.44,274,"0.4277","0.10703","0.10703" +"GO:1903530","regulation of secretion by cell",16,3,0.96,27,"0.0667","0.10745","0.10745" +"GO:0006793","phosphorus metabolic process",352,22,21.14,296,"0.4549","0.00869","0.11112" +"GO:0044770","cell cycle phase transition",17,1,1.02,519,"0.6524","0.11161","0.11161" +"GO:0051258","protein polymerization",24,2,1.44,275,"0.4277","0.11483","0.11483" +"GO:0010769","regulation of cell morphogenesis involve...",13,1,0.78,399,"0.5540","0.11668","0.11668" +"GO:0050896","response to stimulus",641,41,38.49,222,"0.3416","0.00700","0.11783" +"GO:0008284","positive regulation of cell proliferatio...",25,3,1.5,114,"0.1866","0.11845","0.11845" +"GO:0006796","phosphate-containing compound metabolic ...",350,21,21.02,383,"0.5408","0.00961","0.11925" +"GO:0032989","cellular component morphogenesis",76,4,4.56,555,"0.6809","0.12091","0.12091" +"GO:0051241","negative regulation of multicellular org...",46,3,2.76,376,"0.5290","0.12097","0.12097" +"GO:0060322","head development",47,4,2.82,200,"0.3111","0.12127","0.12127" +"GO:0051056","regulation of small GTPase mediated sign...",37,3,2.22,243,"0.3853","0.12148","0.12148" +"GO:0051130","positive regulation of cellular componen...",72,6,4.32,172,"0.2615","0.12440","0.12440" +"GO:0098542","defense response to other organism",17,2,1.02,177,"0.2720","0.12599","0.12599" +"GO:0009617","response to bacterium",17,0,1.02,846,"1.0000","0.12599","0.12599" +"GO:0043244","regulation of protein complex disassembl...",10,0,0.6,847,"1.0000","0.12649","0.12649" +"GO:1901617","organic hydroxy compound biosynthetic pr...",17,0,1.02,848,"1.0000","0.12733","0.12733" +"GO:0001944","vasculature development",30,2,1.8,390,"0.5465","0.12838","0.12838" +"GO:0072358","cardiovascular system development",30,2,1.8,391,"0.5465","0.12838","0.12838" +"GO:0005996","monosaccharide metabolic process",13,2,0.78,103,"0.1813","0.12902","0.12902" +"GO:0019318","hexose metabolic process",13,2,0.78,104,"0.1813","0.12902","0.12902" +"GO:0007265","Ras protein signal transduction",35,2,2.1,506,"0.6318","0.12903","0.12903" +"GO:0023061","signal release",17,1,1.02,520,"0.6524","0.12943","0.12943" +"GO:0031400","negative regulation of protein modificat...",34,1,2.04,731,"0.8802","0.12970","0.12970" +"GO:0007507","heart development",44,2,2.64,617,"0.7532","0.13128","0.13128" +"GO:0032268","regulation of cellular protein metabolic...",104,4,6.24,735,"0.8832","0.13351","0.13351" +"GO:0010639","negative regulation of organelle organiz...",27,2,1.62,324,"0.4892","0.13424","0.13424" +"GO:0014706","striated muscle tissue development",27,1,1.62,665,"0.8141","0.13506","0.13506" +"GO:0007517","muscle organ development",31,2,1.86,419,"0.5646","0.13568","0.13568" +"GO:0051606","detection of stimulus",16,1,0.96,485,"0.6300","0.13691","0.13691" +"GO:0006869","lipid transport",21,2,1.26,234,"0.3625","0.13788","0.13788" +"GO:0045088","regulation of innate immune response",14,1,0.84,429,"0.5809","0.13854","0.13854" +"GO:0120036","plasma membrane bounded cell projection ...",83,8,4.98,57,"0.1209","0.13879","0.13879" +"GO:2000027","regulation of animal organ morphogenesis",12,0,0.72,849,"1.0000","0.13891","0.13891" +"GO:0044057","regulation of system process",21,3,1.26,63,"0.1278","0.13933","0.13933" +"GO:0016358","dendrite development",16,3,0.96,28,"0.0667","0.13958","0.13958" +"GO:0043543","protein acylation",23,0,1.38,850,"1.0000","0.13967","0.13967" +"GO:0001568","blood vessel development",28,2,1.68,355,"0.5088","0.14029","0.14029" +"GO:0048583","regulation of response to stimulus",185,13,11.11,201,"0.3151","0.14111","0.14111" +"GO:0007420","brain development",45,4,2.7,185,"0.2834","0.14348","0.14348" +"GO:0007015","actin filament organization",37,4,2.22,100,"0.1786","0.14352","0.14352" +"GO:1902903","regulation of supramolecular fiber organ...",28,3,1.68,153,"0.2344","0.14364","0.14364" +"GO:0097435","supramolecular fiber organization",60,4,3.6,327,"0.4910","0.14494","0.14494" +"GO:0050773","regulation of dendrite development",12,2,0.72,87,"0.1594","0.14667","0.14667" +"GO:1903532","positive regulation of secretion by cell",11,3,0.66,11,"0.0245","0.14810","0.14810" +"GO:0051962","positive regulation of nervous system de...",20,2,1.2,218,"0.3401","0.14856","0.14856" +"GO:0031346","positive regulation of cell projection o...",15,2,0.9,142,"0.2263","0.14987","0.14987" +"GO:0045666","positive regulation of neuron differenti...",15,2,0.9,143,"0.2263","0.14987","0.14987" +"GO:0030041","actin filament polymerization",17,2,1.02,178,"0.2720","0.14991","0.14991" +"GO:0001822","kidney development",11,1,0.66,334,"0.4948","0.15037","0.15037" +"GO:0035051","cardiocyte differentiation",11,1,0.66,335,"0.4948","0.15054","0.15054" +"GO:0016192","vesicle-mediated transport",135,9,8.11,265,"0.4229","0.15383","0.15383" +"GO:0001745","compound eye morphogenesis",12,0,0.72,851,"1.0000","0.15387","0.15387" +"GO:0006513","protein monoubiquitination",13,1,0.78,400,"0.5540","0.15454","0.15454" +"GO:0071310","cellular response to organic substance",90,6,5.4,298,"0.4580","0.15481","0.15481" +"GO:0016477","cell migration",49,5,2.94,92,"0.1675","0.09974","0.15574" +"GO:1903320","regulation of protein modification by sm...",12,0,0.72,852,"1.0000","0.15708","0.15708" +"GO:0060538","skeletal muscle organ development",16,1,0.96,486,"0.6300","0.15717","0.15717" +"GO:0032535","regulation of cellular component size",20,2,1.2,219,"0.3401","0.15874","0.15874" +"GO:0031347","regulation of defense response",18,1,1.08,540,"0.6735","0.15879","0.15879" +"GO:0045445","myoblast differentiation",10,0,0.6,853,"1.0000","0.15985","0.15985" +"GO:0045661","regulation of myoblast differentiation",10,0,0.6,854,"1.0000","0.15985","0.15985" +"GO:0007417","central nervous system development",56,6,3.36,48,"0.1156","0.16064","0.16064" +"GO:0042493","response to drug",38,4,2.28,116,"0.1909","0.16081","0.16081" +"GO:0043624","cellular protein complex disassembly",11,0,0.66,855,"1.0000","0.16197","0.16197" +"GO:0044772","mitotic cell cycle phase transition",15,1,0.9,451,"0.6062","0.16284","0.16284" +"GO:0016311","dephosphorylation",48,5,2.88,85,"0.1575","0.16287","0.16287" +"GO:0030036","actin cytoskeleton organization",72,4,4.32,508,"0.6383","0.16314","0.16314" +"GO:0048585","negative regulation of response to stimu...",71,4,4.26,481,"0.6271","0.16570","0.16570" +"GO:0006816","calcium ion transport",22,1,1.32,609,"0.7457","0.16627","0.16627" +"GO:0031331","positive regulation of cellular cataboli...",16,1,0.96,487,"0.6300","0.16750","0.16750" +"GO:0009894","regulation of catabolic process",40,2,2.4,572,"0.7042","0.16806","0.16806" +"GO:0045087","innate immune response",22,1,1.32,610,"0.7457","0.16928","0.16928" +"GO:0051248","negative regulation of protein metabolic...",51,2,3.06,673,"0.8224","0.16932","0.16932" +"GO:0019932","second-messenger-mediated signaling",13,1,0.78,401,"0.5540","0.17061","0.17061" +"GO:0001819","positive regulation of cytokine producti...",13,1,0.78,402,"0.5540","0.17218","0.17218" +"GO:0006310","DNA recombination",13,0,0.78,856,"1.0000","0.17218","0.17218" +"GO:0001816","cytokine production",26,2,1.56,315,"0.4692","0.17355","0.17355" +"GO:0042127","regulation of cell proliferation",52,7,3.12,15,"0.0332","0.17391","0.17391" +"GO:0000904","cell morphogenesis involved in different...",41,2,2.46,589,"0.7171","0.17515","0.17515" +"GO:0034968","histone lysine methylation",12,1,0.72,361,"0.5253","0.17780","0.17780" +"GO:0051090","regulation of DNA-binding transcription ...",12,0,0.72,857,"1.0000","0.17798","0.17798" +"GO:0051094","positive regulation of developmental pro...",72,6,4.32,173,"0.2615","0.17806","0.17806" +"GO:0016482","cytosolic transport",20,1,1.2,575,"0.7118","0.17957","0.17957" +"GO:0051641","cellular localization",196,14,11.77,186,"0.2836","0.18130","0.18130" +"GO:0051649","establishment of localization in cell",158,12,9.49,157,"0.2350","0.18338","0.18338" +"GO:0051050","positive regulation of transport",43,4,2.58,170,"0.2561","0.18428","0.18428" +"GO:0009266","response to temperature stimulus",15,1,0.9,452,"0.6062","0.18583","0.18583" +"GO:0048729","tissue morphogenesis",55,2,3.3,698,"0.8537","0.18605","0.18605" +"GO:0007519","skeletal muscle tissue development",15,0,0.9,858,"1.0000","0.18747","0.18747" +"GO:0032970","regulation of actin filament-based proce...",36,3,2.16,238,"0.3685","0.18926","0.18926" +"GO:0016569","covalent chromatin modification",47,2,2.82,644,"0.7853","0.19059","0.19059" +"GO:0016571","histone methylation",15,1,0.9,453,"0.6062","0.19077","0.19077" +"GO:0021700","developmental maturation",16,0,0.96,859,"1.0000","0.19170","0.19170" +"GO:0032880","regulation of protein localization",40,4,2.4,136,"0.2163","0.19316","0.19316" +"GO:0010638","positive regulation of organelle organiz...",45,2,2.7,625,"0.7644","0.19320","0.19320" +"GO:0070838","divalent metal ion transport",24,1,1.44,635,"0.7756","0.19338","0.19338" +"GO:0072511","divalent inorganic cation transport",24,1,1.44,636,"0.7756","0.19338","0.19338" +"GO:0032984","protein-containing complex disassembly",18,0,1.08,860,"1.0000","0.19816","0.19816" +"GO:0009605","response to external stimulus",91,5,5.46,515,"0.6489","0.20044","0.20044" +"GO:0031396","regulation of protein ubiquitination",11,0,0.66,861,"1.0000","0.20100","0.20100" +"GO:0031334","positive regulation of protein complex a...",19,1,1.14,562,"0.6932","0.20217","0.20217" +"GO:0051246","regulation of protein metabolic process",115,4,6.91,772,"0.9252","0.20404","0.20404" +"GO:0022411","cellular component disassembly",24,0,1.44,862,"1.0000","0.20505","0.20505" +"GO:0014902","myotube differentiation",12,0,0.72,863,"1.0000","0.20524","0.20524" +"GO:0051091","positive regulation of DNA-binding trans...",11,0,0.66,864,"1.0000","0.20546","0.20546" +"GO:0009896","positive regulation of catabolic process",20,1,1.2,576,"0.7118","0.20566","0.20566" +"GO:0032956","regulation of actin cytoskeleton organiz...",28,3,1.68,154,"0.2344","0.20703","0.20703" +"GO:0110053","regulation of actin filament organizatio...",22,3,1.32,76,"0.1418","0.21063","0.21063" +"GO:0055002","striated muscle cell development",19,1,1.14,563,"0.6932","0.21076","0.21076" +"GO:0098609","cell-cell adhesion",53,6,3.18,43,"0.0944","0.21103","0.21103" +"GO:0002443","leukocyte mediated immunity",10,0,0.6,865,"1.0000","0.21205","0.21205" +"GO:0000902","cell morphogenesis",60,4,3.6,328,"0.4910","0.21394","0.21394" +"GO:0001655","urogenital system development",17,1,1.02,521,"0.6524","0.21626","0.21626" +"GO:0003013","circulatory system process",15,2,0.9,144,"0.2263","0.21639","0.21639" +"GO:0008015","blood circulation",15,2,0.9,145,"0.2263","0.21639","0.21639" +"GO:0006040","amino sugar metabolic process",15,2,0.9,146,"0.2263","0.22004","0.22004" +"GO:1901071","glucosamine-containing compound metaboli...",15,2,0.9,147,"0.2263","0.22004","0.22004" +"GO:0048523","negative regulation of cellular process",196,13,11.77,247,"0.3950","0.13367","0.22023" +"GO:0051049","regulation of transport",76,6,4.56,199,"0.3039","0.22192","0.22192" +"GO:0007178","transmembrane receptor protein serine/th...",25,1,1.5,648,"0.7892","0.22316","0.22316" +"GO:0048705","skeletal system morphogenesis",10,0,0.6,866,"1.0000","0.22374","0.22374" +"GO:0030029","actin filament-based process",75,4,4.5,537,"0.6705","0.22413","0.22413" +"GO:0051493","regulation of cytoskeleton organization",36,3,2.16,239,"0.3685","0.22468","0.22468" +"GO:0031647","regulation of protein stability",17,0,1.02,867,"1.0000","0.22655","0.22655" +"GO:0042462","eye photoreceptor cell development",12,0,0.72,868,"1.0000","0.22718","0.22718" +"GO:0030030","cell projection organization",86,8,5.16,75,"0.1403","0.22802","0.22802" +"GO:0006081","cellular aldehyde metabolic process",11,0,0.66,869,"1.0000","0.22875","0.22875" +"GO:0008064","regulation of actin polymerization or de...",17,2,1.02,179,"0.2720","0.23062","0.23062" +"GO:0030832","regulation of actin filament length",17,2,1.02,180,"0.2720","0.23062","0.23062" +"GO:0002064","epithelial cell development",18,1,1.08,541,"0.6735","0.23182","0.23182" +"GO:0061061","muscle structure development",50,4,3,228,"0.3531","0.23187","0.23187" +"GO:0045596","negative regulation of cell differentiat...",39,4,2.34,118,"0.2035","0.23356","0.23356" +"GO:0002252","immune effector process",24,2,1.44,276,"0.4277","0.23463","0.23463" +"GO:0002009","morphogenesis of an epithelium",50,2,3,663,"0.8137","0.23795","0.23795" +"GO:0009581","detection of external stimulus",13,0,0.78,870,"1.0000","0.23897","0.23897" +"GO:0009582","detection of abiotic stimulus",13,0,0.78,871,"1.0000","0.23897","0.23897" +"GO:0008283","cell proliferation",63,8,3.78,14,"0.0321","0.23962","0.23962" +"GO:0040013","negative regulation of locomotion",13,4,0.78,6,"0.0058","0.00218","0.24054" +"GO:0031399","regulation of protein modification proce...",78,3,4.68,702,"0.8592","0.24057","0.24057" +"GO:0002684","positive regulation of immune system pro...",28,4,1.68,33,"0.0830","0.24397","0.24397" +"GO:0015718","monocarboxylic acid transport",10,2,0.6,51,"0.1174","0.24417","0.24417" +"GO:0008154","actin polymerization or depolymerization",20,2,1.2,220,"0.3401","0.24473","0.24473" +"GO:0048608","reproductive structure development",18,1,1.08,542,"0.6735","0.24497","0.24497" +"GO:0033044","regulation of chromosome organization",18,0,1.08,872,"1.0000","0.24497","0.24497" +"GO:0099504","synaptic vesicle cycle",13,2,0.78,105,"0.1813","0.24887","0.24887" +"GO:0030855","epithelial cell differentiation",30,1,1.8,692,"0.8460","0.25063","0.25063" +"GO:0050807","regulation of synapse organization",14,2,0.84,122,"0.2037","0.25294","0.25294" +"GO:0003007","heart morphogenesis",19,0,1.14,873,"1.0000","0.25412","0.25412" +"GO:0016570","histone modification",45,2,2.7,626,"0.7644","0.25525","0.25525" +"GO:0030239","myofibril assembly",16,1,0.96,488,"0.6300","0.25861","0.25861" +"GO:0006417","regulation of translation",15,1,0.9,454,"0.6062","0.25874","0.25874" +"GO:0034248","regulation of cellular amide metabolic p...",15,1,0.9,455,"0.6062","0.25874","0.25874" +"GO:0009893","positive regulation of metabolic process",131,5,7.87,758,"0.9067","0.26027","0.26027" +"GO:0009408","response to heat",12,1,0.72,362,"0.5253","0.26068","0.26068" +"GO:0048667","cell morphogenesis involved in neuron di...",31,2,1.86,420,"0.5646","0.26191","0.26191" +"GO:0065007","biological regulation",941,52,56.5,671,"0.8192","0.03313","0.26207" +"GO:1902531","regulation of intracellular signal trans...",91,7,5.46,197,"0.3036","0.26371","0.26371" +"GO:0072359","circulatory system development",62,3,3.72,603,"0.7314","0.26525","0.26525" +"GO:0001503","ossification",13,0,0.78,874,"1.0000","0.26553","0.26553" +"GO:0042221","response to chemical",183,11,10.99,397,"0.5475","0.26579","0.26579" +"GO:0045214","sarcomere organization",11,1,0.66,336,"0.4948","0.26636","0.26636" +"GO:0051961","negative regulation of nervous system de...",12,2,0.72,88,"0.1594","0.26678","0.26678" +"GO:1902532","negative regulation of intracellular sig...",30,3,1.8,176,"0.2675","0.26763","0.26763" +"GO:0043547","positive regulation of GTPase activity",16,1,0.96,489,"0.6300","0.26768","0.26768" +"GO:0006066","alcohol metabolic process",18,1,1.08,543,"0.6735","0.26781","0.26781" +"GO:0048519","negative regulation of biological proces...",226,14,13.57,329,"0.4945","0.17277","0.26849" +"GO:0015711","organic anion transport",28,2,1.68,356,"0.5088","0.26902","0.26902" +"GO:0048870","cell motility",55,5,3.3,150,"0.2320","0.17551","0.27223" +"GO:0051674","localization of cell",55,5,3.3,151,"0.2320","0.17551","0.27223" +"GO:0051301","cell division",22,2,1.32,240,"0.3846","0.27265","0.27265" +"GO:0040012","regulation of locomotion",37,4,2.22,101,"0.1786","0.13246","0.27297" +"GO:0007163","establishment or maintenance of cell pol...",17,0,1.02,875,"1.0000","0.27486","0.27486" +"GO:0008016","regulation of heart contraction",12,1,0.72,363,"0.5253","0.27498","0.27498" +"GO:1903522","regulation of blood circulation",12,1,0.72,364,"0.5253","0.27498","0.27498" +"GO:0043161","proteasome-mediated ubiquitin-dependent ...",19,0,1.14,876,"1.0000","0.27543","0.27543" +"GO:0030100","regulation of endocytosis",16,1,0.96,490,"0.6300","0.27756","0.27756" +"GO:0001525","angiogenesis",19,2,1.14,204,"0.3176","0.27827","0.27827" +"GO:0045165","cell fate commitment",21,2,1.26,235,"0.3625","0.28006","0.28006" +"GO:0030833","regulation of actin filament polymerizat...",16,2,0.96,161,"0.2491","0.28056","0.28056" +"GO:0022604","regulation of cell morphogenesis",21,1,1.26,597,"0.7293","0.28088","0.28088" +"GO:0009611","response to wounding",30,2,1.8,392,"0.5465","0.28340","0.28340" +"GO:0001666","response to hypoxia",12,1,0.72,365,"0.5253","0.28380","0.28380" +"GO:0002066","columnar/cuboidal epithelial cell develo...",12,1,0.72,366,"0.5253","0.28380","0.28380" +"GO:0030707","ovarian follicle cell development",12,1,0.72,367,"0.5253","0.28380","0.28380" +"GO:0036293","response to decreased oxygen levels",12,1,0.72,368,"0.5253","0.28380","0.28380" +"GO:0070482","response to oxygen levels",12,1,0.72,369,"0.5253","0.28380","0.28380" +"GO:0072657","protein localization to membrane",29,3,1.74,165,"0.2509","0.28535","0.28535" +"GO:0051239","regulation of multicellular organismal p...",136,12,8.17,45,"0.1104","0.02058","0.28637" +"GO:0048699","generation of neurons",96,8,5.76,135,"0.2151","0.04571","0.28807" +"GO:0008285","negative regulation of cell proliferatio...",21,4,1.26,17,"0.0335","0.29077","0.29077" +"GO:0001558","regulation of cell growth",17,0,1.02,877,"1.0000","0.29579","0.29579" +"GO:0051640","organelle localization",34,4,2.04,79,"0.1434","0.29751","0.29751" +"GO:0032269","negative regulation of cellular protein ...",45,2,2.7,627,"0.7644","0.29842","0.29842" +"GO:0019637","organophosphate metabolic process",113,5,6.79,672,"0.8224","0.30463","0.30463" +"GO:0048469","cell maturation",12,0,0.72,878,"1.0000","0.30573","0.30573" +"GO:0042133","neurotransmitter metabolic process",10,3,0.6,10,"0.0186","0.30612","0.30612" +"GO:0048513","animal organ development",173,7,10.39,761,"0.9090","0.30641","0.30641" +"GO:0007613","memory",11,2,0.66,70,"0.1380","0.30733","0.30733" +"GO:0003015","heart process",13,1,0.78,403,"0.5540","0.30787","0.30787" +"GO:0060047","heart contraction",13,1,0.78,404,"0.5540","0.30787","0.30787" +"GO:0055074","calcium ion homeostasis",19,3,1.14,44,"0.1014","0.30817","0.30817" +"GO:0090316","positive regulation of intracellular pro...",10,0,0.6,879,"1.0000","0.30819","0.30819" +"GO:0000910","cytokinesis",13,0,0.78,880,"1.0000","0.30860","0.30860" +"GO:0043414","macromolecule methylation",31,2,1.86,421,"0.5646","0.30906","0.30906" +"GO:0033865","nucleoside bisphosphate metabolic proces...",10,0,0.6,881,"1.0000","0.31097","0.31097" +"GO:0033875","ribonucleoside bisphosphate metabolic pr...",10,0,0.6,882,"1.0000","0.31097","0.31097" +"GO:0034032","purine nucleoside bisphosphate metabolic...",10,0,0.6,883,"1.0000","0.31097","0.31097" +"GO:0007612","learning",12,3,0.72,13,"0.0312","0.31104","0.31104" +"GO:0044283","small molecule biosynthetic process",50,3,3,443,"0.5868","0.31244","0.31244" +"GO:0051147","regulation of muscle cell differentiatio...",10,1,0.6,300,"0.4624","0.31586","0.31586" +"GO:0051153","regulation of striated muscle cell diffe...",10,1,0.6,301,"0.4624","0.31586","0.31586" +"GO:0016202","regulation of striated muscle tissue dev...",10,0,0.6,884,"1.0000","0.31586","0.31586" +"GO:0048634","regulation of muscle organ development",10,0,0.6,885,"1.0000","0.31586","0.31586" +"GO:1901861","regulation of muscle tissue development",10,0,0.6,886,"1.0000","0.31586","0.31586" +"GO:0006996","organelle organization",274,11,16.45,792,"0.9536","0.31589","0.31589" +"GO:0010721","negative regulation of cell development",13,2,0.78,106,"0.1813","0.31607","0.31607" +"GO:0045055","regulated exocytosis",11,0,0.66,887,"1.0000","0.31610","0.31610" +"GO:0097164","ammonium ion metabolic process",12,2,0.72,89,"0.1594","0.31666","0.31666" +"GO:0042461","photoreceptor cell development",13,0,0.78,888,"1.0000","0.31780","0.31780" +"GO:0000209","protein polyubiquitination",18,0,1.08,889,"1.0000","0.31886","0.31886" +"GO:0009719","response to endogenous stimulus",70,2,4.2,778,"0.9314","0.31915","0.31915" +"GO:0050793","regulation of developmental process",125,11,7.51,62,"0.1250","0.02156","0.31924" +"GO:0045595","regulation of cell differentiation",83,7,4.98,148,"0.2276","0.01727","0.31942" +"GO:0002520","immune system development",35,3,2.1,225,"0.3517","0.32032","0.32032" +"GO:0010976","positive regulation of neuron projection...",11,2,0.66,71,"0.1380","0.32189","0.32189" +"GO:0055001","muscle cell development",20,1,1.2,577,"0.7118","0.32294","0.32294" +"GO:0018205","peptidyl-lysine modification",29,1,1.74,685,"0.8360","0.32485","0.32485" +"GO:0009314","response to radiation",20,3,1.2,46,"0.1143","0.32546","0.32546" +"GO:0050877","nervous system process",51,7,3.06,12,"0.0302","0.32634","0.32634" +"GO:0036503","ERAD pathway",10,0,0.6,890,"1.0000","0.32649","0.32649" +"GO:0022008","neurogenesis",97,8,5.82,141,"0.2234","0.03898","0.32772" +"GO:0006813","potassium ion transport",18,2,1.08,193,"0.2948","0.33025","0.33025" +"GO:0007268","chemical synaptic transmission",34,2,2.04,475,"0.6158","0.33039","0.33039" +"GO:0098916","anterograde trans-synaptic signaling",34,2,2.04,476,"0.6158","0.33039","0.33039" +"GO:0099536","synaptic signaling",34,2,2.04,477,"0.6158","0.33039","0.33039" +"GO:0099537","trans-synaptic signaling",34,2,2.04,478,"0.6158","0.33039","0.33039" +"GO:0006914","autophagy",37,2,2.22,534,"0.6623","0.33081","0.33081" +"GO:0061919","process utilizing autophagic mechanism",37,2,2.22,535,"0.6623","0.33081","0.33081" +"GO:0071363","cellular response to growth factor stimu...",26,1,1.56,657,"0.8020","0.33321","0.33321" +"GO:0003006","developmental process involved in reprod...",54,2,3.24,694,"0.8464","0.33487","0.33487" +"GO:0031325","positive regulation of cellular metaboli...",117,5,7.03,691,"0.8451","0.33519","0.33519" +"GO:0050776","regulation of immune response",26,1,1.56,658,"0.8020","0.33600","0.33600" +"GO:0002790","peptide secretion",14,1,0.84,430,"0.5809","0.33633","0.33633" +"GO:0009306","protein secretion",14,1,0.84,431,"0.5809","0.33633","0.33633" +"GO:0048592","eye morphogenesis",27,0,1.62,891,"1.0000","0.33720","0.33720" +"GO:0033554","cellular response to stress",93,3,5.58,774,"0.9274","0.33771","0.33771" +"GO:0032879","regulation of localization",123,9,7.39,202,"0.3169","0.24681","0.33861" +"GO:0018022","peptidyl-lysine methylation",13,1,0.78,405,"0.5540","0.33882","0.33882" +"GO:0048568","embryonic organ development",30,2,1.8,393,"0.5465","0.33946","0.33946" +"GO:0034097","response to cytokine",20,1,1.2,578,"0.7118","0.33980","0.33980" +"GO:0010629","negative regulation of gene expression",84,4,5.04,618,"0.7553","0.33983","0.33983" +"GO:0007033","vacuole organization",12,1,0.72,370,"0.5253","0.34092","0.34092" +"GO:0009108","coenzyme biosynthetic process",27,1,1.62,666,"0.8141","0.34229","0.34229" +"GO:0006952","defense response",44,3,2.64,351,"0.4985","0.34406","0.34406" +"GO:0006030","chitin metabolic process",13,2,0.78,107,"0.1813","0.34423","0.34423" +"GO:0071804","cellular potassium ion transport",10,1,0.6,302,"0.4624","0.34464","0.34464" +"GO:0071805","potassium ion transmembrane transport",10,1,0.6,303,"0.4624","0.34464","0.34464" +"GO:0050806","positive regulation of synaptic transmis...",10,2,0.6,52,"0.1174","0.34464","0.34464" +"GO:0046907","intracellular transport",140,11,8.41,134,"0.2147","0.34528","0.34528" +"GO:0050778","positive regulation of immune response",22,1,1.32,611,"0.7457","0.34637","0.34637" +"GO:0051235","maintenance of location",20,0,1.2,892,"1.0000","0.34657","0.34657" +"GO:0051259","protein complex oligomerization",21,3,1.26,64,"0.1278","0.34970","0.34970" +"GO:0070848","response to growth factor",27,1,1.62,667,"0.8141","0.35268","0.35268" +"GO:0030258","lipid modification",18,1,1.08,544,"0.6735","0.35312","0.35312" +"GO:0051495","positive regulation of cytoskeleton orga...",23,1,1.38,619,"0.7611","0.35527","0.35527" +"GO:0010498","proteasomal protein catabolic process",23,0,1.38,893,"1.0000","0.35587","0.35587" +"GO:0035107","appendage morphogenesis",13,1,0.78,406,"0.5540","0.35596","0.35596" +"GO:0070588","calcium ion transmembrane transport",16,1,0.96,491,"0.6300","0.35935","0.35935" +"GO:0030198","extracellular matrix organization",12,1,0.72,371,"0.5253","0.35964","0.35964" +"GO:0061572","actin filament bundle organization",12,2,0.72,90,"0.1594","0.35964","0.35964" +"GO:0048534","hematopoietic or lymphoid organ developm...",34,3,2.04,212,"0.3348","0.36095","0.36095" +"GO:0006811","ion transport",173,16,10.39,24,"0.0501","0.36247","0.36247" +"GO:0010648","negative regulation of cell communicatio...",61,3,3.66,591,"0.7211","0.36278","0.36278" +"GO:0023057","negative regulation of signaling",61,3,3.66,592,"0.7211","0.36278","0.36278" +"GO:0002376","immune system process",91,7,5.46,198,"0.3036","0.36293","0.36293" +"GO:0016042","lipid catabolic process",22,1,1.32,612,"0.7457","0.36458","0.36458" +"GO:0060429","epithelium development",72,2,4.32,785,"0.9382","0.36553","0.36553" +"GO:0010646","regulation of cell communication",167,11,10.03,264,"0.4203","0.36634","0.36634" +"GO:0007292","female gamete generation",26,2,1.56,316,"0.4692","0.36646","0.36646" +"GO:0060491","regulation of cell projection assembly",16,0,0.96,894,"1.0000","0.36835","0.36835" +"GO:0120032","regulation of plasma membrane bounded ce...",16,0,0.96,895,"1.0000","0.36835","0.36835" +"GO:0006479","protein methylation",22,1,1.32,613,"0.7457","0.36962","0.36962" +"GO:0008213","protein alkylation",22,1,1.32,614,"0.7457","0.36962","0.36962" +"GO:0010876","lipid localization",25,2,1.5,290,"0.4486","0.37128","0.37128" +"GO:0030900","forebrain development",16,0,0.96,896,"1.0000","0.37295","0.37295" +"GO:0007276","gamete generation",50,2,3,664,"0.8137","0.37335","0.37335" +"GO:0002682","regulation of immune system process",50,5,3,98,"0.1777","0.37508","0.37508" +"GO:0040011","locomotion",86,6,5.16,256,"0.4140","0.28170","0.37638" +"GO:0061458","reproductive system development",20,1,1.2,579,"0.7118","0.38036","0.38036" +"GO:0001501","skeletal system development",16,1,0.96,492,"0.6300","0.38113","0.38113" +"GO:0023051","regulation of signaling",171,11,10.27,295,"0.4525","0.38227","0.38227" +"GO:0032273","positive regulation of protein polymeriz...",15,0,0.9,897,"1.0000","0.38469","0.38469" +"GO:2001233","regulation of apoptotic signaling pathwa...",19,2,1.14,205,"0.3176","0.38509","0.38509" +"GO:0010605","negative regulation of macromolecule met...",114,5,6.85,678,"0.8283","0.38614","0.38614" +"GO:0006950","response to stress",177,8,10.63,697,"0.8504","0.38754","0.38754" +"GO:0035690","cellular response to drug",10,1,0.6,304,"0.4624","0.38871","0.38871" +"GO:0009968","negative regulation of signal transducti...",60,3,3.6,574,"0.7104","0.38943","0.38943" +"GO:0042060","wound healing",26,2,1.56,317,"0.4692","0.39030","0.39030" +"GO:0009891","positive regulation of biosynthetic proc...",70,2,4.2,779,"0.9314","0.39037","0.39037" +"GO:0043410","positive regulation of MAPK cascade",17,2,1.02,181,"0.2720","0.39095","0.39095" +"GO:0042330","taxis",24,2,1.44,277,"0.4277","0.39143","0.39143" +"GO:0001932","regulation of protein phosphorylation",52,2,3.12,679,"0.8308","0.39214","0.39214" +"GO:0050789","regulation of biological process",894,50,53.68,641,"0.7782","0.05567","0.39249" +"GO:0007186","G protein-coupled receptor signaling pat...",81,5,4.86,385,"0.5430","0.39433","0.39433" +"GO:0009725","response to hormone",47,2,2.82,645,"0.7853","0.39586","0.39586" +"GO:0030154","cell differentiation",187,11,11.23,426,"0.5780","0.04946","0.39620" +"GO:0065009","regulation of molecular function",114,7,6.85,380,"0.5343","0.39677","0.39677" +"GO:0048193","Golgi vesicle transport",22,2,1.32,241,"0.3846","0.39758","0.39758" +"GO:0051172","negative regulation of nitrogen compound...",94,3,5.64,776,"0.9306","0.40152","0.40152" +"GO:0030097","hemopoiesis",33,3,1.98,207,"0.3179","0.40165","0.40165" +"GO:0051338","regulation of transferase activity",32,1,1.92,705,"0.8642","0.40314","0.40314" +"GO:0040017","positive regulation of locomotion",19,1,1.14,564,"0.6932","0.40341","0.40341" +"GO:0050794","regulation of cellular process",854,50,51.28,480,"0.6271","0.05373","0.40377" +"GO:0007411","axon guidance",14,2,0.84,123,"0.2037","0.40475","0.40475" +"GO:0097485","neuron projection guidance",14,2,0.84,124,"0.2037","0.40475","0.40475" +"GO:0000281","mitotic cytokinesis",10,0,0.6,898,"1.0000","0.40530","0.40530" +"GO:0030865","cortical cytoskeleton organization",10,0,0.6,899,"1.0000","0.40530","0.40530" +"GO:0045185","maintenance of protein location",10,0,0.6,900,"1.0000","0.40530","0.40530" +"GO:0061640","cytoskeleton-dependent cytokinesis",10,0,0.6,901,"1.0000","0.40530","0.40530" +"GO:0035329","hippo signaling",10,0,0.6,902,"1.0000","0.40610","0.40610" +"GO:0060485","mesenchyme development",10,0,0.6,903,"1.0000","0.40610","0.40610" +"GO:0033157","regulation of intracellular protein tran...",12,0,0.72,904,"1.0000","0.40614","0.40614" +"GO:0048869","cellular developmental process",195,12,11.71,359,"0.5110","0.05800","0.40634" +"GO:0007281","germ cell development",36,2,2.16,514,"0.6473","0.40667","0.40667" +"GO:0043405","regulation of MAP kinase activity",13,0,0.78,905,"1.0000","0.40863","0.40863" +"GO:0009260","ribonucleotide biosynthetic process",24,0,1.44,906,"1.0000","0.40982","0.40982" +"GO:0046390","ribose phosphate biosynthetic process",24,0,1.44,907,"1.0000","0.40982","0.40982" +"GO:0090150","establishment of protein localization to...",13,0,0.78,908,"1.0000","0.41004","0.41004" +"GO:0048477","oogenesis",23,2,1.38,249,"0.4063","0.41197","0.41197" +"GO:0034329","cell junction assembly",15,1,0.9,456,"0.6062","0.41251","0.41251" +"GO:0034330","cell junction organization",15,1,0.9,457,"0.6062","0.41251","0.41251" +"GO:0009991","response to extracellular stimulus",19,1,1.14,565,"0.6932","0.41458","0.41458" +"GO:0071345","cellular response to cytokine stimulus",18,1,1.08,545,"0.6735","0.41520","0.41520" +"GO:0016050","vesicle organization",13,1,0.78,407,"0.5540","0.41611","0.41611" +"GO:0001754","eye photoreceptor cell differentiation",14,0,0.84,909,"1.0000","0.41615","0.41615" +"GO:0009187","cyclic nucleotide metabolic process",10,0,0.6,910,"1.0000","0.41653","0.41653" +"GO:0009190","cyclic nucleotide biosynthetic process",10,0,0.6,911,"1.0000","0.41653","0.41653" +"GO:0009890","negative regulation of biosynthetic proc...",59,2,3.54,728,"0.8800","0.41771","0.41771" +"GO:0010558","negative regulation of macromolecule bio...",59,2,3.54,729,"0.8800","0.41771","0.41771" +"GO:0031327","negative regulation of cellular biosynth...",59,2,3.54,730,"0.8800","0.41771","0.41771" +"GO:0009653","anatomical structure morphogenesis",166,8,9.97,655,"0.7958","0.41817","0.41817" +"GO:0006874","cellular calcium ion homeostasis",18,3,1.08,36,"0.0892","0.41918","0.41918" +"GO:0072503","cellular divalent inorganic cation homeo...",18,3,1.08,37,"0.0892","0.41918","0.41918" +"GO:0051648","vesicle localization",13,3,0.78,20,"0.0388","0.42307","0.42307" +"GO:0045017","glycerolipid biosynthetic process",15,1,0.9,458,"0.6062","0.42507","0.42507" +"GO:1901615","organic hydroxy compound metabolic proce...",32,1,1.92,706,"0.8642","0.42915","0.42915" +"GO:0048749","compound eye development",15,0,0.9,912,"1.0000","0.43107","0.43107" +"GO:0006897","endocytosis",38,2,2.28,553,"0.6767","0.43314","0.43314" +"GO:0061564","axon development",31,2,1.86,422,"0.5646","0.43376","0.43376" +"GO:0072507","divalent inorganic cation homeostasis",20,3,1.2,47,"0.1143","0.43470","0.43470" +"GO:0043434","response to peptide hormone",11,0,0.66,913,"1.0000","0.43651","0.43651" +"GO:2000145","regulation of cell motility",32,4,1.92,59,"0.1216","0.28245","0.44199" +"GO:0051223","regulation of protein transport",20,1,1.2,580,"0.7118","0.44288","0.44288" +"GO:0090087","regulation of peptide transport",20,1,1.2,581,"0.7118","0.44288","0.44288" +"GO:1903827","regulation of cellular protein localizat...",20,1,1.2,582,"0.7118","0.44288","0.44288" +"GO:0010927","cellular component assembly involved in ...",21,1,1.26,598,"0.7293","0.44453","0.44453" +"GO:0098655","cation transmembrane transport",55,4,3.3,266,"0.4230","0.44503","0.44503" +"GO:0010647","positive regulation of cell communicatio...",65,7,3.9,40,"0.0911","0.44553","0.44553" +"GO:0023056","positive regulation of signaling",65,7,3.9,41,"0.0911","0.44553","0.44553" +"GO:0007548","sex differentiation",15,1,0.9,459,"0.6062","0.44590","0.44590" +"GO:0008219","cell death",84,3,5.04,746,"0.8913","0.44593","0.44593" +"GO:0007369","gastrulation",14,2,0.84,125,"0.2037","0.44676","0.44676" +"GO:0009612","response to mechanical stimulus",17,1,1.02,522,"0.6524","0.44747","0.44747" +"GO:0090596","sensory organ morphogenesis",29,0,1.74,914,"1.0000","0.44886","0.44886" +"GO:0009416","response to light stimulus",16,3,0.96,29,"0.0667","0.44956","0.44956" +"GO:0051146","striated muscle cell differentiation",25,1,1.5,649,"0.7892","0.45162","0.45162" +"GO:0046677","response to antibiotic",11,1,0.66,337,"0.4948","0.45168","0.45168" +"GO:0040007","growth",59,1,3.54,808,"0.9754","0.45316","0.45316" +"GO:0045892","negative regulation of transcription, DN...",54,1,3.24,800,"0.9662","0.45330","0.45330" +"GO:1902679","negative regulation of RNA biosynthetic ...",54,1,3.24,801,"0.9662","0.45330","0.45330" +"GO:1903507","negative regulation of nucleic acid-temp...",54,1,3.24,802,"0.9662","0.45330","0.45330" +"GO:2000113","negative regulation of cellular macromol...",58,2,3.48,725,"0.8738","0.45461","0.45461" +"GO:0051253","negative regulation of RNA metabolic pro...",55,1,3.3,804,"0.9683","0.45471","0.45471" +"GO:0006935","chemotaxis",23,2,1.38,250,"0.4063","0.45604","0.45604" +"GO:0016567","protein ubiquitination",48,2,2.88,653,"0.7952","0.45924","0.45924" +"GO:0010821","regulation of mitochondrion organization",11,0,0.66,915,"1.0000","0.45966","0.45966" +"GO:0032388","positive regulation of intracellular tra...",11,0,0.66,916,"1.0000","0.45966","0.45966" +"GO:0098657","import into cell",42,2,2.52,602,"0.7296","0.45988","0.45988" +"GO:0048736","appendage development",14,1,0.84,432,"0.5809","0.46103","0.46103" +"GO:0009966","regulation of signal transduction",147,10,8.83,246,"0.3878","0.46231","0.46231" +"GO:0031667","response to nutrient levels",18,1,1.08,546,"0.6735","0.46271","0.46271" +"GO:1901652","response to peptide",12,0,0.72,917,"1.0000","0.46326","0.46326" +"GO:0006955","immune response",44,1,2.64,782,"0.9363","0.46477","0.46477" +"GO:0071702","organic substance transport",155,10,9.31,297,"0.4554","0.46655","0.46655" +"GO:0050808","synapse organization",28,2,1.68,357,"0.5088","0.47002","0.47002" +"GO:1902115","regulation of organelle assembly",14,2,0.84,126,"0.2037","0.47059","0.47059" +"GO:0051051","negative regulation of transport",10,0,0.6,918,"1.0000","0.47200","0.47200" +"GO:0042325","regulation of phosphorylation",57,2,3.42,716,"0.8674","0.47286","0.47286" +"GO:0048468","cell development",134,9,8.05,255,"0.4140","0.07543","0.47352" +"GO:0034613","cellular protein localization",119,8,7.15,267,"0.4239","0.47360","0.47360" +"GO:0070727","cellular macromolecule localization",119,8,7.15,268,"0.4239","0.47360","0.47360" +"GO:0009892","negative regulation of metabolic process",121,5,7.27,714,"0.8654","0.47408","0.47408" +"GO:0051222","positive regulation of protein transport",16,1,0.96,493,"0.6300","0.47485","0.47485" +"GO:1904951","positive regulation of establishment of ...",16,1,0.96,494,"0.6300","0.47485","0.47485" +"GO:0032446","protein modification by small protein co...",51,2,3.06,674,"0.8224","0.47744","0.47744" +"GO:0009887","animal organ morphogenesis",74,1,4.44,827,"0.9906","0.48107","0.48107" +"GO:0042742","defense response to bacterium",11,0,0.66,919,"1.0000","0.48192","0.48192" +"GO:0034762","regulation of transmembrane transport",20,2,1.2,221,"0.3401","0.48220","0.48220" +"GO:0051336","regulation of hydrolase activity",48,2,2.88,654,"0.7952","0.48246","0.48246" +"GO:0051704","multi-organism process",107,7,6.42,313,"0.4652","0.48262","0.48262" +"GO:0043604","amide biosynthetic process",40,1,2.4,765,"0.9179","0.48454","0.48454" +"GO:0098662","inorganic cation transmembrane transport",45,2,2.7,628,"0.7644","0.48496","0.48496" +"GO:0009628","response to abiotic stimulus",63,4,3.78,378,"0.5303","0.48636","0.48636" +"GO:0050803","regulation of synapse structure or activ...",16,2,0.96,162,"0.2491","0.48686","0.48686" +"GO:0033036","macromolecule localization",193,12,11.59,349,"0.4958","0.48733","0.48733" +"GO:0006281","DNA repair",29,0,1.74,920,"1.0000","0.48921","0.48921" +"GO:0071214","cellular response to abiotic stimulus",13,2,0.78,108,"0.1813","0.48984","0.48984" +"GO:0104004","cellular response to environmental stimu...",13,2,0.78,109,"0.1813","0.48984","0.48984" +"GO:0051271","negative regulation of cellular componen...",12,4,0.72,4,"0.0042","0.00084","0.49061" +"GO:2000146","negative regulation of cell motility",12,4,0.72,5,"0.0042","0.00084","0.49061" +"GO:0070997","neuron death",11,1,0.66,338,"0.4948","0.49122","0.49122" +"GO:1901214","regulation of neuron death",11,1,0.66,339,"0.4948","0.49122","0.49122" +"GO:0015988","energy coupled proton transmembrane tran...",14,0,0.84,921,"1.0000","0.49265","0.49265" +"GO:0015991","ATP hydrolysis coupled proton transport",14,0,0.84,922,"1.0000","0.49265","0.49265" +"GO:0090662","ATP hydrolysis coupled transmembrane tra...",14,0,0.84,923,"1.0000","0.49265","0.49265" +"GO:0099131","ATP hydrolysis coupled ion transmembrane...",14,0,0.84,924,"1.0000","0.49265","0.49265" +"GO:0099132","ATP hydrolysis coupled cation transmembr...",14,0,0.84,925,"1.0000","0.49265","0.49265" +"GO:0008652","cellular amino acid biosynthetic process",10,2,0.6,53,"0.1174","0.49332","0.49332" +"GO:1901607","alpha-amino acid biosynthetic process",10,2,0.6,54,"0.1174","0.49332","0.49332" +"GO:0065003","protein-containing complex assembly",85,8,5.1,68,"0.1337","0.49356","0.49356" +"GO:0051188","cofactor biosynthetic process",32,2,1.92,440,"0.5822","0.49434","0.49434" +"GO:0007416","synapse assembly",13,2,0.78,110,"0.1813","0.49707","0.49707" +"GO:0015849","organic acid transport",21,2,1.26,236,"0.3625","0.49742","0.49742" +"GO:0046942","carboxylic acid transport",21,2,1.26,237,"0.3625","0.49742","0.49742" +"GO:0071900","regulation of protein serine/threonine k...",17,0,1.02,926,"1.0000","0.49979","0.49979" +"GO:0043549","regulation of kinase activity",29,1,1.74,686,"0.8360","0.50015","0.50015" +"GO:0031589","cell-substrate adhesion",18,1,1.08,547,"0.6735","0.50038","0.50038" +"GO:0031328","positive regulation of cellular biosynth...",65,2,3.9,762,"0.9113","0.50070","0.50070" +"GO:0007610","behavior",57,6,3.42,61,"0.1232","0.50315","0.50315" +"GO:0050804","modulation of chemical synaptic transmis...",23,2,1.38,251,"0.4063","0.50342","0.50342" +"GO:0099177","regulation of trans-synaptic signaling",23,2,1.38,252,"0.4063","0.50342","0.50342" +"GO:0006820","anion transport",39,4,2.34,119,"0.2035","0.50427","0.50427" +"GO:0022618","ribonucleoprotein complex assembly",14,2,0.84,127,"0.2037","0.50474","0.50474" +"GO:0071826","ribonucleoprotein complex subunit organi...",14,2,0.84,128,"0.2037","0.50474","0.50474" +"GO:0007155","cell adhesion",90,7,5.4,191,"0.2937","0.50483","0.50483" +"GO:0022610","biological adhesion",90,7,5.4,192,"0.2937","0.50483","0.50483" +"GO:0032787","monocarboxylic acid metabolic process",34,1,2.04,732,"0.8802","0.50520","0.50520" +"GO:0032259","methylation",35,2,2.1,507,"0.6318","0.50549","0.50549" +"GO:0000122","negative regulation of transcription by ...",37,0,2.22,927,"1.0000","0.50589","0.50589" +"GO:0006520","cellular amino acid metabolic process",34,3,2.04,213,"0.3348","0.50605","0.50605" +"GO:0019693","ribose phosphate metabolic process",37,0,2.22,928,"1.0000","0.50671","0.50671" +"GO:0045785","positive regulation of cell adhesion",13,1,0.78,408,"0.5540","0.50783","0.50783" +"GO:0034599","cellular response to oxidative stress",13,1,0.78,409,"0.5540","0.50980","0.50980" +"GO:0000165","MAPK cascade",28,3,1.68,155,"0.2344","0.51074","0.51074" +"GO:0023014","signal transduction by protein phosphory...",28,3,1.68,156,"0.2344","0.51074","0.51074" +"GO:0031032","actomyosin structure organization",26,1,1.56,659,"0.8020","0.51085","0.51085" +"GO:0006022","aminoglycan metabolic process",16,2,0.96,163,"0.2491","0.51140","0.51140" +"GO:2000026","regulation of multicellular organismal d...",92,8,5.52,113,"0.1835","0.05207","0.51228" +"GO:2001257","regulation of cation channel activity",13,2,0.78,111,"0.1813","0.51437","0.51437" +"GO:0006631","fatty acid metabolic process",16,1,0.96,495,"0.6300","0.51470","0.51470" +"GO:0007283","spermatogenesis",26,1,1.56,660,"0.8020","0.51549","0.51549" +"GO:0070936","protein K48-linked ubiquitination",10,0,0.6,929,"1.0000","0.51578","0.51578" +"GO:0046530","photoreceptor cell differentiation",15,0,0.9,930,"1.0000","0.51687","0.51687" +"GO:0006164","purine nucleotide biosynthetic process",23,0,1.38,931,"1.0000","0.51821","0.51821" +"GO:0009152","purine ribonucleotide biosynthetic proce...",23,0,1.38,932,"1.0000","0.51821","0.51821" +"GO:0060627","regulation of vesicle-mediated transport",27,2,1.62,325,"0.4892","0.51983","0.51983" +"GO:0070201","regulation of establishment of protein l...",21,1,1.26,599,"0.7293","0.52030","0.52030" +"GO:1901700","response to oxygen-containing compound",54,3,3.24,509,"0.6400","0.52113","0.52113" +"GO:0016051","carbohydrate biosynthetic process",12,0,0.72,933,"1.0000","0.52311","0.52311" +"GO:0043009","chordate embryonic development",39,3,2.34,260,"0.4185","0.52374","0.52374" +"GO:0045935","positive regulation of nucleobase-contai...",64,1,3.84,819,"0.9821","0.52476","0.52476" +"GO:0042326","negative regulation of phosphorylation",28,1,1.68,675,"0.8254","0.52515","0.52515" +"GO:0032270","positive regulation of cellular protein ...",55,3,3.3,533,"0.6525","0.52628","0.52628" +"GO:0031401","positive regulation of protein modificat...",44,3,2.64,352,"0.4985","0.52652","0.52652" +"GO:0048515","spermatid differentiation",16,0,0.96,934,"1.0000","0.52794","0.52794" +"GO:0042327","positive regulation of phosphorylation",31,2,1.86,423,"0.5646","0.52908","0.52908" +"GO:0006325","chromatin organization",70,2,4.2,780,"0.9314","0.53028","0.53028" +"GO:0046474","glycerophospholipid biosynthetic process",13,1,0.78,410,"0.5540","0.53059","0.53059" +"GO:0016236","macroautophagy",16,1,0.96,496,"0.6300","0.53099","0.53099" +"GO:0022412","cellular process involved in reproductio...",40,2,2.4,573,"0.7042","0.53115","0.53115" +"GO:1901605","alpha-amino acid metabolic process",18,3,1.08,38,"0.0892","0.53139","0.53139" +"GO:0050790","regulation of catalytic activity",76,5,4.56,321,"0.4849","0.53178","0.53178" +"GO:0050673","epithelial cell proliferation",14,0,0.84,935,"1.0000","0.53389","0.53389" +"GO:0002065","columnar/cuboidal epithelial cell differ...",17,1,1.02,523,"0.6524","0.53398","0.53398" +"GO:0044262","cellular carbohydrate metabolic process",14,0,0.84,936,"1.0000","0.53404","0.53404" +"GO:0042147","retrograde transport, endosome to Golgi",14,1,0.84,433,"0.5809","0.53448","0.53448" +"GO:0045786","negative regulation of cell cycle",24,2,1.44,278,"0.4277","0.53528","0.53528" +"GO:0010817","regulation of hormone levels",21,3,1.26,65,"0.1278","0.53662","0.53662" +"GO:0007409","axonogenesis",26,2,1.56,318,"0.4692","0.53679","0.53679" +"GO:0042692","muscle cell differentiation",26,1,1.56,661,"0.8020","0.53679","0.53679" +"GO:0006886","intracellular protein transport",74,5,4.44,299,"0.4610","0.53773","0.53773" +"GO:0051173","positive regulation of nitrogen compound...",108,5,6.48,651,"0.7903","0.53787","0.53787" +"GO:0015931","nucleobase-containing compound transport",11,2,0.66,72,"0.1380","0.53841","0.53841" +"GO:0072522","purine-containing compound biosynthetic ...",24,0,1.44,937,"1.0000","0.53846","0.53846" +"GO:1901698","response to nitrogen compound",35,1,2.1,740,"0.8875","0.53922","0.53922" +"GO:0017144","drug metabolic process",57,5,3.42,169,"0.2549","0.53929","0.53929" +"GO:0034220","ion transmembrane transport",84,5,5.04,425,"0.5763","0.54007","0.54007" +"GO:0043933","protein-containing complex subunit organ...",98,9,5.88,67,"0.1295","0.54023","0.54023" +"GO:0009792","embryo development ending in birth or eg...",46,3,2.76,377,"0.5290","0.54052","0.54052" +"GO:0033673","negative regulation of kinase activity",15,0,0.9,938,"1.0000","0.54259","0.54259" +"GO:0051348","negative regulation of transferase activ...",15,0,0.9,939,"1.0000","0.54259","0.54259" +"GO:0071705","nitrogen compound transport",131,8,7.87,382,"0.5357","0.54267","0.54267" +"GO:0010628","positive regulation of gene expression",72,2,4.32,786,"0.9382","0.54384","0.54384" +"GO:0042594","response to starvation",11,0,0.66,940,"1.0000","0.54410","0.54410" +"GO:0035023","regulation of Rho protein signal transdu...",24,2,1.44,279,"0.4277","0.54426","0.54426" +"GO:1902905","positive regulation of supramolecular fi...",20,1,1.2,583,"0.7118","0.54490","0.54490" +"GO:0097190","apoptotic signaling pathway",24,2,1.44,280,"0.4277","0.54562","0.54562" +"GO:0045859","regulation of protein kinase activity",27,1,1.62,668,"0.8141","0.54582","0.54582" +"GO:0009967","positive regulation of signal transducti...",60,6,3.6,81,"0.1473","0.54642","0.54642" +"GO:0051276","chromosome organization",101,2,6.06,826,"0.9872","0.54717","0.54717" +"GO:0010563","negative regulation of phosphorus metabo...",32,1,1.92,707,"0.8642","0.54795","0.54795" +"GO:0045936","negative regulation of phosphate metabol...",32,1,1.92,708,"0.8642","0.54795","0.54795" +"GO:0006928","movement of cell or subcellular componen...",87,7,5.22,175,"0.2648","0.15458","0.55012" +"GO:0006790","sulfur compound metabolic process",14,2,0.84,129,"0.2037","0.55128","0.55128" +"GO:0098660","inorganic ion transmembrane transport",46,2,2.76,633,"0.7751","0.55160","0.55160" +"GO:0006839","mitochondrial transport",21,1,1.26,600,"0.7293","0.55279","0.55279" +"GO:0050878","regulation of body fluid levels",14,0,0.84,941,"1.0000","0.55680","0.55680" +"GO:0010959","regulation of metal ion transport",14,0,0.84,942,"1.0000","0.55724","0.55724" +"GO:0031098","stress-activated protein kinase signalin...",10,0,0.6,943,"1.0000","0.55872","0.55872" +"GO:0032872","regulation of stress-activated MAPK casc...",10,0,0.6,944,"1.0000","0.55872","0.55872" +"GO:0051403","stress-activated MAPK cascade",10,0,0.6,945,"1.0000","0.55872","0.55872" +"GO:0070302","regulation of stress-activated protein k...",10,0,0.6,946,"1.0000","0.55872","0.55872" +"GO:0055080","cation homeostasis",28,4,1.68,34,"0.0830","0.55876","0.55876" +"GO:0098771","inorganic ion homeostasis",28,4,1.68,35,"0.0830","0.55876","0.55876" +"GO:0051270","regulation of cellular component movemen...",35,4,2.1,82,"0.1548","0.36529","0.56184" +"GO:0051272","positive regulation of cellular componen...",15,1,0.9,460,"0.6062","0.56203","0.56203" +"GO:2000147","positive regulation of cell motility",15,1,0.9,461,"0.6062","0.56203","0.56203" +"GO:0051260","protein homooligomerization",17,2,1.02,182,"0.2720","0.56345","0.56345" +"GO:0006401","RNA catabolic process",18,3,1.08,39,"0.0892","0.56423","0.56423" +"GO:0006812","cation transport",104,9,6.24,93,"0.1678","0.56487","0.56487" +"GO:0006626","protein targeting to mitochondrion",14,0,0.84,947,"1.0000","0.56636","0.56636" +"GO:0070585","protein localization to mitochondrion",14,0,0.84,948,"1.0000","0.56636","0.56636" +"GO:0072655","establishment of protein localization to...",14,0,0.84,949,"1.0000","0.56636","0.56636" +"GO:0042391","regulation of membrane potential",11,2,0.66,73,"0.1380","0.56731","0.56731" +"GO:0006457","protein folding",12,0,0.72,950,"1.0000","0.56967","0.56967" +"GO:1903747","regulation of establishment of protein l...",10,0,0.6,951,"1.0000","0.57110","0.57110" +"GO:0030001","metal ion transport",64,4,3.84,386,"0.5430","0.57124","0.57124" +"GO:0097193","intrinsic apoptotic signaling pathway",13,1,0.78,411,"0.5540","0.57139","0.57139" +"GO:0051254","positive regulation of RNA metabolic pro...",62,1,3.72,815,"0.9797","0.57455","0.57455" +"GO:0060562","epithelial tube morphogenesis",33,1,1.98,721,"0.8725","0.57559","0.57559" +"GO:0019222","regulation of metabolic process",409,20,24.56,734,"0.8807","0.57651","0.57651" +"GO:0030334","regulation of cell migration",29,4,1.74,42,"0.0920","0.19184","0.57805" +"GO:0090287","regulation of cellular response to growt...",13,0,0.78,952,"1.0000","0.57916","0.57916" +"GO:0043408","regulation of MAPK cascade",27,2,1.62,326,"0.4892","0.57949","0.57949" +"GO:0006473","protein acetylation",16,0,0.96,953,"1.0000","0.58151","0.58151" +"GO:0006412","translation",31,1,1.86,699,"0.8554","0.58159","0.58159" +"GO:0043043","peptide biosynthetic process",31,1,1.86,700,"0.8554","0.58159","0.58159" +"GO:0006720","isoprenoid metabolic process",17,0,1.02,954,"1.0000","0.58167","0.58167" +"GO:0007498","mesoderm development",14,1,0.84,434,"0.5809","0.58419","0.58419" +"GO:0030335","positive regulation of cell migration",14,1,0.84,435,"0.5809","0.58419","0.58419" +"GO:0001933","negative regulation of protein phosphory...",25,1,1.5,650,"0.7892","0.58525","0.58525" +"GO:0022898","regulation of transmembrane transporter ...",14,2,0.84,130,"0.2037","0.58719","0.58719" +"GO:0032409","regulation of transporter activity",14,2,0.84,131,"0.2037","0.58719","0.58719" +"GO:0032412","regulation of ion transmembrane transpor...",14,2,0.84,132,"0.2037","0.58719","0.58719" +"GO:0006518","peptide metabolic process",35,1,2.1,741,"0.8875","0.58813","0.58813" +"GO:0006469","negative regulation of protein kinase ac...",13,0,0.78,955,"1.0000","0.58896","0.58896" +"GO:0090305","nucleic acid phosphodiester bond hydroly...",10,2,0.6,55,"0.1174","0.58971","0.58971" +"GO:0022607","cellular component assembly",156,12,9.37,140,"0.2218","0.58987","0.58987" +"GO:0051052","regulation of DNA metabolic process",11,0,0.66,956,"1.0000","0.59013","0.59013" +"GO:0000302","response to reactive oxygen species",10,0,0.6,957,"1.0000","0.59060","0.59060" +"GO:0043406","positive regulation of MAP kinase activi...",10,0,0.6,958,"1.0000","0.59060","0.59060" +"GO:0071902","positive regulation of protein serine/th...",10,0,0.6,959,"1.0000","0.59060","0.59060" +"GO:0006814","sodium ion transport",16,2,0.96,164,"0.2491","0.59135","0.59135" +"GO:2001242","regulation of intrinsic apoptotic signal...",10,1,0.6,305,"0.4624","0.59148","0.59148" +"GO:0031323","regulation of cellular metabolic process",378,20,22.7,632,"0.7740","0.59197","0.59197" +"GO:0008104","protein localization",166,10,9.97,388,"0.5465","0.59213","0.59213" +"GO:0048584","positive regulation of response to stimu...",82,7,4.92,139,"0.2186","0.59329","0.59329" +"GO:0060070","canonical Wnt signaling pathway",19,0,1.14,960,"1.0000","0.59424","0.59424" +"GO:0019220","regulation of phosphate metabolic proces...",63,2,3.78,754,"0.9018","0.59479","0.59479" +"GO:0051174","regulation of phosphorus metabolic proce...",63,2,3.78,755,"0.9018","0.59479","0.59479" +"GO:0048232","male gamete generation",29,1,1.74,687,"0.8360","0.59724","0.59724" +"GO:0006338","chromatin remodeling",11,0,0.66,961,"1.0000","0.59825","0.59825" +"GO:0048522","positive regulation of cellular process",235,13,14.11,538,"0.6706","0.59968","0.59968" +"GO:0045934","negative regulation of nucleobase-contai...",56,1,3.36,805,"0.9702","0.59980","0.59980" +"GO:0008654","phospholipid biosynthetic process",20,1,1.2,584,"0.7118","0.60007","0.60007" +"GO:0010557","positive regulation of macromolecule bio...",61,1,3.66,813,"0.9783","0.60017","0.60017" +"GO:0007034","vacuolar transport",18,0,1.08,962,"1.0000","0.60090","0.60090" +"GO:0030010","establishment of cell polarity",12,0,0.72,963,"1.0000","0.60158","0.60158" +"GO:0000956","nuclear-transcribed mRNA catabolic proce...",10,2,0.6,56,"0.1174","0.60214","0.60214" +"GO:0099173","postsynapse organization",12,2,0.72,91,"0.1594","0.60223","0.60223" +"GO:0006259","DNA metabolic process",49,0,2.94,964,"1.0000","0.60364","0.60364" +"GO:1901701","cellular response to oxygen-containing c...",34,2,2.04,479,"0.6158","0.60404","0.60404" +"GO:0051247","positive regulation of protein metabolic...",58,3,3.48,557,"0.6882","0.60436","0.60436" +"GO:0010243","response to organonitrogen compound",32,1,1.92,709,"0.8642","0.60525","0.60525" +"GO:0007018","microtubule-based movement",17,1,1.02,524,"0.6524","0.60663","0.60663" +"GO:0007160","cell-matrix adhesion",13,1,0.78,412,"0.5540","0.60720","0.60720" +"GO:0002683","negative regulation of immune system pro...",17,0,1.02,965,"1.0000","0.60936","0.60936" +"GO:0030099","myeloid cell differentiation",17,0,1.02,966,"1.0000","0.60936","0.60936" +"GO:0071496","cellular response to external stimulus",10,1,0.6,306,"0.4624","0.61013","0.61013" +"GO:1903825","organic acid transmembrane transport",13,0,0.78,967,"1.0000","0.61078","0.61078" +"GO:1905039","carboxylic acid transmembrane transport",13,0,0.78,968,"1.0000","0.61078","0.61078" +"GO:0051705","multi-organism behavior",11,1,0.66,340,"0.4948","0.61129","0.61129" +"GO:0046434","organophosphate catabolic process",15,0,0.9,969,"1.0000","0.61567","0.61567" +"GO:0006915","apoptotic process",73,2,4.38,788,"0.9413","0.61671","0.61671" +"GO:0070647","protein modification by small protein co...",71,4,4.26,482,"0.6271","0.61711","0.61711" +"GO:0071103","DNA conformation change",17,0,1.02,970,"1.0000","0.61727","0.61727" +"GO:0034976","response to endoplasmic reticulum stress",17,1,1.02,525,"0.6524","0.61863","0.61863" +"GO:0019827","stem cell population maintenance",11,1,0.66,341,"0.4948","0.62027","0.62027" +"GO:0098727","maintenance of cell number",11,1,0.66,342,"0.4948","0.62027","0.62027" +"GO:0006732","coenzyme metabolic process",35,1,2.1,742,"0.8875","0.62106","0.62106" +"GO:0010604","positive regulation of macromolecule met...",114,4,6.85,768,"0.9220","0.62181","0.62181" +"GO:0015698","inorganic anion transport",10,1,0.6,307,"0.4624","0.62522","0.62522" +"GO:0031324","negative regulation of cellular metaboli...",97,3,5.82,787,"0.9396","0.62712","0.62712" +"GO:0051017","actin filament bundle assembly",11,1,0.66,343,"0.4948","0.62720","0.62720" +"GO:0007286","spermatid development",15,0,0.9,971,"1.0000","0.62800","0.62800" +"GO:0019538","protein metabolic process",505,29,30.32,512,"0.6463","0.06260","0.62992" +"GO:0043085","positive regulation of catalytic activit...",43,1,2.58,781,"0.9321","0.63056","0.63056" +"GO:0006643","membrane lipid metabolic process",15,0,0.9,972,"1.0000","0.63162","0.63162" +"GO:0071840","cellular component organization or bioge...",394,19,23.66,745,"0.8891","0.63331","0.63331" +"GO:0050801","ion homeostasis",32,4,1.92,60,"0.1216","0.63626","0.63626" +"GO:0032386","regulation of intracellular transport",17,1,1.02,526,"0.6524","0.63662","0.63662" +"GO:0099003","vesicle-mediated transport in synapse",11,1,0.66,344,"0.4948","0.63667","0.63667" +"GO:0010608","posttranscriptional regulation of gene e...",24,2,1.44,281,"0.4277","0.63672","0.63672" +"GO:0071495","cellular response to endogenous stimulus",57,2,3.42,717,"0.8674","0.63729","0.63729" +"GO:0016054","organic acid catabolic process",15,1,0.9,462,"0.6062","0.63742","0.63742" +"GO:0046395","carboxylic acid catabolic process",15,1,0.9,463,"0.6062","0.63742","0.63742" +"GO:0030838","positive regulation of actin filament po...",10,0,0.6,973,"1.0000","0.63940","0.63940" +"GO:0009888","tissue development",116,4,6.97,775,"0.9283","0.63966","0.63966" +"GO:0012501","programmed cell death",77,2,4.62,791,"0.9525","0.64046","0.64046" +"GO:0003008","system process",83,8,4.98,58,"0.1209","0.64256","0.64256" +"GO:0044093","positive regulation of molecular functio...",68,2,4.08,770,"0.9239","0.64371","0.64371" +"GO:0035239","tube morphogenesis",53,2,3.18,689,"0.8388","0.64572","0.64572" +"GO:0006875","cellular metal ion homeostasis",22,3,1.32,77,"0.1418","0.64974","0.64974" +"GO:0010562","positive regulation of phosphorus metabo...",33,2,1.98,446,"0.5993","0.65067","0.65067" +"GO:0045937","positive regulation of phosphate metabol...",33,2,1.98,447,"0.5993","0.65067","0.65067" +"GO:0021915","neural tube development",12,0,0.72,974,"1.0000","0.65097","0.65097" +"GO:0006979","response to oxidative stress",32,1,1.92,710,"0.8642","0.65186","0.65186" +"GO:0045893","positive regulation of transcription, DN...",59,1,3.54,809,"0.9754","0.65250","0.65250" +"GO:1902680","positive regulation of RNA biosynthetic ...",59,1,3.54,810,"0.9754","0.65250","0.65250" +"GO:1903508","positive regulation of nucleic acid-temp...",59,1,3.54,811,"0.9754","0.65250","0.65250" +"GO:0071559","response to transforming growth factor b...",15,1,0.9,464,"0.6062","0.65260","0.65260" +"GO:0071560","cellular response to transforming growth...",15,1,0.9,465,"0.6062","0.65260","0.65260" +"GO:0016043","cellular component organization",381,18,22.88,756,"0.9023","0.65303","0.65303" +"GO:0007266","Rho protein signal transduction",25,2,1.5,291,"0.4486","0.65390","0.65390" +"GO:0007219","Notch signaling pathway",13,0,0.78,975,"1.0000","0.65680","0.65680" +"GO:0045765","regulation of angiogenesis",11,1,0.66,345,"0.4948","0.65690","0.65690" +"GO:1901342","regulation of vasculature development",11,1,0.66,346,"0.4948","0.65690","0.65690" +"GO:0048518","positive regulation of biological proces...",279,15,16.75,594,"0.7221","0.65695","0.65695" +"GO:0009987","cellular process",1598,93,95.95,624,"0.7635","0.14698","0.65855" +"GO:0044085","cellular component biogenesis",173,13,10.39,152,"0.2340","0.65864","0.65864" +"GO:0045861","negative regulation of proteolysis",10,0,0.6,976,"1.0000","0.65883","0.65883" +"GO:0051650","establishment of vesicle localization",11,2,0.66,74,"0.1380","0.65909","0.65909" +"GO:0009791","post-embryonic development",24,1,1.44,637,"0.7756","0.66006","0.66006" +"GO:0048732","gland development",16,1,0.96,497,"0.6300","0.66009","0.66009" +"GO:0098656","anion transmembrane transport",16,0,0.96,977,"1.0000","0.66135","0.66135" +"GO:0045454","cell redox homeostasis",11,0,0.66,978,"1.0000","0.66295","0.66295" +"GO:0043412","macromolecule modification",399,25,23.96,286,"0.4413","0.03923","0.66374" +"GO:0009259","ribonucleotide metabolic process",34,0,2.04,979,"1.0000","0.66573","0.66573" +"GO:0007596","blood coagulation",10,0,0.6,980,"1.0000","0.66587","0.66587" +"GO:0007599","hemostasis",10,0,0.6,981,"1.0000","0.66587","0.66587" +"GO:0050817","coagulation",10,0,0.6,982,"1.0000","0.66587","0.66587" +"GO:0045926","negative regulation of growth",11,0,0.66,983,"1.0000","0.66631","0.66631" +"GO:0022414","reproductive process",89,2,5.34,807,"0.9751","0.66681","0.66681" +"GO:0001701","in utero embryonic development",18,1,1.08,548,"0.6735","0.66713","0.66713" +"GO:0044248","cellular catabolic process",138,11,8.29,117,"0.2014","0.66718","0.66718" +"GO:0043066","negative regulation of apoptotic process",32,1,1.92,711,"0.8642","0.67086","0.67086" +"GO:0006873","cellular ion homeostasis",23,3,1.38,83,"0.1563","0.67144","0.67144" +"GO:0030003","cellular cation homeostasis",23,3,1.38,84,"0.1563","0.67144","0.67144" +"GO:0043269","regulation of ion transport",24,2,1.44,282,"0.4277","0.67213","0.67213" +"GO:0035966","response to topologically incorrect prot...",15,0,0.9,984,"1.0000","0.67274","0.67274" +"GO:0045862","positive regulation of proteolysis",12,0,0.72,985,"1.0000","0.67412","0.67412" +"GO:0001934","positive regulation of protein phosphory...",28,2,1.68,358,"0.5088","0.67443","0.67443" +"GO:0006475","internal protein amino acid acetylation",15,0,0.9,986,"1.0000","0.67990","0.67990" +"GO:0018393","internal peptidyl-lysine acetylation",15,0,0.9,987,"1.0000","0.67990","0.67990" +"GO:0018394","peptidyl-lysine acetylation",15,0,0.9,988,"1.0000","0.67990","0.67990" +"GO:0048589","developmental growth",41,1,2.46,769,"0.9230","0.68040","0.68040" +"GO:0048565","digestive tract development",10,1,0.6,308,"0.4624","0.68165","0.68165" +"GO:0055123","digestive system development",10,1,0.6,309,"0.4624","0.68165","0.68165" +"GO:0007568","aging",19,2,1.14,206,"0.3176","0.68328","0.68328" +"GO:0048598","embryonic morphogenesis",45,2,2.7,629,"0.7644","0.68630","0.68630" +"GO:0003333","amino acid transmembrane transport",11,0,0.66,989,"1.0000","0.68701","0.68701" +"GO:0006865","amino acid transport",11,0,0.66,990,"1.0000","0.68701","0.68701" +"GO:0051656","establishment of organelle localization",22,2,1.32,242,"0.3846","0.68726","0.68726" +"GO:0002253","activation of immune response",17,1,1.02,527,"0.6524","0.68931","0.68931" +"GO:0033993","response to lipid",43,2,2.58,605,"0.7417","0.68992","0.68992" +"GO:0032870","cellular response to hormone stimulus",33,1,1.98,722,"0.8725","0.69039","0.69039" +"GO:0060041","retina development in camera-type eye",18,0,1.08,991,"1.0000","0.69103","0.69103" +"GO:0055065","metal ion homeostasis",24,3,1.44,95,"0.1712","0.69181","0.69181" +"GO:0055082","cellular chemical homeostasis",24,3,1.44,96,"0.1712","0.69181","0.69181" +"GO:0009889","regulation of biosynthetic process",308,16,18.49,640,"0.7777","0.69207","0.69207" +"GO:0043401","steroid hormone mediated signaling pathw...",16,1,0.96,498,"0.6300","0.69308","0.69308" +"GO:0044265","cellular macromolecule catabolic process",64,6,3.84,112,"0.1826","0.69384","0.69384" +"GO:0007005","mitochondrion organization",31,0,1.86,992,"1.0000","0.69455","0.69455" +"GO:0051345","positive regulation of hydrolase activit...",27,1,1.62,669,"0.8141","0.69524","0.69524" +"GO:0007267","cell-cell signaling",76,3,4.56,695,"0.8468","0.69919","0.69919" +"GO:0043086","negative regulation of catalytic activit...",24,1,1.44,638,"0.7756","0.69946","0.69946" +"GO:0006888","ER to Golgi vesicle-mediated transport",12,1,0.72,372,"0.5253","0.70227","0.70227" +"GO:0051171","regulation of nitrogen compound metaboli...",362,19,21.74,642,"0.7810","0.70391","0.70391" +"GO:0030155","regulation of cell adhesion",20,1,1.2,585,"0.7118","0.70916","0.70916" +"GO:0080090","regulation of primary metabolic process",366,18,21.98,704,"0.8612","0.70997","0.70997" +"GO:0006260","DNA replication",12,0,0.72,993,"1.0000","0.70999","0.70999" +"GO:0016053","organic acid biosynthetic process",29,3,1.74,166,"0.2509","0.71043","0.71043" +"GO:0046394","carboxylic acid biosynthetic process",29,3,1.74,167,"0.2509","0.71043","0.71043" +"GO:0007179","transforming growth factor beta receptor...",12,1,0.72,373,"0.5253","0.71109","0.71109" +"GO:0010941","regulation of cell death",61,3,3.66,593,"0.7211","0.71184","0.71184" +"GO:0060548","negative regulation of cell death",36,1,2.16,750,"0.8944","0.71297","0.71297" +"GO:0006402","mRNA catabolic process",17,2,1.02,183,"0.2720","0.71349","0.71349" +"GO:0006493","protein O-linked glycosylation",14,1,0.84,436,"0.5809","0.71354","0.71354" +"GO:0009952","anterior/posterior pattern specification",15,1,0.9,466,"0.6062","0.71881","0.71881" +"GO:1903706","regulation of hemopoiesis",15,0,0.9,994,"1.0000","0.71881","0.71881" +"GO:0009790","embryo development",81,3,4.86,726,"0.8762","0.71931","0.71931" +"GO:0042886","amide transport",109,7,6.55,323,"0.4852","0.71931","0.71931" +"GO:0051347","positive regulation of transferase activ...",18,0,1.08,995,"1.0000","0.71950","0.71950" +"GO:0060255","regulation of macromolecule metabolic pr...",386,18,23.18,763,"0.9136","0.72220","0.72220" +"GO:0006936","muscle contraction",19,1,1.14,566,"0.6932","0.72457","0.72457" +"GO:0061024","membrane organization",43,4,2.58,171,"0.2561","0.72591","0.72591" +"GO:0002521","leukocyte differentiation",11,0,0.66,996,"1.0000","0.72629","0.72629" +"GO:0072524","pyridine-containing compound metabolic p...",18,0,1.08,997,"1.0000","0.72676","0.72676" +"GO:0044267","cellular protein metabolic process",434,26,26.06,384,"0.5425","0.05394","0.72731" +"GO:0035967","cellular response to topologically incor...",12,0,0.72,998,"1.0000","0.72857","0.72857" +"GO:1904062","regulation of cation transmembrane trans...",17,2,1.02,184,"0.2720","0.72949","0.72949" +"GO:0042445","hormone metabolic process",10,1,0.6,310,"0.4624","0.73077","0.73077" +"GO:0060541","respiratory system development",18,1,1.08,549,"0.6735","0.73259","0.73259" +"GO:0032502","developmental process",320,17,19.21,616,"0.7511","0.26508","0.73463" +"GO:0001775","cell activation",40,1,2.4,766,"0.9179","0.73649","0.73649" +"GO:0090407","organophosphate biosynthetic process",61,1,3.66,814,"0.9783","0.73716","0.73716" +"GO:0045184","establishment of protein localization",114,7,6.85,381,"0.5343","0.74050","0.74050" +"GO:0006810","transport",515,34,30.92,189,"0.2882","0.38677","0.74090" +"GO:0009636","response to toxic substance",17,1,1.02,528,"0.6524","0.74193","0.74193" +"GO:0048638","regulation of developmental growth",15,0,0.9,999,"1.0000","0.74236","0.74236" +"GO:0016072","rRNA metabolic process",14,2,0.84,133,"0.2037","0.74694","0.74694" +"GO:0015031","protein transport",108,7,6.48,319,"0.4752","0.74702","0.74702" +"GO:0015833","peptide transport",108,7,6.48,320,"0.4752","0.74702","0.74702" +"GO:0006511","ubiquitin-dependent protein catabolic pr...",39,3,2.34,261,"0.4185","0.74782","0.74782" +"GO:0019941","modification-dependent protein catabolic...",39,3,2.34,262,"0.4185","0.74782","0.74782" +"GO:0034765","regulation of ion transmembrane transpor...",18,2,1.08,194,"0.2948","0.74815","0.74815" +"GO:0009451","RNA modification",15,1,0.9,467,"0.6062","0.74851","0.74851" +"GO:0051186","cofactor metabolic process",43,2,2.58,606,"0.7417","0.74892","0.74892" +"GO:0006397","mRNA processing",32,1,1.92,712,"0.8642","0.75069","0.75069" +"GO:0044282","small molecule catabolic process",18,1,1.08,550,"0.6735","0.75126","0.75126" +"GO:0007399","nervous system development",142,10,8.53,223,"0.3460","0.11843","0.75221" +"GO:0019362","pyridine nucleotide metabolic process",16,0,0.96,1000,"1.0000","0.75319","0.75319" +"GO:0046496","nicotinamide nucleotide metabolic proces...",16,0,0.96,1001,"1.0000","0.75319","0.75319" +"GO:0016331","morphogenesis of embryonic epithelium",15,1,0.9,468,"0.6062","0.75328","0.75328" +"GO:0009150","purine ribonucleotide metabolic process",33,0,1.98,1002,"1.0000","0.75412","0.75412" +"GO:0048878","chemical homeostasis",40,4,2.4,137,"0.2163","0.75710","0.75710" +"GO:0006974","cellular response to DNA damage stimulus",45,0,2.7,1003,"1.0000","0.75754","0.75754" +"GO:0007423","sensory organ development",63,1,3.78,818,"0.9809","0.75762","0.75762" +"GO:0009056","catabolic process",158,12,9.49,158,"0.2350","0.75798","0.75798" +"GO:0044242","cellular lipid catabolic process",14,0,0.84,1004,"1.0000","0.75986","0.75986" +"GO:0006464","cellular protein modification process",383,24,23,287,"0.4438","0.04879","0.76044" +"GO:0036211","protein modification process",383,24,23,288,"0.4438","0.04879","0.76044" +"GO:0048646","anatomical structure formation involved ...",74,3,4.44,682,"0.8335","0.76080","0.76080" +"GO:0051346","negative regulation of hydrolase activit...",11,0,0.66,1005,"1.0000","0.76284","0.76284" +"GO:0071383","cellular response to steroid hormone sti...",20,1,1.2,586,"0.7118","0.76408","0.76408" +"GO:0060828","regulation of canonical Wnt signaling pa...",14,0,0.84,1006,"1.0000","0.76501","0.76501" +"GO:0006082","organic acid metabolic process",77,4,4.62,560,"0.6909","0.76506","0.76506" +"GO:0043436","oxoacid metabolic process",77,4,4.62,561,"0.6909","0.76506","0.76506" +"GO:0034655","nucleobase-containing compound catabolic...",31,3,1.86,187,"0.2842","0.76602","0.76602" +"GO:0043632","modification-dependent macromolecule cat...",41,4,2.46,149,"0.2294","0.76616","0.76616" +"GO:0044092","negative regulation of molecular functio...",30,1,1.8,693,"0.8460","0.76687","0.76687" +"GO:0044257","cellular protein catabolic process",44,3,2.64,353,"0.4985","0.76800","0.76800" +"GO:0051603","proteolysis involved in cellular protein...",44,3,2.64,354,"0.4985","0.76800","0.76800" +"GO:0048609","multicellular organismal reproductive pr...",64,2,3.84,759,"0.9067","0.77143","0.77143" +"GO:0031326","regulation of cellular biosynthetic proc...",303,15,18.19,681,"0.8320","0.77550","0.77550" +"GO:0009755","hormone-mediated signaling pathway",17,1,1.02,529,"0.6524","0.77639","0.77639" +"GO:0000003","reproduction",97,2,5.82,820,"0.9840","0.77689","0.77689" +"GO:0030178","negative regulation of Wnt signaling pat...",14,0,0.84,1007,"1.0000","0.77726","0.77726" +"GO:0055085","transmembrane transport",225,13,13.51,448,"0.6054","0.77786","0.77786" +"GO:0090090","negative regulation of canonical Wnt sig...",10,0,0.6,1008,"1.0000","0.77799","0.77799" +"GO:0030162","regulation of proteolysis",23,0,1.38,1009,"1.0000","0.77799","0.77799" +"GO:0048562","embryonic organ morphogenesis",17,0,1.02,1010,"1.0000","0.77875","0.77875" +"GO:0016573","histone acetylation",14,0,0.84,1011,"1.0000","0.77972","0.77972" +"GO:0043603","cellular amide metabolic process",50,1,3,793,"0.9564","0.77987","0.77987" +"GO:0072525","pyridine-containing compound biosyntheti...",14,0,0.84,1012,"1.0000","0.78054","0.78054" +"GO:0007049","cell cycle",97,6,5.82,379,"0.5329","0.78159","0.78159" +"GO:1902533","positive regulation of intracellular sig...",30,2,1.8,394,"0.5465","0.78191","0.78191" +"GO:0031099","regeneration",10,0,0.6,1013,"1.0000","0.78201","0.78201" +"GO:0071407","cellular response to organic cyclic comp...",25,2,1.5,292,"0.4486","0.78340","0.78340" +"GO:0006909","phagocytosis",16,1,0.96,499,"0.6300","0.78344","0.78344" +"GO:0016310","phosphorylation",219,12,13.15,554,"0.6800","0.02041","0.78534" +"GO:0071417","cellular response to organonitrogen comp...",12,0,0.72,1014,"1.0000","0.78558","0.78558" +"GO:0008299","isoprenoid biosynthetic process",12,0,0.72,1015,"1.0000","0.78587","0.78587" +"GO:0009057","macromolecule catabolic process",75,6,4.5,190,"0.2932","0.79055","0.79055" +"GO:0043069","negative regulation of programmed cell d...",34,1,2.04,733,"0.8802","0.79154","0.79154" +"GO:0022613","ribonucleoprotein complex biogenesis",29,3,1.74,168,"0.2509","0.79576","0.79576" +"GO:0006486","protein glycosylation",34,3,2.04,214,"0.3348","0.79713","0.79713" +"GO:0043413","macromolecule glycosylation",34,3,2.04,215,"0.3348","0.79713","0.79713" +"GO:0070085","glycosylation",34,3,2.04,216,"0.3348","0.79713","0.79713" +"GO:0006357","regulation of transcription by RNA polym...",100,1,6,829,"0.9982","0.79912","0.79912" +"GO:0006508","proteolysis",124,6,7.45,630,"0.7689","0.79990","0.79990" +"GO:0019752","carboxylic acid metabolic process",76,4,4.56,556,"0.6809","0.80096","0.80096" +"GO:0048856","anatomical structure development",293,15,17.59,652,"0.7907","0.29773","0.80250" +"GO:0007600","sensory perception",25,2,1.5,293,"0.4486","0.80395","0.80395" +"GO:0019953","sexual reproduction",64,2,3.84,760,"0.9067","0.80519","0.80519" +"GO:1901699","cellular response to nitrogen compound",15,0,0.9,1016,"1.0000","0.80587","0.80587" +"GO:0010556","regulation of macromolecule biosynthetic...",301,14,18.07,739,"0.8870","0.80715","0.80715" +"GO:0009101","glycoprotein biosynthetic process",35,3,2.1,226,"0.3517","0.80782","0.80782" +"GO:0019359","nicotinamide nucleotide biosynthetic pro...",12,0,0.72,1017,"1.0000","0.80882","0.80882" +"GO:0019363","pyridine nucleotide biosynthetic process",12,0,0.72,1018,"1.0000","0.80882","0.80882" +"GO:0043409","negative regulation of MAPK cascade",12,1,0.72,374,"0.5253","0.80995","0.80995" +"GO:0019725","cellular homeostasis",37,3,2.22,244,"0.3853","0.81016","0.81016" +"GO:0007444","imaginal disc development",14,1,0.84,437,"0.5809","0.81207","0.81207" +"GO:0071704","organic substance metabolic process",1158,68,69.53,511,"0.6444","0.36682","0.81325" +"GO:1901564","organonitrogen compound metabolic proces...",635,35,38.13,623,"0.7627","0.16625","0.81517" +"GO:0006355","regulation of transcription, DNA-templat...",284,13,17.05,747,"0.8921","0.81608","0.81608" +"GO:1903506","regulation of nucleic acid-templated tra...",284,13,17.05,748,"0.8921","0.81608","0.81608" +"GO:2001141","regulation of RNA biosynthetic process",284,13,17.05,749,"0.8921","0.81608","0.81608" +"GO:0140014","mitotic nuclear division",13,0,0.78,1019,"1.0000","0.81620","0.81620" +"GO:0000070","mitotic sister chromatid segregation",11,0,0.66,1020,"1.0000","0.81872","0.81872" +"GO:0006323","DNA packaging",13,0,0.78,1021,"1.0000","0.82047","0.82047" +"GO:0040029","regulation of gene expression, epigeneti...",14,1,0.84,438,"0.5809","0.82108","0.82108" +"GO:0016458","gene silencing",14,0,0.84,1022,"1.0000","0.82108","0.82108" +"GO:0045321","leukocyte activation",32,1,1.92,713,"0.8642","0.82155","0.82155" +"GO:0044260","cellular macromolecule metabolic process",727,43,43.65,441,"0.5840","0.26852","0.82160" +"GO:1903050","regulation of proteolysis involved in ce...",10,0,0.6,1023,"1.0000","0.82175","0.82175" +"GO:1903362","regulation of cellular protein catabolic...",10,0,0.6,1024,"1.0000","0.82175","0.82175" +"GO:2000112","regulation of cellular macromolecule bio...",300,14,18.01,737,"0.8841","0.82247","0.82247" +"GO:0007275","multicellular organism development",271,14,16.27,631,"0.7718","0.29672","0.82308" +"GO:0010468","regulation of gene expression",333,16,20,720,"0.8720","0.82455","0.82455" +"GO:0015672","monovalent inorganic cation transport",48,3,2.88,417,"0.5585","0.82459","0.82459" +"GO:0003012","muscle system process",22,1,1.32,615,"0.7457","0.82706","0.82706" +"GO:0006163","purine nucleotide metabolic process",34,0,2.04,1025,"1.0000","0.82715","0.82715" +"GO:0043170","macromolecule metabolic process",882,51,52.96,539,"0.6732","0.43785","0.82894" +"GO:1905114","cell surface receptor signaling pathway ...",35,1,2.1,743,"0.8875","0.83062","0.83062" +"GO:0032504","multicellular organism reproduction",68,2,4.08,771,"0.9239","0.84061","0.84061" +"GO:0090092","regulation of transmembrane receptor pro...",11,0,0.66,1026,"1.0000","0.84079","0.84079" +"GO:0007166","cell surface receptor signaling pathway",127,6,7.63,646,"0.7887","0.84139","0.84139" +"GO:0033674","positive regulation of kinase activity",15,0,0.9,1027,"1.0000","0.84144","0.84144" +"GO:0006733","oxidoreduction coenzyme metabolic proces...",17,0,1.02,1028,"1.0000","0.84270","0.84270" +"GO:0001654","eye development",50,1,3,794,"0.9564","0.84441","0.84441" +"GO:0048880","sensory system development",50,1,3,795,"0.9564","0.84441","0.84441" +"GO:0150063","visual system development",50,1,3,796,"0.9564","0.84441","0.84441" +"GO:0009100","glycoprotein metabolic process",39,3,2.34,263,"0.4185","0.84544","0.84544" +"GO:0042176","regulation of protein catabolic process",16,0,0.96,1029,"1.0000","0.84576","0.84576" +"GO:0044270","cellular nitrogen compound catabolic pro...",33,3,1.98,208,"0.3179","0.84686","0.84686" +"GO:1901566","organonitrogen compound biosynthetic pro...",146,7,8.77,647,"0.7889","0.84878","0.84878" +"GO:0009166","nucleotide catabolic process",10,0,0.6,1030,"1.0000","0.84959","0.84959" +"GO:1901292","nucleoside phosphate catabolic process",10,0,0.6,1031,"1.0000","0.84959","0.84959" +"GO:0060249","anatomical structure homeostasis",19,1,1.14,567,"0.6932","0.84982","0.84982" +"GO:0002757","immune response-activating signal transd...",15,1,0.9,469,"0.6062","0.85196","0.85196" +"GO:0002764","immune response-regulating signaling pat...",15,1,0.9,470,"0.6062","0.85196","0.85196" +"GO:0006941","striated muscle contraction",10,0,0.6,1032,"1.0000","0.85242","0.85242" +"GO:0044271","cellular nitrogen compound biosynthetic ...",397,17,23.84,797,"0.9613","0.85253","0.85253" +"GO:0019439","aromatic compound catabolic process",34,3,2.04,217,"0.3348","0.85776","0.85776" +"GO:0040008","regulation of growth",34,0,2.04,1033,"1.0000","0.85806","0.85806" +"GO:0007346","regulation of mitotic cell cycle",17,0,1.02,1034,"1.0000","0.85826","0.85826" +"GO:0045860","positive regulation of protein kinase ac...",14,0,0.84,1035,"1.0000","0.86016","0.86016" +"GO:0035282","segmentation",13,0,0.78,1036,"1.0000","0.86087","0.86087" +"GO:0006399","tRNA metabolic process",18,1,1.08,551,"0.6735","0.86123","0.86123" +"GO:0034622","cellular protein-containing complex asse...",58,4,3.48,312,"0.4641","0.86236","0.86236" +"GO:0044703","multi-organism reproductive process",66,2,3.96,764,"0.9157","0.86255","0.86255" +"GO:0043902","positive regulation of multi-organism pr...",10,1,0.6,311,"0.4624","0.86286","0.86286" +"GO:0043393","regulation of protein binding",12,0,0.72,1037,"1.0000","0.86325","0.86325" +"GO:0016071","mRNA metabolic process",50,3,3,444,"0.5868","0.86374","0.86374" +"GO:0048731","system development",230,12,13.81,607,"0.7452","0.29297","0.86461" +"GO:0051960","regulation of nervous system development",39,5,2.34,32,"0.0806","0.01230","0.86562" +"GO:0016055","Wnt signaling pathway",33,0,1.98,1038,"1.0000","0.86594","0.86594" +"GO:0009895","negative regulation of catabolic process",13,0,0.78,1039,"1.0000","0.86699","0.86699" +"GO:0042981","regulation of apoptotic process",52,2,3.12,680,"0.8308","0.86706","0.86706" +"GO:0046700","heterocycle catabolic process",35,3,2.1,227,"0.3517","0.86800","0.86800" +"GO:0051234","establishment of localization",528,34,31.7,224,"0.3477","0.53878","0.86956" +"GO:1901576","organic substance biosynthetic process",521,25,31.28,773,"0.9272","0.87060","0.87060" +"GO:0035295","tube development",60,2,3.6,738,"0.8858","0.87241","0.87241" +"GO:0022407","regulation of cell-cell adhesion",13,0,0.78,1040,"1.0000","0.87301","0.87301" +"GO:2000116","regulation of cysteine-type endopeptidas...",10,0,0.6,1041,"1.0000","0.87366","0.87366" +"GO:0072330","monocarboxylic acid biosynthetic process",18,1,1.08,552,"0.6735","0.87722","0.87722" +"GO:1901137","carbohydrate derivative biosynthetic pro...",73,3,4.38,677,"0.8264","0.87735","0.87735" +"GO:0043900","regulation of multi-organism process",19,1,1.14,568,"0.6932","0.87813","0.87813" +"GO:0010948","negative regulation of cell cycle proces...",10,0,0.6,1042,"1.0000","0.87894","0.87894" +"GO:0097305","response to alcohol",13,1,0.78,413,"0.5540","0.87972","0.87972" +"GO:0016579","protein deubiquitination",23,2,1.38,253,"0.4063","0.88052","0.88052" +"GO:0070646","protein modification by small protein re...",23,2,1.38,254,"0.4063","0.88052","0.88052" +"GO:0044249","cellular biosynthetic process",511,26,30.68,715,"0.8662","0.88062","0.88062" +"GO:0048569","post-embryonic animal organ development",13,1,0.78,414,"0.5540","0.88143","0.88143" +"GO:0010035","response to inorganic substance",22,0,1.32,1043,"1.0000","0.88169","0.88169" +"GO:0048545","response to steroid hormone",23,1,1.38,620,"0.7611","0.88206","0.88206" +"GO:0198738","cell-cell signaling by wnt",35,0,2.1,1044,"1.0000","0.88223","0.88223" +"GO:0007389","pattern specification process",40,1,2.4,767,"0.9179","0.88453","0.88453" +"GO:0002262","myeloid cell homeostasis",12,0,0.72,1045,"1.0000","0.88482","0.88482" +"GO:0030218","erythrocyte differentiation",12,0,0.72,1046,"1.0000","0.88482","0.88482" +"GO:0034101","erythrocyte homeostasis",12,0,0.72,1047,"1.0000","0.88482","0.88482" +"GO:0051098","regulation of binding",18,0,1.08,1048,"1.0000","0.88602","0.88602" +"GO:1901361","organic cyclic compound catabolic proces...",37,3,2.22,245,"0.3853","0.88666","0.88666" +"GO:0018130","heterocycle biosynthetic process",364,15,21.86,803,"0.9673","0.88768","0.88768" +"GO:0035148","tube formation",12,0,0.72,1049,"1.0000","0.89061","0.89061" +"GO:0009059","macromolecule biosynthetic process",399,18,23.96,784,"0.9382","0.89162","0.89162" +"GO:0019438","aromatic compound biosynthetic process",360,15,21.62,799,"0.9630","0.89180","0.89180" +"GO:1902600","proton transmembrane transport",17,0,1.02,1050,"1.0000","0.89233","0.89233" +"GO:0070925","organelle assembly",58,3,3.48,558,"0.6882","0.89259","0.89259" +"GO:0014070","response to organic cyclic compound",39,2,2.34,559,"0.6907","0.89338","0.89338" +"GO:0071396","cellular response to lipid",30,2,1.8,395,"0.5465","0.89452","0.89452" +"GO:0034645","cellular macromolecule biosynthetic proc...",395,18,23.72,777,"0.9313","0.89571","0.89571" +"GO:0006366","transcription by RNA polymerase II",110,2,6.61,828,"0.9923","0.89576","0.89576" +"GO:0009058","biosynthetic process",538,30,32.3,590,"0.7179","0.89784","0.89784" +"GO:0010256","endomembrane system organization",26,0,1.56,1051,"1.0000","0.89959","0.89959" +"GO:0009798","axis specification",10,0,0.6,1052,"1.0000","0.90094","0.90094" +"GO:0048511","rhythmic process",13,0,0.78,1053,"1.0000","0.90130","0.90130" +"GO:0042592","homeostatic process",76,5,4.56,322,"0.4849","0.90135","0.90135" +"GO:0001894","tissue homeostasis",13,1,0.78,415,"0.5540","0.90256","0.90256" +"GO:0060284","regulation of cell development",45,5,2.7,66,"0.1292","0.01879","0.90258" +"GO:0034654","nucleobase-containing compound biosynthe...",348,14,20.9,806,"0.9708","0.90392","0.90392" +"GO:1901657","glycosyl compound metabolic process",11,0,0.66,1054,"1.0000","0.90422","0.90422" +"GO:0048871","multicellular organismal homeostasis",16,1,0.96,500,"0.6300","0.90617","0.90617" +"GO:0051179","localization",596,37,35.79,285,"0.4375","0.52374","0.90777" +"GO:0002694","regulation of leukocyte activation",20,1,1.2,587,"0.7118","0.91105","0.91105" +"GO:0050865","regulation of cell activation",20,1,1.2,588,"0.7118","0.91105","0.91105" +"GO:0006351","transcription, DNA-templated",306,14,18.37,751,"0.9008","0.91161","0.91161" +"GO:0032774","RNA biosynthetic process",306,14,18.37,752,"0.9008","0.91161","0.91161" +"GO:0097659","nucleic acid-templated transcription",306,14,18.37,753,"0.9008","0.91161","0.91161" +"GO:0010942","positive regulation of cell death",23,1,1.38,621,"0.7611","0.91309","0.91309" +"GO:0003002","regionalization",29,1,1.74,688,"0.8360","0.91531","0.91531" +"GO:0043010","camera-type eye development",26,0,1.56,1055,"1.0000","0.91672","0.91672" +"GO:0002768","immune response-regulating cell surface ...",10,0,0.6,1056,"1.0000","0.91719","0.91719" +"GO:2000241","regulation of reproductive process",16,1,0.96,501,"0.6300","0.91954","0.91954" +"GO:1901135","carbohydrate derivative metabolic proces...",120,6,7.21,604,"0.7405","0.92021","0.92021" +"GO:0051252","regulation of RNA metabolic process",295,14,17.71,719,"0.8686","0.92057","0.92057" +"GO:0048863","stem cell differentiation",16,0,0.96,1057,"1.0000","0.92145","0.92145" +"GO:0051726","regulation of cell cycle",52,3,3.12,472,"0.6140","0.92166","0.92166" +"GO:0072521","purine-containing compound metabolic pro...",36,0,2.16,1058,"1.0000","0.92175","0.92175" +"GO:1901362","organic cyclic compound biosynthetic pro...",376,15,22.58,812,"0.9776","0.92200","0.92200" +"GO:0043065","positive regulation of apoptotic process",19,1,1.14,569,"0.6932","0.92305","0.92305" +"GO:0043068","positive regulation of programmed cell d...",19,1,1.14,570,"0.6932","0.92305","0.92305" +"GO:1901575","organic substance catabolic process",122,8,7.33,294,"0.4523","0.92311","0.92311" +"GO:0046649","lymphocyte activation",23,1,1.38,622,"0.7611","0.92648","0.92648" +"GO:0000819","sister chromatid segregation",15,0,0.9,1059,"1.0000","0.92758","0.92758" +"GO:0051099","positive regulation of binding",11,0,0.66,1060,"1.0000","0.92894","0.92894" +"GO:0009124","nucleoside monophosphate biosynthetic pr...",14,0,0.84,1061,"1.0000","0.92983","0.92983" +"GO:0043067","regulation of programmed cell death",53,2,3.18,690,"0.8388","0.93015","0.93015" +"GO:0010038","response to metal ion",16,0,0.96,1062,"1.0000","0.93094","0.93094" +"GO:0007368","determination of left/right symmetry",15,0,0.9,1063,"1.0000","0.93391","0.93391" +"GO:0009799","specification of symmetry",15,0,0.9,1064,"1.0000","0.93391","0.93391" +"GO:0009855","determination of bilateral symmetry",15,0,0.9,1065,"1.0000","0.93391","0.93391" +"GO:0055086","nucleobase-containing small molecule met...",62,1,3.72,816,"0.9797","0.93418","0.93418" +"GO:0009156","ribonucleoside monophosphate biosyntheti...",13,0,0.78,1066,"1.0000","0.93471","0.93471" +"GO:0016052","carbohydrate catabolic process",11,0,0.66,1067,"1.0000","0.93642","0.93642" +"GO:0000375","RNA splicing, via transesterification re...",16,1,0.96,502,"0.6300","0.93819","0.93819" +"GO:0000377","RNA splicing, via transesterification re...",16,1,0.96,503,"0.6300","0.93819","0.93819" +"GO:0000398","mRNA splicing, via spliceosome",16,1,0.96,504,"0.6300","0.93819","0.93819" +"GO:0007017","microtubule-based process",49,2,2.94,662,"0.8047","0.93850","0.93850" +"GO:0015980","energy derivation by oxidation of organi...",12,0,0.72,1068,"1.0000","0.93987","0.93987" +"GO:0030111","regulation of Wnt signaling pathway",20,0,1.2,1069,"1.0000","0.94103","0.94103" +"GO:0032501","multicellular organismal process",326,15,19.58,757,"0.9039","0.52325","0.94110" +"GO:0006753","nucleoside phosphate metabolic process",54,0,3.24,1070,"1.0000","0.94263","0.94263" +"GO:0009117","nucleotide metabolic process",54,0,3.24,1071,"1.0000","0.94263","0.94263" +"GO:0051249","regulation of lymphocyte activation",19,1,1.14,571,"0.6932","0.94392","0.94392" +"GO:0009127","purine nucleoside monophosphate biosynth...",11,0,0.66,1072,"1.0000","0.94452","0.94452" +"GO:0009168","purine ribonucleoside monophosphate bios...",11,0,0.66,1073,"1.0000","0.94452","0.94452" +"GO:0019219","regulation of nucleobase-containing comp...",298,14,17.89,727,"0.8781","0.94452","0.94452" +"GO:0019098","reproductive behavior",11,0,0.66,1074,"1.0000","0.94611","0.94611" +"GO:1903311","regulation of mRNA metabolic process",11,1,0.66,347,"0.4948","0.94664","0.94664" +"GO:0006091","generation of precursor metabolites and ...",19,0,1.14,1075,"1.0000","0.94742","0.94742" +"GO:0030031","cell projection assembly",33,1,1.98,723,"0.8725","0.94818","0.94818" +"GO:0120031","plasma membrane bounded cell projection ...",33,1,1.98,724,"0.8725","0.94818","0.94818" +"GO:0006754","ATP biosynthetic process",10,0,0.6,1076,"1.0000","0.94945","0.94945" +"GO:0009142","nucleoside triphosphate biosynthetic pro...",10,0,0.6,1077,"1.0000","0.94945","0.94945" +"GO:0009145","purine nucleoside triphosphate biosynthe...",10,0,0.6,1078,"1.0000","0.94945","0.94945" +"GO:0009201","ribonucleoside triphosphate biosynthetic...",10,0,0.6,1079,"1.0000","0.94945","0.94945" +"GO:0009206","purine ribonucleoside triphosphate biosy...",10,0,0.6,1080,"1.0000","0.94945","0.94945" +"GO:0033365","protein localization to organelle",42,0,2.52,1081,"1.0000","0.94996","0.94996" +"GO:0018193","peptidyl-amino acid modification",57,2,3.42,718,"0.8674","0.95075","0.95075" +"GO:0034641","cellular nitrogen compound metabolic pro...",527,22,31.64,825,"0.9864","0.95082","0.95082" +"GO:0035050","embryonic heart tube development",11,0,0.66,1082,"1.0000","0.95118","0.95118" +"GO:0045944","positive regulation of transcription by ...",46,0,2.76,1083,"1.0000","0.95197","0.95197" +"GO:0048593","camera-type eye morphogenesis",11,0,0.66,1084,"1.0000","0.95210","0.95210" +"GO:0009165","nucleotide biosynthetic process",37,0,2.22,1085,"1.0000","0.95257","0.95257" +"GO:1901293","nucleoside phosphate biosynthetic proces...",37,0,2.22,1086,"1.0000","0.95257","0.95257" +"GO:0030163","protein catabolic process",54,3,3.24,510,"0.6400","0.95271","0.95271" +"GO:0044281","small molecule metabolic process",170,8,10.21,670,"0.8172","0.95374","0.95374" +"GO:0031330","negative regulation of cellular cataboli...",11,0,0.66,1087,"1.0000","0.95449","0.95449" +"GO:0003143","embryonic heart tube morphogenesis",10,0,0.6,1088,"1.0000","0.95554","0.95554" +"GO:0061371","determination of heart left/right asymme...",10,0,0.6,1089,"1.0000","0.95554","0.95554" +"GO:0042110","T cell activation",15,0,0.9,1090,"1.0000","0.95554","0.95554" +"GO:0050863","regulation of T cell activation",13,0,0.78,1091,"1.0000","0.96139","0.96139" +"GO:0000278","mitotic cell cycle",52,1,3.12,798,"0.9616","0.96251","0.96251" +"GO:0006725","cellular aromatic compound metabolic pro...",505,21,30.32,823,"0.9850","0.96404","0.96404" +"GO:0005975","carbohydrate metabolic process",66,4,3.96,424,"0.5680","0.96424","0.96424" +"GO:0022402","cell cycle process",76,3,4.56,696,"0.8468","0.96443","0.96443" +"GO:0046483","heterocycle metabolic process",504,21,30.26,821,"0.9846","0.96460","0.96460" +"GO:0007601","visual perception",11,0,0.66,1092,"1.0000","0.96478","0.96478" +"GO:0050953","sensory perception of light stimulus",11,0,0.66,1093,"1.0000","0.96478","0.96478" +"GO:0000226","microtubule cytoskeleton organization",31,1,1.86,701,"0.8554","0.96676","0.96676" +"GO:0044782","cilium organization",21,0,1.26,1094,"1.0000","0.96689","0.96689" +"GO:0060271","cilium assembly",21,0,1.26,1095,"1.0000","0.96689","0.96689" +"GO:0006364","rRNA processing",13,1,0.78,416,"0.5540","0.96701","0.96701" +"GO:0072594","establishment of protein localization to...",27,0,1.62,1096,"1.0000","0.96776","0.96776" +"GO:1903047","mitotic cell cycle process",44,1,2.64,783,"0.9363","0.96830","0.96830" +"GO:0007623","circadian rhythm",10,0,0.6,1097,"1.0000","0.96843","0.96843" +"GO:0006605","protein targeting",25,0,1.5,1098,"1.0000","0.97014","0.97014" +"GO:0052547","regulation of peptidase activity",11,0,0.66,1099,"1.0000","0.97092","0.97092" +"GO:0052548","regulation of endopeptidase activity",11,0,0.66,1100,"1.0000","0.97092","0.97092" +"GO:0008380","RNA splicing",24,1,1.44,639,"0.7756","0.97321","0.97321" +"GO:0048872","homeostasis of number of cells",16,1,0.96,505,"0.6300","0.97365","0.97365" +"GO:0044237","cellular metabolic process",1063,63,63.83,445,"0.5948","0.53049","0.97433" +"GO:0006913","nucleocytoplasmic transport",14,1,0.84,439,"0.5809","0.97442","0.97442" +"GO:0006139","nucleobase-containing compound metabolic...",485,20,29.12,822,"0.9846","0.97459","0.97459" +"GO:0006352","DNA-templated transcription, initiation",11,1,0.66,348,"0.4948","0.97462","0.97462" +"GO:0051321","meiotic cell cycle",17,1,1.02,530,"0.6524","0.97487","0.97487" +"GO:1903046","meiotic cell cycle process",17,1,1.02,531,"0.6524","0.97487","0.97487" +"GO:0010467","gene expression",426,19,25.58,790,"0.9505","0.97646","0.97646" +"GO:1901360","organic cyclic compound metabolic proces...",525,22,31.52,824,"0.9855","0.97755","0.97755" +"GO:0098813","nuclear chromosome segregation",18,0,1.08,1101,"1.0000","0.97762","0.97762" +"GO:0009123","nucleoside monophosphate metabolic proce...",20,0,1.2,1102,"1.0000","0.97785","0.97785" +"GO:0090304","nucleic acid metabolic process",422,19,25.34,789,"0.9449","0.97863","0.97863" +"GO:0009161","ribonucleoside monophosphate metabolic p...",19,0,1.14,1103,"1.0000","0.97895","0.97895" +"GO:0007626","locomotory behavior",14,0,0.84,1104,"1.0000","0.97904","0.97904" +"GO:0001101","response to acid chemical",15,0,0.9,1105,"1.0000","0.97999","0.97999" +"GO:0051169","nuclear transport",15,1,0.9,471,"0.6062","0.98046","0.98046" +"GO:0006807","nitrogen compound metabolic process",984,55,59.09,656,"0.7974","0.86487","0.98107" +"GO:0009126","purine nucleoside monophosphate metaboli...",17,0,1.02,1106,"1.0000","0.98116","0.98116" +"GO:0009167","purine ribonucleoside monophosphate meta...",17,0,1.02,1107,"1.0000","0.98116","0.98116" +"GO:0048285","organelle fission",26,0,1.56,1108,"1.0000","0.98130","0.98130" +"GO:0045927","positive regulation of growth",12,0,0.72,1109,"1.0000","0.98189","0.98189" +"GO:0034404","nucleobase-containing small molecule bio...",13,0,0.78,1110,"1.0000","0.98203","0.98203" +"GO:0009141","nucleoside triphosphate metabolic proces...",15,0,0.9,1111,"1.0000","0.98338","0.98338" +"GO:0009144","purine nucleoside triphosphate metabolic...",15,0,0.9,1112,"1.0000","0.98338","0.98338" +"GO:0009199","ribonucleoside triphosphate metabolic pr...",15,0,0.9,1113,"1.0000","0.98338","0.98338" +"GO:0009205","purine ribonucleoside triphosphate metab...",15,0,0.9,1114,"1.0000","0.98338","0.98338" +"GO:0046034","ATP metabolic process",15,0,0.9,1115,"1.0000","0.98338","0.98338" +"GO:0000280","nuclear division",23,0,1.38,1116,"1.0000","0.98346","0.98346" +"GO:0006954","inflammatory response",11,0,0.66,1117,"1.0000","0.98371","0.98371" +"GO:0017038","protein import",11,0,0.66,1118,"1.0000","0.98531","0.98531" +"GO:0007059","chromosome segregation",20,0,1.2,1119,"1.0000","0.98563","0.98563" +"GO:0009116","nucleoside metabolic process",10,0,0.6,1120,"1.0000","0.98617","0.98617" +"GO:0034660","ncRNA metabolic process",37,2,2.22,536,"0.6623","0.98746","0.98746" +"GO:1901565","organonitrogen compound catabolic proces...",70,4,4.2,473,"0.6157","0.98782","0.98782" +"GO:0008152","metabolic process",1324,78,79.5,513,"0.6467","0.89415","0.98879" +"GO:0042254","ribosome biogenesis",17,1,1.02,532,"0.6524","0.98930","0.98930" +"GO:0016070","RNA metabolic process",392,19,23.54,736,"0.8838","0.99194","0.99194" +"GO:0044238","primary metabolic process",1097,63,65.87,595,"0.7290","0.62439","0.99230" +"GO:0010564","regulation of cell cycle process",28,0,1.68,1121,"1.0000","0.99246","0.99246" +"GO:0032886","regulation of microtubule-based process",11,0,0.66,1122,"1.0000","0.99556","0.99556" +"GO:0070507","regulation of microtubule cytoskeleton o...",10,0,0.6,1123,"1.0000","0.99732","0.99732" +"GO:0006997","nucleus organization",10,0,0.6,1124,"1.0000","0.99890","0.99890" +"GO:0009566","fertilization",10,0,0.6,1125,"1.0000","0.99890","0.99890" +"GO:0006396","RNA processing",74,3,4.44,683,"0.8335","0.99975","0.99975" +"GO:0055114","oxidation-reduction process",120,3,7.21,817,"0.9801","0.99979","0.99979" +"GO:0034470","ncRNA processing",28,1,1.68,676,"0.8254","0.99995","0.99995" +"GO:0008150","biological_process",2165,130,130,1126,"1.0000","1.00000","1.00000" diff --git a/GO_enrichment_output/contrast_postlaying_nonlaying_upregulated.csv b/GO_enrichment_output/contrast_postlaying_nonlaying_upregulated.csv index 5937344..e142d47 100644 --- a/GO_enrichment_output/contrast_postlaying_nonlaying_upregulated.csv +++ b/GO_enrichment_output/contrast_postlaying_nonlaying_upregulated.csv @@ -1,6 +1,3102 @@ "GO.ID","Term","Annotated","Significant","Expected","Rank in classicFisher","classicFisher","classicKS","elimKS" -"GO:0006412","translation",205,5,6.63,1244,"0.81","1.1e-16","3.3e-15" -"GO:0006807","nitrogen compound metabolic process",1724,54,55.76,1173,"0.68","1.9e-07","0.00013" -"GO:0000387","spliceosomal snRNP assembly",9,0,0.29,1336,"1.00","0.0041","0.00412" -"GO:0006418","tRNA aminoacylation for protein translat...",30,1,0.97,1128,"0.63","0.0048","0.00482" -"GO:0007622","rhythmic behavior",4,0,0.13,1337,"1.00","0.0052","0.00517" +"GO:0006412","translation",205,5,6.63,1244,"0.8050","1.1e-16","3.3e-15" +"GO:0006807","nitrogen compound metabolic process",1724,54,55.76,1173,"0.6843","1.9e-07","0.00013" +"GO:0000387","spliceosomal snRNP assembly",9,0,0.29,1336,"1.0000","0.00412","0.00412" +"GO:0006418","tRNA aminoacylation for protein translat...",30,1,0.97,1128,"0.6289","0.00482","0.00482" +"GO:0007622","rhythmic behavior",4,0,0.13,1337,"1.0000","0.00517","0.00517" +"GO:0009147","pyrimidine nucleoside triphosphate metab...",4,0,0.13,1338,"1.0000","0.00562","0.00562" +"GO:0046131","pyrimidine ribonucleoside metabolic proc...",4,0,0.13,1339,"1.0000","0.00562","0.00562" +"GO:0044238","primary metabolic process",1794,57,58.03,1135,"0.6293","5.8e-05","0.00583" +"GO:0046129","purine ribonucleoside biosynthetic proce...",4,0,0.13,1340,"1.0000","0.00668","0.00668" +"GO:0043170","macromolecule metabolic process",1556,44,50.33,1294,"0.9219","3.3e-05","0.00816" +"GO:0050663","cytokine secretion",3,1,0.1,226,"0.0940","0.00908","0.00908" +"GO:0050729","positive regulation of inflammatory resp...",3,0,0.1,1341,"1.0000","0.00908","0.00908" +"GO:0043101","purine-containing compound salvage",4,1,0.13,333,"0.1233","0.00911","0.00911" +"GO:0070646","protein modification by small protein re...",19,1,0.61,974,"0.4656","0.01000","0.01000" +"GO:0034641","cellular nitrogen compound metabolic pro...",1118,28,36.16,1319,"0.9699","4.6e-06","0.01024" +"GO:0006220","pyrimidine nucleotide metabolic process",8,0,0.26,1342,"1.0000","0.01223","0.01223" +"GO:0040029","regulation of gene expression, epigeneti...",27,1,0.87,1100,"0.5901","0.01380","0.01380" +"GO:0006221","pyrimidine nucleotide biosynthetic proce...",5,0,0.16,1343,"1.0000","0.01473","0.01473" +"GO:0006476","protein deacetylation",7,0,0.23,1344,"1.0000","0.01537","0.01537" +"GO:0016575","histone deacetylation",7,0,0.23,1345,"1.0000","0.01537","0.01537" +"GO:0030098","lymphocyte differentiation",4,2,0.13,7,"0.0060","0.01778","0.01778" +"GO:0030217","T cell differentiation",4,2,0.13,8,"0.0060","0.01778","0.01778" +"GO:0048512","circadian behavior",3,0,0.1,1346,"1.0000","0.01931","0.01931" +"GO:0035601","protein deacylation",11,1,0.36,739,"0.3039","0.01988","0.01988" +"GO:0098732","macromolecule deacylation",11,1,0.36,740,"0.3039","0.01988","0.01988" +"GO:0045494","photoreceptor cell maintenance",5,0,0.16,1347,"1.0000","0.01998","0.01998" +"GO:0006241","CTP biosynthetic process",3,0,0.1,1348,"1.0000","0.02055","0.02055" +"GO:0009148","pyrimidine nucleoside triphosphate biosy...",3,0,0.1,1349,"1.0000","0.02055","0.02055" +"GO:0009208","pyrimidine ribonucleoside triphosphate m...",3,0,0.1,1350,"1.0000","0.02055","0.02055" +"GO:0009209","pyrimidine ribonucleoside triphosphate b...",3,0,0.1,1351,"1.0000","0.02055","0.02055" +"GO:0009218","pyrimidine ribonucleotide metabolic proc...",3,0,0.1,1352,"1.0000","0.02055","0.02055" +"GO:0009220","pyrimidine ribonucleotide biosynthetic p...",3,0,0.1,1353,"1.0000","0.02055","0.02055" +"GO:0046036","CTP metabolic process",3,0,0.1,1354,"1.0000","0.02055","0.02055" +"GO:0046132","pyrimidine ribonucleoside biosynthetic p...",3,0,0.1,1355,"1.0000","0.02055","0.02055" +"GO:0046134","pyrimidine nucleoside biosynthetic proce...",3,0,0.1,1356,"1.0000","0.02055","0.02055" +"GO:0042176","regulation of protein catabolic process",28,1,0.91,1116,"0.6034","0.02161","0.02161" +"GO:0032309","icosanoid secretion",4,0,0.13,1357,"1.0000","0.02165","0.02165" +"GO:0050482","arachidonic acid secretion",4,0,0.13,1358,"1.0000","0.02165","0.02165" +"GO:0071715","icosanoid transport",4,0,0.13,1359,"1.0000","0.02165","0.02165" +"GO:1901571","fatty acid derivative transport",4,0,0.13,1360,"1.0000","0.02165","0.02165" +"GO:1903963","arachidonate transport",4,0,0.13,1361,"1.0000","0.02165","0.02165" +"GO:0000469","cleavage involved in rRNA processing",5,0,0.16,1362,"1.0000","0.02285","0.02285" +"GO:0032436","positive regulation of proteasomal ubiqu...",7,1,0.23,552,"0.2058","0.02321","0.02321" +"GO:2000060","positive regulation of ubiquitin-depende...",7,1,0.23,553,"0.2058","0.02321","0.02321" +"GO:0033044","regulation of chromosome organization",23,0,0.74,1363,"1.0000","0.02339","0.02339" +"GO:0016319","mushroom body development",4,1,0.13,334,"0.1233","0.02375","0.02375" +"GO:0000460","maturation of 5.8S rRNA",8,0,0.26,1364,"1.0000","0.02438","0.02438" +"GO:0016458","gene silencing",24,2,0.78,526,"0.1810","0.02525","0.02525" +"GO:1901564","organonitrogen compound metabolic proces...",1051,40,33.99,328,"0.1169","1.2e-05","0.02661" +"GO:0010467","gene expression",839,19,27.14,1325,"0.9797","7.1e-06","0.02662" +"GO:0061013","regulation of mRNA catabolic process",10,0,0.32,1365,"1.0000","0.02778","0.02778" +"GO:0008356","asymmetric cell division",6,1,0.19,496,"0.1792","0.02793","0.02793" +"GO:0098722","asymmetric stem cell division",6,1,0.19,497,"0.1792","0.02793","0.02793" +"GO:0006487","protein N-linked glycosylation",19,1,0.61,975,"0.4656","0.02881","0.02881" +"GO:0033238","regulation of cellular amine metabolic p...",4,0,0.13,1366,"1.0000","0.02996","0.02996" +"GO:0006941","striated muscle contraction",7,0,0.23,1367,"1.0000","0.03052","0.03052" +"GO:0016579","protein deubiquitination",17,1,0.55,929,"0.4291","0.03285","0.03285" +"GO:0022613","ribonucleoprotein complex biogenesis",83,0,2.68,1368,"1.0000","0.00536","0.03317" +"GO:0045047","protein targeting to ER",5,0,0.16,1369,"1.0000","0.03419","0.03419" +"GO:0072599","establishment of protein localization to...",5,0,0.16,1370,"1.0000","0.03419","0.03419" +"GO:0009894","regulation of catabolic process",60,2,1.94,1093,"0.5846","0.03473","0.03473" +"GO:0043933","protein-containing complex subunit organ...",164,4,5.3,1235,"0.7878","0.01574","0.03484" +"GO:0043516","regulation of DNA damage response, signa...",3,0,0.1,1371,"1.0000","0.03677","0.03677" +"GO:0090085","regulation of protein deubiquitination",3,0,0.1,1372,"1.0000","0.03869","0.03869" +"GO:0090086","negative regulation of protein deubiquit...",3,0,0.1,1373,"1.0000","0.03869","0.03869" +"GO:1903644","regulation of chaperone-mediated protein...",3,0,0.1,1374,"1.0000","0.03869","0.03869" +"GO:0006342","chromatin silencing",16,1,0.52,908,"0.4099","0.03913","0.03913" +"GO:0045814","negative regulation of gene expression, ...",16,1,0.52,909,"0.4099","0.03913","0.03913" +"GO:0070059","intrinsic apoptotic signaling pathway in...",6,1,0.19,498,"0.1792","0.03977","0.03977" +"GO:0042592","homeostatic process",111,3,3.59,1192,"0.7055","0.04268","0.04268" +"GO:0045732","positive regulation of protein catabolic...",14,1,0.45,849,"0.3696","0.04344","0.04344" +"GO:0030330","DNA damage response, signal transduction...",6,0,0.19,1375,"1.0000","0.04359","0.04359" +"GO:0042770","signal transduction in response to DNA d...",6,0,0.19,1376,"1.0000","0.04359","0.04359" +"GO:0002521","leukocyte differentiation",5,2,0.16,10,"0.0097","0.04360","0.04360" +"GO:0048609","multicellular organismal reproductive pr...",66,3,2.13,842,"0.3606","0.04367","0.04367" +"GO:0016322","neuron remodeling",3,0,0.1,1377,"1.0000","0.04418","0.04418" +"GO:1902275","regulation of chromatin organization",14,0,0.45,1378,"1.0000","0.04569","0.04569" +"GO:1901989","positive regulation of cell cycle phase ...",5,0,0.16,1379,"1.0000","0.04592","0.04592" +"GO:0034504","protein localization to nucleus",31,2,1,689,"0.2652","0.04739","0.04739" +"GO:0060968","regulation of gene silencing",4,0,0.13,1380,"1.0000","0.04902","0.04902" +"GO:0051153","regulation of striated muscle cell diffe...",4,1,0.13,335,"0.1233","0.05017","0.05017" +"GO:0060048","cardiac muscle contraction",6,0,0.19,1381,"1.0000","0.05029","0.05029" +"GO:1901797","negative regulation of signal transducti...",5,0,0.16,1382,"1.0000","0.05076","0.05076" +"GO:0019953","sexual reproduction",60,2,1.94,1094,"0.5846","0.05205","0.05205" +"GO:0032543","mitochondrial translation",16,0,0.52,1383,"1.0000","0.05346","0.05346" +"GO:0140053","mitochondrial gene expression",16,0,0.52,1384,"1.0000","0.05346","0.05346" +"GO:0033365","protein localization to organelle",76,2,2.46,1198,"0.7130","0.05411","0.05411" +"GO:0006913","nucleocytoplasmic transport",48,2,1.55,969,"0.4640","0.05660","0.05660" +"GO:0051169","nuclear transport",48,2,1.55,970,"0.4640","0.05660","0.05660" +"GO:0008652","cellular amino acid biosynthetic process",9,0,0.29,1385,"1.0000","0.05673","0.05673" +"GO:1901607","alpha-amino acid biosynthetic process",9,0,0.29,1386,"1.0000","0.05673","0.05673" +"GO:0009987","cellular process",2294,67,74.2,1316,"0.9686","0.00871","0.05691" +"GO:1901800","positive regulation of proteasomal prote...",10,1,0.32,699,"0.2806","0.05793","0.05793" +"GO:1903052","positive regulation of proteolysis invol...",10,1,0.32,700,"0.2806","0.05793","0.05793" +"GO:1903364","positive regulation of cellular protein ...",10,1,0.32,701,"0.2806","0.05793","0.05793" +"GO:0045454","cell redox homeostasis",28,0,0.91,1387,"1.0000","0.05854","0.05854" +"GO:0009896","positive regulation of catabolic process",25,1,0.81,1069,"0.5619","0.05923","0.05923" +"GO:0042254","ribosome biogenesis",65,0,2.1,1388,"1.0000","0.05953","0.05953" +"GO:0033045","regulation of sister chromatid segregati...",7,0,0.23,1389,"1.0000","0.06075","0.06075" +"GO:0033047","regulation of mitotic sister chromatid s...",7,0,0.23,1390,"1.0000","0.06075","0.06075" +"GO:0051304","chromosome separation",7,0,0.23,1391,"1.0000","0.06075","0.06075" +"GO:0051983","regulation of chromosome segregation",7,0,0.23,1392,"1.0000","0.06075","0.06075" +"GO:0045787","positive regulation of cell cycle",13,0,0.42,1393,"1.0000","0.06111","0.06111" +"GO:0044237","cellular metabolic process",1735,46,56.12,1330,"0.9868","0.00210","0.06128" +"GO:0051346","negative regulation of hydrolase activit...",22,4,0.71,6,"0.0048","0.06199","0.06199" +"GO:0010257","NADH dehydrogenase complex assembly",11,0,0.36,1394,"1.0000","0.06273","0.06273" +"GO:0032981","mitochondrial respiratory chain complex ...",11,0,0.36,1395,"1.0000","0.06273","0.06273" +"GO:0014902","myotube differentiation",4,0,0.13,1396,"1.0000","0.06332","0.06332" +"GO:0006874","cellular calcium ion homeostasis",11,0,0.36,1397,"1.0000","0.06667","0.06667" +"GO:0006749","glutathione metabolic process",9,1,0.29,659,"0.2565","0.06685","0.06685" +"GO:0030177","positive regulation of Wnt signaling pat...",6,1,0.19,499,"0.1792","0.06740","0.06740" +"GO:1902235","regulation of endoplasmic reticulum stre...",5,1,0.16,424,"0.1517","0.06794","0.06794" +"GO:1902236","negative regulation of endoplasmic retic...",5,1,0.16,425,"0.1517","0.06794","0.06794" +"GO:0002218","activation of innate immune response",9,1,0.29,660,"0.2565","0.06819","0.06819" +"GO:0002758","innate immune response-activating signal...",9,1,0.29,661,"0.2565","0.06819","0.06819" +"GO:1903573","negative regulation of response to endop...",10,1,0.32,702,"0.2806","0.06837","0.06837" +"GO:0032504","multicellular organism reproduction",69,3,2.23,873,"0.3874","0.06837","0.06837" +"GO:0048232","male gamete generation",37,1,1.2,1194,"0.7060","0.06839","0.06839" +"GO:0042110","T cell activation",8,2,0.26,33,"0.0255","0.07011","0.07011" +"GO:0046649","lymphocyte activation",8,2,0.26,34,"0.0255","0.07011","0.07011" +"GO:0006725","cellular aromatic compound metabolic pro...",922,22,29.82,1321,"0.9717","0.02416","0.07036" +"GO:0034754","cellular hormone metabolic process",5,0,0.16,1398,"1.0000","0.07055","0.07055" +"GO:0002673","regulation of acute inflammatory respons...",3,0,0.1,1399,"1.0000","0.07055","0.07055" +"GO:0002685","regulation of leukocyte migration",4,0,0.13,1400,"1.0000","0.07088","0.07088" +"GO:0050900","leukocyte migration",4,0,0.13,1401,"1.0000","0.07088","0.07088" +"GO:0002520","immune system development",16,4,0.52,2,"0.0014","0.07100","0.07100" +"GO:0048534","hematopoietic or lymphoid organ developm...",16,4,0.52,3,"0.0014","0.07100","0.07100" +"GO:1905897","regulation of response to endoplasmic re...",12,1,0.39,780,"0.3265","0.07151","0.07151" +"GO:0015849","organic acid transport",24,0,0.78,1402,"1.0000","0.07167","0.07167" +"GO:0046942","carboxylic acid transport",24,0,0.78,1403,"1.0000","0.07167","0.07167" +"GO:0090263","positive regulation of canonical Wnt sig...",5,1,0.16,426,"0.1517","0.07258","0.07258" +"GO:0048793","pronephros development",3,0,0.1,1404,"1.0000","0.07266","0.07266" +"GO:0009735","response to cytokinin",3,0,0.1,1405,"1.0000","0.07344","0.07344" +"GO:0007276","gamete generation",55,1,1.78,1261,"0.8388","0.07426","0.07426" +"GO:0044271","cellular nitrogen compound biosynthetic ...",691,19,22.35,1256,"0.8273","5.0e-05","0.07518" +"GO:0044257","cellular protein catabolic process",85,1,2.75,1307,"0.9413","0.07549","0.07549" +"GO:0051603","proteolysis involved in cellular protein...",85,1,2.75,1308,"0.9413","0.07549","0.07549" +"GO:0051253","negative regulation of RNA metabolic pro...",75,3,2.43,949,"0.4402","0.07639","0.07639" +"GO:1902679","negative regulation of RNA biosynthetic ...",75,3,2.43,950,"0.4402","0.07639","0.07639" +"GO:1903507","negative regulation of nucleic acid-temp...",75,3,2.43,951,"0.4402","0.07639","0.07639" +"GO:0006508","proteolysis",239,13,7.73,56,"0.0417","0.02523","0.07762" +"GO:0000154","rRNA modification",9,0,0.29,1406,"1.0000","0.07895","0.07895" +"GO:0043487","regulation of RNA stability",8,0,0.26,1407,"1.0000","0.07919","0.07919" +"GO:0043488","regulation of mRNA stability",8,0,0.26,1408,"1.0000","0.07919","0.07919" +"GO:0010629","negative regulation of gene expression",111,3,3.59,1193,"0.7055","0.07953","0.07953" +"GO:0007283","spermatogenesis",35,1,1.13,1177,"0.6857","0.07960","0.07960" +"GO:0031334","positive regulation of protein complex a...",25,1,0.81,1070,"0.5619","0.07982","0.07982" +"GO:0007005","mitochondrion organization",63,3,2.04,797,"0.3337","0.08028","0.08028" +"GO:0002027","regulation of heart rate",5,0,0.16,1409,"1.0000","0.08285","0.08285" +"GO:0035456","response to interferon-beta",5,0,0.16,1410,"1.0000","0.08285","0.08285" +"GO:0035458","cellular response to interferon-beta",5,0,0.16,1411,"1.0000","0.08285","0.08285" +"GO:0035637","multicellular organismal signaling",5,0,0.16,1412,"1.0000","0.08285","0.08285" +"GO:0061337","cardiac conduction",5,0,0.16,1413,"1.0000","0.08285","0.08285" +"GO:0031047","gene silencing by RNA",18,1,0.58,959,"0.4476","0.08349","0.08349" +"GO:0006260","DNA replication",71,0,2.3,1414,"1.0000","0.08419","0.08419" +"GO:0000466","maturation of 5.8S rRNA from tricistroni...",6,0,0.19,1415,"1.0000","0.08454","0.08454" +"GO:0031935","regulation of chromatin silencing",3,0,0.1,1416,"1.0000","0.08510","0.08510" +"GO:0031936","negative regulation of chromatin silenci...",3,0,0.1,1417,"1.0000","0.08510","0.08510" +"GO:0031938","regulation of chromatin silencing at tel...",3,0,0.1,1418,"1.0000","0.08510","0.08510" +"GO:0060969","negative regulation of gene silencing",3,0,0.1,1419,"1.0000","0.08510","0.08510" +"GO:1901068","guanosine-containing compound metabolic ...",4,0,0.13,1420,"1.0000","0.08536","0.08536" +"GO:0070129","regulation of mitochondrial translation",4,0,0.13,1421,"1.0000","0.08613","0.08613" +"GO:0034260","negative regulation of GTPase activity",3,2,0.1,4,"0.0030","0.08651","0.08651" +"GO:0010558","negative regulation of macromolecule bio...",83,4,2.68,697,"0.2802","0.08793","0.08793" +"GO:0045934","negative regulation of nucleobase-contai...",83,4,2.68,698,"0.2802","0.08793","0.08793" +"GO:0051726","regulation of cell cycle",90,2,2.91,1241,"0.7967","0.08827","0.08827" +"GO:0046717","acid secretion",5,0,0.16,1422,"1.0000","0.08875","0.08875" +"GO:0006839","mitochondrial transport",39,2,1.26,845,"0.3615","0.08897","0.08897" +"GO:2001251","negative regulation of chromosome organi...",10,0,0.32,1423,"1.0000","0.08954","0.08954" +"GO:0031331","positive regulation of cellular cataboli...",21,1,0.68,1021,"0.4999","0.08988","0.08988" +"GO:0043086","negative regulation of catalytic activit...",39,4,1.26,45,"0.0356","0.09002","0.09002" +"GO:0042182","ketone catabolic process",3,0,0.1,1424,"1.0000","0.09053","0.09053" +"GO:0007091","metaphase/anaphase transition of mitotic...",6,0,0.19,1425,"1.0000","0.09071","0.09071" +"GO:0010965","regulation of mitotic sister chromatid s...",6,0,0.19,1426,"1.0000","0.09071","0.09071" +"GO:0030071","regulation of mitotic metaphase/anaphase...",6,0,0.19,1427,"1.0000","0.09071","0.09071" +"GO:0044784","metaphase/anaphase transition of cell cy...",6,0,0.19,1428,"1.0000","0.09071","0.09071" +"GO:0051306","mitotic sister chromatid separation",6,0,0.19,1429,"1.0000","0.09071","0.09071" +"GO:1902099","regulation of metaphase/anaphase transit...",6,0,0.19,1430,"1.0000","0.09071","0.09071" +"GO:1905818","regulation of chromosome separation",6,0,0.19,1431,"1.0000","0.09071","0.09071" +"GO:1901796","regulation of signal transduction by p53...",10,0,0.32,1432,"1.0000","0.09115","0.09115" +"GO:0050776","regulation of immune response",39,3,1.26,402,"0.1302","0.09207","0.09207" +"GO:0007569","cell aging",4,0,0.13,1433,"1.0000","0.09221","0.09221" +"GO:0042078","germ-line stem cell division",4,0,0.13,1434,"1.0000","0.09221","0.09221" +"GO:0090311","regulation of protein deacetylation",4,0,0.13,1435,"1.0000","0.09221","0.09221" +"GO:0098728","germline stem cell asymmetric division",4,0,0.13,1436,"1.0000","0.09221","0.09221" +"GO:1902253","regulation of intrinsic apoptotic signal...",4,0,0.13,1437,"1.0000","0.09221","0.09221" +"GO:1902254","negative regulation of intrinsic apoptot...",4,0,0.13,1438,"1.0000","0.09221","0.09221" +"GO:2001021","negative regulation of response to DNA d...",4,0,0.13,1439,"1.0000","0.09221","0.09221" +"GO:0010564","regulation of cell cycle process",45,1,1.46,1231,"0.7748","0.09224","0.09224" +"GO:0045116","protein neddylation",4,0,0.13,1440,"1.0000","0.09385","0.09385" +"GO:0032273","positive regulation of protein polymeriz...",24,1,0.78,1055,"0.5472","0.09495","0.09495" +"GO:0051495","positive regulation of cytoskeleton orga...",24,1,0.78,1056,"0.5472","0.09495","0.09495" +"GO:1902905","positive regulation of supramolecular fi...",24,1,0.78,1057,"0.5472","0.09495","0.09495" +"GO:0045089","positive regulation of innate immune res...",13,1,0.42,803,"0.3484","0.09531","0.09531" +"GO:0007017","microtubule-based process",84,9,2.72,1,"0.0013","0.09540","0.09540" +"GO:0045892","negative regulation of transcription, DN...",73,3,2.36,925,"0.4228","0.09552","0.09552" +"GO:0045879","negative regulation of smoothened signal...",3,0,0.1,1441,"1.0000","0.09574","0.09574" +"GO:0043248","proteasome assembly",7,0,0.23,1442,"1.0000","0.09707","0.09707" +"GO:0036503","ERAD pathway",20,0,0.65,1443,"1.0000","0.09737","0.09737" +"GO:0034622","cellular protein-containing complex asse...",124,3,4.01,1230,"0.7745","0.03967","0.09737" +"GO:0006081","cellular aldehyde metabolic process",7,1,0.23,554,"0.2058","0.09744","0.09744" +"GO:0034976","response to endoplasmic reticulum stress",33,1,1.07,1158,"0.6641","0.09787","0.09787" +"GO:0060135","maternal process involved in female preg...",3,1,0.1,227,"0.0940","0.09802","0.09802" +"GO:0051896","regulation of protein kinase B signaling",3,0,0.1,1444,"1.0000","0.09802","0.09802" +"GO:0006139","nucleobase-containing compound metabolic...",896,20,28.98,1329,"0.9863","0.03149","0.09852" +"GO:0051258","protein polymerization",35,2,1.13,762,"0.3137","0.09856","0.09856" +"GO:0040001","establishment of mitotic spindle localiz...",3,0,0.1,1445,"1.0000","0.09968","0.09968" +"GO:0051293","establishment of spindle localization",3,0,0.1,1446,"1.0000","0.09968","0.09968" +"GO:0051653","spindle localization",3,0,0.1,1447,"1.0000","0.09968","0.09968" +"GO:1903362","regulation of cellular protein catabolic...",20,1,0.65,1001,"0.4830","0.10019","0.10019" +"GO:0009395","phospholipid catabolic process",6,0,0.19,1448,"1.0000","0.10040","0.10040" +"GO:0070584","mitochondrion morphogenesis",4,0,0.13,1449,"1.0000","0.10182","0.10182" +"GO:0006606","protein import into nucleus",22,2,0.71,475,"0.1577","0.10293","0.10293" +"GO:0030433","ubiquitin-dependent ERAD pathway",16,0,0.52,1450,"1.0000","0.10353","0.10353" +"GO:0010923","negative regulation of phosphatase activ...",4,0,0.13,1451,"1.0000","0.10359","0.10359" +"GO:0032943","mononuclear cell proliferation",4,0,0.13,1452,"1.0000","0.10359","0.10359" +"GO:0042098","T cell proliferation",4,0,0.13,1453,"1.0000","0.10359","0.10359" +"GO:0046651","lymphocyte proliferation",4,0,0.13,1454,"1.0000","0.10359","0.10359" +"GO:0070661","leukocyte proliferation",4,0,0.13,1455,"1.0000","0.10359","0.10359" +"GO:0031505","fungal-type cell wall organization",3,0,0.1,1456,"1.0000","0.10452","0.10452" +"GO:0045229","external encapsulating structure organiz...",3,0,0.1,1457,"1.0000","0.10452","0.10452" +"GO:0071555","cell wall organization",3,0,0.1,1458,"1.0000","0.10452","0.10452" +"GO:0046434","organophosphate catabolic process",22,1,0.71,1028,"0.5161","0.10581","0.10581" +"GO:0010469","regulation of signaling receptor activit...",6,1,0.19,500,"0.1792","0.10585","0.10585" +"GO:0010830","regulation of myotube differentiation",3,0,0.1,1459,"1.0000","0.10608","0.10608" +"GO:0090175","regulation of establishment of planar po...",3,0,0.1,1460,"1.0000","0.10608","0.10608" +"GO:0010948","negative regulation of cell cycle proces...",13,0,0.42,1461,"1.0000","0.10639","0.10639" +"GO:0016246","RNA interference",11,1,0.36,741,"0.3039","0.10813","0.10813" +"GO:0016075","rRNA catabolic process",3,0,0.1,1462,"1.0000","0.11007","0.11007" +"GO:0034661","ncRNA catabolic process",3,0,0.1,1463,"1.0000","0.11007","0.11007" +"GO:0046483","heterocycle metabolic process",922,21,29.82,1328,"0.9841","0.03679","0.11052" +"GO:0007034","vacuolar transport",23,2,0.74,485,"0.1693","0.11054","0.11054" +"GO:0031329","regulation of cellular catabolic process",51,2,1.65,1017,"0.4961","0.11108","0.11108" +"GO:1901360","organic cyclic compound metabolic proces...",940,24,30.4,1306,"0.9407","0.03952","0.11202" +"GO:2001243","negative regulation of intrinsic apoptot...",13,1,0.42,804,"0.3484","0.11621","0.11621" +"GO:0042373","vitamin K metabolic process",3,0,0.1,1464,"1.0000","0.11812","0.11812" +"GO:1901987","regulation of cell cycle phase transitio...",19,0,0.61,1465,"1.0000","0.11832","0.11832" +"GO:1901568","fatty acid derivative metabolic process",7,0,0.23,1466,"1.0000","0.11854","0.11854" +"GO:0050920","regulation of chemotaxis",4,0,0.13,1467,"1.0000","0.11898","0.11898" +"GO:0007088","regulation of mitotic nuclear division",16,1,0.52,910,"0.4099","0.11961","0.11961" +"GO:0051783","regulation of nuclear division",16,1,0.52,911,"0.4099","0.11961","0.11961" +"GO:2000113","negative regulation of cellular macromol...",80,3,2.59,998,"0.4828","0.12034","0.12034" +"GO:0046834","lipid phosphorylation",3,0,0.1,1468,"1.0000","0.12042","0.12042" +"GO:0046854","phosphatidylinositol phosphorylation",3,0,0.1,1469,"1.0000","0.12042","0.12042" +"GO:0009733","response to auxin",5,0,0.16,1470,"1.0000","0.12079","0.12079" +"GO:0019725","cellular homeostasis",60,0,1.94,1471,"1.0000","0.12145","0.12145" +"GO:1901565","organonitrogen compound catabolic proces...",148,6,4.79,801,"0.3449","0.12252","0.12252" +"GO:0033865","nucleoside bisphosphate metabolic proces...",8,0,0.26,1472,"1.0000","0.12284","0.12284" +"GO:0033875","ribonucleoside bisphosphate metabolic pr...",8,0,0.26,1473,"1.0000","0.12284","0.12284" +"GO:0034032","purine nucleoside bisphosphate metabolic...",8,0,0.26,1474,"1.0000","0.12284","0.12284" +"GO:0006434","seryl-tRNA aminoacylation",3,0,0.1,1475,"1.0000","0.12305","0.12305" +"GO:0010821","regulation of mitochondrion organization",16,3,0.52,13,"0.0135","0.12332","0.12332" +"GO:0044843","cell cycle G1/S phase transition",16,2,0.52,206,"0.0926","0.12366","0.12366" +"GO:0045815","positive regulation of gene expression, ...",4,0,0.13,1476,"1.0000","0.12437","0.12437" +"GO:0006544","glycine metabolic process",4,0,0.13,1477,"1.0000","0.12471","0.12471" +"GO:0051493","regulation of cytoskeleton organization",32,1,1.04,1147,"0.6528","0.12608","0.12608" +"GO:0000288","nuclear-transcribed mRNA catabolic proce...",6,0,0.19,1478,"1.0000","0.12680","0.12680" +"GO:1903321","negative regulation of protein modificat...",10,1,0.32,703,"0.2806","0.12698","0.12698" +"GO:0009164","nucleoside catabolic process",3,0,0.1,1479,"1.0000","0.12701","0.12701" +"GO:0034656","nucleobase-containing small molecule cat...",3,0,0.1,1480,"1.0000","0.12701","0.12701" +"GO:0042454","ribonucleoside catabolic process",3,0,0.1,1481,"1.0000","0.12701","0.12701" +"GO:1901658","glycosyl compound catabolic process",3,0,0.1,1482,"1.0000","0.12701","0.12701" +"GO:0044703","multi-organism reproductive process",67,3,2.17,859,"0.3696","0.12806","0.12806" +"GO:0051170","import into nucleus",25,2,0.81,538,"0.1928","0.12863","0.12863" +"GO:0090068","positive regulation of cell cycle proces...",9,0,0.29,1483,"1.0000","0.12920","0.12920" +"GO:0001890","placenta development",14,1,0.45,850,"0.3696","0.12952","0.12952" +"GO:1901988","negative regulation of cell cycle phase ...",9,0,0.29,1484,"1.0000","0.13080","0.13080" +"GO:1901991","negative regulation of mitotic cell cycl...",9,0,0.29,1485,"1.0000","0.13080","0.13080" +"GO:0030521","androgen receptor signaling pathway",4,0,0.13,1486,"1.0000","0.13101","0.13101" +"GO:0033014","tetrapyrrole biosynthetic process",7,0,0.23,1487,"1.0000","0.13126","0.13126" +"GO:0098754","detoxification",3,0,0.1,1488,"1.0000","0.13149","0.13149" +"GO:1990748","cellular detoxification",3,0,0.1,1489,"1.0000","0.13149","0.13149" +"GO:0000723","telomere maintenance",10,1,0.32,704,"0.2806","0.13167","0.13167" +"GO:0032200","telomere organization",10,1,0.32,705,"0.2806","0.13167","0.13167" +"GO:0032434","regulation of proteasomal ubiquitin-depe...",10,1,0.32,706,"0.2806","0.13167","0.13167" +"GO:2000058","regulation of ubiquitin-dependent protei...",10,1,0.32,707,"0.2806","0.13167","0.13167" +"GO:0006613","cotranslational protein targeting to mem...",3,0,0.1,1490,"1.0000","0.13211","0.13211" +"GO:0006614","SRP-dependent cotranslational protein ta...",3,0,0.1,1491,"1.0000","0.13211","0.13211" +"GO:0033240","positive regulation of cellular amine me...",3,0,0.1,1492,"1.0000","0.13284","0.13284" +"GO:0003333","amino acid transmembrane transport",12,0,0.39,1493,"1.0000","0.13390","0.13390" +"GO:0043967","histone H4 acetylation",8,0,0.26,1494,"1.0000","0.13427","0.13427" +"GO:0032446","protein modification by small protein co...",81,2,2.62,1219,"0.7457","0.13513","0.13513" +"GO:0002682","regulation of immune system process",55,5,1.78,41,"0.0309","0.13577","0.13577" +"GO:0061136","regulation of proteasomal protein catabo...",19,1,0.61,976,"0.4656","0.13579","0.13579" +"GO:1903050","regulation of proteolysis involved in ce...",19,1,0.61,977,"0.4656","0.13579","0.13579" +"GO:0001508","action potential",4,0,0.13,1495,"1.0000","0.13643","0.13643" +"GO:0006942","regulation of striated muscle contractio...",4,0,0.13,1496,"1.0000","0.13643","0.13643" +"GO:0055117","regulation of cardiac muscle contraction",4,0,0.13,1497,"1.0000","0.13643","0.13643" +"GO:0086065","cell communication involved in cardiac c...",4,0,0.13,1498,"1.0000","0.13643","0.13643" +"GO:0110096","cellular response to aldehyde",4,0,0.13,1499,"1.0000","0.13643","0.13643" +"GO:0034660","ncRNA metabolic process",136,3,4.4,1255,"0.8260","0.03019","0.13687" +"GO:0000070","mitotic sister chromatid segregation",15,0,0.49,1500,"1.0000","0.13690","0.13690" +"GO:0044265","cellular macromolecule catabolic process",120,1,3.88,1327,"0.9822","0.13699","0.13699" +"GO:0051260","protein homooligomerization",10,0,0.32,1501,"1.0000","0.13707","0.13707" +"GO:0090502","RNA phosphodiester bond hydrolysis, endo...",4,0,0.13,1502,"1.0000","0.13717","0.13717" +"GO:0022412","cellular process involved in reproductio...",42,1,1.36,1221,"0.7511","0.13860","0.13860" +"GO:0043087","regulation of GTPase activity",18,3,0.58,19,"0.0188","0.13943","0.13943" +"GO:0006120","mitochondrial electron transport, NADH t...",8,0,0.26,1503,"1.0000","0.14001","0.14001" +"GO:0010605","negative regulation of macromolecule met...",156,4,5.05,1223,"0.7535","0.14031","0.14031" +"GO:0010390","histone monoubiquitination",3,0,0.1,1504,"1.0000","0.14135","0.14135" +"GO:0065003","protein-containing complex assembly",143,3,4.63,1266,"0.8512","0.07013","0.14136" +"GO:0006420","arginyl-tRNA aminoacylation",3,0,0.1,1505,"1.0000","0.14299","0.14299" +"GO:0043687","post-translational protein modification",4,0,0.13,1506,"1.0000","0.14431","0.14431" +"GO:0045840","positive regulation of mitotic nuclear d...",3,0,0.1,1507,"1.0000","0.14542","0.14542" +"GO:0051785","positive regulation of nuclear division",3,0,0.1,1508,"1.0000","0.14542","0.14542" +"GO:0055074","calcium ion homeostasis",12,0,0.39,1509,"1.0000","0.14713","0.14713" +"GO:0072503","cellular divalent inorganic cation homeo...",12,0,0.39,1510,"1.0000","0.14713","0.14713" +"GO:0043632","modification-dependent macromolecule cat...",74,1,2.39,1292,"0.9149","0.14835","0.14835" +"GO:0009117","nucleotide metabolic process",89,6,2.88,161,"0.0660","0.14918","0.14918" +"GO:0000463","maturation of LSU-rRNA from tricistronic...",5,0,0.16,1511,"1.0000","0.14967","0.14967" +"GO:0000470","maturation of LSU-rRNA",5,0,0.16,1512,"1.0000","0.14967","0.14967" +"GO:0002221","pattern recognition receptor signaling p...",8,1,0.26,613,"0.2315","0.14979","0.14979" +"GO:0034605","cellular response to heat",20,2,0.65,405,"0.1351","0.14999","0.14999" +"GO:0016441","posttranscriptional gene silencing",15,1,0.49,875,"0.3901","0.15026","0.15026" +"GO:0035194","posttranscriptional gene silencing by RN...",15,1,0.49,876,"0.3901","0.15026","0.15026" +"GO:0046686","response to cadmium ion",15,2,0.49,192,"0.0827","0.15026","0.15026" +"GO:0009069","serine family amino acid metabolic proce...",6,0,0.19,1513,"1.0000","0.15092","0.15092" +"GO:0060710","chorio-allantoic fusion",4,0,0.13,1514,"1.0000","0.15093","0.15093" +"GO:0060715","syncytiotrophoblast cell differentiation...",4,0,0.13,1515,"1.0000","0.15093","0.15093" +"GO:0060717","chorion development",4,0,0.13,1516,"1.0000","0.15093","0.15093" +"GO:1903867","extraembryonic membrane development",4,0,0.13,1517,"1.0000","0.15093","0.15093" +"GO:0006364","rRNA processing",37,0,1.2,1518,"1.0000","0.15118","0.15118" +"GO:1905268","negative regulation of chromatin organiz...",6,0,0.19,1519,"1.0000","0.15125","0.15125" +"GO:0050778","positive regulation of immune response",29,2,0.94,643,"0.2409","0.15164","0.15164" +"GO:1901992","positive regulation of mitotic cell cycl...",3,0,0.1,1520,"1.0000","0.15381","0.15381" +"GO:0090304","nucleic acid metabolic process",789,14,25.52,1335,"0.9986","0.06407","0.15500" +"GO:0006753","nucleoside phosphate metabolic process",92,6,2.98,185,"0.0750","0.12446","0.15684" +"GO:0042273","ribosomal large subunit biogenesis",13,0,0.42,1521,"1.0000","0.15733","0.15733" +"GO:0000819","sister chromatid segregation",21,0,0.68,1522,"1.0000","0.15852","0.15852" +"GO:0043966","histone H3 acetylation",4,0,0.13,1523,"1.0000","0.15941","0.15941" +"GO:0007281","germ cell development",39,1,1.26,1203,"0.7249","0.15992","0.15992" +"GO:0033028","myeloid cell apoptotic process",3,1,0.1,228,"0.0940","0.16100","0.16100" +"GO:0033032","regulation of myeloid cell apoptotic pro...",3,1,0.1,229,"0.0940","0.16100","0.16100" +"GO:0033033","negative regulation of myeloid cell apop...",3,1,0.1,230,"0.0940","0.16100","0.16100" +"GO:0007413","axonal fasciculation",9,1,0.29,662,"0.2565","0.16223","0.16223" +"GO:0106030","neuron projection fasciculation",9,1,0.29,663,"0.2565","0.16223","0.16223" +"GO:0043902","positive regulation of multi-organism pr...",21,3,0.68,38,"0.0286","0.16233","0.16233" +"GO:0097435","supramolecular fiber organization",53,3,1.71,653,"0.2445","0.16267","0.16267" +"GO:0030097","hemopoiesis",15,3,0.49,11,"0.0112","0.16353","0.16353" +"GO:0019221","cytokine-mediated signaling pathway",11,1,0.36,742,"0.3039","0.16544","0.16544" +"GO:0072528","pyrimidine-containing compound biosynthe...",9,0,0.29,1524,"1.0000","0.16560","0.16560" +"GO:1903311","regulation of mRNA metabolic process",24,2,0.78,527,"0.1810","0.16678","0.16678" +"GO:2001257","regulation of cation channel activity",10,1,0.32,708,"0.2806","0.16698","0.16698" +"GO:0043043","peptide biosynthetic process",208,6,6.73,1171,"0.6757","7.6e-17","0.16709" +"GO:0031063","regulation of histone deacetylation",3,0,0.1,1525,"1.0000","0.16744","0.16744" +"GO:0042771","intrinsic apoptotic signaling pathway in...",3,0,0.1,1526,"1.0000","0.16744","0.16744" +"GO:0043981","histone H4-K5 acetylation",3,0,0.1,1527,"1.0000","0.16744","0.16744" +"GO:0043982","histone H4-K8 acetylation",3,0,0.1,1528,"1.0000","0.16744","0.16744" +"GO:0043984","histone H4-K16 acetylation",3,0,0.1,1529,"1.0000","0.16744","0.16744" +"GO:0090312","positive regulation of protein deacetyla...",3,0,0.1,1530,"1.0000","0.16744","0.16744" +"GO:1902165","regulation of intrinsic apoptotic signal...",3,0,0.1,1531,"1.0000","0.16744","0.16744" +"GO:1902166","negative regulation of intrinsic apoptot...",3,0,0.1,1532,"1.0000","0.16744","0.16744" +"GO:1902230","negative regulation of intrinsic apoptot...",3,0,0.1,1533,"1.0000","0.16744","0.16744" +"GO:0015908","fatty acid transport",6,0,0.19,1534,"1.0000","0.16861","0.16861" +"GO:0015909","long-chain fatty acid transport",6,0,0.19,1535,"1.0000","0.16861","0.16861" +"GO:0001947","heart looping",5,1,0.16,427,"0.1517","0.16880","0.16880" +"GO:0003143","embryonic heart tube morphogenesis",5,1,0.16,428,"0.1517","0.16880","0.16880" +"GO:0035050","embryonic heart tube development",5,1,0.16,429,"0.1517","0.16880","0.16880" +"GO:0061371","determination of heart left/right asymme...",5,1,0.16,430,"0.1517","0.16880","0.16880" +"GO:0042551","neuron maturation",4,0,0.13,1536,"1.0000","0.16952","0.16952" +"GO:0007286","spermatid development",21,0,0.68,1537,"1.0000","0.17047","0.17047" +"GO:0048515","spermatid differentiation",21,0,0.68,1538,"1.0000","0.17047","0.17047" +"GO:0019538","protein metabolic process",860,32,27.82,545,"0.1986","1.6e-05","0.17075" +"GO:0070936","protein K48-linked ubiquitination",7,0,0.23,1539,"1.0000","0.17095","0.17095" +"GO:0002224","toll-like receptor signaling pathway",4,0,0.13,1540,"1.0000","0.17169","0.17169" +"GO:0070979","protein K11-linked ubiquitination",4,0,0.13,1541,"1.0000","0.17169","0.17169" +"GO:0006750","glutathione biosynthetic process",3,1,0.1,231,"0.0940","0.17242","0.17242" +"GO:0019184","nonribosomal peptide biosynthetic proces...",3,1,0.1,232,"0.0940","0.17242","0.17242" +"GO:0048507","meristem development",4,0,0.13,1542,"1.0000","0.17256","0.17256" +"GO:0016070","RNA metabolic process",653,13,21.12,1331,"0.9882","0.06493","0.17260" +"GO:1902532","negative regulation of intracellular sig...",29,1,0.94,1123,"0.6164","0.17315","0.17315" +"GO:0006855","drug transmembrane transport",8,0,0.26,1543,"1.0000","0.17331","0.17331" +"GO:0070972","protein localization to endoplasmic reti...",8,0,0.26,1544,"1.0000","0.17331","0.17331" +"GO:0002833","positive regulation of response to bioti...",4,0,0.13,1545,"1.0000","0.17387","0.17387" +"GO:0006473","protein acetylation",16,0,0.52,1546,"1.0000","0.17439","0.17439" +"GO:0003013","circulatory system process",17,1,0.55,930,"0.4291","0.17442","0.17442" +"GO:0008015","blood circulation",17,1,0.55,931,"0.4291","0.17442","0.17442" +"GO:0045598","regulation of fat cell differentiation",5,0,0.16,1547,"1.0000","0.17454","0.17454" +"GO:0032092","positive regulation of protein binding",4,0,0.13,1548,"1.0000","0.17607","0.17607" +"GO:0030518","intracellular steroid hormone receptor s...",12,0,0.39,1549,"1.0000","0.17619","0.17619" +"GO:0006029","proteoglycan metabolic process",3,0,0.1,1550,"1.0000","0.17648","0.17648" +"GO:0030166","proteoglycan biosynthetic process",3,0,0.1,1551,"1.0000","0.17648","0.17648" +"GO:0006405","RNA export from nucleus",18,0,0.58,1552,"1.0000","0.17654","0.17654" +"GO:0019915","lipid storage",6,0,0.19,1553,"1.0000","0.17699","0.17699" +"GO:0002757","immune response-activating signal transd...",13,1,0.42,805,"0.3484","0.17710","0.17710" +"GO:0009451","RNA modification",51,1,1.65,1250,"0.8157","0.17817","0.17817" +"GO:0006457","protein folding",77,4,2.49,641,"0.2370","0.17821","0.17821" +"GO:0017145","stem cell division",8,1,0.26,614,"0.2315","0.17831","0.17831" +"GO:0097305","response to alcohol",28,2,0.91,608,"0.2288","0.17871","0.17871" +"GO:0006513","protein monoubiquitination",10,0,0.32,1554,"1.0000","0.17887","0.17887" +"GO:1903825","organic acid transmembrane transport",15,0,0.49,1555,"1.0000","0.17901","0.17901" +"GO:1905039","carboxylic acid transmembrane transport",15,0,0.49,1556,"1.0000","0.17901","0.17901" +"GO:0009066","aspartate family amino acid metabolic pr...",3,0,0.1,1557,"1.0000","0.17957","0.17957" +"GO:0009059","macromolecule biosynthetic process",738,17,23.87,1313,"0.9655","0.00054","0.17965" +"GO:0010015","root morphogenesis",5,0,0.16,1558,"1.0000","0.18081","0.18081" +"GO:0010053","root epidermal cell differentiation",5,0,0.16,1559,"1.0000","0.18081","0.18081" +"GO:0071554","cell wall organization or biogenesis",5,0,0.16,1560,"1.0000","0.18081","0.18081" +"GO:0090558","plant epidermis development",5,0,0.16,1561,"1.0000","0.18081","0.18081" +"GO:0090627","plant epidermal cell differentiation",5,0,0.16,1562,"1.0000","0.18081","0.18081" +"GO:0006270","DNA replication initiation",9,0,0.29,1563,"1.0000","0.18205","0.18205" +"GO:0000082","G1/S transition of mitotic cell cycle",14,2,0.45,165,"0.0732","0.18234","0.18234" +"GO:0002697","regulation of immune effector process",14,2,0.45,166,"0.0732","0.18234","0.18234" +"GO:0007041","lysosomal transport",14,2,0.45,167,"0.0732","0.18234","0.18234" +"GO:0072321","chaperone-mediated protein transport",14,2,0.45,168,"0.0732","0.18234","0.18234" +"GO:1903313","positive regulation of mRNA metabolic pr...",14,2,0.45,169,"0.0732","0.18234","0.18234" +"GO:1903902","positive regulation of viral life cycle",14,2,0.45,170,"0.0732","0.18234","0.18234" +"GO:0032410","negative regulation of transporter activ...",3,0,0.1,1564,"1.0000","0.18270","0.18270" +"GO:0032413","negative regulation of ion transmembrane...",3,0,0.1,1565,"1.0000","0.18270","0.18270" +"GO:0032515","negative regulation of phosphoprotein ph...",3,0,0.1,1566,"1.0000","0.18270","0.18270" +"GO:0032924","activin receptor signaling pathway",3,0,0.1,1567,"1.0000","0.18270","0.18270" +"GO:0032925","regulation of activin receptor signaling...",3,0,0.1,1568,"1.0000","0.18270","0.18270" +"GO:0033197","response to vitamin E",3,0,0.1,1569,"1.0000","0.18270","0.18270" +"GO:0033273","response to vitamin",3,0,0.1,1570,"1.0000","0.18270","0.18270" +"GO:0034763","negative regulation of transmembrane tra...",3,0,0.1,1571,"1.0000","0.18270","0.18270" +"GO:0034766","negative regulation of ion transmembrane...",3,0,0.1,1572,"1.0000","0.18270","0.18270" +"GO:0035584","calcium-mediated signaling using intrace...",3,0,0.1,1573,"1.0000","0.18270","0.18270" +"GO:0051775","response to redox state",3,0,0.1,1574,"1.0000","0.18270","0.18270" +"GO:1903779","regulation of cardiac conduction",3,0,0.1,1575,"1.0000","0.18270","0.18270" +"GO:1904063","negative regulation of cation transmembr...",3,0,0.1,1576,"1.0000","0.18270","0.18270" +"GO:2001258","negative regulation of cation channel ac...",3,0,0.1,1577,"1.0000","0.18270","0.18270" +"GO:0030838","positive regulation of actin filament po...",15,0,0.49,1578,"1.0000","0.18322","0.18322" +"GO:0072594","establishment of protein localization to...",55,2,1.78,1052,"0.5369","0.18329","0.18329" +"GO:0006775","fat-soluble vitamin metabolic process",7,0,0.23,1579,"1.0000","0.18330","0.18330" +"GO:0000280","nuclear division",41,2,1.33,870,"0.3850","0.18375","0.18375" +"GO:0051147","regulation of muscle cell differentiatio...",5,1,0.16,431,"0.1517","0.18386","0.18386" +"GO:0001974","blood vessel remodeling",5,0,0.16,1580,"1.0000","0.18386","0.18386" +"GO:2001237","negative regulation of extrinsic apoptot...",7,1,0.23,555,"0.2058","0.18512","0.18512" +"GO:0018344","protein geranylgeranylation",3,0,0.1,1581,"1.0000","0.18520","0.18520" +"GO:0010638","positive regulation of organelle organiz...",51,3,1.65,605,"0.2271","0.18536","0.18536" +"GO:0044260","cellular macromolecule metabolic process",1198,28,38.75,1333,"0.9922","0.00500","0.18542" +"GO:0017038","protein import",32,2,1.04,691,"0.2773","0.18640","0.18640" +"GO:0048285","organelle fission",46,3,1.49,536,"0.1849","0.18947","0.18947" +"GO:0016049","cell growth",29,2,0.94,644,"0.2409","0.18984","0.18984" +"GO:0099601","regulation of neurotransmitter receptor ...",4,1,0.13,336,"0.1233","0.19017","0.19017" +"GO:1900449","regulation of glutamate receptor signali...",4,1,0.13,337,"0.1233","0.19017","0.19017" +"GO:0019693","ribose phosphate metabolic process",66,4,2.13,483,"0.1632","0.19024","0.19024" +"GO:0006625","protein targeting to peroxisome",4,0,0.13,1582,"1.0000","0.19064","0.19064" +"GO:0043574","peroxisomal transport",4,0,0.13,1583,"1.0000","0.19064","0.19064" +"GO:0072662","protein localization to peroxisome",4,0,0.13,1584,"1.0000","0.19064","0.19064" +"GO:0072663","establishment of protein localization to...",4,0,0.13,1585,"1.0000","0.19064","0.19064" +"GO:0045926","negative regulation of growth",20,2,0.65,406,"0.1351","0.19075","0.19075" +"GO:0006261","DNA-dependent DNA replication",30,0,0.97,1586,"1.0000","0.19157","0.19157" +"GO:0048644","muscle organ morphogenesis",3,0,0.1,1587,"1.0000","0.19191","0.19191" +"GO:0055008","cardiac muscle tissue morphogenesis",3,0,0.1,1588,"1.0000","0.19191","0.19191" +"GO:0060415","muscle tissue morphogenesis",3,0,0.1,1589,"1.0000","0.19191","0.19191" +"GO:0006694","steroid biosynthetic process",10,2,0.32,46,"0.0393","0.19209","0.19209" +"GO:0006511","ubiquitin-dependent protein catabolic pr...",73,1,2.36,1287,"0.9120","0.19258","0.19258" +"GO:0019941","modification-dependent protein catabolic...",73,1,2.36,1288,"0.9120","0.19258","0.19258" +"GO:0035821","modification of morphology or physiology...",14,2,0.45,171,"0.0732","0.19274","0.19274" +"GO:0051817","modification of morphology or physiology...",14,2,0.45,172,"0.0732","0.19274","0.19274" +"GO:0002082","regulation of oxidative phosphorylation",3,0,0.1,1590,"1.0000","0.19395","0.19395" +"GO:0000027","ribosomal large subunit assembly",5,0,0.16,1591,"1.0000","0.19405","0.19405" +"GO:0006282","regulation of DNA repair",6,0,0.19,1592,"1.0000","0.19482","0.19482" +"GO:0009892","negative regulation of metabolic process",164,4,5.3,1236,"0.7878","0.19494","0.19494" +"GO:0018342","protein prenylation",6,0,0.19,1593,"1.0000","0.19502","0.19502" +"GO:0097354","prenylation",6,0,0.19,1594,"1.0000","0.19502","0.19502" +"GO:0006520","cellular amino acid metabolic process",69,3,2.23,874,"0.3874","0.03516","0.19677" +"GO:1903522","regulation of blood circulation",15,1,0.49,877,"0.3901","0.19736","0.19736" +"GO:0006281","DNA repair",94,1,3.04,1311,"0.9568","0.19757","0.19757" +"GO:1901654","response to ketone",23,2,0.74,486,"0.1693","0.19784","0.19784" +"GO:0001700","embryonic development via the syncytial ...",8,1,0.26,615,"0.2315","0.19867","0.19867" +"GO:0032781","positive regulation of ATPase activity",8,1,0.26,616,"0.2315","0.19867","0.19867" +"GO:0034401","chromatin organization involved in regul...",8,1,0.26,617,"0.2315","0.19867","0.19867" +"GO:0046688","response to copper ion",8,1,0.26,618,"0.2315","0.19867","0.19867" +"GO:0070828","heterochromatin organization",8,1,0.26,619,"0.2315","0.19867","0.19867" +"GO:0070868","heterochromatin organization involved in...",8,1,0.26,620,"0.2315","0.19867","0.19867" +"GO:0097549","chromatin organization involved in negat...",8,1,0.26,621,"0.2315","0.19867","0.19867" +"GO:0007140","male meiotic nuclear division",8,0,0.26,1595,"1.0000","0.19867","0.19867" +"GO:0061077","chaperone-mediated protein folding",23,2,0.74,487,"0.1693","0.19900","0.19900" +"GO:0001751","compound eye photoreceptor cell differen...",5,0,0.16,1596,"1.0000","0.19940","0.19940" +"GO:0035794","positive regulation of mitochondrial mem...",3,1,0.1,233,"0.0940","0.19975","0.19975" +"GO:0097345","mitochondrial outer membrane permeabiliz...",3,1,0.1,234,"0.0940","0.19975","0.19975" +"GO:1902110","positive regulation of mitochondrial mem...",3,1,0.1,235,"0.0940","0.19975","0.19975" +"GO:1902686","mitochondrial outer membrane permeabiliz...",3,1,0.1,236,"0.0940","0.19975","0.19975" +"GO:0009890","negative regulation of biosynthetic proc...",88,4,2.85,775,"0.3171","0.20050","0.20050" +"GO:0002119","nematode larval development",3,1,0.1,237,"0.0940","0.20115","0.20115" +"GO:0000278","mitotic cell cycle",76,3,2.46,965,"0.4488","0.20180","0.20180" +"GO:0007094","mitotic spindle assembly checkpoint",4,0,0.13,1597,"1.0000","0.20211","0.20211" +"GO:0031577","spindle checkpoint",4,0,0.13,1598,"1.0000","0.20211","0.20211" +"GO:0033046","negative regulation of sister chromatid ...",4,0,0.13,1599,"1.0000","0.20211","0.20211" +"GO:0033048","negative regulation of mitotic sister ch...",4,0,0.13,1600,"1.0000","0.20211","0.20211" +"GO:0045839","negative regulation of mitotic nuclear d...",4,0,0.13,1601,"1.0000","0.20211","0.20211" +"GO:0045841","negative regulation of mitotic metaphase...",4,0,0.13,1602,"1.0000","0.20211","0.20211" +"GO:0051784","negative regulation of nuclear division",4,0,0.13,1603,"1.0000","0.20211","0.20211" +"GO:0051985","negative regulation of chromosome segreg...",4,0,0.13,1604,"1.0000","0.20211","0.20211" +"GO:0071173","spindle assembly checkpoint",4,0,0.13,1605,"1.0000","0.20211","0.20211" +"GO:0071174","mitotic spindle checkpoint",4,0,0.13,1606,"1.0000","0.20211","0.20211" +"GO:1902100","negative regulation of metaphase/anaphas...",4,0,0.13,1607,"1.0000","0.20211","0.20211" +"GO:1905819","negative regulation of chromosome separa...",4,0,0.13,1608,"1.0000","0.20211","0.20211" +"GO:2000816","negative regulation of mitotic sister ch...",4,0,0.13,1609,"1.0000","0.20211","0.20211" +"GO:0009968","negative regulation of signal transducti...",59,2,1.91,1084,"0.5754","0.20283","0.20283" +"GO:0006030","chitin metabolic process",30,1,0.97,1129,"0.6289","0.20299","0.20299" +"GO:0007368","determination of left/right symmetry",7,1,0.23,556,"0.2058","0.20331","0.20331" +"GO:0009799","specification of symmetry",7,1,0.23,557,"0.2058","0.20331","0.20331" +"GO:0009855","determination of bilateral symmetry",7,1,0.23,558,"0.2058","0.20331","0.20331" +"GO:0018212","peptidyl-tyrosine modification",7,1,0.23,559,"0.2058","0.20331","0.20331" +"GO:0006465","signal peptide processing",4,0,0.13,1610,"1.0000","0.20357","0.20357" +"GO:0006974","cellular response to DNA damage stimulus",132,1,4.27,1332,"0.9882","0.20455","0.20455" +"GO:0006259","DNA metabolic process",173,2,5.6,1324,"0.9797","0.20459","0.20459" +"GO:0036475","neuron death in response to oxidative st...",3,0,0.1,1611,"1.0000","0.20539","0.20539" +"GO:1903203","regulation of oxidative stress-induced n...",3,0,0.1,1612,"1.0000","0.20539","0.20539" +"GO:1903204","negative regulation of oxidative stress-...",3,0,0.1,1613,"1.0000","0.20539","0.20539" +"GO:0009259","ribonucleotide metabolic process",64,3,2.07,800,"0.3427","0.20583","0.20583" +"GO:0043900","regulation of multi-organism process",27,3,0.87,101,"0.0547","0.20645","0.20645" +"GO:0070534","protein K63-linked ubiquitination",9,0,0.29,1614,"1.0000","0.20746","0.20746" +"GO:0003015","heart process",12,0,0.39,1615,"1.0000","0.20768","0.20768" +"GO:0008016","regulation of heart contraction",12,0,0.39,1616,"1.0000","0.20768","0.20768" +"GO:0060047","heart contraction",12,0,0.39,1617,"1.0000","0.20768","0.20768" +"GO:0051276","chromosome organization",139,2,4.5,1309,"0.9455","0.20782","0.20782" +"GO:0045785","positive regulation of cell adhesion",3,0,0.1,1618,"1.0000","0.20839","0.20839" +"GO:1902806","regulation of cell cycle G1/S phase tran...",3,0,0.1,1619,"1.0000","0.20911","0.20911" +"GO:0002253","activation of immune response",14,1,0.45,851,"0.3696","0.20911","0.20911" +"GO:0060711","labyrinthine layer development",7,1,0.23,560,"0.2058","0.20919","0.20919" +"GO:0050829","defense response to Gram-negative bacter...",5,1,0.16,432,"0.1517","0.20984","0.20984" +"GO:0009908","flower development",4,0,0.13,1620,"1.0000","0.21001","0.21001" +"GO:0006865","amino acid transport",13,0,0.42,1621,"1.0000","0.21128","0.21128" +"GO:0010458","exit from mitosis",3,0,0.1,1622,"1.0000","0.21186","0.21186" +"GO:1902903","regulation of supramolecular fiber organ...",33,2,1.07,731,"0.2895","0.21225","0.21225" +"GO:0032970","regulation of actin filament-based proce...",24,0,0.78,1623,"1.0000","0.21248","0.21248" +"GO:0072527","pyrimidine-containing compound metabolic...",13,0,0.42,1624,"1.0000","0.04780","0.21259" +"GO:0051788","response to misfolded protein",5,0,0.16,1625,"1.0000","0.21265","0.21265" +"GO:0018193","peptidyl-amino acid modification",92,3,2.98,1091,"0.5784","0.21284","0.21284" +"GO:0016574","histone ubiquitination",5,0,0.16,1626,"1.0000","0.21310","0.21310" +"GO:0006022","aminoglycan metabolic process",36,1,1.16,1184,"0.6960","0.21334","0.21334" +"GO:0009150","purine ribonucleotide metabolic process",63,3,2.04,798,"0.3337","0.21407","0.21407" +"GO:0072507","divalent inorganic cation homeostasis",14,0,0.45,1627,"1.0000","0.21478","0.21478" +"GO:0009163","nucleoside biosynthetic process",5,0,0.16,1628,"1.0000","0.00190","0.21501" +"GO:0042455","ribonucleoside biosynthetic process",5,0,0.16,1629,"1.0000","0.00190","0.21501" +"GO:1901659","glycosyl compound biosynthetic process",5,0,0.16,1630,"1.0000","0.00190","0.21501" +"GO:0009123","nucleoside monophosphate metabolic proce...",51,3,1.65,606,"0.2271","0.21573","0.21573" +"GO:0009161","ribonucleoside monophosphate metabolic p...",51,3,1.65,607,"0.2271","0.21573","0.21573" +"GO:0043270","positive regulation of ion transport",11,0,0.36,1631,"1.0000","0.21590","0.21590" +"GO:1901990","regulation of mitotic cell cycle phase t...",17,0,0.55,1632,"1.0000","0.21670","0.21670" +"GO:0010648","negative regulation of cell communicatio...",60,2,1.94,1095,"0.5846","0.21679","0.21679" +"GO:0023057","negative regulation of signaling",60,2,1.94,1096,"0.5846","0.21679","0.21679" +"GO:0045930","negative regulation of mitotic cell cycl...",14,0,0.45,1633,"1.0000","0.21861","0.21861" +"GO:0002429","immune response-activating cell surface ...",7,0,0.23,1634,"1.0000","0.21994","0.21994" +"GO:0032456","endocytic recycling",4,0,0.13,1635,"1.0000","0.22018","0.22018" +"GO:0002699","positive regulation of immune effector p...",13,2,0.42,141,"0.0641","0.22091","0.22091" +"GO:0036474","cell death in response to hydrogen perox...",13,2,0.42,142,"0.0641","0.22091","0.22091" +"GO:0042698","ovulation cycle",13,2,0.42,143,"0.0641","0.22091","0.22091" +"GO:0045070","positive regulation of viral genome repl...",13,2,0.42,144,"0.0641","0.22091","0.22091" +"GO:0050766","positive regulation of phagocytosis",13,2,0.42,145,"0.0641","0.22091","0.22091" +"GO:0061635","regulation of protein complex stability",13,2,0.42,146,"0.0641","0.22091","0.22091" +"GO:1901031","regulation of response to reactive oxyge...",13,2,0.42,147,"0.0641","0.22091","0.22091" +"GO:1903205","regulation of hydrogen peroxide-induced ...",13,2,0.42,148,"0.0641","0.22091","0.22091" +"GO:2001038","regulation of cellular response to drug",13,2,0.42,149,"0.0641","0.22091","0.22091" +"GO:0031347","regulation of defense response",24,2,0.78,528,"0.1810","0.05129","0.22104" +"GO:0045834","positive regulation of lipid metabolic p...",6,1,0.19,501,"0.1792","0.22119","0.22119" +"GO:0043903","regulation of symbiosis, encompassing mu...",20,3,0.65,32,"0.0251","0.22174","0.22174" +"GO:1905392","plant organ morphogenesis",7,0,0.23,1636,"1.0000","0.22200","0.22200" +"GO:0015931","nucleobase-containing compound transport",25,0,0.81,1637,"1.0000","0.22285","0.22285" +"GO:1901605","alpha-amino acid metabolic process",25,2,0.81,539,"0.1928","0.22321","0.22321" +"GO:0034645","cellular macromolecule biosynthetic proc...",732,16,23.68,1323,"0.9791","0.00087","0.22353" +"GO:0006637","acyl-CoA metabolic process",5,0,0.16,1638,"1.0000","0.22356","0.22356" +"GO:0035383","thioester metabolic process",5,0,0.16,1639,"1.0000","0.22356","0.22356" +"GO:0060563","neuroepithelial cell differentiation",3,0,0.1,1640,"1.0000","0.22369","0.22369" +"GO:0009126","purine nucleoside monophosphate metaboli...",50,3,1.62,600,"0.2185","0.22460","0.22460" +"GO:0009167","purine ribonucleoside monophosphate meta...",50,3,1.62,601,"0.2185","0.22460","0.22460" +"GO:0060081","membrane hyperpolarization",3,0,0.1,1641,"1.0000","0.22460","0.22460" +"GO:0072718","response to cisplatin",3,0,0.1,1642,"1.0000","0.22460","0.22460" +"GO:2001259","positive regulation of cation channel ac...",3,0,0.1,1643,"1.0000","0.22460","0.22460" +"GO:0051606","detection of stimulus",15,1,0.49,878,"0.3901","0.22494","0.22494" +"GO:0071704","organic substance metabolic process",1885,59,60.97,1191,"0.7049","1.9e-05","0.22624" +"GO:0033043","regulation of organelle organization",85,3,2.75,1041,"0.5239","0.22629","0.22629" +"GO:1903214","regulation of protein targeting to mitoc...",10,1,0.32,709,"0.2806","0.22665","0.22665" +"GO:1903749","positive regulation of establishment of ...",10,1,0.32,710,"0.2806","0.22665","0.22665" +"GO:1903955","positive regulation of protein targeting...",10,1,0.32,711,"0.2806","0.22665","0.22665" +"GO:0002237","response to molecule of bacterial origin",9,0,0.29,1644,"1.0000","0.22692","0.22692" +"GO:0000413","protein peptidyl-prolyl isomerization",15,1,0.49,879,"0.3901","0.22705","0.22705" +"GO:0018208","peptidyl-proline modification",15,1,0.49,880,"0.3901","0.22705","0.22705" +"GO:0006626","protein targeting to mitochondrion",22,1,0.71,1029,"0.5161","0.22758","0.22758" +"GO:0010822","positive regulation of mitochondrion org...",14,2,0.45,173,"0.0732","0.22838","0.22838" +"GO:0017144","drug metabolic process",113,6,3.65,473,"0.1566","0.22885","0.22885" +"GO:0007007","inner mitochondrial membrane organizatio...",8,0,0.26,1645,"1.0000","0.22948","0.22948" +"GO:0030163","protein catabolic process",114,3,3.69,1202,"0.7227","0.22950","0.22950" +"GO:0050657","nucleic acid transport",20,0,0.65,1646,"1.0000","0.22999","0.22999" +"GO:0050658","RNA transport",20,0,0.65,1647,"1.0000","0.22999","0.22999" +"GO:0051168","nuclear export",20,0,0.65,1648,"1.0000","0.22999","0.22999" +"GO:0051236","establishment of RNA localization",20,0,0.65,1649,"1.0000","0.22999","0.22999" +"GO:0033108","mitochondrial respiratory chain complex ...",15,0,0.49,1650,"1.0000","0.22999","0.22999" +"GO:0022402","cell cycle process",116,4,3.75,1038,"0.5222","0.23075","0.23075" +"GO:0051099","positive regulation of binding",7,0,0.23,1651,"1.0000","0.23176","0.23176" +"GO:0051224","negative regulation of protein transport",7,0,0.23,1652,"1.0000","0.23176","0.23176" +"GO:0051702","interaction with symbiont",13,2,0.42,150,"0.0641","0.23232","0.23232" +"GO:0051851","modification by host of symbiont morphol...",13,2,0.42,151,"0.0641","0.23232","0.23232" +"GO:0046475","glycerophospholipid catabolic process",3,0,0.1,1653,"1.0000","0.23301","0.23301" +"GO:0006690","icosanoid metabolic process",4,0,0.13,1654,"1.0000","0.23442","0.23442" +"GO:0006692","prostanoid metabolic process",4,0,0.13,1655,"1.0000","0.23442","0.23442" +"GO:0006693","prostaglandin metabolic process",4,0,0.13,1656,"1.0000","0.23442","0.23442" +"GO:1901570","fatty acid derivative biosynthetic proce...",4,0,0.13,1657,"1.0000","0.23442","0.23442" +"GO:0033143","regulation of intracellular steroid horm...",9,0,0.29,1658,"1.0000","0.23448","0.23448" +"GO:0006779","porphyrin-containing compound biosynthet...",5,0,0.16,1659,"1.0000","0.23471","0.23471" +"GO:0009308","amine metabolic process",12,1,0.39,781,"0.3265","0.23524","0.23524" +"GO:0044106","cellular amine metabolic process",12,1,0.39,782,"0.3265","0.23524","0.23524" +"GO:0060828","regulation of canonical Wnt signaling pa...",12,1,0.39,783,"0.3265","0.23524","0.23524" +"GO:0030522","intracellular receptor signaling pathway",17,1,0.55,932,"0.4291","0.23581","0.23581" +"GO:0031349","positive regulation of defense response",18,1,0.58,960,"0.4476","0.04209","0.23653" +"GO:0002478","antigen processing and presentation of e...",4,0,0.13,1660,"1.0000","0.23658","0.23658" +"GO:0019882","antigen processing and presentation",4,0,0.13,1661,"1.0000","0.23658","0.23658" +"GO:0019884","antigen processing and presentation of e...",4,0,0.13,1662,"1.0000","0.23658","0.23658" +"GO:0048002","antigen processing and presentation of p...",4,0,0.13,1663,"1.0000","0.23658","0.23658" +"GO:0044085","cellular component biogenesis",289,7,9.35,1264,"0.8411","0.15099","0.23683" +"GO:0046685","response to arsenic-containing substance",8,1,0.26,622,"0.2315","0.23708","0.23708" +"GO:0034470","ncRNA processing",96,2,3.11,1254,"0.8255","0.23786","0.23786" +"GO:0034308","primary alcohol metabolic process",5,0,0.16,1664,"1.0000","0.23810","0.23810" +"GO:0007339","binding of sperm to zona pellucida",7,2,0.23,20,"0.0196","0.23891","0.23891" +"GO:0009988","cell-cell recognition",7,2,0.23,21,"0.0196","0.23891","0.23891" +"GO:0035036","sperm-egg recognition",7,2,0.23,22,"0.0196","0.23891","0.23891" +"GO:0031327","negative regulation of cellular biosynth...",86,4,2.78,738,"0.3023","0.23895","0.23895" +"GO:0050792","regulation of viral process",19,3,0.61,29,"0.0218","0.23920","0.23920" +"GO:0016072","rRNA metabolic process",41,0,1.33,1665,"1.0000","0.23954","0.23954" +"GO:0044092","negative regulation of molecular functio...",50,4,1.62,187,"0.0763","0.24188","0.24188" +"GO:0006304","DNA modification",4,0,0.13,1666,"1.0000","0.24259","0.24259" +"GO:1903842","response to arsenite ion",7,1,0.23,561,"0.2058","0.24327","0.24327" +"GO:0032411","positive regulation of transporter activ...",7,0,0.23,1667,"1.0000","0.24327","0.24327" +"GO:0034767","positive regulation of ion transmembrane...",7,0,0.23,1668,"1.0000","0.24327","0.24327" +"GO:1904064","positive regulation of cation transmembr...",7,0,0.23,1669,"1.0000","0.24327","0.24327" +"GO:0001510","RNA methylation",18,0,0.58,1670,"1.0000","0.24328","0.24328" +"GO:0061448","connective tissue development",9,2,0.29,42,"0.0321","0.24330","0.24330" +"GO:0009199","ribonucleoside triphosphate metabolic pr...",48,2,1.55,971,"0.4640","0.24339","0.24339" +"GO:0031167","rRNA methylation",5,0,0.16,1671,"1.0000","0.24448","0.24448" +"GO:0090435","protein localization to nuclear envelope",3,0,0.1,1672,"1.0000","0.24609","0.24609" +"GO:0006265","DNA topological change",3,0,0.1,1673,"1.0000","0.24802","0.24802" +"GO:0006506","GPI anchor biosynthetic process",10,0,0.32,1674,"1.0000","0.24813","0.24813" +"GO:0009247","glycolipid biosynthetic process",10,0,0.32,1675,"1.0000","0.24813","0.24813" +"GO:0001522","pseudouridine synthesis",11,0,0.36,1676,"1.0000","0.25011","0.25011" +"GO:0044770","cell cycle phase transition",36,2,1.16,779,"0.3257","0.25037","0.25037" +"GO:0006890","retrograde vesicle-mediated transport, G...",7,1,0.23,562,"0.2058","0.25138","0.25138" +"GO:0036294","cellular response to decreased oxygen le...",7,0,0.23,1677,"1.0000","0.25213","0.25213" +"GO:0071453","cellular response to oxygen levels",7,0,0.23,1678,"1.0000","0.25213","0.25213" +"GO:0071456","cellular response to hypoxia",7,0,0.23,1679,"1.0000","0.25213","0.25213" +"GO:0015711","organic anion transport",28,0,0.91,1680,"1.0000","0.25265","0.25265" +"GO:0006979","response to oxidative stress",46,3,1.49,537,"0.1849","0.25330","0.25330" +"GO:0009205","purine ribonucleoside triphosphate metab...",47,2,1.52,966,"0.4531","0.25335","0.25335" +"GO:0070841","inclusion body assembly",11,1,0.36,743,"0.3039","0.25351","0.25351" +"GO:0000003","reproduction",116,4,3.75,1039,"0.5222","0.25354","0.25354" +"GO:0006664","glycolipid metabolic process",15,1,0.49,881,"0.3901","0.25358","0.25358" +"GO:1903509","liposaccharide metabolic process",15,1,0.49,882,"0.3901","0.25358","0.25358" +"GO:0002684","positive regulation of immune system pro...",34,2,1.1,733,"0.3016","0.25446","0.25446" +"GO:0018196","peptidyl-asparagine modification",9,0,0.29,1681,"1.0000","0.25450","0.25450" +"GO:0018279","protein N-linked glycosylation via aspar...",9,0,0.29,1682,"1.0000","0.25450","0.25450" +"GO:0030336","negative regulation of cell migration",5,0,0.16,1683,"1.0000","0.25451","0.25451" +"GO:0040013","negative regulation of locomotion",5,0,0.16,1684,"1.0000","0.25451","0.25451" +"GO:0051271","negative regulation of cellular componen...",5,0,0.16,1685,"1.0000","0.25451","0.25451" +"GO:2000146","negative regulation of cell motility",5,0,0.16,1686,"1.0000","0.25451","0.25451" +"GO:0045807","positive regulation of endocytosis",17,2,0.55,302,"0.1028","0.25557","0.25557" +"GO:1903900","regulation of viral life cycle",17,2,0.55,303,"0.1028","0.25557","0.25557" +"GO:0001666","response to hypoxia",11,0,0.36,1687,"1.0000","0.25600","0.25600" +"GO:0036293","response to decreased oxygen levels",11,0,0.36,1688,"1.0000","0.25600","0.25600" +"GO:0070482","response to oxygen levels",11,0,0.36,1689,"1.0000","0.25600","0.25600" +"GO:0050851","antigen receptor-mediated signaling path...",4,0,0.13,1690,"1.0000","0.25718","0.25718" +"GO:0050852","T cell receptor signaling pathway",4,0,0.13,1691,"1.0000","0.25718","0.25718" +"GO:0072665","protein localization to vacuole",13,2,0.42,152,"0.0641","0.25731","0.25731" +"GO:0072666","establishment of protein localization to...",13,2,0.42,153,"0.0641","0.25731","0.25731" +"GO:0006475","internal protein amino acid acetylation",15,0,0.49,1692,"1.0000","0.25740","0.25740" +"GO:0016573","histone acetylation",15,0,0.49,1693,"1.0000","0.25740","0.25740" +"GO:0018393","internal peptidyl-lysine acetylation",15,0,0.49,1694,"1.0000","0.25740","0.25740" +"GO:0018394","peptidyl-lysine acetylation",15,0,0.49,1695,"1.0000","0.25740","0.25740" +"GO:0010972","negative regulation of G2/M transition o...",4,0,0.13,1696,"1.0000","0.25833","0.25833" +"GO:1902750","negative regulation of cell cycle G2/M p...",4,0,0.13,1697,"1.0000","0.25833","0.25833" +"GO:0140014","mitotic nuclear division",29,1,0.94,1124,"0.6164","0.25845","0.25845" +"GO:0001701","in utero embryonic development",25,2,0.81,540,"0.1928","0.25860","0.25860" +"GO:0002764","immune response-regulating signaling pat...",14,1,0.45,852,"0.3696","0.25942","0.25942" +"GO:0045010","actin nucleation",13,0,0.42,1698,"1.0000","0.26042","0.26042" +"GO:0046785","microtubule polymerization",12,2,0.39,104,"0.0553","0.26107","0.26107" +"GO:1901576","organic substance biosynthetic process",883,26,28.56,1224,"0.7539","0.00361","0.26114" +"GO:0006518","peptide metabolic process",233,8,7.54,1013,"0.4850","6.9e-15","0.26123" +"GO:0007565","female pregnancy",8,1,0.26,623,"0.2315","0.26166","0.26166" +"GO:0006188","IMP biosynthetic process",5,1,0.16,433,"0.1517","0.26168","0.26168" +"GO:0046040","IMP metabolic process",5,1,0.16,434,"0.1517","0.26168","0.26168" +"GO:0018108","peptidyl-tyrosine phosphorylation",5,0,0.16,1699,"1.0000","0.26233","0.26233" +"GO:0000184","nuclear-transcribed mRNA catabolic proce...",5,0,0.16,1700,"1.0000","0.26324","0.26324" +"GO:0035195","gene silencing by miRNA",5,0,0.16,1701,"1.0000","0.26324","0.26324" +"GO:0007006","mitochondrial membrane organization",13,1,0.42,806,"0.3484","0.26355","0.26355" +"GO:0046039","GTP metabolic process",3,0,0.1,1702,"1.0000","0.26398","0.26398" +"GO:0030488","tRNA methylation",9,0,0.29,1703,"1.0000","0.26477","0.26477" +"GO:0043604","amide biosynthetic process",212,6,6.86,1183,"0.6939","3.7e-16","0.26480" +"GO:0070131","positive regulation of mitochondrial tra...",3,0,0.1,1704,"1.0000","0.26549","0.26549" +"GO:0006505","GPI anchor metabolic process",11,0,0.36,1705,"1.0000","0.26566","0.26566" +"GO:0032271","regulation of protein polymerization",27,1,0.87,1101,"0.5901","0.26657","0.26657" +"GO:0042073","intraciliary transport",5,0,0.16,1706,"1.0000","0.26676","0.26676" +"GO:0033120","positive regulation of RNA splicing",12,2,0.39,105,"0.0553","0.26712","0.26712" +"GO:0044788","modulation by host of viral process",12,2,0.39,106,"0.0553","0.26712","0.26712" +"GO:0044794","positive regulation by host of viral pro...",12,2,0.39,107,"0.0553","0.26712","0.26712" +"GO:0044827","modulation by host of viral genome repli...",12,2,0.39,108,"0.0553","0.26712","0.26712" +"GO:0044829","positive regulation by host of viral gen...",12,2,0.39,109,"0.0553","0.26712","0.26712" +"GO:0048026","positive regulation of mRNA splicing, vi...",12,2,0.39,110,"0.0553","0.26712","0.26712" +"GO:0048488","synaptic vesicle endocytosis",12,2,0.39,111,"0.0553","0.26712","0.26712" +"GO:0050685","positive regulation of mRNA processing",12,2,0.39,112,"0.0553","0.26712","0.26712" +"GO:0140013","meiotic nuclear division",12,1,0.39,784,"0.3265","0.26712","0.26712" +"GO:0140238","presynaptic endocytosis",12,2,0.39,113,"0.0553","0.26712","0.26712" +"GO:1901032","negative regulation of response to react...",12,2,0.39,114,"0.0553","0.26712","0.26712" +"GO:1903206","negative regulation of hydrogen peroxide...",12,2,0.39,115,"0.0553","0.26712","0.26712" +"GO:1905710","positive regulation of membrane permeabi...",12,2,0.39,116,"0.0553","0.26712","0.26712" +"GO:2001024","negative regulation of response to drug",12,2,0.39,117,"0.0553","0.26712","0.26712" +"GO:2001039","negative regulation of cellular response...",12,2,0.39,118,"0.0553","0.26712","0.26712" +"GO:1903706","regulation of hemopoiesis",8,2,0.26,35,"0.0255","0.26742","0.26742" +"GO:0042177","negative regulation of protein catabolic...",6,0,0.19,1707,"1.0000","0.26813","0.26813" +"GO:1904292","regulation of ERAD pathway",6,0,0.19,1708,"1.0000","0.26813","0.26813" +"GO:0070507","regulation of microtubule cytoskeleton o...",12,1,0.39,785,"0.3265","0.26813","0.26813" +"GO:0008152","metabolic process",2111,67,68.28,1157,"0.6627","3.4e-05","0.26846" +"GO:2001020","regulation of response to DNA damage sti...",16,0,0.52,1709,"1.0000","0.26852","0.26852" +"GO:0097039","protein linear polyubiquitination",3,0,0.1,1710,"1.0000","0.26853","0.26853" +"GO:0071902","positive regulation of protein serine/th...",3,0,0.1,1711,"1.0000","0.27006","0.27006" +"GO:0061458","reproductive system development",41,1,1.33,1218,"0.7427","0.27047","0.27047" +"GO:0009566","fertilization",10,2,0.32,47,"0.0393","0.27068","0.27068" +"GO:0070647","protein modification by small protein co...",97,3,3.14,1122,"0.6149","0.20695","0.27132" +"GO:0009058","biosynthetic process",902,26,29.18,1240,"0.7952","0.00367","0.27197" +"GO:0009790","embryo development",87,5,2.81,423,"0.1486","0.27236","0.27236" +"GO:0065008","regulation of biological quality",222,7,7.18,1099,"0.5863","0.27240","0.27240" +"GO:0006835","dicarboxylic acid transport",8,0,0.26,1712,"1.0000","0.27242","0.27242" +"GO:0034314","Arp2/3 complex-mediated actin nucleation",7,0,0.23,1713,"1.0000","0.27360","0.27360" +"GO:0009737","response to abscisic acid",6,0,0.19,1714,"1.0000","0.27391","0.27391" +"GO:0045931","positive regulation of mitotic cell cycl...",6,0,0.19,1715,"1.0000","0.27391","0.27391" +"GO:0045321","leukocyte activation",17,3,0.55,17,"0.0160","0.27418","0.27418" +"GO:0048585","negative regulation of response to stimu...",79,4,2.56,656,"0.2513","0.27692","0.27692" +"GO:0009111","vitamin catabolic process",3,0,0.1,1716,"1.0000","0.27709","0.27709" +"GO:0006996","organelle organization",381,8,12.32,1304,"0.9399","0.27741","0.27741" +"GO:0006458","'de novo' protein folding",17,2,0.55,304,"0.1028","0.27832","0.27832" +"GO:0022414","reproductive process",111,4,3.59,1016,"0.4871","0.27992","0.27992" +"GO:0051090","regulation of DNA-binding transcription ...",19,1,0.61,978,"0.4656","0.28043","0.28043" +"GO:0048668","collateral sprouting",3,1,0.1,238,"0.0940","0.28090","0.28090" +"GO:0051646","mitochondrion localization",3,0,0.1,1717,"1.0000","0.28090","0.28090" +"GO:0060765","regulation of androgen receptor signalin...",3,0,0.1,1718,"1.0000","0.28090","0.28090" +"GO:0001775","cell activation",21,3,0.68,39,"0.0286","0.28122","0.28122" +"GO:0045216","cell-cell junction organization",5,1,0.16,435,"0.1517","0.28138","0.28138" +"GO:0006325","chromatin organization",99,1,3.2,1312,"0.9635","0.28187","0.28187" +"GO:0007292","female gamete generation",27,1,0.87,1102,"0.5901","0.28255","0.28255" +"GO:0007215","glutamate receptor signaling pathway",5,1,0.16,436,"0.1517","0.28260","0.28260" +"GO:0043491","protein kinase B signaling",5,0,0.16,1719,"1.0000","0.28260","0.28260" +"GO:0016311","dephosphorylation",40,3,1.29,407,"0.1376","0.28320","0.28320" +"GO:0009070","serine family amino acid biosynthetic pr...",4,0,0.13,1720,"1.0000","0.28371","0.28371" +"GO:0042594","response to starvation",26,2,0.84,549,"0.2047","0.28386","0.28386" +"GO:0009410","response to xenobiotic stimulus",7,0,0.23,1721,"1.0000","0.28393","0.28393" +"GO:0019438","aromatic compound biosynthetic process",475,12,15.36,1270,"0.8647","0.24193","0.28439" +"GO:0060070","canonical Wnt signaling pathway",13,1,0.42,807,"0.3484","0.28444","0.28444" +"GO:0034227","tRNA thio-modification",4,0,0.13,1722,"1.0000","0.28493","0.28493" +"GO:0044272","sulfur compound biosynthetic process",10,1,0.32,712,"0.2806","0.28510","0.28510" +"GO:0046034","ATP metabolic process",44,2,1.42,920,"0.4195","0.28560","0.28560" +"GO:0001822","kidney development",25,2,0.81,541,"0.1928","0.28678","0.28678" +"GO:0043624","cellular protein complex disassembly",25,2,0.81,542,"0.1928","0.28678","0.28678" +"GO:0009555","pollen development",4,0,0.13,1723,"1.0000","0.28737","0.28737" +"GO:0003006","developmental process involved in reprod...",78,2,2.52,1207,"0.7265","0.28766","0.28766" +"GO:1903047","mitotic cell cycle process",63,2,2.04,1120,"0.6116","0.28929","0.28929" +"GO:0045088","regulation of innate immune response",18,2,0.58,316,"0.1133","0.29091","0.29091" +"GO:0097193","intrinsic apoptotic signaling pathway",18,1,0.58,961,"0.4476","0.29135","0.29135" +"GO:0002064","epithelial cell development",23,1,0.74,1045,"0.5319","0.29147","0.29147" +"GO:0098930","axonal transport",5,0,0.16,1724,"1.0000","0.29218","0.29218" +"GO:0009074","aromatic amino acid family catabolic pro...",7,2,0.23,23,"0.0196","0.29286","0.29286" +"GO:1903829","positive regulation of cellular protein ...",20,1,0.65,1002,"0.4830","0.29355","0.29355" +"GO:0006955","immune response",53,3,1.71,654,"0.2445","0.29422","0.29422" +"GO:0006348","chromatin silencing at telomere",4,0,0.13,1725,"1.0000","0.29477","0.29477" +"GO:0007093","mitotic cell cycle checkpoint",13,0,0.42,1726,"1.0000","0.29572","0.29572" +"GO:0001655","urogenital system development",26,2,0.84,550,"0.2047","0.29621","0.29621" +"GO:0072001","renal system development",26,2,0.84,551,"0.2047","0.29621","0.29621" +"GO:0002768","immune response-regulating cell surface ...",8,0,0.26,1727,"1.0000","0.29740","0.29740" +"GO:0006401","RNA catabolic process",36,1,1.16,1185,"0.6960","0.29752","0.29752" +"GO:0007141","male meiosis I",6,0,0.19,1728,"1.0000","0.29782","0.29782" +"GO:0032414","positive regulation of ion transmembrane...",6,0,0.19,1729,"1.0000","0.29782","0.29782" +"GO:1901019","regulation of calcium ion transmembrane ...",6,0,0.19,1730,"1.0000","0.29782","0.29782" +"GO:1903169","regulation of calcium ion transmembrane ...",6,0,0.19,1731,"1.0000","0.29782","0.29782" +"GO:0006828","manganese ion transport",4,0,0.13,1732,"1.0000","0.29789","0.29789" +"GO:0051100","negative regulation of binding",6,0,0.19,1733,"1.0000","0.29808","0.29808" +"GO:0045786","negative regulation of cell cycle",36,0,1.16,1734,"1.0000","0.29836","0.29836" +"GO:0035264","multicellular organism growth",8,1,0.26,624,"0.2315","0.29917","0.29917" +"GO:0031056","regulation of histone modification",9,0,0.29,1735,"1.0000","0.29957","0.29957" +"GO:2001252","positive regulation of chromosome organi...",9,0,0.29,1736,"1.0000","0.29957","0.29957" +"GO:0042461","photoreceptor cell development",10,0,0.32,1737,"1.0000","0.29978","0.29978" +"GO:0034332","adherens junction organization",3,1,0.1,239,"0.0940","0.29992","0.29992" +"GO:0034333","adherens junction assembly",3,1,0.1,240,"0.0940","0.29992","0.29992" +"GO:0098813","nuclear chromosome segregation",23,0,0.74,1738,"1.0000","0.30000","0.30000" +"GO:0019079","viral genome replication",16,2,0.52,207,"0.0926","0.30019","0.30019" +"GO:0048524","positive regulation of viral process",16,3,0.52,14,"0.0135","0.30019","0.30019" +"GO:0046474","glycerophospholipid biosynthetic process",20,0,0.65,1739,"1.0000","0.30026","0.30026" +"GO:0033993","response to lipid",64,2,2.07,1127,"0.6202","0.30027","0.30027" +"GO:0008283","cell proliferation",70,2,2.26,1164,"0.6692","0.30152","0.30152" +"GO:0034654","nucleobase-containing compound biosynthe...",463,12,14.98,1263,"0.8401","0.25764","0.30247" +"GO:0072332","intrinsic apoptotic signaling pathway by...",5,0,0.16,1740,"1.0000","0.30252","0.30252" +"GO:0016567","protein ubiquitination",73,1,2.36,1289,"0.9120","0.30286","0.30286" +"GO:0030308","negative regulation of cell growth",15,2,0.49,193,"0.0827","0.30319","0.30319" +"GO:0017148","negative regulation of translation",5,0,0.16,1741,"1.0000","0.30322","0.30322" +"GO:0034249","negative regulation of cellular amide me...",5,0,0.16,1742,"1.0000","0.30322","0.30322" +"GO:0043603","cellular amide metabolic process",251,9,8.12,926,"0.4247","2.5e-14","0.30337" +"GO:0007610","behavior",39,2,1.26,846,"0.3615","0.04912","0.30352" +"GO:0002443","leukocyte mediated immunity",16,2,0.52,208,"0.0926","0.30398","0.30398" +"GO:0007519","skeletal muscle tissue development",16,2,0.52,209,"0.0926","0.30398","0.30398" +"GO:0014823","response to activity",16,2,0.52,210,"0.0926","0.30398","0.30398" +"GO:0032570","response to progesterone",16,2,0.52,211,"0.0926","0.30398","0.30398" +"GO:0031960","response to corticosteroid",6,0,0.19,1743,"1.0000","0.30399","0.30399" +"GO:0006891","intra-Golgi vesicle-mediated transport",3,0,0.1,1744,"1.0000","0.30429","0.30429" +"GO:0051384","response to glucocorticoid",4,0,0.13,1745,"1.0000","0.30544","0.30544" +"GO:0062013","positive regulation of small molecule me...",4,0,0.13,1746,"1.0000","0.30544","0.30544" +"GO:0019637","organophosphate metabolic process",144,7,4.66,535,"0.1820","0.26000","0.30690" +"GO:0008088","axo-dendritic transport",17,2,0.55,305,"0.1028","0.30726","0.30726" +"GO:0031400","negative regulation of protein modificat...",34,2,1.1,734,"0.3016","0.30798","0.30798" +"GO:0045444","fat cell differentiation",11,0,0.36,1747,"1.0000","0.31037","0.31037" +"GO:0033554","cellular response to stress",210,3,6.79,1320,"0.9715","0.31201","0.31201" +"GO:0006400","tRNA modification",28,1,0.91,1117,"0.6034","0.31203","0.31203" +"GO:0032418","lysosome localization",7,0,0.23,1748,"1.0000","0.31291","0.31291" +"GO:0048598","embryonic morphogenesis",48,4,1.55,162,"0.0677","0.31335","0.31335" +"GO:0002683","negative regulation of immune system pro...",9,1,0.29,664,"0.2565","0.31336","0.31336" +"GO:0032984","protein-containing complex disassembly",30,2,0.97,657,"0.2530","0.31395","0.31395" +"GO:0046488","phosphatidylinositol metabolic process",21,0,0.68,1749,"1.0000","0.31423","0.31423" +"GO:0032370","positive regulation of lipid transport",3,0,0.1,1750,"1.0000","0.31425","0.31425" +"GO:1905954","positive regulation of lipid localizatio...",3,0,0.1,1751,"1.0000","0.31425","0.31425" +"GO:0006470","protein dephosphorylation",26,1,0.84,1088,"0.5762","0.31469","0.31469" +"GO:0014070","response to organic cyclic compound",62,2,2.01,1114,"0.6027","0.31552","0.31552" +"GO:0090092","regulation of transmembrane receptor pro...",13,2,0.42,154,"0.0641","0.31555","0.31555" +"GO:0007020","microtubule nucleation",11,2,0.36,59,"0.0471","0.31571","0.31571" +"GO:0000422","autophagy of mitochondrion",5,0,0.16,1752,"1.0000","0.31609","0.31609" +"GO:0061726","mitochondrion disassembly",5,0,0.16,1753,"1.0000","0.31609","0.31609" +"GO:0051092","positive regulation of NF-kappaB transcr...",8,1,0.26,625,"0.2315","0.31630","0.31630" +"GO:0006814","sodium ion transport",22,2,0.71,476,"0.1577","0.31643","0.31643" +"GO:0006302","double-strand break repair",14,0,0.45,1754,"1.0000","0.31673","0.31673" +"GO:0034404","nucleobase-containing small molecule bio...",20,1,0.65,1003,"0.4830","0.03348","0.31680" +"GO:0006684","sphingomyelin metabolic process",3,0,0.1,1755,"1.0000","0.31723","0.31723" +"GO:0006685","sphingomyelin catabolic process",3,0,0.1,1756,"1.0000","0.31723","0.31723" +"GO:0050821","protein stabilization",11,1,0.36,744,"0.3039","0.31757","0.31757" +"GO:0051205","protein insertion into membrane",4,0,0.13,1757,"1.0000","0.31764","0.31764" +"GO:0072524","pyridine-containing compound metabolic p...",12,2,0.39,119,"0.0553","0.31781","0.31781" +"GO:1901575","organic substance catabolic process",215,8,6.95,892,"0.3938","0.31865","0.31865" +"GO:0042407","cristae formation",3,0,0.1,1758,"1.0000","0.31892","0.31892" +"GO:0043254","regulation of protein complex assembly",30,1,0.97,1130,"0.6289","0.31929","0.31929" +"GO:2001236","regulation of extrinsic apoptotic signal...",9,1,0.29,665,"0.2565","0.31929","0.31929" +"GO:0007346","regulation of mitotic cell cycle",40,1,1.29,1211,"0.7339","0.32087","0.32087" +"GO:0060191","regulation of lipase activity",3,0,0.1,1759,"1.0000","0.32155","0.32155" +"GO:0001909","leukocyte mediated cytotoxicity",11,2,0.36,60,"0.0471","0.32219","0.32219" +"GO:0001910","regulation of leukocyte mediated cytotox...",11,2,0.36,61,"0.0471","0.32219","0.32219" +"GO:0001912","positive regulation of leukocyte mediate...",11,2,0.36,62,"0.0471","0.32219","0.32219" +"GO:0001913","T cell mediated cytotoxicity",11,2,0.36,63,"0.0471","0.32219","0.32219" +"GO:0001914","regulation of T cell mediated cytotoxici...",11,2,0.36,64,"0.0471","0.32219","0.32219" +"GO:0001916","positive regulation of T cell mediated c...",11,2,0.36,65,"0.0471","0.32219","0.32219" +"GO:0002250","adaptive immune response",11,2,0.36,66,"0.0471","0.32219","0.32219" +"GO:0002449","lymphocyte mediated immunity",11,2,0.36,67,"0.0471","0.32219","0.32219" +"GO:0002456","T cell mediated immunity",11,2,0.36,68,"0.0471","0.32219","0.32219" +"GO:0002460","adaptive immune response based on somati...",11,2,0.36,69,"0.0471","0.32219","0.32219" +"GO:0002703","regulation of leukocyte mediated immunit...",11,2,0.36,70,"0.0471","0.32219","0.32219" +"GO:0002705","positive regulation of leukocyte mediate...",11,2,0.36,71,"0.0471","0.32219","0.32219" +"GO:0002706","regulation of lymphocyte mediated immuni...",11,2,0.36,72,"0.0471","0.32219","0.32219" +"GO:0002708","positive regulation of lymphocyte mediat...",11,2,0.36,73,"0.0471","0.32219","0.32219" +"GO:0002709","regulation of T cell mediated immunity",11,2,0.36,74,"0.0471","0.32219","0.32219" +"GO:0002711","positive regulation of T cell mediated i...",11,2,0.36,75,"0.0471","0.32219","0.32219" +"GO:0002819","regulation of adaptive immune response",11,2,0.36,76,"0.0471","0.32219","0.32219" +"GO:0002821","positive regulation of adaptive immune r...",11,2,0.36,77,"0.0471","0.32219","0.32219" +"GO:0002822","regulation of adaptive immune response b...",11,2,0.36,78,"0.0471","0.32219","0.32219" +"GO:0002824","positive regulation of adaptive immune r...",11,2,0.36,79,"0.0471","0.32219","0.32219" +"GO:0010045","response to nickel cation",11,2,0.36,80,"0.0471","0.32219","0.32219" +"GO:0016191","synaptic vesicle uncoating",11,2,0.36,81,"0.0471","0.32219","0.32219" +"GO:0043462","regulation of ATPase activity",11,1,0.36,745,"0.3039","0.32219","0.32219" +"GO:0044849","estrous cycle",11,2,0.36,82,"0.0471","0.32219","0.32219" +"GO:0061684","chaperone-mediated autophagy",11,2,0.36,83,"0.0471","0.32219","0.32219" +"GO:0061738","late endosomal microautophagy",11,2,0.36,84,"0.0471","0.32219","0.32219" +"GO:0061741","chaperone-mediated protein transport inv...",11,2,0.36,85,"0.0471","0.32219","0.32219" +"GO:0071276","cellular response to cadmium ion",11,2,0.36,86,"0.0471","0.32219","0.32219" +"GO:0072318","clathrin coat disassembly",11,2,0.36,87,"0.0471","0.32219","0.32219" +"GO:0072319","vesicle uncoating",11,2,0.36,88,"0.0471","0.32219","0.32219" +"GO:0097212","lysosomal membrane organization",11,2,0.36,89,"0.0471","0.32219","0.32219" +"GO:0097213","regulation of lysosomal membrane permeab...",11,2,0.36,90,"0.0471","0.32219","0.32219" +"GO:0097214","positive regulation of lysosomal membran...",11,2,0.36,91,"0.0471","0.32219","0.32219" +"GO:1903334","positive regulation of protein folding",11,2,0.36,92,"0.0471","0.32219","0.32219" +"GO:1904592","positive regulation of protein refolding",11,2,0.36,93,"0.0471","0.32219","0.32219" +"GO:1904764","chaperone-mediated autophagy translocati...",11,2,0.36,94,"0.0471","0.32219","0.32219" +"GO:1990832","slow axonal transport",11,2,0.36,95,"0.0471","0.32219","0.32219" +"GO:1990834","response to odorant",11,2,0.36,96,"0.0471","0.32219","0.32219" +"GO:0006605","protein targeting",43,2,1.39,906,"0.4081","0.32273","0.32273" +"GO:0051172","negative regulation of nitrogen compound...",128,4,4.14,1113,"0.6016","0.32285","0.32285" +"GO:0032091","negative regulation of protein binding",5,0,0.16,1760,"1.0000","0.32308","0.32308" +"GO:0060669","embryonic placenta morphogenesis",5,0,0.16,1761,"1.0000","0.32308","0.32308" +"GO:0060706","cell differentiation involved in embryon...",5,0,0.16,1762,"1.0000","0.32308","0.32308" +"GO:0060713","labyrinthine layer morphogenesis",5,0,0.16,1763,"1.0000","0.32308","0.32308" +"GO:0042255","ribosome assembly",11,0,0.36,1764,"1.0000","0.32357","0.32357" +"GO:0045069","regulation of viral genome replication",15,2,0.49,194,"0.0827","0.32376","0.32376" +"GO:0008589","regulation of smoothened signaling pathw...",4,0,0.13,1765,"1.0000","0.32416","0.32416" +"GO:0006402","mRNA catabolic process",29,1,0.94,1125,"0.6164","0.32488","0.32488" +"GO:0010608","posttranscriptional regulation of gene e...",50,1,1.62,1246,"0.8095","0.32545","0.32545" +"GO:0048477","oogenesis",24,1,0.78,1058,"0.5472","0.32552","0.32552" +"GO:0055086","nucleobase-containing small molecule met...",114,7,3.69,184,"0.0734","0.23087","0.32633" +"GO:0043162","ubiquitin-dependent protein catabolic pr...",6,0,0.19,1766,"1.0000","0.32694","0.32694" +"GO:0048568","embryonic organ development",40,3,1.29,408,"0.1376","0.32713","0.32713" +"GO:0046939","nucleotide phosphorylation",9,0,0.29,1767,"1.0000","0.32738","0.32738" +"GO:0050890","cognition",7,0,0.23,1768,"1.0000","0.32845","0.32845" +"GO:0044772","mitotic cell cycle phase transition",32,2,1.04,692,"0.2773","0.33005","0.33005" +"GO:0060537","muscle tissue development",27,3,0.87,102,"0.0547","0.33006","0.33006" +"GO:0022904","respiratory electron transport chain",15,0,0.49,1769,"1.0000","0.33015","0.33015" +"GO:0007059","chromosome segregation",25,0,0.81,1770,"1.0000","0.33102","0.33102" +"GO:0044706","multi-multicellular organism process",9,1,0.29,666,"0.2565","0.33114","0.33114" +"GO:0035305","negative regulation of dephosphorylation",5,0,0.16,1771,"1.0000","0.33149","0.33149" +"GO:1903034","regulation of response to wounding",5,0,0.16,1772,"1.0000","0.33149","0.33149" +"GO:0070570","regulation of neuron projection regenera...",5,0,0.16,1773,"1.0000","0.33179","0.33179" +"GO:0042775","mitochondrial ATP synthesis coupled elec...",12,0,0.39,1774,"1.0000","0.33186","0.33186" +"GO:0009657","plastid organization",3,0,0.1,1775,"1.0000","0.33317","0.33317" +"GO:0009658","chloroplast organization",3,0,0.1,1776,"1.0000","0.33317","0.33317" +"GO:0090101","negative regulation of transmembrane rec...",6,2,0.19,15,"0.0143","0.33317","0.33317" +"GO:0090288","negative regulation of cellular response...",6,2,0.19,16,"0.0143","0.33317","0.33317" +"GO:0000075","cell cycle checkpoint",21,0,0.68,1777,"1.0000","0.33383","0.33383" +"GO:0051053","negative regulation of DNA metabolic pro...",4,1,0.13,338,"0.1233","0.33475","0.33475" +"GO:0042180","cellular ketone metabolic process",19,0,0.61,1778,"1.0000","0.33484","0.33484" +"GO:0016073","snRNA metabolic process",12,0,0.39,1779,"1.0000","0.33533","0.33533" +"GO:0031145","anaphase-promoting complex-dependent cat...",6,0,0.19,1780,"1.0000","0.33590","0.33590" +"GO:0001889","liver development",4,1,0.13,339,"0.1233","0.33676","0.33676" +"GO:0061008","hepaticobiliary system development",4,1,0.13,340,"0.1233","0.33676","0.33676" +"GO:1901606","alpha-amino acid catabolic process",12,2,0.39,120,"0.0553","0.33688","0.33688" +"GO:0009452","7-methylguanosine RNA capping",5,0,0.16,1781,"1.0000","0.33716","0.33716" +"GO:0036260","RNA capping",5,0,0.16,1782,"1.0000","0.33716","0.33716" +"GO:0048545","response to steroid hormone",43,2,1.39,907,"0.4081","0.33779","0.33779" +"GO:0043618","regulation of transcription from RNA pol...",9,1,0.29,667,"0.2565","0.33815","0.33815" +"GO:0043620","regulation of DNA-templated transcriptio...",9,1,0.29,668,"0.2565","0.33815","0.33815" +"GO:0003205","cardiac chamber development",7,0,0.23,1783,"1.0000","0.33904","0.33904" +"GO:0003231","cardiac ventricle development",7,0,0.23,1784,"1.0000","0.33904","0.33904" +"GO:0034330","cell junction organization",9,2,0.29,43,"0.0321","0.33928","0.33928" +"GO:0044089","positive regulation of cellular componen...",39,1,1.26,1204,"0.7249","0.33969","0.33969" +"GO:0031102","neuron projection regeneration",6,0,0.19,1785,"1.0000","0.34001","0.34001" +"GO:0051591","response to cAMP",5,0,0.16,1786,"1.0000","0.34002","0.34002" +"GO:0015807","L-amino acid transport",7,0,0.23,1787,"1.0000","0.34082","0.34082" +"GO:1902475","L-alpha-amino acid transmembrane transpo...",7,0,0.23,1788,"1.0000","0.34082","0.34082" +"GO:2000779","regulation of double-strand break repair",3,0,0.1,1789,"1.0000","0.34130","0.34130" +"GO:0031570","DNA integrity checkpoint",13,0,0.42,1790,"1.0000","0.34180","0.34180" +"GO:0072331","signal transduction by p53 class mediato...",13,0,0.42,1791,"1.0000","0.34180","0.34180" +"GO:0002065","columnar/cuboidal epithelial cell differ...",20,1,0.65,1004,"0.4830","0.34269","0.34269" +"GO:0006023","aminoglycan biosynthetic process",5,0,0.16,1792,"1.0000","0.34455","0.34455" +"GO:0080134","regulation of response to stress",80,3,2.59,999,"0.4828","0.26350","0.34460" +"GO:0045039","protein import into mitochondrial inner ...",4,0,0.13,1793,"1.0000","0.34485","0.34485" +"GO:0007028","cytoplasm organization",3,0,0.1,1794,"1.0000","0.34579","0.34579" +"GO:0030326","embryonic limb morphogenesis",3,0,0.1,1795,"1.0000","0.34579","0.34579" +"GO:0035113","embryonic appendage morphogenesis",3,0,0.1,1796,"1.0000","0.34579","0.34579" +"GO:0042733","embryonic digit morphogenesis",3,0,0.1,1797,"1.0000","0.34579","0.34579" +"GO:0071852","fungal-type cell wall organization or bi...",4,0,0.13,1798,"1.0000","0.34757","0.34757" +"GO:0034097","response to cytokine",30,1,0.97,1131,"0.6289","0.34788","0.34788" +"GO:0032774","RNA biosynthetic process",398,9,12.87,1291,"0.9140","0.34830","0.34830" +"GO:1903747","regulation of establishment of protein l...",11,1,0.36,746,"0.3039","0.34903","0.34903" +"GO:0040007","growth",67,3,2.17,860,"0.3696","0.34913","0.34913" +"GO:0032886","regulation of microtubule-based process",14,1,0.45,853,"0.3696","0.34916","0.34916" +"GO:0051084","'de novo' posttranslational protein fold...",14,2,0.45,174,"0.0732","0.34916","0.34916" +"GO:0090559","regulation of membrane permeability",14,2,0.45,175,"0.0732","0.34916","0.34916" +"GO:0007631","feeding behavior",8,0,0.26,1799,"1.0000","0.34926","0.34926" +"GO:0009165","nucleotide biosynthetic process",46,2,1.49,953,"0.4420","0.34933","0.34933" +"GO:1901293","nucleoside phosphate biosynthetic proces...",46,2,1.49,954,"0.4420","0.34933","0.34933" +"GO:0010038","response to metal ion",31,3,1,189,"0.0767","0.34981","0.34981" +"GO:0044249","cellular biosynthetic process",867,23,28.04,1280,"0.8989","0.00592","0.35005" +"GO:0007049","cell cycle",160,5,5.18,1110,"0.5984","0.35068","0.35068" +"GO:0002026","regulation of the force of heart contrac...",4,0,0.13,1800,"1.0000","0.35099","0.35099" +"GO:0006778","porphyrin-containing compound metabolic ...",8,0,0.26,1801,"1.0000","0.35120","0.35120" +"GO:0033013","tetrapyrrole metabolic process",8,0,0.26,1802,"1.0000","0.35120","0.35120" +"GO:0014896","muscle hypertrophy",4,0,0.13,1803,"1.0000","0.35167","0.35167" +"GO:0007015","actin filament organization",25,0,0.81,1804,"1.0000","0.35195","0.35195" +"GO:0018130","heterocycle biosynthetic process",483,13,15.62,1245,"0.8082","0.30367","0.35195" +"GO:0006661","phosphatidylinositol biosynthetic proces...",11,0,0.36,1805,"1.0000","0.35224","0.35224" +"GO:0009636","response to toxic substance",34,2,1.1,735,"0.3016","0.35286","0.35286" +"GO:0048608","reproductive structure development",40,1,1.29,1212,"0.7339","0.35371","0.35371" +"GO:1901135","carbohydrate derivative metabolic proces...",193,10,6.24,205,"0.0910","0.32986","0.35440" +"GO:0001558","regulation of cell growth",21,2,0.68,417,"0.1463","0.35512","0.35512" +"GO:0006536","glutamate metabolic process",3,0,0.1,1806,"1.0000","0.35527","0.35527" +"GO:2000377","regulation of reactive oxygen species me...",6,1,0.19,502,"0.1792","0.35588","0.35588" +"GO:0022622","root system development",6,0,0.19,1807,"1.0000","0.35588","0.35588" +"GO:0048364","root development",6,0,0.19,1808,"1.0000","0.35588","0.35588" +"GO:0000291","nuclear-transcribed mRNA catabolic proce...",3,0,0.1,1809,"1.0000","0.35647","0.35647" +"GO:0043928","exonucleolytic nuclear-transcribed mRNA ...",3,0,0.1,1810,"1.0000","0.35647","0.35647" +"GO:0001501","skeletal system development",18,1,0.58,962,"0.4476","0.35677","0.35677" +"GO:0009266","response to temperature stimulus",41,3,1.33,412,"0.1452","0.35775","0.35775" +"GO:2000983","regulation of ATP citrate synthase activ...",3,0,0.1,1811,"1.0000","0.35787","0.35787" +"GO:2000984","negative regulation of ATP citrate synth...",3,0,0.1,1812,"1.0000","0.35787","0.35787" +"GO:2001242","regulation of intrinsic apoptotic signal...",15,1,0.49,883,"0.3901","0.35820","0.35820" +"GO:0046777","protein autophosphorylation",14,2,0.45,176,"0.0732","0.35948","0.35948" +"GO:0007602","phototransduction",6,1,0.19,503,"0.1792","0.35955","0.35955" +"GO:0007224","smoothened signaling pathway",6,0,0.19,1813,"1.0000","0.35955","0.35955" +"GO:0006415","translational termination",9,0,0.29,1814,"1.0000","0.35979","0.35979" +"GO:0045471","response to ethanol",15,2,0.49,195,"0.0827","0.36008","0.36008" +"GO:1903332","regulation of protein folding",15,2,0.49,196,"0.0827","0.36008","0.36008" +"GO:0006820","anion transport",38,0,1.23,1815,"1.0000","0.36060","0.36060" +"GO:0051216","cartilage development",8,1,0.26,626,"0.2315","0.36096","0.36096" +"GO:0044267","cellular protein metabolic process",720,21,23.29,1220,"0.7466","0.00025","0.36145" +"GO:0006275","regulation of DNA replication",6,0,0.19,1816,"1.0000","0.36182","0.36182" +"GO:1901362","organic cyclic compound biosynthetic pro...",492,15,15.91,1144,"0.6440","0.31326","0.36186" +"GO:0034472","snRNA 3'-end processing",4,0,0.13,1817,"1.0000","0.36204","0.36204" +"GO:0090316","positive regulation of intracellular pro...",12,1,0.39,786,"0.3265","0.36216","0.36216" +"GO:0009262","deoxyribonucleotide metabolic process",6,1,0.19,504,"0.1792","0.36267","0.36267" +"GO:0007043","cell-cell junction assembly",4,1,0.13,341,"0.1233","0.36273","0.36273" +"GO:0043297","apical junction assembly",4,1,0.13,342,"0.1233","0.36273","0.36273" +"GO:0009100","glycoprotein metabolic process",57,2,1.84,1067,"0.5564","0.36320","0.36320" +"GO:0040019","positive regulation of embryonic develop...",4,0,0.13,1818,"1.0000","0.36343","0.36343" +"GO:0008637","apoptotic mitochondrial changes",5,1,0.16,437,"0.1517","0.36348","0.36348" +"GO:0051131","chaperone-mediated protein complex assem...",5,1,0.16,438,"0.1517","0.36348","0.36348" +"GO:1903523","negative regulation of blood circulation",5,1,0.16,439,"0.1517","0.36348","0.36348" +"GO:0009141","nucleoside triphosphate metabolic proces...",53,2,1.71,1034,"0.5167","0.31514","0.36517" +"GO:0009792","embryo development ending in birth or eg...",57,4,1.84,314,"0.1107","0.36558","0.36558" +"GO:0051051","negative regulation of transport",17,1,0.55,933,"0.4291","0.36569","0.36569" +"GO:0009144","purine nucleoside triphosphate metabolic...",49,2,1.58,994,"0.4748","0.36657","0.36657" +"GO:0001895","retina homeostasis",8,0,0.26,1819,"1.0000","0.36689","0.36689" +"GO:0009056","catabolic process",239,10,7.73,651,"0.2412","0.36722","0.36722" +"GO:0030707","ovarian follicle cell development",14,1,0.45,854,"0.3696","0.36732","0.36732" +"GO:0051604","protein maturation",23,0,0.74,1820,"1.0000","0.36795","0.36795" +"GO:0031324","negative regulation of cellular metaboli...",134,4,4.33,1139,"0.6383","0.36991","0.36991" +"GO:0008202","steroid metabolic process",16,2,0.52,212,"0.0926","0.37106","0.37106" +"GO:0000266","mitochondrial fission",4,1,0.13,343,"0.1233","0.37114","0.37114" +"GO:0050863","regulation of T cell activation",4,1,0.13,344,"0.1233","0.37114","0.37114" +"GO:0051249","regulation of lymphocyte activation",4,1,0.13,345,"0.1233","0.37114","0.37114" +"GO:0070266","necroptotic process",4,1,0.13,346,"0.1233","0.37114","0.37114" +"GO:0009649","entrainment of circadian clock",5,1,0.16,440,"0.1517","0.37226","0.37226" +"GO:0014706","striated muscle tissue development",26,3,0.84,99,"0.0498","0.37400","0.37400" +"GO:0009408","response to heat",39,3,1.26,403,"0.1302","0.37640","0.37640" +"GO:0007023","post-chaperonin tubulin folding pathway",3,0,0.1,1821,"1.0000","0.37648","0.37648" +"GO:0051085","chaperone cofactor-dependent protein ref...",13,2,0.42,155,"0.0641","0.37654","0.37654" +"GO:0015672","monovalent inorganic cation transport",44,2,1.42,921,"0.4195","0.37675","0.37675" +"GO:0048878","chemical homeostasis",44,0,1.42,1822,"1.0000","0.37696","0.37696" +"GO:0006790","sulfur compound metabolic process",35,2,1.13,763,"0.3137","0.37764","0.37764" +"GO:0071236","cellular response to antibiotic",19,2,0.61,394,"0.1241","0.37801","0.37801" +"GO:0097237","cellular response to toxic substance",19,2,0.61,395,"0.1241","0.37801","0.37801" +"GO:0009260","ribonucleotide biosynthetic process",34,1,1.1,1166,"0.6751","0.37830","0.37830" +"GO:0046390","ribose phosphate biosynthetic process",34,1,1.1,1167,"0.6751","0.37830","0.37830" +"GO:0042274","ribosomal small subunit biogenesis",10,0,0.32,1823,"1.0000","0.37878","0.37878" +"GO:0030001","metal ion transport",65,3,2.1,839,"0.3517","0.37908","0.37908" +"GO:0060249","anatomical structure homeostasis",29,2,0.94,645,"0.2409","0.37965","0.37965" +"GO:0030900","forebrain development",21,3,0.68,40,"0.0286","0.38037","0.38037" +"GO:0050877","nervous system process",57,6,1.84,9,"0.0094","0.38045","0.38045" +"GO:0090501","RNA phosphodiester bond hydrolysis",15,0,0.49,1824,"1.0000","0.38057","0.38057" +"GO:0031110","regulation of microtubule polymerization...",10,1,0.32,713,"0.2806","0.38059","0.38059" +"GO:0071840","cellular component organization or bioge...",594,14,19.21,1302,"0.9353","0.34761","0.38065" +"GO:0044774","mitotic DNA integrity checkpoint",5,0,0.16,1825,"1.0000","0.38084","0.38084" +"GO:0022411","cellular component disassembly",35,2,1.13,764,"0.3137","0.38187","0.38187" +"GO:0032496","response to lipopolysaccharide",8,0,0.26,1826,"1.0000","0.38191","0.38191" +"GO:0042773","ATP synthesis coupled electron transport",13,0,0.42,1827,"1.0000","0.38297","0.38297" +"GO:0030111","regulation of Wnt signaling pathway",15,1,0.49,884,"0.3901","0.38306","0.38306" +"GO:0009057","macromolecule catabolic process",149,3,4.82,1273,"0.8702","0.38365","0.38365" +"GO:0071396","cellular response to lipid",38,0,1.23,1828,"1.0000","0.38385","0.38385" +"GO:0051052","regulation of DNA metabolic process",19,1,0.61,979,"0.4656","0.38392","0.38392" +"GO:0009888","tissue development",109,6,3.53,409,"0.1387","0.38392","0.38392" +"GO:0097191","extrinsic apoptotic signaling pathway",10,1,0.32,714,"0.2806","0.38489","0.38489" +"GO:0008154","actin polymerization or depolymerization",20,0,0.65,1829,"1.0000","0.38522","0.38522" +"GO:0032956","regulation of actin cytoskeleton organiz...",20,0,0.65,1830,"1.0000","0.38522","0.38522" +"GO:0009225","nucleotide-sugar metabolic process",6,0,0.19,1831,"1.0000","0.38549","0.38549" +"GO:0006936","muscle contraction",13,0,0.42,1832,"1.0000","0.38586","0.38586" +"GO:0006622","protein targeting to lysosome",10,2,0.32,48,"0.0393","0.38739","0.38739" +"GO:0006623","protein targeting to vacuole",10,2,0.32,49,"0.0393","0.38739","0.38739" +"GO:0061462","protein localization to lysosome",10,2,0.32,50,"0.0393","0.38739","0.38739" +"GO:0061740","protein targeting to lysosome involved i...",10,2,0.32,51,"0.0393","0.38739","0.38739" +"GO:0071211","protein targeting to vacuole involved in...",10,2,0.32,52,"0.0393","0.38739","0.38739" +"GO:0090083","regulation of inclusion body assembly",10,1,0.32,715,"0.2806","0.38739","0.38739" +"GO:0090084","negative regulation of inclusion body as...",10,1,0.32,716,"0.2806","0.38739","0.38739" +"GO:0046486","glycerolipid metabolic process",35,0,1.13,1833,"1.0000","0.38742","0.38742" +"GO:0033674","positive regulation of kinase activity",12,0,0.39,1834,"1.0000","0.38754","0.38754" +"GO:0006163","purine nucleotide metabolic process",68,3,2.2,866,"0.3785","0.38911","0.38911" +"GO:1990138","neuron projection extension",5,0,0.16,1835,"1.0000","0.38918","0.38918" +"GO:0006289","nucleotide-excision repair",13,0,0.42,1836,"1.0000","0.39147","0.39147" +"GO:0006909","phagocytosis",19,2,0.61,396,"0.1241","0.39211","0.39211" +"GO:0007549","dosage compensation",3,0,0.1,1837,"1.0000","0.39262","0.39262" +"GO:0009048","dosage compensation by inactivation of X...",3,0,0.1,1838,"1.0000","0.39262","0.39262" +"GO:0048437","floral organ development",3,0,0.1,1839,"1.0000","0.39262","0.39262" +"GO:0048438","floral whorl development",3,0,0.1,1840,"1.0000","0.39262","0.39262" +"GO:0048443","stamen development",3,0,0.1,1841,"1.0000","0.39262","0.39262" +"GO:0048466","androecium development",3,0,0.1,1842,"1.0000","0.39262","0.39262" +"GO:0048827","phyllome development",3,0,0.1,1843,"1.0000","0.39262","0.39262" +"GO:0046467","membrane lipid biosynthetic process",12,0,0.39,1844,"1.0000","0.39296","0.39296" +"GO:0006301","postreplication repair",6,0,0.19,1845,"1.0000","0.39315","0.39315" +"GO:0009112","nucleobase metabolic process",5,0,0.16,1846,"1.0000","0.39338","0.39338" +"GO:0046112","nucleobase biosynthetic process",5,0,0.16,1847,"1.0000","0.39338","0.39338" +"GO:0007420","brain development",49,4,1.58,163,"0.0719","0.39350","0.39350" +"GO:0043549","regulation of kinase activity",29,0,0.94,1848,"1.0000","0.39392","0.39392" +"GO:0009948","anterior/posterior axis specification",5,1,0.16,441,"0.1517","0.39403","0.39403" +"GO:0031647","regulation of protein stability",22,2,0.71,477,"0.1577","0.39438","0.39438" +"GO:2001234","negative regulation of apoptotic signali...",17,1,0.55,934,"0.4291","0.39454","0.39454" +"GO:0010466","negative regulation of peptidase activit...",11,1,0.36,747,"0.3039","0.39533","0.39533" +"GO:2000027","regulation of animal organ morphogenesis",12,0,0.39,1849,"1.0000","0.39548","0.39548" +"GO:0097659","nucleic acid-templated transcription",393,9,12.71,1285,"0.9064","0.39581","0.39581" +"GO:0045995","regulation of embryonic development",7,0,0.23,1850,"1.0000","0.39846","0.39846" +"GO:0032527","protein exit from endoplasmic reticulum",6,0,0.19,1851,"1.0000","0.39909","0.39909" +"GO:0071345","cellular response to cytokine stimulus",28,1,0.91,1118,"0.6034","0.39972","0.39972" +"GO:0071826","ribonucleoprotein complex subunit organi...",30,0,0.97,1852,"1.0000","0.11451","0.40036" +"GO:0010992","ubiquitin recycling",5,0,0.16,1853,"1.0000","0.40071","0.40071" +"GO:0010994","free ubiquitin chain polymerization",5,0,0.16,1854,"1.0000","0.40071","0.40071" +"GO:0045739","positive regulation of DNA repair",5,0,0.16,1855,"1.0000","0.40071","0.40071" +"GO:0002062","chondrocyte differentiation",5,1,0.16,442,"0.1517","0.40103","0.40103" +"GO:0032269","negative regulation of cellular protein ...",54,2,1.75,1042,"0.5269","0.40169","0.40169" +"GO:0051248","negative regulation of protein metabolic...",54,2,1.75,1043,"0.5269","0.40169","0.40169" +"GO:0015780","nucleotide-sugar transmembrane transport",3,0,0.1,1856,"1.0000","0.40207","0.40207" +"GO:0002066","columnar/cuboidal epithelial cell develo...",17,1,0.55,935,"0.4291","0.40278","0.40278" +"GO:0002262","myeloid cell homeostasis",7,2,0.23,24,"0.0196","0.40330","0.40330" +"GO:0030218","erythrocyte differentiation",7,2,0.23,25,"0.0196","0.40330","0.40330" +"GO:0034101","erythrocyte homeostasis",7,2,0.23,26,"0.0196","0.40330","0.40330" +"GO:0006783","heme biosynthetic process",3,0,0.1,1857,"1.0000","0.40334","0.40334" +"GO:0042168","heme metabolic process",3,0,0.1,1858,"1.0000","0.40334","0.40334" +"GO:0035150","regulation of tube size",7,2,0.23,27,"0.0196","0.40427","0.40427" +"GO:0001906","cell killing",12,2,0.39,121,"0.0553","0.40604","0.40604" +"GO:0031341","regulation of cell killing",12,2,0.39,122,"0.0553","0.40604","0.40604" +"GO:0031343","positive regulation of cell killing",12,2,0.39,123,"0.0553","0.40604","0.40604" +"GO:0042058","regulation of epidermal growth factor re...",3,0,0.1,1859,"1.0000","0.40609","0.40609" +"GO:0042059","negative regulation of epidermal growth ...",3,0,0.1,1860,"1.0000","0.40609","0.40609" +"GO:0043901","negative regulation of multi-organism pr...",3,0,0.1,1861,"1.0000","0.40609","0.40609" +"GO:0097352","autophagosome maturation",3,0,0.1,1862,"1.0000","0.40609","0.40609" +"GO:1901184","regulation of ERBB signaling pathway",3,0,0.1,1863,"1.0000","0.40609","0.40609" +"GO:1901185","negative regulation of ERBB signaling pa...",3,0,0.1,1864,"1.0000","0.40609","0.40609" +"GO:0035773","insulin secretion involved in cellular r...",5,0,0.16,1865,"1.0000","0.40678","0.40678" +"GO:0021510","spinal cord development",5,0,0.16,1866,"1.0000","0.40710","0.40710" +"GO:0031103","axon regeneration",5,0,0.16,1867,"1.0000","0.40710","0.40710" +"GO:0048678","response to axon injury",5,0,0.16,1868,"1.0000","0.40710","0.40710" +"GO:0006091","generation of precursor metabolites and ...",45,0,1.46,1869,"1.0000","0.40769","0.40769" +"GO:0010842","retina layer formation",5,0,0.16,1870,"1.0000","0.40809","0.40809" +"GO:0015980","energy derivation by oxidation of organi...",34,0,1.1,1871,"1.0000","0.40826","0.40826" +"GO:0006351","transcription, DNA-templated",392,9,12.68,1284,"0.9049","0.40857","0.40857" +"GO:0006643","membrane lipid metabolic process",21,1,0.68,1022,"0.4999","0.40871","0.40871" +"GO:0042737","drug catabolic process",5,1,0.16,443,"0.1517","0.40875","0.40875" +"GO:0035519","protein K29-linked ubiquitination",3,0,0.1,1872,"1.0000","0.40928","0.40928" +"GO:1905952","regulation of lipid localization",6,0,0.19,1873,"1.0000","0.40988","0.40988" +"GO:0048367","shoot system development",7,0,0.23,1874,"1.0000","0.41012","0.41012" +"GO:0051656","establishment of organelle localization",26,1,0.84,1089,"0.5762","0.41031","0.41031" +"GO:0009268","response to pH",5,0,0.16,1875,"1.0000","0.41057","0.41057" +"GO:0043543","protein acylation",24,0,0.78,1876,"1.0000","0.41097","0.41097" +"GO:0051262","protein tetramerization",6,0,0.19,1877,"1.0000","0.41199","0.41199" +"GO:0050727","regulation of inflammatory response",4,0,0.13,1878,"1.0000","0.02912","0.41272" +"GO:0071241","cellular response to inorganic substance",16,2,0.52,213,"0.0926","0.41309","0.41309" +"GO:0044093","positive regulation of molecular functio...",79,3,2.56,993,"0.4744","0.41361","0.41361" +"GO:0000394","RNA splicing, via endonucleolytic cleava...",4,0,0.13,1879,"1.0000","0.41383","0.41383" +"GO:0006388","tRNA splicing, via endonucleolytic cleav...",4,0,0.13,1880,"1.0000","0.41383","0.41383" +"GO:0048679","regulation of axon regeneration",4,0,0.13,1881,"1.0000","0.41383","0.41383" +"GO:0048680","positive regulation of axon regeneration",4,0,0.13,1882,"1.0000","0.41383","0.41383" +"GO:0070572","positive regulation of neuron projection...",4,0,0.13,1883,"1.0000","0.41383","0.41383" +"GO:1903036","positive regulation of response to wound...",4,0,0.13,1884,"1.0000","0.41383","0.41383" +"GO:0007517","muscle organ development",29,3,0.94,160,"0.0653","0.41396","0.41396" +"GO:0060322","head development",50,4,1.62,188,"0.0763","0.41433","0.41433" +"GO:0045664","regulation of neuron differentiation",35,5,1.13,5,"0.0048","0.41437","0.41437" +"GO:0006751","glutathione catabolic process",4,0,0.13,1885,"1.0000","0.41457","0.41457" +"GO:0043171","peptide catabolic process",4,0,0.13,1886,"1.0000","0.41457","0.41457" +"GO:0071166","ribonucleoprotein complex localization",12,0,0.39,1887,"1.0000","0.41501","0.41501" +"GO:0071426","ribonucleoprotein complex export from nu...",12,0,0.39,1888,"1.0000","0.41501","0.41501" +"GO:0010039","response to iron ion",7,0,0.23,1889,"1.0000","0.41600","0.41600" +"GO:0043123","positive regulation of I-kappaB kinase/N...",7,0,0.23,1890,"1.0000","0.41600","0.41600" +"GO:0031109","microtubule polymerization or depolymeri...",14,2,0.45,177,"0.0732","0.41607","0.41607" +"GO:0048580","regulation of post-embryonic development",3,0,0.1,1891,"1.0000","0.41634","0.41634" +"GO:0070585","protein localization to mitochondrion",24,1,0.78,1059,"0.5472","0.41644","0.41644" +"GO:0072655","establishment of protein localization to...",24,1,0.78,1060,"0.5472","0.41644","0.41644" +"GO:0032355","response to estradiol",18,2,0.58,317,"0.1133","0.41894","0.41894" +"GO:0007018","microtubule-based movement",49,4,1.58,164,"0.0719","0.41982","0.41982" +"GO:0002694","regulation of leukocyte activation",6,1,0.19,505,"0.1792","0.42049","0.42049" +"GO:0050865","regulation of cell activation",6,1,0.19,506,"0.1792","0.42049","0.42049" +"GO:0006638","neutral lipid metabolic process",4,0,0.13,1892,"1.0000","0.42127","0.42127" +"GO:0006639","acylglycerol metabolic process",4,0,0.13,1893,"1.0000","0.42127","0.42127" +"GO:0046461","neutral lipid catabolic process",4,0,0.13,1894,"1.0000","0.42127","0.42127" +"GO:0046464","acylglycerol catabolic process",4,0,0.13,1895,"1.0000","0.42127","0.42127" +"GO:0050994","regulation of lipid catabolic process",4,0,0.13,1896,"1.0000","0.42127","0.42127" +"GO:0051385","response to mineralocorticoid",4,0,0.13,1897,"1.0000","0.42202","0.42202" +"GO:0002376","immune system process",88,7,2.85,30,"0.0223","0.42352","0.42352" +"GO:0072525","pyridine-containing compound biosyntheti...",9,1,0.29,669,"0.2565","0.42365","0.42365" +"GO:0015718","monocarboxylic acid transport",9,0,0.29,1898,"1.0000","0.42365","0.42365" +"GO:0045861","negative regulation of proteolysis",21,1,0.68,1023,"0.4999","0.42408","0.42408" +"GO:0008299","isoprenoid biosynthetic process",4,0,0.13,1899,"1.0000","0.42426","0.42426" +"GO:0008037","cell recognition",14,2,0.45,178,"0.0732","0.42447","0.42447" +"GO:0048024","regulation of mRNA splicing, via spliceo...",14,2,0.45,179,"0.0732","0.42447","0.42447" +"GO:0050684","regulation of mRNA processing",14,2,0.45,180,"0.0732","0.42447","0.42447" +"GO:0071407","cellular response to organic cyclic comp...",34,0,1.1,1900,"1.0000","0.42505","0.42505" +"GO:0007611","learning or memory",6,0,0.19,1901,"1.0000","0.42538","0.42538" +"GO:0034329","cell junction assembly",8,2,0.26,36,"0.0255","0.42547","0.42547" +"GO:0090567","reproductive shoot system development",5,0,0.16,1902,"1.0000","0.42723","0.42723" +"GO:0046503","glycerolipid catabolic process",7,0,0.23,1903,"1.0000","0.42787","0.42787" +"GO:0061326","renal tubule development",6,0,0.19,1904,"1.0000","0.42845","0.42845" +"GO:0072080","nephron tubule development",6,0,0.19,1905,"1.0000","0.42845","0.42845" +"GO:0051129","negative regulation of cellular componen...",47,3,1.52,543,"0.1932","0.42866","0.42866" +"GO:0006825","copper ion transport",4,1,0.13,347,"0.1233","0.42952","0.42952" +"GO:0035434","copper ion transmembrane transport",4,1,0.13,348,"0.1233","0.42952","0.42952" +"GO:0006119","oxidative phosphorylation",17,0,0.55,1906,"1.0000","0.43033","0.43033" +"GO:0006650","glycerophospholipid metabolic process",33,0,1.07,1907,"1.0000","0.43138","0.43138" +"GO:0009072","aromatic amino acid family metabolic pro...",12,2,0.39,124,"0.0553","0.43233","0.43233" +"GO:0008625","extrinsic apoptotic signaling pathway vi...",4,0,0.13,1908,"1.0000","0.43254","0.43254" +"GO:0072521","purine-containing compound metabolic pro...",74,4,2.39,592,"0.2161","0.35980","0.43276" +"GO:0051928","positive regulation of calcium ion trans...",6,0,0.19,1909,"1.0000","0.43399","0.43399" +"GO:0008291","acetylcholine metabolic process",4,0,0.13,1910,"1.0000","0.43405","0.43405" +"GO:1900619","acetate ester metabolic process",4,0,0.13,1911,"1.0000","0.43405","0.43405" +"GO:0001843","neural tube closure",6,1,0.19,507,"0.1792","0.43430","0.43430" +"GO:0060606","tube closure",6,1,0.19,508,"0.1792","0.43430","0.43430" +"GO:0031099","regeneration",15,0,0.49,1912,"1.0000","0.43482","0.43482" +"GO:0034394","protein localization to cell surface",3,0,0.1,1913,"1.0000","0.43561","0.43561" +"GO:0045324","late endosome to vacuole transport",3,0,0.1,1914,"1.0000","0.43561","0.43561" +"GO:2000008","regulation of protein localization to ce...",3,0,0.1,1915,"1.0000","0.43561","0.43561" +"GO:0071559","response to transforming growth factor b...",13,2,0.42,156,"0.0641","0.43770","0.43770" +"GO:0071560","cellular response to transforming growth...",13,2,0.42,157,"0.0641","0.43770","0.43770" +"GO:0021549","cerebellum development",18,2,0.58,318,"0.1133","0.43921","0.43921" +"GO:0022037","metencephalon development",18,2,0.58,319,"0.1133","0.43921","0.43921" +"GO:0030902","hindbrain development",18,2,0.58,320,"0.1133","0.43921","0.43921" +"GO:1902882","regulation of response to oxidative stre...",18,2,0.58,321,"0.1133","0.43921","0.43921" +"GO:0001967","suckling behavior",3,0,0.1,1916,"1.0000","0.44021","0.44021" +"GO:0048144","fibroblast proliferation",3,0,0.1,1917,"1.0000","0.44021","0.44021" +"GO:0048145","regulation of fibroblast proliferation",3,0,0.1,1918,"1.0000","0.44021","0.44021" +"GO:0090329","regulation of DNA-dependent DNA replicat...",3,0,0.1,1919,"1.0000","0.44021","0.44021" +"GO:0006575","cellular modified amino acid metabolic p...",15,1,0.49,885,"0.3901","0.44061","0.44061" +"GO:0032101","regulation of response to external stimu...",19,0,0.61,1920,"1.0000","0.13710","0.44125" +"GO:0008543","fibroblast growth factor receptor signal...",4,0,0.13,1921,"1.0000","0.44164","0.44164" +"GO:0040036","regulation of fibroblast growth factor r...",4,0,0.13,1922,"1.0000","0.44164","0.44164" +"GO:0044344","cellular response to fibroblast growth f...",4,0,0.13,1923,"1.0000","0.44164","0.44164" +"GO:0071774","response to fibroblast growth factor",4,0,0.13,1924,"1.0000","0.44164","0.44164" +"GO:1901136","carbohydrate derivative catabolic proces...",11,1,0.36,748,"0.3039","0.44231","0.44231" +"GO:0008064","regulation of actin polymerization or de...",19,0,0.61,1925,"1.0000","0.44247","0.44247" +"GO:0030832","regulation of actin filament length",19,0,0.61,1926,"1.0000","0.44247","0.44247" +"GO:0110053","regulation of actin filament organizatio...",19,0,0.61,1927,"1.0000","0.44247","0.44247" +"GO:0042026","protein refolding",22,2,0.71,478,"0.1577","0.44278","0.44278" +"GO:1901071","glucosamine-containing compound metaboli...",32,1,1.04,1148,"0.6528","0.44290","0.44290" +"GO:0031397","negative regulation of protein ubiquitin...",7,1,0.23,563,"0.2058","0.44290","0.44290" +"GO:0060538","skeletal muscle organ development",17,2,0.55,306,"0.1028","0.44296","0.44296" +"GO:0002526","acute inflammatory response",5,0,0.16,1928,"1.0000","0.44383","0.44383" +"GO:0032868","response to insulin",5,0,0.16,1929,"1.0000","0.44383","0.44383" +"GO:0051259","protein complex oligomerization",18,0,0.58,1930,"1.0000","0.44389","0.44389" +"GO:0006568","tryptophan metabolic process",4,1,0.13,349,"0.1233","0.44545","0.44545" +"GO:0006569","tryptophan catabolic process",4,1,0.13,350,"0.1233","0.44545","0.44545" +"GO:0006586","indolalkylamine metabolic process",4,1,0.13,351,"0.1233","0.44545","0.44545" +"GO:0009310","amine catabolic process",4,1,0.13,352,"0.1233","0.44545","0.44545" +"GO:0042402","cellular biogenic amine catabolic proces...",4,1,0.13,353,"0.1233","0.44545","0.44545" +"GO:0042436","indole-containing compound catabolic pro...",4,1,0.13,354,"0.1233","0.44545","0.44545" +"GO:0046218","indolalkylamine catabolic process",4,1,0.13,355,"0.1233","0.44545","0.44545" +"GO:0042537","benzene-containing compound metabolic pr...",4,0,0.13,1931,"1.0000","0.44545","0.44545" +"GO:1901021","positive regulation of calcium ion trans...",4,0,0.13,1932,"1.0000","0.44621","0.44621" +"GO:1904427","positive regulation of calcium ion trans...",4,0,0.13,1933,"1.0000","0.44621","0.44621" +"GO:0016485","protein processing",13,0,0.42,1934,"1.0000","0.44670","0.44670" +"GO:0016043","cellular component organization",541,14,17.5,1268,"0.8600","0.40924","0.44711" +"GO:0045005","DNA-dependent DNA replication maintenanc...",3,0,0.1,1935,"1.0000","0.44748","0.44748" +"GO:0045860","positive regulation of protein kinase ac...",11,0,0.36,1936,"1.0000","0.44773","0.44773" +"GO:0071248","cellular response to metal ion",15,2,0.49,197,"0.0827","0.44851","0.44851" +"GO:0033500","carbohydrate homeostasis",10,0,0.32,1937,"1.0000","0.44933","0.44933" +"GO:0042593","glucose homeostasis",10,0,0.32,1938,"1.0000","0.44933","0.44933" +"GO:0051453","regulation of intracellular pH",3,0,0.1,1939,"1.0000","0.44969","0.44969" +"GO:0097306","cellular response to alcohol",9,0,0.29,1940,"1.0000","0.44969","0.44969" +"GO:1903533","regulation of protein targeting",11,1,0.36,749,"0.3039","0.45004","0.45004" +"GO:0036265","RNA (guanine-N7)-methylation",3,0,0.1,1941,"1.0000","0.45080","0.45080" +"GO:0006024","glycosaminoglycan biosynthetic process",3,0,0.1,1942,"1.0000","0.45102","0.45102" +"GO:0019321","pentose metabolic process",3,0,0.1,1943,"1.0000","0.45102","0.45102" +"GO:0006766","vitamin metabolic process",11,0,0.36,1944,"1.0000","0.45236","0.45236" +"GO:0051338","regulation of transferase activity",41,0,1.33,1945,"1.0000","0.45350","0.45350" +"GO:0022618","ribonucleoprotein complex assembly",29,0,0.94,1946,"1.0000","0.08184","0.45434" +"GO:0007507","heart development",30,2,0.97,658,"0.2530","0.45435","0.45435" +"GO:0001892","embryonic placenta development",10,1,0.32,717,"0.2806","0.45492","0.45492" +"GO:0051607","defense response to virus",6,0,0.19,1947,"1.0000","0.45676","0.45676" +"GO:0031112","positive regulation of microtubule polym...",9,1,0.29,670,"0.2565","0.45688","0.45688" +"GO:0031113","regulation of microtubule polymerization",9,1,0.29,671,"0.2565","0.45688","0.45688" +"GO:0031116","positive regulation of microtubule polym...",9,1,0.29,672,"0.2565","0.45688","0.45688" +"GO:0051254","positive regulation of RNA metabolic pro...",66,3,2.13,843,"0.3606","0.45858","0.45858" +"GO:1903046","meiotic cell cycle process",13,1,0.42,808,"0.3484","0.46015","0.46015" +"GO:0000375","RNA splicing, via transesterification re...",57,3,1.84,694,"0.2799","0.16549","0.46017" +"GO:0000377","RNA splicing, via transesterification re...",57,3,1.84,695,"0.2799","0.16549","0.46017" +"GO:0000398","mRNA splicing, via spliceosome",57,3,1.84,696,"0.2799","0.16549","0.46017" +"GO:1904888","cranial skeletal system development",6,0,0.19,1948,"1.0000","0.46086","0.46086" +"GO:0097327","response to antineoplastic agent",4,0,0.13,1949,"1.0000","0.46160","0.46160" +"GO:0007338","single fertilization",8,2,0.26,37,"0.0255","0.46326","0.46326" +"GO:0006576","cellular biogenic amine metabolic proces...",8,1,0.26,627,"0.2315","0.46326","0.46326" +"GO:0048511","rhythmic process",35,3,1.13,301,"0.1020","0.28845","0.46358" +"GO:0097190","apoptotic signaling pathway",28,1,0.91,1119,"0.6034","0.46380","0.46380" +"GO:0042135","neurotransmitter catabolic process",4,0,0.13,1950,"1.0000","0.46393","0.46393" +"GO:0007178","transmembrane receptor protein serine/th...",18,2,0.58,322,"0.1133","0.46480","0.46480" +"GO:0001959","regulation of cytokine-mediated signalin...",7,1,0.23,564,"0.2058","0.46531","0.46531" +"GO:0001961","positive regulation of cytokine-mediated...",7,1,0.23,565,"0.2058","0.46531","0.46531" +"GO:0060759","regulation of response to cytokine stimu...",7,1,0.23,566,"0.2058","0.46531","0.46531" +"GO:0060760","positive regulation of response to cytok...",7,1,0.23,567,"0.2058","0.46531","0.46531" +"GO:1904950","negative regulation of establishment of ...",8,0,0.26,1951,"1.0000","0.46545","0.46545" +"GO:1903827","regulation of cellular protein localizat...",36,1,1.16,1186,"0.6960","0.46551","0.46551" +"GO:0048588","developmental cell growth",13,1,0.42,809,"0.3484","0.46564","0.46564" +"GO:0010942","positive regulation of cell death",25,0,0.81,1952,"1.0000","0.46590","0.46590" +"GO:0000041","transition metal ion transport",13,1,0.42,810,"0.3484","0.46618","0.46618" +"GO:0032103","positive regulation of response to exter...",11,0,0.36,1953,"1.0000","0.06315","0.46638" +"GO:0000002","mitochondrial genome maintenance",4,0,0.13,1954,"1.0000","0.46703","0.46703" +"GO:1990778","protein localization to cell periphery",12,1,0.39,787,"0.3265","0.46734","0.46734" +"GO:0043547","positive regulation of GTPase activity",12,0,0.39,1955,"1.0000","0.46734","0.46734" +"GO:0010035","response to inorganic substance",41,3,1.33,413,"0.1452","0.46736","0.46736" +"GO:0033559","unsaturated fatty acid metabolic process",5,0,0.16,1956,"1.0000","0.46743","0.46743" +"GO:0031348","negative regulation of defense response",3,1,0.1,241,"0.0940","0.46752","0.46752" +"GO:0045824","negative regulation of innate immune res...",3,1,0.1,242,"0.0940","0.46752","0.46752" +"GO:0050777","negative regulation of immune response",3,1,0.1,243,"0.0940","0.46752","0.46752" +"GO:0120192","tight junction assembly",3,1,0.1,244,"0.0940","0.46752","0.46752" +"GO:0120193","tight junction organization",3,1,0.1,245,"0.0940","0.46752","0.46752" +"GO:0071320","cellular response to cAMP",3,0,0.1,1957,"1.0000","0.46820","0.46820" +"GO:0034250","positive regulation of cellular amide me...",5,0,0.16,1958,"1.0000","0.46917","0.46917" +"GO:0045727","positive regulation of translation",5,0,0.16,1959,"1.0000","0.46917","0.46917" +"GO:0010628","positive regulation of gene expression",78,4,2.52,652,"0.2441","0.46993","0.46993" +"GO:0030516","regulation of axon extension",4,0,0.13,1960,"1.0000","0.47014","0.47014" +"GO:0048259","regulation of receptor-mediated endocyto...",4,0,0.13,1961,"1.0000","0.47014","0.47014" +"GO:0048675","axon extension",4,0,0.13,1962,"1.0000","0.47014","0.47014" +"GO:0042398","cellular modified amino acid biosyntheti...",5,1,0.16,444,"0.1517","0.47057","0.47057" +"GO:0022900","electron transport chain",18,0,0.58,1963,"1.0000","0.47086","0.47086" +"GO:0001933","negative regulation of protein phosphory...",17,1,0.55,936,"0.4291","0.47107","0.47107" +"GO:0040008","regulation of growth",35,2,1.13,765,"0.3137","0.47283","0.47283" +"GO:0051091","positive regulation of DNA-binding trans...",13,1,0.42,811,"0.3484","0.47343","0.47343" +"GO:0099402","plant organ development",10,0,0.32,1964,"1.0000","0.47407","0.47407" +"GO:0010970","transport along microtubule",27,2,0.87,593,"0.2167","0.47683","0.47683" +"GO:0030705","cytoskeleton-dependent intracellular tra...",27,2,0.87,594,"0.2167","0.47683","0.47683" +"GO:0099111","microtubule-based transport",27,2,0.87,595,"0.2167","0.47683","0.47683" +"GO:0055088","lipid homeostasis",5,0,0.16,1965,"1.0000","0.47685","0.47685" +"GO:0071383","cellular response to steroid hormone sti...",24,0,0.78,1966,"1.0000","0.47716","0.47716" +"GO:0006396","RNA processing",212,5,6.86,1257,"0.8282","0.25657","0.47775" +"GO:0051321","meiotic cell cycle",17,1,0.55,937,"0.4291","0.47810","0.47810" +"GO:0006733","oxidoreduction coenzyme metabolic proces...",16,1,0.52,912,"0.4099","0.47888","0.47888" +"GO:0045333","cellular respiration",30,0,0.97,1967,"1.0000","0.47900","0.47900" +"GO:1901361","organic cyclic compound catabolic proces...",65,4,2.1,474,"0.1570","0.47957","0.47957" +"GO:0071985","multivesicular body sorting pathway",4,0,0.13,1968,"1.0000","0.48031","0.48031" +"GO:0009615","response to virus",8,0,0.26,1969,"1.0000","0.48092","0.48092" +"GO:0070125","mitochondrial translational elongation",3,0,0.1,1970,"1.0000","0.48105","0.48105" +"GO:0070126","mitochondrial translational termination",3,0,0.1,1971,"1.0000","0.48105","0.48105" +"GO:0009438","methylglyoxal metabolic process",3,0,0.1,1972,"1.0000","0.48241","0.48241" +"GO:0009893","positive regulation of metabolic process",153,5,4.95,1068,"0.5576","0.48258","0.48258" +"GO:0046532","regulation of photoreceptor cell differe...",4,0,0.13,1973,"1.0000","0.48345","0.48345" +"GO:1990542","mitochondrial transmembrane transport",14,0,0.45,1974,"1.0000","0.48353","0.48353" +"GO:1903202","negative regulation of oxidative stress-...",15,2,0.49,198,"0.0827","0.48376","0.48376" +"GO:0036297","interstrand cross-link repair",4,0,0.13,1975,"1.0000","0.48423","0.48423" +"GO:0000028","ribosomal small subunit assembly",3,0,0.1,1976,"1.0000","0.48468","0.48468" +"GO:0001763","morphogenesis of a branching structure",11,0,0.36,1977,"1.0000","0.48489","0.48489" +"GO:0033209","tumor necrosis factor-mediated signaling...",6,1,0.19,509,"0.1792","0.48573","0.48573" +"GO:0034612","response to tumor necrosis factor",6,1,0.19,510,"0.1792","0.48573","0.48573" +"GO:0071356","cellular response to tumor necrosis fact...",6,1,0.19,511,"0.1792","0.48573","0.48573" +"GO:0010243","response to organonitrogen compound",55,0,1.78,1978,"1.0000","0.48621","0.48621" +"GO:0051704","multi-organism process",137,6,4.43,729,"0.2813","0.48775","0.48775" +"GO:0055065","metal ion homeostasis",22,0,0.71,1979,"1.0000","0.48824","0.48824" +"GO:0007623","circadian rhythm",20,1,0.65,1005,"0.4830","0.48826","0.48826" +"GO:0098662","inorganic cation transmembrane transport",37,1,1.2,1195,"0.7060","0.48919","0.48919" +"GO:0051302","regulation of cell division",3,0,0.1,1980,"1.0000","0.48923","0.48923" +"GO:0009952","anterior/posterior pattern specification",10,1,0.32,718,"0.2806","0.48948","0.48948" +"GO:0031396","regulation of protein ubiquitination",25,1,0.81,1071,"0.5619","0.48963","0.48963" +"GO:0044283","small molecule biosynthetic process",61,5,1.97,58,"0.0455","0.19482","0.49060" +"GO:0071695","anatomical structure maturation",9,0,0.29,1981,"1.0000","0.49179","0.49179" +"GO:0030970","retrograde protein transport, ER to cyto...",5,0,0.16,1982,"1.0000","0.49322","0.49322" +"GO:0070861","regulation of protein exit from endoplas...",5,0,0.16,1983,"1.0000","0.49322","0.49322" +"GO:0070862","negative regulation of protein exit from...",5,0,0.16,1984,"1.0000","0.49322","0.49322" +"GO:0090317","negative regulation of intracellular pro...",5,0,0.16,1985,"1.0000","0.49322","0.49322" +"GO:1901799","negative regulation of proteasomal prote...",5,0,0.16,1986,"1.0000","0.49322","0.49322" +"GO:1903051","negative regulation of proteolysis invol...",5,0,0.16,1987,"1.0000","0.49322","0.49322" +"GO:1903363","negative regulation of cellular protein ...",5,0,0.16,1988,"1.0000","0.49322","0.49322" +"GO:1903513","endoplasmic reticulum to cytosol transpo...",5,0,0.16,1989,"1.0000","0.49322","0.49322" +"GO:1904152","regulation of retrograde protein transpo...",5,0,0.16,1990,"1.0000","0.49322","0.49322" +"GO:1904153","negative regulation of retrograde protei...",5,0,0.16,1991,"1.0000","0.49322","0.49322" +"GO:1904293","negative regulation of ERAD pathway",5,0,0.16,1992,"1.0000","0.49322","0.49322" +"GO:0030162","regulation of proteolysis",45,2,1.46,945,"0.4308","0.49410","0.49410" +"GO:0001516","prostaglandin biosynthetic process",3,0,0.1,1993,"1.0000","0.49493","0.49493" +"GO:0046456","icosanoid biosynthetic process",3,0,0.1,1994,"1.0000","0.49493","0.49493" +"GO:0046457","prostanoid biosynthetic process",3,0,0.1,1995,"1.0000","0.49493","0.49493" +"GO:1901569","fatty acid derivative catabolic process",3,0,0.1,1996,"1.0000","0.49493","0.49493" +"GO:0019439","aromatic compound catabolic process",63,4,2.04,411,"0.1448","0.49509","0.49509" +"GO:0044270","cellular nitrogen compound catabolic pro...",63,3,2.04,799,"0.3337","0.49509","0.49509" +"GO:0008380","RNA splicing",67,3,2.17,861,"0.3696","0.19952","0.49609" +"GO:0003007","heart morphogenesis",12,1,0.39,788,"0.3265","0.49639","0.49639" +"GO:0030534","adult behavior",7,0,0.23,1997,"1.0000","0.49646","0.49646" +"GO:0051348","negative regulation of transferase activ...",13,0,0.42,1998,"1.0000","0.49659","0.49659" +"GO:0044743","protein transmembrane import into intrac...",21,2,0.68,418,"0.1463","0.49684","0.49684" +"GO:0043968","histone H2A acetylation",4,0,0.13,1999,"1.0000","0.49687","0.49687" +"GO:0022898","regulation of transmembrane transporter ...",13,1,0.42,812,"0.3484","0.49736","0.49736" +"GO:0032409","regulation of transporter activity",13,1,0.42,813,"0.3484","0.49736","0.49736" +"GO:0032412","regulation of ion transmembrane transpor...",13,1,0.42,814,"0.3484","0.49736","0.49736" +"GO:0034765","regulation of ion transmembrane transpor...",13,1,0.42,815,"0.3484","0.49736","0.49736" +"GO:1904062","regulation of cation transmembrane trans...",13,1,0.42,816,"0.3484","0.49736","0.49736" +"GO:0044314","protein K27-linked ubiquitination",4,0,0.13,2000,"1.0000","0.49766","0.49766" +"GO:0051438","regulation of ubiquitin-protein transfer...",4,0,0.13,2001,"1.0000","0.49766","0.49766" +"GO:0085020","protein K6-linked ubiquitination",4,0,0.13,2002,"1.0000","0.49766","0.49766" +"GO:0006164","purine nucleotide biosynthetic process",36,1,1.16,1187,"0.6960","0.49919","0.49919" +"GO:0048583","regulation of response to stimulus",207,10,6.7,401,"0.1287","0.37430","0.50023" +"GO:0051128","regulation of cellular component organiz...",148,6,4.79,802,"0.3449","0.50026","0.50026" +"GO:1901292","nucleoside phosphate catabolic process",15,1,0.49,886,"0.3901","0.50083","0.50083" +"GO:0007605","sensory perception of sound",7,0,0.23,2003,"1.0000","0.50171","0.50171" +"GO:0050954","sensory perception of mechanical stimulu...",7,0,0.23,2004,"1.0000","0.50171","0.50171" +"GO:2001235","positive regulation of apoptotic signali...",9,0,0.29,2005,"1.0000","0.50184","0.50184" +"GO:0002181","cytoplasmic translation",8,0,0.26,2006,"1.0000","0.50216","0.50216" +"GO:0006515","protein quality control for misfolded or...",4,0,0.13,2007,"1.0000","0.50242","0.50242" +"GO:0071218","cellular response to misfolded protein",4,0,0.13,2008,"1.0000","0.50242","0.50242" +"GO:2000378","negative regulation of reactive oxygen s...",4,0,0.13,2009,"1.0000","0.50242","0.50242" +"GO:1904029","regulation of cyclin-dependent protein k...",9,0,0.29,2010,"1.0000","0.50303","0.50303" +"GO:0006206","pyrimidine nucleobase metabolic process",4,0,0.13,2011,"1.0000","0.50401","0.50401" +"GO:0006207","'de novo' pyrimidine nucleobase biosynth...",4,0,0.13,2012,"1.0000","0.50401","0.50401" +"GO:0019856","pyrimidine nucleobase biosynthetic proce...",4,0,0.13,2013,"1.0000","0.50401","0.50401" +"GO:0055007","cardiac muscle cell differentiation",5,1,0.16,445,"0.1517","0.50404","0.50404" +"GO:0043401","steroid hormone mediated signaling pathw...",20,0,0.65,2014,"1.0000","0.50532","0.50532" +"GO:0030041","actin filament polymerization",18,0,0.58,2015,"1.0000","0.50550","0.50550" +"GO:0030833","regulation of actin filament polymerizat...",18,0,0.58,2016,"1.0000","0.50550","0.50550" +"GO:0009101","glycoprotein biosynthetic process",52,2,1.68,1025,"0.5065","0.50628","0.50628" +"GO:0006490","oligosaccharide-lipid intermediate biosy...",7,1,0.23,568,"0.2058","0.50698","0.50698" +"GO:1900407","regulation of cellular response to oxida...",17,2,0.55,307,"0.1028","0.50711","0.50711" +"GO:0006611","protein export from nucleus",14,0,0.45,2017,"1.0000","0.50727","0.50727" +"GO:0008593","regulation of Notch signaling pathway",9,1,0.29,673,"0.2565","0.50755","0.50755" +"GO:0006284","base-excision repair",4,0,0.13,2018,"1.0000","0.50879","0.50879" +"GO:0009394","2'-deoxyribonucleotide metabolic process",4,0,0.13,2019,"1.0000","0.50879","0.50879" +"GO:0019692","deoxyribose phosphate metabolic process",4,0,0.13,2020,"1.0000","0.50879","0.50879" +"GO:0046165","alcohol biosynthetic process",8,1,0.26,628,"0.2315","0.50892","0.50892" +"GO:0048640","negative regulation of developmental gro...",8,1,0.26,629,"0.2315","0.50892","0.50892" +"GO:0000956","nuclear-transcribed mRNA catabolic proce...",19,0,0.61,2021,"1.0000","0.50968","0.50968" +"GO:0007405","neuroblast proliferation",7,1,0.23,569,"0.2058","0.51015","0.51015" +"GO:0061351","neural precursor cell proliferation",7,1,0.23,570,"0.2058","0.51015","0.51015" +"GO:0072089","stem cell proliferation",7,1,0.23,571,"0.2058","0.51015","0.51015" +"GO:0051235","maintenance of location",13,0,0.42,2022,"1.0000","0.51029","0.51029" +"GO:0009152","purine ribonucleotide biosynthetic proce...",33,1,1.07,1159,"0.6641","0.51194","0.51194" +"GO:0045859","regulation of protein kinase activity",25,0,0.81,2023,"1.0000","0.51283","0.51283" +"GO:0030855","epithelial cell differentiation",34,1,1.1,1168,"0.6751","0.51289","0.51289" +"GO:0010604","positive regulation of macromolecule met...",136,4,4.4,1145,"0.6501","0.51371","0.51371" +"GO:0010498","proteasomal protein catabolic process",45,1,1.46,1232,"0.7748","0.51423","0.51423" +"GO:0006999","nuclear pore organization",3,0,0.1,2024,"1.0000","0.51469","0.51469" +"GO:0043161","proteasome-mediated ubiquitin-dependent ...",40,1,1.29,1213,"0.7339","0.51471","0.51471" +"GO:1901264","carbohydrate derivative transport",5,0,0.16,2025,"1.0000","0.51493","0.51493" +"GO:0045017","glycerolipid biosynthetic process",21,0,0.68,2026,"1.0000","0.51515","0.51515" +"GO:0034599","cellular response to oxidative stress",23,2,0.74,488,"0.1693","0.51527","0.51527" +"GO:0043068","positive regulation of programmed cell d...",23,0,0.74,2027,"1.0000","0.51527","0.51527" +"GO:0009966","regulation of signal transduction",149,6,4.82,838,"0.3508","0.51554","0.51554" +"GO:0045935","positive regulation of nucleobase-contai...",77,3,2.49,967,"0.4574","0.51634","0.51634" +"GO:0080135","regulation of cellular response to stres...",59,2,1.91,1085,"0.5754","0.51677","0.51677" +"GO:0001754","eye photoreceptor cell differentiation",12,0,0.39,2028,"1.0000","0.51758","0.51758" +"GO:0006959","humoral immune response",3,0,0.1,2029,"1.0000","0.51769","0.51769" +"GO:0048738","cardiac muscle tissue development",9,1,0.29,674,"0.2565","0.51781","0.51781" +"GO:0006414","translational elongation",18,0,0.58,2030,"1.0000","0.51796","0.51796" +"GO:0010959","regulation of metal ion transport",11,0,0.36,2031,"1.0000","0.51810","0.51810" +"GO:0034764","positive regulation of transmembrane tra...",11,0,0.36,2032,"1.0000","0.51810","0.51810" +"GO:0070301","cellular response to hydrogen peroxide",16,2,0.52,214,"0.0926","0.51941","0.51941" +"GO:1900408","negative regulation of cellular response...",16,2,0.52,215,"0.0926","0.51941","0.51941" +"GO:1902883","negative regulation of response to oxida...",16,2,0.52,216,"0.0926","0.51941","0.51941" +"GO:1903201","regulation of oxidative stress-induced c...",16,2,0.52,217,"0.0926","0.51941","0.51941" +"GO:2001023","regulation of response to drug",16,2,0.52,218,"0.0926","0.51941","0.51941" +"GO:1902850","microtubule cytoskeleton organization in...",14,1,0.45,855,"0.3696","0.52076","0.52076" +"GO:0071804","cellular potassium ion transport",6,0,0.19,2033,"1.0000","0.52113","0.52113" +"GO:0071805","potassium ion transmembrane transport",6,0,0.19,2034,"1.0000","0.52113","0.52113" +"GO:0001573","ganglioside metabolic process",3,1,0.1,246,"0.0940","0.52209","0.52209" +"GO:0006687","glycosphingolipid metabolic process",3,1,0.1,247,"0.0940","0.52209","0.52209" +"GO:0006689","ganglioside catabolic process",3,1,0.1,248,"0.0940","0.52209","0.52209" +"GO:0019377","glycolipid catabolic process",3,1,0.1,249,"0.0940","0.52209","0.52209" +"GO:0046479","glycosphingolipid catabolic process",3,1,0.1,250,"0.0940","0.52209","0.52209" +"GO:0046514","ceramide catabolic process",3,1,0.1,251,"0.0940","0.52209","0.52209" +"GO:0016042","lipid catabolic process",23,2,0.74,489,"0.1693","0.52223","0.52223" +"GO:0015740","C4-dicarboxylate transport",4,0,0.13,2035,"1.0000","0.52240","0.52240" +"GO:0007601","visual perception",16,2,0.52,219,"0.0926","0.52263","0.52263" +"GO:0043949","regulation of cAMP-mediated signaling",3,0,0.1,2036,"1.0000","0.52371","0.52371" +"GO:0071025","RNA surveillance",4,0,0.13,2037,"1.0000","0.52401","0.52401" +"GO:0044818","mitotic G2/M transition checkpoint",3,0,0.1,2038,"1.0000","0.52464","0.52464" +"GO:1905330","regulation of morphogenesis of an epithe...",9,0,0.29,2039,"1.0000","0.52464","0.52464" +"GO:0007051","spindle organization",18,2,0.58,323,"0.1133","0.52478","0.52478" +"GO:0016569","covalent chromatin modification",58,0,1.88,2040,"1.0000","0.52521","0.52521" +"GO:0000226","microtubule cytoskeleton organization",38,3,1.23,331,"0.1229","0.52541","0.52541" +"GO:0072359","circulatory system development",40,2,1.29,863,"0.3733","0.52543","0.52543" +"GO:0071156","regulation of cell cycle arrest",3,0,0.1,2041,"1.0000","0.52580","0.52580" +"GO:0018205","peptidyl-lysine modification",36,1,1.16,1188,"0.6960","0.52597","0.52597" +"GO:0016032","viral process",32,3,1.04,203,"0.0828","0.52603","0.52603" +"GO:0009746","response to hexose",7,0,0.23,2042,"1.0000","0.52605","0.52605" +"GO:0009749","response to glucose",7,0,0.23,2043,"1.0000","0.52605","0.52605" +"GO:0034284","response to monosaccharide",7,0,0.23,2044,"1.0000","0.52605","0.52605" +"GO:0044248","cellular catabolic process",213,8,6.89,869,"0.3837","0.52635","0.52635" +"GO:0010001","glial cell differentiation",9,1,0.29,675,"0.2565","0.52880","0.52880" +"GO:0007204","positive regulation of cytosolic calcium...",4,0,0.13,2045,"1.0000","0.52883","0.52883" +"GO:0035308","negative regulation of protein dephospho...",4,0,0.13,2046,"1.0000","0.52883","0.52883" +"GO:0043271","negative regulation of ion transport",4,0,0.13,2047,"1.0000","0.52883","0.52883" +"GO:0051480","regulation of cytosolic calcium ion conc...",4,0,0.13,2048,"1.0000","0.52883","0.52883" +"GO:0042462","eye photoreceptor cell development",7,0,0.23,2049,"1.0000","0.52925","0.52925" +"GO:1901655","cellular response to ketone",7,0,0.23,2050,"1.0000","0.52925","0.52925" +"GO:0051188","cofactor biosynthetic process",35,1,1.13,1178,"0.6857","0.52949","0.52949" +"GO:0097300","programmed necrotic cell death",5,1,0.16,446,"0.1517","0.53001","0.53001" +"GO:0006813","potassium ion transport",13,0,0.42,2051,"1.0000","0.53012","0.53012" +"GO:0046530","photoreceptor cell differentiation",15,0,0.49,2052,"1.0000","0.53043","0.53043" +"GO:0098656","anion transmembrane transport",21,0,0.68,2053,"1.0000","0.53052","0.53052" +"GO:0006875","cellular metal ion homeostasis",18,0,0.58,2054,"1.0000","0.53087","0.53087" +"GO:0043094","cellular metabolic compound salvage",5,1,0.16,447,"0.1517","0.04047","0.53108" +"GO:0030509","BMP signaling pathway",5,1,0.16,448,"0.1517","0.53127","0.53127" +"GO:0030510","regulation of BMP signaling pathway",5,1,0.16,449,"0.1517","0.53127","0.53127" +"GO:0018198","peptidyl-cysteine modification",3,0,0.1,2055,"1.0000","0.53137","0.53137" +"GO:0046700","heterocycle catabolic process",62,3,2.01,777,"0.3247","0.53159","0.53159" +"GO:0019216","regulation of lipid metabolic process",18,1,0.58,963,"0.4476","0.53201","0.53201" +"GO:0034389","lipid droplet organization",3,1,0.1,252,"0.0940","0.53207","0.53207" +"GO:0072520","seminiferous tubule development",3,0,0.1,2056,"1.0000","0.53207","0.53207" +"GO:0032387","negative regulation of intracellular tra...",7,0,0.23,2057,"1.0000","0.53245","0.53245" +"GO:2001233","regulation of apoptotic signaling pathwa...",23,1,0.74,1046,"0.5319","0.53258","0.53258" +"GO:0050767","regulation of neurogenesis",43,5,1.39,12,"0.0116","0.53277","0.53277" +"GO:0046683","response to organophosphorus",6,0,0.19,2058,"1.0000","0.53394","0.53394" +"GO:0007293","germarium-derived egg chamber formation",4,0,0.13,2059,"1.0000","0.53447","0.53447" +"GO:0071363","cellular response to growth factor stimu...",24,3,0.78,55,"0.0406","0.53454","0.53454" +"GO:0006836","neurotransmitter transport",22,1,0.71,1030,"0.5161","0.53485","0.53485" +"GO:0007010","cytoskeleton organization",93,3,3.01,1097,"0.5859","0.53487","0.53487" +"GO:0006631","fatty acid metabolic process",27,2,0.87,596,"0.2167","0.53588","0.53588" +"GO:0042157","lipoprotein metabolic process",20,1,0.65,1006,"0.4830","0.53589","0.53589" +"GO:0016570","histone modification",54,0,1.75,2060,"1.0000","0.53631","0.53631" +"GO:0007498","mesoderm development",5,0,0.16,2061,"1.0000","0.53650","0.53650" +"GO:0009143","nucleoside triphosphate catabolic proces...",3,0,0.1,2062,"1.0000","0.53720","0.53720" +"GO:0050801","ion homeostasis",30,0,0.97,2063,"1.0000","0.54012","0.54012" +"GO:0097428","protein maturation by iron-sulfur cluste...",4,0,0.13,2064,"1.0000","0.54013","0.54013" +"GO:0031058","positive regulation of histone modificat...",6,0,0.19,2065,"1.0000","0.54054","0.54054" +"GO:1905269","positive regulation of chromatin organiz...",6,0,0.19,2066,"1.0000","0.54054","0.54054" +"GO:0009416","response to light stimulus",23,1,0.74,1047,"0.5319","0.54170","0.54170" +"GO:0048260","positive regulation of receptor-mediated...",3,0,0.1,2067,"1.0000","0.54186","0.54186" +"GO:1902946","protein localization to early endosome",3,0,0.1,2068,"1.0000","0.54186","0.54186" +"GO:0007220","Notch receptor processing",3,0,0.1,2069,"1.0000","0.54326","0.54326" +"GO:0007398","ectoderm development",3,0,0.1,2070,"1.0000","0.54326","0.54326" +"GO:0010668","ectodermal cell differentiation",3,0,0.1,2071,"1.0000","0.54326","0.54326" +"GO:0009612","response to mechanical stimulus",14,1,0.45,856,"0.3696","0.54341","0.54341" +"GO:0009267","cellular response to starvation",13,0,0.42,2072,"1.0000","0.54403","0.54403" +"GO:0031668","cellular response to extracellular stimu...",13,0,0.42,2073,"1.0000","0.54403","0.54403" +"GO:0031669","cellular response to nutrient levels",13,0,0.42,2074,"1.0000","0.54403","0.54403" +"GO:0006950","response to stress",316,7,10.22,1282,"0.9003","0.43696","0.54507" +"GO:0010968","regulation of microtubule nucleation",8,1,0.26,630,"0.2315","0.54534","0.54534" +"GO:0060236","regulation of mitotic spindle organizati...",8,1,0.26,631,"0.2315","0.54534","0.54534" +"GO:0090063","positive regulation of microtubule nucle...",8,1,0.26,632,"0.2315","0.54534","0.54534" +"GO:0090224","regulation of spindle organization",8,1,0.26,633,"0.2315","0.54534","0.54534" +"GO:1903076","regulation of protein localization to pl...",5,0,0.16,2075,"1.0000","0.54536","0.54536" +"GO:1904375","regulation of protein localization to ce...",5,0,0.16,2076,"1.0000","0.54536","0.54536" +"GO:0019441","tryptophan catabolic process to kynureni...",3,0,0.1,2077,"1.0000","0.54537","0.54537" +"GO:0070189","kynurenine metabolic process",3,0,0.1,2078,"1.0000","0.54537","0.54537" +"GO:0009409","response to cold",3,0,0.1,2079,"1.0000","0.54607","0.54607" +"GO:0070193","synaptonemal complex organization",3,0,0.1,2080,"1.0000","0.54607","0.54607" +"GO:0070194","synaptonemal complex disassembly",3,0,0.1,2081,"1.0000","0.54607","0.54607" +"GO:1901894","regulation of calcium-transporting ATPas...",3,0,0.1,2082,"1.0000","0.54607","0.54607" +"GO:1901896","positive regulation of calcium-transport...",3,0,0.1,2083,"1.0000","0.54607","0.54607" +"GO:0006417","regulation of translation",28,0,0.91,2084,"1.0000","0.54615","0.54615" +"GO:0051017","actin filament bundle assembly",4,0,0.13,2085,"1.0000","0.54741","0.54741" +"GO:0061572","actin filament bundle organization",4,0,0.13,2086,"1.0000","0.54741","0.54741" +"GO:0032388","positive regulation of intracellular tra...",16,1,0.52,913,"0.4099","0.54851","0.54851" +"GO:0001745","compound eye morphogenesis",11,0,0.36,2087,"1.0000","0.54877","0.54877" +"GO:0010508","positive regulation of autophagy",4,0,0.13,2088,"1.0000","0.54903","0.54903" +"GO:0016239","positive regulation of macroautophagy",4,0,0.13,2089,"1.0000","0.54903","0.54903" +"GO:0009991","response to extracellular stimulus",38,2,1.23,832,"0.3497","0.54992","0.54992" +"GO:0031667","response to nutrient levels",38,2,1.23,833,"0.3497","0.54992","0.54992" +"GO:0001818","negative regulation of cytokine producti...",3,1,0.1,253,"0.0940","0.55004","0.55004" +"GO:0043393","regulation of protein binding",12,0,0.39,2090,"1.0000","0.55069","0.55069" +"GO:0007219","Notch signaling pathway",13,1,0.42,817,"0.3484","0.55101","0.55101" +"GO:0007127","meiosis I",8,0,0.26,2091,"1.0000","0.55223","0.55223" +"GO:0046902","regulation of mitochondrial membrane per...",5,1,0.16,450,"0.1517","0.55244","0.55244" +"GO:0034655","nucleobase-containing compound catabolic...",54,2,1.75,1044,"0.5269","0.55275","0.55275" +"GO:0036473","cell death in response to oxidative stre...",17,2,0.55,308,"0.1028","0.55280","0.55280" +"GO:0090351","seedling development",3,0,0.1,2092,"1.0000","0.55450","0.55450" +"GO:0009583","detection of light stimulus",9,1,0.29,676,"0.2565","0.55511","0.55511" +"GO:0050953","sensory perception of light stimulus",17,2,0.55,309,"0.1028","0.55616","0.55616" +"GO:0045087","innate immune response",24,2,0.78,529,"0.1810","0.55644","0.55644" +"GO:0051347","positive regulation of transferase activ...",19,0,0.61,2093,"1.0000","0.55659","0.55659" +"GO:0008285","negative regulation of cell proliferatio...",27,1,0.87,1103,"0.5901","0.55709","0.55709" +"GO:0009581","detection of external stimulus",13,1,0.42,818,"0.3484","0.55721","0.55721" +"GO:0009582","detection of abiotic stimulus",13,1,0.42,819,"0.3484","0.55721","0.55721" +"GO:0060612","adipose tissue development",3,1,0.1,254,"0.0940","0.55778","0.55778" +"GO:0072659","protein localization to plasma membrane",9,1,0.29,677,"0.2565","0.55945","0.55945" +"GO:0048871","multicellular organismal homeostasis",17,1,0.55,938,"0.4291","0.56011","0.56011" +"GO:0006367","transcription initiation from RNA polyme...",14,0,0.45,2094,"1.0000","0.56014","0.56014" +"GO:0034614","cellular response to reactive oxygen spe...",18,2,0.58,324,"0.1133","0.56033","0.56033" +"GO:0048513","animal organ development",200,9,6.47,544,"0.1952","0.56075","0.56075" +"GO:0045862","positive regulation of proteolysis",22,2,0.71,479,"0.1577","0.56155","0.56155" +"GO:0009755","hormone-mediated signaling pathway",23,0,0.74,2095,"1.0000","0.56181","0.56181" +"GO:0071806","protein transmembrane transport",24,2,0.78,530,"0.1810","0.56243","0.56243" +"GO:0000302","response to reactive oxygen species",21,2,0.68,419,"0.1463","0.56279","0.56279" +"GO:0002753","cytoplasmic pattern recognition receptor...",4,1,0.13,356,"0.1233","0.56284","0.56284" +"GO:1902108","regulation of mitochondrial membrane per...",4,1,0.13,357,"0.1233","0.56284","0.56284" +"GO:0030100","regulation of endocytosis",21,2,0.68,420,"0.1463","0.56341","0.56341" +"GO:0072006","nephron development",8,0,0.26,2096,"1.0000","0.56373","0.56373" +"GO:0051173","positive regulation of nitrogen compound...",128,3,4.14,1238,"0.7929","0.56374","0.56374" +"GO:0042303","molting cycle",6,0,0.19,2097,"1.0000","0.56440","0.56440" +"GO:0042633","hair cycle",6,0,0.19,2098,"1.0000","0.56440","0.56440" +"GO:0071219","cellular response to molecule of bacteri...",6,0,0.19,2099,"1.0000","0.56440","0.56440" +"GO:0071222","cellular response to lipopolysaccharide",6,0,0.19,2100,"1.0000","0.56440","0.56440" +"GO:0006333","chromatin assembly or disassembly",14,0,0.45,2101,"1.0000","0.56472","0.56472" +"GO:0030099","myeloid cell differentiation",10,2,0.32,53,"0.0393","0.56502","0.56502" +"GO:0045665","negative regulation of neuron differenti...",10,2,0.32,54,"0.0393","0.56502","0.56502" +"GO:0048732","gland development",10,1,0.32,719,"0.2806","0.56528","0.56528" +"GO:0002831","regulation of response to biotic stimulu...",6,0,0.19,2102,"1.0000","0.56673","0.56673" +"GO:0000077","DNA damage checkpoint",9,0,0.29,2103,"1.0000","0.56759","0.56759" +"GO:0030517","negative regulation of axon extension",3,0,0.1,2104,"1.0000","0.56788","0.56788" +"GO:0042755","eating behavior",3,0,0.1,2105,"1.0000","0.56788","0.56788" +"GO:0071900","regulation of protein serine/threonine k...",16,0,0.52,2106,"1.0000","0.56806","0.56806" +"GO:0007568","aging",34,2,1.1,736,"0.3016","0.56819","0.56819" +"GO:0006739","NADP metabolic process",3,1,0.1,255,"0.0940","0.56835","0.56835" +"GO:0050730","regulation of peptidyl-tyrosine phosphor...",4,0,0.13,2107,"1.0000","0.56854","0.56854" +"GO:0050731","positive regulation of peptidyl-tyrosine...",4,0,0.13,2108,"1.0000","0.56854","0.56854" +"GO:0060326","cell chemotaxis",4,0,0.13,2109,"1.0000","0.56854","0.56854" +"GO:0043065","positive regulation of apoptotic process",21,0,0.68,2110,"1.0000","0.56902","0.56902" +"GO:1903320","regulation of protein modification by sm...",26,1,0.84,1090,"0.5762","0.56936","0.56936" +"GO:0042133","neurotransmitter metabolic process",9,0,0.29,2111,"1.0000","0.57004","0.57004" +"GO:0006486","protein glycosylation",49,2,1.58,995,"0.4748","0.57018","0.57018" +"GO:0043413","macromolecule glycosylation",49,2,1.58,996,"0.4748","0.57018","0.57018" +"GO:0070085","glycosylation",49,2,1.58,997,"0.4748","0.57018","0.57018" +"GO:0006403","RNA localization",24,0,0.78,2112,"1.0000","0.57044","0.57044" +"GO:0036337","Fas signaling pathway",3,0,0.1,2113,"1.0000","0.57164","0.57164" +"GO:0060312","regulation of blood vessel remodeling",3,0,0.1,2114,"1.0000","0.57164","0.57164" +"GO:1902041","regulation of extrinsic apoptotic signal...",3,0,0.1,2115,"1.0000","0.57164","0.57164" +"GO:1902042","negative regulation of extrinsic apoptot...",3,0,0.1,2116,"1.0000","0.57164","0.57164" +"GO:1902044","regulation of Fas signaling pathway",3,0,0.1,2117,"1.0000","0.57164","0.57164" +"GO:1902045","negative regulation of Fas signaling pat...",3,0,0.1,2118,"1.0000","0.57164","0.57164" +"GO:1903077","negative regulation of protein localizat...",3,0,0.1,2119,"1.0000","0.57164","0.57164" +"GO:1904376","negative regulation of protein localizat...",3,0,0.1,2120,"1.0000","0.57164","0.57164" +"GO:1905476","negative regulation of protein localizat...",3,0,0.1,2121,"1.0000","0.57164","0.57164" +"GO:2000504","positive regulation of blood vessel remo...",3,0,0.1,2122,"1.0000","0.57164","0.57164" +"GO:0035459","cargo loading into vesicle",3,1,0.1,256,"0.0940","0.57188","0.57188" +"GO:0035964","COPI-coated vesicle budding",3,1,0.1,257,"0.0940","0.57188","0.57188" +"GO:0048200","Golgi transport vesicle coating",3,1,0.1,258,"0.0940","0.57188","0.57188" +"GO:0048205","COPI coating of Golgi vesicle",3,1,0.1,259,"0.0940","0.57188","0.57188" +"GO:0048207","vesicle targeting, rough ER to cis-Golgi",3,1,0.1,260,"0.0940","0.57188","0.57188" +"GO:0048208","COPII vesicle coating",3,1,0.1,261,"0.0940","0.57188","0.57188" +"GO:0007314","oocyte anterior/posterior axis specifica...",3,0,0.1,2123,"1.0000","0.57211","0.57211" +"GO:0007351","tripartite regional subdivision",3,0,0.1,2124,"1.0000","0.57211","0.57211" +"GO:0008358","maternal determination of anterior/poste...",3,0,0.1,2125,"1.0000","0.57211","0.57211" +"GO:0008595","anterior/posterior axis specification, e...",3,0,0.1,2126,"1.0000","0.57211","0.57211" +"GO:0030713","ovarian follicle cell stalk formation",3,0,0.1,2127,"1.0000","0.57211","0.57211" +"GO:0032509","endosome transport via multivesicular bo...",3,0,0.1,2128,"1.0000","0.57211","0.57211" +"GO:0070086","ubiquitin-dependent endocytosis",3,0,0.1,2129,"1.0000","0.57211","0.57211" +"GO:0030149","sphingolipid catabolic process",7,1,0.23,572,"0.2058","0.57326","0.57326" +"GO:0046466","membrane lipid catabolic process",7,1,0.23,573,"0.2058","0.57326","0.57326" +"GO:2001141","regulation of RNA biosynthetic process",339,8,10.96,1275,"0.8740","0.57429","0.57429" +"GO:0021543","pallium development",7,0,0.23,2130,"1.0000","0.57434","0.57434" +"GO:0002084","protein depalmitoylation",4,1,0.13,358,"0.1233","0.57670","0.57670" +"GO:0042159","lipoprotein catabolic process",4,1,0.13,359,"0.1233","0.57670","0.57670" +"GO:0098734","macromolecule depalmitoylation",4,1,0.13,360,"0.1233","0.57670","0.57670" +"GO:0046755","viral budding",3,0,0.1,2131,"1.0000","0.57706","0.57706" +"GO:0019229","regulation of vasoconstriction",3,1,0.1,262,"0.0940","0.57753","0.57753" +"GO:0035872","nucleotide-binding domain, leucine rich ...",3,1,0.1,263,"0.0940","0.57753","0.57753" +"GO:0038034","signal transduction in absence of ligand",3,1,0.1,264,"0.0940","0.57753","0.57753" +"GO:0045906","negative regulation of vasoconstriction",3,1,0.1,265,"0.0940","0.57753","0.57753" +"GO:0046718","viral entry into host cell",3,1,0.1,266,"0.0940","0.57753","0.57753" +"GO:0070423","nucleotide-binding oligomerization domai...",3,1,0.1,267,"0.0940","0.57753","0.57753" +"GO:0070424","regulation of nucleotide-binding oligome...",3,1,0.1,268,"0.0940","0.57753","0.57753" +"GO:0070426","positive regulation of nucleotide-bindin...",3,1,0.1,269,"0.0940","0.57753","0.57753" +"GO:0070431","nucleotide-binding oligomerization domai...",3,1,0.1,270,"0.0940","0.57753","0.57753" +"GO:0070432","regulation of nucleotide-binding oligome...",3,1,0.1,271,"0.0940","0.57753","0.57753" +"GO:0070434","positive regulation of nucleotide-bindin...",3,1,0.1,272,"0.0940","0.57753","0.57753" +"GO:0097192","extrinsic apoptotic signaling pathway in...",3,1,0.1,273,"0.0940","0.57753","0.57753" +"GO:0097755","positive regulation of blood vessel diam...",3,1,0.1,274,"0.0940","0.57753","0.57753" +"GO:1901099","negative regulation of signal transducti...",3,1,0.1,275,"0.0940","0.57753","0.57753" +"GO:2001239","regulation of extrinsic apoptotic signal...",3,1,0.1,276,"0.0940","0.57753","0.57753" +"GO:2001240","negative regulation of extrinsic apoptot...",3,1,0.1,277,"0.0940","0.57753","0.57753" +"GO:0006399","tRNA metabolic process",84,3,2.72,1027,"0.5158","0.07353","0.57759" +"GO:0001764","neuron migration",3,1,0.1,278,"0.0940","0.57824","0.57824" +"GO:0008052","sensory organ boundary specification",3,1,0.1,279,"0.0940","0.57824","0.57824" +"GO:0010160","formation of animal organ boundary",3,1,0.1,280,"0.0940","0.57824","0.57824" +"GO:0016360","sensory organ precursor cell fate determ...",3,1,0.1,281,"0.0940","0.57824","0.57824" +"GO:0021536","diencephalon development",3,1,0.1,282,"0.0940","0.57824","0.57824" +"GO:0021781","glial cell fate commitment",3,1,0.1,283,"0.0940","0.57824","0.57824" +"GO:0032332","positive regulation of chondrocyte diffe...",3,1,0.1,284,"0.0940","0.57824","0.57824" +"GO:0048645","animal organ formation",3,1,0.1,285,"0.0940","0.57824","0.57824" +"GO:0048821","erythrocyte development",3,1,0.1,286,"0.0940","0.57824","0.57824" +"GO:0048859","formation of anatomical boundary",3,1,0.1,287,"0.0940","0.57824","0.57824" +"GO:0060581","cell fate commitment involved in pattern...",3,1,0.1,288,"0.0940","0.57824","0.57824" +"GO:0060582","cell fate determination involved in patt...",3,1,0.1,289,"0.0940","0.57824","0.57824" +"GO:0061036","positive regulation of cartilage develop...",3,1,0.1,290,"0.0940","0.57824","0.57824" +"GO:0072497","mesenchymal stem cell differentiation",3,1,0.1,291,"0.0940","0.57824","0.57824" +"GO:2000738","positive regulation of stem cell differe...",3,1,0.1,292,"0.0940","0.57824","0.57824" +"GO:2000739","regulation of mesenchymal stem cell diff...",3,1,0.1,293,"0.0940","0.57824","0.57824" +"GO:2000741","positive regulation of mesenchymal stem ...",3,1,0.1,294,"0.0940","0.57824","0.57824" +"GO:2001222","regulation of neuron migration",3,1,0.1,295,"0.0940","0.57824","0.57824" +"GO:0019362","pyridine nucleotide metabolic process",11,1,0.36,750,"0.3039","0.57825","0.57825" +"GO:0046496","nicotinamide nucleotide metabolic proces...",11,1,0.36,751,"0.3039","0.57825","0.57825" +"GO:0007608","sensory perception of smell",12,2,0.39,125,"0.0553","0.57845","0.57845" +"GO:0010656","negative regulation of muscle cell apopt...",12,2,0.39,126,"0.0553","0.57845","0.57845" +"GO:0010657","muscle cell apoptotic process",12,2,0.39,127,"0.0553","0.57845","0.57845" +"GO:0010658","striated muscle cell apoptotic process",12,2,0.39,128,"0.0553","0.57845","0.57845" +"GO:0010659","cardiac muscle cell apoptotic process",12,2,0.39,129,"0.0553","0.57845","0.57845" +"GO:0010660","regulation of muscle cell apoptotic proc...",12,2,0.39,130,"0.0553","0.57845","0.57845" +"GO:0010662","regulation of striated muscle cell apopt...",12,2,0.39,131,"0.0553","0.57845","0.57845" +"GO:0010664","negative regulation of striated muscle c...",12,2,0.39,132,"0.0553","0.57845","0.57845" +"GO:0010665","regulation of cardiac muscle cell apopto...",12,2,0.39,133,"0.0553","0.57845","0.57845" +"GO:0010667","negative regulation of cardiac muscle ce...",12,2,0.39,134,"0.0553","0.57845","0.57845" +"GO:0061083","regulation of protein refolding",12,2,0.39,135,"0.0553","0.57845","0.57845" +"GO:0035151","regulation of tube size, open tracheal s...",3,1,0.1,296,"0.0940","0.57894","0.57894" +"GO:0035152","regulation of tube architecture, open tr...",3,1,0.1,297,"0.0940","0.57894","0.57894" +"GO:0006357","regulation of transcription by RNA polym...",95,4,3.07,848,"0.3695","0.57990","0.57990" +"GO:0090287","regulation of cellular response to growt...",16,2,0.52,220,"0.0926","0.58032","0.58032" +"GO:0098655","cation transmembrane transport",46,2,1.49,955,"0.4420","0.58071","0.58071" +"GO:0044282","small molecule catabolic process",28,2,0.91,609,"0.2288","0.58074","0.58074" +"GO:0043484","regulation of RNA splicing",16,2,0.52,221,"0.0926","0.58113","0.58113" +"GO:0050764","regulation of phagocytosis",16,2,0.52,222,"0.0926","0.58113","0.58113" +"GO:0051261","protein depolymerization",16,2,0.52,223,"0.0926","0.58113","0.58113" +"GO:1901698","response to nitrogen compound",58,0,1.88,2132,"1.0000","0.58220","0.58220" +"GO:0016266","O-glycan processing",5,1,0.16,451,"0.1517","0.58341","0.58341" +"GO:0021766","hippocampus development",3,0,0.1,2133,"1.0000","0.58342","0.58342" +"GO:0042220","response to cocaine",3,0,0.1,2134,"1.0000","0.58342","0.58342" +"GO:0045109","intermediate filament organization",3,0,0.1,2135,"1.0000","0.58342","0.58342" +"GO:1902074","response to salt",3,0,0.1,2136,"1.0000","0.58342","0.58342" +"GO:0051960","regulation of nervous system development",47,5,1.52,18,"0.0167","0.58394","0.58394" +"GO:0044273","sulfur compound catabolic process",5,0,0.16,2137,"1.0000","0.58450","0.58450" +"GO:0051924","regulation of calcium ion transport",10,0,0.32,2138,"1.0000","0.58491","0.58491" +"GO:0002252","immune effector process",27,2,0.87,597,"0.2167","0.58552","0.58552" +"GO:0030198","extracellular matrix organization",15,0,0.49,2139,"1.0000","0.58559","0.58559" +"GO:0043062","extracellular structure organization",15,0,0.49,2140,"1.0000","0.58559","0.58559" +"GO:0006040","amino sugar metabolic process",33,1,1.07,1160,"0.6641","0.58610","0.58610" +"GO:0000079","regulation of cyclin-dependent protein s...",7,0,0.23,2141,"1.0000","0.58623","0.58623" +"GO:0007417","central nervous system development",67,4,2.17,494,"0.1696","0.58710","0.58710" +"GO:0055114","oxidation-reduction process",163,6,5.27,947,"0.4336","0.58799","0.58799" +"GO:0035966","response to topologically incorrect prot...",25,1,0.81,1072,"0.5619","0.58919","0.58919" +"GO:0072009","nephron epithelium development",7,0,0.23,2142,"1.0000","0.58947","0.58947" +"GO:0072073","kidney epithelium development",7,0,0.23,2143,"1.0000","0.58947","0.58947" +"GO:1903506","regulation of nucleic acid-templated tra...",338,8,10.93,1274,"0.8719","0.58959","0.58959" +"GO:0051098","regulation of binding",15,0,0.49,2144,"1.0000","0.58992","0.58992" +"GO:0052547","regulation of peptidase activity",15,1,0.49,887,"0.3901","0.59003","0.59003" +"GO:0009063","cellular amino acid catabolic process",13,2,0.42,158,"0.0641","0.59073","0.59073" +"GO:0000209","protein polyubiquitination",25,0,0.81,2145,"1.0000","0.59083","0.59083" +"GO:0007249","I-kappaB kinase/NF-kappaB signaling",9,0,0.29,2146,"1.0000","0.59115","0.59115" +"GO:0043122","regulation of I-kappaB kinase/NF-kappaB ...",9,0,0.29,2147,"1.0000","0.59115","0.59115" +"GO:0030317","flagellated sperm motility",4,0,0.13,2148,"1.0000","0.59140","0.59140" +"GO:0097722","sperm motility",4,0,0.13,2149,"1.0000","0.59140","0.59140" +"GO:0019058","viral life cycle",23,2,0.74,490,"0.1693","0.59142","0.59142" +"GO:0090169","regulation of spindle assembly",7,1,0.23,574,"0.2058","0.59163","0.59163" +"GO:1901673","regulation of mitotic spindle assembly",7,1,0.23,575,"0.2058","0.59163","0.59163" +"GO:0043648","dicarboxylic acid metabolic process",10,1,0.32,720,"0.2806","0.59241","0.59241" +"GO:0051443","positive regulation of ubiquitin-protein...",3,0,0.1,2150,"1.0000","0.59262","0.59262" +"GO:0097164","ammonium ion metabolic process",17,0,0.55,2151,"1.0000","0.59362","0.59362" +"GO:0042542","response to hydrogen peroxide",19,2,0.61,397,"0.1241","0.59467","0.59467" +"GO:2000278","regulation of DNA biosynthetic process",6,0,0.19,2152,"1.0000","0.59674","0.59674" +"GO:0009124","nucleoside monophosphate biosynthetic pr...",25,1,0.81,1073,"0.5619","0.59682","0.59682" +"GO:0009127","purine nucleoside monophosphate biosynth...",25,1,0.81,1074,"0.5619","0.59682","0.59682" +"GO:0009156","ribonucleoside monophosphate biosyntheti...",25,1,0.81,1075,"0.5619","0.59682","0.59682" +"GO:0009168","purine ribonucleoside monophosphate bios...",25,1,0.81,1076,"0.5619","0.59682","0.59682" +"GO:0006165","nucleoside diphosphate phosphorylation",8,0,0.26,2153,"1.0000","0.59723","0.59723" +"GO:0009719","response to endogenous stimulus",84,4,2.72,730,"0.2876","0.59745","0.59745" +"GO:0001894","tissue homeostasis",16,1,0.52,914,"0.4099","0.59751","0.59751" +"GO:0051241","negative regulation of multicellular org...",34,4,1.1,31,"0.0227","0.59902","0.59902" +"GO:1901137","carbohydrate derivative biosynthetic pro...",103,4,3.33,928,"0.4290","0.29861","0.59981" +"GO:0050908","detection of light stimulus involved in ...",3,0,0.1,2154,"1.0000","0.59994","0.59994" +"GO:0050962","detection of light stimulus involved in ...",3,0,0.1,2155,"1.0000","0.59994","0.59994" +"GO:0030029","actin filament-based process",50,0,1.62,2156,"1.0000","0.60016","0.60016" +"GO:0009109","coenzyme catabolic process",4,0,0.13,2157,"1.0000","0.60040","0.60040" +"GO:0032787","monocarboxylic acid metabolic process",35,2,1.13,766,"0.3137","0.60108","0.60108" +"GO:1903008","organelle disassembly",6,0,0.19,2158,"1.0000","0.60108","0.60108" +"GO:0032330","regulation of chondrocyte differentiatio...",4,1,0.13,361,"0.1233","0.60121","0.60121" +"GO:0061035","regulation of cartilage development",4,1,0.13,362,"0.1233","0.60121","0.60121" +"GO:0031016","pancreas development",4,0,0.13,2159,"1.0000","0.60121","0.60121" +"GO:0045445","myoblast differentiation",4,0,0.13,2160,"1.0000","0.60121","0.60121" +"GO:0045661","regulation of myoblast differentiation",4,0,0.13,2161,"1.0000","0.60121","0.60121" +"GO:0045662","negative regulation of myoblast differen...",4,0,0.13,2162,"1.0000","0.60121","0.60121" +"GO:0055006","cardiac cell development",4,0,0.13,2163,"1.0000","0.60121","0.60121" +"GO:2000243","positive regulation of reproductive proc...",4,0,0.13,2164,"1.0000","0.60121","0.60121" +"GO:0009584","detection of visible light",5,0,0.16,2165,"1.0000","0.60224","0.60224" +"GO:0015893","drug transport",14,0,0.45,2166,"1.0000","0.60297","0.60297" +"GO:0006355","regulation of transcription, DNA-templat...",337,8,10.9,1272,"0.8698","0.60496","0.60496" +"GO:0046677","response to antibiotic",29,2,0.94,646,"0.2409","0.60496","0.60496" +"GO:1902626","assembly of large subunit precursor of p...",3,0,0.1,2167,"1.0000","0.60537","0.60537" +"GO:0071027","nuclear RNA surveillance",3,0,0.1,2168,"1.0000","0.60584","0.60584" +"GO:0006629","lipid metabolic process",141,8,4.56,204,"0.0832","0.60642","0.60642" +"GO:0006584","catecholamine metabolic process",3,0,0.1,2169,"1.0000","0.60655","0.60655" +"GO:0008286","insulin receptor signaling pathway",3,0,0.1,2170,"1.0000","0.60655","0.60655" +"GO:0008344","adult locomotory behavior",3,0,0.1,2171,"1.0000","0.60655","0.60655" +"GO:0009712","catechol-containing compound metabolic p...",3,0,0.1,2172,"1.0000","0.60655","0.60655" +"GO:0014065","phosphatidylinositol 3-kinase signaling",3,0,0.1,2173,"1.0000","0.60655","0.60655" +"GO:0042417","dopamine metabolic process",3,0,0.1,2174,"1.0000","0.60655","0.60655" +"GO:0048015","phosphatidylinositol-mediated signaling",3,0,0.1,2175,"1.0000","0.60655","0.60655" +"GO:0048017","inositol lipid-mediated signaling",3,0,0.1,2176,"1.0000","0.60655","0.60655" +"GO:1902175","regulation of oxidative stress-induced i...",3,0,0.1,2177,"1.0000","0.60655","0.60655" +"GO:1902176","negative regulation of oxidative stress-...",3,0,0.1,2178,"1.0000","0.60655","0.60655" +"GO:2001244","positive regulation of intrinsic apoptot...",3,0,0.1,2179,"1.0000","0.60655","0.60655" +"GO:0030520","intracellular estrogen receptor signalin...",4,0,0.13,2180,"1.0000","0.60694","0.60694" +"GO:0033146","regulation of intracellular estrogen rec...",4,0,0.13,2181,"1.0000","0.60694","0.60694" +"GO:0061178","regulation of insulin secretion involved...",4,0,0.13,2182,"1.0000","0.60694","0.60694" +"GO:0071569","protein ufmylation",4,0,0.13,2183,"1.0000","0.60694","0.60694" +"GO:1990564","protein polyufmylation",4,0,0.13,2184,"1.0000","0.60694","0.60694" +"GO:1990592","protein K69-linked ufmylation",4,0,0.13,2185,"1.0000","0.60694","0.60694" +"GO:0090305","nucleic acid phosphodiester bond hydroly...",18,0,0.58,2186,"1.0000","0.60720","0.60720" +"GO:0006189","'de novo' IMP biosynthetic process",3,0,0.1,2187,"1.0000","0.60749","0.60749" +"GO:0060284","regulation of cell development",49,5,1.58,28,"0.0197","0.60764","0.60764" +"GO:0050982","detection of mechanical stimulus",4,0,0.13,2188,"1.0000","0.60776","0.60776" +"GO:0016331","morphogenesis of embryonic epithelium",11,2,0.36,97,"0.0471","0.60786","0.60786" +"GO:0048584","positive regulation of response to stimu...",97,5,3.14,548,"0.2032","0.41342","0.60819" +"GO:0051252","regulation of RNA metabolic process",355,8,11.48,1283,"0.9039","0.60836","0.60836" +"GO:0022607","cellular component assembly",232,7,7.5,1136,"0.6341","0.43940","0.60989" +"GO:0070848","response to growth factor",27,3,0.87,103,"0.0547","0.60992","0.60992" +"GO:0019219","regulation of nucleobase-containing comp...",372,9,12.03,1271,"0.8683","0.61035","0.61035" +"GO:0000462","maturation of SSU-rRNA from tricistronic...",3,0,0.1,2189,"1.0000","0.61056","0.61056" +"GO:1901214","regulation of neuron death",14,0,0.45,2190,"1.0000","0.61064","0.61064" +"GO:0008334","histone mRNA metabolic process",4,0,0.13,2191,"1.0000","0.61103","0.61103" +"GO:0034453","microtubule anchoring",3,0,0.1,2192,"1.0000","0.61127","0.61127" +"GO:1901652","response to peptide",13,0,0.42,2193,"1.0000","0.61220","0.61220" +"GO:0008089","anterograde axonal transport",3,0,0.1,2194,"1.0000","0.61292","0.61292" +"GO:0043009","chordate embryonic development",44,2,1.42,922,"0.4195","0.61339","0.61339" +"GO:0046890","regulation of lipid biosynthetic process",7,1,0.23,576,"0.2058","0.61437","0.61437" +"GO:0048701","embryonic cranial skeleton morphogenesis",5,0,0.16,2195,"1.0000","0.61449","0.61449" +"GO:0048704","embryonic skeletal system morphogenesis",5,0,0.16,2196,"1.0000","0.61449","0.61449" +"GO:0009725","response to hormone",69,2,2.23,1155,"0.6614","0.61474","0.61474" +"GO:0007600","sensory perception",41,4,1.33,57,"0.0417","0.61497","0.61497" +"GO:0006066","alcohol metabolic process",14,1,0.45,857,"0.3696","0.61524","0.61524" +"GO:0090066","regulation of anatomical structure size",41,3,1.33,414,"0.1452","0.61587","0.61587" +"GO:0009142","nucleoside triphosphate biosynthetic pro...",22,0,0.71,2197,"1.0000","0.61604","0.61604" +"GO:0009201","ribonucleoside triphosphate biosynthetic...",22,0,0.71,2198,"1.0000","0.61604","0.61604" +"GO:0072593","reactive oxygen species metabolic proces...",10,1,0.32,721,"0.2806","0.61675","0.61675" +"GO:0006672","ceramide metabolic process",4,1,0.13,363,"0.1233","0.61675","0.61675" +"GO:0002097","tRNA wobble base modification",9,0,0.29,2199,"1.0000","0.61761","0.61761" +"GO:0002098","tRNA wobble uridine modification",9,0,0.29,2200,"1.0000","0.61761","0.61761" +"GO:0060560","developmental growth involved in morphog...",14,1,0.45,858,"0.3696","0.61830","0.61830" +"GO:0014074","response to purine-containing compound",9,0,0.29,2201,"1.0000","0.61871","0.61871" +"GO:0042063","gliogenesis",11,1,0.36,752,"0.3039","0.61872","0.61872" +"GO:1902749","regulation of cell cycle G2/M phase tran...",10,0,0.32,2202,"1.0000","0.61907","0.61907" +"GO:0051225","spindle assembly",13,2,0.42,159,"0.0641","0.62026","0.62026" +"GO:0043405","regulation of MAP kinase activity",5,0,0.16,2203,"1.0000","0.62035","0.62035" +"GO:0010799","regulation of peptidyl-threonine phospho...",3,0,0.1,2204,"1.0000","0.62094","0.62094" +"GO:0010800","positive regulation of peptidyl-threonin...",3,0,0.1,2205,"1.0000","0.62094","0.62094" +"GO:0018107","peptidyl-threonine phosphorylation",3,0,0.1,2206,"1.0000","0.62094","0.62094" +"GO:0070988","demethylation",9,0,0.29,2207,"1.0000","0.62416","0.62416" +"GO:1903146","regulation of autophagy of mitochondrion",3,0,0.1,2208,"1.0000","0.62472","0.62472" +"GO:0006641","triglyceride metabolic process",3,0,0.1,2209,"1.0000","0.62519","0.62519" +"GO:0010896","regulation of triglyceride catabolic pro...",3,0,0.1,2210,"1.0000","0.62519","0.62519" +"GO:0010898","positive regulation of triglyceride cata...",3,0,0.1,2211,"1.0000","0.62519","0.62519" +"GO:0019433","triglyceride catabolic process",3,0,0.1,2212,"1.0000","0.62519","0.62519" +"GO:0050996","positive regulation of lipid catabolic p...",3,0,0.1,2213,"1.0000","0.62519","0.62519" +"GO:0090207","regulation of triglyceride metabolic pro...",3,0,0.1,2214,"1.0000","0.62519","0.62519" +"GO:0090208","positive regulation of triglyceride meta...",3,0,0.1,2215,"1.0000","0.62519","0.62519" +"GO:1903432","regulation of TORC1 signaling",3,0,0.1,2216,"1.0000","0.62519","0.62519" +"GO:0033157","regulation of intracellular protein tran...",19,1,0.61,980,"0.4656","0.62551","0.62551" +"GO:0030036","actin cytoskeleton organization",48,0,1.55,2217,"1.0000","0.62686","0.62686" +"GO:0000731","DNA synthesis involved in DNA repair",3,0,0.1,2218,"1.0000","0.62731","0.62731" +"GO:0019985","translesion synthesis",3,0,0.1,2219,"1.0000","0.62731","0.62731" +"GO:0048705","skeletal system morphogenesis",8,0,0.26,2220,"1.0000","0.62732","0.62732" +"GO:0048706","embryonic skeletal system development",8,0,0.26,2221,"1.0000","0.62732","0.62732" +"GO:1902904","negative regulation of supramolecular fi...",17,2,0.55,310,"0.1028","0.62831","0.62831" +"GO:0048872","homeostasis of number of cells",12,2,0.39,136,"0.0553","0.62855","0.62855" +"GO:0051028","mRNA transport",13,0,0.42,2222,"1.0000","0.62855","0.62855" +"GO:0003300","cardiac muscle hypertrophy",3,0,0.1,2223,"1.0000","0.62896","0.62896" +"GO:0014897","striated muscle hypertrophy",3,0,0.1,2224,"1.0000","0.62896","0.62896" +"GO:0035994","response to muscle stretch",3,0,0.1,2225,"1.0000","0.62896","0.62896" +"GO:0035690","cellular response to drug",23,2,0.74,491,"0.1693","0.62905","0.62905" +"GO:0060688","regulation of morphogenesis of a branchi...",6,0,0.19,2226,"1.0000","0.62946","0.62946" +"GO:0009226","nucleotide-sugar biosynthetic process",5,0,0.16,2227,"1.0000","0.62967","0.62967" +"GO:0042446","hormone biosynthetic process",3,0,0.1,2228,"1.0000","0.62991","0.62991" +"GO:0051899","membrane depolarization",5,0,0.16,2229,"1.0000","0.63021","0.63021" +"GO:0015800","acidic amino acid transport",3,0,0.1,2230,"1.0000","0.63061","0.63061" +"GO:0016071","mRNA metabolic process",100,3,3.23,1137,"0.6357","0.33863","0.63069" +"GO:1901661","quinone metabolic process",8,0,0.26,2231,"1.0000","0.63194","0.63194" +"GO:0051181","cofactor transport",5,0,0.16,2232,"1.0000","0.63222","0.63222" +"GO:0090151","establishment of protein localization to...",5,0,0.16,2233,"1.0000","0.63222","0.63222" +"GO:0008033","tRNA processing",53,2,1.71,1035,"0.5167","0.63358","0.63358" +"GO:0048749","compound eye development",12,0,0.39,2234,"1.0000","0.63469","0.63469" +"GO:0010639","negative regulation of organelle organiz...",19,1,0.61,981,"0.4656","0.63528","0.63528" +"GO:0042326","negative regulation of phosphorylation",21,1,0.68,1024,"0.4999","0.63537","0.63537" +"GO:0050679","positive regulation of epithelial cell p...",4,0,0.13,2235,"1.0000","0.63555","0.63555" +"GO:0043085","positive regulation of catalytic activit...",59,3,1.91,732,"0.2977","0.63580","0.63580" +"GO:0016053","organic acid biosynthetic process",29,2,0.94,647,"0.2409","0.63651","0.63651" +"GO:0046394","carboxylic acid biosynthetic process",29,2,0.94,648,"0.2409","0.63651","0.63651" +"GO:0034728","nucleosome organization",13,0,0.42,2236,"1.0000","0.63853","0.63853" +"GO:0033866","nucleoside bisphosphate biosynthetic pro...",4,0,0.13,2237,"1.0000","0.63881","0.63881" +"GO:0034030","ribonucleoside bisphosphate biosynthetic...",4,0,0.13,2238,"1.0000","0.63881","0.63881" +"GO:0034033","purine nucleoside bisphosphate biosynthe...",4,0,0.13,2239,"1.0000","0.63881","0.63881" +"GO:0007399","nervous system development",153,9,4.95,139,"0.0566","0.63903","0.63903" +"GO:0042742","defense response to bacterium",12,1,0.39,789,"0.3265","0.64082","0.64082" +"GO:0006497","protein lipidation",17,0,0.55,2240,"1.0000","0.64110","0.64110" +"GO:0042158","lipoprotein biosynthetic process",17,0,0.55,2241,"1.0000","0.64110","0.64110" +"GO:1900034","regulation of cellular response to heat",11,1,0.36,753,"0.3039","0.64128","0.64128" +"GO:0015985","energy coupled proton transport, down el...",10,0,0.32,2242,"1.0000","0.64182","0.64182" +"GO:0015986","ATP synthesis coupled proton transport",10,0,0.32,2243,"1.0000","0.64182","0.64182" +"GO:0010033","response to organic substance",160,5,5.18,1111,"0.5984","0.64271","0.64271" +"GO:0007166","cell surface receptor signaling pathway",105,5,3.4,655,"0.2510","0.64276","0.64276" +"GO:0016180","snRNA processing",7,0,0.23,2244,"1.0000","0.64355","0.64355" +"GO:0006777","Mo-molybdopterin cofactor biosynthetic p...",3,0,0.1,2245,"1.0000","0.64404","0.64404" +"GO:0019720","Mo-molybdopterin cofactor metabolic proc...",3,0,0.1,2246,"1.0000","0.64404","0.64404" +"GO:0043545","molybdopterin cofactor metabolic process",3,0,0.1,2247,"1.0000","0.64404","0.64404" +"GO:0051189","prosthetic group metabolic process",3,0,0.1,2248,"1.0000","0.64404","0.64404" +"GO:0009967","positive regulation of signal transducti...",65,3,2.1,840,"0.3517","0.64450","0.64450" +"GO:0055080","cation homeostasis",27,0,0.87,2249,"1.0000","0.64503","0.64503" +"GO:0098771","inorganic ion homeostasis",27,0,0.87,2250,"1.0000","0.64503","0.64503" +"GO:0006413","translational initiation",16,0,0.52,2251,"1.0000","0.64582","0.64582" +"GO:0007179","transforming growth factor beta receptor...",10,1,0.32,722,"0.2806","0.64775","0.64775" +"GO:0048646","anatomical structure formation involved ...",59,2,1.91,1086,"0.5754","0.64828","0.64828" +"GO:0001776","leukocyte homeostasis",3,0,0.1,2252,"1.0000","0.64874","0.64874" +"GO:0002244","hematopoietic progenitor cell differenti...",3,0,0.1,2253,"1.0000","0.64874","0.64874" +"GO:0002260","lymphocyte homeostasis",3,0,0.1,2254,"1.0000","0.64874","0.64874" +"GO:0031958","corticosteroid receptor signaling pathwa...",3,0,0.1,2255,"1.0000","0.64874","0.64874" +"GO:0042921","glucocorticoid receptor signaling pathwa...",3,0,0.1,2256,"1.0000","0.64874","0.64874" +"GO:0098660","inorganic ion transmembrane transport",38,1,1.23,1199,"0.7156","0.64912","0.64912" +"GO:0010951","negative regulation of endopeptidase act...",9,1,0.29,678,"0.2565","0.64988","0.64988" +"GO:0043154","negative regulation of cysteine-type end...",9,1,0.29,679,"0.2565","0.64988","0.64988" +"GO:2000117","negative regulation of cysteine-type end...",9,1,0.29,680,"0.2565","0.64988","0.64988" +"GO:0051345","positive regulation of hydrolase activit...",29,2,0.94,649,"0.2409","0.65027","0.65027" +"GO:0006801","superoxide metabolic process",3,0,0.1,2257,"1.0000","0.65062","0.65062" +"GO:0048709","oligodendrocyte differentiation",6,1,0.19,512,"0.1792","0.65077","0.65077" +"GO:0008584","male gonad development",6,0,0.19,2258,"1.0000","0.65077","0.65077" +"GO:0019933","cAMP-mediated signaling",6,0,0.19,2259,"1.0000","0.65077","0.65077" +"GO:0019935","cyclic-nucleotide-mediated signaling",6,0,0.19,2260,"1.0000","0.65077","0.65077" +"GO:0046546","development of primary male sexual chara...",6,0,0.19,2261,"1.0000","0.65077","0.65077" +"GO:0030490","maturation of SSU-rRNA",4,0,0.13,2262,"1.0000","0.65103","0.65103" +"GO:0007052","mitotic spindle organization",12,1,0.39,790,"0.3265","0.65118","0.65118" +"GO:0021537","telencephalon development",8,0,0.26,2263,"1.0000","0.65270","0.65270" +"GO:0006140","regulation of nucleotide metabolic proce...",8,0,0.26,2264,"1.0000","0.65270","0.65270" +"GO:0071216","cellular response to biotic stimulus",8,0,0.26,2265,"1.0000","0.65270","0.65270" +"GO:1900542","regulation of purine nucleotide metaboli...",8,0,0.26,2266,"1.0000","0.65270","0.65270" +"GO:0034762","regulation of transmembrane transport",19,1,0.61,982,"0.4656","0.65289","0.65289" +"GO:0042221","response to chemical",236,7,7.63,1146,"0.6524","0.65348","0.65348" +"GO:0007062","sister chromatid cohesion",8,0,0.26,2267,"1.0000","0.65385","0.65385" +"GO:1990823","response to leukemia inhibitory factor",4,0,0.13,2268,"1.0000","0.65428","0.65428" +"GO:1990830","cellular response to leukemia inhibitory...",4,0,0.13,2269,"1.0000","0.65428","0.65428" +"GO:0010646","regulation of cell communication",162,6,5.24,927,"0.4277","0.65430","0.65430" +"GO:0070997","neuron death",15,0,0.49,2270,"1.0000","0.65656","0.65656" +"GO:0006970","response to osmotic stress",8,0,0.26,2271,"1.0000","0.65730","0.65730" +"GO:0007291","sperm individualization",5,0,0.16,2272,"1.0000","0.65772","0.65772" +"GO:0007349","cellularization",5,0,0.16,2273,"1.0000","0.65772","0.65772" +"GO:0000245","spliceosomal complex assembly",5,0,0.16,2274,"1.0000","0.65827","0.65827" +"GO:0006612","protein targeting to membrane",7,0,0.23,2275,"1.0000","0.65862","0.65862" +"GO:0045185","maintenance of protein location",5,0,0.16,2276,"1.0000","0.65863","0.65863" +"GO:0003254","regulation of membrane depolarization",3,0,0.1,2277,"1.0000","0.65906","0.65906" +"GO:0010522","regulation of calcium ion transport into...",3,0,0.1,2278,"1.0000","0.65906","0.65906" +"GO:0060401","cytosolic calcium ion transport",3,0,0.1,2279,"1.0000","0.65906","0.65906" +"GO:0060402","calcium ion transport into cytosol",3,0,0.1,2280,"1.0000","0.65906","0.65906" +"GO:0051130","positive regulation of cellular componen...",78,3,2.52,991,"0.4659","0.65971","0.65971" +"GO:0018200","peptidyl-glutamic acid modification",3,0,0.1,2281,"1.0000","0.66000","0.66000" +"GO:0007606","sensory perception of chemical stimulus",15,2,0.49,199,"0.0827","0.66002","0.66002" +"GO:1901617","organic hydroxy compound biosynthetic pr...",11,1,0.36,754,"0.3039","0.66067","0.66067" +"GO:0009132","nucleoside diphosphate metabolic process",9,0,0.29,2282,"1.0000","0.66153","0.66153" +"GO:0070265","necrotic cell death",6,1,0.19,513,"0.1792","0.66238","0.66238" +"GO:1903828","negative regulation of cellular protein ...",12,0,0.39,2283,"1.0000","0.66244","0.66244" +"GO:0001817","regulation of cytokine production",15,2,0.49,200,"0.0827","0.66380","0.66380" +"GO:0009743","response to carbohydrate",11,0,0.36,2284,"1.0000","0.66459","0.66459" +"GO:0016973","poly(A)+ mRNA export from nucleus",4,0,0.13,2285,"1.0000","0.66483","0.66483" +"GO:1903578","regulation of ATP metabolic process",7,0,0.23,2286,"1.0000","0.66506","0.66506" +"GO:0008038","neuron recognition",11,1,0.36,755,"0.3039","0.66642","0.66642" +"GO:0071310","cellular response to organic substance",99,4,3.2,898,"0.3993","0.66646","0.66646" +"GO:0060348","bone development",6,0,0.19,2287,"1.0000","0.66668","0.66668" +"GO:1901215","negative regulation of neuron death",11,0,0.36,2288,"1.0000","0.66740","0.66740" +"GO:0006869","lipid transport",28,2,0.91,610,"0.2288","0.66743","0.66743" +"GO:0045137","development of primary sexual characteri...",16,0,0.52,2289,"1.0000","0.66779","0.66779" +"GO:0035148","tube formation",11,1,0.36,756,"0.3039","0.66826","0.66826" +"GO:0035303","regulation of dephosphorylation",11,1,0.36,757,"0.3039","0.66826","0.66826" +"GO:0031503","protein-containing complex localization",23,0,0.74,2290,"1.0000","0.66845","0.66845" +"GO:0045103","intermediate filament-based process",5,0,0.16,2291,"1.0000","0.66860","0.66860" +"GO:0045104","intermediate filament cytoskeleton organ...",5,0,0.16,2292,"1.0000","0.66860","0.66860" +"GO:0009200","deoxyribonucleoside triphosphate metabol...",3,0,0.1,2293,"1.0000","0.66865","0.66865" +"GO:0006915","apoptotic process",86,2,2.78,1233,"0.7753","0.66888","0.66888" +"GO:0022603","regulation of anatomical structure morph...",34,2,1.1,737,"0.3016","0.66928","0.66928" +"GO:0006406","mRNA export from nucleus",10,0,0.32,2294,"1.0000","0.67087","0.67087" +"GO:0071427","mRNA-containing ribonucleoprotein comple...",10,0,0.32,2295,"1.0000","0.67087","0.67087" +"GO:0007548","sex differentiation",20,0,0.65,2296,"1.0000","0.67104","0.67104" +"GO:0007076","mitotic chromosome condensation",3,0,0.1,2297,"1.0000","0.67145","0.67145" +"GO:0001841","neural tube formation",7,1,0.23,577,"0.2058","0.67256","0.67256" +"GO:0014020","primary neural tube formation",7,1,0.23,578,"0.2058","0.67256","0.67256" +"GO:0042430","indole-containing compound metabolic pro...",5,1,0.16,452,"0.1517","0.67348","0.67348" +"GO:0007032","endosome organization",3,0,0.1,2298,"1.0000","0.67401","0.67401" +"GO:0046148","pigment biosynthetic process",5,0,0.16,2299,"1.0000","0.67420","0.67420" +"GO:0001578","microtubule bundle formation",3,0,0.1,2300,"1.0000","0.67448","0.67448" +"GO:0060632","regulation of microtubule-based movement",3,0,0.1,2301,"1.0000","0.67448","0.67448" +"GO:0023051","regulation of signaling",164,6,5.3,948,"0.4395","0.67453","0.67453" +"GO:0006901","vesicle coating",4,1,0.13,364,"0.1233","0.67454","0.67454" +"GO:0061982","meiosis I cell cycle process",9,0,0.29,2302,"1.0000","0.67732","0.67732" +"GO:2001022","positive regulation of response to DNA d...",9,0,0.29,2303,"1.0000","0.67839","0.67839" +"GO:0008277","regulation of G protein-coupled receptor...",3,0,0.1,2304,"1.0000","0.67960","0.67960" +"GO:0070887","cellular response to chemical stimulus",119,4,3.85,1054,"0.5428","0.67972","0.67972" +"GO:0009119","ribonucleoside metabolic process",9,0,0.29,2305,"1.0000","0.00292","0.68087" +"GO:1902914","regulation of protein polyubiquitination",4,0,0.13,2306,"1.0000","0.68098","0.68098" +"GO:1902916","positive regulation of protein polyubiqu...",4,0,0.13,2307,"1.0000","0.68098","0.68098" +"GO:0003018","vascular process in circulatory system",4,1,0.13,365,"0.1233","0.68098","0.68098" +"GO:0030260","entry into host cell",4,1,0.13,366,"0.1233","0.68098","0.68098" +"GO:0030512","negative regulation of transforming grow...",4,1,0.13,367,"0.1233","0.68098","0.68098" +"GO:0032069","regulation of nuclease activity",4,1,0.13,368,"0.1233","0.68098","0.68098" +"GO:0032075","positive regulation of nuclease activity",4,1,0.13,369,"0.1233","0.68098","0.68098" +"GO:0032637","interleukin-8 production",4,1,0.13,370,"0.1233","0.68098","0.68098" +"GO:0032677","regulation of interleukin-8 production",4,1,0.13,371,"0.1233","0.68098","0.68098" +"GO:0032757","positive regulation of interleukin-8 pro...",4,1,0.13,372,"0.1233","0.68098","0.68098" +"GO:0035296","regulation of tube diameter",4,1,0.13,373,"0.1233","0.68098","0.68098" +"GO:0042310","vasoconstriction",4,1,0.13,374,"0.1233","0.68098","0.68098" +"GO:0044409","entry into host",4,1,0.13,375,"0.1233","0.68098","0.68098" +"GO:0045639","positive regulation of myeloid cell diff...",4,1,0.13,376,"0.1233","0.68098","0.68098" +"GO:0045648","positive regulation of erythrocyte diffe...",4,1,0.13,377,"0.1233","0.68098","0.68098" +"GO:0050880","regulation of blood vessel size",4,1,0.13,378,"0.1233","0.68098","0.68098" +"GO:0051806","entry into cell of other organism involv...",4,1,0.13,379,"0.1233","0.68098","0.68098" +"GO:0051828","entry into other organism involved in sy...",4,1,0.13,380,"0.1233","0.68098","0.68098" +"GO:0060699","regulation of endoribonuclease activity",4,1,0.13,381,"0.1233","0.68098","0.68098" +"GO:0060700","regulation of ribonuclease activity",4,1,0.13,382,"0.1233","0.68098","0.68098" +"GO:0070370","cellular heat acclimation",4,1,0.13,383,"0.1233","0.68098","0.68098" +"GO:0097201","negative regulation of transcription fro...",4,1,0.13,384,"0.1233","0.68098","0.68098" +"GO:0097746","regulation of blood vessel diameter",4,1,0.13,385,"0.1233","0.68098","0.68098" +"GO:0097756","negative regulation of blood vessel diam...",4,1,0.13,386,"0.1233","0.68098","0.68098" +"GO:1902380","positive regulation of endoribonuclease ...",4,1,0.13,387,"0.1233","0.68098","0.68098" +"GO:1903845","negative regulation of cellular response...",4,1,0.13,388,"0.1233","0.68098","0.68098" +"GO:0072523","purine-containing compound catabolic pro...",3,0,0.1,2308,"1.0000","0.68123","0.68123" +"GO:0046128","purine ribonucleoside metabolic process",7,0,0.23,2309,"1.0000","0.02789","0.68145" +"GO:0005976","polysaccharide metabolic process",6,0,0.19,2310,"1.0000","0.68152","0.68152" +"GO:0034637","cellular carbohydrate biosynthetic proce...",6,0,0.19,2311,"1.0000","0.68152","0.68152" +"GO:0044264","cellular polysaccharide metabolic proces...",6,0,0.19,2312,"1.0000","0.68152","0.68152" +"GO:0055085","transmembrane transport",212,11,6.86,190,"0.0776","0.68156","0.68156" +"GO:0040034","regulation of development, heterochronic",4,1,0.13,389,"0.1233","0.68179","0.68179" +"GO:0048663","neuron fate commitment",4,1,0.13,390,"0.1233","0.68179","0.68179" +"GO:0048708","astrocyte differentiation",4,1,0.13,391,"0.1233","0.68179","0.68179" +"GO:0012501","programmed cell death",94,3,3.04,1108,"0.5932","0.68204","0.68204" +"GO:0042493","response to drug",61,3,1.97,773,"0.3157","0.68209","0.68209" +"GO:0008630","intrinsic apoptotic signaling pathway in...",5,0,0.16,2313,"1.0000","0.68214","0.68214" +"GO:1902229","regulation of intrinsic apoptotic signal...",5,0,0.16,2314,"1.0000","0.68214","0.68214" +"GO:0019674","NAD metabolic process",3,0,0.1,2315,"1.0000","0.68216","0.68216" +"GO:0006826","iron ion transport",5,0,0.16,2316,"1.0000","0.68232","0.68232" +"GO:0016125","sterol metabolic process",4,1,0.13,392,"0.1233","0.68340","0.68340" +"GO:0016126","sterol biosynthetic process",4,1,0.13,393,"0.1233","0.68340","0.68340" +"GO:0006094","gluconeogenesis",5,1,0.16,453,"0.1517","0.68429","0.68429" +"GO:0019319","hexose biosynthetic process",5,1,0.16,454,"0.1517","0.68429","0.68429" +"GO:0046364","monosaccharide biosynthetic process",5,1,0.16,455,"0.1517","0.68429","0.68429" +"GO:0043433","negative regulation of DNA-binding trans...",5,0,0.16,2317,"1.0000","0.68447","0.68447" +"GO:0043628","ncRNA 3'-end processing",6,0,0.19,2318,"1.0000","0.68513","0.68513" +"GO:0006898","receptor-mediated endocytosis",7,0,0.23,2319,"1.0000","0.68535","0.68535" +"GO:0009108","coenzyme biosynthetic process",26,0,0.84,2320,"1.0000","0.68542","0.68542" +"GO:0060341","regulation of cellular localization",55,1,1.78,1262,"0.8388","0.68589","0.68589" +"GO:0003008","system process",82,6,2.65,98,"0.0475","0.68657","0.68657" +"GO:0010286","heat acclimation",5,1,0.16,456,"0.1517","0.68753","0.68753" +"GO:0010803","regulation of tumor necrosis factor-medi...",5,1,0.16,457,"0.1517","0.68753","0.68753" +"GO:1903265","positive regulation of tumor necrosis fa...",5,1,0.16,458,"0.1517","0.68753","0.68753" +"GO:0072347","response to anesthetic",7,1,0.23,579,"0.2058","0.68854","0.68854" +"GO:0072384","organelle transport along microtubule",7,0,0.23,2321,"1.0000","0.68854","0.68854" +"GO:0031398","positive regulation of protein ubiquitin...",16,0,0.52,2322,"1.0000","0.68878","0.68878" +"GO:1903322","positive regulation of protein modificat...",16,0,0.52,2323,"1.0000","0.68878","0.68878" +"GO:0043412","macromolecule modification",509,17,16.46,1012,"0.4847","0.61886","0.68900" +"GO:2000241","regulation of reproductive process",8,0,0.26,2324,"1.0000","0.68930","0.68930" +"GO:0043467","regulation of generation of precursor me...",9,0,0.29,2325,"1.0000","0.68939","0.68939" +"GO:0044281","small molecule metabolic process",272,14,8.8,100,"0.0520","0.33862","0.68971" +"GO:0008585","female gonad development",6,0,0.19,2326,"1.0000","0.69038","0.69038" +"GO:0009145","purine nucleoside triphosphate biosynthe...",21,0,0.68,2327,"1.0000","0.69059","0.69059" +"GO:0009206","purine ribonucleoside triphosphate biosy...",21,0,0.68,2328,"1.0000","0.69059","0.69059" +"GO:0032535","regulation of cellular component size",35,1,1.13,1179,"0.6857","0.69146","0.69146" +"GO:0006488","dolichol-linked oligosaccharide biosynth...",5,1,0.16,459,"0.1517","0.69147","0.69147" +"GO:0030431","sleep",3,0,0.1,2329,"1.0000","0.69235","0.69235" +"GO:0031018","endocrine pancreas development",3,0,0.1,2330,"1.0000","0.69235","0.69235" +"GO:0006090","pyruvate metabolic process",8,0,0.26,2331,"1.0000","0.69270","0.69270" +"GO:0019359","nicotinamide nucleotide biosynthetic pro...",8,0,0.26,2332,"1.0000","0.69270","0.69270" +"GO:0019363","pyridine nucleotide biosynthetic process",8,0,0.26,2333,"1.0000","0.69270","0.69270" +"GO:0072350","tricarboxylic acid metabolic process",14,0,0.45,2334,"1.0000","0.69280","0.69280" +"GO:0015748","organophosphate ester transport",4,0,0.13,2335,"1.0000","0.69303","0.69303" +"GO:0010921","regulation of phosphatase activity",10,1,0.32,723,"0.2806","0.69328","0.69328" +"GO:0032352","positive regulation of hormone metabolic...",3,0,0.1,2336,"1.0000","0.69443","0.69443" +"GO:0051125","regulation of actin nucleation",7,0,0.23,2337,"1.0000","0.69490","0.69490" +"GO:0051127","positive regulation of actin nucleation",7,0,0.23,2338,"1.0000","0.69490","0.69490" +"GO:0048881","mechanosensory lateral line system devel...",3,0,0.1,2339,"1.0000","0.69535","0.69535" +"GO:0048882","lateral line development",3,0,0.1,2340,"1.0000","0.69535","0.69535" +"GO:0048925","lateral line system development",3,0,0.1,2341,"1.0000","0.69535","0.69535" +"GO:0048731","system development",275,14,8.89,138,"0.0562","0.69598","0.69598" +"GO:0061418","regulation of transcription from RNA pol...",3,0,0.1,2342,"1.0000","0.69720","0.69720" +"GO:0019932","second-messenger-mediated signaling",13,0,0.42,2343,"1.0000","0.69770","0.69770" +"GO:0006732","coenzyme metabolic process",37,1,1.2,1196,"0.7060","0.69805","0.69805" +"GO:0035967","cellular response to topologically incor...",17,1,0.55,939,"0.4291","0.69855","0.69855" +"GO:0010669","epithelial structure maintenance",5,1,0.16,460,"0.1517","0.69916","0.69916" +"GO:0001657","ureteric bud development",5,0,0.16,2344,"1.0000","0.69916","0.69916" +"GO:0001658","branching involved in ureteric bud morph...",5,0,0.16,2345,"1.0000","0.69916","0.69916" +"GO:0001823","mesonephros development",5,0,0.16,2346,"1.0000","0.69916","0.69916" +"GO:0007173","epidermal growth factor receptor signali...",5,0,0.16,2347,"1.0000","0.69916","0.69916" +"GO:0038127","ERBB signaling pathway",5,0,0.16,2348,"1.0000","0.69916","0.69916" +"GO:0060675","ureteric bud morphogenesis",5,0,0.16,2349,"1.0000","0.69916","0.69916" +"GO:0060993","kidney morphogenesis",5,0,0.16,2350,"1.0000","0.69916","0.69916" +"GO:0061333","renal tubule morphogenesis",5,0,0.16,2351,"1.0000","0.69916","0.69916" +"GO:0072028","nephron morphogenesis",5,0,0.16,2352,"1.0000","0.69916","0.69916" +"GO:0072078","nephron tubule morphogenesis",5,0,0.16,2353,"1.0000","0.69916","0.69916" +"GO:0072088","nephron epithelium morphogenesis",5,0,0.16,2354,"1.0000","0.69916","0.69916" +"GO:0072163","mesonephric epithelium development",5,0,0.16,2355,"1.0000","0.69916","0.69916" +"GO:0072164","mesonephric tubule development",5,0,0.16,2356,"1.0000","0.69916","0.69916" +"GO:0072171","mesonephric tubule morphogenesis",5,0,0.16,2357,"1.0000","0.69916","0.69916" +"GO:0110110","positive regulation of animal organ morp...",5,0,0.16,2358,"1.0000","0.69916","0.69916" +"GO:0015850","organic hydroxy compound transport",12,1,0.39,791,"0.3265","0.69920","0.69920" +"GO:0045595","regulation of cell differentiation",75,5,2.43,225,"0.0932","0.69952","0.69952" +"GO:0090307","mitotic spindle assembly",10,1,0.32,724,"0.2806","0.69961","0.69961" +"GO:0061138","morphogenesis of a branching epithelium",9,0,0.29,2359,"1.0000","0.69966","0.69966" +"GO:0001756","somitogenesis",5,1,0.16,461,"0.1517","0.70005","0.70005" +"GO:0061053","somite development",5,1,0.16,462,"0.1517","0.70005","0.70005" +"GO:0001816","cytokine production",16,2,0.52,224,"0.0926","0.50022","0.70074" +"GO:0008104","protein localization",212,4,6.86,1293,"0.9217","0.66938","0.70212" +"GO:0060998","regulation of dendritic spine developmen...",5,1,0.16,463,"0.1517","0.70219","0.70219" +"GO:0044057","regulation of system process",27,1,0.87,1104,"0.5901","0.70270","0.70270" +"GO:0051336","regulation of hydrolase activity",57,4,1.84,315,"0.1107","0.70280","0.70280" +"GO:0007040","lysosome organization",14,2,0.45,181,"0.0732","0.70327","0.70327" +"GO:0036465","synaptic vesicle recycling",14,2,0.45,182,"0.0732","0.70327","0.70327" +"GO:0080171","lytic vacuole organization",14,2,0.45,183,"0.0732","0.70327","0.70327" +"GO:0006986","response to unfolded protein",16,0,0.52,2360,"1.0000","0.70399","0.70399" +"GO:0045944","positive regulation of transcription by ...",32,1,1.04,1149,"0.6528","0.70537","0.70537" +"GO:0009166","nucleotide catabolic process",13,1,0.42,820,"0.3484","0.70567","0.70567" +"GO:0030203","glycosaminoglycan metabolic process",4,0,0.13,2361,"1.0000","0.70579","0.70579" +"GO:0042445","hormone metabolic process",12,0,0.39,2362,"1.0000","0.70656","0.70656" +"GO:0031032","actomyosin structure organization",14,0,0.45,2363,"1.0000","0.70774","0.70774" +"GO:0006334","nucleosome assembly",10,0,0.32,2364,"1.0000","0.70842","0.70842" +"GO:0031497","chromatin assembly",10,0,0.32,2365,"1.0000","0.70842","0.70842" +"GO:0060359","response to ammonium ion",7,0,0.23,2366,"1.0000","0.70861","0.70861" +"GO:0042181","ketone biosynthetic process",6,0,0.19,2367,"1.0000","0.70894","0.70894" +"GO:1901663","quinone biosynthetic process",6,0,0.19,2368,"1.0000","0.70894","0.70894" +"GO:0051972","regulation of telomerase activity",4,0,0.13,2369,"1.0000","0.70896","0.70896" +"GO:0003407","neural retina development",13,0,0.42,2370,"1.0000","0.70952","0.70952" +"GO:0030865","cortical cytoskeleton organization",4,0,0.13,2371,"1.0000","0.70976","0.70976" +"GO:0030866","cortical actin cytoskeleton organization",4,0,0.13,2372,"1.0000","0.70976","0.70976" +"GO:0098657","import into cell",41,2,1.33,871,"0.3850","0.70999","0.70999" +"GO:0009081","branched-chain amino acid metabolic proc...",4,0,0.13,2373,"1.0000","0.71055","0.71055" +"GO:0010647","positive regulation of cell communicatio...",71,3,2.3,903,"0.4052","0.71131","0.71131" +"GO:0023056","positive regulation of signaling",71,3,2.3,904,"0.4052","0.71131","0.71131" +"GO:0016055","Wnt signaling pathway",23,1,0.74,1048,"0.5319","0.71177","0.71177" +"GO:0038202","TORC1 signaling",4,0,0.13,2374,"1.0000","0.71213","0.71213" +"GO:0021700","developmental maturation",18,0,0.58,2375,"1.0000","0.71253","0.71253" +"GO:0006089","lactate metabolic process",4,0,0.13,2376,"1.0000","0.71371","0.71371" +"GO:0008631","intrinsic apoptotic signaling pathway in...",4,0,0.13,2377,"1.0000","0.71371","0.71371" +"GO:0015844","monoamine transport",4,0,0.13,2378,"1.0000","0.71371","0.71371" +"GO:0015872","dopamine transport",4,0,0.13,2379,"1.0000","0.71371","0.71371" +"GO:0018958","phenol-containing compound metabolic pro...",4,0,0.13,2380,"1.0000","0.71371","0.71371" +"GO:0032869","cellular response to insulin stimulus",4,0,0.13,2381,"1.0000","0.71371","0.71371" +"GO:0051937","catecholamine transport",4,0,0.13,2382,"1.0000","0.71371","0.71371" +"GO:0036010","protein localization to endosome",5,0,0.16,2383,"1.0000","0.71426","0.71426" +"GO:0009314","response to radiation",35,2,1.13,767,"0.3137","0.71512","0.71512" +"GO:0050790","regulation of catalytic activity",114,6,3.69,482,"0.1612","0.71594","0.71594" +"GO:0032507","maintenance of protein location in cell",4,0,0.13,2384,"1.0000","0.71608","0.71608" +"GO:0051651","maintenance of location in cell",4,0,0.13,2385,"1.0000","0.71608","0.71608" +"GO:0008610","lipid biosynthetic process",59,4,1.91,330,"0.1217","0.71690","0.71690" +"GO:0071326","cellular response to monosaccharide stim...",6,0,0.19,2386,"1.0000","0.71701","0.71701" +"GO:0071331","cellular response to hexose stimulus",6,0,0.19,2387,"1.0000","0.71701","0.71701" +"GO:0071333","cellular response to glucose stimulus",6,0,0.19,2388,"1.0000","0.71701","0.71701" +"GO:0044419","interspecies interaction between organis...",38,3,1.23,332,"0.1229","0.71713","0.71713" +"GO:0060541","respiratory system development",17,1,0.55,940,"0.4291","0.71754","0.71754" +"GO:0050906","detection of stimulus involved in sensor...",6,0,0.19,2389,"1.0000","0.71798","0.71798" +"GO:0015695","organic cation transport",3,0,0.1,2390,"1.0000","0.71872","0.71872" +"GO:0015697","quaternary ammonium group transport",3,0,0.1,2391,"1.0000","0.71872","0.71872" +"GO:0001838","embryonic epithelial tube formation",9,1,0.29,681,"0.2565","0.71923","0.71923" +"GO:0072175","epithelial tube formation",9,1,0.29,682,"0.2565","0.71923","0.71923" +"GO:0031325","positive regulation of cellular metaboli...",142,4,4.59,1172,"0.6838","0.72023","0.72023" +"GO:0090257","regulation of muscle system process",12,0,0.39,2392,"1.0000","0.72073","0.72073" +"GO:0051640","organelle localization",42,1,1.36,1222,"0.7511","0.72074","0.72074" +"GO:0010565","regulation of cellular ketone metabolic ...",4,0,0.13,2393,"1.0000","0.72081","0.72081" +"GO:0042219","cellular modified amino acid catabolic p...",6,0,0.19,2394,"1.0000","0.72120","0.72120" +"GO:0010556","regulation of macromolecule biosynthetic...",379,9,12.26,1277,"0.8822","0.72163","0.72163" +"GO:0016310","phosphorylation",217,8,7.02,902,"0.4040","0.72195","0.72195" +"GO:0019098","reproductive behavior",7,0,0.23,2395,"1.0000","0.72219","0.72219" +"GO:0043279","response to alkaloid",7,0,0.23,2396,"1.0000","0.72219","0.72219" +"GO:0050795","regulation of behavior",7,0,0.23,2397,"1.0000","0.72219","0.72219" +"GO:0071496","cellular response to external stimulus",16,0,0.52,2398,"1.0000","0.72222","0.72222" +"GO:2000736","regulation of stem cell differentiation",9,1,0.29,683,"0.2565","0.72330","0.72330" +"GO:0001736","establishment of planar polarity",9,0,0.29,2399,"1.0000","0.72330","0.72330" +"GO:0001738","morphogenesis of a polarized epithelium",9,0,0.29,2400,"1.0000","0.72330","0.72330" +"GO:0007164","establishment of tissue polarity",9,0,0.29,2401,"1.0000","0.72330","0.72330" +"GO:0010389","regulation of G2/M transition of mitotic...",9,0,0.29,2402,"1.0000","0.72330","0.72330" +"GO:0009264","deoxyribonucleotide catabolic process",3,0,0.1,2403,"1.0000","0.72372","0.72372" +"GO:0042127","regulation of cell proliferation",52,1,1.68,1253,"0.8218","0.72449","0.72449" +"GO:0009135","purine nucleoside diphosphate metabolic ...",7,0,0.23,2404,"1.0000","0.72531","0.72531" +"GO:0009179","purine ribonucleoside diphosphate metabo...",7,0,0.23,2405,"1.0000","0.72531","0.72531" +"GO:0009185","ribonucleoside diphosphate metabolic pro...",7,0,0.23,2406,"1.0000","0.72531","0.72531" +"GO:0046031","ADP metabolic process",7,0,0.23,2407,"1.0000","0.72531","0.72531" +"GO:0031214","biomineral tissue development",6,0,0.19,2408,"1.0000","0.72632","0.72632" +"GO:0051193","regulation of cofactor metabolic process",6,0,0.19,2409,"1.0000","0.72632","0.72632" +"GO:0070167","regulation of biomineral tissue developm...",6,0,0.19,2410,"1.0000","0.72632","0.72632" +"GO:0000271","polysaccharide biosynthetic process",5,0,0.16,2411,"1.0000","0.72657","0.72657" +"GO:0033692","cellular polysaccharide biosynthetic pro...",5,0,0.16,2412,"1.0000","0.72657","0.72657" +"GO:0072358","cardiovascular system development",11,1,0.36,758,"0.3039","0.72664","0.72664" +"GO:0044255","cellular lipid metabolic process",100,5,3.23,604,"0.2207","0.72688","0.72688" +"GO:0010977","negative regulation of neuron projection...",5,1,0.16,464,"0.1517","0.72692","0.72692" +"GO:0050771","negative regulation of axonogenesis",5,1,0.16,465,"0.1517","0.72692","0.72692" +"GO:0050905","neuromuscular process",5,1,0.16,466,"0.1517","0.72692","0.72692" +"GO:0022417","protein maturation by protein folding",3,0,0.1,2413,"1.0000","0.72756","0.72756" +"GO:0032042","mitochondrial DNA metabolic process",3,0,0.1,2414,"1.0000","0.72756","0.72756" +"GO:0045666","positive regulation of neuron differenti...",15,2,0.49,201,"0.0827","0.72922","0.72922" +"GO:0051973","positive regulation of telomerase activi...",3,0,0.1,2415,"1.0000","0.73004","0.73004" +"GO:2000573","positive regulation of DNA biosynthetic ...",3,0,0.1,2416,"1.0000","0.73004","0.73004" +"GO:0007165","signal transduction",326,12,10.54,847,"0.3620","0.73014","0.73014" +"GO:0030004","cellular monovalent inorganic cation hom...",4,0,0.13,2417,"1.0000","0.73022","0.73022" +"GO:0030641","regulation of cellular pH",4,0,0.13,2418,"1.0000","0.73022","0.73022" +"GO:0050768","negative regulation of neurogenesis",15,2,0.49,202,"0.0827","0.73074","0.73074" +"GO:0023052","signaling",355,13,11.48,841,"0.3598","0.73201","0.73201" +"GO:0007268","chemical synaptic transmission",24,2,0.78,531,"0.1810","0.73259","0.73259" +"GO:0098916","anterograde trans-synaptic signaling",24,2,0.78,532,"0.1810","0.73259","0.73259" +"GO:0099536","synaptic signaling",24,2,0.78,533,"0.1810","0.73259","0.73259" +"GO:0099537","trans-synaptic signaling",24,2,0.78,534,"0.1810","0.73259","0.73259" +"GO:0042391","regulation of membrane potential",13,1,0.42,821,"0.3484","0.73311","0.73311" +"GO:0051246","regulation of protein metabolic process",152,4,4.92,1214,"0.7349","0.73346","0.73346" +"GO:0051171","regulation of nitrogen compound metaboli...",475,9,15.36,1326,"0.9799","0.73349","0.73349" +"GO:1902680","positive regulation of RNA biosynthetic ...",51,1,1.65,1251,"0.8157","0.73387","0.73387" +"GO:0000122","negative regulation of transcription by ...",28,2,0.91,611,"0.2288","0.73506","0.73506" +"GO:0006928","movement of cell or subcellular componen...",103,6,3.33,327,"0.1139","0.73658","0.73658" +"GO:0016236","macroautophagy",19,1,0.61,983,"0.4656","0.73676","0.73676" +"GO:0006662","glycerol ether metabolic process",3,0,0.1,2419,"1.0000","0.73701","0.73701" +"GO:0018904","ether metabolic process",3,0,0.1,2420,"1.0000","0.73701","0.73701" +"GO:0035051","cardiocyte differentiation",7,1,0.23,580,"0.2058","0.73770","0.73770" +"GO:0018105","peptidyl-serine phosphorylation",3,0,0.1,2421,"1.0000","0.73791","0.73791" +"GO:0051094","positive regulation of developmental pro...",45,4,1.46,137,"0.0557","0.73881","0.73881" +"GO:0031929","TOR signaling",14,0,0.45,2422,"1.0000","0.74008","0.74008" +"GO:0009628","response to abiotic stimulus",105,4,3.4,958,"0.4437","0.74046","0.74046" +"GO:0018210","peptidyl-threonine modification",7,0,0.23,2423,"1.0000","0.74078","0.74078" +"GO:0006754","ATP biosynthetic process",19,0,0.61,2424,"1.0000","0.74095","0.74095" +"GO:0051054","positive regulation of DNA metabolic pro...",11,0,0.36,2425,"1.0000","0.74180","0.74180" +"GO:0071897","DNA biosynthetic process",11,0,0.36,2426,"1.0000","0.74180","0.74180" +"GO:0046839","phospholipid dephosphorylation",4,0,0.13,2427,"1.0000","0.74187","0.74187" +"GO:0046856","phosphatidylinositol dephosphorylation",4,0,0.13,2428,"1.0000","0.74187","0.74187" +"GO:0007424","open tracheal system development",6,1,0.19,514,"0.1792","0.74253","0.74253" +"GO:0009913","epidermal cell differentiation",6,0,0.19,2429,"1.0000","0.74253","0.74253" +"GO:0030010","establishment of cell polarity",6,0,0.19,2430,"1.0000","0.74253","0.74253" +"GO:1905114","cell surface receptor signaling pathway ...",24,1,0.78,1061,"0.5472","0.74276","0.74276" +"GO:0061640","cytoskeleton-dependent cytokinesis",11,0,0.36,2431,"1.0000","0.74308","0.74308" +"GO:0048199","vesicle targeting, to, from or within Go...",5,1,0.16,467,"0.1517","0.74431","0.74431" +"GO:0048469","cell maturation",16,0,0.52,2432,"1.0000","0.74484","0.74484" +"GO:0021915","neural tube development",8,1,0.26,634,"0.2315","0.74613","0.74613" +"GO:0035304","regulation of protein dephosphorylation",8,0,0.26,2433,"1.0000","0.74613","0.74613" +"GO:0048856","anatomical structure development",356,18,11.51,44,"0.0335","0.74662","0.74662" +"GO:0006269","DNA replication, synthesis of RNA primer",3,0,0.1,2434,"1.0000","0.74705","0.74705" +"GO:0010771","negative regulation of cell morphogenesi...",6,1,0.19,515,"0.1792","0.74725","0.74725" +"GO:0061387","regulation of extent of cell growth",6,1,0.19,516,"0.1792","0.74725","0.74725" +"GO:0009411","response to UV",4,0,0.13,2435,"1.0000","0.74727","0.74727" +"GO:0007031","peroxisome organization",10,0,0.32,2436,"1.0000","0.74752","0.74752" +"GO:0002009","morphogenesis of an epithelium",35,2,1.13,768,"0.3137","0.74759","0.74759" +"GO:0050806","positive regulation of synaptic transmis...",6,1,0.19,517,"0.1792","0.75039","0.75039" +"GO:0060996","dendritic spine development",6,1,0.19,518,"0.1792","0.75039","0.75039" +"GO:0006743","ubiquinone metabolic process",5,0,0.16,2437,"1.0000","0.75084","0.75084" +"GO:0006744","ubiquinone biosynthetic process",5,0,0.16,2438,"1.0000","0.75084","0.75084" +"GO:0021782","glial cell development",4,0,0.13,2439,"1.0000","0.75111","0.75111" +"GO:0032368","regulation of lipid transport",4,0,0.13,2440,"1.0000","0.75111","0.75111" +"GO:0061217","regulation of mesonephros development",4,0,0.13,2441,"1.0000","0.75111","0.75111" +"GO:0090183","regulation of kidney development",4,0,0.13,2442,"1.0000","0.75111","0.75111" +"GO:0090189","regulation of branching involved in uret...",4,0,0.13,2443,"1.0000","0.75111","0.75111" +"GO:1905332","positive regulation of morphogenesis of ...",4,0,0.13,2444,"1.0000","0.75111","0.75111" +"GO:0002931","response to ischemia",5,1,0.16,468,"0.1517","0.75119","0.75119" +"GO:0045637","regulation of myeloid cell differentiati...",5,1,0.16,469,"0.1517","0.75119","0.75119" +"GO:0045646","regulation of erythrocyte differentiatio...",5,1,0.16,470,"0.1517","0.75119","0.75119" +"GO:1903708","positive regulation of hemopoiesis",5,1,0.16,471,"0.1517","0.75119","0.75119" +"GO:0032640","tumor necrosis factor production",3,0,0.1,2445,"1.0000","0.75148","0.75148" +"GO:0032680","regulation of tumor necrosis factor prod...",3,0,0.1,2446,"1.0000","0.75148","0.75148" +"GO:0046326","positive regulation of glucose import",3,0,0.1,2447,"1.0000","0.75148","0.75148" +"GO:0070374","positive regulation of ERK1 and ERK2 cas...",3,0,0.1,2448,"1.0000","0.75148","0.75148" +"GO:0071706","tumor necrosis factor superfamily cytoki...",3,0,0.1,2449,"1.0000","0.75148","0.75148" +"GO:1903555","regulation of tumor necrosis factor supe...",3,0,0.1,2450,"1.0000","0.75148","0.75148" +"GO:0043066","negative regulation of apoptotic process",48,2,1.55,972,"0.4640","0.75175","0.75175" +"GO:0061515","myeloid cell development",5,1,0.16,472,"0.1517","0.75204","0.75204" +"GO:0006397","mRNA processing",74,3,2.39,946,"0.4315","0.43415","0.75346" +"GO:0071901","negative regulation of protein serine/th...",4,0,0.13,2451,"1.0000","0.75417","0.75417" +"GO:0009617","response to bacterium",23,1,0.74,1049,"0.5319","0.75644","0.75644" +"GO:0033260","nuclear DNA replication",5,0,0.16,2452,"1.0000","0.75904","0.75904" +"GO:0044786","cell cycle DNA replication",5,0,0.16,2453,"1.0000","0.75904","0.75904" +"GO:0006096","glycolytic process",6,0,0.19,2454,"1.0000","0.75943","0.75943" +"GO:0006757","ATP generation from ADP",6,0,0.19,2455,"1.0000","0.75943","0.75943" +"GO:0042866","pyruvate biosynthetic process",6,0,0.19,2456,"1.0000","0.75943","0.75943" +"GO:0042981","regulation of apoptotic process",69,2,2.23,1156,"0.6614","0.75962","0.75962" +"GO:0045980","negative regulation of nucleotide metabo...",3,0,0.1,2457,"1.0000","0.75963","0.75963" +"GO:0051881","regulation of mitochondrial membrane pot...",3,0,0.1,2458,"1.0000","0.75963","0.75963" +"GO:1900543","negative regulation of purine nucleotide...",3,0,0.1,2459,"1.0000","0.75963","0.75963" +"GO:1903579","negative regulation of ATP metabolic pro...",3,0,0.1,2460,"1.0000","0.75963","0.75963" +"GO:0001667","ameboidal-type cell migration",10,0,0.32,2461,"1.0000","0.76130","0.76130" +"GO:0042246","tissue regeneration",8,0,0.26,2462,"1.0000","0.76235","0.76235" +"GO:0055001","muscle cell development",11,0,0.36,2463,"1.0000","0.76236","0.76236" +"GO:0055002","striated muscle cell development",11,0,0.36,2464,"1.0000","0.76236","0.76236" +"GO:0030511","positive regulation of transforming grow...",3,0,0.1,2465,"1.0000","0.76313","0.76313" +"GO:1903846","positive regulation of cellular response...",3,0,0.1,2466,"1.0000","0.76313","0.76313" +"GO:0000578","embryonic axis specification",6,1,0.19,519,"0.1792","0.76346","0.76346" +"GO:0010563","negative regulation of phosphorus metabo...",25,1,0.81,1077,"0.5619","0.76395","0.76395" +"GO:0045936","negative regulation of phosphate metabol...",25,1,0.81,1078,"0.5619","0.76395","0.76395" +"GO:0080090","regulation of primary metabolic process",488,10,15.78,1315,"0.9669","0.76571","0.76571" +"GO:0000724","double-strand break repair via homologou...",7,0,0.23,2467,"1.0000","0.76607","0.76607" +"GO:0000725","recombinational repair",7,0,0.23,2468,"1.0000","0.76607","0.76607" +"GO:0048589","developmental growth",46,2,1.49,956,"0.4420","0.76611","0.76611" +"GO:0040017","positive regulation of locomotion",18,0,0.58,2469,"1.0000","0.76611","0.76611" +"GO:0009651","response to salt stress",5,0,0.16,2470,"1.0000","0.76615","0.76615" +"GO:0030282","bone mineralization",5,0,0.16,2471,"1.0000","0.76615","0.76615" +"GO:0030500","regulation of bone mineralization",5,0,0.16,2472,"1.0000","0.76615","0.76615" +"GO:0030808","regulation of nucleotide biosynthetic pr...",5,0,0.16,2473,"1.0000","0.76615","0.76615" +"GO:0051196","regulation of coenzyme metabolic process",5,0,0.16,2474,"1.0000","0.76615","0.76615" +"GO:1900371","regulation of purine nucleotide biosynth...",5,0,0.16,2475,"1.0000","0.76615","0.76615" +"GO:0060429","epithelium development",70,3,2.26,893,"0.3963","0.76656","0.76656" +"GO:2000147","positive regulation of cell motility",13,0,0.42,2476,"1.0000","0.76687","0.76687" +"GO:0009311","oligosaccharide metabolic process",4,0,0.13,2477,"1.0000","0.76707","0.76707" +"GO:0009312","oligosaccharide biosynthetic process",4,0,0.13,2478,"1.0000","0.76707","0.76707" +"GO:0018243","protein O-linked glycosylation via threo...",4,0,0.13,2479,"1.0000","0.76707","0.76707" +"GO:0051705","multi-organism behavior",6,0,0.19,2480,"1.0000","0.76931","0.76931" +"GO:0016054","organic acid catabolic process",19,2,0.61,398,"0.1241","0.76990","0.76990" +"GO:0046395","carboxylic acid catabolic process",19,2,0.61,399,"0.1241","0.76990","0.76990" +"GO:0072657","protein localization to membrane",31,1,1,1140,"0.6410","0.77119","0.77119" +"GO:2000112","regulation of cellular macromolecule bio...",375,8,12.13,1298,"0.9328","0.77121","0.77121" +"GO:0198738","cell-cell signaling by wnt",25,1,0.81,1079,"0.5619","0.77151","0.77151" +"GO:0007156","homophilic cell adhesion via plasma memb...",9,1,0.29,684,"0.2565","0.77174","0.77174" +"GO:0002164","larval development",7,1,0.23,581,"0.2058","0.77204","0.77204" +"GO:0065002","intracellular protein transmembrane tran...",13,0,0.42,2481,"1.0000","0.77281","0.77281" +"GO:0009887","animal organ morphogenesis",66,2,2.13,1138,"0.6371","0.77331","0.77331" +"GO:0044837","actomyosin contractile ring organization",3,0,0.1,2482,"1.0000","0.77334","0.77334" +"GO:0047496","vesicle transport along microtubule",3,0,0.1,2483,"1.0000","0.77334","0.77334" +"GO:0099518","vesicle cytoskeletal trafficking",3,0,0.1,2484,"1.0000","0.77334","0.77334" +"GO:0007369","gastrulation",17,2,0.55,311,"0.1028","0.77356","0.77356" +"GO:0099504","synaptic vesicle cycle",17,2,0.55,312,"0.1028","0.77356","0.77356" +"GO:0043666","regulation of phosphoprotein phosphatase...",7,0,0.23,2485,"1.0000","0.77402","0.77402" +"GO:0005977","glycogen metabolic process",4,0,0.13,2486,"1.0000","0.77457","0.77457" +"GO:0006073","cellular glucan metabolic process",4,0,0.13,2487,"1.0000","0.77457","0.77457" +"GO:0006112","energy reserve metabolic process",4,0,0.13,2488,"1.0000","0.77457","0.77457" +"GO:0044042","glucan metabolic process",4,0,0.13,2489,"1.0000","0.77457","0.77457" +"GO:0006099","tricarboxylic acid cycle",12,0,0.39,2490,"1.0000","0.77705","0.77705" +"GO:0006101","citrate metabolic process",12,0,0.39,2491,"1.0000","0.77705","0.77705" +"GO:0046470","phosphatidylcholine metabolic process",3,0,0.1,2492,"1.0000","0.77786","0.77786" +"GO:0070372","regulation of ERK1 and ERK2 cascade",5,0,0.16,2493,"1.0000","0.77804","0.77804" +"GO:0000086","G2/M transition of mitotic cell cycle",10,0,0.32,2494,"1.0000","0.77842","0.77842" +"GO:0072595","maintenance of protein localization in o...",3,0,0.1,2495,"1.0000","0.77850","0.77850" +"GO:0045667","regulation of osteoblast differentiation",3,0,0.1,2496,"1.0000","0.77872","0.77872" +"GO:0090407","organophosphate biosynthetic process",78,2,2.52,1208,"0.7265","0.77884","0.77884" +"GO:0048519","negative regulation of biological proces...",309,10,9.99,1064,"0.5502","0.77934","0.77934" +"GO:0035265","organ growth",5,0,0.16,2497,"1.0000","0.78037","0.78037" +"GO:0006644","phospholipid metabolic process",47,0,1.52,2498,"1.0000","0.78037","0.78037" +"GO:0006636","unsaturated fatty acid biosynthetic proc...",4,0,0.13,2499,"1.0000","0.78126","0.78126" +"GO:0010927","cellular component assembly involved in ...",10,0,0.32,2500,"1.0000","0.78147","0.78147" +"GO:0019217","regulation of fatty acid metabolic proce...",3,0,0.1,2501,"1.0000","0.78235","0.78235" +"GO:0042304","regulation of fatty acid biosynthetic pr...",3,0,0.1,2502,"1.0000","0.78235","0.78235" +"GO:0001819","positive regulation of cytokine producti...",9,1,0.29,685,"0.2565","0.78242","0.78242" +"GO:0043244","regulation of protein complex disassembl...",9,0,0.29,2503,"1.0000","0.78242","0.78242" +"GO:0090130","tissue migration",9,0,0.29,2504,"1.0000","0.78242","0.78242" +"GO:0090132","epithelium migration",9,0,0.29,2505,"1.0000","0.78242","0.78242" +"GO:0006937","regulation of muscle contraction",8,0,0.26,2506,"1.0000","0.78247","0.78247" +"GO:1905475","regulation of protein localization to me...",7,0,0.23,2507,"1.0000","0.78384","0.78384" +"GO:0030261","chromosome condensation",4,0,0.13,2508,"1.0000","0.78422","0.78422" +"GO:0008219","cell death",108,3,3.49,1181,"0.6875","0.78434","0.78434" +"GO:0051050","positive regulation of transport",48,2,1.55,973,"0.4640","0.78456","0.78456" +"GO:0050879","multicellular organismal movement",3,0,0.1,2509,"1.0000","0.78512","0.78512" +"GO:0050881","musculoskeletal movement",3,0,0.1,2510,"1.0000","0.78512","0.78512" +"GO:0002165","instar larval or pupal development",14,0,0.45,2511,"1.0000","0.78543","0.78543" +"GO:0045893","positive regulation of transcription, DN...",50,1,1.62,1247,"0.8095","0.78551","0.78551" +"GO:1903508","positive regulation of nucleic acid-temp...",50,1,1.62,1248,"0.8095","0.78551","0.78551" +"GO:0043457","regulation of cellular respiration",5,0,0.16,2512,"1.0000","0.78565","0.78565" +"GO:0071705","nitrogen compound transport",177,4,5.73,1259,"0.8355","0.76490","0.78576" +"GO:0034248","regulation of cellular amide metabolic p...",31,0,1,2513,"1.0000","0.78620","0.78620" +"GO:0050773","regulation of dendrite development",7,1,0.23,582,"0.2058","0.78677","0.78677" +"GO:0021680","cerebellar Purkinje cell layer developme...",7,0,0.23,2514,"1.0000","0.78677","0.78677" +"GO:0021695","cerebellar cortex development",7,0,0.23,2515,"1.0000","0.78677","0.78677" +"GO:0016255","attachment of GPI anchor to protein",4,0,0.13,2516,"1.0000","0.78716","0.78716" +"GO:0051223","regulation of protein transport",33,1,1.07,1161,"0.6641","0.78736","0.78736" +"GO:0044764","multi-organism cellular process",3,0,0.1,2517,"1.0000","0.78894","0.78894" +"GO:0051048","negative regulation of secretion",3,0,0.1,2518,"1.0000","0.78894","0.78894" +"GO:1902991","regulation of amyloid precursor protein ...",3,0,0.1,2519,"1.0000","0.78894","0.78894" +"GO:1903531","negative regulation of secretion by cell",3,0,0.1,2520,"1.0000","0.78894","0.78894" +"GO:1990000","amyloid fibril formation",3,0,0.1,2521,"1.0000","0.78894","0.78894" +"GO:0009060","aerobic respiration",14,0,0.45,2522,"1.0000","0.78956","0.78956" +"GO:0043281","regulation of cysteine-type endopeptidas...",12,1,0.39,792,"0.3265","0.78985","0.78985" +"GO:0052548","regulation of endopeptidase activity",12,1,0.39,793,"0.3265","0.78985","0.78985" +"GO:2000116","regulation of cysteine-type endopeptidas...",12,1,0.39,794,"0.3265","0.78985","0.78985" +"GO:0090087","regulation of peptide transport",34,1,1.1,1169,"0.6751","0.79033","0.79033" +"GO:0090150","establishment of protein localization to...",18,0,0.58,2523,"1.0000","0.79068","0.79068" +"GO:1902600","proton transmembrane transport",13,0,0.42,2524,"1.0000","0.79079","0.79079" +"GO:0016197","endosomal transport",18,0,0.58,2525,"1.0000","0.79154","0.79154" +"GO:0002182","cytoplasmic translational elongation",3,0,0.1,2526,"1.0000","0.79189","0.79189" +"GO:0017182","peptidyl-diphthamide metabolic process",3,0,0.1,2527,"1.0000","0.79189","0.79189" +"GO:0017183","peptidyl-diphthamide biosynthetic proces...",3,0,0.1,2528,"1.0000","0.79189","0.79189" +"GO:0018202","peptidyl-histidine modification",3,0,0.1,2529,"1.0000","0.79189","0.79189" +"GO:1900247","regulation of cytoplasmic translational ...",3,0,0.1,2530,"1.0000","0.79189","0.79189" +"GO:2000765","regulation of cytoplasmic translation",3,0,0.1,2531,"1.0000","0.79189","0.79189" +"GO:0003206","cardiac chamber morphogenesis",4,0,0.13,2532,"1.0000","0.79228","0.79228" +"GO:0003208","cardiac ventricle morphogenesis",4,0,0.13,2533,"1.0000","0.79228","0.79228" +"GO:0034243","regulation of transcription elongation f...",5,0,0.16,2534,"1.0000","0.79318","0.79318" +"GO:0051187","cofactor catabolic process",10,0,0.32,2535,"1.0000","0.79378","0.79378" +"GO:0006720","isoprenoid metabolic process",12,0,0.39,2536,"1.0000","0.79407","0.79407" +"GO:0010721","negative regulation of cell development",18,2,0.58,325,"0.1133","0.79412","0.79412" +"GO:0051961","negative regulation of nervous system de...",18,2,0.58,326,"0.1133","0.79412","0.79412" +"GO:0003012","muscle system process",19,0,0.61,2537,"1.0000","0.79430","0.79430" +"GO:0006903","vesicle targeting",6,1,0.19,520,"0.1792","0.79437","0.79437" +"GO:0090114","COPII-coated vesicle budding",6,1,0.19,521,"0.1792","0.79437","0.79437" +"GO:0009642","response to light intensity",3,0,0.1,2538,"1.0000","0.79441","0.79441" +"GO:0048569","post-embryonic animal organ development",10,1,0.32,725,"0.2806","0.79493","0.79493" +"GO:0006658","phosphatidylserine metabolic process",3,0,0.1,2539,"1.0000","0.79504","0.79504" +"GO:0007254","JNK cascade",6,1,0.19,522,"0.1792","0.79615","0.79615" +"GO:0006446","regulation of translational initiation",3,0,0.1,2540,"1.0000","0.79672","0.79672" +"GO:0045292","mRNA cis splicing, via spliceosome",5,0,0.16,2541,"1.0000","0.79724","0.79724" +"GO:0034105","positive regulation of tissue remodeling",4,0,0.13,2542,"1.0000","0.79737","0.79737" +"GO:0032259","methylation",51,0,1.65,2543,"1.0000","0.79739","0.79739" +"GO:0008361","regulation of cell size",11,1,0.36,759,"0.3039","0.79923","0.79923" +"GO:0035268","protein mannosylation",4,0,0.13,2544,"1.0000","0.79954","0.79954" +"GO:0035269","protein O-linked mannosylation",4,0,0.13,2545,"1.0000","0.79954","0.79954" +"GO:0097502","mannosylation",4,0,0.13,2546,"1.0000","0.79954","0.79954" +"GO:0045597","positive regulation of cell differentiat...",34,3,1.1,298,"0.0954","0.80034","0.80034" +"GO:0006298","mismatch repair",7,0,0.23,2547,"1.0000","0.80121","0.80121" +"GO:0044839","cell cycle G2/M phase transition",11,0,0.36,2548,"1.0000","0.80173","0.80173" +"GO:0043523","regulation of neuron apoptotic process",11,0,0.36,2549,"1.0000","0.80206","0.80206" +"GO:0001708","cell fate specification",6,1,0.19,523,"0.1792","0.80234","0.80234" +"GO:0001709","cell fate determination",6,1,0.19,524,"0.1792","0.80234","0.80234" +"GO:0021953","central nervous system neuron differenti...",6,1,0.19,525,"0.1792","0.80234","0.80234" +"GO:0051301","cell division",32,1,1.04,1150,"0.6528","0.80267","0.80267" +"GO:0048729","tissue morphogenesis",40,2,1.29,864,"0.3733","0.80295","0.80295" +"GO:0007275","multicellular organism development",330,16,10.67,140,"0.0613","0.80383","0.80383" +"GO:0001568","blood vessel development",8,1,0.26,635,"0.2315","0.80410","0.80410" +"GO:0001944","vasculature development",8,1,0.26,636,"0.2315","0.80410","0.80410" +"GO:0010631","epithelial cell migration",8,0,0.26,2550,"1.0000","0.80410","0.80410" +"GO:0042752","regulation of circadian rhythm",16,1,0.52,915,"0.4099","0.80529","0.80529" +"GO:0044403","symbiont process",36,3,1.16,313,"0.1088","0.80530","0.80530" +"GO:0043207","response to external biotic stimulus",39,1,1.26,1205,"0.7249","0.80620","0.80620" +"GO:0051707","response to other organism",39,1,1.26,1206,"0.7249","0.80620","0.80620" +"GO:0001656","metanephros development",3,0,0.1,2551,"1.0000","0.80688","0.80688" +"GO:0002063","chondrocyte development",3,0,0.1,2552,"1.0000","0.80688","0.80688" +"GO:0003415","chondrocyte hypertrophy",3,0,0.1,2553,"1.0000","0.80688","0.80688" +"GO:0007422","peripheral nervous system development",3,0,0.1,2554,"1.0000","0.80688","0.80688" +"GO:0007586","digestion",3,0,0.1,2555,"1.0000","0.80688","0.80688" +"GO:0014003","oligodendrocyte development",3,0,0.1,2556,"1.0000","0.80688","0.80688" +"GO:0030857","negative regulation of epithelial cell d...",3,0,0.1,2557,"1.0000","0.80688","0.80688" +"GO:0035272","exocrine system development",3,0,0.1,2558,"1.0000","0.80688","0.80688" +"GO:0048066","developmental pigmentation",3,0,0.1,2559,"1.0000","0.80688","0.80688" +"GO:0051145","smooth muscle cell differentiation",3,0,0.1,2560,"1.0000","0.80688","0.80688" +"GO:0060428","lung epithelium development",3,0,0.1,2561,"1.0000","0.80688","0.80688" +"GO:0060433","bronchus development",3,0,0.1,2562,"1.0000","0.80688","0.80688" +"GO:0060479","lung cell differentiation",3,0,0.1,2563,"1.0000","0.80688","0.80688" +"GO:0060487","lung epithelial cell differentiation",3,0,0.1,2564,"1.0000","0.80688","0.80688" +"GO:0061213","positive regulation of mesonephros devel...",3,0,0.1,2565,"1.0000","0.80688","0.80688" +"GO:0071599","otic vesicle development",3,0,0.1,2566,"1.0000","0.80688","0.80688" +"GO:0071600","otic vesicle morphogenesis",3,0,0.1,2567,"1.0000","0.80688","0.80688" +"GO:0072132","mesenchyme morphogenesis",3,0,0.1,2568,"1.0000","0.80688","0.80688" +"GO:0072210","metanephric nephron development",3,0,0.1,2569,"1.0000","0.80688","0.80688" +"GO:0090184","positive regulation of kidney developmen...",3,0,0.1,2570,"1.0000","0.80688","0.80688" +"GO:0090190","positive regulation of branching involve...",3,0,0.1,2571,"1.0000","0.80688","0.80688" +"GO:2000826","regulation of heart morphogenesis",3,0,0.1,2572,"1.0000","0.80688","0.80688" +"GO:0030155","regulation of cell adhesion",12,0,0.39,2573,"1.0000","0.80697","0.80697" +"GO:0032506","cytokinetic process",6,0,0.19,2574,"1.0000","0.80731","0.80731" +"GO:0010975","regulation of neuron projection developm...",22,2,0.71,480,"0.1577","0.80802","0.80802" +"GO:0006110","regulation of glycolytic process",4,0,0.13,2575,"1.0000","0.80813","0.80813" +"GO:0030502","negative regulation of bone mineralizati...",4,0,0.13,2576,"1.0000","0.80813","0.80813" +"GO:0030811","regulation of nucleotide catabolic proce...",4,0,0.13,2577,"1.0000","0.80813","0.80813" +"GO:0030879","mammary gland development",4,0,0.13,2578,"1.0000","0.80813","0.80813" +"GO:0032350","regulation of hormone metabolic process",4,0,0.13,2579,"1.0000","0.80813","0.80813" +"GO:0043470","regulation of carbohydrate catabolic pro...",4,0,0.13,2580,"1.0000","0.80813","0.80813" +"GO:0051602","response to electrical stimulus",4,0,0.13,2581,"1.0000","0.80813","0.80813" +"GO:0070168","negative regulation of biomineral tissue...",4,0,0.13,2582,"1.0000","0.80813","0.80813" +"GO:0070555","response to interleukin-1",4,0,0.13,2583,"1.0000","0.80813","0.80813" +"GO:0071347","cellular response to interleukin-1",4,0,0.13,2584,"1.0000","0.80813","0.80813" +"GO:2001169","regulation of ATP biosynthetic process",4,0,0.13,2585,"1.0000","0.80813","0.80813" +"GO:0007064","mitotic sister chromatid cohesion",4,0,0.13,2586,"1.0000","0.80884","0.80884" +"GO:0090100","positive regulation of transmembrane rec...",5,0,0.16,2587,"1.0000","0.80895","0.80895" +"GO:0051093","negative regulation of developmental pro...",35,2,1.13,769,"0.3137","0.80932","0.80932" +"GO:0030182","neuron differentiation",93,6,3.01,191,"0.0782","0.80944","0.80944" +"GO:0007167","enzyme linked receptor protein signaling...",38,2,1.23,834,"0.3497","0.80969","0.80969" +"GO:0099003","vesicle-mediated transport in synapse",19,2,0.61,400,"0.1241","0.80983","0.80983" +"GO:0006812","cation transport",96,4,3.11,865,"0.3769","0.81020","0.81020" +"GO:0032870","cellular response to hormone stimulus",35,0,1.13,2588,"1.0000","0.81101","0.81101" +"GO:0015693","magnesium ion transport",3,0,0.1,2589,"1.0000","0.81159","0.81159" +"GO:0032268","regulation of cellular protein metabolic...",145,3,4.69,1267,"0.8578","0.81168","0.81168" +"GO:0043067","regulation of programmed cell death",72,2,2.33,1174,"0.6843","0.81215","0.81215" +"GO:0031589","cell-substrate adhesion",5,0,0.16,2590,"1.0000","0.81228","0.81228" +"GO:0030150","protein import into mitochondrial matrix",4,0,0.13,2591,"1.0000","0.81309","0.81309" +"GO:0048638","regulation of developmental growth",16,1,0.52,916,"0.4099","0.81312","0.81312" +"GO:0031345","negative regulation of cell projection o...",7,1,0.23,583,"0.2058","0.81346","0.81346" +"GO:0050770","regulation of axonogenesis",7,1,0.23,584,"0.2058","0.81346","0.81346" +"GO:0071772","response to BMP",7,1,0.23,585,"0.2058","0.81346","0.81346" +"GO:0071773","cellular response to BMP stimulus",7,1,0.23,586,"0.2058","0.81346","0.81346" +"GO:0060219","camera-type eye photoreceptor cell diffe...",5,0,0.16,2592,"1.0000","0.81354","0.81354" +"GO:0006464","cellular protein modification process",455,16,14.72,899,"0.3994","0.81218","0.81407" +"GO:0036211","protein modification process",455,16,14.72,900,"0.3994","0.81218","0.81407" +"GO:0006665","sphingolipid metabolic process",9,1,0.29,686,"0.2565","0.81410","0.81410" +"GO:1901653","cellular response to peptide",7,0,0.23,2593,"1.0000","0.81439","0.81439" +"GO:0043434","response to peptide hormone",12,0,0.39,2594,"1.0000","0.81475","0.81475" +"GO:0008406","gonad development",14,0,0.45,2595,"1.0000","0.81512","0.81512" +"GO:0048754","branching morphogenesis of an epithelial...",8,0,0.26,2596,"1.0000","0.81515","0.81515" +"GO:0065009","regulation of molecular function",143,7,4.63,495,"0.1776","0.81654","0.81654" +"GO:0007154","cell communication",365,13,11.81,901,"0.3995","0.81673","0.81673" +"GO:0031098","stress-activated protein kinase signalin...",9,1,0.29,687,"0.2565","0.81703","0.81703" +"GO:0035372","protein localization to microtubule",3,0,0.1,2597,"1.0000","0.81728","0.81728" +"GO:0044380","protein localization to cytoskeleton",3,0,0.1,2598,"1.0000","0.81728","0.81728" +"GO:0072698","protein localization to microtubule cyto...",3,0,0.1,2599,"1.0000","0.81728","0.81728" +"GO:0044242","cellular lipid catabolic process",20,1,0.65,1007,"0.4830","0.81836","0.81836" +"GO:0035023","regulation of Rho protein signal transdu...",4,0,0.13,2600,"1.0000","0.81871","0.81871" +"GO:0006873","cellular ion homeostasis",21,0,0.68,2601,"1.0000","0.81887","0.81887" +"GO:0030003","cellular cation homeostasis",21,0,0.68,2602,"1.0000","0.81887","0.81887" +"GO:0032879","regulation of localization",131,5,4.24,919,"0.4190","0.81931","0.81931" +"GO:0034613","cellular protein localization",178,3,5.76,1301,"0.9353","0.82004","0.82004" +"GO:0035088","establishment or maintenance of apical/b...",4,0,0.13,2603,"1.0000","0.82010","0.82010" +"GO:0045197","establishment or maintenance of epitheli...",4,0,0.13,2604,"1.0000","0.82010","0.82010" +"GO:0061245","establishment or maintenance of bipolar ...",4,0,0.13,2605,"1.0000","0.82010","0.82010" +"GO:0021987","cerebral cortex development",5,0,0.16,2606,"1.0000","0.82090","0.82090" +"GO:0030239","myofibril assembly",8,0,0.26,2607,"1.0000","0.82108","0.82108" +"GO:0051049","regulation of transport",82,3,2.65,1020,"0.4995","0.82118","0.82118" +"GO:0000165","MAPK cascade",22,1,0.71,1031,"0.5161","0.82155","0.82155" +"GO:0023014","signal transduction by protein phosphory...",22,1,0.71,1032,"0.5161","0.82155","0.82155" +"GO:0010876","lipid localization",35,2,1.13,770,"0.3137","0.82185","0.82185" +"GO:0022008","neurogenesis",110,6,3.56,410,"0.1431","0.82223","0.82223" +"GO:0007584","response to nutrient",10,0,0.32,2608,"1.0000","0.82258","0.82258" +"GO:0051186","cofactor metabolic process",68,2,2.2,1153,"0.6534","0.82293","0.82293" +"GO:0071103","DNA conformation change",17,0,0.55,2609,"1.0000","0.82377","0.82377" +"GO:1905477","positive regulation of protein localizat...",3,0,0.1,2610,"1.0000","0.82431","0.82431" +"GO:0030856","regulation of epithelial cell differenti...",6,0,0.19,2611,"1.0000","0.82506","0.82506" +"GO:0006468","protein phosphorylation",179,8,5.79,603,"0.2197","0.82508","0.82508" +"GO:0061024","membrane organization",55,4,1.78,300,"0.1003","0.82528","0.82528" +"GO:0005978","glycogen biosynthetic process",3,0,0.1,2612,"1.0000","0.82570","0.82570" +"GO:0009250","glucan biosynthetic process",3,0,0.1,2613,"1.0000","0.82570","0.82570" +"GO:0009607","response to biotic stimulus",43,1,1.39,1225,"0.7593","0.82596","0.82596" +"GO:0035295","tube development",43,1,1.39,1226,"0.7593","0.82596","0.82596" +"GO:0000281","mitotic cytokinesis",5,0,0.16,2614,"1.0000","0.82632","0.82632" +"GO:0009064","glutamine family amino acid metabolic pr...",6,0,0.19,2615,"1.0000","0.82675","0.82675" +"GO:0043044","ATP-dependent chromatin remodeling",4,0,0.13,2616,"1.0000","0.82702","0.82702" +"GO:0022407","regulation of cell-cell adhesion",3,0,0.1,2617,"1.0000","0.82729","0.82729" +"GO:0032784","regulation of DNA-templated transcriptio...",8,1,0.26,637,"0.2315","0.82793","0.82793" +"GO:0010976","positive regulation of neuron projection...",9,0,0.29,2618,"1.0000","0.82802","0.82802" +"GO:0048518","positive regulation of biological proces...",328,11,10.61,1019,"0.4982","0.82149","0.82819" +"GO:0044773","mitotic DNA damage checkpoint",3,0,0.1,2619,"1.0000","0.82828","0.82828" +"GO:0015698","inorganic anion transport",9,0,0.29,2620,"1.0000","0.82847","0.82847" +"GO:0045184","establishment of protein localization",163,4,5.27,1234,"0.7838","0.81476","0.82929" +"GO:0042136","neurotransmitter biosynthetic process",3,0,0.1,2621,"1.0000","0.82947","0.82947" +"GO:0010468","regulation of gene expression",411,9,13.29,1297,"0.9314","0.82965","0.82965" +"GO:0051649","establishment of localization in cell",203,3,6.57,1314,"0.9658","0.83013","0.83013" +"GO:0042278","purine nucleoside metabolic process",9,0,0.29,2622,"1.0000","0.07449","0.83019" +"GO:0007308","oocyte construction",4,0,0.13,2623,"1.0000","0.83045","0.83045" +"GO:0007309","oocyte axis specification",4,0,0.13,2624,"1.0000","0.83045","0.83045" +"GO:0009994","oocyte differentiation",4,0,0.13,2625,"1.0000","0.83045","0.83045" +"GO:0018991","oviposition",4,0,0.13,2626,"1.0000","0.83045","0.83045" +"GO:0042982","amyloid precursor protein metabolic proc...",4,0,0.13,2627,"1.0000","0.83045","0.83045" +"GO:0042987","amyloid precursor protein catabolic proc...",4,0,0.13,2628,"1.0000","0.83045","0.83045" +"GO:0048599","oocyte development",4,0,0.13,2629,"1.0000","0.83045","0.83045" +"GO:0072330","monocarboxylic acid biosynthetic process",19,1,0.61,984,"0.4656","0.83056","0.83056" +"GO:2000026","regulation of multicellular organismal d...",76,5,2.46,299,"0.0973","0.83095","0.83095" +"GO:0071824","protein-DNA complex subunit organization",22,0,0.71,2630,"1.0000","0.83112","0.83112" +"GO:0048194","Golgi vesicle budding",7,1,0.23,587,"0.2058","0.83181","0.83181" +"GO:0040012","regulation of locomotion",33,1,1.07,1162,"0.6641","0.83239","0.83239" +"GO:0009891","positive regulation of biosynthetic proc...",63,2,2.04,1121,"0.6116","0.83251","0.83251" +"GO:0001755","neural crest cell migration",5,0,0.16,2631,"1.0000","0.83289","0.83289" +"GO:0006448","regulation of translational elongation",5,0,0.16,2632,"1.0000","0.83365","0.83365" +"GO:0050909","sensory perception of taste",3,0,0.1,2633,"1.0000","0.83438","0.83438" +"GO:0032502","developmental process",393,18,12.71,186,"0.0759","0.83453","0.83453" +"GO:0034968","histone lysine methylation",6,0,0.19,2634,"1.0000","0.83483","0.83483" +"GO:0032880","regulation of protein localization",56,1,1.81,1265,"0.8441","0.83490","0.83490" +"GO:0006006","glucose metabolic process",10,1,0.32,726,"0.2806","0.83559","0.83559" +"GO:0051403","stress-activated MAPK cascade",8,1,0.26,638,"0.2315","0.83563","0.83563" +"GO:0071375","cellular response to peptide hormone sti...",6,0,0.19,2635,"1.0000","0.83649","0.83649" +"GO:0007528","neuromuscular junction development",5,0,0.16,2636,"1.0000","0.83668","0.83668" +"GO:0007612","learning",5,0,0.16,2637,"1.0000","0.83698","0.83698" +"GO:0007416","synapse assembly",9,1,0.29,688,"0.2565","0.83787","0.83787" +"GO:0010817","regulation of hormone levels",28,0,0.91,2638,"1.0000","0.83791","0.83791" +"GO:0031328","positive regulation of cellular biosynth...",62,2,2.01,1115,"0.6027","0.83896","0.83896" +"GO:0017015","regulation of transforming growth factor...",7,1,0.23,588,"0.2058","0.83896","0.83896" +"GO:0051701","interaction with host",7,1,0.23,589,"0.2058","0.83896","0.83896" +"GO:1903844","regulation of cellular response to trans...",7,1,0.23,590,"0.2058","0.83896","0.83896" +"GO:0017004","cytochrome complex assembly",4,0,0.13,2639,"1.0000","0.83924","0.83924" +"GO:0007033","vacuole organization",21,2,0.68,421,"0.1463","0.83982","0.83982" +"GO:0050769","positive regulation of neurogenesis",21,2,0.68,422,"0.1463","0.83982","0.83982" +"GO:0043269","regulation of ion transport",20,1,0.65,1008,"0.4830","0.84044","0.84044" +"GO:0007169","transmembrane receptor protein tyrosine ...",20,0,0.65,2640,"1.0000","0.84044","0.84044" +"GO:0043069","negative regulation of programmed cell d...",50,2,1.62,1014,"0.4855","0.84058","0.84058" +"GO:0006888","ER to Golgi vesicle-mediated transport",15,1,0.49,888,"0.3901","0.84073","0.84073" +"GO:0070201","regulation of establishment of protein l...",35,1,1.13,1180,"0.6857","0.84089","0.84089" +"GO:0051402","neuron apoptotic process",12,0,0.39,2641,"1.0000","0.84092","0.84092" +"GO:0015918","sterol transport",7,1,0.23,591,"0.2058","0.84162","0.84162" +"GO:0043414","macromolecule methylation",43,0,1.39,2642,"1.0000","0.84178","0.84178" +"GO:0048229","gametophyte development",7,0,0.23,2643,"1.0000","0.84250","0.84250" +"GO:0006471","protein ADP-ribosylation",4,0,0.13,2644,"1.0000","0.84391","0.84391" +"GO:0031401","positive regulation of protein modificat...",46,0,1.49,2645,"1.0000","0.84441","0.84441" +"GO:0006897","endocytosis",38,2,1.23,835,"0.3497","0.84452","0.84452" +"GO:0035282","segmentation",13,1,0.42,822,"0.3484","0.84459","0.84459" +"GO:0060255","regulation of macromolecule metabolic pr...",499,10,16.14,1322,"0.9732","0.84464","0.84464" +"GO:0062012","regulation of small molecule metabolic p...",16,0,0.52,2646,"1.0000","0.84532","0.84532" +"GO:0051641","cellular localization",266,3,8.6,1334,"0.9939","0.84540","0.84540" +"GO:0051865","protein autoubiquitination",4,0,0.13,2647,"1.0000","0.84589","0.84589" +"GO:0016577","histone demethylation",7,0,0.23,2648,"1.0000","0.84600","0.84600" +"GO:0007419","ventral cord development",3,0,0.1,2649,"1.0000","0.84634","0.84634" +"GO:0008340","determination of adult lifespan",4,0,0.13,2650,"1.0000","0.84721","0.84721" +"GO:0018022","peptidyl-lysine methylation",16,0,0.52,2651,"1.0000","0.84730","0.84730" +"GO:0042670","retinal cone cell differentiation",3,0,0.1,2652,"1.0000","0.84862","0.84862" +"GO:0042711","maternal behavior",3,0,0.1,2653,"1.0000","0.84862","0.84862" +"GO:0046549","retinal cone cell development",3,0,0.1,2654,"1.0000","0.84862","0.84862" +"GO:0060746","parental behavior",3,0,0.1,2655,"1.0000","0.84862","0.84862" +"GO:0071242","cellular response to ammonium ion",3,0,0.1,2656,"1.0000","0.84862","0.84862" +"GO:1902065","response to L-glutamate",3,0,0.1,2657,"1.0000","0.84862","0.84862" +"GO:0006352","DNA-templated transcription, initiation",30,1,0.97,1132,"0.6289","0.84895","0.84895" +"GO:0000726","non-recombinational repair",4,0,0.13,2658,"1.0000","0.84918","0.84918" +"GO:0006303","double-strand break repair via nonhomolo...",4,0,0.13,2659,"1.0000","0.84918","0.84918" +"GO:0031333","negative regulation of protein complex a...",6,0,0.19,2660,"1.0000","0.84924","0.84924" +"GO:0048514","blood vessel morphogenesis",6,0,0.19,2661,"1.0000","0.84924","0.84924" +"GO:0050878","regulation of body fluid levels",6,0,0.19,2662,"1.0000","0.84924","0.84924" +"GO:0051494","negative regulation of cytoskeleton orga...",6,0,0.19,2663,"1.0000","0.84924","0.84924" +"GO:0036314","response to sterol",5,0,0.16,2664,"1.0000","0.84931","0.84931" +"GO:0036315","cellular response to sterol",5,0,0.16,2665,"1.0000","0.84931","0.84931" +"GO:0000910","cytokinesis",15,0,0.49,2666,"1.0000","0.84953","0.84953" +"GO:0016074","snoRNA metabolic process",3,0,0.1,2667,"1.0000","0.84975","0.84975" +"GO:0009889","regulation of biosynthetic process",389,9,12.58,1281,"0.9000","0.85051","0.85051" +"GO:0060548","negative regulation of cell death",59,2,1.91,1087,"0.5754","0.85089","0.85089" +"GO:0006310","DNA recombination",23,0,0.74,2668,"1.0000","0.85115","0.85115" +"GO:0009116","nucleoside metabolic process",19,0,0.61,2669,"1.0000","0.06893","0.85133" +"GO:1901657","glycosyl compound metabolic process",19,0,0.61,2670,"1.0000","0.06893","0.85133" +"GO:0032007","negative regulation of TOR signaling",3,0,0.1,2671,"1.0000","0.85238","0.85238" +"GO:0061614","pri-miRNA transcription by RNA polymeras...",3,0,0.1,2672,"1.0000","0.85238","0.85238" +"GO:0071260","cellular response to mechanical stimulus",3,0,0.1,2673,"1.0000","0.85238","0.85238" +"GO:0097152","mesenchymal cell apoptotic process",3,0,0.1,2674,"1.0000","0.85238","0.85238" +"GO:1902893","regulation of pri-miRNA transcription by...",3,0,0.1,2675,"1.0000","0.85238","0.85238" +"GO:2001053","regulation of mesenchymal cell apoptotic...",3,0,0.1,2676,"1.0000","0.85238","0.85238" +"GO:2001054","negative regulation of mesenchymal cell ...",3,0,0.1,2677,"1.0000","0.85238","0.85238" +"GO:0071495","cellular response to endogenous stimulus",56,3,1.81,690,"0.2710","0.85243","0.85243" +"GO:0045927","positive regulation of growth",7,0,0.23,2678,"1.0000","0.85293","0.85293" +"GO:0007626","locomotory behavior",12,0,0.39,2679,"1.0000","0.85459","0.85459" +"GO:0030072","peptide hormone secretion",12,0,0.39,2680,"1.0000","0.85459","0.85459" +"GO:0030073","insulin secretion",12,0,0.39,2681,"1.0000","0.85459","0.85459" +"GO:0006793","phosphorus metabolic process",351,14,11.35,642,"0.2388","0.83064","0.85537" +"GO:0023061","signal release",25,1,0.81,1080,"0.5619","0.85569","0.85569" +"GO:0050804","modulation of chemical synaptic transmis...",10,1,0.32,727,"0.2806","0.85646","0.85646" +"GO:0099177","regulation of trans-synaptic signaling",10,1,0.32,728,"0.2806","0.85646","0.85646" +"GO:0031344","regulation of cell projection organizati...",38,2,1.23,836,"0.3497","0.85677","0.85677" +"GO:0120035","regulation of plasma membrane bounded ce...",38,2,1.23,837,"0.3497","0.85677","0.85677" +"GO:0006904","vesicle docking involved in exocytosis",7,0,0.23,2682,"1.0000","0.85720","0.85720" +"GO:0048278","vesicle docking",7,0,0.23,2683,"1.0000","0.85720","0.85720" +"GO:0140056","organelle localization by membrane tethe...",7,0,0.23,2684,"1.0000","0.85720","0.85720" +"GO:0009620","response to fungus",4,0,0.13,2685,"1.0000","0.85760","0.85760" +"GO:0032006","regulation of TOR signaling",12,0,0.39,2686,"1.0000","0.85794","0.85794" +"GO:0006952","defense response",60,3,1.94,761,"0.3067","0.56789","0.85867" +"GO:0051240","positive regulation of multicellular org...",50,3,1.62,602,"0.2185","0.85920","0.85920" +"GO:0006082","organic acid metabolic process",125,5,4.04,867,"0.3797","0.22969","0.85952" +"GO:0043436","oxoacid metabolic process",125,5,4.04,868,"0.3797","0.22969","0.85952" +"GO:0006730","one-carbon metabolic process",3,0,0.1,2687,"1.0000","0.85963","0.85963" +"GO:0019722","calcium-mediated signaling",7,0,0.23,2688,"1.0000","0.86059","0.86059" +"GO:0006900","vesicle budding from membrane",8,1,0.26,639,"0.2315","0.86070","0.86070" +"GO:0048699","generation of neurons",104,6,3.36,329,"0.1179","0.86092","0.86092" +"GO:0007478","leg disc morphogenesis",3,0,0.1,2689,"1.0000","0.86183","0.86183" +"GO:0007480","imaginal disc-derived leg morphogenesis",3,0,0.1,2690,"1.0000","0.86183","0.86183" +"GO:0035218","leg disc development",3,0,0.1,2691,"1.0000","0.86183","0.86183" +"GO:0035315","hair cell differentiation",3,0,0.1,2692,"1.0000","0.86183","0.86183" +"GO:0046907","intracellular transport",191,3,6.18,1310,"0.9534","0.86199","0.86199" +"GO:0032270","positive regulation of cellular protein ...",72,2,2.33,1175,"0.6843","0.86240","0.86240" +"GO:0006914","autophagy",41,3,1.33,415,"0.1452","0.86253","0.86253" +"GO:0061919","process utilizing autophagic mechanism",41,3,1.33,416,"0.1452","0.86253","0.86253" +"GO:0072522","purine-containing compound biosynthetic ...",38,1,1.23,1200,"0.7156","0.26543","0.86307" +"GO:0050793","regulation of developmental process",115,6,3.72,484,"0.1659","0.86348","0.86348" +"GO:0042440","pigment metabolic process",6,0,0.19,2693,"1.0000","0.86368","0.86368" +"GO:0007267","cell-cell signaling",66,3,2.13,844,"0.3606","0.86376","0.86376" +"GO:0034698","response to gonadotropin",5,0,0.16,2694,"1.0000","0.86382","0.86382" +"GO:0043112","receptor metabolic process",5,0,0.16,2695,"1.0000","0.86424","0.86424" +"GO:0060627","regulation of vesicle-mediated transport",29,2,0.94,650,"0.2409","0.86447","0.86447" +"GO:0010828","positive regulation of glucose transmemb...",4,0,0.13,2696,"1.0000","0.86459","0.86459" +"GO:0010720","positive regulation of cell development",23,2,0.74,492,"0.1693","0.86487","0.86487" +"GO:0051962","positive regulation of nervous system de...",23,2,0.74,493,"0.1693","0.86487","0.86487" +"GO:0006366","transcription by RNA polymerase II",116,4,3.75,1040,"0.5222","0.86530","0.86530" +"GO:0045596","negative regulation of cell differentiat...",27,2,0.87,598,"0.2167","0.86554","0.86554" +"GO:0007021","tubulin complex assembly",3,0,0.1,2697,"1.0000","0.86565","0.86565" +"GO:0019752","carboxylic acid metabolic process",124,5,4.01,862,"0.3732","0.26540","0.86569" +"GO:0065004","protein-DNA complex assembly",19,0,0.61,2698,"1.0000","0.86605","0.86605" +"GO:0006954","inflammatory response",10,0,0.32,2699,"1.0000","0.13707","0.86606" +"GO:0008284","positive regulation of cell proliferatio...",18,0,0.58,2700,"1.0000","0.86637","0.86637" +"GO:0051124","synaptic growth at neuromuscular junctio...",4,0,0.13,2701,"1.0000","0.86710","0.86710" +"GO:0009895","negative regulation of catabolic process",14,0,0.45,2702,"1.0000","0.86746","0.86746" +"GO:0045747","positive regulation of Notch signaling p...",5,0,0.16,2703,"1.0000","0.86830","0.86830" +"GO:0061025","membrane fusion",8,1,0.26,640,"0.2315","0.86870","0.86870" +"GO:0046662","regulation of oviposition",3,0,0.1,2704,"1.0000","0.86997","0.86997" +"GO:1901700","response to oxygen-containing compound",80,2,2.59,1217,"0.7394","0.87021","0.87021" +"GO:0006811","ion transport",152,5,4.92,1066,"0.5516","0.87096","0.87096" +"GO:0055082","cellular chemical homeostasis",25,0,0.81,2705,"1.0000","0.87151","0.87151" +"GO:0021575","hindbrain morphogenesis",4,0,0.13,2706,"1.0000","0.87206","0.87206" +"GO:0021587","cerebellum morphogenesis",4,0,0.13,2707,"1.0000","0.87206","0.87206" +"GO:0050848","regulation of calcium-mediated signaling",4,0,0.13,2708,"1.0000","0.87206","0.87206" +"GO:0010632","regulation of epithelial cell migration",5,0,0.16,2709,"1.0000","0.87273","0.87273" +"GO:0010634","positive regulation of epithelial cell m...",5,0,0.16,2710,"1.0000","0.87273","0.87273" +"GO:0043242","negative regulation of protein complex d...",5,0,0.16,2711,"1.0000","0.87273","0.87273" +"GO:1901879","regulation of protein depolymerization",5,0,0.16,2712,"1.0000","0.87273","0.87273" +"GO:1901880","negative regulation of protein depolymer...",5,0,0.16,2713,"1.0000","0.87273","0.87273" +"GO:1901701","cellular response to oxygen-containing c...",50,2,1.62,1015,"0.4855","0.87277","0.87277" +"GO:1902533","positive regulation of intracellular sig...",31,1,1,1141,"0.6410","0.87293","0.87293" +"GO:0071482","cellular response to light stimulus",4,0,0.13,2714,"1.0000","0.87328","0.87328" +"GO:0006482","protein demethylation",8,0,0.26,2715,"1.0000","0.87481","0.87481" +"GO:0008214","protein dealkylation",8,0,0.26,2716,"1.0000","0.87481","0.87481" +"GO:0014015","positive regulation of gliogenesis",4,0,0.13,2717,"1.0000","0.87512","0.87512" +"GO:0006354","DNA-templated transcription, elongation",19,1,0.61,985,"0.4656","0.87550","0.87550" +"GO:0006796","phosphate-containing compound metabolic ...",348,14,11.26,612,"0.2290","0.85188","0.87554" +"GO:0008544","epidermis development",12,0,0.39,2718,"1.0000","0.87634","0.87634" +"GO:0006493","protein O-linked glycosylation",13,1,0.42,823,"0.3484","0.87678","0.87678" +"GO:0030968","endoplasmic reticulum unfolded protein r...",6,0,0.19,2719,"1.0000","0.87706","0.87706" +"GO:0034620","cellular response to unfolded protein",6,0,0.19,2720,"1.0000","0.87706","0.87706" +"GO:0032386","regulation of intracellular transport",31,1,1,1142,"0.6410","0.87712","0.87712" +"GO:0035270","endocrine system development",5,0,0.16,2721,"1.0000","0.87777","0.87777" +"GO:0071479","cellular response to ionizing radiation",5,0,0.16,2722,"1.0000","0.87777","0.87777" +"GO:0060491","regulation of cell projection assembly",15,0,0.49,2723,"1.0000","0.87843","0.87843" +"GO:0120032","regulation of plasma membrane bounded ce...",15,0,0.49,2724,"1.0000","0.87843","0.87843" +"GO:0001824","blastocyst development",6,0,0.19,2725,"1.0000","0.87854","0.87854" +"GO:0031326","regulation of cellular biosynthetic proc...",386,9,12.49,1279,"0.8949","0.87912","0.87912" +"GO:0006338","chromatin remodeling",17,0,0.55,2726,"1.0000","0.87934","0.87934" +"GO:0008272","sulfate transport",4,0,0.13,2727,"1.0000","0.87936","0.87936" +"GO:0021761","limbic system development",5,0,0.16,2728,"1.0000","0.87979","0.87979" +"GO:0043409","negative regulation of MAPK cascade",5,0,0.16,2729,"1.0000","0.87979","0.87979" +"GO:0070727","cellular macromolecule localization",181,3,5.85,1305,"0.9399","0.88010","0.88010" +"GO:2000145","regulation of cell motility",25,1,0.81,1081,"0.5619","0.88126","0.88126" +"GO:0007423","sensory organ development",50,1,1.62,1249,"0.8095","0.88217","0.88217" +"GO:0090090","negative regulation of canonical Wnt sig...",5,0,0.16,2730,"1.0000","0.88247","0.88247" +"GO:0051247","positive regulation of protein metabolic...",75,2,2.43,1197,"0.7060","0.88264","0.88264" +"GO:1901566","organonitrogen compound biosynthetic pro...",356,10,11.51,1210,"0.7325","9.7e-10","0.88284" +"GO:0018209","peptidyl-serine modification",8,0,0.26,2731,"1.0000","0.88332","0.88332" +"GO:0007259","JAK-STAT cascade",3,0,0.1,2732,"1.0000","0.88362","0.88362" +"GO:0046425","regulation of JAK-STAT cascade",3,0,0.1,2733,"1.0000","0.88362","0.88362" +"GO:0097696","STAT cascade",3,0,0.1,2734,"1.0000","0.88362","0.88362" +"GO:1904892","regulation of STAT cascade",3,0,0.1,2735,"1.0000","0.88362","0.88362" +"GO:0070723","response to cholesterol",3,0,0.1,2736,"1.0000","0.88379","0.88379" +"GO:0071397","cellular response to cholesterol",3,0,0.1,2737,"1.0000","0.88379","0.88379" +"GO:0015833","peptide transport",152,4,4.92,1215,"0.7349","0.87034","0.88389" +"GO:0042886","amide transport",152,4,4.92,1216,"0.7349","0.87034","0.88389" +"GO:0050803","regulation of synapse structure or activ...",12,1,0.39,795,"0.3265","0.88499","0.88499" +"GO:0050807","regulation of synapse organization",12,1,0.39,796,"0.3265","0.88499","0.88499" +"GO:1902117","positive regulation of organelle assembl...",3,0,0.1,2738,"1.0000","0.88515","0.88515" +"GO:0051272","positive regulation of cellular componen...",15,0,0.49,2739,"1.0000","0.88537","0.88537" +"GO:0044087","regulation of cellular component biogene...",66,1,2.13,1278,"0.8886","0.88569","0.88569" +"GO:0030334","regulation of cell migration",23,1,0.74,1050,"0.5319","0.88594","0.88594" +"GO:0051222","positive regulation of protein transport",19,1,0.61,986,"0.4656","0.88630","0.88630" +"GO:1904951","positive regulation of establishment of ...",19,1,0.61,987,"0.4656","0.88630","0.88630" +"GO:0061564","axon development",42,2,1.36,894,"0.3966","0.88638","0.88638" +"GO:0009914","hormone transport",13,0,0.42,2740,"1.0000","0.88647","0.88647" +"GO:0046879","hormone secretion",13,0,0.42,2741,"1.0000","0.88647","0.88647" +"GO:0016999","antibiotic metabolic process",16,0,0.52,2742,"1.0000","0.88840","0.88840" +"GO:1902531","regulation of intracellular signal trans...",79,1,2.56,1296,"0.9281","0.88843","0.88843" +"GO:0050808","synapse organization",19,1,0.61,988,"0.4656","0.88852","0.88852" +"GO:0008582","regulation of synaptic growth at neuromu...",3,0,0.1,2743,"1.0000","0.88854","0.88854" +"GO:1904396","regulation of neuromuscular junction dev...",3,0,0.1,2744,"1.0000","0.88854","0.88854" +"GO:0015031","protein transport",151,4,4.88,1209,"0.7300","0.87518","0.88860" +"GO:0006767","water-soluble vitamin metabolic process",4,0,0.13,2745,"1.0000","0.88882","0.88882" +"GO:0010941","regulation of cell death",85,2,2.75,1229,"0.7696","0.88885","0.88885" +"GO:0031529","ruffle organization",4,0,0.13,2746,"1.0000","0.89287","0.89287" +"GO:0097178","ruffle assembly",4,0,0.13,2747,"1.0000","0.89287","0.89287" +"GO:1900027","regulation of ruffle assembly",4,0,0.13,2748,"1.0000","0.89287","0.89287" +"GO:0019318","hexose metabolic process",15,1,0.49,889,"0.3901","0.89296","0.89296" +"GO:0010827","regulation of glucose transmembrane tran...",6,0,0.19,2749,"1.0000","0.89342","0.89342" +"GO:1904659","glucose transmembrane transport",6,0,0.19,2750,"1.0000","0.89342","0.89342" +"GO:0071214","cellular response to abiotic stimulus",16,0,0.52,2751,"1.0000","0.89418","0.89418" +"GO:0104004","cellular response to environmental stimu...",16,0,0.52,2752,"1.0000","0.89418","0.89418" +"GO:0016571","histone methylation",8,0,0.26,2753,"1.0000","0.89484","0.89484" +"GO:0034220","ion transmembrane transport",78,3,2.52,992,"0.4659","0.89486","0.89486" +"GO:0007050","cell cycle arrest",11,0,0.36,2754,"1.0000","0.89517","0.89517" +"GO:0050673","epithelial cell proliferation",11,0,0.36,2755,"1.0000","0.89517","0.89517" +"GO:0042692","muscle cell differentiation",18,1,0.58,964,"0.4476","0.89517","0.89517" +"GO:0070838","divalent metal ion transport",21,0,0.68,2756,"1.0000","0.89543","0.89543" +"GO:0072511","divalent inorganic cation transport",21,0,0.68,2757,"1.0000","0.89543","0.89543" +"GO:0048483","autonomic nervous system development",3,0,0.1,2758,"1.0000","0.89616","0.89616" +"GO:0048484","enteric nervous system development",3,0,0.1,2759,"1.0000","0.89616","0.89616" +"GO:0016358","dendrite development",13,1,0.42,824,"0.3484","0.89616","0.89616" +"GO:0043243","positive regulation of protein complex d...",3,0,0.1,2760,"1.0000","0.89665","0.89665" +"GO:0001525","angiogenesis",4,0,0.13,2761,"1.0000","0.89685","0.89685" +"GO:0007596","blood coagulation",4,0,0.13,2762,"1.0000","0.89685","0.89685" +"GO:0007599","hemostasis",4,0,0.13,2763,"1.0000","0.89685","0.89685" +"GO:0030042","actin filament depolymerization",4,0,0.13,2764,"1.0000","0.89685","0.89685" +"GO:0030834","regulation of actin filament depolymeriz...",4,0,0.13,2765,"1.0000","0.89685","0.89685" +"GO:0030835","negative regulation of actin filament de...",4,0,0.13,2766,"1.0000","0.89685","0.89685" +"GO:0032272","negative regulation of protein polymeriz...",4,0,0.13,2767,"1.0000","0.89685","0.89685" +"GO:0045214","sarcomere organization",4,0,0.13,2768,"1.0000","0.89685","0.89685" +"GO:0050817","coagulation",4,0,0.13,2769,"1.0000","0.89685","0.89685" +"GO:0016241","regulation of macroautophagy",10,0,0.32,2770,"1.0000","0.89703","0.89703" +"GO:0048468","cell development",144,6,4.66,776,"0.3215","0.89804","0.89804" +"GO:0006633","fatty acid biosynthetic process",13,1,0.42,825,"0.3484","0.89851","0.89851" +"GO:0033673","negative regulation of kinase activity",9,0,0.29,2771,"1.0000","0.89893","0.89893" +"GO:0061061","muscle structure development",48,3,1.55,547,"0.2015","0.89908","0.89908" +"GO:0048592","eye morphogenesis",29,0,0.94,2772,"1.0000","0.89919","0.89919" +"GO:1900180","regulation of protein localization to nu...",3,0,0.1,2773,"1.0000","0.89924","0.89924" +"GO:0010769","regulation of cell morphogenesis involve...",11,1,0.36,760,"0.3039","0.89926","0.89926" +"GO:0002790","peptide secretion",20,1,0.65,1009,"0.4830","0.47875","0.89951" +"GO:0009306","protein secretion",20,1,0.65,1010,"0.4830","0.47875","0.89951" +"GO:0019068","virion assembly",5,0,0.16,2774,"1.0000","0.90000","0.90000" +"GO:0007269","neurotransmitter secretion",13,1,0.42,826,"0.3484","0.90022","0.90022" +"GO:0099643","signal release from synapse",13,1,0.42,827,"0.3484","0.90022","0.90022" +"GO:0006368","transcription elongation from RNA polyme...",15,0,0.49,2775,"1.0000","0.90048","0.90048" +"GO:0043524","negative regulation of neuron apoptotic ...",8,0,0.26,2776,"1.0000","0.90198","0.90198" +"GO:0071702","organic substance transport",210,6,6.79,1176,"0.6849","0.89627","0.90232" +"GO:0021692","cerebellar Purkinje cell layer morphogen...",3,0,0.1,2777,"1.0000","0.90245","0.90245" +"GO:0021696","cerebellar cortex morphogenesis",3,0,0.1,2778,"1.0000","0.90245","0.90245" +"GO:0050832","defense response to fungus",3,0,0.1,2779,"1.0000","0.90245","0.90245" +"GO:0009653","anatomical structure morphogenesis",164,8,5.3,481,"0.1580","0.90301","0.90301" +"GO:0033036","macromolecule localization",252,6,8.15,1260,"0.8385","0.90177","0.90455" +"GO:0051270","regulation of cellular component movemen...",29,1,0.94,1126,"0.6164","0.90466","0.90466" +"GO:0006323","DNA packaging",14,0,0.45,2780,"1.0000","0.90479","0.90479" +"GO:0014009","glial cell proliferation",3,0,0.1,2781,"1.0000","0.90482","0.90482" +"GO:0032088","negative regulation of NF-kappaB transcr...",3,0,0.1,2782,"1.0000","0.90482","0.90482" +"GO:0060251","regulation of glial cell proliferation",3,0,0.1,2783,"1.0000","0.90482","0.90482" +"GO:0003002","regionalization",27,2,0.87,599,"0.2167","0.90525","0.90525" +"GO:0051046","regulation of secretion",16,0,0.52,2784,"1.0000","0.90535","0.90535" +"GO:1903530","regulation of secretion by cell",16,0,0.52,2785,"1.0000","0.90535","0.90535" +"GO:0050708","regulation of protein secretion",11,0,0.36,2786,"1.0000","0.90673","0.90673" +"GO:0016051","carbohydrate biosynthetic process",17,1,0.55,941,"0.4291","0.90698","0.90698" +"GO:0031346","positive regulation of cell projection o...",14,0,0.45,2787,"1.0000","0.90784","0.90784" +"GO:0060997","dendritic spine morphogenesis",3,0,0.1,2788,"1.0000","0.90842","0.90842" +"GO:0030335","positive regulation of cell migration",11,0,0.36,2789,"1.0000","0.90868","0.90868" +"GO:0006469","negative regulation of protein kinase ac...",8,0,0.26,2790,"1.0000","0.90967","0.90967" +"GO:0042325","regulation of phosphorylation",63,1,2.04,1276,"0.8768","0.91119","0.91119" +"GO:0006635","fatty acid beta-oxidation",3,0,0.1,2791,"1.0000","0.91134","0.91134" +"GO:0048869","cellular developmental process",215,7,6.95,1065,"0.5511","0.91254","0.91254" +"GO:0007186","G protein-coupled receptor signaling pat...",44,1,1.42,1228,"0.7672","0.91287","0.91287" +"GO:0031175","neuron projection development",62,3,2.01,778,"0.3247","0.91291","0.91291" +"GO:0001678","cellular glucose homeostasis",7,0,0.23,2792,"1.0000","0.91302","0.91302" +"GO:0022604","regulation of cell morphogenesis",13,1,0.42,828,"0.3484","0.91416","0.91416" +"GO:0007409","axonogenesis",35,2,1.13,771,"0.3137","0.91423","0.91423" +"GO:0032872","regulation of stress-activated MAPK casc...",4,0,0.13,2793,"1.0000","0.91424","0.91424" +"GO:0070302","regulation of stress-activated protein k...",4,0,0.13,2794,"1.0000","0.91424","0.91424" +"GO:0031399","regulation of protein modification proce...",89,2,2.88,1237,"0.7915","0.91435","0.91435" +"GO:0048522","positive regulation of cellular process",289,9,9.35,1112,"0.6007","0.91466","0.91466" +"GO:0045165","cell fate commitment",17,1,0.55,942,"0.4291","0.91510","0.91510" +"GO:0055076","transition metal ion homeostasis",8,0,0.26,2795,"1.0000","0.91563","0.91563" +"GO:0048771","tissue remodeling",10,0,0.32,2796,"1.0000","0.91702","0.91702" +"GO:0006379","mRNA cleavage",8,0,0.26,2797,"1.0000","0.91709","0.91709" +"GO:0043631","RNA polyadenylation",8,0,0.26,2798,"1.0000","0.91709","0.91709" +"GO:1902017","regulation of cilium assembly",10,0,0.32,2799,"1.0000","0.91735","0.91735" +"GO:0072348","sulfur compound transport",6,0,0.19,2800,"1.0000","0.91823","0.91823" +"GO:0010557","positive regulation of macromolecule bio...",60,1,1.94,1269,"0.8637","0.91889","0.91889" +"GO:0007029","endoplasmic reticulum organization",8,0,0.26,2801,"1.0000","0.91926","0.91926" +"GO:0016226","iron-sulfur cluster assembly",10,0,0.32,2802,"1.0000","0.91945","0.91945" +"GO:0031163","metallo-sulfur cluster assembly",10,0,0.32,2803,"1.0000","0.91945","0.91945" +"GO:0071417","cellular response to organonitrogen comp...",13,0,0.42,2804,"1.0000","0.92065","0.92065" +"GO:0030168","platelet activation",3,0,0.1,2805,"1.0000","0.92162","0.92162" +"GO:0030837","negative regulation of actin filament po...",3,0,0.1,2806,"1.0000","0.92162","0.92162" +"GO:0034109","homotypic cell-cell adhesion",3,0,0.1,2807,"1.0000","0.92162","0.92162" +"GO:0043542","endothelial cell migration",3,0,0.1,2808,"1.0000","0.92162","0.92162" +"GO:0051693","actin filament capping",3,0,0.1,2809,"1.0000","0.92162","0.92162" +"GO:0070527","platelet aggregation",3,0,0.1,2810,"1.0000","0.92162","0.92162" +"GO:0051239","regulation of multicellular organismal p...",122,6,3.95,546,"0.2002","0.92216","0.92216" +"GO:0005996","monosaccharide metabolic process",20,1,0.65,1011,"0.4830","0.92299","0.92299" +"GO:0098742","cell-cell adhesion via plasma-membrane a...",13,1,0.42,829,"0.3484","0.92336","0.92336" +"GO:0015696","ammonium transport",9,0,0.29,2811,"1.0000","0.92370","0.92370" +"GO:0099173","postsynapse organization",7,0,0.23,2812,"1.0000","0.92384","0.92384" +"GO:0032501","multicellular organismal process",396,17,12.81,404,"0.1314","0.89062","0.92390" +"GO:0030258","lipid modification",14,0,0.45,2813,"1.0000","0.92430","0.92430" +"GO:0048523","negative regulation of cellular process",260,5,8.41,1299,"0.9337","0.92464","0.92464" +"GO:0032786","positive regulation of DNA-templated tra...",4,0,0.13,2814,"1.0000","0.92490","0.92490" +"GO:0030154","cell differentiation",207,7,6.7,1026,"0.5095","0.92567","0.92567" +"GO:0006886","intracellular protein transport",122,3,3.95,1227,"0.7648","0.92577","0.92577" +"GO:0005975","carbohydrate metabolic process",70,2,2.26,1165,"0.6692","0.92585","0.92585" +"GO:0007350","blastoderm segmentation",6,0,0.19,2815,"1.0000","0.92600","0.92600" +"GO:0071478","cellular response to radiation",11,0,0.36,2816,"1.0000","0.92610","0.92610" +"GO:0007155","cell adhesion",53,2,1.71,1036,"0.5167","0.92639","0.92639" +"GO:0022610","biological adhesion",53,2,1.71,1037,"0.5167","0.92639","0.92639" +"GO:0050678","regulation of epithelial cell proliferat...",10,0,0.32,2817,"1.0000","0.92639","0.92639" +"GO:0030278","regulation of ossification",7,0,0.23,2818,"1.0000","0.92709","0.92709" +"GO:0070371","ERK1 and ERK2 cascade",7,0,0.23,2819,"1.0000","0.92709","0.92709" +"GO:0002791","regulation of peptide secretion",12,0,0.39,2820,"1.0000","0.92823","0.92823" +"GO:0046883","regulation of hormone secretion",12,0,0.39,2821,"1.0000","0.92823","0.92823" +"GO:0051047","positive regulation of secretion",12,0,0.39,2822,"1.0000","0.92823","0.92823" +"GO:1903532","positive regulation of secretion by cell",12,0,0.39,2823,"1.0000","0.92823","0.92823" +"GO:0030178","negative regulation of Wnt signaling pat...",6,0,0.19,2824,"1.0000","0.92877","0.92877" +"GO:0019751","polyol metabolic process",6,0,0.19,2825,"1.0000","0.92975","0.92975" +"GO:0048193","Golgi vesicle transport",36,1,1.16,1189,"0.6960","0.92998","0.92998" +"GO:0009791","post-embryonic development",33,1,1.07,1163,"0.6641","0.93015","0.93015" +"GO:0018242","protein O-linked glycosylation via serin...",4,0,0.13,2826,"1.0000","0.93024","0.93024" +"GO:0001942","hair follicle development",5,0,0.16,2827,"1.0000","0.93055","0.93055" +"GO:0022404","molting cycle process",5,0,0.16,2828,"1.0000","0.93055","0.93055" +"GO:0022405","hair cycle process",5,0,0.16,2829,"1.0000","0.93055","0.93055" +"GO:0046323","glucose import",5,0,0.16,2830,"1.0000","0.93055","0.93055" +"GO:0046324","regulation of glucose import",5,0,0.16,2831,"1.0000","0.93055","0.93055" +"GO:0050714","positive regulation of protein secretion",5,0,0.16,2832,"1.0000","0.93055","0.93055" +"GO:0098773","skin epidermis development",5,0,0.16,2833,"1.0000","0.93055","0.93055" +"GO:0000904","cell morphogenesis involved in different...",51,2,1.65,1018,"0.4961","0.93083","0.93083" +"GO:0071322","cellular response to carbohydrate stimul...",7,0,0.23,2834,"1.0000","0.93153","0.93153" +"GO:0001505","regulation of neurotransmitter levels",25,1,0.81,1082,"0.5619","0.93195","0.93195" +"GO:0034219","carbohydrate transmembrane transport",8,0,0.26,2835,"1.0000","0.93309","0.93309" +"GO:0045055","regulated exocytosis",11,0,0.36,2836,"1.0000","0.93403","0.93403" +"GO:0090276","regulation of peptide hormone secretion",11,0,0.36,2837,"1.0000","0.93403","0.93403" +"GO:0098542","defense response to other organism",27,1,0.87,1105,"0.5901","0.93407","0.93407" +"GO:0021675","nerve development",4,0,0.13,2838,"1.0000","0.93493","0.93493" +"GO:0046328","regulation of JNK cascade",3,0,0.1,2839,"1.0000","0.93499","0.93499" +"GO:0009798","axis specification",16,1,0.52,917,"0.4099","0.93514","0.93514" +"GO:0030323","respiratory tube development",8,0,0.26,2840,"1.0000","0.93637","0.93637" +"GO:0046661","male sex differentiation",8,0,0.26,2841,"1.0000","0.93637","0.93637" +"GO:0006378","mRNA polyadenylation",6,0,0.19,2842,"1.0000","0.93719","0.93719" +"GO:0032990","cell part morphogenesis",46,2,1.49,957,"0.4420","0.93750","0.93750" +"GO:0046903","secretion",58,2,1.88,1083,"0.5660","0.72608","0.93868" +"GO:0006821","chloride transport",3,0,0.1,2843,"1.0000","0.93932","0.93932" +"GO:0048284","organelle fusion",10,0,0.32,2844,"1.0000","0.93986","0.93986" +"GO:0050796","regulation of insulin secretion",10,0,0.32,2845,"1.0000","0.93986","0.93986" +"GO:0009880","embryonic pattern specification",13,1,0.42,830,"0.3484","0.94013","0.94013" +"GO:0048870","cell motility",44,2,1.42,923,"0.4195","0.94017","0.94017" +"GO:0051674","localization of cell",44,2,1.42,924,"0.4195","0.94017","0.94017" +"GO:0048667","cell morphogenesis involved in neuron di...",41,2,1.33,872,"0.3850","0.94026","0.94026" +"GO:0098609","cell-cell adhesion",32,2,1.04,693,"0.2773","0.94036","0.94036" +"GO:0010332","response to gamma radiation",3,0,0.1,2846,"1.0000","0.94087","0.94087" +"GO:0048639","positive regulation of developmental gro...",3,0,0.1,2847,"1.0000","0.94087","0.94087" +"GO:0071480","cellular response to gamma radiation",3,0,0.1,2848,"1.0000","0.94087","0.94087" +"GO:0042558","pteridine-containing compound metabolic ...",5,0,0.16,2849,"1.0000","0.94113","0.94113" +"GO:0046173","polyol biosynthetic process",5,0,0.16,2850,"1.0000","0.94113","0.94113" +"GO:0008645","hexose transmembrane transport",7,0,0.23,2851,"1.0000","0.94122","0.94122" +"GO:0015749","monosaccharide transmembrane transport",7,0,0.23,2852,"1.0000","0.94122","0.94122" +"GO:0034103","regulation of tissue remodeling",7,0,0.23,2853,"1.0000","0.94122","0.94122" +"GO:0046545","development of primary female sexual cha...",8,0,0.26,2854,"1.0000","0.94146","0.94146" +"GO:0046660","female sex differentiation",8,0,0.26,2855,"1.0000","0.94146","0.94146" +"GO:0007265","Ras protein signal transduction",13,1,0.42,831,"0.3484","0.94173","0.94173" +"GO:0001503","ossification",9,0,0.29,2856,"1.0000","0.94190","0.94190" +"GO:0051146","striated muscle cell differentiation",15,1,0.49,890,"0.3901","0.94284","0.94284" +"GO:0048812","neuron projection morphogenesis",42,2,1.36,895,"0.3966","0.94285","0.94285" +"GO:0048858","cell projection morphogenesis",42,2,1.36,896,"0.3966","0.94285","0.94285" +"GO:0120039","plasma membrane bounded cell projection ...",42,2,1.36,897,"0.3966","0.94285","0.94285" +"GO:0010256","endomembrane system organization",32,1,1.04,1151,"0.6528","0.94348","0.94348" +"GO:0030279","negative regulation of ossification",6,0,0.19,2857,"1.0000","0.94354","0.94354" +"GO:0010171","body morphogenesis",3,0,0.1,2858,"1.0000","0.94489","0.94489" +"GO:0120034","positive regulation of plasma membrane b...",5,0,0.16,2859,"1.0000","0.94502","0.94502" +"GO:0010212","response to ionizing radiation",8,0,0.26,2860,"1.0000","0.94575","0.94575" +"GO:0031123","RNA 3'-end processing",13,0,0.42,2861,"1.0000","0.94629","0.94629" +"GO:0008654","phospholipid biosynthetic process",27,0,0.87,2862,"1.0000","0.94680","0.94680" +"GO:0051716","cellular response to stimulus",514,14,16.63,1243,"0.8022","0.94700","0.94700" +"GO:0006816","calcium ion transport",17,0,0.55,2863,"1.0000","0.94703","0.94703" +"GO:0031330","negative regulation of cellular cataboli...",12,0,0.39,2864,"1.0000","0.94755","0.94755" +"GO:0048666","neuron development",80,3,2.59,1000,"0.4828","0.94760","0.94760" +"GO:0016477","cell migration",38,1,1.23,1201,"0.7156","0.94822","0.94822" +"GO:0070897","transcription preinitiation complex asse...",7,0,0.23,2865,"1.0000","0.94860","0.94860" +"GO:0001654","eye development",45,0,1.46,2866,"1.0000","0.94874","0.94874" +"GO:0048880","sensory system development",45,0,1.46,2867,"1.0000","0.94874","0.94874" +"GO:0150063","visual system development",45,0,1.46,2868,"1.0000","0.94874","0.94874" +"GO:0016482","cytosolic transport",13,0,0.42,2869,"1.0000","0.94891","0.94891" +"GO:0006721","terpenoid metabolic process",6,0,0.19,2870,"1.0000","0.94891","0.94891" +"GO:0007009","plasma membrane organization",6,0,0.19,2871,"1.0000","0.94942","0.94942" +"GO:0032365","intracellular lipid transport",6,0,0.19,2872,"1.0000","0.94942","0.94942" +"GO:0001932","regulation of protein phosphorylation",51,1,1.65,1252,"0.8157","0.94966","0.94966" +"GO:0051174","regulation of phosphorus metabolic proce...",73,1,2.36,1290,"0.9120","0.94980","0.94980" +"GO:1901615","organic hydroxy compound metabolic proce...",27,1,0.87,1106,"0.5901","0.95006","0.95006" +"GO:0071229","cellular response to acid chemical",8,0,0.26,2873,"1.0000","0.95048","0.95048" +"GO:0019222","regulation of metabolic process",529,11,17.11,1318,"0.9692","0.95094","0.95094" +"GO:0040014","regulation of multicellular organism gro...",4,0,0.13,2874,"1.0000","0.95263","0.95263" +"GO:0007163","establishment or maintenance of cell pol...",10,0,0.32,2875,"1.0000","0.95336","0.95336" +"GO:0007389","pattern specification process",35,2,1.13,772,"0.3137","0.95391","0.95391" +"GO:0060562","epithelial tube morphogenesis",27,1,0.87,1107,"0.5901","0.95471","0.95471" +"GO:0043588","skin development",9,0,0.29,2876,"1.0000","0.95480","0.95480" +"GO:0090596","sensory organ morphogenesis",31,0,1,2877,"1.0000","0.95529","0.95529" +"GO:0019233","sensory perception of pain",4,0,0.13,2878,"1.0000","0.95578","0.95578" +"GO:0031644","regulation of neurological system proces...",4,0,0.13,2879,"1.0000","0.95578","0.95578" +"GO:0044091","membrane biogenesis",4,0,0.13,2880,"1.0000","0.95578","0.95578" +"GO:0097061","dendritic spine organization",4,0,0.13,2881,"1.0000","0.95578","0.95578" +"GO:0099175","regulation of postsynapse organization",4,0,0.13,2882,"1.0000","0.95578","0.95578" +"GO:0106027","neuron projection organization",4,0,0.13,2883,"1.0000","0.95578","0.95578" +"GO:0019220","regulation of phosphate metabolic proces...",72,1,2.33,1286,"0.9090","0.95626","0.95626" +"GO:0007030","Golgi organization",15,1,0.49,891,"0.3901","0.95659","0.95659" +"GO:0070588","calcium ion transmembrane transport",11,0,0.36,2884,"1.0000","0.95692","0.95692" +"GO:0006479","protein methylation",24,0,0.78,2885,"1.0000","0.95711","0.95711" +"GO:0008213","protein alkylation",24,0,0.78,2886,"1.0000","0.95711","0.95711" +"GO:0032989","cellular component morphogenesis",77,3,2.49,968,"0.4574","0.95721","0.95721" +"GO:0001523","retinoid metabolic process",5,0,0.16,2887,"1.0000","0.95726","0.95726" +"GO:0016101","diterpenoid metabolic process",5,0,0.16,2888,"1.0000","0.95726","0.95726" +"GO:0002274","myeloid leukocyte activation",7,0,0.23,2889,"1.0000","0.95756","0.95756" +"GO:0006906","vesicle fusion",7,0,0.23,2890,"1.0000","0.95756","0.95756" +"GO:0090174","organelle membrane fusion",7,0,0.23,2891,"1.0000","0.95756","0.95756" +"GO:0097479","synaptic vesicle localization",7,0,0.23,2892,"1.0000","0.95756","0.95756" +"GO:0030301","cholesterol transport",5,0,0.16,2893,"1.0000","0.95768","0.95768" +"GO:0032366","intracellular sterol transport",5,0,0.16,2894,"1.0000","0.95768","0.95768" +"GO:0031323","regulation of cellular metabolic process",491,10,15.88,1317,"0.9688","0.95821","0.95821" +"GO:0009611","response to wounding",24,0,0.78,2895,"1.0000","0.95866","0.95866" +"GO:0035556","intracellular signal transduction",129,3,4.17,1242,"0.7973","0.95873","0.95873" +"GO:0060271","cilium assembly",21,0,0.68,2896,"1.0000","0.95960","0.95960" +"GO:0007635","chemosensory behavior",4,0,0.13,2897,"1.0000","0.95995","0.95995" +"GO:0000902","cell morphogenesis",61,3,1.97,774,"0.3157","0.96111","0.96111" +"GO:0050896","response to stimulus",666,21,21.54,1109,"0.5943","0.92344","0.96121" +"GO:0007411","axon guidance",24,1,0.78,1062,"0.5472","0.96228","0.96228" +"GO:0097485","neuron projection guidance",24,1,0.78,1063,"0.5472","0.96228","0.96228" +"GO:0032008","positive regulation of TOR signaling",5,0,0.16,2898,"1.0000","0.96288","0.96288" +"GO:0006383","transcription by RNA polymerase III",5,0,0.16,2899,"1.0000","0.96303","0.96303" +"GO:0051650","establishment of vesicle localization",16,1,0.52,918,"0.4099","0.96307","0.96307" +"GO:0006541","glutamine metabolic process",3,0,0.1,2900,"1.0000","0.96336","0.96336" +"GO:0002263","cell activation involved in immune respo...",6,0,0.19,2901,"1.0000","0.96352","0.96352" +"GO:0002275","myeloid cell activation involved in immu...",6,0,0.19,2902,"1.0000","0.96352","0.96352" +"GO:0002283","neutrophil activation involved in immune...",6,0,0.19,2903,"1.0000","0.96352","0.96352" +"GO:0002366","leukocyte activation involved in immune ...",6,0,0.19,2904,"1.0000","0.96352","0.96352" +"GO:0002444","myeloid leukocyte mediated immunity",6,0,0.19,2905,"1.0000","0.96352","0.96352" +"GO:0002446","neutrophil mediated immunity",6,0,0.19,2906,"1.0000","0.96352","0.96352" +"GO:0002793","positive regulation of peptide secretion",6,0,0.19,2907,"1.0000","0.96352","0.96352" +"GO:0036230","granulocyte activation",6,0,0.19,2908,"1.0000","0.96352","0.96352" +"GO:0042119","neutrophil activation",6,0,0.19,2909,"1.0000","0.96352","0.96352" +"GO:0043299","leukocyte degranulation",6,0,0.19,2910,"1.0000","0.96352","0.96352" +"GO:0043312","neutrophil degranulation",6,0,0.19,2911,"1.0000","0.96352","0.96352" +"GO:0046887","positive regulation of hormone secretion",6,0,0.19,2912,"1.0000","0.96352","0.96352" +"GO:0048489","synaptic vesicle transport",6,0,0.19,2913,"1.0000","0.96352","0.96352" +"GO:0051668","localization within membrane",6,0,0.19,2914,"1.0000","0.96352","0.96352" +"GO:0051963","regulation of synapse assembly",6,0,0.19,2915,"1.0000","0.96352","0.96352" +"GO:0097480","establishment of synaptic vesicle locali...",6,0,0.19,2916,"1.0000","0.96352","0.96352" +"GO:0006729","tetrahydrobiopterin biosynthetic process",3,0,0.1,2917,"1.0000","0.96427","0.96427" +"GO:0034311","diol metabolic process",3,0,0.1,2918,"1.0000","0.96427","0.96427" +"GO:0034312","diol biosynthetic process",3,0,0.1,2919,"1.0000","0.96427","0.96427" +"GO:0042559","pteridine-containing compound biosynthet...",3,0,0.1,2920,"1.0000","0.96427","0.96427" +"GO:0046146","tetrahydrobiopterin metabolic process",3,0,0.1,2921,"1.0000","0.96427","0.96427" +"GO:0042147","retrograde transport, endosome to Golgi",9,0,0.29,2922,"1.0000","0.96439","0.96439" +"GO:0014013","regulation of gliogenesis",5,0,0.16,2923,"1.0000","0.96578","0.96578" +"GO:0032367","intracellular cholesterol transport",4,0,0.13,2924,"1.0000","0.96601","0.96601" +"GO:0046849","bone remodeling",4,0,0.13,2925,"1.0000","0.96601","0.96601" +"GO:0046850","regulation of bone remodeling",4,0,0.13,2926,"1.0000","0.96601","0.96601" +"GO:0006885","regulation of pH",6,0,0.19,2927,"1.0000","0.96608","0.96608" +"GO:0055067","monovalent inorganic cation homeostasis",6,0,0.19,2928,"1.0000","0.96608","0.96608" +"GO:1902115","regulation of organelle assembly",19,1,0.61,989,"0.4656","0.96620","0.96620" +"GO:0048562","embryonic organ morphogenesis",19,1,0.61,990,"0.4656","0.96651","0.96651" +"GO:0001941","postsynaptic membrane organization",3,0,0.1,2929,"1.0000","0.96666","0.96666" +"GO:0007585","respiratory gaseous exchange",3,0,0.1,2930,"1.0000","0.96666","0.96666" +"GO:0031646","positive regulation of neurological syst...",3,0,0.1,2931,"1.0000","0.96666","0.96666" +"GO:0051965","positive regulation of synapse assembly",3,0,0.1,2932,"1.0000","0.96666","0.96666" +"GO:0043200","response to amino acid",4,0,0.13,2933,"1.0000","0.96703","0.96703" +"GO:0060173","limb development",8,0,0.26,2934,"1.0000","0.96735","0.96735" +"GO:0006810","transport",544,15,17.6,1239,"0.7944","0.96845","0.96754" +"GO:0046916","cellular transition metal ion homeostasi...",6,0,0.19,2935,"1.0000","0.96774","0.96774" +"GO:0055072","iron ion homeostasis",6,0,0.19,2936,"1.0000","0.96774","0.96774" +"GO:0051648","vesicle localization",17,1,0.55,943,"0.4291","0.96865","0.96865" +"GO:0042060","wound healing",18,0,0.58,2937,"1.0000","0.96889","0.96889" +"GO:0022406","membrane docking",8,0,0.26,2938,"1.0000","0.96923","0.96923" +"GO:0006892","post-Golgi vesicle-mediated transport",5,0,0.16,2939,"1.0000","0.96952","0.96952" +"GO:0035418","protein localization to synapse",5,0,0.16,2940,"1.0000","0.96952","0.96952" +"GO:0048167","regulation of synaptic plasticity",5,0,0.16,2941,"1.0000","0.96952","0.96952" +"GO:0090277","positive regulation of peptide hormone s...",5,0,0.16,2942,"1.0000","0.96952","0.96952" +"GO:0030031","cell projection assembly",26,0,0.84,2943,"1.0000","0.97049","0.97049" +"GO:0120031","plasma membrane bounded cell projection ...",26,0,0.84,2944,"1.0000","0.97049","0.97049" +"GO:0030324","lung development",7,0,0.23,2945,"1.0000","0.97054","0.97054" +"GO:0048863","stem cell differentiation",17,1,0.55,944,"0.4291","0.97093","0.97093" +"GO:0140029","exocytic process",9,0,0.29,2946,"1.0000","0.97139","0.97139" +"GO:0009605","response to external stimulus",129,5,4.17,905,"0.4060","0.92895","0.97175" +"GO:0001101","response to acid chemical",20,0,0.65,2947,"1.0000","0.97257","0.97257" +"GO:0007266","Rho protein signal transduction",6,0,0.19,2948,"1.0000","0.97285","0.97285" +"GO:0060041","retina development in camera-type eye",23,0,0.74,2949,"1.0000","0.97293","0.97293" +"GO:0006879","cellular iron ion homeostasis",5,0,0.16,2950,"1.0000","0.97305","0.97305" +"GO:0051234","establishment of localization",560,15,18.11,1258,"0.8306","0.97386","0.97305" +"GO:0060485","mesenchyme development",10,0,0.32,2951,"1.0000","0.97330","0.97330" +"GO:0030030","cell projection organization",93,3,3.01,1098,"0.5859","0.97365","0.97365" +"GO:0120036","plasma membrane bounded cell projection ...",92,3,2.98,1092,"0.5784","0.97394","0.97394" +"GO:0014046","dopamine secretion",3,0,0.1,2952,"1.0000","0.97441","0.97441" +"GO:0014059","regulation of dopamine secretion",3,0,0.1,2953,"1.0000","0.97441","0.97441" +"GO:0015837","amine transport",3,0,0.1,2954,"1.0000","0.97441","0.97441" +"GO:0031338","regulation of vesicle fusion",3,0,0.1,2955,"1.0000","0.97441","0.97441" +"GO:0045921","positive regulation of exocytosis",3,0,0.1,2956,"1.0000","0.97441","0.97441" +"GO:0050432","catecholamine secretion",3,0,0.1,2957,"1.0000","0.97441","0.97441" +"GO:0050433","regulation of catecholamine secretion",3,0,0.1,2958,"1.0000","0.97441","0.97441" +"GO:0051952","regulation of amine transport",3,0,0.1,2959,"1.0000","0.97441","0.97441" +"GO:0040011","locomotion",75,3,2.43,952,"0.4402","0.97453","0.97453" +"GO:0010259","multicellular organism aging",7,0,0.23,2960,"1.0000","0.97542","0.97542" +"GO:0006893","Golgi to plasma membrane transport",4,0,0.13,2961,"1.0000","0.97555","0.97555" +"GO:0017157","regulation of exocytosis",4,0,0.13,2962,"1.0000","0.97555","0.97555" +"GO:0032024","positive regulation of insulin secretion",4,0,0.13,2963,"1.0000","0.97555","0.97555" +"GO:0098876","vesicle-mediated transport to the plasma...",4,0,0.13,2964,"1.0000","0.97555","0.97555" +"GO:0035239","tube morphogenesis",31,1,1,1143,"0.6410","0.97573","0.97573" +"GO:0060042","retina morphogenesis in camera-type eye",14,0,0.45,2965,"1.0000","0.97666","0.97666" +"GO:0048593","camera-type eye morphogenesis",17,0,0.55,2966,"1.0000","0.97666","0.97666" +"GO:0006997","nucleus organization",10,0,0.32,2967,"1.0000","0.97748","0.97748" +"GO:0043010","camera-type eye development",32,0,1.04,2968,"1.0000","0.97823","0.97823" +"GO:0048762","mesenchymal cell differentiation",8,0,0.26,2969,"1.0000","0.97859","0.97859" +"GO:1901699","cellular response to nitrogen compound",15,0,0.49,2970,"1.0000","0.97886","0.97886" +"GO:0014014","negative regulation of gliogenesis",3,0,0.1,2971,"1.0000","0.97934","0.97934" +"GO:0032968","positive regulation of transcription elo...",3,0,0.1,2972,"1.0000","0.97934","0.97934" +"GO:0006935","chemotaxis",32,1,1.04,1152,"0.6528","0.97977","0.97977" +"GO:0016192","vesicle-mediated transport",145,4,4.69,1190,"0.6998","0.98026","0.98026" +"GO:0070925","organelle assembly",68,2,2.2,1154,"0.6534","0.98083","0.98083" +"GO:0016079","synaptic vesicle exocytosis",3,0,0.1,2973,"1.0000","0.98161","0.98161" +"GO:0017156","calcium ion regulated exocytosis",3,0,0.1,2974,"1.0000","0.98161","0.98161" +"GO:0030252","growth hormone secretion",3,0,0.1,2975,"1.0000","0.98161","0.98161" +"GO:0048791","calcium ion-regulated exocytosis of neur...",3,0,0.1,2976,"1.0000","0.98161","0.98161" +"GO:1990926","short-term synaptic potentiation",3,0,0.1,2977,"1.0000","0.98161","0.98161" +"GO:0046822","regulation of nucleocytoplasmic transpor...",7,0,0.23,2978,"1.0000","0.98193","0.98193" +"GO:0042330","taxis",34,1,1.1,1170,"0.6751","0.98269","0.98269" +"GO:0051180","vitamin transport",3,0,0.1,2979,"1.0000","0.98291","0.98291" +"GO:0120009","intermembrane lipid transfer",3,0,0.1,2980,"1.0000","0.98291","0.98291" +"GO:0051592","response to calcium ion",10,0,0.32,2981,"1.0000","0.98368","0.98368" +"GO:0014031","mesenchymal cell development",6,0,0.19,2982,"1.0000","0.98391","0.98391" +"GO:0014032","neural crest cell development",6,0,0.19,2983,"1.0000","0.98391","0.98391" +"GO:0014033","neural crest cell differentiation",6,0,0.19,2984,"1.0000","0.98391","0.98391" +"GO:0090630","activation of GTPase activity",4,0,0.13,2985,"1.0000","0.98404","0.98404" +"GO:0019827","stem cell population maintenance",11,0,0.36,2986,"1.0000","0.98469","0.98469" +"GO:0098727","maintenance of cell number",11,0,0.36,2987,"1.0000","0.98469","0.98469" +"GO:0007552","metamorphosis",9,0,0.29,2988,"1.0000","0.98476","0.98476" +"GO:0007560","imaginal disc morphogenesis",9,0,0.29,2989,"1.0000","0.98476","0.98476" +"GO:0048563","post-embryonic animal organ morphogenesi...",9,0,0.29,2990,"1.0000","0.98476","0.98476" +"GO:0048707","instar larval or pupal morphogenesis",9,0,0.29,2991,"1.0000","0.98476","0.98476" +"GO:0035108","limb morphogenesis",7,0,0.23,2992,"1.0000","0.98482","0.98482" +"GO:0044262","cellular carbohydrate metabolic process",17,0,0.55,2993,"1.0000","0.98519","0.98519" +"GO:0001837","epithelial to mesenchymal transition",5,0,0.16,2994,"1.0000","0.98658","0.98658" +"GO:0016050","vesicle organization",22,1,0.71,1033,"0.5161","0.98704","0.98704" +"GO:0000045","autophagosome assembly",6,0,0.19,2995,"1.0000","0.98759","0.98759" +"GO:1905037","autophagosome organization",6,0,0.19,2996,"1.0000","0.98759","0.98759" +"GO:0048864","stem cell development",8,0,0.26,2997,"1.0000","0.98898","0.98898" +"GO:0008306","associative learning",3,0,0.1,2998,"1.0000","0.98906","0.98906" +"GO:0008045","motor neuron axon guidance",5,0,0.16,2999,"1.0000","0.98914","0.98914" +"GO:0010507","negative regulation of autophagy",6,0,0.19,3000,"1.0000","0.98925","0.98925" +"GO:0016052","carbohydrate catabolic process",7,0,0.23,3001,"1.0000","0.98935","0.98935" +"GO:0043410","positive regulation of MAPK cascade",7,0,0.23,3002,"1.0000","0.98935","0.98935" +"GO:0043408","regulation of MAPK cascade",15,0,0.49,3003,"1.0000","0.99017","0.99017" +"GO:0007264","small GTPase mediated signal transductio...",23,1,0.74,1051,"0.5319","0.99030","0.99030" +"GO:0009953","dorsal/ventral pattern formation",7,0,0.23,3004,"1.0000","0.99035","0.99035" +"GO:0043583","ear development",7,0,0.23,3005,"1.0000","0.99035","0.99035" +"GO:0048565","digestive tract development",7,0,0.23,3006,"1.0000","0.99035","0.99035" +"GO:0048813","dendrite morphogenesis",7,0,0.23,3007,"1.0000","0.99035","0.99035" +"GO:0048839","inner ear development",7,0,0.23,3008,"1.0000","0.99035","0.99035" +"GO:0050680","negative regulation of epithelial cell p...",7,0,0.23,3009,"1.0000","0.99035","0.99035" +"GO:0055123","digestive system development",7,0,0.23,3010,"1.0000","0.99035","0.99035" +"GO:0006109","regulation of carbohydrate metabolic pro...",11,0,0.36,3011,"1.0000","0.99041","0.99041" +"GO:0030587","sorocarp development",5,0,0.16,3012,"1.0000","0.99103","0.99103" +"GO:0051703","intraspecies interaction between organis...",5,0,0.16,3013,"1.0000","0.99103","0.99103" +"GO:0090702","non-reproductive fruiting body developme...",5,0,0.16,3014,"1.0000","0.99103","0.99103" +"GO:0099120","socially cooperative development",5,0,0.16,3015,"1.0000","0.99103","0.99103" +"GO:0051179","localization",634,19,20.51,1182,"0.6881","0.99154","0.99113" +"GO:0009187","cyclic nucleotide metabolic process",3,0,0.1,3016,"1.0000","0.99118","0.99118" +"GO:0009190","cyclic nucleotide biosynthetic process",3,0,0.1,3017,"1.0000","0.99118","0.99118" +"GO:0001649","osteoblast differentiation",6,0,0.19,3018,"1.0000","0.99173","0.99173" +"GO:0031101","fin regeneration",6,0,0.19,3019,"1.0000","0.99173","0.99173" +"GO:0042471","ear morphogenesis",6,0,0.19,3020,"1.0000","0.99173","0.99173" +"GO:0042472","inner ear morphogenesis",6,0,0.19,3021,"1.0000","0.99173","0.99173" +"GO:0014029","neural crest formation",3,0,0.1,3022,"1.0000","0.99193","0.99193" +"GO:0010675","regulation of cellular carbohydrate meta...",8,0,0.26,3023,"1.0000","0.99302","0.99302" +"GO:0032940","secretion by cell",55,2,1.78,1053,"0.5369","0.91636","0.99309" +"GO:0001704","formation of primary germ layer",5,0,0.16,3024,"1.0000","0.99311","0.99311" +"GO:0032526","response to retinoic acid",5,0,0.16,3025,"1.0000","0.99311","0.99311" +"GO:0048546","digestive tract morphogenesis",5,0,0.16,3026,"1.0000","0.99311","0.99311" +"GO:0072091","regulation of stem cell proliferation",5,0,0.16,3027,"1.0000","0.99311","0.99311" +"GO:1902692","regulation of neuroblast proliferation",5,0,0.16,3028,"1.0000","0.99311","0.99311" +"GO:2000177","regulation of neural precursor cell prol...",5,0,0.16,3029,"1.0000","0.99311","0.99311" +"GO:0008643","carbohydrate transport",12,0,0.39,3030,"1.0000","0.99327","0.99327" +"GO:0044782","cilium organization",24,0,0.78,3031,"1.0000","0.99329","0.99329" +"GO:0030513","positive regulation of BMP signaling pat...",3,0,0.1,3032,"1.0000","0.99347","0.99347" +"GO:0010906","regulation of glucose metabolic process",7,0,0.23,3033,"1.0000","0.99390","0.99390" +"GO:0002052","positive regulation of neuroblast prolif...",4,0,0.13,3034,"1.0000","0.99448","0.99448" +"GO:0008298","intracellular mRNA localization",4,0,0.13,3035,"1.0000","0.99448","0.99448" +"GO:0035019","somatic stem cell population maintenance",4,0,0.13,3036,"1.0000","0.99448","0.99448" +"GO:0060425","lung morphogenesis",4,0,0.13,3037,"1.0000","0.99448","0.99448" +"GO:0060795","cell fate commitment involved in formati...",4,0,0.13,3038,"1.0000","0.99448","0.99448" +"GO:0060810","intracellular mRNA localization involved...",4,0,0.13,3039,"1.0000","0.99448","0.99448" +"GO:2000179","positive regulation of neural precursor ...",4,0,0.13,3040,"1.0000","0.99448","0.99448" +"GO:2000648","positive regulation of stem cell prolife...",4,0,0.13,3041,"1.0000","0.99448","0.99448" +"GO:0016242","negative regulation of macroautophagy",3,0,0.1,3042,"1.0000","0.99461","0.99461" +"GO:0098743","cell aggregation",3,0,0.1,3043,"1.0000","0.99461","0.99461" +"GO:0010506","regulation of autophagy",16,0,0.52,3044,"1.0000","0.99474","0.99474" +"GO:0018195","peptidyl-arginine modification",3,0,0.1,3045,"1.0000","0.99485","0.99485" +"GO:0002168","instar larval development",3,0,0.1,3046,"1.0000","0.99586","0.99586" +"GO:0007492","endoderm development",3,0,0.1,3047,"1.0000","0.99586","0.99586" +"GO:0009950","dorsal/ventral axis specification",3,0,0.1,3048,"1.0000","0.99586","0.99586" +"GO:0030858","positive regulation of epithelial cell d...",3,0,0.1,3049,"1.0000","0.99586","0.99586" +"GO:0031128","developmental induction",3,0,0.1,3050,"1.0000","0.99586","0.99586" +"GO:0042490","mechanoreceptor differentiation",3,0,0.1,3051,"1.0000","0.99586","0.99586" +"GO:0048665","neuron fate specification",3,0,0.1,3052,"1.0000","0.99586","0.99586" +"GO:0048806","genitalia development",3,0,0.1,3053,"1.0000","0.99586","0.99586" +"GO:0060113","inner ear receptor cell differentiation",3,0,0.1,3054,"1.0000","0.99586","0.99586" +"GO:0060119","inner ear receptor cell development",3,0,0.1,3055,"1.0000","0.99586","0.99586" +"GO:0060441","epithelial tube branching involved in lu...",3,0,0.1,3056,"1.0000","0.99586","0.99586" +"GO:0060788","ectodermal placode formation",3,0,0.1,3057,"1.0000","0.99586","0.99586" +"GO:0071696","ectodermal placode development",3,0,0.1,3058,"1.0000","0.99586","0.99586" +"GO:0071697","ectodermal placode morphogenesis",3,0,0.1,3059,"1.0000","0.99586","0.99586" +"GO:0062014","negative regulation of small molecule me...",4,0,0.13,3060,"1.0000","0.99593","0.99593" +"GO:0009062","fatty acid catabolic process",6,0,0.19,3061,"1.0000","0.99646","0.99646" +"GO:0019395","fatty acid oxidation",6,0,0.19,3062,"1.0000","0.99646","0.99646" +"GO:0034440","lipid oxidation",6,0,0.19,3063,"1.0000","0.99646","0.99646" +"GO:0072329","monocarboxylic acid catabolic process",6,0,0.19,3064,"1.0000","0.99646","0.99646" +"GO:0007476","imaginal disc-derived wing morphogenesis",6,0,0.19,3065,"1.0000","0.99664","0.99664" +"GO:0035114","imaginal disc-derived appendage morphoge...",6,0,0.19,3066,"1.0000","0.99664","0.99664" +"GO:0048737","imaginal disc-derived appendage developm...",6,0,0.19,3067,"1.0000","0.99664","0.99664" +"GO:0018345","protein palmitoylation",6,0,0.19,3068,"1.0000","0.99668","0.99668" +"GO:0006887","exocytosis",25,0,0.81,3069,"1.0000","0.99671","0.99671" +"GO:0042327","positive regulation of phosphorylation",29,0,0.94,3070,"1.0000","0.99723","0.99723" +"GO:0006111","regulation of gluconeogenesis",3,0,0.1,3071,"1.0000","0.99738","0.99738" +"GO:0043255","regulation of carbohydrate biosynthetic ...",3,0,0.1,3072,"1.0000","0.99738","0.99738" +"GO:0050794","regulation of cellular process",869,22,28.11,1303,"0.9368","0.99833","0.99833" +"GO:0001934","positive regulation of protein phosphory...",25,0,0.81,3073,"1.0000","0.99848","0.99848" +"GO:0043473","pigmentation",4,0,0.13,3074,"1.0000","0.99869","0.99869" +"GO:0002088","lens development in camera-type eye",5,0,0.16,3075,"1.0000","0.99884","0.99884" +"GO:0034629","cellular protein-containing complex loca...",3,0,0.1,3076,"1.0000","0.99902","0.99902" +"GO:0050789","regulation of biological process",933,24,30.18,1300,"0.9346","0.99957","0.99956" +"GO:0065007","biological regulation",990,26,32.02,1295,"0.9264","0.99966","0.99966" +"GO:0070076","histone lysine demethylation",5,0,0.16,3077,"1.0000","0.99978","0.99978" +"GO:0031124","mRNA 3'-end processing",8,0,0.26,3078,"1.0000","0.99978","0.99978" +"GO:0034720","histone H3-K4 demethylation",4,0,0.13,3079,"1.0000","0.99982","0.99982" +"GO:0006353","DNA-templated transcription, termination",4,0,0.13,3080,"1.0000","0.99989","0.99989" +"GO:0006369","termination of RNA polymerase II transcr...",4,0,0.13,3081,"1.0000","0.99989","0.99989" +"GO:0048736","appendage development",18,0,0.58,3082,"1.0000","0.99998","0.99998" +"GO:0035107","appendage morphogenesis",15,0,0.49,3083,"1.0000","0.99999","0.99999" +"GO:0007444","imaginal disc development",12,0,0.39,3084,"1.0000","0.99999","0.99999" +"GO:0009886","post-embryonic animal morphogenesis",12,0,0.39,3085,"1.0000","0.99999","0.99999" +"GO:0035120","post-embryonic appendage morphogenesis",8,0,0.26,3086,"1.0000","0.99999","0.99999" +"GO:0035220","wing disc development",8,0,0.26,3087,"1.0000","0.99999","0.99999" +"GO:0010562","positive regulation of phosphorus metabo...",31,0,1,3088,"1.0000","0.99999","0.99999" +"GO:0045937","positive regulation of phosphate metabol...",31,0,1,3089,"1.0000","0.99999","0.99999" +"GO:0007472","wing disc morphogenesis",7,0,0.23,3090,"1.0000","0.99999","0.99999" +"GO:0045168","cell-cell signaling involved in cell fat...",5,0,0.16,3091,"1.0000","1.00000","1.00000" +"GO:0046331","lateral inhibition",5,0,0.16,3092,"1.0000","1.00000","1.00000" +"GO:0007162","negative regulation of cell adhesion",4,0,0.13,3093,"1.0000","1.00000","1.00000" +"GO:0042067","establishment of ommatidial planar polar...",4,0,0.13,3094,"1.0000","1.00000","1.00000" +"GO:0007474","imaginal disc-derived wing vein specific...",3,0,0.1,3095,"1.0000","1.00000","1.00000" +"GO:0035215","genital disc development",3,0,0.1,3096,"1.0000","1.00000","1.00000" +"GO:0046578","regulation of Ras protein signal transdu...",9,0,0.29,3097,"1.0000","1.00000","1.00000" +"GO:0051056","regulation of small GTPase mediated sign...",9,0,0.29,3098,"1.0000","1.00000","1.00000" +"GO:0008150","biological_process",2968,96,96,3099,"1.0000","1.00000","1.00000" +"GO:0043038","amino acid activation",30,1,0.97,1133,"0.6289","0.00482","1.00000" +"GO:0043039","tRNA aminoacylation",30,1,0.97,1134,"0.6289","0.00482","1.00000" +"GO:0006213","pyrimidine nucleoside metabolic process",4,0,0.13,3100,"1.0000","0.00562","1.00000" +"GO:0042451","purine nucleoside biosynthetic process",4,0,0.13,3101,"1.0000","0.00668","1.00000" diff --git a/GO_enrichment_output/contrast_prelaying_laying_downregulated.csv b/GO_enrichment_output/contrast_prelaying_laying_downregulated.csv index b16551c..33b894b 100644 --- a/GO_enrichment_output/contrast_prelaying_laying_downregulated.csv +++ b/GO_enrichment_output/contrast_prelaying_laying_downregulated.csv @@ -1,6 +1,1288 @@ "GO.ID","Term","Annotated","Significant","Expected","Rank in classicFisher","classicFisher","classicKS","elimKS" "GO:0006355","regulation of transcription, DNA-templat...",451,151,116.78,6,"4.9e-05","2.7e-05","2.7e-05" -"GO:0006260","DNA replication",71,36,18.38,2,"5.0e-06","5.2e-10","0.00034" -"GO:0006325","chromatin organization",135,39,34.96,418,"0.2353","0.0004","0.00040" -"GO:0006261","DNA-dependent DNA replication",35,17,9.06,36,"0.0031","3.1e-06","0.00111" -"GO:0006270","DNA replication initiation",10,7,2.59,39,"0.0043","0.0012","0.00117" +"GO:0006260","DNA replication",71,36,18.38,2,"5.0e-06","5.2e-10","0.00011" +"GO:0006325","chromatin organization",135,39,34.96,211,"0.23526","0.00040","0.00040" +"GO:0006261","DNA-dependent DNA replication",35,17,9.06,36,"0.00308","3.1e-06","0.00111" +"GO:0006270","DNA replication initiation",10,7,2.59,39,"0.00428","0.00117","0.00117" +"GO:0006281","DNA repair",106,40,27.45,38,"0.00413","0.00149","0.00149" +"GO:0051276","chromosome organization",197,56,51.01,198,"0.22254","3.6e-06","0.00167" +"GO:0000075","cell cycle checkpoint",24,10,6.21,89,"0.06663","0.00433","0.00433" +"GO:0030838","positive regulation of actin filament po...",13,8,3.37,44,"0.00698","0.00486","0.00486" +"GO:0000278","mitotic cell cycle",92,29,23.82,137,"0.12945","0.00603","0.00603" +"GO:0016071","mRNA metabolic process",115,36,29.78,112,"0.10790","0.00615","0.00615" +"GO:0044770","cell cycle phase transition",34,11,8.8,231,"0.24666","0.00781","0.00781" +"GO:0044772","mitotic cell cycle phase transition",30,10,7.77,209,"0.22926","0.01032","0.01032" +"GO:0002066","columnar/cuboidal epithelial cell develo...",15,6,3.88,159,"0.16812","0.01150","0.01150" +"GO:0000077","DNA damage checkpoint",10,2,2.59,722,"0.77602","0.01534","0.01534" +"GO:0033044","regulation of chromosome organization",34,13,8.8,92,"0.07635","0.01670","0.01670" +"GO:0008380","RNA splicing",73,24,18.9,113,"0.10816","0.01728","0.01728" +"GO:0006030","chitin metabolic process",29,14,7.51,47,"0.00757","0.01888","0.01888" +"GO:2001252","positive regulation of chromosome organi...",13,3,3.37,628,"0.69431","0.01987","0.01987" +"GO:1901987","regulation of cell cycle phase transitio...",20,7,5.18,214,"0.24246","0.01990","0.01990" +"GO:0033047","regulation of mitotic sister chromatid s...",10,5,2.59,99,"0.08860","0.02008","0.02008" +"GO:1903047","mitotic cell cycle process",78,22,20.2,315,"0.35972","0.02150","0.02150" +"GO:0031570","DNA integrity checkpoint",15,5,3.88,306,"0.34309","0.02177","0.02177" +"GO:0000375","RNA splicing, via transesterification re...",59,21,15.28,81,"0.06150","0.02228","0.02228" +"GO:0000377","RNA splicing, via transesterification re...",59,21,15.28,82,"0.06150","0.02228","0.02228" +"GO:0000398","mRNA splicing, via spliceosome",59,21,15.28,83,"0.06150","0.02228","0.02228" +"GO:0045010","actin nucleation",11,6,2.85,69,"0.04009","0.02459","0.02459" +"GO:0019219","regulation of nucleobase-containing comp...",485,165,125.58,3,"6.4e-06","1.5e-06","0.02645" +"GO:1901071","glucosamine-containing compound metaboli...",30,14,7.77,48,"0.01089","0.02743","0.02743" +"GO:0048749","compound eye development",19,9,4.92,62,"0.03515","0.02750","0.02750" +"GO:0006022","aminoglycan metabolic process",34,15,8.8,53,"0.01557","0.02809","0.02809" +"GO:1901990","regulation of mitotic cell cycle phase t...",18,6,4.66,282,"0.31343","0.02986","0.02986" +"GO:0000819","sister chromatid segregation",33,11,8.54,194,"0.21360","0.02998","0.02998" +"GO:0046777","protein autophosphorylation",11,3,2.85,496,"0.57244","0.03180","0.03180" +"GO:0071897","DNA biosynthetic process",11,4,2.85,269,"0.31134","0.03287","0.03287" +"GO:0007346","regulation of mitotic cell cycle",38,13,9.84,155,"0.16010","0.03364","0.03364" +"GO:0006397","mRNA processing",89,33,23.04,49,"0.01187","0.03371","0.03371" +"GO:0007088","regulation of mitotic nuclear division",15,6,3.88,160,"0.16812","0.03507","0.03507" +"GO:0006338","chromatin remodeling",23,10,5.96,77,"0.05008","0.03578","0.03578" +"GO:0016569","covalent chromatin modification",83,23,21.49,355,"0.39183","0.03652","0.03652" +"GO:0070647","protein modification by small protein co...",121,34,31.33,291,"0.31819","0.03739","0.03739" +"GO:0000070","mitotic sister chromatid segregation",24,9,6.21,141,"0.14287","0.03853","0.03853" +"GO:0007156","homophilic cell adhesion via plasma memb...",12,6,3.11,84,"0.06304","0.03876","0.03876" +"GO:0033045","regulation of sister chromatid segregati...",12,6,3.11,85,"0.06304","0.03902","0.03902" +"GO:0051983","regulation of chromosome segregation",12,6,3.11,86,"0.06304","0.03902","0.03902" +"GO:0022402","cell cycle process",139,41,35.99,178,"0.18420","0.00159","0.03969" +"GO:0051304","chromosome separation",10,5,2.59,100,"0.08860","0.04018","0.04018" +"GO:0030902","hindbrain development",10,4,2.59,217,"0.24504","0.04033","0.04033" +"GO:0051052","regulation of DNA metabolic process",25,9,6.47,170,"0.17470","0.04098","0.04098" +"GO:0006040","amino sugar metabolic process",31,14,8.03,52,"0.01524","0.04417","0.04417" +"GO:0016570","histone modification",80,22,20.71,361,"0.41207","0.04516","0.04516" +"GO:0002065","columnar/cuboidal epithelial cell differ...",21,7,5.44,263,"0.28813","0.04521","0.04521" +"GO:0060042","retina morphogenesis in camera-type eye",12,6,3.11,87,"0.06304","0.04590","0.04590" +"GO:0043484","regulation of RNA splicing",15,7,3.88,88,"0.06650","0.05080","0.05080" +"GO:0007059","chromosome segregation",40,12,10.36,296,"0.33049","0.05133","0.05133" +"GO:0098813","nuclear chromosome segregation",37,11,9.58,313,"0.35456","0.05282","0.05282" +"GO:0098742","cell-cell adhesion via plasma-membrane a...",18,8,4.66,91,"0.06775","0.05324","0.05324" +"GO:0043170","macromolecule metabolic process",1540,443,398.75,5,"4.5e-05","1.0e-06","0.05328" +"GO:0000280","nuclear division",51,15,13.21,297,"0.33070","0.05560","0.05560" +"GO:0006357","regulation of transcription by RNA polym...",141,42,36.51,156,"0.16196","0.05806","0.05806" +"GO:0001754","eye photoreceptor cell differentiation",14,7,3.63,71,"0.04529","0.05836","0.05836" +"GO:0030707","ovarian follicle cell development",12,5,3.11,174,"0.17615","0.06010","0.06010" +"GO:0045930","negative regulation of mitotic cell cycl...",16,8,4.14,60,"0.03277","0.06113","0.06113" +"GO:0048477","oogenesis",25,9,6.47,171,"0.17470","0.06181","0.06181" +"GO:0007093","mitotic cell cycle checkpoint",14,7,3.63,72,"0.04529","0.06401","0.06401" +"GO:0034968","histone lysine methylation",14,4,3.63,444,"0.51014","0.06485","0.06485" +"GO:0032446","protein modification by small protein co...",93,27,24.08,252,"0.27606","0.06923","0.06923" +"GO:0001558","regulation of cell growth",20,8,5.18,117,"0.11930","0.06962","0.06962" +"GO:0051726","regulation of cell cycle",99,30,25.63,177,"0.18215","0.00248","0.07141" +"GO:0002064","epithelial cell development",22,7,5.7,298,"0.33555","0.07390","0.07390" +"GO:0016049","cell growth",26,9,6.73,189,"0.20942","0.07427","0.07427" +"GO:0065004","protein-DNA complex assembly",25,10,6.47,98,"0.08629","0.07541","0.07541" +"GO:0000956","nuclear-transcribed mRNA catabolic proce...",19,4,4.92,705,"0.76571","0.07656","0.07656" +"GO:0006323","DNA packaging",24,7,6.21,371,"0.43242","0.08122","0.08122" +"GO:0070936","protein K48-linked ubiquitination",11,5,2.85,126,"0.12902","0.08196","0.08196" +"GO:0006310","DNA recombination",31,11,8.03,146,"0.15377","0.08258","0.08258" +"GO:0006396","RNA processing",232,50,60.07,1084,"0.95333","0.08462","0.08462" +"GO:1903320","regulation of protein modification by sm...",25,7,6.47,418,"0.48037","0.08664","0.08664" +"GO:2000113","negative regulation of cellular macromol...",105,26,27.19,579,"0.64383","0.09055","0.09055" +"GO:0048285","organelle fission",57,16,14.76,357,"0.40183","0.09247","0.09247" +"GO:0000387","spliceosomal snRNP assembly",10,4,2.59,218,"0.24504","0.09252","0.09252" +"GO:0044839","cell cycle G2/M phase transition",12,3,3.11,555,"0.63695","0.09603","0.09603" +"GO:0006354","DNA-templated transcription, elongation",22,9,5.7,104,"0.08916","0.09658","0.09658" +"GO:0045934","negative regulation of nucleobase-contai...",104,27,26.93,463,"0.53223","0.09744","0.09744" +"GO:0006508","proteolysis",180,52,46.61,182,"0.19349","0.09850","0.09850" +"GO:0071824","protein-DNA complex subunit organization",28,11,7.25,95,"0.08310","0.10103","0.10103" +"GO:0032784","regulation of DNA-templated transcriptio...",11,5,2.85,127,"0.12902","0.10171","0.10171" +"GO:0010564","regulation of cell cycle process",53,16,13.72,253,"0.28129","0.10224","0.10224" +"GO:0001745","compound eye morphogenesis",15,6,3.88,161,"0.16812","0.10239","0.10239" +"GO:0016571","histone methylation",18,4,4.66,664,"0.72466","0.10311","0.10311" +"GO:0045892","negative regulation of transcription, DN...",96,24,24.86,537,"0.62008","0.10497","0.10497" +"GO:0048511","rhythmic process",30,7,7.77,626,"0.69345","0.10523","0.10523" +"GO:0030308","negative regulation of cell growth",14,6,3.63,121,"0.12747","0.10919","0.10919" +"GO:0051346","negative regulation of hydrolase activit...",17,8,4.4,73,"0.04823","0.10921","0.10921" +"GO:0035601","protein deacylation",16,7,4.14,108,"0.09273","0.10922","0.10922" +"GO:0098732","macromolecule deacylation",16,7,4.14,109,"0.09273","0.10922","0.10922" +"GO:0090305","nucleic acid phosphodiester bond hydroly...",24,2,6.21,1201,"0.99311","0.11071","0.11071" +"GO:0072331","signal transduction by p53 class mediato...",12,4,3.11,331,"0.37893","0.11262","0.11262" +"GO:0070646","protein modification by small protein re...",33,8,8.54,585,"0.65174","0.11543","0.11543" +"GO:0009890","negative regulation of biosynthetic proc...",113,28,29.26,581,"0.64498","0.11731","0.11731" +"GO:0010959","regulation of metal ion transport",12,2,3.11,891,"0.85812","0.11757","0.11757" +"GO:0001736","establishment of planar polarity",11,5,2.85,128,"0.12902","0.11771","0.11771" +"GO:0001738","morphogenesis of a polarized epithelium",11,5,2.85,129,"0.12902","0.11771","0.11771" +"GO:0007164","establishment of tissue polarity",11,5,2.85,130,"0.12902","0.11771","0.11771" +"GO:0000082","G1/S transition of mitotic cell cycle",11,3,2.85,497,"0.57244","0.12131","0.12131" +"GO:0002697","regulation of immune effector process",11,3,2.85,498,"0.57244","0.12131","0.12131" +"GO:0071103","DNA conformation change",30,9,7.77,329,"0.36834","0.12252","0.12252" +"GO:0090501","RNA phosphodiester bond hydrolysis",19,1,4.92,1221,"0.99671","0.12295","0.12295" +"GO:0006473","protein acetylation",26,5,6.73,863,"0.84274","0.12932","0.12932" +"GO:0031327","negative regulation of cellular biosynth...",111,28,28.74,521,"0.60227","0.12952","0.12952" +"GO:0051169","nuclear transport",44,12,11.39,415,"0.47434","0.13109","0.13109" +"GO:0009798","axis specification",18,6,4.66,283,"0.31343","0.13175","0.13175" +"GO:0006302","double-strand break repair",17,8,4.4,74,"0.04823","0.13270","0.13270" +"GO:0006333","chromatin assembly or disassembly",20,5,5.18,538,"0.62128","0.13553","0.13553" +"GO:0051253","negative regulation of RNA metabolic pro...",99,24,25.63,620,"0.68627","0.13635","0.13635" +"GO:0006259","DNA metabolic process",185,75,47.9,1,"4.5e-06","2.8e-09","0.13652" +"GO:0051924","regulation of calcium ion transport",11,2,2.85,817,"0.82126","0.14063","0.14063" +"GO:0034504","protein localization to nucleus",28,8,7.25,377,"0.44339","0.14225","0.14225" +"GO:0031056","regulation of histone modification",15,4,3.88,478,"0.57089","0.14292","0.14292" +"GO:0031396","regulation of protein ubiquitination",24,7,6.21,372,"0.43242","0.14368","0.14368" +"GO:0003407","neural retina development",11,5,2.85,131,"0.12902","0.14417","0.14417" +"GO:1902679","negative regulation of RNA biosynthetic ...",98,24,25.38,588,"0.66491","0.14447","0.14447" +"GO:1903507","negative regulation of nucleic acid-temp...",98,24,25.38,589,"0.66491","0.14447","0.14447" +"GO:0043244","regulation of protein complex disassembl...",10,4,2.59,219,"0.24504","0.14505","0.14505" +"GO:0022618","ribonucleoprotein complex assembly",28,8,7.25,378,"0.44339","0.14789","0.14789" +"GO:0071826","ribonucleoprotein complex subunit organi...",28,8,7.25,379,"0.44339","0.14789","0.14789" +"GO:0010721","negative regulation of cell development",24,9,6.21,142,"0.14287","0.14893","0.14893" +"GO:1903046","meiotic cell cycle process",20,4,5.18,798,"0.80182","0.15001","0.15001" +"GO:0140014","mitotic nuclear division",33,11,8.54,195,"0.21360","0.15001","0.15001" +"GO:0010558","negative regulation of macromolecule bio...",109,27,28.22,580,"0.64439","0.15043","0.15043" +"GO:0090066","regulation of anatomical structure size",31,15,8.03,40,"0.00560","0.00402","0.15213" +"GO:0007049","cell cycle",187,57,48.42,94,"0.08253","0.00049","0.15340" +"GO:1903321","negative regulation of protein modificat...",10,4,2.59,220,"0.24504","0.15525","0.15525" +"GO:0045926","negative regulation of growth",20,8,5.18,118,"0.11930","0.15535","0.15535" +"GO:0048024","regulation of mRNA splicing, via spliceo...",11,4,2.85,270,"0.31134","0.15593","0.15593" +"GO:0016579","protein deubiquitination",31,8,8.03,514,"0.57337","0.15658","0.15658" +"GO:0006913","nucleocytoplasmic transport",43,11,11.13,518,"0.57752","0.15753","0.15753" +"GO:0071772","response to BMP",10,4,2.59,221,"0.24504","0.15810","0.15810" +"GO:0071773","cellular response to BMP stimulus",10,4,2.59,222,"0.24504","0.15810","0.15810" +"GO:0006402","mRNA catabolic process",28,5,7.25,948,"0.88733","0.15845","0.15845" +"GO:0008064","regulation of actin polymerization or de...",15,8,3.88,56,"0.02106","0.00110","0.15933" +"GO:0030832","regulation of actin filament length",15,8,3.88,57,"0.02106","0.00110","0.15933" +"GO:0110053","regulation of actin filament organizatio...",15,8,3.88,58,"0.02106","0.00110","0.15933" +"GO:0016073","snRNA metabolic process",14,6,3.63,122,"0.12747","0.15990","0.15990" +"GO:0006366","transcription by RNA polymerase II",166,49,42.98,150,"0.15640","0.16120","0.16120" +"GO:0010468","regulation of gene expression",527,170,136.46,18,"0.00016","6.9e-05","0.16237" +"GO:0045069","regulation of viral genome replication",10,3,2.59,426,"0.50123","0.16434","0.16434" +"GO:1903332","regulation of protein folding",10,3,2.59,427,"0.50123","0.16434","0.16434" +"GO:0010629","negative regulation of gene expression",138,31,35.73,872,"0.85213","0.16516","0.16516" +"GO:0016573","histone acetylation",23,5,5.96,691,"0.74977","0.16915","0.16915" +"GO:0006352","DNA-templated transcription, initiation",39,15,10.1,80,"0.05651","0.17214","0.17214" +"GO:1903311","regulation of mRNA metabolic process",22,5,5.7,652,"0.71096","0.17218","0.17218" +"GO:0048545","response to steroid hormone",36,8,9.32,696,"0.75205","0.17561","0.17561" +"GO:0042752","regulation of circadian rhythm",15,4,3.88,479,"0.57089","0.18025","0.18025" +"GO:0031123","RNA 3'-end processing",16,6,4.14,190,"0.21335","0.18039","0.18039" +"GO:0051054","positive regulation of DNA metabolic pro...",14,2,3.63,986,"0.91180","0.18231","0.18231" +"GO:0008037","cell recognition",10,3,2.59,428,"0.50123","0.18429","0.18429" +"GO:0070076","histone lysine demethylation",11,5,2.85,132,"0.12902","0.18931","0.18931" +"GO:0007017","microtubule-based process",91,30,23.56,93,"0.07654","0.19155","0.19155" +"GO:2000027","regulation of animal organ morphogenesis",15,5,3.88,307,"0.34309","0.19309","0.19309" +"GO:0017144","drug metabolic process",60,18,15.54,249,"0.27421","0.19339","0.19339" +"GO:0034728","nucleosome organization",19,5,4.92,473,"0.57072","0.19430","0.19430" +"GO:0006464","cellular protein modification process",516,133,133.61,468,"0.54708","0.19442","0.19442" +"GO:0036211","protein modification process",516,133,133.61,469,"0.54708","0.19442","0.19442" +"GO:0072527","pyrimidine-containing compound metabolic...",10,3,2.59,429,"0.50123","0.19472","0.19472" +"GO:0050684","regulation of mRNA processing",12,4,3.11,332,"0.37893","0.19772","0.19772" +"GO:0051321","meiotic cell cycle",23,5,5.96,692,"0.74977","0.19903","0.19903" +"GO:0032984","protein-containing complex disassembly",26,10,6.73,114,"0.10910","0.19946","0.19946" +"GO:0051261","protein depolymerization",12,4,3.11,333,"0.37893","0.19956","0.19956" +"GO:0051170","import into nucleus",20,5,5.18,539,"0.62128","0.19973","0.19973" +"GO:0035967","cellular response to topologically incor...",13,5,3.37,201,"0.22859","0.20171","0.20171" +"GO:0006986","response to unfolded protein",11,3,2.85,499,"0.57244","0.20292","0.20292" +"GO:0034330","cell junction organization",15,6,3.88,162,"0.16812","0.20550","0.20550" +"GO:0045807","positive regulation of endocytosis",13,5,3.37,202,"0.22859","0.20555","0.20555" +"GO:0016567","protein ubiquitination",85,24,22.01,311,"0.34783","0.20711","0.20711" +"GO:0051252","regulation of RNA metabolic process",471,156,121.96,10,"6.9e-05","2.4e-05","0.20894" +"GO:0051098","regulation of binding",18,7,4.66,151,"0.15960","0.21929","0.21929" +"GO:0048598","embryonic morphogenesis",59,19,15.28,157,"0.16584","0.22379","0.22379" +"GO:0006807","nitrogen compound metabolic process",1625,462,420.76,16,"0.00011","4.3e-05","0.22464" +"GO:0007444","imaginal disc development",16,5,4.14,359,"0.40206","0.22572","0.22572" +"GO:0051129","negative regulation of cellular componen...",52,16,13.46,236,"0.25313","0.23109","0.23109" +"GO:0031398","positive regulation of protein ubiquitin...",16,3,4.14,839,"0.82505","0.23158","0.23158" +"GO:1903322","positive regulation of protein modificat...",16,3,4.14,840,"0.82505","0.23158","0.23158" +"GO:0007292","female gamete generation",29,9,7.51,293,"0.32662","0.23305","0.23305" +"GO:0070988","demethylation",15,5,3.88,308,"0.34309","0.23492","0.23492" +"GO:0043161","proteasome-mediated ubiquitin-dependent ...",31,7,8.03,668,"0.72848","0.23514","0.23514" +"GO:1902275","regulation of chromatin organization",20,6,5.18,363,"0.41906","0.23574","0.23574" +"GO:0070997","neuron death",13,2,3.37,953,"0.88790","0.23591","0.23591" +"GO:1901214","regulation of neuron death",13,2,3.37,954,"0.88790","0.23591","0.23591" +"GO:0050768","negative regulation of neurogenesis",19,6,4.92,320,"0.36608","0.23719","0.23719" +"GO:0007411","axon guidance",22,7,5.7,299,"0.33555","0.23951","0.23951" +"GO:0097485","neuron projection guidance",22,7,5.7,300,"0.33555","0.23951","0.23951" +"GO:0006401","RNA catabolic process",36,6,9.32,1037,"0.93445","0.23981","0.23981" +"GO:0046530","photoreceptor cell differentiation",17,7,4.4,119,"0.12388","0.23988","0.23988" +"GO:0097659","nucleic acid-templated transcription",511,167,132.31,13,"8.2e-05","4.1e-05","0.24017" +"GO:0006476","protein deacetylation",13,6,3.37,107,"0.09225","0.24084","0.24084" +"GO:0045935","positive regulation of nucleobase-contai...",97,24,25.12,578,"0.64282","0.24398","0.24398" +"GO:0045785","positive regulation of cell adhesion",11,5,2.85,133,"0.12902","0.24508","0.24508" +"GO:0007623","circadian rhythm",20,4,5.18,799,"0.80182","0.24771","0.24771" +"GO:0043412","macromolecule modification",571,139,147.85,865,"0.84290","0.24816","0.24816" +"GO:0006475","internal protein amino acid acetylation",24,5,6.21,771,"0.78456","0.25270","0.25270" +"GO:0018393","internal peptidyl-lysine acetylation",24,5,6.21,772,"0.78456","0.25270","0.25270" +"GO:0018394","peptidyl-lysine acetylation",24,5,6.21,773,"0.78456","0.25270","0.25270" +"GO:0000086","G2/M transition of mitotic cell cycle",10,2,2.59,723,"0.77602","0.25273","0.25273" +"GO:1902749","regulation of cell cycle G2/M phase tran...",10,3,2.59,430,"0.50123","0.25273","0.25273" +"GO:0006606","protein import into nucleus",19,4,4.92,706,"0.76571","0.25339","0.25339" +"GO:0090304","nucleic acid metabolic process",913,284,236.4,4,"7.0e-06","3.3e-08","0.25347" +"GO:0031124","mRNA 3'-end processing",10,4,2.59,223,"0.24504","0.25411","0.25411" +"GO:0044843","cell cycle G1/S phase transition",12,3,3.11,556,"0.63695","0.25496","0.25496" +"GO:0140013","meiotic nuclear division",17,4,4.4,605,"0.67848","0.25683","0.25683" +"GO:0034329","cell junction assembly",14,6,3.63,123,"0.12747","0.25768","0.25768" +"GO:0006482","protein demethylation",14,5,3.63,260,"0.28477","0.25887","0.25887" +"GO:0008214","protein dealkylation",14,5,3.63,261,"0.28477","0.25887","0.25887" +"GO:0002221","pattern recognition receptor signaling p...",12,4,3.11,334,"0.37893","0.26155","0.26155" +"GO:0007409","axonogenesis",34,11,8.8,232,"0.24666","0.26240","0.26240" +"GO:0043270","positive regulation of ion transport",12,3,3.11,557,"0.63695","0.26377","0.26377" +"GO:2001242","regulation of intrinsic apoptotic signal...",12,5,3.11,175,"0.17615","0.26377","0.26377" +"GO:0032774","RNA biosynthetic process",514,168,133.09,12,"7.6e-05","4.8e-05","0.26502" +"GO:0000724","double-strand break repair via homologou...",10,5,2.59,101,"0.08860","0.26619","0.26619" +"GO:0000725","recombinational repair",10,5,2.59,102,"0.08860","0.26619","0.26619" +"GO:0006351","transcription, DNA-templated",510,167,132.05,11,"7.2e-05","3.4e-05","0.26847" +"GO:0061077","chaperone-mediated protein folding",12,3,3.11,558,"0.63695","0.26936","0.26936" +"GO:0048593","camera-type eye morphogenesis",17,6,4.4,240,"0.26215","0.26952","0.26952" +"GO:0006403","RNA localization",25,9,6.47,172,"0.17470","0.27012","0.27012" +"GO:0002252","immune effector process",25,4,6.47,1011,"0.92039","0.27505","0.27505" +"GO:0055114","oxidation-reduction process",89,26,23.04,247,"0.26904","0.27520","0.27520" +"GO:0007169","transmembrane receptor protein tyrosine ...",22,9,5.7,105,"0.08916","0.27867","0.27867" +"GO:0009725","response to hormone",61,14,15.79,688,"0.74713","0.27905","0.27905" +"GO:0098609","cell-cell adhesion",49,17,12.69,110,"0.10686","0.28096","0.28096" +"GO:0098656","anion transmembrane transport",11,5,2.85,134,"0.12902","0.28160","0.28160" +"GO:0019827","stem cell population maintenance",20,6,5.18,364,"0.41906","0.28259","0.28259" +"GO:0098727","maintenance of cell number",20,6,5.18,365,"0.41906","0.28259","0.28259" +"GO:0034655","nucleobase-containing compound catabolic...",48,7,12.43,1164,"0.98097","0.28409","0.28409" +"GO:0016577","histone demethylation",13,5,3.37,203,"0.22859","0.28523","0.28523" +"GO:0040007","growth",77,21,19.94,374,"0.43330","0.28527","0.28527" +"GO:0090092","regulation of transmembrane receptor pro...",15,6,3.88,163,"0.16812","0.28670","0.28670" +"GO:0051172","negative regulation of nitrogen compound...",150,34,38.84,868,"0.84736","0.28684","0.28684" +"GO:0090287","regulation of cellular response to growt...",16,6,4.14,191,"0.21335","0.28742","0.28742" +"GO:2001020","regulation of response to DNA damage sti...",16,4,4.14,546,"0.62716","0.28742","0.28742" +"GO:0000723","telomere maintenance",10,2,2.59,724,"0.77602","0.28988","0.28988" +"GO:0032200","telomere organization",10,2,2.59,725,"0.77602","0.28988","0.28988" +"GO:2001251","negative regulation of chromosome organi...",17,6,4.4,241,"0.26215","0.29320","0.29320" +"GO:1901215","negative regulation of neuron death",11,1,2.85,1105,"0.96324","0.29488","0.29488" +"GO:2001234","negative regulation of apoptotic signali...",11,4,2.85,271,"0.31134","0.29488","0.29488" +"GO:0035966","response to topologically incorrect prot...",19,6,4.92,321,"0.36608","0.29623","0.29623" +"GO:0030098","lymphocyte differentiation",11,2,2.85,818,"0.82126","0.29946","0.29946" +"GO:0002521","leukocyte differentiation",12,2,3.11,892,"0.85812","0.29964","0.29964" +"GO:0009141","nucleoside triphosphate metabolic proces...",22,5,5.7,653,"0.71096","0.30119","0.30119" +"GO:0090596","sensory organ morphogenesis",41,12,10.62,316,"0.36605","0.30322","0.30322" +"GO:0097193","intrinsic apoptotic signaling pathway",14,6,3.63,124,"0.12747","0.30383","0.30383" +"GO:0002262","myeloid cell homeostasis",14,2,3.63,987,"0.91180","0.30514","0.30514" +"GO:0030218","erythrocyte differentiation",14,2,3.63,988,"0.91180","0.30514","0.30514" +"GO:0034101","erythrocyte homeostasis",14,2,3.63,989,"0.91180","0.30514","0.30514" +"GO:0060560","developmental growth involved in morphog...",10,5,2.59,103,"0.08860","0.30694","0.30694" +"GO:0032870","cellular response to hormone stimulus",37,8,9.58,768,"0.78054","0.30747","0.30747" +"GO:0034605","cellular response to heat",14,4,3.63,445,"0.51014","0.30777","0.30777" +"GO:0007062","sister chromatid cohesion",14,4,3.63,446,"0.51014","0.30909","0.30909" +"GO:0071383","cellular response to steroid hormone sti...",24,6,6.21,533,"0.61755","0.31000","0.31000" +"GO:0042110","T cell activation",17,4,4.4,606,"0.67848","0.31062","0.31062" +"GO:1901988","negative regulation of cell cycle phase ...",10,4,2.59,224,"0.24504","0.31096","0.31096" +"GO:1901991","negative regulation of mitotic cell cycl...",10,4,2.59,225,"0.24504","0.31096","0.31096" +"GO:0031324","negative regulation of cellular metaboli...",154,35,39.88,866,"0.84594","0.31466","0.31466" +"GO:0006342","chromatin silencing",16,4,4.14,547,"0.62716","0.31528","0.31528" +"GO:0051128","regulation of cellular component organiz...",159,45,41.17,245,"0.26449","0.07758","0.31655" +"GO:0030855","epithelial cell differentiation",36,10,9.32,405,"0.46078","0.31757","0.31757" +"GO:0060249","anatomical structure homeostasis",31,6,8.03,874,"0.85235","0.32059","0.32059" +"GO:0198738","cell-cell signaling by wnt",41,15,10.62,96,"0.08461","0.32106","0.32106" +"GO:0060041","retina development in camera-type eye",22,7,5.7,301,"0.33555","0.32242","0.32242" +"GO:0008544","epidermis development",15,6,3.88,164,"0.16812","0.32419","0.32419" +"GO:0070534","protein K63-linked ubiquitination",12,4,3.11,335,"0.37893","0.32549","0.32549" +"GO:0022008","neurogenesis",117,35,30.29,176,"0.18129","0.32618","0.32618" +"GO:0031400","negative regulation of protein modificat...",38,7,9.84,963,"0.89734","0.32663","0.32663" +"GO:0061564","axon development",42,13,10.88,251,"0.27597","0.32854","0.32854" +"GO:0007275","multicellular organism development",328,92,84.93,180,"0.18786","0.32918","0.32918" +"GO:0043523","regulation of neuron apoptotic process",10,1,2.59,1069,"0.95033","0.32964","0.32964" +"GO:0051402","neuron apoptotic process",10,1,2.59,1070,"0.95033","0.32964","0.32964" +"GO:0072330","monocarboxylic acid biosynthetic process",10,1,2.59,1071,"0.95033","0.32964","0.32964" +"GO:1900408","negative regulation of cellular response...",10,2,2.59,726,"0.77602","0.32964","0.32964" +"GO:1902883","negative regulation of response to oxida...",10,2,2.59,727,"0.77602","0.32964","0.32964" +"GO:0016331","morphogenesis of embryonic epithelium",16,5,4.14,360,"0.40206","0.32976","0.32976" +"GO:1901796","regulation of signal transduction by p53...",10,4,2.59,226,"0.24504","0.33219","0.33219" +"GO:0048592","eye morphogenesis",37,11,9.58,314,"0.35456","0.33318","0.33318" +"GO:0045637","regulation of myeloid cell differentiati...",10,2,2.59,728,"0.77602","0.33429","0.33429" +"GO:0044403","symbiont process",24,9,6.21,143,"0.14287","0.33849","0.33849" +"GO:0006334","nucleosome assembly",15,4,3.88,480,"0.57089","0.33900","0.33900" +"GO:0016575","histone deacetylation",11,5,2.85,135,"0.12902","0.34058","0.34058" +"GO:0051168","nuclear export",18,6,4.66,284,"0.31343","0.34491","0.34491" +"GO:0016053","organic acid biosynthetic process",17,4,4.4,607,"0.67848","0.34526","0.34526" +"GO:0046394","carboxylic acid biosynthetic process",17,4,4.4,608,"0.67848","0.34526","0.34526" +"GO:2001233","regulation of apoptotic signaling pathwa...",17,5,4.4,396,"0.46036","0.34526","0.34526" +"GO:0016458","gene silencing",28,6,7.25,715,"0.77123","0.34623","0.34623" +"GO:0031497","chromatin assembly",16,4,4.14,548,"0.62716","0.34761","0.34761" +"GO:0019079","viral genome replication",11,3,2.85,500,"0.57244","0.34964","0.34964" +"GO:1903900","regulation of viral life cycle",11,3,2.85,501,"0.57244","0.34964","0.34964" +"GO:0045786","negative regulation of cell cycle",43,14,11.13,187,"0.20074","0.00959","0.34982" +"GO:1903706","regulation of hemopoiesis",17,4,4.4,609,"0.67848","0.35149","0.35149" +"GO:0044092","negative regulation of molecular functio...",39,13,10.1,179,"0.18643","0.35192","0.35192" +"GO:0016055","Wnt signaling pathway",39,14,10.1,111,"0.10744","0.35320","0.35320" +"GO:0000122","negative regulation of transcription by ...",51,11,13.21,806,"0.80704","0.35607","0.35607" +"GO:0061458","reproductive system development",43,13,11.13,265,"0.30857","0.35746","0.35746" +"GO:0009755","hormone-mediated signaling pathway",21,4,5.44,853,"0.83328","0.35928","0.35928" +"GO:0030182","neuron differentiation",97,28,25.12,257,"0.28279","0.35964","0.35964" +"GO:0007050","cell cycle arrest",10,2,2.59,729,"0.77602","0.36072","0.36072" +"GO:0048864","stem cell development",10,2,2.59,730,"0.77602","0.36072","0.36072" +"GO:0043401","steroid hormone mediated signaling pathw...",19,4,4.92,707,"0.76571","0.36102","0.36102" +"GO:0032535","regulation of cellular component size",27,12,6.99,59,"0.02757","0.01322","0.36880" +"GO:0050776","regulation of immune response",39,7,10.1,1005,"0.91204","0.37104","0.37104" +"GO:0030334","regulation of cell migration",27,10,6.99,139,"0.13499","0.37568","0.37568" +"GO:0000469","cleavage involved in rRNA processing",10,0,2.59,1265,"1.00000","0.37718","0.37718" +"GO:0060284","regulation of cell development",52,16,13.46,237,"0.25313","0.37841","0.37841" +"GO:0051783","regulation of nuclear division",19,6,4.92,322,"0.36608","0.37970","0.37970" +"GO:0090068","positive regulation of cell cycle proces...",12,2,3.11,893,"0.85812","0.38070","0.38070" +"GO:0045454","cell redox homeostasis",17,7,4.4,120,"0.12388","0.38522","0.38522" +"GO:1905114","cell surface receptor signaling pathway ...",40,14,10.36,125,"0.12781","0.38606","0.38606" +"GO:0040008","regulation of growth",38,11,9.84,356,"0.39223","0.38837","0.38837" +"GO:0010639","negative regulation of organelle organiz...",29,9,7.51,294,"0.32662","0.38848","0.38848" +"GO:0045931","positive regulation of mitotic cell cycl...",10,1,2.59,1072,"0.95033","0.38869","0.38869" +"GO:0008285","negative regulation of cell proliferatio...",33,10,8.54,305,"0.34156","0.38874","0.38874" +"GO:1901654","response to ketone",16,6,4.14,192,"0.21335","0.39275","0.39275" +"GO:0001667","ameboidal-type cell migration",13,5,3.37,204,"0.22859","0.39276","0.39276" +"GO:0048856","anatomical structure development",357,99,92.44,197,"0.21492","0.39301","0.39301" +"GO:0006513","protein monoubiquitination",17,4,4.4,610,"0.67848","0.39305","0.39305" +"GO:0016051","carbohydrate biosynthetic process",10,1,2.59,1073,"0.95033","0.39399","0.39399" +"GO:0030155","regulation of cell adhesion",23,9,5.96,115,"0.11428","0.39430","0.39430" +"GO:0061640","cytoskeleton-dependent cytokinesis",11,4,2.85,272,"0.31134","0.39453","0.39453" +"GO:0030099","myeloid cell differentiation",17,2,4.4,1092,"0.95790","0.39500","0.39500" +"GO:0048588","developmental cell growth",10,4,2.59,227,"0.24504","0.39551","0.39551" +"GO:0032502","developmental process",396,110,102.54,181,"0.19298","0.39555","0.39555" +"GO:0006952","defense response",61,14,15.79,689,"0.74713","0.39645","0.39645" +"GO:0043618","regulation of transcription from RNA pol...",12,2,3.11,894,"0.85812","0.39727","0.39727" +"GO:0043620","regulation of DNA-templated transcriptio...",12,2,3.11,895,"0.85812","0.39727","0.39727" +"GO:0032787","monocarboxylic acid metabolic process",22,3,5.7,1068,"0.95011","0.39749","0.39749" +"GO:0007167","enzyme linked receptor protein signaling...",43,14,11.13,188,"0.20074","0.39764","0.39764" +"GO:0044270","cellular nitrogen compound catabolic pro...",49,7,12.69,1169,"0.98416","0.39827","0.39827" +"GO:0046700","heterocycle catabolic process",49,7,12.69,1170,"0.98416","0.39827","0.39827" +"GO:0043903","regulation of symbiosis, encompassing mu...",13,4,3.37,382,"0.44575","0.40169","0.40169" +"GO:0048568","embryonic organ development",48,12,12.43,527,"0.61196","0.40354","0.40354" +"GO:0048872","homeostasis of number of cells",18,4,4.66,665,"0.72466","0.40355","0.40355" +"GO:0006368","transcription elongation from RNA polyme...",16,6,4.14,193,"0.21335","0.40730","0.40730" +"GO:0007018","microtubule-based movement",43,13,11.13,266,"0.30857","0.40896","0.40896" +"GO:0044419","interspecies interaction between organis...",25,9,6.47,173,"0.17470","0.41015","0.41015" +"GO:0034976","response to endoplasmic reticulum stress",18,6,4.66,285,"0.31343","0.41627","0.41627" +"GO:0007155","cell adhesion",77,24,19.94,168,"0.17282","0.41707","0.41707" +"GO:0022610","biological adhesion",77,24,19.94,169,"0.17282","0.41707","0.41707" +"GO:0016441","posttranscriptional gene silencing",13,3,3.37,629,"0.69431","0.41937","0.41937" +"GO:0035194","posttranscriptional gene silencing by RN...",13,3,3.37,630,"0.69431","0.41937","0.41937" +"GO:0007399","nervous system development",166,47,42.98,239,"0.25755","0.41952","0.41952" +"GO:0051961","negative regulation of nervous system de...",23,7,5.96,351,"0.38391","0.42023","0.42023" +"GO:1902882","regulation of response to oxidative stre...",12,2,3.11,896,"0.85812","0.42129","0.42129" +"GO:0010498","proteasomal protein catabolic process",34,7,8.8,814,"0.81651","0.42207","0.42207" +"GO:0036503","ERAD pathway",10,3,2.59,431,"0.50123","0.42625","0.42625" +"GO:0010631","epithelial cell migration",11,4,2.85,273,"0.31134","0.42754","0.42754" +"GO:1905330","regulation of morphogenesis of an epithe...",10,4,2.59,228,"0.24504","0.42756","0.42756" +"GO:0002682","regulation of immune system process",65,13,16.83,962,"0.89542","0.42825","0.42825" +"GO:0048699","generation of neurons",111,32,28.74,246,"0.26744","0.42834","0.42834" +"GO:0000413","protein peptidyl-prolyl isomerization",10,2,2.59,731,"0.77602","0.43125","0.43125" +"GO:0018208","peptidyl-proline modification",10,2,2.59,732,"0.77602","0.43125","0.43125" +"GO:0051254","positive regulation of RNA metabolic pro...",87,21,22.53,623,"0.68785","0.43332","0.43332" +"GO:0009790","embryo development",109,30,28.22,350,"0.38209","0.43471","0.43471" +"GO:0051099","positive regulation of binding",11,4,2.85,274,"0.31134","0.43774","0.43774" +"GO:0015931","nucleobase-containing compound transport",22,7,5.7,302,"0.33555","0.44006","0.44006" +"GO:0002165","instar larval or pupal development",17,5,4.4,397,"0.46036","0.44054","0.44054" +"GO:0044093","positive regulation of molecular functio...",85,20,22.01,670,"0.73217","0.44193","0.44193" +"GO:1901360","organic cyclic compound metabolic proces...",1001,301,259.19,14,"9.1e-05","7.3e-06","0.44254" +"GO:0010556","regulation of macromolecule biosynthetic...",489,159,126.62,20,"0.00017","4.2e-05","0.44295" +"GO:0021537","telencephalon development",10,2,2.59,733,"0.77602","0.44532","0.44532" +"GO:0006836","neurotransmitter transport",10,3,2.59,432,"0.50123","0.44826","0.44826" +"GO:0014823","response to activity",10,2,2.59,734,"0.77602","0.44826","0.44826" +"GO:0034764","positive regulation of transmembrane tra...",10,3,2.59,433,"0.50123","0.44826","0.44826" +"GO:0048524","positive regulation of viral process",10,2,2.59,735,"0.77602","0.44826","0.44826" +"GO:0071241","cellular response to inorganic substance",10,2,2.59,736,"0.77602","0.44826","0.44826" +"GO:0099003","vesicle-mediated transport in synapse",10,2,2.59,737,"0.77602","0.44826","0.44826" +"GO:0099504","synaptic vesicle cycle",10,2,2.59,738,"0.77602","0.44826","0.44826" +"GO:0006405","RNA export from nucleus",15,6,3.88,165,"0.16812","0.44854","0.44854" +"GO:0022414","reproductive process",111,30,28.74,369,"0.42711","0.45041","0.45041" +"GO:0003013","circulatory system process",13,3,3.37,631,"0.69431","0.45189","0.45189" +"GO:0008015","blood circulation",13,3,3.37,632,"0.69431","0.45189","0.45189" +"GO:1903522","regulation of blood circulation",13,3,3.37,633,"0.69431","0.45189","0.45189" +"GO:0002376","immune system process",104,20,26.93,1098,"0.95856","0.45231","0.45231" +"GO:0009792","embryo development ending in birth or eg...",64,19,16.57,258,"0.28370","0.45262","0.45262" +"GO:1900407","regulation of cellular response to oxida...",11,2,2.85,819,"0.82126","0.45289","0.45289" +"GO:1905268","negative regulation of chromatin organiz...",11,2,2.85,820,"0.82126","0.45289","0.45289" +"GO:0050792","regulation of viral process",12,3,3.11,559,"0.63695","0.45619","0.45619" +"GO:0043269","regulation of ion transport",19,3,4.92,968,"0.90477","0.45980","0.45980" +"GO:0010720","positive regulation of cell development",20,7,5.18,215,"0.24246","0.45986","0.45986" +"GO:0048608","reproductive structure development",41,12,10.62,317,"0.36605","0.45991","0.45991" +"GO:0046785","microtubule polymerization",11,4,2.85,275,"0.31134","0.46022","0.46022" +"GO:0048754","branching morphogenesis of an epithelial...",11,4,2.85,276,"0.31134","0.46202","0.46202" +"GO:2000112","regulation of cellular macromolecule bio...",486,158,125.84,21,"0.00018","4.1e-05","0.46250" +"GO:0002218","activation of innate immune response",13,4,3.37,383,"0.44575","0.46266","0.46266" +"GO:0002758","innate immune response-activating signal...",13,4,3.37,384,"0.44575","0.46266","0.46266" +"GO:0006997","nucleus organization",17,5,4.4,398,"0.46036","0.46312","0.46312" +"GO:0031401","positive regulation of protein modificat...",58,13,15.02,720,"0.77419","0.46405","0.46405" +"GO:0009886","post-embryonic animal morphogenesis",15,4,3.88,481,"0.57089","0.46773","0.46773" +"GO:0001841","neural tube formation",11,4,2.85,277,"0.31134","0.46862","0.46862" +"GO:0000902","cell morphogenesis",69,20,17.87,292,"0.31868","0.46967","0.46967" +"GO:0018205","peptidyl-lysine modification",50,12,12.95,602,"0.67388","0.47032","0.47032" +"GO:0007051","spindle organization",13,3,3.37,634,"0.69431","0.47351","0.47351" +"GO:0033365","protein localization to organelle",63,15,16.31,646,"0.69518","0.47677","0.47677" +"GO:1902904","negative regulation of supramolecular fi...",12,4,3.11,336,"0.37893","0.47703","0.47703" +"GO:0060548","negative regulation of cell death",49,14,12.69,354,"0.38560","0.47715","0.47715" +"GO:0006955","immune response",53,9,13.72,1089,"0.95631","0.47744","0.47744" +"GO:0007552","metamorphosis",12,4,3.11,337,"0.37893","0.47853","0.47853" +"GO:0007560","imaginal disc morphogenesis",12,4,3.11,338,"0.37893","0.47853","0.47853" +"GO:0048563","post-embryonic animal organ morphogenesi...",12,4,3.11,339,"0.37893","0.47853","0.47853" +"GO:0048707","instar larval or pupal morphogenesis",12,4,3.11,340,"0.37893","0.47853","0.47853" +"GO:0048232","male gamete generation",39,9,10.1,657,"0.71507","0.47854","0.47854" +"GO:0010876","lipid localization",22,6,5.7,457,"0.52239","0.47948","0.47948" +"GO:0045088","regulation of innate immune response",22,5,5.7,654,"0.71096","0.48171","0.48171" +"GO:0043543","protein acylation",34,6,8.8,979,"0.90828","0.48604","0.48604" +"GO:0043393","regulation of protein binding",13,5,3.37,205,"0.22859","0.48614","0.48614" +"GO:1901361","organic cyclic compound catabolic proces...",51,7,13.21,1190,"0.98911","0.48632","0.48632" +"GO:1902850","microtubule cytoskeleton organization in...",11,4,2.85,278,"0.31134","0.48676","0.48676" +"GO:1903201","regulation of oxidative stress-induced c...",10,2,2.59,739,"0.77602","0.48684","0.48684" +"GO:0031349","positive regulation of defense response",20,5,5.18,540,"0.62128","0.48693","0.48693" +"GO:0051301","cell division",35,11,9.06,255,"0.28141","0.48735","0.48735" +"GO:0001822","kidney development",19,5,4.92,474,"0.57072","0.48877","0.48877" +"GO:0050657","nucleic acid transport",18,7,4.66,152,"0.15960","0.48959","0.48959" +"GO:0050658","RNA transport",18,7,4.66,153,"0.15960","0.48959","0.48959" +"GO:0051236","establishment of RNA localization",18,7,4.66,154,"0.15960","0.48959","0.48959" +"GO:0006364","rRNA processing",38,3,9.84,1235,"0.99893","0.49055","0.49055" +"GO:0048519","negative regulation of biological proces...",325,77,84.15,871,"0.84946","0.42237","0.49064" +"GO:0016477","cell migration",41,14,10.62,145,"0.15021","0.49106","0.49106" +"GO:0046483","heterocycle metabolic process",991,298,256.6,15,"0.00010","4.0e-06","0.49349" +"GO:0043065","positive regulation of apoptotic process",21,5,5.44,595,"0.66810","0.49389","0.49389" +"GO:0006974","cellular response to DNA damage stimulus",145,47,37.54,70,"0.04266","0.00645","0.49498" +"GO:0042026","protein refolding",12,3,3.11,560,"0.63695","0.49664","0.49664" +"GO:0010817","regulation of hormone levels",22,6,5.7,458,"0.52239","0.49849","0.49849" +"GO:0032434","regulation of proteasomal ubiquitin-depe...",10,3,2.59,434,"0.50123","0.49872","0.49872" +"GO:0043281","regulation of cysteine-type endopeptidas...",10,3,2.59,435,"0.50123","0.49872","0.49872" +"GO:0048871","multicellular organismal homeostasis",19,4,4.92,708,"0.76571","0.49952","0.49952" +"GO:0070588","calcium ion transmembrane transport",12,3,3.11,561,"0.63695","0.49968","0.49968" +"GO:0007034","vacuolar transport",21,5,5.44,596,"0.66810","0.50195","0.50195" +"GO:0050778","positive regulation of immune response",31,7,8.03,669,"0.72848","0.50346","0.50346" +"GO:0051258","protein polymerization",29,13,7.51,55,"0.02049","0.01460","0.50489" +"GO:0040029","regulation of gene expression, epigeneti...",30,7,7.77,627,"0.69345","0.50603","0.50603" +"GO:0040012","regulation of locomotion",35,12,9.06,167,"0.17084","0.50610","0.50610" +"GO:0071214","cellular response to abiotic stimulus",13,4,3.37,385,"0.44575","0.50766","0.50766" +"GO:0104004","cellular response to environmental stimu...",13,4,3.37,386,"0.44575","0.50766","0.50766" +"GO:0009892","negative regulation of metabolic process",190,42,49.2,983,"0.90861","0.51162","0.51162" +"GO:0035282","segmentation",21,4,5.44,854,"0.83328","0.51409","0.51409" +"GO:0006928","movement of cell or subcellular componen...",110,34,28.48,138,"0.13306","0.51437","0.51437" +"GO:0022613","ribonucleoprotein complex biogenesis",78,12,20.2,1196,"0.99162","0.51645","0.51645" +"GO:0042461","photoreceptor cell development",11,4,2.85,279,"0.31134","0.51776","0.51776" +"GO:0061013","regulation of mRNA catabolic process",11,1,2.85,1106,"0.96324","0.51790","0.51790" +"GO:0010605","negative regulation of macromolecule met...",181,40,46.87,966,"0.90381","0.51823","0.51823" +"GO:2000145","regulation of cell motility",29,10,7.51,183,"0.19534","0.51829","0.51829" +"GO:0000904","cell morphogenesis involved in different...",55,17,14.24,212,"0.23747","0.51841","0.51841" +"GO:0050821","protein stabilization",13,2,3.37,955,"0.88790","0.52005","0.52005" +"GO:0023061","signal release",16,3,4.14,841,"0.82505","0.52019","0.52019" +"GO:0006725","cellular aromatic compound metabolic pro...",989,297,256.08,17,"0.00012","3.5e-06","0.52063" +"GO:0045471","response to ethanol",10,2,2.59,740,"0.77602","0.52132","0.52132" +"GO:0022411","cellular component disassembly",35,11,9.06,256,"0.28141","0.52133","0.52133" +"GO:0045087","innate immune response",29,6,7.51,795,"0.80139","0.52168","0.52168" +"GO:0043583","ear development",11,3,2.85,502,"0.57244","0.52485","0.52485" +"GO:0048839","inner ear development",11,3,2.85,503,"0.57244","0.52485","0.52485" +"GO:0071396","cellular response to lipid",34,8,8.8,621,"0.68761","0.52531","0.52531" +"GO:0072594","establishment of protein localization to...",44,8,11.39,1008,"0.91614","0.52563","0.52563" +"GO:0043632","modification-dependent macromolecule cat...",71,17,18.38,624,"0.69190","0.52623","0.52623" +"GO:0006511","ubiquitin-dependent protein catabolic pr...",68,16,17.61,661,"0.71776","0.52660","0.52660" +"GO:0019941","modification-dependent protein catabolic...",68,16,17.61,662,"0.71776","0.52660","0.52660" +"GO:0019439","aromatic compound catabolic process",50,7,12.95,1179,"0.98685","0.52688","0.52688" +"GO:0017038","protein import",23,4,5.96,941,"0.88376","0.52925","0.52925" +"GO:0044743","protein transmembrane import into intrac...",10,2,2.59,741,"0.77602","0.52947","0.52947" +"GO:0051338","regulation of transferase activity",41,10,10.62,582,"0.64658","0.53308","0.53308" +"GO:0007041","lysosomal transport",10,2,2.59,742,"0.77602","0.53370","0.53370" +"GO:0030100","regulation of endocytosis",19,6,4.92,323,"0.36608","0.53471","0.53471" +"GO:0010608","posttranscriptional regulation of gene e...",47,6,12.17,1197,"0.99166","0.53566","0.53566" +"GO:1901362","organic cyclic compound biosynthetic pro...",570,176,147.59,30,"0.00149","0.00017","0.53606" +"GO:0001894","tissue homeostasis",17,4,4.4,611,"0.67848","0.53764","0.53764" +"GO:0050863","regulation of T cell activation",12,3,3.11,562,"0.63695","0.53805","0.53805" +"GO:0072001","renal system development",21,5,5.44,597,"0.66810","0.53858","0.53858" +"GO:0007472","wing disc morphogenesis",10,3,2.59,436,"0.50123","0.54132","0.54132" +"GO:0035220","wing disc development",10,3,2.59,437,"0.50123","0.54132","0.54132" +"GO:0035148","tube formation",15,6,3.88,166,"0.16812","0.54166","0.54166" +"GO:0006631","fatty acid metabolic process",17,3,4.4,878,"0.85645","0.54176","0.54176" +"GO:0034765","regulation of ion transmembrane transpor...",15,3,3.88,780,"0.78794","0.54201","0.54201" +"GO:1904062","regulation of cation transmembrane trans...",15,3,3.88,781,"0.78794","0.54201","0.54201" +"GO:0045787","positive regulation of cell cycle",16,3,4.14,842,"0.82505","0.54338","0.54338" +"GO:0043068","positive regulation of programmed cell d...",23,6,5.96,488,"0.57127","0.54371","0.54371" +"GO:0009408","response to heat",25,7,6.47,419,"0.48037","0.54612","0.54612" +"GO:0006915","apoptotic process",85,20,22.01,671,"0.73217","0.54671","0.54671" +"GO:0006869","lipid transport",18,5,4.66,450,"0.51687","0.54854","0.54854" +"GO:0003012","muscle system process",21,5,5.44,598,"0.66810","0.55297","0.55297" +"GO:0006367","transcription initiation from RNA polyme...",18,6,4.66,286,"0.31343","0.55362","0.55362" +"GO:0050769","positive regulation of neurogenesis",18,6,4.66,287,"0.31343","0.55362","0.55362" +"GO:0001838","embryonic epithelial tube formation",13,5,3.37,206,"0.22859","0.55435","0.55435" +"GO:0072175","epithelial tube formation",13,5,3.37,207,"0.22859","0.55435","0.55435" +"GO:0060541","respiratory system development",23,7,5.96,352,"0.38391","0.55477","0.55477" +"GO:0007286","spermatid development",23,4,5.96,942,"0.88376","0.55589","0.55589" +"GO:0048515","spermatid differentiation",23,4,5.96,943,"0.88376","0.55589","0.55589" +"GO:0016070","RNA metabolic process",773,222,200.15,54,"0.01939","0.00027","0.55754" +"GO:0045814","negative regulation of gene expression, ...",17,4,4.4,612,"0.67848","0.55820","0.55820" +"GO:0006139","nucleobase-containing compound metabolic...",979,296,253.49,9,"6.6e-05","2.8e-06","0.55844" +"GO:1901565","organonitrogen compound catabolic proces...",108,25,27.96,767,"0.77934","0.55892","0.55892" +"GO:0030488","tRNA methylation",10,1,2.59,1074,"0.95033","0.56146","0.56146" +"GO:0051348","negative regulation of transferase activ...",11,2,2.85,821,"0.82126","0.56181","0.56181" +"GO:0050764","regulation of phagocytosis",11,3,2.85,504,"0.57244","0.56249","0.56249" +"GO:0045893","positive regulation of transcription, DN...",77,19,19.94,572,"0.64121","0.56259","0.56259" +"GO:1902680","positive regulation of RNA biosynthetic ...",77,19,19.94,573,"0.64121","0.56259","0.56259" +"GO:1903508","positive regulation of nucleic acid-temp...",77,19,19.94,574,"0.64121","0.56259","0.56259" +"GO:0014070","response to organic cyclic compound",55,12,14.24,794,"0.80115","0.56337","0.56337" +"GO:0012501","programmed cell death",94,24,24.34,513,"0.57285","0.56342","0.56342" +"GO:0022898","regulation of transmembrane transporter ...",14,2,3.63,990,"0.91180","0.56472","0.56472" +"GO:0032409","regulation of transporter activity",14,2,3.63,991,"0.91180","0.56472","0.56472" +"GO:0032412","regulation of ion transmembrane transpor...",14,2,3.63,992,"0.91180","0.56472","0.56472" +"GO:0045089","positive regulation of innate immune res...",18,5,4.66,451,"0.51687","0.56890","0.56890" +"GO:0001763","morphogenesis of a branching structure",13,4,3.37,387,"0.44575","0.56895","0.56895" +"GO:0061138","morphogenesis of a branching epithelium",13,4,3.37,388,"0.44575","0.56895","0.56895" +"GO:0030522","intracellular receptor signaling pathway",15,3,3.88,782,"0.78794","0.56985","0.56985" +"GO:0050767","regulation of neurogenesis",43,12,11.13,375,"0.43827","0.57101","0.57101" +"GO:0098657","import into cell",39,10,10.1,517,"0.57607","0.57171","0.57171" +"GO:0045944","positive regulation of transcription by ...",53,13,13.72,577,"0.64268","0.57223","0.57223" +"GO:0001890","placenta development",11,3,2.85,505,"0.57244","0.57254","0.57254" +"GO:2000058","regulation of ubiquitin-dependent protei...",11,3,2.85,506,"0.57244","0.57254","0.57254" +"GO:2000116","regulation of cysteine-type endopeptidas...",11,3,2.85,507,"0.57244","0.57254","0.57254" +"GO:0018130","heterocycle biosynthetic process",566,175,146.55,29,"0.00143","0.00019","0.57521" +"GO:0007423","sensory organ development",69,21,17.87,208,"0.22874","0.57540","0.57540" +"GO:0090130","tissue migration",12,4,3.11,341,"0.37893","0.57852","0.57852" +"GO:0090132","epithelium migration",12,4,3.11,342,"0.37893","0.57852","0.57852" +"GO:0006457","protein folding",35,7,9.06,858,"0.84036","0.57885","0.57885" +"GO:0051270","regulation of cellular component movemen...",33,11,8.54,196,"0.21360","0.58063","0.58063" +"GO:0006897","endocytosis",36,9,9.32,528,"0.61264","0.58154","0.58154" +"GO:0002443","leukocyte mediated immunity",12,2,3.11,897,"0.85812","0.58165","0.58165" +"GO:0007281","germ cell development",42,11,10.88,465,"0.54190","0.58225","0.58225" +"GO:0048731","system development",273,72,70.69,395,"0.44923","0.58253","0.58253" +"GO:0031109","microtubule polymerization or depolymeri...",12,4,3.11,343,"0.37893","0.58322","0.58322" +"GO:0009266","response to temperature stimulus",28,7,7.25,530,"0.61514","0.58413","0.58413" +"GO:0007283","spermatogenesis",36,8,9.32,697,"0.75205","0.58426","0.58426" +"GO:0045321","leukocyte activation",29,5,7.51,973,"0.90523","0.58451","0.58451" +"GO:0007268","chemical synaptic transmission",20,5,5.18,541,"0.62128","0.58710","0.58710" +"GO:0098916","anterograde trans-synaptic signaling",20,5,5.18,542,"0.62128","0.58710","0.58710" +"GO:0099536","synaptic signaling",20,5,5.18,543,"0.62128","0.58710","0.58710" +"GO:0099537","trans-synaptic signaling",20,5,5.18,544,"0.62128","0.58710","0.58710" +"GO:0006468","protein phosphorylation",223,62,57.74,248,"0.27199","0.58724","0.58724" +"GO:0000209","protein polyubiquitination",29,8,7.51,423,"0.48788","0.58754","0.58754" +"GO:0006643","membrane lipid metabolic process",12,4,3.11,344,"0.37893","0.58791","0.58791" +"GO:0006091","generation of precursor metabolites and ...",16,2,4.14,1052,"0.94597","0.59024","0.59024" +"GO:0014020","primary neural tube formation",10,4,2.59,229,"0.24504","0.59026","0.59026" +"GO:0043069","negative regulation of programmed cell d...",43,12,11.13,376,"0.43827","0.59116","0.59116" +"GO:0009888","tissue development",133,32,34.44,663,"0.72127","0.59214","0.59214" +"GO:0048736","appendage development",22,6,5.7,459,"0.52239","0.59243","0.59243" +"GO:0043066","negative regulation of apoptotic process",39,11,10.1,370,"0.43013","0.59286","0.59286" +"GO:0042274","ribosomal small subunit biogenesis",10,0,2.59,1266,"1.00000","0.59455","0.59455" +"GO:0006813","potassium ion transport",10,3,2.59,438,"0.50123","0.59626","0.59626" +"GO:0017145","stem cell division",11,3,2.85,508,"0.57244","0.59718","0.59718" +"GO:0042594","response to starvation",19,4,4.92,709,"0.76571","0.59787","0.59787" +"GO:0006935","chemotaxis",30,8,7.77,462,"0.53134","0.59810","0.59810" +"GO:0007267","cell-cell signaling",75,22,19.42,259,"0.28438","0.59833","0.59833" +"GO:0031589","cell-substrate adhesion",11,4,2.85,280,"0.31134","0.59950","0.59950" +"GO:0033043","regulation of organelle organization",100,30,25.89,184,"0.19923","0.14675","0.59965" +"GO:0043086","negative regulation of catalytic activit...",29,9,7.51,295,"0.32662","0.60042","0.60042" +"GO:0043085","positive regulation of catalytic activit...",58,14,15.02,599,"0.67027","0.60069","0.60069" +"GO:0048469","cell maturation",17,6,4.4,242,"0.26215","0.60092","0.60092" +"GO:0006816","calcium ion transport",17,3,4.4,879,"0.85645","0.60334","0.60334" +"GO:0042147","retrograde transport, endosome to Golgi",13,4,3.37,389,"0.44575","0.60366","0.60366" +"GO:0031328","positive regulation of cellular biosynth...",84,20,21.75,651,"0.71087","0.60373","0.60373" +"GO:1902903","regulation of supramolecular fiber organ...",26,11,6.73,76,"0.04980","0.01186","0.60397" +"GO:0010948","negative regulation of cell cycle proces...",18,6,4.66,288,"0.31343","0.60471","0.60471" +"GO:0060429","epithelium development",88,21,22.79,650,"0.70966","0.60652","0.60652" +"GO:1901652","response to peptide",11,1,2.85,1107,"0.96324","0.60713","0.60713" +"GO:0006611","protein export from nucleus",12,2,3.11,898,"0.85812","0.60827","0.60827" +"GO:0051028","mRNA transport",12,4,3.11,345,"0.37893","0.60827","0.60827" +"GO:0019932","second-messenger-mediated signaling",17,3,4.4,880,"0.85645","0.60872","0.60872" +"GO:0007178","transmembrane receptor protein serine/th...",21,6,5.44,408,"0.47144","0.60889","0.60889" +"GO:1901135","carbohydrate derivative metabolic proces...",119,33,30.81,312,"0.35395","0.60907","0.60907" +"GO:0009653","anatomical structure morphogenesis",183,49,47.38,362,"0.41812","0.60949","0.60949" +"GO:0031326","regulation of cellular biosynthetic proc...",492,160,127.39,19,"0.00016","4.3e-05","0.60978" +"GO:0046649","lymphocyte activation",23,4,5.96,944,"0.88376","0.61012","0.61012" +"GO:0060491","regulation of cell projection assembly",19,7,4.92,185,"0.19935","0.61034","0.61034" +"GO:0120032","regulation of plasma membrane bounded ce...",19,7,4.92,186,"0.19935","0.61034","0.61034" +"GO:0042391","regulation of membrane potential",12,2,3.11,899,"0.85812","0.61297","0.61297" +"GO:0002757","immune response-activating signal transd...",18,5,4.66,452,"0.51687","0.61304","0.61304" +"GO:0002764","immune response-regulating signaling pat...",18,5,4.66,453,"0.51687","0.61304","0.61304" +"GO:0016032","viral process",21,6,5.44,409,"0.47144","0.61512","0.61512" +"GO:0030518","intracellular steroid hormone receptor s...",10,2,2.59,743,"0.77602","0.61542","0.61542" +"GO:0006605","protein targeting",31,5,8.03,1036,"0.93373","0.61589","0.61589" +"GO:0051260","protein homooligomerization",13,2,3.37,956,"0.88790","0.61658","0.61658" +"GO:0044057","regulation of system process",23,6,5.96,489,"0.57127","0.61683","0.61683" +"GO:0002009","morphogenesis of an epithelium",53,16,13.72,254,"0.28129","0.61946","0.61946" +"GO:0050953","sensory perception of light stimulus",18,2,4.66,1122,"0.96729","0.62008","0.62008" +"GO:0035107","appendage morphogenesis",20,4,5.18,800,"0.80182","0.62153","0.62153" +"GO:0022412","cellular process involved in reproductio...",46,12,11.91,466,"0.54495","0.62204","0.62204" +"GO:0018193","peptidyl-amino acid modification",92,20,23.82,876,"0.85290","0.62398","0.62398" +"GO:0009144","purine nucleoside triphosphate metabolic...",18,3,4.66,932,"0.88281","0.62456","0.62456" +"GO:0009199","ribonucleoside triphosphate metabolic pr...",18,4,4.66,666,"0.72466","0.62456","0.62456" +"GO:0048667","cell morphogenesis involved in neuron di...",41,12,10.62,318,"0.36605","0.62470","0.62470" +"GO:0019438","aromatic compound biosynthetic process",561,174,145.26,28,"0.00125","0.00017","0.62603" +"GO:0009314","response to radiation",28,5,7.25,949,"0.88733","0.62732","0.62732" +"GO:0030198","extracellular matrix organization",17,6,4.4,243,"0.26215","0.62913","0.62913" +"GO:0043062","extracellular structure organization",17,6,4.4,244,"0.26215","0.62913","0.62913" +"GO:0034762","regulation of transmembrane transport",17,3,4.4,881,"0.85645","0.63066","0.63066" +"GO:0048523","negative regulation of cellular process",281,66,72.76,873,"0.85214","0.56465","0.63106" +"GO:0048762","mesenchymal cell differentiation",10,3,2.59,439,"0.50123","0.63114","0.63114" +"GO:0002164","larval development",13,0,3.37,1267,"1.00000","0.63325","0.63325" +"GO:0033993","response to lipid",54,13,13.98,600,"0.67189","0.63385","0.63385" +"GO:0051347","positive regulation of transferase activ...",22,4,5.7,910,"0.86046","0.63396","0.63396" +"GO:0010563","negative regulation of phosphorus metabo...",30,4,7.77,1129,"0.97101","0.63486","0.63486" +"GO:0045936","negative regulation of phosphate metabol...",30,4,7.77,1130,"0.97101","0.63486","0.63486" +"GO:0043434","response to peptide hormone",10,1,2.59,1075,"0.95033","0.63542","0.63542" +"GO:1901653","cellular response to peptide",10,1,2.59,1076,"0.95033","0.63542","0.63542" +"GO:0031047","gene silencing by RNA",17,3,4.4,882,"0.85645","0.63625","0.63625" +"GO:0044262","cellular carbohydrate metabolic process",14,2,3.63,993,"0.91180","0.63742","0.63742" +"GO:2001257","regulation of cation channel activity",11,2,2.85,822,"0.82126","0.63860","0.63860" +"GO:0052548","regulation of endopeptidase activity",12,3,3.11,563,"0.63695","0.63958","0.63958" +"GO:0008219","cell death",106,26,27.45,590,"0.66509","0.64021","0.64021" +"GO:0010557","positive regulation of macromolecule bio...",82,19,21.23,699,"0.75465","0.64037","0.64037" +"GO:0001505","regulation of neurotransmitter levels",14,2,3.63,994,"0.91180","0.64080","0.64080" +"GO:0031344","regulation of cell projection organizati...",36,11,9.32,289,"0.31750","0.64237","0.64237" +"GO:0120035","regulation of plasma membrane bounded ce...",36,11,9.32,290,"0.31750","0.64237","0.64237" +"GO:0051962","positive regulation of nervous system de...",19,6,4.92,324,"0.36608","0.64385","0.64385" +"GO:0001522","pseudouridine synthesis",12,2,3.11,900,"0.85812","0.64426","0.64426" +"GO:0010628","positive regulation of gene expression",99,25,25.63,520,"0.59814","0.64443","0.64443" +"GO:0007548","sex differentiation",25,8,6.47,267,"0.30912","0.64824","0.64824" +"GO:0044242","cellular lipid catabolic process",11,3,2.85,509,"0.57244","0.64906","0.64906" +"GO:0044265","cellular macromolecule catabolic process",108,22,27.96,1028,"0.92934","0.65129","0.65129" +"GO:0007601","visual perception",17,2,4.4,1093,"0.95790","0.65320","0.65320" +"GO:0009889","regulation of biosynthetic process",494,160,127.91,22,"0.00021","5.9e-05","0.65408" +"GO:0030177","positive regulation of Wnt signaling pat...",10,4,2.59,230,"0.24504","0.65506","0.65506" +"GO:0030010","establishment of cell polarity",12,4,3.11,346,"0.37893","0.65517","0.65517" +"GO:0032501","multicellular organismal process",393,102,101.76,443,"0.51004","0.65648","0.65648" +"GO:0006814","sodium ion transport",16,4,4.14,549,"0.62716","0.65890","0.65890" +"GO:0098542","defense response to other organism",26,4,6.73,1040,"0.93450","0.65921","0.65921" +"GO:0048870","cell motility",51,16,13.21,199,"0.22612","0.66147","0.66147" +"GO:0051674","localization of cell",51,16,13.21,200,"0.22612","0.66147","0.66147" +"GO:0071407","cellular response to organic cyclic comp...",33,7,8.54,789,"0.78997","0.66156","0.66156" +"GO:0097190","apoptotic signaling pathway",21,6,5.44,410,"0.47144","0.66271","0.66271" +"GO:0009991","response to extracellular stimulus",27,7,6.99,491,"0.57220","0.66349","0.66349" +"GO:0031667","response to nutrient levels",27,7,6.99,492,"0.57220","0.66349","0.66349" +"GO:0071704","organic substance metabolic process",1745,482,451.83,35,"0.00295","0.00180","0.66395" +"GO:0035295","tube development",64,13,16.57,931,"0.88228","0.66477","0.66477" +"GO:0048609","multicellular organismal reproductive pr...",70,17,18.12,592,"0.66703","0.66501","0.66501" +"GO:0010769","regulation of cell morphogenesis involve...",12,4,3.11,347,"0.37893","0.66760","0.66760" +"GO:0034654","nucleobase-containing compound biosynthe...",555,174,143.71,23,"0.00069","0.00013","0.66770" +"GO:0044260","cellular macromolecule metabolic process",1209,348,313.04,25,"0.00116","0.00011","0.66843" +"GO:0001655","urogenital system development",22,5,5.7,655,"0.71096","0.67044","0.67044" +"GO:0009880","embryonic pattern specification",15,2,3.88,1030,"0.93085","0.67121","0.67121" +"GO:0048863","stem cell differentiation",26,5,6.73,864,"0.84274","0.67171","0.67171" +"GO:0003002","regionalization",35,9,9.06,516,"0.57467","0.67209","0.67209" +"GO:0009719","response to endogenous stimulus",85,19,22.01,807,"0.81023","0.67466","0.67466" +"GO:0010941","regulation of cell death",81,20,20.97,575,"0.64140","0.67554","0.67554" +"GO:0000003","reproduction",117,31,30.29,416,"0.47602","0.67637","0.67637" +"GO:0015849","organic acid transport",19,6,4.92,325,"0.36608","0.67804","0.67804" +"GO:0046942","carboxylic acid transport",19,6,4.92,326,"0.36608","0.67804","0.67804" +"GO:0003015","heart process",11,2,2.85,823,"0.82126","0.67890","0.67890" +"GO:0008016","regulation of heart contraction",11,2,2.85,824,"0.82126","0.67890","0.67890" +"GO:0060047","heart contraction",11,2,2.85,825,"0.82126","0.67890","0.67890" +"GO:0044248","cellular catabolic process",176,34,45.57,1178,"0.98616","0.67952","0.67952" +"GO:0045596","negative regulation of cell differentiat...",41,12,10.62,319,"0.36605","0.68022","0.68022" +"GO:0042981","regulation of apoptotic process",66,16,17.09,593,"0.66789","0.68083","0.68083" +"GO:0032269","negative regulation of cellular protein ...",53,9,13.72,1090,"0.95631","0.68087","0.68087" +"GO:0002684","positive regulation of immune system pro...",37,9,9.58,584,"0.64881","0.68164","0.68164" +"GO:0060538","skeletal muscle organ development",17,4,4.4,613,"0.67848","0.68177","0.68177" +"GO:0035690","cellular response to drug",18,5,4.66,454,"0.51687","0.68368","0.68368" +"GO:0048569","post-embryonic animal organ development",16,4,4.14,550,"0.62716","0.68394","0.68394" +"GO:0001654","eye development",59,18,15.28,233,"0.24806","0.68424","0.68424" +"GO:0048880","sensory system development",59,18,15.28,234,"0.24806","0.68424","0.68424" +"GO:0150063","visual system development",59,18,15.28,235,"0.24806","0.68424","0.68424" +"GO:0035120","post-embryonic appendage morphogenesis",12,3,3.11,564,"0.63695","0.68460","0.68460" +"GO:0032956","regulation of actin cytoskeleton organiz...",19,9,4.92,63,"0.03515","0.00712","0.68494" +"GO:0048666","neuron development",81,23,20.97,304,"0.34113","0.68546","0.68546" +"GO:0002253","activation of immune response",20,5,5.18,545,"0.62128","0.68589","0.68589" +"GO:0007519","skeletal muscle tissue development",16,4,4.14,551,"0.62716","0.68750","0.68750" +"GO:0009605","response to external stimulus",118,22,30.55,1147,"0.97720","0.68883","0.68883" +"GO:0045665","negative regulation of neuron differenti...",14,3,3.63,675,"0.74453","0.68939","0.68939" +"GO:0010467","gene expression",841,229,217.76,149,"0.15388","0.02819","0.68954" +"GO:0010970","transport along microtubule",22,4,5.7,911,"0.86046","0.68984","0.68984" +"GO:0030705","cytoskeleton-dependent intracellular tra...",22,4,5.7,912,"0.86046","0.68984","0.68984" +"GO:0099111","microtubule-based transport",22,4,5.7,913,"0.86046","0.68984","0.68984" +"GO:0010038","response to metal ion",23,5,5.96,693,"0.74977","0.69027","0.69027" +"GO:0048513","animal organ development",207,52,53.6,554,"0.63174","0.69198","0.69198" +"GO:0022407","regulation of cell-cell adhesion",12,4,3.11,348,"0.37893","0.69228","0.69228" +"GO:0051960","regulation of nervous system development",47,13,12.17,381,"0.44561","0.69422","0.69422" +"GO:1903506","regulation of nucleic acid-templated tra...",452,151,117.04,7,"5.6e-05","3.2e-05","0.69443" +"GO:2001141","regulation of RNA biosynthetic process",452,151,117.04,8,"5.6e-05","3.2e-05","0.69443" +"GO:0042330","taxis",32,8,8.29,529,"0.61359","0.69867","0.69867" +"GO:0008088","axo-dendritic transport",11,2,2.85,826,"0.82126","0.69949","0.69949" +"GO:0032504","multicellular organism reproduction",72,17,18.64,658,"0.71567","0.70368","0.70368" +"GO:0043067","regulation of programmed cell death",70,18,18.12,471,"0.56037","0.70409","0.70409" +"GO:0032879","regulation of localization",127,27,32.88,984,"0.90956","0.70493","0.70493" +"GO:0001701","in utero embryonic development",30,10,7.77,210,"0.22926","0.70505","0.70505" +"GO:0009791","post-embryonic development",37,8,9.58,769,"0.78054","0.70532","0.70532" +"GO:0045137","development of primary sexual characteri...",21,7,5.44,264,"0.28813","0.70553","0.70553" +"GO:0006820","anion transport",28,8,7.25,380,"0.44339","0.70561","0.70561" +"GO:0031032","actomyosin structure organization",19,6,4.92,327,"0.36608","0.70742","0.70742" +"GO:0007610","behavior",42,6,10.88,1149,"0.97784","0.71083","0.71083" +"GO:0051345","positive regulation of hydrolase activit...",33,9,8.54,424,"0.49437","0.71135","0.71135" +"GO:0043009","chordate embryonic development",57,16,14.76,358,"0.40183","0.71535","0.71535" +"GO:0006732","coenzyme metabolic process",19,1,4.92,1222,"0.99671","0.71627","0.71627" +"GO:0071236","cellular response to antibiotic",13,3,3.37,635,"0.69431","0.71654","0.71654" +"GO:0050877","nervous system process",56,11,14.5,961,"0.89410","0.71688","0.71688" +"GO:0044257","cellular protein catabolic process",72,16,18.64,803,"0.80275","0.71746","0.71746" +"GO:0051603","proteolysis involved in cellular protein...",72,16,18.64,804,"0.80275","0.71746","0.71746" +"GO:0009891","positive regulation of biosynthetic proc...",85,20,22.01,672,"0.73217","0.71802","0.71802" +"GO:0000910","cytokinesis",17,5,4.4,399,"0.46036","0.71878","0.71878" +"GO:1901605","alpha-amino acid metabolic process",10,3,2.59,440,"0.50123","0.71897","0.71897" +"GO:0009416","response to light stimulus",19,1,4.92,1223,"0.99671","0.71997","0.71997" +"GO:0009205","purine ribonucleoside triphosphate metab...",17,3,4.4,883,"0.85645","0.72174","0.72174" +"GO:0007163","establishment or maintenance of cell pol...",17,5,4.4,400,"0.46036","0.72279","0.72279" +"GO:0006406","mRNA export from nucleus",10,2,2.59,744,"0.77602","0.72365","0.72365" +"GO:0071166","ribonucleoprotein complex localization",10,2,2.59,745,"0.77602","0.72365","0.72365" +"GO:0071426","ribonucleoprotein complex export from nu...",10,2,2.59,746,"0.77602","0.72365","0.72365" +"GO:0071427","mRNA-containing ribonucleoprotein comple...",10,2,2.59,747,"0.77602","0.72365","0.72365" +"GO:0009612","response to mechanical stimulus",13,4,3.37,390,"0.44575","0.72474","0.72474" +"GO:0031647","regulation of protein stability",20,4,5.18,801,"0.80182","0.72484","0.72484" +"GO:0051146","striated muscle cell differentiation",20,4,5.18,802,"0.80182","0.72484","0.72484" +"GO:0007568","aging",27,5,6.99,919,"0.86660","0.72563","0.72563" +"GO:0071806","protein transmembrane transport",11,2,2.85,827,"0.82126","0.72690","0.72690" +"GO:0000226","microtubule cytoskeleton organization",48,13,12.43,417,"0.48016","0.72856","0.72856" +"GO:0051704","multi-organism process",135,28,34.96,1045,"0.93628","0.72859","0.72859" +"GO:0051188","cofactor biosynthetic process",18,1,4.66,1215,"0.99555","0.72905","0.72905" +"GO:0042633","hair cycle",10,2,2.59,748,"0.77602","0.72940","0.72940" +"GO:0009636","response to toxic substance",29,6,7.51,796,"0.80139","0.73016","0.73016" +"GO:0007219","Notch signaling pathway",18,5,4.66,455,"0.51687","0.73027","0.73027" +"GO:0009987","cellular process",2217,590,574.04,66,"0.03557","0.04346","0.73054" +"GO:0051090","regulation of DNA-binding transcription ...",21,6,5.44,411,"0.47144","0.73153","0.73153" +"GO:0016236","macroautophagy",21,6,5.44,412,"0.47144","0.73153","0.73153" +"GO:0007033","vacuole organization",17,3,4.4,884,"0.85645","0.73402","0.73402" +"GO:0032270","positive regulation of cellular protein ...",76,15,19.68,1009,"0.91886","0.73537","0.73537" +"GO:0010942","positive regulation of cell death",28,6,7.25,716,"0.77123","0.73561","0.73561" +"GO:0045861","negative regulation of proteolysis",15,4,3.88,482,"0.57089","0.73691","0.73691" +"GO:0007166","cell surface receptor signaling pathway",134,31,34.7,793,"0.80091","0.73843","0.73843" +"GO:1902115","regulation of organelle assembly",18,4,4.66,667,"0.72466","0.73880","0.73880" +"GO:0098660","inorganic ion transmembrane transport",23,7,5.96,353,"0.38391","0.73915","0.73915" +"GO:0080135","regulation of cellular response to stres...",45,8,11.65,1024,"0.92791","0.74011","0.74011" +"GO:0043254","regulation of protein complex assembly",24,9,6.21,144,"0.14287","0.07051","0.74043" +"GO:0031503","protein-containing complex localization",21,4,5.44,855,"0.83328","0.74138","0.74138" +"GO:0031175","neuron projection development",61,15,15.79,576,"0.64154","0.74232","0.74232" +"GO:0051247","positive regulation of protein metabolic...",81,17,20.97,925,"0.87696","0.74252","0.74252" +"GO:0055002","striated muscle cell development",14,2,3.63,995,"0.91180","0.74323","0.74323" +"GO:0040011","locomotion",87,23,22.53,425,"0.49514","0.74388","0.74388" +"GO:1901615","organic hydroxy compound metabolic proce...",17,5,4.4,401,"0.46036","0.74557","0.74557" +"GO:0030163","protein catabolic process",96,20,24.86,964,"0.90043","0.74650","0.74650" +"GO:0007350","blastoderm segmentation",11,2,2.85,828,"0.82126","0.74683","0.74683" +"GO:0050804","modulation of chemical synaptic transmis...",11,3,2.85,510,"0.57244","0.74683","0.74683" +"GO:0099177","regulation of trans-synaptic signaling",11,3,2.85,511,"0.57244","0.74683","0.74683" +"GO:0065008","regulation of biological quality",192,46,49.71,703,"0.76260","0.53205","0.74820" +"GO:0044238","primary metabolic process",1677,462,434.22,43,"0.00639","0.00203","0.75092" +"GO:0052547","regulation of peptidase activity",14,3,3.63,676,"0.74453","0.75278","0.75278" +"GO:0061136","regulation of proteasomal protein catabo...",14,4,3.63,447,"0.51014","0.75278","0.75278" +"GO:0065009","regulation of molecular function",148,35,38.32,714,"0.76767","0.75329","0.75329" +"GO:0009607","response to biotic stimulus",40,4,10.36,1226,"0.99686","0.75535","0.75535" +"GO:0030335","positive regulation of cell migration",14,5,3.63,262,"0.28477","0.75594","0.75594" +"GO:0097305","response to alcohol",20,6,5.18,366,"0.41906","0.75815","0.75815" +"GO:0071310","cellular response to organic substance",100,20,25.89,1043,"0.93476","0.75856","0.75856" +"GO:0022603","regulation of anatomical structure morph...",36,10,9.32,406,"0.46078","0.76043","0.76043" +"GO:0030154","cell differentiation",217,55,56.19,522,"0.60354","0.76063","0.76063" +"GO:0090257","regulation of muscle system process",10,3,2.59,441,"0.50123","0.76091","0.76091" +"GO:0031334","positive regulation of protein complex a...",23,9,5.96,116,"0.11428","0.11504","0.76102" +"GO:0044703","multi-organism reproductive process",73,18,18.9,571,"0.64112","0.76130","0.76130" +"GO:0007369","gastrulation",17,4,4.4,614,"0.67848","0.76259","0.76259" +"GO:0043207","response to external biotic stimulus",38,4,9.84,1211,"0.99502","0.76617","0.76617" +"GO:0051707","response to other organism",38,4,9.84,1212,"0.99502","0.76617","0.76617" +"GO:0007179","transforming growth factor beta receptor...",13,3,3.37,636,"0.69431","0.76632","0.76632" +"GO:0060341","regulation of cellular localization",45,10,11.65,713,"0.76592","0.76879","0.76879" +"GO:0019318","hexose metabolic process",11,4,2.85,281,"0.31134","0.76990","0.76990" +"GO:0030001","metal ion transport",48,11,12.43,673,"0.73401","0.76999","0.76999" +"GO:0045666","positive regulation of neuron differenti...",14,4,3.63,448,"0.51014","0.77159","0.77159" +"GO:0043624","cellular protein complex disassembly",17,4,4.4,615,"0.67848","0.77189","0.77189" +"GO:0002790","peptide secretion",16,3,4.14,843,"0.82505","0.77200","0.77200" +"GO:0009306","protein secretion",16,3,4.14,844,"0.82505","0.77200","0.77200" +"GO:0080134","regulation of response to stress",74,12,19.16,1168,"0.98414","0.77249","0.77249" +"GO:0045444","fat cell differentiation",14,2,3.63,996,"0.91180","0.77314","0.77314" +"GO:0009952","anterior/posterior pattern specification",17,5,4.4,402,"0.46036","0.77360","0.77360" +"GO:0007389","pattern specification process",45,9,11.65,918,"0.86169","0.77606","0.77606" +"GO:0032989","cellular component morphogenesis",82,21,21.23,472,"0.56687","0.77740","0.77740" +"GO:0051186","cofactor metabolic process",32,3,8.29,1214,"0.99521","0.77879","0.77879" +"GO:0048729","tissue morphogenesis",59,16,15.28,407,"0.46408","0.77946","0.77946" +"GO:0071695","anatomical structure maturation",11,3,2.85,512,"0.57244","0.78035","0.78035" +"GO:0016358","dendrite development",17,2,4.4,1094,"0.95790","0.78178","0.78178" +"GO:0009108","coenzyme biosynthetic process",14,0,3.63,1268,"1.00000","0.78237","0.78237" +"GO:0035264","multicellular organism growth",11,1,2.85,1108,"0.96324","0.78281","0.78281" +"GO:0002791","regulation of peptide secretion",10,2,2.59,749,"0.77602","0.78393","0.78393" +"GO:0050708","regulation of protein secretion",10,2,2.59,750,"0.77602","0.78393","0.78393" +"GO:0031399","regulation of protein modification proce...",107,23,27.71,929,"0.88095","0.78395","0.78395" +"GO:0045732","positive regulation of protein catabolic...",14,4,3.63,449,"0.51014","0.78543","0.78543" +"GO:0015980","energy derivation by oxidation of organi...",14,1,3.63,1172,"0.98511","0.78695","0.78695" +"GO:0042493","response to drug",48,9,12.43,978,"0.90814","0.78718","0.78718" +"GO:0014706","striated muscle tissue development",32,6,8.29,922,"0.87351","0.78806","0.78806" +"GO:0007186","G protein-coupled receptor signaling pat...",42,7,10.88,1050,"0.94577","0.78809","0.78809" +"GO:2000736","regulation of stem cell differentiation",13,3,3.37,637,"0.69431","0.78901","0.78901" +"GO:0033674","positive regulation of kinase activity",16,2,4.14,1053,"0.94597","0.79003","0.79003" +"GO:0009887","animal organ morphogenesis",89,23,23.04,467,"0.54602","0.79067","0.79067" +"GO:0021915","neural tube development",13,4,3.37,391,"0.44575","0.79338","0.79338" +"GO:0051259","protein complex oligomerization",17,2,4.4,1095,"0.95790","0.79351","0.79351" +"GO:0090150","establishment of protein localization to...",15,1,3.88,1187,"0.98899","0.79407","0.79407" +"GO:0009123","nucleoside monophosphate metabolic proce...",19,4,4.92,710,"0.76571","0.79594","0.79594" +"GO:0070838","divalent metal ion transport",19,3,4.92,969,"0.90477","0.79603","0.79603" +"GO:0072511","divalent inorganic cation transport",19,3,4.92,970,"0.90477","0.79603","0.79603" +"GO:0042326","negative regulation of phosphorylation",24,2,6.21,1202,"0.99311","0.79697","0.79697" +"GO:0043547","positive regulation of GTPase activity",19,5,4.92,475,"0.57072","0.79714","0.79714" +"GO:0001775","cell activation",34,6,8.8,980,"0.90828","0.79850","0.79850" +"GO:0016482","cytosolic transport",18,5,4.66,456,"0.51687","0.79873","0.79873" +"GO:1903050","regulation of proteolysis involved in ce...",15,4,3.88,483,"0.57089","0.79935","0.79935" +"GO:0072657","protein localization to membrane",30,3,7.77,1200,"0.99220","0.80002","0.80002" +"GO:0045860","positive regulation of protein kinase ac...",15,2,3.88,1031,"0.93085","0.80182","0.80182" +"GO:0051235","maintenance of location",10,2,2.59,751,"0.77602","0.80251","0.80251" +"GO:0070727","cellular macromolecule localization",162,27,41.95,1232,"0.99854","0.80296","0.80296" +"GO:0003008","system process",87,20,22.53,719,"0.77176","0.80582","0.80582" +"GO:0045165","cell fate commitment",25,5,6.47,809,"0.81548","0.80599","0.80599" +"GO:0072659","protein localization to plasma membrane",10,1,2.59,1077,"0.95033","0.80602","0.80602" +"GO:0008610","lipid biosynthetic process",37,5,9.58,1152,"0.97907","0.80673","0.80673" +"GO:0033036","macromolecule localization",230,40,59.55,1238,"0.99947","0.80696","0.80696" +"GO:0036473","cell death in response to oxidative stre...",11,2,2.85,829,"0.82126","0.80726","0.80726" +"GO:0010604","positive regulation of macromolecule met...",158,37,40.91,792,"0.79428","0.80743","0.80743" +"GO:0043900","regulation of multi-organism process",24,6,6.21,534,"0.61755","0.80866","0.80866" +"GO:0015711","organic anion transport",21,6,5.44,413,"0.47144","0.80937","0.80937" +"GO:0031098","stress-activated protein kinase signalin...",11,1,2.85,1109,"0.96324","0.80939","0.80939" +"GO:0071417","cellular response to organonitrogen comp...",15,3,3.88,783,"0.78794","0.80977","0.80977" +"GO:0016072","rRNA metabolic process",42,3,10.88,1242,"0.99962","0.81147","0.81147" +"GO:0061024","membrane organization",47,8,12.17,1066,"0.94722","0.81156","0.81156" +"GO:0034613","cellular protein localization",158,26,40.91,1233,"0.99869","0.81186","0.81186" +"GO:0042742","defense response to bacterium",13,3,3.37,638,"0.69431","0.81274","0.81274" +"GO:0018022","peptidyl-lysine methylation",21,4,5.44,856,"0.83328","0.81296","0.81296" +"GO:0002683","negative regulation of immune system pro...",17,3,4.4,885,"0.85645","0.81333","0.81333" +"GO:0009260","ribonucleotide biosynthetic process",14,2,3.63,997,"0.91180","0.81377","0.81377" +"GO:0046390","ribose phosphate biosynthetic process",14,2,3.63,998,"0.91180","0.81377","0.81377" +"GO:0030239","myofibril assembly",11,2,2.85,830,"0.82126","0.81516","0.81516" +"GO:0010821","regulation of mitochondrion organization",13,3,3.37,639,"0.69431","0.81566","0.81566" +"GO:0034097","response to cytokine",29,6,7.51,797,"0.80139","0.81662","0.81662" +"GO:1903827","regulation of cellular protein localizat...",27,7,6.99,493,"0.57220","0.81668","0.81668" +"GO:0046034","ATP metabolic process",16,3,4.14,845,"0.82505","0.81698","0.81698" +"GO:0034220","ion transmembrane transport",51,12,13.21,648,"0.70261","0.81761","0.81761" +"GO:0071345","cellular response to cytokine stimulus",28,6,7.25,717,"0.77123","0.81832","0.81832" +"GO:0001666","response to hypoxia",11,0,2.85,1269,"1.00000","0.81843","0.81843" +"GO:0036293","response to decreased oxygen levels",11,0,2.85,1270,"1.00000","0.81843","0.81843" +"GO:0070482","response to oxygen levels",11,0,2.85,1271,"1.00000","0.81843","0.81843" +"GO:1990778","protein localization to cell periphery",13,1,3.37,1155,"0.97987","0.81898","0.81898" +"GO:0043010","camera-type eye development",33,8,8.54,586,"0.65174","0.81927","0.81927" +"GO:0016310","phosphorylation",246,65,63.7,394,"0.44727","0.81964","0.81964" +"GO:0007276","gamete generation",58,13,15.02,721,"0.77419","0.82003","0.82003" +"GO:0034622","cellular protein-containing complex asse...",106,31,27.45,213,"0.24214","0.37479","0.82014" +"GO:0015672","monovalent inorganic cation transport",24,5,6.21,774,"0.78456","0.82201","0.82201" +"GO:0048468","cell development",151,38,39.1,532,"0.61524","0.82328","0.82328" +"GO:0007626","locomotory behavior",13,1,3.37,1156,"0.97987","0.82357","0.82357" +"GO:0007565","female pregnancy",12,2,3.11,901,"0.85812","0.82383","0.82383" +"GO:0044706","multi-multicellular organism process",12,2,3.11,902,"0.85812","0.82383","0.82383" +"GO:0051403","stress-activated MAPK cascade",10,0,2.59,1272,"1.00000","0.82516","0.82516" +"GO:0006629","lipid metabolic process",95,16,24.6,1184,"0.98789","0.82590","0.82590" +"GO:1902905","positive regulation of supramolecular fi...",20,9,5.18,75,"0.04966","0.04030","0.82617" +"GO:0022604","regulation of cell morphogenesis",15,4,3.88,484,"0.57089","0.82655","0.82655" +"GO:0044089","positive regulation of cellular componen...",41,15,10.62,97,"0.08461","0.20028","0.82695" +"GO:0120036","plasma membrane bounded cell projection ...",98,23,25.38,690,"0.74713","0.82699","0.82699" +"GO:0097435","supramolecular fiber organization",60,18,15.54,250,"0.27421","0.25653","0.82817" +"GO:0031346","positive regulation of cell projection o...",13,4,3.37,392,"0.44575","0.82864","0.82864" +"GO:0032970","regulation of actin filament-based proce...",23,10,5.96,78,"0.05008","0.02375","0.82905" +"GO:0010638","positive regulation of organelle organiz...",54,15,13.98,368,"0.42622","0.26409","0.82987" +"GO:0001817","regulation of cytokine production",25,3,6.47,1140,"0.97464","0.83062","0.83062" +"GO:0030030","cell projection organization",99,23,25.63,704,"0.76555","0.83064","0.83064" +"GO:0031347","regulation of defense response",29,5,7.51,974,"0.90523","0.83087","0.83087" +"GO:0019058","viral life cycle",15,3,3.88,784,"0.78794","0.83095","0.83095" +"GO:0071496","cellular response to external stimulus",13,3,3.37,640,"0.69431","0.83105","0.83105" +"GO:0007517","muscle organ development",35,4,9.06,1191,"0.99019","0.83397","0.83397" +"GO:0097237","cellular response to toxic substance",14,3,3.63,677,"0.74453","0.83521","0.83521" +"GO:0019221","cytokine-mediated signaling pathway",10,2,2.59,752,"0.77602","0.83637","0.83637" +"GO:0046578","regulation of Ras protein signal transdu...",22,7,5.7,303,"0.33555","0.83693","0.83693" +"GO:0061448","connective tissue development",14,3,3.63,678,"0.74453","0.83800","0.83800" +"GO:1901699","cellular response to nitrogen compound",18,3,4.66,933,"0.88281","0.83807","0.83807" +"GO:0050790","regulation of catalytic activity",110,24,28.48,921,"0.86689","0.83819","0.83819" +"GO:0060537","muscle tissue development",34,6,8.8,981,"0.90828","0.83836","0.83836" +"GO:0006733","oxidoreduction coenzyme metabolic proces...",10,0,2.59,1273,"1.00000","0.83942","0.83942" +"GO:1903362","regulation of cellular protein catabolic...",16,4,4.14,552,"0.62716","0.83974","0.83974" +"GO:0051272","positive regulation of cellular componen...",15,5,3.88,309,"0.34309","0.84050","0.84050" +"GO:2000147","positive regulation of cell motility",15,5,3.88,310,"0.34309","0.84050","0.84050" +"GO:0009126","purine nucleoside monophosphate metaboli...",18,3,4.66,934,"0.88281","0.84381","0.84381" +"GO:0009161","ribonucleoside monophosphate metabolic p...",18,3,4.66,935,"0.88281","0.84381","0.84381" +"GO:0009167","purine ribonucleoside monophosphate meta...",18,3,4.66,936,"0.88281","0.84381","0.84381" +"GO:0009057","macromolecule catabolic process",133,27,34.44,1067,"0.94939","0.84430","0.84430" +"GO:0045859","regulation of protein kinase activity",28,5,7.25,950,"0.88733","0.84430","0.84430" +"GO:0051050","positive regulation of transport",46,10,11.91,790,"0.79081","0.84754","0.84754" +"GO:0008154","actin polymerization or depolymerization",19,8,4.92,106,"0.09145","0.02726","0.84803" +"GO:0032271","regulation of protein polymerization",19,9,4.92,64,"0.03515","0.02305","0.84907" +"GO:0032273","positive regulation of protein polymeriz...",19,9,4.92,65,"0.03515","0.02305","0.84907" +"GO:0006886","intracellular protein transport",102,13,26.41,1244,"0.99970","0.84914","0.84914" +"GO:0044283","small molecule biosynthetic process",36,7,9.32,917,"0.86168","0.85040","0.85040" +"GO:0007015","actin filament organization",31,11,8.03,147,"0.15377","0.13200","0.85139" +"GO:0009617","response to bacterium",23,3,5.96,1100,"0.96006","0.85188","0.85188" +"GO:0009267","cellular response to starvation",10,2,2.59,753,"0.77602","0.85189","0.85189" +"GO:0031668","cellular response to extracellular stimu...",10,2,2.59,754,"0.77602","0.85189","0.85189" +"GO:0031669","cellular response to nutrient levels",10,2,2.59,755,"0.77602","0.85189","0.85189" +"GO:0048813","dendrite morphogenesis",11,2,2.85,831,"0.82126","0.85305","0.85305" +"GO:0006413","translational initiation",10,2,2.59,756,"0.77602","0.85393","0.85393" +"GO:0002237","response to molecule of bacterial origin",10,1,2.59,1078,"0.95033","0.85415","0.85415" +"GO:0042592","homeostatic process",98,20,25.38,1010,"0.91908","0.85457","0.85457" +"GO:0048869","cellular developmental process",225,56,58.26,591,"0.66635","0.85519","0.85519" +"GO:0009628","response to abiotic stimulus",86,18,22.27,947,"0.88542","0.85764","0.85764" +"GO:0034641","cellular nitrogen compound metabolic pro...",1061,303,274.72,42,"0.00629","0.00017","0.85954" +"GO:0008406","gonad development",20,6,5.18,367,"0.41906","0.86038","0.86038" +"GO:0005996","monosaccharide metabolic process",12,4,3.11,349,"0.37893","0.86196","0.86196" +"GO:0007507","heart development",41,7,10.62,1044,"0.93608","0.86228","0.86228" +"GO:0007600","sensory perception",37,8,9.58,770,"0.78054","0.86313","0.86313" +"GO:0006289","nucleotide-excision repair",14,2,3.63,999,"0.91180","0.86493","0.86493" +"GO:0016197","endosomal transport",21,6,5.44,414,"0.47144","0.86553","0.86553" +"GO:0050954","sensory perception of mechanical stimulu...",10,2,2.59,757,"0.77602","0.86573","0.86573" +"GO:0009100","glycoprotein metabolic process",30,5,7.77,1013,"0.92060","0.86579","0.86579" +"GO:0065007","biological regulation",1135,322,293.88,46,"0.00700","0.01450","0.86620" +"GO:0050789","regulation of biological process",1091,311,282.49,41,"0.00612","0.00489","0.86634" +"GO:0003006","developmental process involved in reprod...",77,20,19.94,464,"0.53801","0.86704","0.86704" +"GO:0051173","positive regulation of nitrogen compound...",150,34,38.84,869,"0.84736","0.86704","0.86704" +"GO:0051234","establishment of localization",466,83,120.66,1260,"1.00000","0.86709","0.86709" +"GO:1903530","regulation of secretion by cell",14,2,3.63,1000,"0.91180","0.86752","0.86752" +"GO:0035303","regulation of dephosphorylation",13,3,3.37,641,"0.69431","0.86869","0.86869" +"GO:0001510","RNA methylation",21,2,5.44,1171,"0.98486","0.86870","0.86870" +"GO:0016311","dephosphorylation",48,10,12.43,857,"0.83470","0.86871","0.86871" +"GO:0040017","positive regulation of locomotion",19,6,4.92,328,"0.36608","0.86873","0.86873" +"GO:0071495","cellular response to endogenous stimulus",63,14,16.31,791,"0.79129","0.86902","0.86902" +"GO:0032386","regulation of intracellular transport",24,5,6.21,775,"0.78456","0.87023","0.87023" +"GO:0019953","sexual reproduction",66,16,17.09,594,"0.66789","0.87039","0.87039" +"GO:0006812","cation transport",64,12,16.57,1035,"0.93269","0.87166","0.87166" +"GO:0043549","regulation of kinase activity",32,6,8.29,923,"0.87351","0.87317","0.87317" +"GO:0048812","neuron projection morphogenesis",44,11,11.39,523,"0.61192","0.87322","0.87322" +"GO:0048858","cell projection morphogenesis",44,11,11.39,524,"0.61192","0.87322","0.87322" +"GO:0120039","plasma membrane bounded cell projection ...",44,11,11.39,525,"0.61192","0.87322","0.87322" +"GO:0042246","tissue regeneration",10,1,2.59,1079,"0.95033","0.87332","0.87332" +"GO:0033554","cellular response to stress",203,56,52.56,268,"0.30924","0.11522","0.87425" +"GO:0035265","organ growth",10,3,2.59,442,"0.50123","0.87439","0.87439" +"GO:0032880","regulation of protein localization",49,10,12.69,877,"0.85381","0.87473","0.87473" +"GO:0006810","transport",447,78,115.74,1262,"1.00000","0.87507","0.87507" +"GO:0010506","regulation of autophagy",14,3,3.63,679,"0.74453","0.87518","0.87518" +"GO:0008284","positive regulation of cell proliferatio...",23,5,5.96,694,"0.74977","0.87582","0.87582" +"GO:0060485","mesenchyme development",12,3,3.11,565,"0.63695","0.87623","0.87623" +"GO:0061061","muscle structure development",55,9,14.24,1125,"0.96817","0.87769","0.87769" +"GO:0042542","response to hydrogen peroxide",13,3,3.37,642,"0.69431","0.87883","0.87883" +"GO:0019693","ribose phosphate metabolic process",29,5,7.51,975,"0.90523","0.87894","0.87894" +"GO:0051640","organelle localization",34,5,8.8,1104,"0.96224","0.87962","0.87962" +"GO:0055001","muscle cell development",15,2,3.88,1032,"0.93085","0.87997","0.87997" +"GO:0009451","RNA modification",52,5,13.46,1237,"0.99919","0.88096","0.88096" +"GO:0051093","negative regulation of developmental pro...",52,14,13.46,422,"0.48550","0.88096","0.88096" +"GO:0009581","detection of external stimulus",11,1,2.85,1110,"0.96324","0.88123","0.88123" +"GO:0009582","detection of abiotic stimulus",11,1,2.85,1111,"0.96324","0.88123","0.88123" +"GO:0046677","response to antibiotic",22,4,5.7,914,"0.86046","0.88158","0.88158" +"GO:0097164","ammonium ion metabolic process",13,2,3.37,957,"0.88790","0.88269","0.88269" +"GO:0008033","tRNA processing",48,4,12.43,1240,"0.99954","0.88278","0.88278" +"GO:0006914","autophagy",44,9,11.39,861,"0.84253","0.88354","0.88354" +"GO:0061919","process utilizing autophagic mechanism",44,9,11.39,862,"0.84253","0.88354","0.88354" +"GO:0034470","ncRNA processing",95,10,24.6,1255,"0.99996","0.88445","0.88445" +"GO:0051049","regulation of transport",79,14,20.46,1127,"0.96925","0.88446","0.88446" +"GO:1902532","negative regulation of intracellular sig...",36,8,9.32,698,"0.75205","0.88627","0.88627" +"GO:0006626","protein targeting to mitochondrion",11,1,2.85,1112,"0.96324","0.88665","0.88665" +"GO:0010822","positive regulation of mitochondrion org...",11,2,2.85,832,"0.82126","0.88665","0.88665" +"GO:0008104","protein localization",194,31,50.23,1246,"0.99978","0.88672","0.88672" +"GO:0070301","cellular response to hydrogen peroxide",12,3,3.11,566,"0.63695","0.88764","0.88764" +"GO:0001819","positive regulation of cytokine producti...",16,3,4.14,846,"0.82505","0.88836","0.88836" +"GO:0051046","regulation of secretion",16,2,4.14,1054,"0.94597","0.88836","0.88836" +"GO:0002520","immune system development",33,5,8.54,1086,"0.95430","0.88996","0.88996" +"GO:0098662","inorganic cation transmembrane transport",22,6,5.7,460,"0.52239","0.89074","0.89074" +"GO:0006909","phagocytosis",14,3,3.63,680,"0.74453","0.89115","0.89115" +"GO:0044237","cellular metabolic process",1640,443,424.64,79,"0.05316","0.02576","0.89154" +"GO:0030534","adult behavior",12,1,3.11,1131,"0.97280","0.89318","0.89318" +"GO:0045333","cellular respiration",12,1,3.11,1132,"0.97280","0.89318","0.89318" +"GO:0002694","regulation of leukocyte activation",17,3,4.4,886,"0.85645","0.89423","0.89423" +"GO:0050865","regulation of cell activation",17,3,4.4,887,"0.85645","0.89423","0.89423" +"GO:0051249","regulation of lymphocyte activation",17,3,4.4,888,"0.85645","0.89423","0.89423" +"GO:0010033","response to organic substance",151,29,39.1,1166,"0.98110","0.89443","0.89443" +"GO:0065003","protein-containing complex assembly",127,33,32.88,461,"0.52573","0.54950","0.89454" +"GO:0010256","endomembrane system organization",32,4,8.29,1165,"0.98106","0.89543","0.89543" +"GO:0043933","protein-containing complex subunit organ...",150,41,38.84,330,"0.37043","0.45617","0.89628" +"GO:0048638","regulation of developmental growth",17,5,4.4,403,"0.46036","0.89629","0.89629" +"GO:0030111","regulation of Wnt signaling pathway",25,7,6.47,420,"0.48037","0.89635","0.89635" +"GO:0001708","cell fate specification",11,2,2.85,833,"0.82126","0.89692","0.89692" +"GO:0019933","cAMP-mediated signaling",11,2,2.85,834,"0.82126","0.89692","0.89692" +"GO:0019935","cyclic-nucleotide-mediated signaling",11,2,2.85,835,"0.82126","0.89692","0.89692" +"GO:0006790","sulfur compound metabolic process",17,3,4.4,889,"0.85645","0.89750","0.89750" +"GO:0070585","protein localization to mitochondrion",12,1,3.11,1133,"0.97280","0.89753","0.89753" +"GO:0072655","establishment of protein localization to...",12,1,3.11,1134,"0.97280","0.89753","0.89753" +"GO:0006811","ion transport",114,23,29.52,1047,"0.94049","0.89847","0.89847" +"GO:0071705","nitrogen compound transport",154,25,39.88,1234,"0.99882","0.89856","0.89856" +"GO:0071363","cellular response to growth factor stimu...",29,7,7.51,587,"0.65563","0.89916","0.89916" +"GO:0045595","regulation of cell differentiation",88,22,22.79,535,"0.61827","0.89933","0.89933" +"GO:0032388","positive regulation of intracellular tra...",12,1,3.11,1135,"0.97280","0.89968","0.89968" +"GO:0070507","regulation of microtubule cytoskeleton o...",12,3,3.11,567,"0.63695","0.89968","0.89968" +"GO:0007010","cytoskeleton organization",114,33,29.52,238,"0.25442","0.46089","0.90043" +"GO:1901698","response to nitrogen compound",44,7,11.39,1101,"0.96132","0.90050","0.90050" +"GO:0048705","skeletal system morphogenesis",15,4,3.88,485,"0.57089","0.90125","0.90125" +"GO:0006936","muscle contraction",14,2,3.63,1001,"0.91180","0.90168","0.90168" +"GO:0006950","response to stress",293,73,75.87,619,"0.68032","0.29233","0.90174" +"GO:0032990","cell part morphogenesis",46,11,11.91,604,"0.67631","0.90175","0.90175" +"GO:0051240","positive regulation of multicellular org...",62,10,16.05,1148,"0.97736","0.90281","0.90281" +"GO:0021953","central nervous system neuron differenti...",10,2,2.59,758,"0.77602","0.90284","0.90284" +"GO:0045862","positive regulation of proteolysis",18,3,4.66,937,"0.88281","0.90380","0.90380" +"GO:0070201","regulation of establishment of protein l...",28,7,7.25,531,"0.61514","0.90483","0.90483" +"GO:0051641","cellular localization",249,41,64.47,1253,"0.99993","0.90511","0.90511" +"GO:0051606","detection of stimulus",13,1,3.37,1157,"0.97987","0.90541","0.90541" +"GO:0006873","cellular ion homeostasis",16,2,4.14,1055,"0.94597","0.90582","0.90582" +"GO:0030003","cellular cation homeostasis",16,2,4.14,1056,"0.94597","0.90582","0.90582" +"GO:0050794","regulation of cellular process",1029,297,266.44,37,"0.00333","0.00492","0.90697" +"GO:0048585","negative regulation of response to stimu...",85,19,22.01,808,"0.81023","0.90735","0.90735" +"GO:0044282","small molecule catabolic process",10,0,2.59,1274,"1.00000","0.90741","0.90741" +"GO:0051223","regulation of protein transport",27,7,6.99,494,"0.57220","0.90810","0.90810" +"GO:0090087","regulation of peptide transport",27,7,6.99,495,"0.57220","0.90810","0.90810" +"GO:0048738","cardiac muscle tissue development",13,1,3.37,1158,"0.97987","0.90840","0.90840" +"GO:0010243","response to organonitrogen compound",40,7,10.36,1021,"0.92489","0.90925","0.90925" +"GO:0071900","regulation of protein serine/threonine k...",18,3,4.66,938,"0.88281","0.91015","0.91015" +"GO:0034614","cellular response to reactive oxygen spe...",13,3,3.37,643,"0.69431","0.91077","0.91077" +"GO:0051239","regulation of multicellular organismal p...",140,28,36.25,1103,"0.96143","0.91082","0.91082" +"GO:0016574","histone ubiquitination",12,1,3.11,1136,"0.97280","0.91216","0.91216" +"GO:0031099","regeneration",13,1,3.37,1159,"0.97987","0.91288","0.91288" +"GO:0071702","organic substance transport",180,30,46.61,1236,"0.99915","0.91307","0.91307" +"GO:0030029","actin filament-based process",61,20,15.79,140,"0.13734","0.27669","0.91427" +"GO:0045184","establishment of protein localization",145,22,37.54,1239,"0.99950","0.91632","0.91632" +"GO:0006486","protein glycosylation",25,5,6.47,810,"0.81548","0.91639","0.91639" +"GO:0043413","macromolecule glycosylation",25,5,6.47,811,"0.81548","0.91639","0.91639" +"GO:0070085","glycosylation",25,5,6.47,812,"0.81548","0.91639","0.91639" +"GO:0006979","response to oxidative stress",38,6,9.84,1085,"0.95379","0.91684","0.91684" +"GO:0048732","gland development",17,4,4.4,616,"0.67848","0.91711","0.91711" +"GO:0051604","protein maturation",14,3,3.63,681,"0.74453","0.91715","0.91715" +"GO:0030036","actin cytoskeleton organization",59,19,15.28,158,"0.16584","0.30687","0.91775" +"GO:0006470","protein dephosphorylation",34,6,8.8,982,"0.90828","0.91777","0.91777" +"GO:0060562","epithelial tube morphogenesis",43,11,11.13,519,"0.57752","0.91789","0.91789" +"GO:0043588","skin development",11,2,2.85,836,"0.82126","0.91793","0.91793" +"GO:0055080","cation homeostasis",20,3,5.18,1015,"0.92294","0.91807","0.91807" +"GO:0098771","inorganic ion homeostasis",20,3,5.18,1016,"0.92294","0.91807","0.91807" +"GO:1901564","organonitrogen compound metabolic proces...",843,212,218.28,674,"0.73938","0.91813","0.91813" +"GO:0055082","cellular chemical homeostasis",18,2,4.66,1123,"0.96729","0.91832","0.91832" +"GO:0048534","hematopoietic or lymphoid organ developm...",32,5,8.29,1049,"0.94488","0.91911","0.91911" +"GO:0050807","regulation of synapse organization",13,3,3.37,644,"0.69431","0.92001","0.92001" +"GO:0043902","positive regulation of multi-organism pr...",14,3,3.63,682,"0.74453","0.92032","0.92032" +"GO:1903829","positive regulation of cellular protein ...",14,3,3.63,683,"0.74453","0.92032","0.92032" +"GO:0051656","establishment of organelle localization",22,4,5.7,915,"0.86046","0.92070","0.92070" +"GO:0046661","male sex differentiation",14,3,3.63,684,"0.74453","0.92136","0.92136" +"GO:0030900","forebrain development",23,4,5.96,945,"0.88376","0.92174","0.92174" +"GO:0051047","positive regulation of secretion",11,2,2.85,837,"0.82126","0.92198","0.92198" +"GO:0072358","cardiovascular system development",22,4,5.7,916,"0.86046","0.92260","0.92260" +"GO:0010927","cellular component assembly involved in ...",16,3,4.14,847,"0.82505","0.92421","0.92421" +"GO:0046434","organophosphate catabolic process",12,1,3.11,1137,"0.97280","0.92581","0.92581" +"GO:0006479","protein methylation",36,6,9.32,1038,"0.93445","0.92640","0.92640" +"GO:0008213","protein alkylation",36,6,9.32,1039,"0.93445","0.92640","0.92640" +"GO:0044255","cellular lipid metabolic process",67,11,17.35,1150,"0.97784","0.92649","0.92649" +"GO:0007405","neuroblast proliferation",10,2,2.59,759,"0.77602","0.92783","0.92783" +"GO:0008584","male gonad development",10,2,2.59,760,"0.77602","0.92783","0.92783" +"GO:0030323","respiratory tube development",10,2,2.59,761,"0.77602","0.92783","0.92783" +"GO:0046546","development of primary male sexual chara...",10,2,2.59,762,"0.77602","0.92783","0.92783" +"GO:0007417","central nervous system development",72,17,18.64,659,"0.71567","0.92817","0.92817" +"GO:0042327","positive regulation of phosphorylation",37,7,9.58,927,"0.88062","0.92820","0.92820" +"GO:0000302","response to reactive oxygen species",15,3,3.88,785,"0.78794","0.92860","0.92860" +"GO:0033157","regulation of intracellular protein tran...",15,3,3.88,786,"0.78794","0.92860","0.92860" +"GO:1903532","positive regulation of secretion by cell",10,2,2.59,763,"0.77602","0.92884","0.92884" +"GO:0000154","rRNA modification",11,0,2.85,1275,"1.00000","0.92918","0.92918" +"GO:0051091","positive regulation of DNA-binding trans...",15,1,3.88,1188,"0.98899","0.92963","0.92963" +"GO:0007265","Ras protein signal transduction",24,7,6.21,373,"0.43242","0.93006","0.93006" +"GO:0042303","molting cycle",12,2,3.11,903,"0.85812","0.93044","0.93044" +"GO:0051248","negative regulation of protein metabolic...",59,10,15.28,1116,"0.96376","0.93219","0.93219" +"GO:0060828","regulation of canonical Wnt signaling pa...",19,5,4.92,476,"0.57072","0.93366","0.93366" +"GO:0009259","ribonucleotide metabolic process",28,5,7.25,951,"0.88733","0.93450","0.93450" +"GO:0015833","peptide transport",135,19,34.96,1247,"0.99978","0.93519","0.93519" +"GO:0042886","amide transport",135,19,34.96,1248,"0.99978","0.93519","0.93519" +"GO:0010001","glial cell differentiation",13,4,3.37,393,"0.44575","0.93615","0.93615" +"GO:0015031","protein transport",134,19,34.7,1245,"0.99974","0.93702","0.93702" +"GO:0043087","regulation of GTPase activity",26,6,6.73,647,"0.70099","0.93790","0.93790" +"GO:0072521","purine-containing compound metabolic pro...",33,5,8.54,1087,"0.95430","0.93828","0.93828" +"GO:0016042","lipid catabolic process",15,3,3.88,787,"0.78794","0.93955","0.93955" +"GO:0070887","cellular response to chemical stimulus",122,23,31.59,1145,"0.97575","0.93987","0.93987" +"GO:0051216","cartilage development",12,2,3.11,904,"0.85812","0.94015","0.94015" +"GO:0098655","cation transmembrane transport",31,8,8.03,515,"0.57337","0.94019","0.94019" +"GO:0007368","determination of left/right symmetry",13,1,3.37,1160,"0.97987","0.94052","0.94052" +"GO:0009799","specification of symmetry",13,1,3.37,1161,"0.97987","0.94052","0.94052" +"GO:0009855","determination of bilateral symmetry",13,1,3.37,1162,"0.97987","0.94052","0.94052" +"GO:0051649","establishment of localization in cell",190,30,49.2,1249,"0.99980","0.94075","0.94075" +"GO:0008593","regulation of Notch signaling pathway",12,3,3.11,568,"0.63695","0.94100","0.94100" +"GO:0051222","positive regulation of protein transport",17,4,4.4,617,"0.67848","0.94132","0.94132" +"GO:1904951","positive regulation of establishment of ...",17,4,4.4,618,"0.67848","0.94132","0.94132" +"GO:0007420","brain development",53,12,13.72,700,"0.75521","0.94206","0.94206" +"GO:0051495","positive regulation of cytoskeleton orga...",21,9,5.44,90,"0.06762","0.06555","0.94215" +"GO:0050890","cognition",11,1,2.85,1113,"0.96324","0.94293","0.94293" +"GO:0043414","macromolecule methylation",58,8,15.02,1198,"0.99214","0.94334","0.94334" +"GO:0050801","ion homeostasis",24,5,6.21,776,"0.78456","0.94367","0.94367" +"GO:0009152","purine ribonucleotide biosynthetic proce...",13,1,3.37,1163,"0.97987","0.94368","0.94368" +"GO:0007266","Rho protein signal transduction",16,4,4.14,553,"0.62716","0.94374","0.94374" +"GO:0006163","purine nucleotide metabolic process",30,5,7.77,1014,"0.92060","0.94379","0.94379" +"GO:0060322","head development",54,13,13.98,601,"0.67189","0.94404","0.94404" +"GO:0001568","blood vessel development",18,3,4.66,939,"0.88281","0.94486","0.94486" +"GO:0030097","hemopoiesis",31,4,8.03,1146,"0.97654","0.94498","0.94498" +"GO:0005975","carbohydrate metabolic process",50,12,12.95,603,"0.67388","0.94677","0.94677" +"GO:0034404","nucleobase-containing small molecule bio...",12,1,3.11,1138,"0.97280","0.94680","0.94680" +"GO:0021700","developmental maturation",23,6,5.96,490,"0.57127","0.94710","0.94710" +"GO:0035023","regulation of Rho protein signal transdu...",15,4,3.88,486,"0.57089","0.94718","0.94718" +"GO:0007030","Golgi organization",11,0,2.85,1276,"1.00000","0.94735","0.94735" +"GO:0034599","cellular response to oxidative stress",18,3,4.66,940,"0.88281","0.94785","0.94785" +"GO:0055085","transmembrane transport",141,28,36.51,1117,"0.96527","0.94802","0.94802" +"GO:0046907","intracellular transport",177,27,45.83,1251,"0.99984","0.94830","0.94830" +"GO:0042221","response to chemical",231,51,59.81,1029,"0.93007","0.94897","0.94897" +"GO:0009150","purine ribonucleotide metabolic process",27,4,6.99,1064,"0.94631","0.94932","0.94932" +"GO:0071559","response to transforming growth factor b...",19,4,4.92,711,"0.76571","0.94941","0.94941" +"GO:0071560","cellular response to transforming growth...",19,4,4.92,712,"0.76571","0.94941","0.94941" +"GO:1901701","cellular response to oxygen-containing c...",42,8,10.88,952,"0.88761","0.94986","0.94986" +"GO:0032886","regulation of microtubule-based process",14,3,3.63,685,"0.74453","0.95063","0.95063" +"GO:0009101","glycoprotein biosynthetic process",27,5,6.99,920,"0.86660","0.95142","0.95142" +"GO:0044085","cellular component biogenesis",274,59,70.95,1121,"0.96675","0.94782","0.95168" +"GO:0001934","positive regulation of protein phosphory...",34,7,8.8,815,"0.81651","0.95194","0.95194" +"GO:0045664","regulation of neuron differentiation",34,8,8.8,622,"0.68761","0.95202","0.95202" +"GO:0051179","localization",542,103,140.34,1258,"0.99999","0.95210","0.95210" +"GO:0006839","mitochondrial transport",19,3,4.92,971,"0.90477","0.95287","0.95287" +"GO:0051130","positive regulation of cellular componen...",78,21,20.2,404,"0.46041","0.62501","0.95300" +"GO:0046903","secretion",51,6,13.21,1220,"0.99633","0.95340","0.95340" +"GO:0051056","regulation of small GTPase mediated sign...",25,7,6.47,421,"0.48037","0.95455","0.95455" +"GO:0009896","positive regulation of catabolic process",25,4,6.47,1012,"0.92039","0.95469","0.95469" +"GO:2000026","regulation of multicellular organismal d...",92,23,23.82,536,"0.61917","0.95601","0.95601" +"GO:0048706","embryonic skeletal system development",10,2,2.59,764,"0.77602","0.95604","0.95604" +"GO:0019538","protein metabolic process",726,179,187.98,850,"0.82637","0.95644","0.95644" +"GO:0042254","ribosome biogenesis",56,4,14.5,1254,"0.99994","0.95651","0.95651" +"GO:0032940","secretion by cell",42,4,10.88,1230,"0.99803","0.95701","0.95701" +"GO:0022607","cellular component assembly",223,55,57.74,645,"0.69475","0.92147","0.95702" +"GO:0042060","wound healing",20,3,5.18,1017,"0.92294","0.95922","0.95922" +"GO:0035239","tube morphogenesis",53,11,13.72,867,"0.84679","0.95969","0.95969" +"GO:0048589","developmental growth",54,14,13.98,470,"0.55056","0.96176","0.96176" +"GO:0042157","lipoprotein metabolic process",15,2,3.88,1033,"0.93085","0.96225","0.96225" +"GO:0003143","embryonic heart tube morphogenesis",10,0,2.59,1277,"1.00000","0.96243","0.96243" +"GO:0035050","embryonic heart tube development",10,0,2.59,1278,"1.00000","0.96243","0.96243" +"GO:0061371","determination of heart left/right asymme...",10,0,2.59,1279,"1.00000","0.96243","0.96243" +"GO:0008152","metabolic process",1883,511,487.56,51,"0.01327","0.02481","0.96321" +"GO:0007611","learning or memory",10,1,2.59,1080,"0.95033","0.96441","0.96441" +"GO:0070925","organelle assembly",71,11,18.38,1186,"0.98831","0.96502","0.96502" +"GO:0042692","muscle cell differentiation",24,5,6.21,777,"0.78456","0.96585","0.96585" +"GO:0008283","cell proliferation",81,15,20.97,1091,"0.95635","0.96660","0.96660" +"GO:0072359","circulatory system development",59,11,15.28,1025,"0.92870","0.96692","0.96692" +"GO:0050793","regulation of developmental process",140,32,36.25,849,"0.82634","0.96711","0.96711" +"GO:0006497","protein lipidation",13,2,3.37,958,"0.88790","0.96722","0.96722" +"GO:0042158","lipoprotein biosynthetic process",13,2,3.37,959,"0.88790","0.96722","0.96722" +"GO:0048878","chemical homeostasis",35,5,9.06,1126,"0.96889","0.96774","0.96774" +"GO:0032259","methylation",66,10,17.09,1185,"0.98828","0.96846","0.96846" +"GO:0048514","blood vessel morphogenesis",16,2,4.14,1057,"0.94597","0.96905","0.96905" +"GO:0001816","cytokine production",27,3,6.99,1167,"0.98406","0.97007","0.97007" +"GO:0051241","negative regulation of multicellular org...",51,12,13.21,649,"0.70261","0.97009","0.97009" +"GO:0042127","regulation of cell proliferation",65,14,16.83,851,"0.82970","0.97066","0.97066" +"GO:0050896","response to stimulus",705,178,182.54,625,"0.69219","0.93656","0.97137" +"GO:0009117","nucleotide metabolic process",52,10,13.46,965,"0.90081","0.97150","0.97150" +"GO:0072522","purine-containing compound biosynthetic ...",15,1,3.88,1189,"0.98899","0.97165","0.97165" +"GO:1901575","organic substance catabolic process",168,32,43.5,1182,"0.98746","0.97183","0.97183" +"GO:0006164","purine nucleotide biosynthetic process",14,1,3.63,1173,"0.98511","0.97352","0.97352" +"GO:0051493","regulation of cytoskeleton organization",31,11,8.03,148,"0.15377","0.10059","0.97389" +"GO:0010035","response to inorganic substance",32,6,8.29,924,"0.87351","0.97420","0.97420" +"GO:0010648","negative regulation of cell communicatio...",74,17,19.16,701,"0.75977","0.97445","0.97445" +"GO:0023057","negative regulation of signaling",74,17,19.16,702,"0.75977","0.97445","0.97445" +"GO:0006753","nucleoside phosphate metabolic process",54,10,13.98,1020,"0.92457","0.97522","0.97522" +"GO:0051094","positive regulation of developmental pro...",59,11,15.28,1026,"0.92870","0.97578","0.97578" +"GO:0031331","positive regulation of cellular cataboli...",19,2,4.92,1141,"0.97464","0.97650","0.97650" +"GO:0050803","regulation of synapse structure or activ...",14,3,3.63,686,"0.74453","0.97658","0.97658" +"GO:0019725","cellular homeostasis",44,11,11.39,526,"0.61192","0.97670","0.97670" +"GO:0009308","amine metabolic process",10,0,2.59,1280,"1.00000","0.97676","0.97676" +"GO:0044106","cellular amine metabolic process",10,0,2.59,1281,"1.00000","0.97676","0.97676" +"GO:2000241","regulation of reproductive process",15,3,3.88,788,"0.78794","0.97703","0.97703" +"GO:0016043","cellular component organization",575,142,148.88,778,"0.78553","0.63131","0.97710" +"GO:0001933","negative regulation of protein phosphory...",19,2,4.92,1142,"0.97464","0.97712","0.97712" +"GO:0010975","regulation of neuron projection developm...",17,3,4.4,890,"0.85645","0.97714","0.97714" +"GO:0009611","response to wounding",26,3,6.73,1154,"0.97987","0.97795","0.97795" +"GO:0045597","positive regulation of cell differentiat...",41,10,10.62,583,"0.64658","0.97806","0.97806" +"GO:0048562","embryonic organ morphogenesis",29,5,7.51,976,"0.90523","0.97855","0.97855" +"GO:0048646","anatomical structure formation involved ...",79,17,20.46,870,"0.84922","0.97869","0.97869" +"GO:0070848","response to growth factor",34,7,8.8,816,"0.81651","0.97978","0.97978" +"GO:0030162","regulation of proteolysis",39,6,10.1,1102,"0.96138","0.98065","0.98065" +"GO:0006400","tRNA modification",26,2,6.73,1217,"0.99596","0.98083","0.98083" +"GO:0060627","regulation of vesicle-mediated transport",31,6,8.03,875,"0.85235","0.98180","0.98180" +"GO:0007005","mitochondrion organization",42,3,10.88,1243,"0.99962","0.98220","0.98220" +"GO:0060255","regulation of macromolecule metabolic pr...",614,189,158.98,24,"0.00110","0.00071","0.98235" +"GO:0062012","regulation of small molecule metabolic p...",12,3,3.11,569,"0.63695","0.98238","0.98238" +"GO:0055065","metal ion homeostasis",17,2,4.4,1096,"0.95790","0.98253","0.98253" +"GO:0048584","positive regulation of response to stimu...",102,16,26.41,1216,"0.99577","0.98266","0.98266" +"GO:0030031","cell projection assembly",35,7,9.06,859,"0.84036","0.98283","0.98283" +"GO:0120031","plasma membrane bounded cell projection ...",35,7,9.06,860,"0.84036","0.98283","0.98283" +"GO:0009968","negative regulation of signal transducti...",72,17,18.64,660,"0.71567","0.98293","0.98293" +"GO:0009056","catabolic process",201,38,52.04,1205,"0.99382","0.98310","0.98310" +"GO:0007154","cell communication",430,101,111.34,967,"0.90437","0.98310","0.98310" +"GO:0006417","regulation of translation",26,2,6.73,1218,"0.99596","0.98329","0.98329" +"GO:0050808","synapse organization",23,5,5.96,695,"0.74977","0.98346","0.98346" +"GO:0015718","monocarboxylic acid transport",10,2,2.59,765,"0.77602","0.98383","0.98383" +"GO:0043603","cellular amide metabolic process",100,13,25.89,1241,"0.99956","0.98406","0.98406" +"GO:0043043","peptide biosynthetic process",81,6,20.97,1259,"1.00000","0.98427","0.98427" +"GO:0044782","cilium organization",31,3,8.03,1206,"0.99388","0.98480","0.98480" +"GO:0034660","ncRNA metabolic process",119,15,30.81,1252,"0.99991","0.98483","0.98483" +"GO:0043604","amide biosynthetic process",83,6,21.49,1261,"1.00000","0.98484","0.98484" +"GO:0042273","ribosomal large subunit biogenesis",10,0,2.59,1282,"1.00000","0.98490","0.98490" +"GO:0006875","cellular metal ion homeostasis",14,1,3.63,1174,"0.98511","0.98561","0.98561" +"GO:0008654","phospholipid biosynthetic process",17,1,4.4,1209,"0.99398","0.98578","0.98578" +"GO:0001944","vasculature development",19,3,4.92,972,"0.90477","0.98615","0.98615" +"GO:0060271","cilium assembly",28,3,7.25,1181,"0.98742","0.98628","0.98628" +"GO:0006518","peptide metabolic process",91,9,23.56,1256,"0.99997","0.98684","0.98684" +"GO:0001649","osteoblast differentiation",10,1,2.59,1081,"0.95033","0.98716","0.98716" +"GO:0030278","regulation of ossification",10,2,2.59,766,"0.77602","0.98716","0.98716" +"GO:0046488","phosphatidylinositol metabolic process",14,2,3.63,1002,"0.91180","0.98742","0.98742" +"GO:1901576","organic substance biosynthetic process",791,224,204.81,67,"0.03602","0.00331","0.98771" +"GO:0044281","small molecule metabolic process",141,27,36.51,1151,"0.97862","0.98781","0.98781" +"GO:0007416","synapse assembly",12,2,3.11,905,"0.85812","0.98806","0.98806" +"GO:0045017","glycerolipid biosynthetic process",14,1,3.63,1175,"0.98511","0.98829","0.98829" +"GO:0046474","glycerophospholipid biosynthetic process",14,1,3.63,1176,"0.98511","0.98829","0.98829" +"GO:0009058","biosynthetic process",798,226,206.63,61,"0.03497","0.00365","0.98834" +"GO:0072507","divalent inorganic cation homeostasis",11,1,2.85,1114,"0.96324","0.98869","0.98869" +"GO:0016192","vesicle-mediated transport",130,15,33.66,1257,"0.99999","0.98872","0.98872" +"GO:0016050","vesicle organization",18,2,4.66,1124,"0.96729","0.98898","0.98898" +"GO:0006887","exocytosis",18,0,4.66,1283,"1.00000","0.98898","0.98898" +"GO:0071840","cellular component organization or bioge...",621,146,160.79,1051,"0.94578","0.85116","0.98978" +"GO:0060070","canonical Wnt signaling pathway",22,5,5.7,656,"0.71096","0.98982","0.98982" +"GO:0035304","regulation of protein dephosphorylation",10,1,2.59,1082,"0.95033","0.99038","0.99038" +"GO:0010562","positive regulation of phosphorus metabo...",40,7,10.36,1022,"0.92489","0.99059","0.99059" +"GO:0045937","positive regulation of phosphate metabol...",40,7,10.36,1023,"0.92489","0.99059","0.99059" +"GO:0055086","nucleobase-containing small molecule met...",67,12,17.35,1088,"0.95531","0.99146","0.99146" +"GO:1902533","positive regulation of intracellular sig...",36,4,9.32,1199,"0.99215","0.99154","0.99154" +"GO:0031325","positive regulation of cellular metaboli...",161,35,41.69,985,"0.91074","0.99175","0.99175" +"GO:0006644","phospholipid metabolic process",37,5,9.58,1153,"0.97907","0.99189","0.99189" +"GO:0051336","regulation of hydrolase activity",62,12,16.05,1006,"0.91269","0.99214","0.99214" +"GO:0007264","small GTPase mediated signal transductio...",38,8,9.84,805,"0.80655","0.99225","0.99225" +"GO:0006888","ER to Golgi vesicle-mediated transport",12,0,3.11,1284,"1.00000","0.99234","0.99234" +"GO:1901700","response to oxygen-containing compound",71,12,18.38,1144,"0.97495","0.99274","0.99274" +"GO:0006082","organic acid metabolic process",57,8,14.76,1192,"0.99054","0.99281","0.99281" +"GO:0019752","carboxylic acid metabolic process",57,8,14.76,1193,"0.99054","0.99281","0.99281" +"GO:0043436","oxoacid metabolic process",57,8,14.76,1194,"0.99054","0.99281","0.99281" +"GO:1902017","regulation of cilium assembly",12,3,3.11,570,"0.63695","0.99296","0.99296" +"GO:0051171","regulation of nitrogen compound metaboli...",586,181,151.73,27,"0.00122","0.00107","0.99360" +"GO:0023052","signaling",420,98,108.75,1007,"0.91473","0.99365","0.99365" +"GO:0006996","organelle organization",422,102,109.27,848,"0.82624","0.16676","0.99390" +"GO:0080090","regulation of primary metabolic process",592,182,153.29,31,"0.00152","0.00156","0.99416" +"GO:0009893","positive regulation of metabolic process",174,39,45.05,928,"0.88063","0.99432","0.99432" +"GO:0031323","regulation of cellular metabolic process",598,183,154.84,33,"0.00189","0.00193","0.99467" +"GO:0046486","glycerolipid metabolic process",24,2,6.21,1203,"0.99311","0.99476","0.99476" +"GO:0006650","glycerophospholipid metabolic process",23,2,5.96,1195,"0.99103","0.99498","0.99498" +"GO:0009165","nucleotide biosynthetic process",26,4,6.73,1041,"0.93450","0.99501","0.99501" +"GO:1901293","nucleoside phosphate biosynthetic proces...",26,4,6.73,1042,"0.93450","0.99501","0.99501" +"GO:0001101","response to acid chemical",19,5,4.92,477,"0.57072","0.99556","0.99556" +"GO:0006954","inflammatory response",11,1,2.85,1115,"0.96324","0.99599","0.99599" +"GO:0019222","regulation of metabolic process",637,193,164.94,34,"0.00236","0.00268","0.99603" +"GO:0043410","positive regulation of MAPK cascade",16,2,4.14,1058,"0.94597","0.99626","0.99626" +"GO:1901566","organonitrogen compound biosynthetic pro...",173,20,44.79,1264,"1.00000","0.99628","0.99628" +"GO:1901137","carbohydrate derivative biosynthetic pro...",56,10,14.5,1048,"0.94329","0.99644","0.99644" +"GO:0044271","cellular nitrogen compound biosynthetic ...",647,179,167.53,136,"0.12943","0.03434","0.99647" +"GO:0042063","gliogenesis",15,4,3.88,487,"0.57089","0.99649","0.99649" +"GO:0001503","ossification",14,2,3.63,1003,"0.91180","0.99673","0.99673" +"GO:0030178","negative regulation of Wnt signaling pat...",14,2,3.63,1004,"0.91180","0.99673","0.99673" +"GO:0072089","stem cell proliferation",14,3,3.63,687,"0.74453","0.99673","0.99673" +"GO:0035556","intracellular signal transduction",168,32,43.5,1183,"0.98746","0.99683","0.99683" +"GO:0061351","neural precursor cell proliferation",12,2,3.11,906,"0.85812","0.99720","0.99720" +"GO:0090090","negative regulation of canonical Wnt sig...",12,1,3.11,1139,"0.97280","0.99720","0.99720" +"GO:0050680","negative regulation of epithelial cell p...",11,2,2.85,838,"0.82126","0.99743","0.99743" +"GO:0007165","signal transduction",394,88,102.02,1120,"0.96600","0.99745","0.99745" +"GO:0003007","heart morphogenesis",19,1,4.92,1224,"0.99671","0.99755","0.99755" +"GO:0009894","regulation of catabolic process",59,11,15.28,1027,"0.92870","0.99760","0.99760" +"GO:0006796","phosphate-containing compound metabolic ...",357,86,92.44,813,"0.81558","0.99760","0.99760" +"GO:0044087","regulation of cellular component biogene...",66,20,17.09,216,"0.24285","0.48798","0.99783" +"GO:0031329","regulation of cellular catabolic process",46,9,11.91,926,"0.87893","0.99814","0.99814" +"GO:0030041","actin filament polymerization",14,8,3.63,50,"0.01265","0.01195","0.99817" +"GO:0006399","tRNA metabolic process",65,6,16.83,1250,"0.99983","0.99818","0.99818" +"GO:1902531","regulation of intracellular signal trans...",98,19,25.38,1083,"0.95042","0.99820","0.99820" +"GO:0032268","regulation of cellular protein metabolic...",155,28,40.13,1204,"0.99312","0.99824","0.99824" +"GO:0051174","regulation of phosphorus metabolic proce...",84,16,21.75,1065,"0.94701","0.99847","0.99847" +"GO:0019220","regulation of phosphate metabolic proces...",83,16,21.49,1046,"0.94012","0.99848","0.99848" +"GO:0009059","macromolecule biosynthetic process",702,212,181.77,32,"0.00157","8.2e-05","0.99859" +"GO:0048193","Golgi vesicle transport",29,2,7.51,1231,"0.99820","0.99863","0.99863" +"GO:0034248","regulation of cellular amide metabolic p...",27,2,6.99,1227,"0.99691","0.99864","0.99864" +"GO:0034645","cellular macromolecule biosynthetic proc...",695,211,179.96,26,"0.00117","7.0e-05","0.99864" +"GO:0042325","regulation of phosphorylation",73,14,18.9,1034,"0.93216","0.99867","0.99867" +"GO:0044249","cellular biosynthetic process",780,221,201.96,68,"0.03661","0.00480","0.99876" +"GO:0050673","epithelial cell proliferation",19,2,4.92,1143,"0.97464","0.99881","0.99881" +"GO:0001932","regulation of protein phosphorylation",63,12,16.31,1018,"0.92324","0.99886","0.99886" +"GO:0042176","regulation of protein catabolic process",28,6,7.25,718,"0.77123","0.99887","0.99887" +"GO:0006793","phosphorus metabolic process",359,86,92.96,852,"0.83261","0.99897","0.99897" +"GO:0050678","regulation of epithelial cell proliferat...",16,2,4.14,1059,"0.94597","0.99900","0.99900" +"GO:1901657","glycosyl compound metabolic process",13,2,3.37,960,"0.88790","0.99919","0.99919" +"GO:0006412","translation",79,5,20.46,1263,"1.00000","0.99919","0.99919" +"GO:0010647","positive regulation of cell communicatio...",80,11,20.71,1228,"0.99752","0.99923","0.99923" +"GO:0023056","positive regulation of signaling",80,11,20.71,1229,"0.99752","0.99923","0.99923" +"GO:0001525","angiogenesis",12,2,3.11,907,"0.85812","0.99925","0.99925" +"GO:0009116","nucleoside metabolic process",12,2,3.11,908,"0.85812","0.99925","0.99925" +"GO:0031929","TOR signaling",13,0,3.37,1285,"1.00000","0.99929","0.99929" +"GO:0031330","negative regulation of cellular cataboli...",12,2,3.11,909,"0.85812","0.99935","0.99935" +"GO:0032006","regulation of TOR signaling",12,0,3.11,1286,"1.00000","0.99935","0.99935" +"GO:0009895","negative regulation of catabolic process",16,2,4.14,1060,"0.94597","0.99936","0.99936" +"GO:0048583","regulation of response to stimulus",212,42,54.89,1180,"0.98735","0.99943","0.99943" +"GO:0000165","MAPK cascade",31,3,8.03,1207,"0.99388","0.99944","0.99944" +"GO:0023014","signal transduction by protein phosphory...",31,3,8.03,1208,"0.99388","0.99944","0.99944" +"GO:0023051","regulation of signaling",176,36,45.57,1119,"0.96596","0.99953","0.99953" +"GO:0043408","regulation of MAPK cascade",26,2,6.73,1219,"0.99596","0.99954","0.99954" +"GO:0010646","regulation of cell communication",173,35,44.79,1128,"0.97010","0.99954","0.99954" +"GO:0009966","regulation of signal transduction",163,33,42.21,1118,"0.96592","0.99957","0.99957" +"GO:0032101","regulation of response to external stimu...",17,2,4.4,1097,"0.95790","0.99970","0.99970" +"GO:0006520","cellular amino acid metabolic process",29,5,7.51,977,"0.90523","0.99971","0.99971" +"GO:0009967","positive regulation of signal transducti...",76,11,19.68,1210,"0.99497","0.99975","0.99975" +"GO:0019637","organophosphate metabolic process",94,16,24.34,1177,"0.98602","0.99976","0.99976" +"GO:0006418","tRNA aminoacylation for protein translat...",16,2,4.14,1061,"0.94597","0.99984","0.99984" +"GO:0043038","amino acid activation",16,2,4.14,1062,"0.94597","0.99984","0.99984" +"GO:0043039","tRNA aminoacylation",16,2,4.14,1063,"0.94597","0.99984","0.99984" +"GO:0090407","organophosphate biosynthetic process",44,5,11.39,1213,"0.99516","0.99989","0.99989" +"GO:0051716","cellular response to stimulus",587,145,151.99,779,"0.78716","0.95260","1.00000" +"GO:0001501","skeletal system development",23,4,5.96,946,"0.88376","1.00000","1.00000" +"GO:0008150","biological_process",2688,696,696,1287,"1.00000","1.00000","1.00000" +"GO:0030833","regulation of actin filament polymerizat...",13,8,3.37,45,"0.00698","0.00486","1.00000" +"GO:0044267","cellular protein metabolic process",630,147,163.13,1099,"0.95885","1.00000","1.00000" +"GO:0048518","positive regulation of biological proces...",353,81,91.4,1019,"0.92361","0.97552","1.00000" +"GO:0048522","positive regulation of cellular process",301,70,77.94,930,"0.88137","0.96741","1.00000" +"GO:0051246","regulation of protein metabolic process",170,30,44.02,1225,"0.99672","1.00000","1.00000" diff --git a/GO_enrichment_output/contrast_prelaying_laying_upregulated.csv b/GO_enrichment_output/contrast_prelaying_laying_upregulated.csv index 06293d3..09fb548 100644 --- a/GO_enrichment_output/contrast_prelaying_laying_upregulated.csv +++ b/GO_enrichment_output/contrast_prelaying_laying_upregulated.csv @@ -4,3 +4,2655 @@ "GO:0015991","ATP hydrolysis coupled proton transport",16,13,4.9,5,"4.1e-05","8.9e-06","8.9e-06" "GO:0005975","carbohydrate metabolic process",86,45,26.36,4,"1.6e-05","1.9e-05","1.9e-05" "GO:0009108","coenzyme biosynthetic process",39,23,11.96,13,"0.00021","0.00013","0.0016" +"GO:0032787","monocarboxylic acid metabolic process",47,23,14.41,38,"0.00610","0.00261","0.0026" +"GO:0055082","cellular chemical homeostasis",29,15,8.89,63,"0.01384","0.00447","0.0045" +"GO:0006739","NADP metabolic process",5,5,1.53,24,"0.00268","0.00448","0.0045" +"GO:0009064","glutamine family amino acid metabolic pr...",10,6,3.07,117,"0.05196","0.00506","0.0051" +"GO:0061077","chaperone-mediated protein folding",12,8,3.68,49,"0.01075","0.00546","0.0055" +"GO:0046394","carboxylic acid biosynthetic process",41,21,12.57,29,"0.00442","0.00604","0.0060" +"GO:1901135","carbohydrate derivative metabolic proces...",187,79,57.32,14,"0.00032","0.00144","0.0067" +"GO:0009069","serine family amino acid metabolic proce...",8,6,2.45,60,"0.01253","0.00705","0.0071" +"GO:1901606","alpha-amino acid catabolic process",17,10,5.21,65,"0.01459","0.00754","0.0075" +"GO:0006081","cellular aldehyde metabolic process",13,9,3.99,31,"0.00464","0.00851","0.0085" +"GO:0006189","'de novo' IMP biosynthetic process",3,3,0.92,81,"0.02872","0.00854","0.0085" +"GO:0071616","acyl-CoA biosynthetic process",5,4,1.53,103,"0.03317","0.00857","0.0086" +"GO:1903202","negative regulation of oxidative stress-...",6,5,1.84,52,"0.01200","0.00950","0.0095" +"GO:0051187","cofactor catabolic process",6,4,1.84,142,"0.07553","0.00955","0.0095" +"GO:0017144","drug metabolic process",107,45,32.8,40,"0.00701","0.01019","0.0102" +"GO:0006098","pentose-phosphate shunt",4,4,1.23,42,"0.00878","0.01323","0.0132" +"GO:0019682","glyceraldehyde-3-phosphate metabolic pro...",4,4,1.23,43,"0.00878","0.01323","0.0132" +"GO:0051156","glucose 6-phosphate metabolic process",4,4,1.23,44,"0.00878","0.01323","0.0132" +"GO:0006873","cellular ion homeostasis",26,13,7.97,92,"0.02966","0.01343","0.0134" +"GO:0030003","cellular cation homeostasis",26,13,7.97,93,"0.02966","0.01343","0.0134" +"GO:0006458","'de novo' protein folding",7,4,2.15,252,"0.13435","0.01473","0.0147" +"GO:0021549","cerebellum development",7,5,2.15,96,"0.03141","0.01473","0.0147" +"GO:0022037","metencephalon development",7,5,2.15,97,"0.03141","0.01473","0.0147" +"GO:0051084","'de novo' posttranslational protein fold...",7,4,2.15,253,"0.13435","0.01473","0.0147" +"GO:0051085","chaperone cofactor-dependent protein ref...",7,4,2.15,254,"0.13435","0.01473","0.0147" +"GO:0010035","response to inorganic substance",27,15,8.28,36,"0.00595","0.01723","0.0172" +"GO:0071277","cellular response to calcium ion",3,3,0.92,82,"0.02872","0.01781","0.0178" +"GO:0006875","cellular metal ion homeostasis",24,12,7.36,110,"0.03620","0.01877","0.0188" +"GO:0006541","glutamine metabolic process",4,4,1.23,45,"0.00878","0.01932","0.0193" +"GO:0006720","isoprenoid metabolic process",22,12,6.74,68,"0.01634","0.02044","0.0204" +"GO:0072525","pyridine-containing compound biosyntheti...",17,10,5.21,66,"0.01459","0.02163","0.0216" +"GO:0002931","response to ischemia",3,3,0.92,83,"0.02872","0.02198","0.0220" +"GO:0006084","acetyl-CoA metabolic process",6,5,1.84,53,"0.01200","0.02245","0.0224" +"GO:0042542","response to hydrogen peroxide",8,6,2.45,61,"0.01253","0.02332","0.0233" +"GO:0006811","ion transport",209,85,64.07,18,"0.00083","0.00209","0.0238" +"GO:0006777","Mo-molybdopterin cofactor biosynthetic p...",3,3,0.92,84,"0.02872","0.02574","0.0257" +"GO:0019720","Mo-molybdopterin cofactor metabolic proc...",3,3,0.92,85,"0.02872","0.02574","0.0257" +"GO:0043545","molybdopterin cofactor metabolic process",3,3,0.92,86,"0.02872","0.02574","0.0257" +"GO:0051189","prosthetic group metabolic process",3,3,0.92,87,"0.02872","0.02574","0.0257" +"GO:0001819","positive regulation of cytokine producti...",5,4,1.53,104,"0.03317","0.02616","0.0262" +"GO:0021680","cerebellar Purkinje cell layer developme...",4,3,1.23,161,"0.08855","0.02761","0.0276" +"GO:0021695","cerebellar cortex development",4,3,1.23,162,"0.08855","0.02761","0.0276" +"GO:0009072","aromatic amino acid family metabolic pro...",14,7,4.29,220,"0.10238","0.02788","0.0279" +"GO:0006546","glycine catabolic process",3,3,0.92,88,"0.02872","0.02858","0.0286" +"GO:0009071","serine family amino acid catabolic proce...",3,3,0.92,89,"0.02872","0.02858","0.0286" +"GO:0044282","small molecule catabolic process",36,17,11.04,78,"0.02612","0.00237","0.0309" +"GO:0045765","regulation of angiogenesis",9,4,2.76,535,"0.28517","0.03157","0.0316" +"GO:1901342","regulation of vasculature development",9,4,2.76,536,"0.28517","0.03157","0.0316" +"GO:0008299","isoprenoid biosynthetic process",12,6,3.68,248,"0.12792","0.03261","0.0326" +"GO:0008652","cellular amino acid biosynthetic process",13,7,3.99,138,"0.06883","0.03329","0.0333" +"GO:1901607","alpha-amino acid biosynthetic process",13,7,3.99,139,"0.06883","0.03329","0.0333" +"GO:0032011","ARF protein signal transduction",4,2,1.23,597,"0.35982","0.03500","0.0350" +"GO:0032012","regulation of ARF protein signal transdu...",4,2,1.23,598,"0.35982","0.03500","0.0350" +"GO:0055086","nucleobase-containing small molecule met...",106,50,32.49,12,"0.00019","0.00039","0.0355" +"GO:0006568","tryptophan metabolic process",4,3,1.23,163,"0.08855","0.03576","0.0358" +"GO:0006569","tryptophan catabolic process",4,3,1.23,164,"0.08855","0.03576","0.0358" +"GO:0006586","indolalkylamine metabolic process",4,3,1.23,165,"0.08855","0.03576","0.0358" +"GO:0009310","amine catabolic process",4,3,1.23,166,"0.08855","0.03576","0.0358" +"GO:0042402","cellular biogenic amine catabolic proces...",4,3,1.23,167,"0.08855","0.03576","0.0358" +"GO:0042430","indole-containing compound metabolic pro...",4,3,1.23,168,"0.08855","0.03576","0.0358" +"GO:0042436","indole-containing compound catabolic pro...",4,3,1.23,169,"0.08855","0.03576","0.0358" +"GO:0046218","indolalkylamine catabolic process",4,3,1.23,170,"0.08855","0.03576","0.0358" +"GO:0006959","humoral immune response",4,3,1.23,171,"0.08855","0.03638","0.0364" +"GO:0009620","response to fungus",4,2,1.23,599,"0.35982","0.03638","0.0364" +"GO:0051054","positive regulation of DNA metabolic pro...",4,3,1.23,172,"0.08855","0.03638","0.0364" +"GO:0006085","acetyl-CoA biosynthetic process",4,3,1.23,173,"0.08855","0.03785","0.0378" +"GO:0009607","response to biotic stimulus",26,13,7.97,94,"0.02966","0.03814","0.0381" +"GO:0006544","glycine metabolic process",5,4,1.53,105,"0.03317","0.03888","0.0389" +"GO:0071236","cellular response to antibiotic",9,6,2.76,80,"0.02791","0.04255","0.0425" +"GO:0043207","response to external biotic stimulus",24,12,7.36,111,"0.03620","0.04391","0.0439" +"GO:0051707","response to other organism",24,12,7.36,112,"0.03620","0.04391","0.0439" +"GO:0045766","positive regulation of angiogenesis",7,4,2.15,255,"0.13435","0.04484","0.0448" +"GO:1904018","positive regulation of vasculature devel...",7,4,2.15,256,"0.13435","0.04484","0.0448" +"GO:0006760","folic acid-containing compound metabolic...",4,3,1.23,174,"0.08855","0.04512","0.0451" +"GO:0042026","protein refolding",8,5,2.45,120,"0.06289","0.04514","0.0451" +"GO:0010332","response to gamma radiation",3,3,0.92,90,"0.02872","0.04517","0.0452" +"GO:0071480","cellular response to gamma radiation",3,3,0.92,91,"0.02872","0.04517","0.0452" +"GO:0006879","cellular iron ion homeostasis",4,3,1.23,175,"0.08855","0.04707","0.0471" +"GO:0018958","phenol-containing compound metabolic pro...",5,3,1.53,293,"0.17162","0.04727","0.0473" +"GO:0050801","ion homeostasis",36,15,11.04,223,"0.10536","0.04917","0.0492" +"GO:0072321","chaperone-mediated protein transport",5,2,1.53,801,"0.48529","0.04927","0.0493" +"GO:2001024","negative regulation of response to drug",5,3,1.53,294,"0.17162","0.04927","0.0493" +"GO:0016054","organic acid catabolic process",29,16,8.89,34,"0.00496","0.00126","0.0509" +"GO:0046395","carboxylic acid catabolic process",29,16,8.89,35,"0.00496","0.00126","0.0509" +"GO:0006874","cellular calcium ion homeostasis",18,9,5.52,135,"0.06677","0.05110","0.0511" +"GO:0055080","cation homeostasis",33,14,10.12,218,"0.10119","0.05143","0.0514" +"GO:0098771","inorganic ion homeostasis",33,14,10.12,219,"0.10119","0.05143","0.0514" +"GO:0070507","regulation of microtubule cytoskeleton o...",8,5,2.45,121,"0.06289","0.05366","0.0537" +"GO:0055065","metal ion homeostasis",27,12,8.28,212,"0.09063","0.05454","0.0545" +"GO:0048511","rhythmic process",15,6,4.6,566,"0.29742","0.05469","0.0547" +"GO:0006629","lipid metabolic process",182,68,55.79,79,"0.02645","0.05489","0.0549" +"GO:0005996","monosaccharide metabolic process",21,9,6.44,290,"0.16285","0.05510","0.0551" +"GO:0033108","mitochondrial respiratory chain complex ...",12,4,3.68,871,"0.52777","0.05526","0.0553" +"GO:0006576","cellular biogenic amine metabolic proces...",8,5,2.45,122,"0.06289","0.05561","0.0556" +"GO:0002697","regulation of immune effector process",8,5,2.45,123,"0.06289","0.05648","0.0565" +"GO:0008037","cell recognition",8,5,2.45,124,"0.06289","0.05648","0.0565" +"GO:0071241","cellular response to inorganic substance",8,5,2.45,125,"0.06289","0.05648","0.0565" +"GO:0071248","cellular response to metal ion",8,5,2.45,126,"0.06289","0.05648","0.0565" +"GO:0051402","neuron apoptotic process",8,5,2.45,127,"0.06289","0.05720","0.0572" +"GO:0007623","circadian rhythm",10,3,3.07,1003,"0.63488","0.05765","0.0577" +"GO:1901568","fatty acid derivative metabolic process",6,4,1.84,143,"0.07553","0.05921","0.0592" +"GO:0042558","pteridine-containing compound metabolic ...",7,4,2.15,257,"0.13435","0.06024","0.0602" +"GO:0000096","sulfur amino acid metabolic process",3,2,0.92,351,"0.22419","0.06189","0.0619" +"GO:0000097","sulfur amino acid biosynthetic process",3,2,0.92,352,"0.22419","0.06189","0.0619" +"GO:0006563","L-serine metabolic process",3,2,0.92,353,"0.22419","0.06189","0.0619" +"GO:0010038","response to metal ion",20,11,6.13,72,"0.01979","0.06414","0.0641" +"GO:0009311","oligosaccharide metabolic process",8,5,2.45,128,"0.06289","0.06562","0.0656" +"GO:0097237","cellular response to toxic substance",8,5,2.45,129,"0.06289","0.06612","0.0661" +"GO:0021575","hindbrain morphogenesis",3,2,0.92,354,"0.22419","0.06780","0.0678" +"GO:0021587","cerebellum morphogenesis",3,2,0.92,355,"0.22419","0.06780","0.0678" +"GO:0009084","glutamine family amino acid biosynthetic...",3,2,0.92,356,"0.22419","0.06826","0.0683" +"GO:0040019","positive regulation of embryonic develop...",4,3,1.23,176,"0.08855","0.07146","0.0715" +"GO:0072524","pyridine-containing compound metabolic p...",22,14,6.74,23,"0.00136","0.00221","0.0724" +"GO:0046677","response to antibiotic",14,8,4.29,108,"0.03528","0.07244","0.0724" +"GO:0007029","endoplasmic reticulum organization",7,1,2.15,1755,"0.92318","0.07249","0.0725" +"GO:0001775","cell activation",25,7,7.66,1239,"0.68606","0.07276","0.0728" +"GO:0048646","anatomical structure formation involved ...",52,15,15.94,1028,"0.66343","0.07447","0.0745" +"GO:0072503","cellular divalent inorganic cation homeo...",19,9,5.82,213,"0.09354","0.07504","0.0750" +"GO:0006575","cellular modified amino acid metabolic p...",13,7,3.99,140,"0.06883","0.07580","0.0758" +"GO:0035264","multicellular organism growth",4,2,1.23,600,"0.35982","0.07588","0.0759" +"GO:0070997","neuron death",10,6,3.07,118,"0.05196","0.07658","0.0766" +"GO:0044272","sulfur compound biosynthetic process",14,8,4.29,109,"0.03528","0.00254","0.0769" +"GO:0001525","angiogenesis",11,4,3.37,765,"0.44966","0.07703","0.0770" +"GO:1901569","fatty acid derivative catabolic process",3,2,0.92,357,"0.22419","0.07815","0.0782" +"GO:0031589","cell-substrate adhesion",12,6,3.68,249,"0.12792","0.07971","0.0797" +"GO:0009116","nucleoside metabolic process",17,7,5.21,500,"0.24278","0.07972","0.0797" +"GO:1901657","glycosyl compound metabolic process",17,7,5.21,501,"0.24278","0.07972","0.0797" +"GO:0042537","benzene-containing compound metabolic pr...",3,2,0.92,358,"0.22419","0.08232","0.0823" +"GO:0010656","negative regulation of muscle cell apopt...",6,4,1.84,144,"0.07553","0.08241","0.0824" +"GO:0010658","striated muscle cell apoptotic process",6,4,1.84,145,"0.07553","0.08241","0.0824" +"GO:0010659","cardiac muscle cell apoptotic process",6,4,1.84,146,"0.07553","0.08241","0.0824" +"GO:0010662","regulation of striated muscle cell apopt...",6,4,1.84,147,"0.07553","0.08241","0.0824" +"GO:0010664","negative regulation of striated muscle c...",6,4,1.84,148,"0.07553","0.08241","0.0824" +"GO:0010665","regulation of cardiac muscle cell apopto...",6,4,1.84,149,"0.07553","0.08241","0.0824" +"GO:0010667","negative regulation of cardiac muscle ce...",6,4,1.84,150,"0.07553","0.08241","0.0824" +"GO:0070301","cellular response to hydrogen peroxide",6,4,1.84,151,"0.07553","0.08241","0.0824" +"GO:0042737","drug catabolic process",6,4,1.84,152,"0.07553","0.08272","0.0827" +"GO:0006556","S-adenosylmethionine biosynthetic proces...",3,2,0.92,359,"0.22419","0.08320","0.0832" +"GO:0046500","S-adenosylmethionine metabolic process",3,2,0.92,360,"0.22419","0.08320","0.0832" +"GO:0000723","telomere maintenance",3,2,0.92,361,"0.22419","0.08338","0.0834" +"GO:0002920","regulation of humoral immune response",3,2,0.92,362,"0.22419","0.08338","0.0834" +"GO:0032200","telomere organization",3,2,0.92,363,"0.22419","0.08338","0.0834" +"GO:0050832","defense response to fungus",3,1,0.92,1036,"0.66671","0.08338","0.0834" +"GO:0051972","regulation of telomerase activity",3,2,0.92,364,"0.22419","0.08338","0.0834" +"GO:0051973","positive regulation of telomerase activi...",3,2,0.92,365,"0.22419","0.08338","0.0834" +"GO:2000573","positive regulation of DNA biosynthetic ...",3,2,0.92,366,"0.22419","0.08338","0.0834" +"GO:0035690","cellular response to drug",11,6,3.37,160,"0.08537","0.08460","0.0846" +"GO:0009074","aromatic amino acid family catabolic pro...",8,4,2.45,333,"0.20581","0.08460","0.0846" +"GO:0030518","intracellular steroid hormone receptor s...",8,4,2.45,334,"0.20581","0.08494","0.0849" +"GO:0043487","regulation of RNA stability",4,3,1.23,177,"0.08855","0.08625","0.0862" +"GO:0043488","regulation of mRNA stability",4,3,1.23,178,"0.08855","0.08625","0.0862" +"GO:0019748","secondary metabolic process",4,2,1.23,601,"0.35982","0.08713","0.0871" +"GO:0031112","positive regulation of microtubule polym...",4,2,1.23,602,"0.35982","0.08713","0.0871" +"GO:0031113","regulation of microtubule polymerization",4,2,1.23,603,"0.35982","0.08713","0.0871" +"GO:0031116","positive regulation of microtubule polym...",4,2,1.23,604,"0.35982","0.08713","0.0871" +"GO:0030705","cytoskeleton-dependent intracellular tra...",11,5,3.37,484,"0.22448","0.08733","0.0873" +"GO:0050878","regulation of body fluid levels",11,4,3.37,766,"0.44966","0.08757","0.0876" +"GO:0042278","purine nucleoside metabolic process",8,3,2.45,781,"0.46489","0.08764","0.0876" +"GO:0070972","protein localization to endoplasmic reti...",7,4,2.15,258,"0.13435","0.08797","0.0880" +"GO:0009166","nucleotide catabolic process",17,8,5.21,238,"0.11545","0.08868","0.0887" +"GO:1901292","nucleoside phosphate catabolic process",17,8,5.21,239,"0.11545","0.08868","0.0887" +"GO:0001906","cell killing",4,3,1.23,179,"0.08855","0.09005","0.0901" +"GO:0001909","leukocyte mediated cytotoxicity",4,3,1.23,180,"0.08855","0.09005","0.0901" +"GO:0001910","regulation of leukocyte mediated cytotox...",4,3,1.23,181,"0.08855","0.09005","0.0901" +"GO:0001912","positive regulation of leukocyte mediate...",4,3,1.23,182,"0.08855","0.09005","0.0901" +"GO:0002449","lymphocyte mediated immunity",4,3,1.23,183,"0.08855","0.09005","0.0901" +"GO:0002703","regulation of leukocyte mediated immunit...",4,3,1.23,184,"0.08855","0.09005","0.0901" +"GO:0002705","positive regulation of leukocyte mediate...",4,3,1.23,185,"0.08855","0.09005","0.0901" +"GO:0002706","regulation of lymphocyte mediated immuni...",4,3,1.23,186,"0.08855","0.09005","0.0901" +"GO:0002708","positive regulation of lymphocyte mediat...",4,3,1.23,187,"0.08855","0.09005","0.0901" +"GO:0007339","binding of sperm to zona pellucida",4,3,1.23,188,"0.08855","0.09005","0.0901" +"GO:0007413","axonal fasciculation",4,2,1.23,605,"0.35982","0.09005","0.0901" +"GO:0009988","cell-cell recognition",4,3,1.23,189,"0.08855","0.09005","0.0901" +"GO:0016246","RNA interference",4,3,1.23,190,"0.08855","0.09005","0.0901" +"GO:0031341","regulation of cell killing",4,3,1.23,191,"0.08855","0.09005","0.0901" +"GO:0031343","positive regulation of cell killing",4,3,1.23,192,"0.08855","0.09005","0.0901" +"GO:0035036","sperm-egg recognition",4,3,1.23,193,"0.08855","0.09005","0.0901" +"GO:0035821","modification of morphology or physiology...",4,2,1.23,606,"0.35982","0.09005","0.0901" +"GO:0036474","cell death in response to hydrogen perox...",4,3,1.23,194,"0.08855","0.09005","0.0901" +"GO:0051702","interaction with symbiont",4,2,1.23,607,"0.35982","0.09005","0.0901" +"GO:0051817","modification of morphology or physiology...",4,2,1.23,608,"0.35982","0.09005","0.0901" +"GO:0051851","modification by host of symbiont morphol...",4,2,1.23,609,"0.35982","0.09005","0.0901" +"GO:0061635","regulation of protein complex stability",4,2,1.23,610,"0.35982","0.09005","0.0901" +"GO:0071276","cellular response to cadmium ion",4,2,1.23,611,"0.35982","0.09005","0.0901" +"GO:0106030","neuron projection fasciculation",4,2,1.23,612,"0.35982","0.09005","0.0901" +"GO:1901032","negative regulation of response to react...",4,3,1.23,195,"0.08855","0.09005","0.0901" +"GO:1903205","regulation of hydrogen peroxide-induced ...",4,3,1.23,196,"0.08855","0.09005","0.0901" +"GO:1903206","negative regulation of hydrogen peroxide...",4,3,1.23,197,"0.08855","0.09005","0.0901" +"GO:2001038","regulation of cellular response to drug",4,3,1.23,198,"0.08855","0.09005","0.0901" +"GO:2001039","negative regulation of cellular response...",4,3,1.23,199,"0.08855","0.09005","0.0901" +"GO:0072507","divalent inorganic cation homeostasis",21,9,6.44,291,"0.16285","0.09079","0.0908" +"GO:0009312","oligosaccharide biosynthetic process",7,4,2.15,259,"0.13435","0.09233","0.0923" +"GO:0016266","O-glycan processing",7,3,2.15,694,"0.36773","0.09233","0.0923" +"GO:0042246","tissue regeneration",5,3,1.53,295,"0.17162","0.09259","0.0926" +"GO:0016051","carbohydrate biosynthetic process",19,9,5.82,214,"0.09354","0.09515","0.0952" +"GO:0031647","regulation of protein stability",16,5,4.9,911,"0.57321","0.09588","0.0959" +"GO:0009109","coenzyme catabolic process",3,2,0.92,367,"0.22419","0.09799","0.0980" +"GO:0042219","cellular modified amino acid catabolic p...",3,2,0.92,368,"0.22419","0.09799","0.0980" +"GO:0046653","tetrahydrofolate metabolic process",3,2,0.92,369,"0.22419","0.09799","0.0980" +"GO:0051056","regulation of small GTPase mediated sign...",21,4,6.44,1779,"0.92467","0.09813","0.0981" +"GO:0046434","organophosphate catabolic process",25,11,7.66,237,"0.11002","0.09839","0.0984" +"GO:0032570","response to progesterone",6,4,1.84,153,"0.07553","0.09859","0.0986" +"GO:0009070","serine family amino acid biosynthetic pr...",5,3,1.53,296,"0.17162","0.09886","0.0989" +"GO:0000302","response to reactive oxygen species",12,6,3.68,250,"0.12792","0.09887","0.0989" +"GO:0002699","positive regulation of immune effector p...",7,4,2.15,260,"0.13435","0.09967","0.0997" +"GO:0008038","neuron recognition",7,4,2.15,261,"0.13435","0.09967","0.0997" +"GO:0010657","muscle cell apoptotic process",7,4,2.15,262,"0.13435","0.09967","0.0997" +"GO:0010660","regulation of muscle cell apoptotic proc...",7,4,2.15,263,"0.13435","0.09967","0.0997" +"GO:0001678","cellular glucose homeostasis",4,3,1.23,200,"0.08855","0.09975","0.0997" +"GO:0060041","retina development in camera-type eye",18,6,5.52,855,"0.49023","0.10149","0.1015" +"GO:0071320","cellular response to cAMP",3,2,0.92,370,"0.22419","0.10212","0.1021" +"GO:0007596","blood coagulation",8,3,2.45,782,"0.46489","0.10221","0.1022" +"GO:0007599","hemostasis",8,3,2.45,783,"0.46489","0.10221","0.1022" +"GO:0050817","coagulation",8,3,2.45,784,"0.46489","0.10221","0.1022" +"GO:0009308","amine metabolic process",9,5,2.76,224,"0.10660","0.10285","0.1028" +"GO:0044106","cellular amine metabolic process",9,5,2.76,225,"0.10660","0.10285","0.1028" +"GO:0001523","retinoid metabolic process",8,5,2.45,130,"0.06289","0.10396","0.1040" +"GO:0006721","terpenoid metabolic process",8,5,2.45,131,"0.06289","0.10396","0.1040" +"GO:0016101","diterpenoid metabolic process",8,5,2.45,132,"0.06289","0.10396","0.1040" +"GO:1905897","regulation of response to endoplasmic re...",9,5,2.76,226,"0.10660","0.10463","0.1046" +"GO:0003018","vascular process in circulatory system",4,1,1.23,1329,"0.76900","0.10475","0.1048" +"GO:0010594","regulation of endothelial cell migration",4,2,1.23,613,"0.35982","0.10475","0.1048" +"GO:0010632","regulation of epithelial cell migration",4,2,1.23,614,"0.35982","0.10475","0.1048" +"GO:0006732","coenzyme metabolic process",53,33,16.25,3,"1.5e-06","1.6e-06","0.1051" +"GO:0055074","calcium ion homeostasis",20,9,6.13,243,"0.12566","0.10508","0.1051" +"GO:0019359","nicotinamide nucleotide biosynthetic pro...",14,7,4.29,221,"0.10238","0.10514","0.1051" +"GO:0019363","pyridine nucleotide biosynthetic process",14,7,4.29,222,"0.10238","0.10514","0.1051" +"GO:0009112","nucleobase metabolic process",6,4,1.84,154,"0.07553","0.10849","0.1085" +"GO:0046112","nucleobase biosynthetic process",6,4,1.84,155,"0.07553","0.10849","0.1085" +"GO:0071214","cellular response to abiotic stimulus",16,8,4.9,158,"0.08247","0.10912","0.1091" +"GO:0104004","cellular response to environmental stimu...",16,8,4.9,159,"0.08247","0.10912","0.1091" +"GO:0018210","peptidyl-threonine modification",9,3,2.76,889,"0.55475","0.11128","0.1113" +"GO:0044281","small molecule metabolic process",297,121,91.04,11,"5.2e-05","0.00015","0.1114" +"GO:0097164","ammonium ion metabolic process",16,7,4.9,329,"0.19035","0.11159","0.1116" +"GO:0046916","cellular transition metal ion homeostasi...",5,3,1.53,297,"0.17162","0.11185","0.1118" +"GO:0055072","iron ion homeostasis",5,3,1.53,298,"0.17162","0.11185","0.1118" +"GO:0010507","negative regulation of autophagy",4,1,1.23,1330,"0.76900","0.11475","0.1147" +"GO:0015693","magnesium ion transport",3,2,0.92,371,"0.22419","0.11488","0.1149" +"GO:0015698","inorganic anion transport",13,6,3.99,321,"0.17857","0.11500","0.1150" +"GO:0006901","vesicle coating",4,1,1.23,1331,"0.76900","0.11595","0.1159" +"GO:0048199","vesicle targeting, to, from or within Go...",4,1,1.23,1332,"0.76900","0.11595","0.1159" +"GO:0019318","hexose metabolic process",17,8,5.21,240,"0.11545","0.11711","0.1171" +"GO:0043010","camera-type eye development",24,9,7.36,568,"0.29857","0.11725","0.1172" +"GO:0042135","neurotransmitter catabolic process",7,4,2.15,264,"0.13435","0.11731","0.1173" +"GO:0030902","hindbrain development",9,5,2.76,227,"0.10660","0.11731","0.1173" +"GO:1903311","regulation of mRNA metabolic process",9,5,2.76,228,"0.10660","0.11731","0.1173" +"GO:0046128","purine ribonucleoside metabolic process",7,3,2.15,695,"0.36773","0.11892","0.1189" +"GO:0006790","sulfur compound metabolic process",32,15,9.81,113,"0.03834","0.02375","0.1197" +"GO:0072521","purine-containing compound metabolic pro...",74,34,22.68,28,"0.00354","0.00962","0.1224" +"GO:0019693","ribose phosphate metabolic process",71,33,21.76,26,"0.00322","0.00913","0.1229" +"GO:0007265","Ras protein signal transduction",24,7,7.36,1020,"0.63876","0.12534","0.1253" +"GO:0032886","regulation of microtubule-based process",9,5,2.76,229,"0.10660","0.12865","0.1286" +"GO:0022406","membrane docking",9,2,2.76,1469,"0.81589","0.12908","0.1291" +"GO:0033559","unsaturated fatty acid metabolic process",5,3,1.53,299,"0.17162","0.12979","0.1298" +"GO:0018243","protein O-linked glycosylation via threo...",6,3,1.84,512,"0.26771","0.12988","0.1299" +"GO:1901214","regulation of neuron death",9,5,2.76,230,"0.10660","0.13091","0.1309" +"GO:0006817","phosphate ion transport",3,2,0.92,372,"0.22419","0.13097","0.1310" +"GO:0015858","nucleoside transport",3,2,0.92,373,"0.22419","0.13314","0.1331" +"GO:1901642","nucleoside transmembrane transport",3,2,0.92,374,"0.22419","0.13314","0.1331" +"GO:0036498","IRE1-mediated unfolded protein response",3,2,0.92,375,"0.22419","0.13443","0.1344" +"GO:0042559","pteridine-containing compound biosynthet...",5,3,1.53,300,"0.17162","0.13465","0.1347" +"GO:0071941","nitrogen cycle metabolic process",3,2,0.92,376,"0.22419","0.13547","0.1355" +"GO:0046578","regulation of Ras protein signal transdu...",18,4,5.52,1576,"0.85060","0.13551","0.1355" +"GO:0001895","retina homeostasis",7,4,2.15,265,"0.13435","0.13603","0.1360" +"GO:0030168","platelet activation",7,3,2.15,696,"0.36773","0.13603","0.1360" +"GO:0034109","homotypic cell-cell adhesion",7,3,2.15,697,"0.36773","0.13603","0.1360" +"GO:0070527","platelet aggregation",7,3,2.15,698,"0.36773","0.13603","0.1360" +"GO:0006465","signal peptide processing",4,3,1.23,201,"0.08855","0.13613","0.1361" +"GO:0009636","response to toxic substance",18,9,5.52,136,"0.06677","0.13755","0.1376" +"GO:0009226","nucleotide-sugar biosynthetic process",3,2,0.92,377,"0.22419","0.13783","0.1378" +"GO:0006900","vesicle budding from membrane",7,3,2.15,699,"0.36773","0.13784","0.1378" +"GO:0048194","Golgi vesicle budding",7,3,2.15,700,"0.36773","0.13784","0.1378" +"GO:0010970","transport along microtubule",10,4,3.07,722,"0.36778","0.13813","0.1381" +"GO:0099111","microtubule-based transport",10,4,3.07,723,"0.36778","0.13813","0.1381" +"GO:0006970","response to osmotic stress",5,3,1.53,301,"0.17162","0.13985","0.1399" +"GO:0009411","response to UV",5,2,1.53,802,"0.48529","0.13985","0.1399" +"GO:0051052","regulation of DNA metabolic process",5,3,1.53,302,"0.17162","0.13985","0.1399" +"GO:0008272","sulfate transport",5,3,1.53,303,"0.17162","0.14183","0.1418" +"GO:0008088","axo-dendritic transport",7,3,2.15,701,"0.36773","0.14463","0.1446" +"GO:0035964","COPI-coated vesicle budding",3,1,0.92,1037,"0.66671","0.14469","0.1447" +"GO:0048200","Golgi transport vesicle coating",3,1,0.92,1038,"0.66671","0.14469","0.1447" +"GO:0048205","COPI coating of Golgi vesicle",3,1,0.92,1039,"0.66671","0.14469","0.1447" +"GO:0061061","muscle structure development",39,14,11.96,554,"0.28917","0.14597","0.1460" +"GO:0090151","establishment of protein localization to...",5,2,1.53,803,"0.48529","0.14616","0.1462" +"GO:0050792","regulation of viral process",9,5,2.76,231,"0.10660","0.14679","0.1468" +"GO:0014706","striated muscle tissue development",17,5,5.21,997,"0.63434","0.14761","0.1476" +"GO:0001974","blood vessel remodeling",7,4,2.15,266,"0.13435","0.14843","0.1484" +"GO:0043523","regulation of neuron apoptotic process",7,4,2.15,267,"0.13435","0.14843","0.1484" +"GO:2001236","regulation of extrinsic apoptotic signal...",7,4,2.15,268,"0.13435","0.14843","0.1484" +"GO:0046173","polyol biosynthetic process",7,1,2.15,1756,"0.92318","0.14907","0.1491" +"GO:0044270","cellular nitrogen compound catabolic pro...",46,16,14.1,579,"0.32017","0.15063","0.1506" +"GO:0048278","vesicle docking",8,2,2.45,1294,"0.75786","0.15104","0.1510" +"GO:0140056","organelle localization by membrane tethe...",8,2,2.45,1295,"0.75786","0.15104","0.1510" +"GO:0044262","cellular carbohydrate metabolic process",17,7,5.21,502,"0.24278","0.15115","0.1512" +"GO:0007517","muscle organ development",21,8,6.44,571,"0.29925","0.15118","0.1512" +"GO:0006631","fatty acid metabolic process",26,11,7.97,275,"0.14022","0.15212","0.1521" +"GO:0036503","ERAD pathway",19,5,5.82,1283,"0.73917","0.15263","0.1526" +"GO:0010998","regulation of translational initiation b...",4,3,1.23,202,"0.08855","0.15319","0.1532" +"GO:0043555","regulation of translation in response to...",4,3,1.23,203,"0.08855","0.15319","0.1532" +"GO:0043558","regulation of translational initiation i...",4,3,1.23,204,"0.08855","0.15319","0.1532" +"GO:0046700","heterocycle catabolic process",47,17,14.41,507,"0.24852","0.15405","0.1540" +"GO:0045995","regulation of embryonic development",5,3,1.53,304,"0.17162","0.15479","0.1548" +"GO:0043279","response to alkaloid",3,2,0.92,378,"0.22419","0.15480","0.1548" +"GO:0060042","retina morphogenesis in camera-type eye",9,5,2.76,232,"0.10660","0.15695","0.1570" +"GO:0060537","muscle tissue development",18,5,5.52,1247,"0.68977","0.15750","0.1575" +"GO:0006637","acyl-CoA metabolic process",9,7,2.76,32,"0.00484","0.00975","0.1584" +"GO:0035383","thioester metabolic process",9,7,2.76,33,"0.00484","0.00975","0.1584" +"GO:0009435","NAD biosynthetic process",3,2,0.92,379,"0.22419","0.15975","0.1598" +"GO:0007052","mitotic spindle organization",3,2,0.92,380,"0.22419","0.16049","0.1605" +"GO:0090307","mitotic spindle assembly",3,2,0.92,381,"0.22419","0.16049","0.1605" +"GO:0001913","T cell mediated cytotoxicity",3,2,0.92,382,"0.22419","0.16451","0.1645" +"GO:0001914","regulation of T cell mediated cytotoxici...",3,2,0.92,383,"0.22419","0.16451","0.1645" +"GO:0001916","positive regulation of T cell mediated c...",3,2,0.92,384,"0.22419","0.16451","0.1645" +"GO:0002250","adaptive immune response",3,2,0.92,385,"0.22419","0.16451","0.1645" +"GO:0002456","T cell mediated immunity",3,2,0.92,386,"0.22419","0.16451","0.1645" +"GO:0002460","adaptive immune response based on somati...",3,2,0.92,387,"0.22419","0.16451","0.1645" +"GO:0002709","regulation of T cell mediated immunity",3,2,0.92,388,"0.22419","0.16451","0.1645" +"GO:0002711","positive regulation of T cell mediated i...",3,2,0.92,389,"0.22419","0.16451","0.1645" +"GO:0002819","regulation of adaptive immune response",3,2,0.92,390,"0.22419","0.16451","0.1645" +"GO:0002821","positive regulation of adaptive immune r...",3,2,0.92,391,"0.22419","0.16451","0.1645" +"GO:0002822","regulation of adaptive immune response b...",3,2,0.92,392,"0.22419","0.16451","0.1645" +"GO:0002824","positive regulation of adaptive immune r...",3,2,0.92,393,"0.22419","0.16451","0.1645" +"GO:0006622","protein targeting to lysosome",3,2,0.92,394,"0.22419","0.16451","0.1645" +"GO:0006623","protein targeting to vacuole",3,2,0.92,395,"0.22419","0.16451","0.1645" +"GO:0010045","response to nickel cation",3,2,0.92,396,"0.22419","0.16451","0.1645" +"GO:0016191","synaptic vesicle uncoating",3,2,0.92,397,"0.22419","0.16451","0.1645" +"GO:0033120","positive regulation of RNA splicing",3,2,0.92,398,"0.22419","0.16451","0.1645" +"GO:0034401","chromatin organization involved in regul...",3,2,0.92,399,"0.22419","0.16451","0.1645" +"GO:0044788","modulation by host of viral process",3,2,0.92,400,"0.22419","0.16451","0.1645" +"GO:0044794","positive regulation by host of viral pro...",3,2,0.92,401,"0.22419","0.16451","0.1645" +"GO:0044827","modulation by host of viral genome repli...",3,2,0.92,402,"0.22419","0.16451","0.1645" +"GO:0044829","positive regulation by host of viral gen...",3,2,0.92,403,"0.22419","0.16451","0.1645" +"GO:0044849","estrous cycle",3,2,0.92,404,"0.22419","0.16451","0.1645" +"GO:0045070","positive regulation of viral genome repl...",3,2,0.92,405,"0.22419","0.16451","0.1645" +"GO:0046685","response to arsenic-containing substance",3,1,0.92,1040,"0.66671","0.16451","0.1645" +"GO:0046688","response to copper ion",3,1,0.92,1041,"0.66671","0.16451","0.1645" +"GO:0048026","positive regulation of mRNA splicing, vi...",3,2,0.92,406,"0.22419","0.16451","0.1645" +"GO:0050685","positive regulation of mRNA processing",3,2,0.92,407,"0.22419","0.16451","0.1645" +"GO:0061083","regulation of protein refolding",3,2,0.92,408,"0.22419","0.16451","0.1645" +"GO:0061462","protein localization to lysosome",3,2,0.92,409,"0.22419","0.16451","0.1645" +"GO:0061684","chaperone-mediated autophagy",3,2,0.92,410,"0.22419","0.16451","0.1645" +"GO:0061738","late endosomal microautophagy",3,2,0.92,411,"0.22419","0.16451","0.1645" +"GO:0061740","protein targeting to lysosome involved i...",3,2,0.92,412,"0.22419","0.16451","0.1645" +"GO:0061741","chaperone-mediated protein transport inv...",3,2,0.92,413,"0.22419","0.16451","0.1645" +"GO:0070828","heterochromatin organization",3,2,0.92,414,"0.22419","0.16451","0.1645" +"GO:0070868","heterochromatin organization involved in...",3,2,0.92,415,"0.22419","0.16451","0.1645" +"GO:0071211","protein targeting to vacuole involved in...",3,2,0.92,416,"0.22419","0.16451","0.1645" +"GO:0072318","clathrin coat disassembly",3,2,0.92,417,"0.22419","0.16451","0.1645" +"GO:0072319","vesicle uncoating",3,2,0.92,418,"0.22419","0.16451","0.1645" +"GO:0072665","protein localization to vacuole",3,2,0.92,419,"0.22419","0.16451","0.1645" +"GO:0072666","establishment of protein localization to...",3,2,0.92,420,"0.22419","0.16451","0.1645" +"GO:0097212","lysosomal membrane organization",3,2,0.92,421,"0.22419","0.16451","0.1645" +"GO:0097213","regulation of lysosomal membrane permeab...",3,2,0.92,422,"0.22419","0.16451","0.1645" +"GO:0097214","positive regulation of lysosomal membran...",3,2,0.92,423,"0.22419","0.16451","0.1645" +"GO:0097549","chromatin organization involved in negat...",3,2,0.92,424,"0.22419","0.16451","0.1645" +"GO:1903334","positive regulation of protein folding",3,2,0.92,425,"0.22419","0.16451","0.1645" +"GO:1904592","positive regulation of protein refolding",3,2,0.92,426,"0.22419","0.16451","0.1645" +"GO:1904764","chaperone-mediated autophagy translocati...",3,2,0.92,427,"0.22419","0.16451","0.1645" +"GO:1990832","slow axonal transport",3,2,0.92,428,"0.22419","0.16451","0.1645" +"GO:1990834","response to odorant",3,2,0.92,429,"0.22419","0.16451","0.1645" +"GO:0030431","sleep",5,2,1.53,804,"0.48529","0.16460","0.1646" +"GO:0003002","regionalization",21,4,6.44,1780,"0.92467","0.16797","0.1680" +"GO:0006941","striated muscle contraction",9,3,2.76,890,"0.55475","0.16993","0.1699" +"GO:0060048","cardiac muscle contraction",9,3,2.76,891,"0.55475","0.16993","0.1699" +"GO:0035994","response to muscle stretch",7,3,2.15,702,"0.36773","0.16996","0.1700" +"GO:0007519","skeletal muscle tissue development",12,4,3.68,872,"0.52777","0.17079","0.1708" +"GO:0030520","intracellular estrogen receptor signalin...",4,3,1.23,205,"0.08855","0.17123","0.1712" +"GO:0033146","regulation of intracellular estrogen rec...",4,3,1.23,206,"0.08855","0.17123","0.1712" +"GO:0009953","dorsal/ventral pattern formation",8,4,2.45,335,"0.20581","0.17137","0.1714" +"GO:0006695","cholesterol biosynthetic process",4,3,1.23,207,"0.08855","0.17177","0.1718" +"GO:0022407","regulation of cell-cell adhesion",4,3,1.23,208,"0.08855","0.17230","0.1723" +"GO:0030155","regulation of cell adhesion",9,5,2.76,233,"0.10660","0.17261","0.1726" +"GO:0010212","response to ionizing radiation",4,3,1.23,209,"0.08855","0.17284","0.1728" +"GO:0071479","cellular response to ionizing radiation",4,3,1.23,210,"0.08855","0.17284","0.1728" +"GO:0045785","positive regulation of cell adhesion",5,3,1.53,305,"0.17162","0.17363","0.1736" +"GO:0048524","positive regulation of viral process",6,4,1.84,156,"0.07553","0.17372","0.1737" +"GO:2001234","negative regulation of apoptotic signali...",13,6,3.99,322,"0.17857","0.17384","0.1738" +"GO:0017004","cytochrome complex assembly",4,2,1.23,615,"0.35982","0.17652","0.1765" +"GO:0071478","cellular response to radiation",10,6,3.07,119,"0.05196","0.17736","0.1774" +"GO:0042180","cellular ketone metabolic process",13,4,3.99,978,"0.60001","0.17894","0.1789" +"GO:0009117","nucleotide metabolic process",88,41,26.98,20,"0.00100","0.00220","0.1794" +"GO:0030522","intracellular receptor signaling pathway",10,4,3.07,724,"0.36778","0.18060","0.1806" +"GO:0018242","protein O-linked glycosylation via serin...",5,3,1.53,306,"0.17162","0.18264","0.1826" +"GO:0060249","anatomical structure homeostasis",15,7,4.6,278,"0.14315","0.18286","0.1829" +"GO:0010595","positive regulation of endothelial cell ...",3,2,0.92,430,"0.22419","0.18426","0.1843" +"GO:0010634","positive regulation of epithelial cell m...",3,2,0.92,431,"0.22419","0.18426","0.1843" +"GO:0043535","regulation of blood vessel endothelial c...",3,1,0.92,1042,"0.66671","0.18426","0.1843" +"GO:0032233","positive regulation of actin filament bu...",3,0,0.92,2193,"1.00000","0.18426","0.1843" +"GO:0055001","muscle cell development",16,7,4.9,330,"0.19035","0.18458","0.1846" +"GO:0055002","striated muscle cell development",16,7,4.9,331,"0.19035","0.18458","0.1846" +"GO:0042692","muscle cell differentiation",20,9,6.13,244,"0.12566","0.18972","0.1897" +"GO:0051146","striated muscle cell differentiation",20,9,6.13,245,"0.12566","0.18972","0.1897" +"GO:0008203","cholesterol metabolic process",6,4,1.84,157,"0.07553","0.19030","0.1903" +"GO:0007266","Rho protein signal transduction",15,3,4.6,1631,"0.88467","0.19129","0.1913" +"GO:0033500","carbohydrate homeostasis",7,3,2.15,703,"0.36773","0.19133","0.1913" +"GO:0006684","sphingomyelin metabolic process",3,2,0.92,432,"0.22419","0.19137","0.1914" +"GO:0015849","organic acid transport",26,11,7.97,276,"0.14022","0.19232","0.1923" +"GO:0046942","carboxylic acid transport",26,11,7.97,277,"0.14022","0.19232","0.1923" +"GO:0048514","blood vessel morphogenesis",16,4,4.9,1424,"0.77238","0.19367","0.1937" +"GO:0046847","filopodium assembly",4,1,1.23,1333,"0.76900","0.19527","0.1953" +"GO:0030516","regulation of axon extension",4,0,1.23,2194,"1.00000","0.19527","0.1953" +"GO:0009063","cellular amino acid catabolic process",20,12,6.13,37,"0.00604","0.00491","0.1953" +"GO:0033143","regulation of intracellular steroid horm...",5,3,1.53,307,"0.17162","0.19550","0.1955" +"GO:0046835","carbohydrate phosphorylation",3,2,0.92,433,"0.22419","0.19593","0.1959" +"GO:0006984","ER-nucleus signaling pathway",3,2,0.92,434,"0.22419","0.19627","0.1963" +"GO:0061013","regulation of mRNA catabolic process",5,3,1.53,308,"0.17162","0.19643","0.1964" +"GO:0055076","transition metal ion homeostasis",6,3,1.84,513,"0.26771","0.19687","0.1969" +"GO:0010927","cellular component assembly involved in ...",15,7,4.6,279,"0.14315","0.19743","0.1974" +"GO:0046683","response to organophosphorus",4,2,1.23,616,"0.35982","0.19793","0.1979" +"GO:0051591","response to cAMP",4,2,1.23,617,"0.35982","0.19793","0.1979" +"GO:0060359","response to ammonium ion",4,2,1.23,618,"0.35982","0.19793","0.1979" +"GO:0006865","amino acid transport",18,8,5.52,284,"0.15438","0.19807","0.1981" +"GO:1903825","organic acid transmembrane transport",20,9,6.13,246,"0.12566","0.19867","0.1987" +"GO:1905039","carboxylic acid transmembrane transport",20,9,6.13,247,"0.12566","0.19867","0.1987" +"GO:0048207","vesicle targeting, rough ER to cis-Golgi",3,1,0.92,1043,"0.66671","0.19883","0.1988" +"GO:0048208","COPII vesicle coating",3,1,0.92,1044,"0.66671","0.19883","0.1988" +"GO:0098542","defense response to other organism",17,7,5.21,503,"0.24278","0.19899","0.1990" +"GO:0003333","amino acid transmembrane transport",17,8,5.21,241,"0.11545","0.19928","0.1993" +"GO:0043414","macromolecule methylation",15,2,4.6,1925,"0.96891","0.19928","0.1993" +"GO:1901361","organic cyclic compound catabolic proces...",50,18,15.33,505,"0.24710","0.20187","0.2019" +"GO:0009950","dorsal/ventral axis specification",3,2,0.92,435,"0.22419","0.20457","0.2046" +"GO:0006767","water-soluble vitamin metabolic process",7,3,2.15,704,"0.36773","0.20470","0.2047" +"GO:0006753","nucleoside phosphate metabolic process",89,41,27.28,22,"0.00132","0.00288","0.2054" +"GO:0006936","muscle contraction",17,7,5.21,504,"0.24278","0.20610","0.2061" +"GO:0018022","peptidyl-lysine methylation",7,1,2.15,1757,"0.92318","0.20632","0.2063" +"GO:0030001","metal ion transport",80,31,24.52,141,"0.07221","0.20632","0.2063" +"GO:0001816","cytokine production",14,6,4.29,496,"0.23571","0.20676","0.2068" +"GO:1901215","negative regulation of neuron death",8,4,2.45,336,"0.20581","0.20890","0.2089" +"GO:0006749","glutathione metabolic process",3,2,0.92,436,"0.22419","0.20934","0.2093" +"GO:0019439","aromatic compound catabolic process",46,16,14.1,580,"0.32017","0.21173","0.2117" +"GO:0006090","pyruvate metabolic process",15,7,4.6,280,"0.14315","0.21295","0.2130" +"GO:0006665","sphingolipid metabolic process",12,5,3.68,555,"0.29345","0.21467","0.2147" +"GO:0032092","positive regulation of protein binding",3,1,0.92,1045,"0.66671","0.21582","0.2158" +"GO:1903313","positive regulation of mRNA metabolic pr...",4,2,1.23,619,"0.35982","0.21599","0.2160" +"GO:0045321","leukocyte activation",18,4,5.52,1577,"0.85060","0.21610","0.2161" +"GO:0072330","monocarboxylic acid biosynthetic process",27,11,8.28,318,"0.17431","0.21767","0.2177" +"GO:0072359","circulatory system development",42,11,12.87,1437,"0.78628","0.21797","0.2180" +"GO:0072523","purine-containing compound catabolic pro...",5,2,1.53,805,"0.48529","0.21879","0.2188" +"GO:0003300","cardiac muscle hypertrophy",6,2,1.84,926,"0.59408","0.21907","0.2191" +"GO:0014896","muscle hypertrophy",6,2,1.84,927,"0.59408","0.21907","0.2191" +"GO:0014897","striated muscle hypertrophy",6,2,1.84,928,"0.59408","0.21907","0.2191" +"GO:0045663","positive regulation of myoblast differen...",6,2,1.84,929,"0.59408","0.21907","0.2191" +"GO:0050982","detection of mechanical stimulus",6,3,1.84,514,"0.26771","0.21907","0.2191" +"GO:0055006","cardiac cell development",6,2,1.84,930,"0.59408","0.21907","0.2191" +"GO:0055013","cardiac muscle cell development",6,2,1.84,931,"0.59408","0.21907","0.2191" +"GO:1901031","regulation of response to reactive oxyge...",5,3,1.53,309,"0.17162","0.21979","0.2198" +"GO:0009612","response to mechanical stimulus",17,5,5.21,998,"0.63434","0.22047","0.2205" +"GO:0002252","immune effector process",22,7,6.74,880,"0.53307","0.22067","0.2207" +"GO:0048599","oocyte development",4,1,1.23,1334,"0.76900","0.22171","0.2217" +"GO:1903076","regulation of protein localization to pl...",4,2,1.23,620,"0.35982","0.22171","0.2217" +"GO:1904375","regulation of protein localization to ce...",4,2,1.23,621,"0.35982","0.22171","0.2217" +"GO:0007409","axonogenesis",27,6,8.28,1628,"0.88065","0.22211","0.2221" +"GO:0071786","endoplasmic reticulum tubular network or...",4,1,1.23,1335,"0.76900","0.22364","0.2236" +"GO:0031648","protein destabilization",4,1,1.23,1336,"0.76900","0.22494","0.2249" +"GO:0010257","NADH dehydrogenase complex assembly",8,2,2.45,1296,"0.75786","0.22501","0.2250" +"GO:0032981","mitochondrial respiratory chain complex ...",8,2,2.45,1297,"0.75786","0.22501","0.2250" +"GO:0034404","nucleobase-containing small molecule bio...",21,8,6.44,572,"0.29925","0.22525","0.2252" +"GO:0009067","aspartate family amino acid biosynthetic...",4,2,1.23,622,"0.35982","0.22526","0.2253" +"GO:0090114","COPII-coated vesicle budding",6,3,1.84,515,"0.26771","0.22550","0.2255" +"GO:0034968","histone lysine methylation",4,1,1.23,1337,"0.76900","0.22559","0.2256" +"GO:1901654","response to ketone",10,5,3.07,285,"0.16125","0.22587","0.2259" +"GO:2001243","negative regulation of intrinsic apoptot...",8,4,2.45,337,"0.20581","0.22904","0.2290" +"GO:0031109","microtubule polymerization or depolymeri...",8,4,2.45,338,"0.20581","0.23161","0.2316" +"GO:1901699","cellular response to nitrogen compound",11,3,3.37,1254,"0.70434","0.23345","0.2335" +"GO:0098656","anion transmembrane transport",26,10,7.97,510,"0.25175","0.23364","0.2336" +"GO:0006163","purine nucleotide metabolic process",69,31,21.15,41,"0.00789","0.02269","0.2353" +"GO:0010810","regulation of cell-substrate adhesion",3,2,0.92,437,"0.22419","0.23568","0.2357" +"GO:0051701","interaction with host",3,2,0.92,438,"0.22419","0.23742","0.2374" +"GO:0009725","response to hormone",51,18,15.63,534,"0.27919","0.23773","0.2377" +"GO:0000271","polysaccharide biosynthetic process",7,4,2.15,269,"0.13435","0.23774","0.2377" +"GO:0034637","cellular carbohydrate biosynthetic proce...",7,3,2.15,705,"0.36773","0.23774","0.2377" +"GO:0035023","regulation of Rho protein signal transdu...",13,2,3.99,1818,"0.94262","0.23877","0.2388" +"GO:0048871","multicellular organismal homeostasis",13,5,3.99,691,"0.36524","0.23877","0.2388" +"GO:0009165","nucleotide biosynthetic process",57,26,17.47,50,"0.01147","0.01773","0.2398" +"GO:1901293","nucleoside phosphate biosynthetic proces...",57,26,17.47,51,"0.01147","0.01773","0.2398" +"GO:0007338","single fertilization",8,4,2.45,339,"0.20581","0.24012","0.2401" +"GO:0034614","cellular response to reactive oxygen spe...",8,4,2.45,340,"0.20581","0.24012","0.2401" +"GO:0031101","fin regeneration",3,1,0.92,1046,"0.66671","0.24014","0.2401" +"GO:0001935","endothelial cell proliferation",3,0,0.92,2195,"1.00000","0.24014","0.2401" +"GO:0006914","autophagy",30,8,9.2,1289,"0.74560","0.24063","0.2406" +"GO:0061919","process utilizing autophagic mechanism",30,8,9.2,1290,"0.74560","0.24063","0.2406" +"GO:0007349","cellularization",5,1,1.53,1512,"0.83993","0.24082","0.2408" +"GO:0021762","substantia nigra development",5,2,1.53,806,"0.48529","0.24082","0.2408" +"GO:0048857","neural nucleus development",5,2,1.53,807,"0.48529","0.24082","0.2408" +"GO:0001101","response to acid chemical",16,5,4.9,912,"0.57321","0.24099","0.2410" +"GO:0051924","regulation of calcium ion transport",7,3,2.15,706,"0.36773","0.24131","0.2413" +"GO:0006515","protein quality control for misfolded or...",4,1,1.23,1338,"0.76900","0.24237","0.2424" +"GO:0006487","protein N-linked glycosylation",19,8,5.82,332,"0.19864","0.24262","0.2426" +"GO:0022409","positive regulation of cell-cell adhesio...",3,2,0.92,439,"0.22419","0.24387","0.2439" +"GO:0072348","sulfur compound transport",6,3,1.84,516,"0.26771","0.24414","0.2441" +"GO:0006278","RNA-dependent DNA biosynthetic process",3,1,0.92,1047,"0.66671","0.24485","0.2449" +"GO:0009225","nucleotide-sugar metabolic process",5,3,1.53,310,"0.17162","0.24555","0.2455" +"GO:0070373","negative regulation of ERK1 and ERK2 cas...",3,0,0.92,2196,"1.00000","0.24664","0.2466" +"GO:0009119","ribonucleoside metabolic process",9,3,2.76,892,"0.55475","0.24673","0.2467" +"GO:0042133","neurotransmitter metabolic process",13,6,3.99,323,"0.17857","0.24844","0.2484" +"GO:0007603","phototransduction, visible light",3,2,0.92,440,"0.22419","0.24863","0.2486" +"GO:0009644","response to high light intensity",3,2,0.92,441,"0.22419","0.24863","0.2486" +"GO:0016056","rhodopsin mediated signaling pathway",3,2,0.92,442,"0.22419","0.24863","0.2486" +"GO:0016062","adaptation of rhodopsin mediated signali...",3,2,0.92,443,"0.22419","0.24863","0.2486" +"GO:0023058","adaptation of signaling pathway",3,2,0.92,444,"0.22419","0.24863","0.2486" +"GO:0036367","light adaption",3,2,0.92,445,"0.22419","0.24863","0.2486" +"GO:2001238","positive regulation of extrinsic apoptot...",3,2,0.92,446,"0.22419","0.24863","0.2486" +"GO:0002115","store-operated calcium entry",4,2,1.23,623,"0.35982","0.24941","0.2494" +"GO:2001256","regulation of store-operated calcium ent...",4,2,1.23,624,"0.35982","0.24941","0.2494" +"GO:0042698","ovulation cycle",5,3,1.53,311,"0.17162","0.24956","0.2496" +"GO:0006108","malate metabolic process",3,2,0.92,447,"0.22419","0.25204","0.2520" +"GO:0033866","nucleoside bisphosphate biosynthetic pro...",7,5,2.15,98,"0.03141","0.05083","0.2549" +"GO:0034030","ribonucleoside bisphosphate biosynthetic...",7,5,2.15,99,"0.03141","0.05083","0.2549" +"GO:0034033","purine nucleoside bisphosphate biosynthe...",7,5,2.15,100,"0.03141","0.05083","0.2549" +"GO:1901565","organonitrogen compound catabolic proces...",103,34,31.57,584,"0.33316","0.05633","0.2569" +"GO:1901661","quinone metabolic process",6,3,1.84,517,"0.26771","0.25720","0.2572" +"GO:0051788","response to misfolded protein",4,1,1.23,1339,"0.76900","0.25835","0.2583" +"GO:0071218","cellular response to misfolded protein",4,1,1.23,1340,"0.76900","0.25835","0.2583" +"GO:2001233","regulation of apoptotic signaling pathwa...",21,8,6.44,573,"0.29925","0.26073","0.2607" +"GO:0009083","branched-chain amino acid catabolic proc...",3,2,0.92,448,"0.22419","0.26079","0.2608" +"GO:0009408","response to heat",23,8,7.05,740,"0.40843","0.26177","0.2618" +"GO:0008361","regulation of cell size",7,1,2.15,1758,"0.92318","0.26254","0.2625" +"GO:0050770","regulation of axonogenesis",7,1,2.15,1759,"0.92318","0.26254","0.2625" +"GO:0060538","skeletal muscle organ development",13,4,3.99,979,"0.60001","0.26392","0.2639" +"GO:0001654","eye development",35,10,10.73,1197,"0.66788","0.26434","0.2643" +"GO:0048880","sensory system development",35,10,10.73,1198,"0.66788","0.26434","0.2643" +"GO:0150063","visual system development",35,10,10.73,1199,"0.66788","0.26434","0.2643" +"GO:0001817","regulation of cytokine production",13,6,3.99,324,"0.17857","0.26441","0.2644" +"GO:0051346","negative regulation of hydrolase activit...",13,3,3.99,1447,"0.81216","0.26572","0.2657" +"GO:0006885","regulation of pH",6,2,1.84,932,"0.59408","0.26595","0.2659" +"GO:0055067","monovalent inorganic cation homeostasis",6,2,1.84,933,"0.59408","0.26595","0.2659" +"GO:0071417","cellular response to organonitrogen comp...",10,3,3.07,1004,"0.63488","0.26661","0.2666" +"GO:0001944","vasculature development",19,5,5.82,1284,"0.73917","0.26903","0.2690" +"GO:0072358","cardiovascular system development",19,5,5.82,1285,"0.73917","0.26903","0.2690" +"GO:0051259","protein complex oligomerization",21,7,6.44,797,"0.47589","0.26956","0.2696" +"GO:0043484","regulation of RNA splicing",4,2,1.23,625,"0.35982","0.26966","0.2697" +"GO:0048024","regulation of mRNA splicing, via spliceo...",4,2,1.23,626,"0.35982","0.26966","0.2697" +"GO:0050684","regulation of mRNA processing",4,2,1.23,627,"0.35982","0.26966","0.2697" +"GO:0032989","cellular component morphogenesis",71,19,21.76,1441,"0.80189","0.26972","0.2697" +"GO:0051090","regulation of DNA-binding transcription ...",10,5,3.07,286,"0.16125","0.27017","0.2702" +"GO:0032355","response to estradiol",7,4,2.15,270,"0.13435","0.27019","0.2702" +"GO:0052547","regulation of peptidase activity",11,4,3.37,767,"0.44966","0.27236","0.2724" +"GO:0007160","cell-matrix adhesion",9,4,2.76,537,"0.28517","0.27245","0.2725" +"GO:0034250","positive regulation of cellular amide me...",3,1,0.92,1048,"0.66671","0.27247","0.2725" +"GO:0045727","positive regulation of translation",3,1,0.92,1049,"0.66671","0.27247","0.2725" +"GO:0045214","sarcomere organization",10,5,3.07,287,"0.16125","0.27365","0.2736" +"GO:0034976","response to endoplasmic reticulum stress",30,10,9.2,763,"0.44205","0.27368","0.2737" +"GO:1902041","regulation of extrinsic apoptotic signal...",3,2,0.92,449,"0.22419","0.27459","0.2746" +"GO:2001237","negative regulation of extrinsic apoptot...",3,2,0.92,450,"0.22419","0.27459","0.2746" +"GO:0006690","icosanoid metabolic process",4,2,1.23,628,"0.35982","0.27497","0.2750" +"GO:0006692","prostanoid metabolic process",4,2,1.23,629,"0.35982","0.27497","0.2750" +"GO:0006693","prostaglandin metabolic process",4,2,1.23,630,"0.35982","0.27497","0.2750" +"GO:0048593","camera-type eye morphogenesis",10,5,3.07,288,"0.16125","0.27516","0.2752" +"GO:0007249","I-kappaB kinase/NF-kappaB signaling",4,2,1.23,631,"0.35982","0.27645","0.2764" +"GO:0043122","regulation of I-kappaB kinase/NF-kappaB ...",4,2,1.23,632,"0.35982","0.27645","0.2764" +"GO:0051592","response to calcium ion",9,5,2.76,234,"0.10660","0.27712","0.2771" +"GO:0021675","nerve development",3,0,0.92,2197,"1.00000","0.27886","0.2789" +"GO:0010821","regulation of mitochondrion organization",11,2,3.37,1683,"0.89599","0.28062","0.2806" +"GO:0019637","organophosphate metabolic process",158,60,48.43,77,"0.02554","0.02778","0.2809" +"GO:0019362","pyridine nucleotide metabolic process",19,11,5.82,56,"0.01223","0.02310","0.2809" +"GO:0046496","nicotinamide nucleotide metabolic proces...",19,11,5.82,57,"0.01223","0.02310","0.2809" +"GO:0035150","regulation of tube size",5,3,1.53,312,"0.17162","0.28163","0.2816" +"GO:0010831","positive regulation of myotube different...",5,2,1.53,808,"0.48529","0.28230","0.2823" +"GO:0035995","detection of muscle stretch",5,2,1.53,809,"0.48529","0.28230","0.2823" +"GO:0045662","negative regulation of myoblast differen...",5,2,1.53,810,"0.48529","0.28230","0.2823" +"GO:0055003","cardiac myofibril assembly",5,2,1.53,811,"0.48529","0.28230","0.2823" +"GO:1903918","regulation of actin filament severing",5,2,1.53,812,"0.48529","0.28230","0.2823" +"GO:1903919","negative regulation of actin filament se...",5,2,1.53,813,"0.48529","0.28230","0.2823" +"GO:1903920","positive regulation of actin filament se...",5,2,1.53,814,"0.48529","0.28230","0.2823" +"GO:0016052","carbohydrate catabolic process",14,6,4.29,497,"0.23571","0.28414","0.2841" +"GO:0009266","response to temperature stimulus",25,9,7.66,586,"0.34904","0.28463","0.2846" +"GO:0007162","negative regulation of cell adhesion",4,2,1.23,633,"0.35982","0.28616","0.2862" +"GO:0051276","chromosome organization",39,11,11.96,1244,"0.68866","0.28646","0.2865" +"GO:0007020","microtubule nucleation",3,2,0.92,451,"0.22419","0.28752","0.2875" +"GO:0007088","regulation of mitotic nuclear division",3,2,0.92,452,"0.22419","0.28752","0.2875" +"GO:0051783","regulation of nuclear division",3,2,0.92,453,"0.22419","0.28752","0.2875" +"GO:0003407","neural retina development",8,4,2.45,341,"0.20581","0.28796","0.2880" +"GO:0042752","regulation of circadian rhythm",4,1,1.23,1341,"0.76900","0.28824","0.2882" +"GO:0031110","regulation of microtubule polymerization...",5,2,1.53,815,"0.48529","0.28921","0.2892" +"GO:0002440","production of molecular mediator of immu...",4,2,1.23,634,"0.35982","0.28994","0.2899" +"GO:0042035","regulation of cytokine biosynthetic proc...",4,2,1.23,635,"0.35982","0.28994","0.2899" +"GO:0042089","cytokine biosynthetic process",4,2,1.23,636,"0.35982","0.28994","0.2899" +"GO:0042107","cytokine metabolic process",4,2,1.23,637,"0.35982","0.28994","0.2899" +"GO:2000278","regulation of DNA biosynthetic process",4,2,1.23,638,"0.35982","0.28994","0.2899" +"GO:2001252","positive regulation of chromosome organi...",4,2,1.23,639,"0.35982","0.28994","0.2899" +"GO:0051249","regulation of lymphocyte activation",6,2,1.84,934,"0.59408","0.29033","0.2903" +"GO:0044283","small molecule biosynthetic process",75,31,22.99,95,"0.03020","0.02607","0.2909" +"GO:0006006","glucose metabolic process",10,3,3.07,1005,"0.63488","0.29131","0.2913" +"GO:0010389","regulation of G2/M transition of mitotic...",4,2,1.23,640,"0.35982","0.29204","0.2920" +"GO:1902749","regulation of cell cycle G2/M phase tran...",4,2,1.23,641,"0.35982","0.29204","0.2920" +"GO:0000904","cell morphogenesis involved in different...",37,8,11.34,1735,"0.92031","0.29221","0.2922" +"GO:0006812","cation transport",134,56,41.08,27,"0.00325","0.01826","0.2926" +"GO:0006821","chloride transport",5,1,1.53,1513,"0.83993","0.29331","0.2933" +"GO:0019725","cellular homeostasis",50,24,15.33,39,"0.00697","0.02374","0.2934" +"GO:0014074","response to purine-containing compound",5,2,1.53,816,"0.48529","0.29382","0.2938" +"GO:0048010","vascular endothelial growth factor recep...",3,1,0.92,1050,"0.66671","0.29390","0.2939" +"GO:0051489","regulation of filopodium assembly",3,1,0.92,1051,"0.66671","0.29390","0.2939" +"GO:0032527","protein exit from endoplasmic reticulum",8,3,2.45,785,"0.46489","0.29552","0.2955" +"GO:0006820","anion transport",49,18,15.02,349,"0.21660","0.29562","0.2956" +"GO:0010564","regulation of cell cycle process",17,8,5.21,242,"0.11545","0.29573","0.2957" +"GO:1901068","guanosine-containing compound metabolic ...",4,1,1.23,1342,"0.76900","0.29665","0.2966" +"GO:0019079","viral genome replication",5,2,1.53,817,"0.48529","0.29692","0.2969" +"GO:0034605","cellular response to heat",5,2,1.53,818,"0.48529","0.29692","0.2969" +"GO:0045069","regulation of viral genome replication",5,2,1.53,819,"0.48529","0.29692","0.2969" +"GO:0046777","protein autophosphorylation",5,2,1.53,820,"0.48529","0.29692","0.2969" +"GO:0001894","tissue homeostasis",11,4,3.37,768,"0.44966","0.29793","0.2979" +"GO:0042592","homeostatic process",84,34,25.75,102,"0.03305","0.08753","0.2983" +"GO:0043094","cellular metabolic compound salvage",5,3,1.53,313,"0.17162","0.30055","0.3006" +"GO:0006729","tetrahydrobiopterin biosynthetic process",3,1,0.92,1052,"0.66671","0.30058","0.3006" +"GO:0034311","diol metabolic process",3,1,0.92,1053,"0.66671","0.30058","0.3006" +"GO:0034312","diol biosynthetic process",3,1,0.92,1054,"0.66671","0.30058","0.3006" +"GO:0046146","tetrahydrobiopterin metabolic process",3,1,0.92,1055,"0.66671","0.30058","0.3006" +"GO:0046165","alcohol biosynthetic process",13,4,3.99,980,"0.60001","0.30092","0.3009" +"GO:0019751","polyol metabolic process",9,2,2.76,1470,"0.81589","0.30301","0.3030" +"GO:0019674","NAD metabolic process",4,2,1.23,642,"0.35982","0.30324","0.3032" +"GO:0043648","dicarboxylic acid metabolic process",11,5,3.37,485,"0.22448","0.30427","0.3043" +"GO:0045454","cell redox homeostasis",21,9,6.44,292,"0.16285","0.30430","0.3043" +"GO:0042060","wound healing",23,8,7.05,741,"0.40843","0.30664","0.3066" +"GO:0007622","rhythmic behavior",3,1,0.92,1056,"0.66671","0.30735","0.3074" +"GO:0048512","circadian behavior",3,1,0.92,1057,"0.66671","0.30735","0.3074" +"GO:0051239","regulation of multicellular organismal p...",115,33,35.25,1272,"0.71292","0.30795","0.3080" +"GO:0032870","cellular response to hormone stimulus",30,8,9.2,1291,"0.74560","0.30880","0.3088" +"GO:0005976","polysaccharide metabolic process",9,4,2.76,538,"0.28517","0.30917","0.3092" +"GO:0009581","detection of external stimulus",14,5,4.29,755,"0.43721","0.31017","0.3102" +"GO:0009582","detection of abiotic stimulus",14,5,4.29,756,"0.43721","0.31017","0.3102" +"GO:0007275","multicellular organism development",263,70,80.62,1829,"0.94383","0.31185","0.3118" +"GO:0051289","protein homotetramerization",4,2,1.23,643,"0.35982","0.31191","0.3119" +"GO:0009062","fatty acid catabolic process",9,4,2.76,539,"0.28517","0.31353","0.3135" +"GO:0043524","negative regulation of neuron apoptotic ...",6,3,1.84,518,"0.26771","0.31534","0.3153" +"GO:0071229","cellular response to acid chemical",6,1,1.84,1640,"0.88910","0.31534","0.3153" +"GO:0031098","stress-activated protein kinase signalin...",8,3,2.45,786,"0.46489","0.31550","0.3155" +"GO:0051403","stress-activated MAPK cascade",8,3,2.45,787,"0.46489","0.31550","0.3155" +"GO:0015936","coenzyme A metabolic process",3,1,0.92,1058,"0.66671","0.31559","0.3156" +"GO:0007600","sensory perception",25,9,7.66,587,"0.34904","0.31573","0.3157" +"GO:0046839","phospholipid dephosphorylation",5,2,1.53,821,"0.48529","0.31607","0.3161" +"GO:0009615","response to virus",4,2,1.23,644,"0.35982","0.31649","0.3165" +"GO:0000288","nuclear-transcribed mRNA catabolic proce...",3,1,0.92,1059,"0.66671","0.31698","0.3170" +"GO:0021953","central nervous system neuron differenti...",3,1,0.92,1060,"0.66671","0.31698","0.3170" +"GO:0007618","mating",5,2,1.53,822,"0.48529","0.31751","0.3175" +"GO:2000027","regulation of animal organ morphogenesis",9,2,2.76,1471,"0.81589","0.31995","0.3199" +"GO:0046649","lymphocyte activation",7,2,2.15,1201,"0.68462","0.31997","0.3200" +"GO:0007291","sperm individualization",4,1,1.23,1343,"0.76900","0.32030","0.3203" +"GO:0016319","mushroom body development",4,1,1.23,1344,"0.76900","0.32030","0.3203" +"GO:0035902","response to immobilization stress",4,1,1.23,1345,"0.76900","0.32030","0.3203" +"GO:0043044","ATP-dependent chromatin remodeling",4,1,1.23,1346,"0.76900","0.32030","0.3203" +"GO:0071257","cellular response to electrical stimulus",4,1,1.23,1347,"0.76900","0.32030","0.3203" +"GO:0098974","postsynaptic actin cytoskeleton organiza...",4,1,1.23,1348,"0.76900","0.32030","0.3203" +"GO:0099188","postsynaptic cytoskeleton organization",4,1,1.23,1349,"0.76900","0.32030","0.3203" +"GO:0051186","cofactor metabolic process",79,41,24.22,10,"5.1e-05","8.5e-05","0.3212" +"GO:0048771","tissue remodeling",13,4,3.99,981,"0.60001","0.32185","0.3218" +"GO:1902065","response to L-glutamate",3,2,0.92,454,"0.22419","0.32209","0.3221" +"GO:1903321","negative regulation of protein modificat...",3,2,0.92,455,"0.22419","0.32209","0.3221" +"GO:0009081","branched-chain amino acid metabolic proc...",6,3,1.84,519,"0.26771","0.32339","0.3234" +"GO:0016571","histone methylation",5,1,1.53,1514,"0.83993","0.32418","0.3242" +"GO:0048738","cardiac muscle tissue development",11,3,3.37,1255,"0.70434","0.32425","0.3242" +"GO:0033865","nucleoside bisphosphate metabolic proces...",13,8,3.99,73,"0.02054","0.04548","0.3244" +"GO:0033875","ribonucleoside bisphosphate metabolic pr...",13,8,3.99,74,"0.02054","0.04548","0.3244" +"GO:0034032","purine nucleoside bisphosphate metabolic...",13,8,3.99,75,"0.02054","0.04548","0.3244" +"GO:0003012","muscle system process",19,7,5.82,593,"0.35761","0.32448","0.3245" +"GO:0051260","protein homooligomerization",14,5,4.29,757,"0.43721","0.32521","0.3252" +"GO:0015800","acidic amino acid transport",4,1,1.23,1350,"0.76900","0.32536","0.3254" +"GO:0072657","protein localization to membrane",29,9,8.89,888,"0.55250","0.32660","0.3266" +"GO:1990823","response to leukemia inhibitory factor",3,1,0.92,1061,"0.66671","0.32678","0.3268" +"GO:1990830","cellular response to leukemia inhibitory...",3,1,0.92,1062,"0.66671","0.32678","0.3268" +"GO:0009798","axis specification",8,3,2.45,788,"0.46489","0.32678","0.3268" +"GO:0006446","regulation of translational initiation",5,3,1.53,314,"0.17162","0.32727","0.3273" +"GO:0043154","negative regulation of cysteine-type end...",5,3,1.53,315,"0.17162","0.32727","0.3273" +"GO:0016032","viral process",12,6,3.68,251,"0.12792","0.32870","0.3287" +"GO:0045165","cell fate commitment",14,2,4.29,1883,"0.95768","0.32903","0.3290" +"GO:1901605","alpha-amino acid metabolic process",33,19,10.12,21,"0.00112","0.00010","0.3292" +"GO:1901575","organic substance catabolic process",161,53,49.35,549,"0.28650","0.10773","0.3297" +"GO:0006937","regulation of muscle contraction",9,4,2.76,540,"0.28517","0.33080","0.3308" +"GO:0090257","regulation of muscle system process",9,4,2.76,541,"0.28517","0.33080","0.3308" +"GO:0006636","unsaturated fatty acid biosynthetic proc...",3,2,0.92,456,"0.22419","0.33197","0.3320" +"GO:1901570","fatty acid derivative biosynthetic proce...",3,2,0.92,457,"0.22419","0.33197","0.3320" +"GO:0009066","aspartate family amino acid metabolic pr...",5,3,1.53,316,"0.17162","0.33296","0.3330" +"GO:1901700","response to oxygen-containing compound",58,21,17.78,345,"0.21447","0.33298","0.3330" +"GO:0032874","positive regulation of stress-activated ...",3,0,0.92,2198,"1.00000","0.33316","0.3332" +"GO:0070304","positive regulation of stress-activated ...",3,0,0.92,2199,"1.00000","0.33316","0.3332" +"GO:0098657","import into cell",41,7,12.57,2015,"0.98515","0.33357","0.3336" +"GO:0002443","leukocyte mediated immunity",10,3,3.07,1006,"0.63488","0.33432","0.3343" +"GO:0032231","regulation of actin filament bundle asse...",5,1,1.53,1515,"0.83993","0.33443","0.3344" +"GO:0006904","vesicle docking involved in exocytosis",6,1,1.84,1641,"0.88910","0.33509","0.3351" +"GO:0001568","blood vessel development",18,4,5.52,1578,"0.85060","0.33582","0.3358" +"GO:0007423","sensory organ development",43,13,13.18,922,"0.58195","0.33594","0.3359" +"GO:0009101","glycoprotein biosynthetic process",57,19,17.47,732,"0.37651","0.33685","0.3368" +"GO:0090305","nucleic acid phosphodiester bond hydroly...",4,2,1.23,645,"0.35982","0.33685","0.3369" +"GO:0006826","iron ion transport",4,2,1.23,646,"0.35982","0.33872","0.3387" +"GO:0010039","response to iron ion",3,2,0.92,458,"0.22419","0.33913","0.3391" +"GO:0051091","positive regulation of DNA-binding trans...",9,4,2.76,542,"0.28517","0.34059","0.3406" +"GO:0044255","cellular lipid metabolic process",128,43,39.24,511,"0.25804","0.34164","0.3416" +"GO:0098609","cell-cell adhesion",35,14,10.73,283,"0.15308","0.34171","0.3417" +"GO:0072522","purine-containing compound biosynthetic ...",47,22,14.41,62,"0.01369","0.02351","0.3420" +"GO:0008610","lipid biosynthetic process",78,24,23.91,882,"0.53476","0.34297","0.3430" +"GO:0090316","positive regulation of intracellular pro...",10,2,3.07,1600,"0.86114","0.34340","0.3434" +"GO:1903533","regulation of protein targeting",10,2,3.07,1601,"0.86114","0.34340","0.3434" +"GO:0006302","double-strand break repair",3,2,0.92,459,"0.22419","0.34395","0.3439" +"GO:0061515","myeloid cell development",5,0,1.53,2200,"1.00000","0.34448","0.3445" +"GO:1903828","negative regulation of cellular protein ...",9,4,2.76,543,"0.28517","0.34604","0.3460" +"GO:0030509","BMP signaling pathway",6,0,1.84,2201,"1.00000","0.34615","0.3462" +"GO:0071772","response to BMP",6,0,1.84,2202,"1.00000","0.34615","0.3462" +"GO:0071773","cellular response to BMP stimulus",6,0,1.84,2203,"1.00000","0.34615","0.3462" +"GO:0040039","inductive cell migration",3,1,0.92,1063,"0.66671","0.34759","0.3476" +"GO:0090130","tissue migration",13,3,3.99,1448,"0.81216","0.34883","0.3488" +"GO:0042593","glucose homeostasis",6,3,1.84,520,"0.26771","0.34960","0.3496" +"GO:0030198","extracellular matrix organization",9,3,2.76,893,"0.55475","0.35012","0.3501" +"GO:0006096","glycolytic process",11,5,3.37,486,"0.22448","0.35028","0.3503" +"GO:0006757","ATP generation from ADP",11,5,3.37,487,"0.22448","0.35028","0.3503" +"GO:0009135","purine nucleoside diphosphate metabolic ...",11,5,3.37,488,"0.22448","0.35028","0.3503" +"GO:0009179","purine ribonucleoside diphosphate metabo...",11,5,3.37,489,"0.22448","0.35028","0.3503" +"GO:0009185","ribonucleoside diphosphate metabolic pro...",11,5,3.37,490,"0.22448","0.35028","0.3503" +"GO:0042866","pyruvate biosynthetic process",11,5,3.37,491,"0.22448","0.35028","0.3503" +"GO:0046031","ADP metabolic process",11,5,3.37,492,"0.22448","0.35028","0.3503" +"GO:0006952","defense response",41,15,12.57,509,"0.25093","0.35033","0.3503" +"GO:0030239","myofibril assembly",13,6,3.99,325,"0.17857","0.35082","0.3508" +"GO:0006888","ER to Golgi vesicle-mediated transport",15,5,4.6,861,"0.50710","0.35133","0.3513" +"GO:0035966","response to topologically incorrect prot...",20,8,6.13,506,"0.24729","0.35161","0.3516" +"GO:0044264","cellular polysaccharide metabolic proces...",8,3,2.45,789,"0.46489","0.35239","0.3524" +"GO:1900037","regulation of cellular response to hypox...",4,1,1.23,1351,"0.76900","0.35279","0.3528" +"GO:0042445","hormone metabolic process",13,5,3.99,692,"0.36524","0.35413","0.3541" +"GO:0042451","purine nucleoside biosynthetic process",3,0,0.92,2204,"1.00000","0.35788","0.3579" +"GO:0046129","purine ribonucleoside biosynthetic proce...",3,0,0.92,2205,"1.00000","0.35788","0.3579" +"GO:0030149","sphingolipid catabolic process",4,2,1.23,647,"0.35982","0.35812","0.3581" +"GO:0046466","membrane lipid catabolic process",4,2,1.23,648,"0.35982","0.35812","0.3581" +"GO:0006635","fatty acid beta-oxidation",5,2,1.53,823,"0.48529","0.35831","0.3583" +"GO:0009110","vitamin biosynthetic process",3,2,0.92,460,"0.22419","0.35887","0.3589" +"GO:0042364","water-soluble vitamin biosynthetic proce...",3,2,0.92,461,"0.22419","0.35887","0.3589" +"GO:0035051","cardiocyte differentiation",10,3,3.07,1007,"0.63488","0.35936","0.3594" +"GO:0090287","regulation of cellular response to growt...",10,2,3.07,1602,"0.86114","0.35936","0.3594" +"GO:0016042","lipid catabolic process",28,9,8.58,860,"0.50307","0.35978","0.3598" +"GO:0002684","positive regulation of immune system pro...",22,8,6.74,592,"0.35336","0.36000","0.3600" +"GO:0035148","tube formation",8,2,2.45,1298,"0.75786","0.36100","0.3610" +"GO:0009150","purine ribonucleotide metabolic process",66,29,20.23,64,"0.01436","0.04224","0.3614" +"GO:0006903","vesicle targeting",5,1,1.53,1516,"0.83993","0.36177","0.3618" +"GO:0009100","glycoprotein metabolic process",63,23,19.31,328,"0.18764","0.36235","0.3623" +"GO:0031056","regulation of histone modification",5,3,1.53,317,"0.17162","0.36292","0.3629" +"GO:0032147","activation of protein kinase activity",4,0,1.23,2206,"1.00000","0.36306","0.3631" +"GO:0052548","regulation of endopeptidase activity",10,3,3.07,1008,"0.63488","0.36372","0.3637" +"GO:2000116","regulation of cysteine-type endopeptidas...",10,3,3.07,1009,"0.63488","0.36372","0.3637" +"GO:0090150","establishment of protein localization to...",16,4,4.9,1425,"0.77238","0.36510","0.3651" +"GO:0071103","DNA conformation change",4,2,1.23,649,"0.35982","0.36630","0.3663" +"GO:0098813","nuclear chromosome segregation",4,0,1.23,2207,"1.00000","0.36630","0.3663" +"GO:0016441","posttranscriptional gene silencing",6,3,1.84,521,"0.26771","0.36654","0.3665" +"GO:0035194","posttranscriptional gene silencing by RN...",6,3,1.84,522,"0.26771","0.36654","0.3665" +"GO:0065009","regulation of molecular function",101,24,30.96,1870,"0.95270","0.36733","0.3673" +"GO:0006730","one-carbon metabolic process",6,2,1.84,935,"0.59408","0.36743","0.3674" +"GO:0045596","negative regulation of cell differentiat...",26,3,7.97,2073,"0.99460","0.36753","0.3675" +"GO:0046785","microtubule polymerization",7,3,2.15,707,"0.36773","0.36990","0.3699" +"GO:0001822","kidney development",14,4,4.29,1030,"0.66513","0.37019","0.3702" +"GO:0006909","phagocytosis",18,4,5.52,1579,"0.85060","0.37096","0.3710" +"GO:0007411","axon guidance",16,5,4.9,913,"0.57321","0.37185","0.3718" +"GO:0097485","neuron projection guidance",16,5,4.9,914,"0.57321","0.37185","0.3718" +"GO:0090101","negative regulation of transmembrane rec...",4,1,1.23,1352,"0.76900","0.37238","0.3724" +"GO:0090288","negative regulation of cellular response...",4,1,1.23,1353,"0.76900","0.37238","0.3724" +"GO:0009566","fertilization",9,4,2.76,544,"0.28517","0.37409","0.3741" +"GO:0040029","regulation of gene expression, epigeneti...",9,4,2.76,545,"0.28517","0.37409","0.3741" +"GO:0051262","protein tetramerization",5,2,1.53,824,"0.48529","0.37418","0.3742" +"GO:0010842","retina layer formation",5,2,1.53,825,"0.48529","0.37536","0.3754" +"GO:0048675","axon extension",6,0,1.84,2208,"1.00000","0.37687","0.3769" +"GO:0032501","multicellular organismal process",318,88,97.48,1702,"0.90453","0.37710","0.3771" +"GO:0019395","fatty acid oxidation",10,3,3.07,1010,"0.63488","0.37820","0.3782" +"GO:0034440","lipid oxidation",10,3,3.07,1011,"0.63488","0.37820","0.3782" +"GO:0072329","monocarboxylic acid catabolic process",10,4,3.07,725,"0.36778","0.37820","0.3782" +"GO:0030433","ubiquitin-dependent ERAD pathway",15,4,4.6,1274,"0.72259","0.37837","0.3784" +"GO:0006044","N-acetylglucosamine metabolic process",3,2,0.92,462,"0.22419","0.37841","0.3784" +"GO:0046148","pigment biosynthetic process",6,3,1.84,523,"0.26771","0.37849","0.3785" +"GO:0001700","embryonic development via the syncytial ...",7,2,2.15,1202,"0.68462","0.38034","0.3803" +"GO:0046686","response to cadmium ion",7,3,2.15,708,"0.36773","0.38034","0.3803" +"GO:1903900","regulation of viral life cycle",7,3,2.15,709,"0.36773","0.38034","0.3803" +"GO:0006479","protein methylation",9,1,2.76,1901,"0.96316","0.38083","0.3808" +"GO:0008213","protein alkylation",9,1,2.76,1902,"0.96316","0.38083","0.3808" +"GO:0042398","cellular modified amino acid biosyntheti...",5,2,1.53,826,"0.48529","0.38126","0.3813" +"GO:0090407","organophosphate biosynthetic process",94,35,28.81,217,"0.09859","0.11669","0.3823" +"GO:0006836","neurotransmitter transport",33,7,10.12,1732,"0.91965","0.38258","0.3826" +"GO:1901617","organic hydroxy compound biosynthetic pr...",24,8,7.36,779,"0.46336","0.38520","0.3852" +"GO:0061564","axon development",30,7,9.2,1597,"0.85987","0.38558","0.3856" +"GO:0051093","negative regulation of developmental pro...",32,4,9.81,2077,"0.99578","0.38589","0.3859" +"GO:0034765","regulation of ion transmembrane transpor...",15,5,4.6,862,"0.50710","0.38742","0.3874" +"GO:0006897","endocytosis",37,6,11.34,2019,"0.98652","0.38901","0.3890" +"GO:0016485","protein processing",12,5,3.68,556,"0.29345","0.39008","0.3901" +"GO:0014013","regulation of gliogenesis",3,1,0.92,1064,"0.66671","0.39043","0.3904" +"GO:0030856","regulation of epithelial cell differenti...",3,1,0.92,1065,"0.66671","0.39043","0.3904" +"GO:0003158","endothelium development",3,0,0.92,2209,"1.00000","0.39043","0.3904" +"GO:0045446","endothelial cell differentiation",3,0,0.92,2210,"1.00000","0.39043","0.3904" +"GO:0032101","regulation of response to external stimu...",15,6,4.6,567,"0.29742","0.39088","0.3909" +"GO:1903573","negative regulation of response to endop...",7,3,2.15,710,"0.36773","0.39209","0.3921" +"GO:0007169","transmembrane receptor protein tyrosine ...",17,4,5.21,1457,"0.81486","0.39256","0.3926" +"GO:0009792","embryo development ending in birth or eg...",35,6,10.73,1982,"0.97843","0.39275","0.3927" +"GO:0009056","catabolic process",187,59,57.32,745,"0.41956","0.07340","0.3957" +"GO:0046856","phosphatidylinositol dephosphorylation",4,1,1.23,1354,"0.76900","0.39810","0.3981" +"GO:0055007","cardiac muscle cell differentiation",9,3,2.76,894,"0.55475","0.39824","0.3982" +"GO:0016999","antibiotic metabolic process",17,6,5.21,747,"0.42650","0.40043","0.4004" +"GO:0006486","protein glycosylation",55,19,16.86,576,"0.30896","0.40053","0.4005" +"GO:0043413","macromolecule glycosylation",55,19,16.86,577,"0.30896","0.40053","0.4005" +"GO:0070085","glycosylation",55,19,16.86,578,"0.30896","0.40053","0.4005" +"GO:0046470","phosphatidylcholine metabolic process",3,1,0.92,1066,"0.66671","0.40054","0.4005" +"GO:0005977","glycogen metabolic process",7,3,2.15,711,"0.36773","0.40162","0.4016" +"GO:0006073","cellular glucan metabolic process",7,3,2.15,712,"0.36773","0.40162","0.4016" +"GO:0006112","energy reserve metabolic process",7,3,2.15,713,"0.36773","0.40162","0.4016" +"GO:0044042","glucan metabolic process",7,3,2.15,714,"0.36773","0.40162","0.4016" +"GO:0006164","purine nucleotide biosynthetic process",45,21,13.79,69,"0.01649","0.02911","0.4021" +"GO:0006152","purine nucleoside catabolic process",3,1,0.92,1067,"0.66671","0.40211","0.4021" +"GO:0006195","purine nucleotide catabolic process",3,1,0.92,1068,"0.66671","0.40211","0.4021" +"GO:0009164","nucleoside catabolic process",3,1,0.92,1069,"0.66671","0.40211","0.4021" +"GO:0034656","nucleobase-containing small molecule cat...",3,1,0.92,1070,"0.66671","0.40211","0.4021" +"GO:0042454","ribonucleoside catabolic process",3,1,0.92,1071,"0.66671","0.40211","0.4021" +"GO:1901658","glycosyl compound catabolic process",3,1,0.92,1072,"0.66671","0.40211","0.4021" +"GO:0048513","animal organ development",157,43,48.13,1572,"0.84321","0.40235","0.4024" +"GO:0043066","negative regulation of apoptotic process",34,13,10.42,346,"0.21555","0.40452","0.4045" +"GO:0043069","negative regulation of programmed cell d...",34,13,10.42,347,"0.21555","0.40452","0.4045" +"GO:0009653","anatomical structure morphogenesis",142,34,43.53,1941,"0.97218","0.40507","0.4051" +"GO:0009259","ribonucleotide metabolic process",67,29,20.54,70,"0.01813","0.05220","0.4053" +"GO:0009737","response to abscisic acid",4,1,1.23,1355,"0.76900","0.40648","0.4065" +"GO:0043900","regulation of multi-organism process",19,6,5.82,885,"0.55144","0.40780","0.4078" +"GO:0071569","protein ufmylation",3,2,0.92,463,"0.22419","0.40866","0.4087" +"GO:1990564","protein polyufmylation",3,2,0.92,464,"0.22419","0.40866","0.4087" +"GO:1990592","protein K69-linked ufmylation",3,2,0.92,465,"0.22419","0.40866","0.4087" +"GO:0010893","positive regulation of steroid biosynthe...",3,2,0.92,466,"0.22419","0.40945","0.4095" +"GO:0045540","regulation of cholesterol biosynthetic p...",3,2,0.92,467,"0.22419","0.40945","0.4095" +"GO:0045542","positive regulation of cholesterol biosy...",3,2,0.92,468,"0.22419","0.40945","0.4095" +"GO:0045940","positive regulation of steroid metabolic...",3,2,0.92,469,"0.22419","0.40945","0.4095" +"GO:0090181","regulation of cholesterol metabolic proc...",3,2,0.92,470,"0.22419","0.40945","0.4095" +"GO:0090205","positive regulation of cholesterol metab...",3,2,0.92,471,"0.22419","0.40945","0.4095" +"GO:0106120","positive regulation of sterol biosynthet...",3,2,0.92,472,"0.22419","0.40945","0.4095" +"GO:1902932","positive regulation of alcohol biosynthe...",3,2,0.92,473,"0.22419","0.40945","0.4095" +"GO:0005978","glycogen biosynthetic process",6,3,1.84,524,"0.26771","0.40998","0.4100" +"GO:0009250","glucan biosynthetic process",6,3,1.84,525,"0.26771","0.40998","0.4100" +"GO:0033692","cellular polysaccharide biosynthetic pro...",6,3,1.84,526,"0.26771","0.40998","0.4100" +"GO:0007159","leukocyte cell-cell adhesion",3,2,0.92,474,"0.22419","0.41024","0.4102" +"GO:0097530","granulocyte migration",3,2,0.92,475,"0.22419","0.41024","0.4102" +"GO:1903037","regulation of leukocyte cell-cell adhesi...",3,2,0.92,476,"0.22419","0.41024","0.4102" +"GO:1990266","neutrophil migration",3,2,0.92,477,"0.22419","0.41024","0.4102" +"GO:0061041","regulation of wound healing",4,2,1.23,650,"0.35982","0.41081","0.4108" +"GO:0031058","positive regulation of histone modificat...",3,2,0.92,478,"0.22419","0.41103","0.4110" +"GO:1905269","positive regulation of chromatin organiz...",3,2,0.92,479,"0.22419","0.41103","0.4110" +"GO:0048856","anatomical structure development",282,75,86.44,1869,"0.95102","0.41111","0.4111" +"GO:0045814","negative regulation of gene expression, ...",5,2,1.53,827,"0.48529","0.41244","0.4124" +"GO:1905330","regulation of morphogenesis of an epithe...",7,3,2.15,715,"0.36773","0.41246","0.4125" +"GO:0002118","aggressive behavior",6,1,1.84,1642,"0.88910","0.41296","0.4130" +"GO:0002121","inter-male aggressive behavior",6,1,1.84,1643,"0.88910","0.41296","0.4130" +"GO:2001023","regulation of response to drug",9,3,2.76,895,"0.55475","0.41432","0.4143" +"GO:0010721","negative regulation of cell development",8,0,2.45,2211,"1.00000","0.41497","0.4150" +"GO:0042533","tumor necrosis factor biosynthetic proce...",3,2,0.92,480,"0.22419","0.41500","0.4150" +"GO:0042534","regulation of tumor necrosis factor bios...",3,2,0.92,481,"0.22419","0.41500","0.4150" +"GO:1901698","response to nitrogen compound",46,13,14.1,1250,"0.69188","0.41511","0.4151" +"GO:0038093","Fc receptor signaling pathway",4,1,1.23,1356,"0.76900","0.41631","0.4163" +"GO:0072006","nephron development",4,0,1.23,2212,"1.00000","0.41631","0.4163" +"GO:0072001","renal system development",16,5,4.9,915,"0.57321","0.41816","0.4182" +"GO:0010822","positive regulation of mitochondrion org...",9,2,2.76,1472,"0.81589","0.41846","0.4185" +"GO:1903214","regulation of protein targeting to mitoc...",9,2,2.76,1473,"0.81589","0.41846","0.4185" +"GO:1903749","positive regulation of establishment of ...",9,2,2.76,1474,"0.81589","0.41846","0.4185" +"GO:1903955","positive regulation of protein targeting...",9,2,2.76,1475,"0.81589","0.41846","0.4185" +"GO:0015696","ammonium transport",10,2,3.07,1603,"0.86114","0.41855","0.4185" +"GO:0019058","viral life cycle",9,4,2.76,546,"0.28517","0.41861","0.4186" +"GO:0007568","aging",23,9,7.05,508,"0.25010","0.42002","0.4200" +"GO:1990778","protein localization to cell periphery",10,3,3.07,1012,"0.63488","0.42030","0.4203" +"GO:0015695","organic cation transport",6,2,1.84,936,"0.59408","0.42085","0.4209" +"GO:0009895","negative regulation of catabolic process",11,2,3.37,1684,"0.89599","0.42189","0.4219" +"GO:0031330","negative regulation of cellular cataboli...",11,2,3.37,1685,"0.89599","0.42189","0.4219" +"GO:0042440","pigment metabolic process",9,3,2.76,896,"0.55475","0.42200","0.4220" +"GO:0034655","nucleobase-containing compound catabolic...",36,12,11.04,746,"0.42418","0.42258","0.4226" +"GO:0006638","neutral lipid metabolic process",7,2,2.15,1203,"0.68462","0.42343","0.4234" +"GO:0006639","acylglycerol metabolic process",7,2,2.15,1204,"0.68462","0.42343","0.4234" +"GO:0048699","generation of neurons",86,26,26.36,921,"0.57590","0.42377","0.4238" +"GO:0009617","response to bacterium",17,6,5.21,748,"0.42650","0.42390","0.4239" +"GO:0050778","positive regulation of immune response",17,6,5.21,749,"0.42650","0.42390","0.4239" +"GO:1901701","cellular response to oxygen-containing c...",37,12,11.34,796,"0.46838","0.42430","0.4243" +"GO:0043903","regulation of symbiosis, encompassing mu...",12,5,3.68,557,"0.29345","0.42589","0.4259" +"GO:0051606","detection of stimulus",17,6,5.21,750,"0.42650","0.42695","0.4269" +"GO:0046662","regulation of oviposition",6,1,1.84,1644,"0.88910","0.42785","0.4279" +"GO:0006165","nucleoside diphosphate phosphorylation",12,5,3.68,558,"0.29345","0.42804","0.4280" +"GO:0009132","nucleoside diphosphate metabolic process",12,5,3.68,559,"0.29345","0.42804","0.4280" +"GO:0046939","nucleotide phosphorylation",12,5,3.68,560,"0.29345","0.42804","0.4280" +"GO:0007264","small GTPase mediated signal transductio...",45,9,13.79,1898,"0.96259","0.42806","0.4281" +"GO:0043542","endothelial cell migration",6,2,1.84,937,"0.59408","0.43013","0.4301" +"GO:0042181","ketone biosynthetic process",5,2,1.53,828,"0.48529","0.43187","0.4319" +"GO:1901663","quinone biosynthetic process",5,2,1.53,829,"0.48529","0.43187","0.4319" +"GO:0015740","C4-dicarboxylate transport",3,2,0.92,482,"0.22419","0.43263","0.4326" +"GO:0007399","nervous system development",125,32,38.32,1726,"0.91459","0.43282","0.4328" +"GO:0042303","molting cycle",4,2,1.23,651,"0.35982","0.43439","0.4344" +"GO:0006626","protein targeting to mitochondrion",21,4,6.44,1781,"0.92467","0.43471","0.4347" +"GO:0065003","protein-containing complex assembly",94,25,28.81,1508,"0.83755","0.43525","0.4352" +"GO:0034754","cellular hormone metabolic process",7,3,2.15,716,"0.36773","0.43575","0.4357" +"GO:0006066","alcohol metabolic process",25,9,7.66,588,"0.34904","0.43598","0.4360" +"GO:0008631","intrinsic apoptotic signaling pathway in...",5,2,1.53,830,"0.48529","0.43647","0.4365" +"GO:0042110","T cell activation",5,2,1.53,831,"0.48529","0.43731","0.4373" +"GO:0050863","regulation of T cell activation",5,2,1.53,832,"0.48529","0.43731","0.4373" +"GO:0035725","sodium ion transmembrane transport",3,2,0.92,483,"0.22419","0.43750","0.4375" +"GO:0048731","system development",224,61,68.66,1681,"0.89388","0.43789","0.4379" +"GO:0030100","regulation of endocytosis",15,2,4.6,1926,"0.96891","0.43808","0.4381" +"GO:0048869","cellular developmental process",181,49,55.48,1627,"0.87994","0.43991","0.4399" +"GO:0032990","cell part morphogenesis",40,8,12.26,1875,"0.95507","0.44155","0.4416" +"GO:1902905","positive regulation of supramolecular fi...",20,4,6.13,1703,"0.90475","0.44167","0.4417" +"GO:0048592","eye morphogenesis",19,7,5.82,594,"0.35761","0.44257","0.4426" +"GO:0090596","sensory organ morphogenesis",19,7,5.82,595,"0.35761","0.44257","0.4426" +"GO:0032958","inositol phosphate biosynthetic process",3,0,0.92,2213,"1.00000","0.44292","0.4429" +"GO:0016239","positive regulation of macroautophagy",4,0,1.23,2214,"1.00000","0.44331","0.4433" +"GO:0006733","oxidoreduction coenzyme metabolic proces...",23,12,7.05,76,"0.02485","0.04716","0.4434" +"GO:1902115","regulation of organelle assembly",12,4,3.68,873,"0.52777","0.44375","0.4437" +"GO:0007219","Notch signaling pathway",8,1,2.45,1831,"0.94680","0.44663","0.4466" +"GO:0048666","neuron development",70,20,21.46,1251,"0.69241","0.44786","0.4479" +"GO:0070371","ERK1 and ERK2 cascade",5,0,1.53,2215,"1.00000","0.44890","0.4489" +"GO:0010466","negative regulation of peptidase activit...",6,3,1.84,527,"0.26771","0.44971","0.4497" +"GO:0010951","negative regulation of endopeptidase act...",6,3,1.84,528,"0.26771","0.44971","0.4497" +"GO:2000117","negative regulation of cysteine-type end...",6,3,1.84,529,"0.26771","0.44971","0.4497" +"GO:0061387","regulation of extent of cell growth",5,0,1.53,2216,"1.00000","0.44975","0.4498" +"GO:1903902","positive regulation of viral life cycle",4,2,1.23,652,"0.35982","0.44993","0.4499" +"GO:0009605","response to external stimulus",98,33,30.04,553,"0.28804","0.45044","0.4504" +"GO:0050795","regulation of behavior",9,3,2.76,897,"0.55475","0.45044","0.4504" +"GO:0090132","epithelium migration",12,3,3.68,1317,"0.76320","0.45182","0.4518" +"GO:0007602","phototransduction",4,2,1.23,653,"0.35982","0.45230","0.4523" +"GO:0042572","retinol metabolic process",4,2,1.23,654,"0.35982","0.45230","0.4523" +"GO:0042574","retinal metabolic process",4,2,1.23,655,"0.35982","0.45230","0.4523" +"GO:0048878","chemical homeostasis",47,19,14.41,216,"0.09740","0.12230","0.4526" +"GO:0006040","amino sugar metabolic process",17,6,5.21,751,"0.42650","0.45266","0.4527" +"GO:1901071","glucosamine-containing compound metaboli...",17,6,5.21,752,"0.42650","0.45266","0.4527" +"GO:2001257","regulation of cation channel activity",11,4,3.37,769,"0.44966","0.45274","0.4527" +"GO:0071375","cellular response to peptide hormone sti...",6,1,1.84,1645,"0.88910","0.45300","0.4530" +"GO:1901653","cellular response to peptide",6,1,1.84,1646,"0.88910","0.45300","0.4530" +"GO:0044419","interspecies interaction between organis...",17,6,5.21,753,"0.42650","0.45312","0.4531" +"GO:0006490","oligosaccharide-lipid intermediate biosy...",7,3,2.15,717,"0.36773","0.45324","0.4532" +"GO:0007368","determination of left/right symmetry",9,2,2.76,1476,"0.81589","0.45329","0.4533" +"GO:0009799","specification of symmetry",9,2,2.76,1477,"0.81589","0.45329","0.4533" +"GO:0009855","determination of bilateral symmetry",9,2,2.76,1478,"0.81589","0.45329","0.4533" +"GO:0046903","secretion",61,13,18.7,1900,"0.96316","0.45366","0.4537" +"GO:0051899","membrane depolarization",4,1,1.23,1357,"0.76900","0.45563","0.4556" +"GO:0097191","extrinsic apoptotic signaling pathway",10,4,3.07,726,"0.36778","0.45806","0.4581" +"GO:0016241","regulation of macroautophagy",10,1,3.07,1952,"0.97450","0.45882","0.4588" +"GO:1990542","mitochondrial transmembrane transport",17,2,5.21,2010,"0.98339","0.46007","0.4601" +"GO:0045055","regulated exocytosis",14,2,4.29,1884,"0.95768","0.46301","0.4630" +"GO:0010259","multicellular organism aging",7,2,2.15,1205,"0.68462","0.46335","0.4633" +"GO:0051602","response to electrical stimulus",7,1,2.15,1760,"0.92318","0.46335","0.4633" +"GO:0050768","negative regulation of neurogenesis",7,0,2.15,2217,"1.00000","0.46335","0.4633" +"GO:0006643","membrane lipid metabolic process",24,8,7.36,780,"0.46336","0.46368","0.4637" +"GO:0006633","fatty acid biosynthetic process",13,4,3.99,982,"0.60001","0.46473","0.4647" +"GO:0001941","postsynaptic membrane organization",5,2,1.53,833,"0.48529","0.46511","0.4651" +"GO:0007215","glutamate receptor signaling pathway",5,2,1.53,834,"0.48529","0.46511","0.4651" +"GO:0071709","membrane assembly",5,2,1.53,835,"0.48529","0.46511","0.4651" +"GO:0099054","presynapse assembly",5,2,1.53,836,"0.48529","0.46511","0.4651" +"GO:0099172","presynapse organization",5,2,1.53,837,"0.48529","0.46511","0.4651" +"GO:0099601","regulation of neurotransmitter receptor ...",5,2,1.53,838,"0.48529","0.46511","0.4651" +"GO:1900449","regulation of glutamate receptor signali...",5,2,1.53,839,"0.48529","0.46511","0.4651" +"GO:0009314","response to radiation",25,9,7.66,589,"0.34904","0.46523","0.4652" +"GO:0006613","cotranslational protein targeting to mem...",4,2,1.23,656,"0.35982","0.46543","0.4654" +"GO:0006614","SRP-dependent cotranslational protein ta...",4,2,1.23,657,"0.35982","0.46543","0.4654" +"GO:0045047","protein targeting to ER",4,2,1.23,658,"0.35982","0.46543","0.4654" +"GO:0072599","establishment of protein localization to...",4,2,1.23,659,"0.35982","0.46543","0.4654" +"GO:0000281","mitotic cytokinesis",8,1,2.45,1832,"0.94680","0.46568","0.4657" +"GO:0006310","DNA recombination",6,0,1.84,2218,"1.00000","0.46706","0.4671" +"GO:0030901","midbrain development",6,2,1.84,938,"0.59408","0.46824","0.4682" +"GO:0090175","regulation of establishment of planar po...",6,2,1.84,939,"0.59408","0.46824","0.4682" +"GO:0050790","regulation of catalytic activity",72,13,22.07,2074,"0.99528","0.46946","0.4695" +"GO:0009642","response to light intensity",6,3,1.84,530,"0.26771","0.47000","0.4700" +"GO:0015813","L-glutamate transmembrane transport",3,1,0.92,1073,"0.66671","0.47043","0.4704" +"GO:0098739","import across plasma membrane",3,1,0.92,1074,"0.66671","0.47043","0.4704" +"GO:0010941","regulation of cell death",59,19,18.09,764,"0.44604","0.32593","0.4707" +"GO:0006323","DNA packaging",3,1,0.92,1075,"0.66671","0.47099","0.4710" +"GO:0000819","sister chromatid segregation",3,0,0.92,2219,"1.00000","0.47099","0.4710" +"GO:0007062","sister chromatid cohesion",3,0,0.92,2220,"1.00000","0.47099","0.4710" +"GO:0010243","response to organonitrogen compound",45,13,13.79,1026,"0.65718","0.47151","0.4715" +"GO:0032434","regulation of proteasomal ubiquitin-depe...",4,2,1.23,660,"0.35982","0.47409","0.4741" +"GO:2000058","regulation of ubiquitin-dependent protei...",4,2,1.23,661,"0.35982","0.47409","0.4741" +"GO:0045039","protein import into mitochondrial inner ...",3,0,0.92,2221,"1.00000","0.47433","0.4743" +"GO:0051336","regulation of hydrolase activity",39,6,11.96,2050,"0.99170","0.47456","0.4746" +"GO:0010498","proteasomal protein catabolic process",32,7,9.81,1700,"0.90277","0.47664","0.4766" +"GO:0009199","ribonucleoside triphosphate metabolic pr...",42,15,12.87,550,"0.28676","0.47725","0.4772" +"GO:0009205","purine ribonucleoside triphosphate metab...",42,15,12.87,551,"0.28676","0.47725","0.4772" +"GO:0043281","regulation of cysteine-type endopeptidas...",9,3,2.76,898,"0.55475","0.47779","0.4778" +"GO:0006120","mitochondrial electron transport, NADH t...",5,1,1.53,1517,"0.83993","0.47891","0.4789" +"GO:0050921","positive regulation of chemotaxis",4,2,1.23,662,"0.35982","0.47917","0.4792" +"GO:0043200","response to amino acid",4,2,1.23,663,"0.35982","0.47966","0.4797" +"GO:0006013","mannose metabolic process",3,1,0.92,1076,"0.66671","0.48132","0.4813" +"GO:0007098","centrosome cycle",4,2,1.23,664,"0.35982","0.48184","0.4818" +"GO:0031023","microtubule organizing center organizati...",4,2,1.23,665,"0.35982","0.48184","0.4818" +"GO:0051225","spindle assembly",4,2,1.23,666,"0.35982","0.48184","0.4818" +"GO:0010799","regulation of peptidyl-threonine phospho...",3,0,0.92,2222,"1.00000","0.48188","0.4819" +"GO:0018107","peptidyl-threonine phosphorylation",3,0,0.92,2223,"1.00000","0.48188","0.4819" +"GO:0044092","negative regulation of molecular functio...",37,9,11.34,1574,"0.84682","0.48458","0.4846" +"GO:0006754","ATP biosynthetic process",25,9,7.66,590,"0.34904","0.48493","0.4849" +"GO:0090066","regulation of anatomical structure size",33,10,10.12,923,"0.58335","0.48637","0.4864" +"GO:0044248","cellular catabolic process",168,52,51.5,857,"0.49605","0.09162","0.4879" +"GO:0030162","regulation of proteolysis",26,9,7.97,734,"0.40055","0.48865","0.4886" +"GO:0010557","positive regulation of macromolecule bio...",41,13,12.57,859,"0.50066","0.48884","0.4888" +"GO:0045445","myoblast differentiation",7,2,2.15,1206,"0.68462","0.48895","0.4889" +"GO:0045661","regulation of myoblast differentiation",7,2,2.15,1207,"0.68462","0.48895","0.4889" +"GO:0051147","regulation of muscle cell differentiatio...",7,2,2.15,1208,"0.68462","0.48895","0.4889" +"GO:0051149","positive regulation of muscle cell diffe...",7,2,2.15,1209,"0.68462","0.48895","0.4889" +"GO:0051153","regulation of striated muscle cell diffe...",7,2,2.15,1210,"0.68462","0.48895","0.4889" +"GO:0051155","positive regulation of striated muscle c...",7,2,2.15,1211,"0.68462","0.48895","0.4889" +"GO:0090092","regulation of transmembrane receptor pro...",7,1,2.15,1761,"0.92318","0.48895","0.4889" +"GO:0006342","chromatin silencing",4,2,1.23,667,"0.35982","0.49060","0.4906" +"GO:0048488","synaptic vesicle endocytosis",4,2,1.23,668,"0.35982","0.49060","0.4906" +"GO:0050766","positive regulation of phagocytosis",4,2,1.23,669,"0.35982","0.49060","0.4906" +"GO:0140238","presynaptic endocytosis",4,2,1.23,670,"0.35982","0.49060","0.4906" +"GO:1903332","regulation of protein folding",4,2,1.23,671,"0.35982","0.49060","0.4906" +"GO:1905710","positive regulation of membrane permeabi...",4,2,1.23,672,"0.35982","0.49060","0.4906" +"GO:0044403","symbiont process",16,6,4.9,689,"0.36166","0.49117","0.4912" +"GO:0045778","positive regulation of ossification",3,0,0.92,2224,"1.00000","0.49284","0.4928" +"GO:0030510","regulation of BMP signaling pathway",4,0,1.23,2225,"1.00000","0.49329","0.4933" +"GO:0009123","nucleoside monophosphate metabolic proce...",49,19,15.02,273,"0.13857","0.19902","0.4939" +"GO:0009161","ribonucleoside monophosphate metabolic p...",49,19,15.02,274,"0.13857","0.19902","0.4939" +"GO:0031099","regeneration",10,3,3.07,1013,"0.63488","0.49434","0.4943" +"GO:0043583","ear development",3,1,0.92,1077,"0.66671","0.49454","0.4945" +"GO:0048839","inner ear development",3,1,0.92,1078,"0.66671","0.49454","0.4945" +"GO:0071806","protein transmembrane transport",15,3,4.6,1632,"0.88467","0.49623","0.4962" +"GO:0048168","regulation of neuronal synaptic plastici...",4,1,1.23,1358,"0.76900","0.49721","0.4972" +"GO:0031123","RNA 3'-end processing",3,1,0.92,1079,"0.66671","0.49736","0.4974" +"GO:0097435","supramolecular fiber organization",48,14,14.71,1022,"0.64291","0.50763","0.5076" +"GO:0043933","protein-containing complex subunit organ...",105,26,32.19,1783,"0.92836","0.50871","0.5087" +"GO:0006560","proline metabolic process",3,1,0.92,1080,"0.66671","0.50928","0.5093" +"GO:0003008","system process",73,23,22.38,800,"0.48114","0.51004","0.5100" +"GO:1902652","secondary alcohol metabolic process",8,4,2.45,342,"0.20581","0.51032","0.5103" +"GO:0001510","RNA methylation",5,0,1.53,2226,"1.00000","0.51042","0.5104" +"GO:2001242","regulation of intrinsic apoptotic signal...",11,4,3.37,770,"0.44966","0.51074","0.5107" +"GO:0006743","ubiquinone metabolic process",4,1,1.23,1359,"0.76900","0.51098","0.5110" +"GO:0006744","ubiquinone biosynthetic process",4,1,1.23,1360,"0.76900","0.51098","0.5110" +"GO:0016236","macroautophagy",14,3,4.29,1581,"0.85226","0.51231","0.5123" +"GO:0006851","mitochondrial calcium ion transmembrane ...",3,1,0.92,1081,"0.66671","0.51327","0.5133" +"GO:0036444","calcium import into the mitochondrion",3,1,0.92,1082,"0.66671","0.51327","0.5133" +"GO:0051560","mitochondrial calcium ion homeostasis",3,1,0.92,1083,"0.66671","0.51327","0.5133" +"GO:0070509","calcium ion import",3,1,0.92,1084,"0.66671","0.51327","0.5133" +"GO:1903409","reactive oxygen species biosynthetic pro...",3,1,0.92,1085,"0.66671","0.51327","0.5133" +"GO:0015711","organic anion transport",35,12,10.73,733,"0.37995","0.51400","0.5140" +"GO:0015980","energy derivation by oxidation of organi...",32,8,9.81,1453,"0.81218","0.51475","0.5148" +"GO:0070838","divalent metal ion transport",25,10,7.66,343,"0.20885","0.51480","0.5148" +"GO:0072511","divalent inorganic cation transport",25,10,7.66,344,"0.20885","0.51480","0.5148" +"GO:0003015","heart process",13,4,3.99,983,"0.60001","0.51486","0.5149" +"GO:0060047","heart contraction",13,4,3.99,984,"0.60001","0.51486","0.5149" +"GO:1903829","positive regulation of cellular protein ...",17,3,5.21,1784,"0.93110","0.51489","0.5149" +"GO:0031047","gene silencing by RNA",7,3,2.15,718,"0.36773","0.51496","0.5150" +"GO:0030182","neuron differentiation",80,22,24.52,1423,"0.76993","0.51552","0.5155" +"GO:0048667","cell morphogenesis involved in neuron di...",31,6,9.5,1863,"0.94729","0.51584","0.5158" +"GO:0030252","growth hormone secretion",3,1,0.92,1086,"0.66671","0.51584","0.5158" +"GO:0000187","activation of MAPK activity",3,0,0.92,2227,"1.00000","0.51584","0.5158" +"GO:0030335","positive regulation of cell migration",11,5,3.37,493,"0.22448","0.51611","0.5161" +"GO:0051173","positive regulation of nitrogen compound...",82,18,25.14,1940,"0.97168","0.51622","0.5162" +"GO:0008544","epidermis development",10,4,3.07,727,"0.36778","0.51678","0.5168" +"GO:0072350","tricarboxylic acid metabolic process",15,4,4.6,1275,"0.72259","0.51713","0.5171" +"GO:0001701","in utero embryonic development",12,2,3.68,1747,"0.92255","0.51713","0.5171" +"GO:0008340","determination of adult lifespan",6,2,1.84,940,"0.59408","0.51731","0.5173" +"GO:0045665","negative regulation of neuron differenti...",6,0,1.84,2228,"1.00000","0.51731","0.5173" +"GO:1901137","carbohydrate derivative biosynthetic pro...",118,44,36.17,137,"0.06841","0.21870","0.5183" +"GO:0007204","positive regulation of cytosolic calcium...",4,2,1.23,673,"0.35982","0.51840","0.5184" +"GO:0051480","regulation of cytosolic calcium ion conc...",4,2,1.23,674,"0.35982","0.51840","0.5184" +"GO:0048793","pronephros development",3,0,0.92,2229,"1.00000","0.51842","0.5184" +"GO:0072009","nephron epithelium development",3,0,0.92,2230,"1.00000","0.51842","0.5184" +"GO:0072073","kidney epithelium development",3,0,0.92,2231,"1.00000","0.51842","0.5184" +"GO:0022008","neurogenesis",88,26,26.98,996,"0.63110","0.51961","0.5196" +"GO:0008593","regulation of Notch signaling pathway",6,1,1.84,1647,"0.88910","0.51974","0.5197" +"GO:0071804","cellular potassium ion transport",11,4,3.37,771,"0.44966","0.51985","0.5198" +"GO:0071805","potassium ion transmembrane transport",11,4,3.37,772,"0.44966","0.51985","0.5198" +"GO:0046040","IMP metabolic process",5,4,1.53,106,"0.03317","0.00842","0.5201" +"GO:0009124","nucleoside monophosphate biosynthetic pr...",32,13,9.81,281,"0.14966","0.16763","0.5205" +"GO:0009156","ribonucleoside monophosphate biosyntheti...",32,13,9.81,282,"0.14966","0.16763","0.5205" +"GO:0032273","positive regulation of protein polymeriz...",16,5,4.9,916,"0.57321","0.52066","0.5207" +"GO:0009126","purine nucleoside monophosphate metaboli...",46,18,14.1,271,"0.13682","0.20869","0.5216" +"GO:0009167","purine ribonucleoside monophosphate meta...",46,18,14.1,272,"0.13682","0.20869","0.5216" +"GO:0048285","organelle fission",12,3,3.68,1318,"0.76320","0.52258","0.5226" +"GO:0006119","oxidative phosphorylation",12,1,3.68,2024,"0.98778","0.52402","0.5240" +"GO:0033044","regulation of chromosome organization",7,3,2.15,719,"0.36773","0.52414","0.5241" +"GO:0042546","cell wall biogenesis",3,1,0.92,1087,"0.66671","0.52443","0.5244" +"GO:0007268","chemical synaptic transmission",35,11,10.73,867,"0.52431","0.52463","0.5246" +"GO:0098916","anterograde trans-synaptic signaling",35,11,10.73,868,"0.52431","0.52463","0.5246" +"GO:0099536","synaptic signaling",35,11,10.73,869,"0.52431","0.52463","0.5246" +"GO:0099537","trans-synaptic signaling",35,11,10.73,870,"0.52431","0.52463","0.5246" +"GO:1901615","organic hydroxy compound metabolic proce...",42,15,12.87,552,"0.28676","0.52589","0.5259" +"GO:0022603","regulation of anatomical structure morph...",41,11,12.57,1293,"0.75645","0.52621","0.5262" +"GO:0044088","regulation of vacuole organization",3,1,0.92,1088,"0.66671","0.52701","0.5270" +"GO:0097352","autophagosome maturation",3,1,0.92,1089,"0.66671","0.52701","0.5270" +"GO:2000785","regulation of autophagosome assembly",3,1,0.92,1090,"0.66671","0.52701","0.5270" +"GO:0003013","circulatory system process",17,5,5.21,999,"0.63434","0.52719","0.5272" +"GO:0008015","blood circulation",17,5,5.21,1000,"0.63434","0.52719","0.5272" +"GO:0010771","negative regulation of cell morphogenesi...",4,0,1.23,2232,"1.00000","0.52783","0.5278" +"GO:0010977","negative regulation of neuron projection...",4,0,1.23,2233,"1.00000","0.52783","0.5278" +"GO:0048821","erythrocyte development",3,0,0.92,2234,"1.00000","0.52787","0.5279" +"GO:0043161","proteasome-mediated ubiquitin-dependent ...",26,6,7.97,1594,"0.85563","0.52817","0.5282" +"GO:0060627","regulation of vesicle-mediated transport",22,2,6.74,2094,"0.99669","0.52818","0.5282" +"GO:0051247","positive regulation of protein metabolic...",48,10,14.71,1873,"0.95474","0.52841","0.5284" +"GO:0009141","nucleoside triphosphate metabolic proces...",43,15,13.18,581,"0.32407","0.52907","0.5291" +"GO:0009144","purine nucleoside triphosphate metabolic...",43,15,13.18,582,"0.32407","0.52907","0.5291" +"GO:0006814","sodium ion transport",22,7,6.74,881,"0.53307","0.52935","0.5293" +"GO:0001709","cell fate determination",7,1,2.15,1762,"0.92318","0.52941","0.5294" +"GO:0051495","positive regulation of cytoskeleton orga...",22,5,6.74,1590,"0.85227","0.52978","0.5298" +"GO:0009755","hormone-mediated signaling pathway",19,6,5.82,886,"0.55144","0.52991","0.5299" +"GO:0051181","cofactor transport",5,1,1.53,1518,"0.83993","0.53150","0.5315" +"GO:0051492","regulation of stress fiber assembly",4,1,1.23,1361,"0.76900","0.53206","0.5321" +"GO:0051129","negative regulation of cellular componen...",34,7,10.42,1795,"0.93394","0.53283","0.5328" +"GO:0043393","regulation of protein binding",10,2,3.07,1604,"0.86114","0.53330","0.5333" +"GO:0001508","action potential",3,1,0.92,1091,"0.66671","0.53362","0.5336" +"GO:0003254","regulation of membrane depolarization",3,1,0.92,1092,"0.66671","0.53362","0.5336" +"GO:0006942","regulation of striated muscle contractio...",3,1,0.92,1093,"0.66671","0.53362","0.5336" +"GO:0035637","multicellular organismal signaling",3,1,0.92,1094,"0.66671","0.53362","0.5336" +"GO:0045176","apical protein localization",3,1,0.92,1095,"0.66671","0.53362","0.5336" +"GO:0051385","response to mineralocorticoid",3,1,0.92,1096,"0.66671","0.53362","0.5336" +"GO:0055117","regulation of cardiac muscle contraction",3,1,0.92,1097,"0.66671","0.53362","0.5336" +"GO:0061337","cardiac conduction",3,1,0.92,1098,"0.66671","0.53362","0.5336" +"GO:0071242","cellular response to ammonium ion",3,1,0.92,1099,"0.66671","0.53362","0.5336" +"GO:0071384","cellular response to corticosteroid stim...",3,1,0.92,1100,"0.66671","0.53362","0.5336" +"GO:0086001","cardiac muscle cell action potential",3,1,0.92,1101,"0.66671","0.53362","0.5336" +"GO:1901655","cellular response to ketone",3,1,0.92,1102,"0.66671","0.53362","0.5336" +"GO:0048732","gland development",10,0,3.07,2235,"1.00000","0.53456","0.5346" +"GO:0030154","cell differentiation",173,48,53.03,1507,"0.82790","0.53522","0.5352" +"GO:1900408","negative regulation of cellular response...",7,5,2.15,101,"0.03141","0.01473","0.5355" +"GO:0032507","maintenance of protein location in cell",9,3,2.76,899,"0.55475","0.53577","0.5358" +"GO:0051651","maintenance of location in cell",9,3,2.76,900,"0.55475","0.53577","0.5358" +"GO:0009628","response to abiotic stimulus",78,26,23.91,585,"0.34114","0.53663","0.5366" +"GO:1902904","negative regulation of supramolecular fi...",16,6,4.9,690,"0.36166","0.53675","0.5367" +"GO:0072659","protein localization to plasma membrane",9,3,2.76,901,"0.55475","0.53693","0.5369" +"GO:0010638","positive regulation of organelle organiz...",38,8,11.65,1792,"0.93387","0.53731","0.5373" +"GO:0006766","vitamin metabolic process",11,4,3.37,773,"0.44966","0.53878","0.5388" +"GO:0042552","myelination",3,1,0.92,1103,"0.66671","0.54025","0.5402" +"GO:0006094","gluconeogenesis",5,1,1.53,1519,"0.83993","0.54043","0.5404" +"GO:0019319","hexose biosynthetic process",5,1,1.53,1520,"0.83993","0.54043","0.5404" +"GO:0046364","monosaccharide biosynthetic process",5,1,1.53,1521,"0.83993","0.54043","0.5404" +"GO:0010604","positive regulation of macromolecule met...",88,21,26.98,1811,"0.93916","0.54123","0.5412" +"GO:0010830","regulation of myotube differentiation",6,2,1.84,941,"0.59408","0.54171","0.5417" +"GO:0051099","positive regulation of binding",6,2,1.84,942,"0.59408","0.54171","0.5417" +"GO:0007626","locomotory behavior",12,2,3.68,1748,"0.92255","0.54174","0.5417" +"GO:0000086","G2/M transition of mitotic cell cycle",6,2,1.84,943,"0.59408","0.54314","0.5431" +"GO:0044839","cell cycle G2/M phase transition",6,2,1.84,944,"0.59408","0.54314","0.5431" +"GO:0009611","response to wounding",26,9,7.97,735,"0.40055","0.54351","0.5435" +"GO:0051272","positive regulation of cellular componen...",14,6,4.29,498,"0.23571","0.54401","0.5440" +"GO:0032259","methylation",19,3,5.82,1891,"0.95974","0.54496","0.5450" +"GO:0002682","regulation of immune system process",36,10,11.04,1264,"0.70615","0.54538","0.5454" +"GO:0001505","regulation of neurotransmitter levels",33,10,10.12,924,"0.58335","0.54578","0.5458" +"GO:0022900","electron transport chain",14,1,4.29,2068,"0.99415","0.54777","0.5478" +"GO:0046461","neutral lipid catabolic process",6,1,1.84,1648,"0.88910","0.54804","0.5480" +"GO:0046464","acylglycerol catabolic process",6,1,1.84,1649,"0.88910","0.54804","0.5480" +"GO:0022607","cellular component assembly",156,42,47.82,1621,"0.87251","0.55059","0.5506" +"GO:2001022","positive regulation of response to DNA d...",5,0,1.53,2236,"1.00000","0.55073","0.5507" +"GO:0043254","regulation of protein complex assembly",29,8,8.89,1265,"0.70673","0.55172","0.5517" +"GO:0051170","import into nucleus",7,2,2.15,1212,"0.68462","0.55190","0.5519" +"GO:0071901","negative regulation of protein serine/th...",6,1,1.84,1650,"0.88910","0.55194","0.5519" +"GO:0031032","actomyosin structure organization",21,7,6.44,798,"0.47589","0.55200","0.5520" +"GO:0022904","respiratory electron transport chain",11,1,3.37,1991,"0.98235","0.55315","0.5531" +"GO:0002831","regulation of response to biotic stimulu...",5,1,1.53,1522,"0.83993","0.55320","0.5532" +"GO:0051014","actin filament severing",6,2,1.84,945,"0.59408","0.55398","0.5540" +"GO:0009142","nucleoside triphosphate biosynthetic pro...",26,9,7.97,736,"0.40055","0.55496","0.5550" +"GO:0009145","purine nucleoside triphosphate biosynthe...",26,9,7.97,737,"0.40055","0.55496","0.5550" +"GO:0009201","ribonucleoside triphosphate biosynthetic...",26,9,7.97,738,"0.40055","0.55496","0.5550" +"GO:0009206","purine ribonucleoside triphosphate biosy...",26,9,7.97,739,"0.40055","0.55496","0.5550" +"GO:1902903","regulation of supramolecular fiber organ...",32,8,9.81,1454,"0.81218","0.55510","0.5551" +"GO:0007601","visual perception",10,4,3.07,728,"0.36778","0.55564","0.5556" +"GO:0050953","sensory perception of light stimulus",10,4,3.07,729,"0.36778","0.55564","0.5556" +"GO:0007045","cell-substrate adherens junction assembl...",3,1,0.92,1104,"0.66671","0.55761","0.5576" +"GO:0017015","regulation of transforming growth factor...",3,1,0.92,1105,"0.66671","0.55761","0.5576" +"GO:0033628","regulation of cell adhesion mediated by ...",3,1,0.92,1106,"0.66671","0.55761","0.5576" +"GO:0034332","adherens junction organization",3,1,0.92,1107,"0.66671","0.55761","0.5576" +"GO:0034333","adherens junction assembly",3,1,0.92,1108,"0.66671","0.55761","0.5576" +"GO:0048041","focal adhesion assembly",3,1,0.92,1109,"0.66671","0.55761","0.5576" +"GO:0048754","branching morphogenesis of an epithelial...",3,1,0.92,1110,"0.66671","0.55761","0.5576" +"GO:0061138","morphogenesis of a branching epithelium",3,1,0.92,1111,"0.66671","0.55761","0.5576" +"GO:1903844","regulation of cellular response to trans...",3,1,0.92,1112,"0.66671","0.55761","0.5576" +"GO:0046034","ATP metabolic process",40,14,12.26,583,"0.32804","0.55799","0.5580" +"GO:0010921","regulation of phosphatase activity",4,0,1.23,2237,"1.00000","0.55809","0.5581" +"GO:0035303","regulation of dephosphorylation",4,0,1.23,2238,"1.00000","0.55809","0.5581" +"GO:1904062","regulation of cation transmembrane trans...",14,5,4.29,758,"0.43721","0.55812","0.5581" +"GO:0006547","histidine metabolic process",3,1,0.92,1113,"0.66671","0.55993","0.5599" +"GO:0006548","histidine catabolic process",3,1,0.92,1114,"0.66671","0.55993","0.5599" +"GO:0052803","imidazole-containing compound metabolic ...",3,1,0.92,1115,"0.66671","0.55993","0.5599" +"GO:0052805","imidazole-containing compound catabolic ...",3,1,0.92,1116,"0.66671","0.55993","0.5599" +"GO:0018205","peptidyl-lysine modification",14,3,4.29,1582,"0.85226","0.56094","0.5609" +"GO:0002700","regulation of production of molecular me...",3,1,0.92,1117,"0.66671","0.56196","0.5620" +"GO:0002702","positive regulation of production of mol...",3,1,0.92,1118,"0.66671","0.56196","0.5620" +"GO:0007617","mating behavior",3,1,0.92,1119,"0.66671","0.56196","0.5620" +"GO:0009651","response to salt stress",3,1,0.92,1120,"0.66671","0.56196","0.5620" +"GO:0034612","response to tumor necrosis factor",3,1,0.92,1121,"0.66671","0.56196","0.5620" +"GO:0042386","hemocyte differentiation",3,1,0.92,1122,"0.66671","0.56196","0.5620" +"GO:0045610","regulation of hemocyte differentiation",3,1,0.92,1123,"0.66671","0.56196","0.5620" +"GO:0060324","face development",3,1,0.92,1124,"0.66671","0.56196","0.5620" +"GO:0060425","lung morphogenesis",3,1,0.92,1125,"0.66671","0.56196","0.5620" +"GO:0071711","basement membrane organization",3,1,0.92,1126,"0.66671","0.56196","0.5620" +"GO:0009814","defense response, incompatible interacti...",3,0,0.92,2239,"1.00000","0.56196","0.5620" +"GO:1902653","secondary alcohol biosynthetic process",6,3,1.84,531,"0.26771","0.56199","0.5620" +"GO:0000910","cytokinesis",11,1,3.37,1992,"0.98235","0.56240","0.5624" +"GO:0043086","negative regulation of catalytic activit...",30,7,9.2,1598,"0.85987","0.56272","0.5627" +"GO:1902275","regulation of chromatin organization",6,3,1.84,532,"0.26771","0.56445","0.5645" +"GO:0050673","epithelial cell proliferation",7,0,2.15,2240,"1.00000","0.56521","0.5652" +"GO:0018209","peptidyl-serine modification",7,3,2.15,720,"0.36773","0.56654","0.5665" +"GO:0044093","positive regulation of molecular functio...",56,10,17.17,2042,"0.99061","0.56705","0.5671" +"GO:0006448","regulation of translational elongation",3,0,0.92,2241,"1.00000","0.56864","0.5686" +"GO:0051048","negative regulation of secretion",3,0,0.92,2242,"1.00000","0.56864","0.5686" +"GO:1903531","negative regulation of secretion by cell",3,0,0.92,2243,"1.00000","0.56864","0.5686" +"GO:0098930","axonal transport",4,1,1.23,1362,"0.76900","0.57218","0.5722" +"GO:0072384","organelle transport along microtubule",4,0,1.23,2244,"1.00000","0.57218","0.5722" +"GO:0050954","sensory perception of mechanical stimulu...",3,1,0.92,1127,"0.66671","0.57242","0.5724" +"GO:0010631","epithelial cell migration",11,2,3.37,1686,"0.89599","0.57289","0.5729" +"GO:0006887","exocytosis",29,5,8.89,1923,"0.96850","0.57294","0.5729" +"GO:0001838","embryonic epithelial tube formation",4,1,1.23,1363,"0.76900","0.57319","0.5732" +"GO:0001841","neural tube formation",4,1,1.23,1364,"0.76900","0.57319","0.5732" +"GO:0001843","neural tube closure",4,1,1.23,1365,"0.76900","0.57319","0.5732" +"GO:0014020","primary neural tube formation",4,1,1.23,1366,"0.76900","0.57319","0.5732" +"GO:0060606","tube closure",4,1,1.23,1367,"0.76900","0.57319","0.5732" +"GO:0072175","epithelial tube formation",4,1,1.23,1368,"0.76900","0.57319","0.5732" +"GO:0071482","cellular response to light stimulus",6,3,1.84,533,"0.26771","0.57371","0.5737" +"GO:0010508","positive regulation of autophagy",6,0,1.84,2245,"1.00000","0.57371","0.5737" +"GO:0014823","response to activity",6,2,1.84,946,"0.59408","0.57412","0.5741" +"GO:0006206","pyrimidine nucleobase metabolic process",4,2,1.23,675,"0.35982","0.57445","0.5745" +"GO:0006207","'de novo' pyrimidine nucleobase biosynth...",4,2,1.23,676,"0.35982","0.57445","0.5745" +"GO:0019856","pyrimidine nucleobase biosynthetic proce...",4,2,1.23,677,"0.35982","0.57445","0.5745" +"GO:0051301","cell division",19,2,5.82,2043,"0.99123","0.57515","0.5752" +"GO:0016331","morphogenesis of embryonic epithelium",10,1,3.07,1953,"0.97450","0.57748","0.5775" +"GO:0007608","sensory perception of smell",5,2,1.53,840,"0.48529","0.57751","0.5775" +"GO:0043534","blood vessel endothelial cell migration",5,1,1.53,1523,"0.83993","0.57751","0.5775" +"GO:0031345","negative regulation of cell projection o...",5,0,1.53,2246,"1.00000","0.57751","0.5775" +"GO:0009994","oocyte differentiation",5,1,1.53,1524,"0.83993","0.57887","0.5789" +"GO:0000226","microtubule cytoskeleton organization",18,7,5.52,570,"0.29904","0.57896","0.5790" +"GO:0032270","positive regulation of cellular protein ...",47,9,14.41,1973,"0.97478","0.58000","0.5800" +"GO:0031325","positive regulation of cellular metaboli...",94,19,28.81,2054,"0.99252","0.58125","0.5812" +"GO:0034097","response to cytokine",19,6,5.82,887,"0.55144","0.58247","0.5825" +"GO:0009888","tissue development",88,18,26.98,2036,"0.98939","0.58308","0.5831" +"GO:0043009","chordate embryonic development",25,3,7.66,2055,"0.99273","0.58340","0.5834" +"GO:0006101","citrate metabolic process",14,4,4.29,1031,"0.66513","0.58362","0.5836" +"GO:0009060","aerobic respiration",14,3,4.29,1583,"0.85226","0.58362","0.5836" +"GO:0006816","calcium ion transport",21,8,6.44,574,"0.29925","0.58365","0.5836" +"GO:0042773","ATP synthesis coupled electron transport",10,1,3.07,1954,"0.97450","0.58387","0.5839" +"GO:0017157","regulation of exocytosis",7,0,2.15,2247,"1.00000","0.58390","0.5839" +"GO:0002376","immune system process",69,20,21.15,1029,"0.66415","0.58431","0.5843" +"GO:0010952","positive regulation of peptidase activit...",5,1,1.53,1525,"0.83993","0.58451","0.5845" +"GO:0003073","regulation of systemic arterial blood pr...",3,1,0.92,1128,"0.66671","0.58582","0.5858" +"GO:0008217","regulation of blood pressure",3,1,0.92,1129,"0.66671","0.58582","0.5858" +"GO:0010639","negative regulation of organelle organiz...",17,4,5.21,1458,"0.81486","0.58591","0.5859" +"GO:0032502","developmental process",308,82,94.41,1879,"0.95754","0.58628","0.5863" +"GO:0009743","response to carbohydrate",4,1,1.23,1369,"0.76900","0.58732","0.5873" +"GO:0071322","cellular response to carbohydrate stimul...",4,1,1.23,1370,"0.76900","0.58732","0.5873" +"GO:0007155","cell adhesion",66,24,20.23,326,"0.18714","0.58837","0.5884" +"GO:0022610","biological adhesion",66,24,20.23,327,"0.18714","0.58837","0.5884" +"GO:0050821","protein stabilization",8,3,2.45,790,"0.46489","0.58933","0.5893" +"GO:0010675","regulation of cellular carbohydrate meta...",4,1,1.23,1371,"0.76900","0.59010","0.5901" +"GO:0010906","regulation of glucose metabolic process",4,1,1.23,1372,"0.76900","0.59010","0.5901" +"GO:2000377","regulation of reactive oxygen species me...",4,1,1.23,1373,"0.76900","0.59010","0.5901" +"GO:0032869","cellular response to insulin stimulus",4,0,1.23,2248,"1.00000","0.59010","0.5901" +"GO:0051347","positive regulation of transferase activ...",15,3,4.6,1633,"0.88467","0.59122","0.5912" +"GO:0010628","positive regulation of gene expression",49,13,15.02,1436,"0.78264","0.59132","0.5913" +"GO:0035456","response to interferon-beta",5,1,1.53,1526,"0.83993","0.59152","0.5915" +"GO:0045089","positive regulation of innate immune res...",5,1,1.53,1527,"0.83993","0.59152","0.5915" +"GO:0055088","lipid homeostasis",5,1,1.53,1528,"0.83993","0.59152","0.5915" +"GO:0043901","negative regulation of multi-organism pr...",3,1,0.92,1130,"0.66671","0.59166","0.5917" +"GO:0048525","negative regulation of viral process",3,1,0.92,1131,"0.66671","0.59166","0.5917" +"GO:0051607","defense response to virus",3,1,0.92,1132,"0.66671","0.59166","0.5917" +"GO:1903901","negative regulation of viral life cycle",3,1,0.92,1133,"0.66671","0.59166","0.5917" +"GO:0080135","regulation of cellular response to stres...",38,11,11.65,1025,"0.65085","0.16261","0.5919" +"GO:0051588","regulation of neurotransmitter transport",3,0,0.92,2249,"1.00000","0.59224","0.5922" +"GO:0007018","microtubule-based movement",20,4,6.13,1704,"0.90475","0.59228","0.5923" +"GO:0006082","organic acid metabolic process",144,62,44.14,15,"0.00080","0.00039","0.5925" +"GO:0043436","oxoacid metabolic process",144,62,44.14,16,"0.00080","0.00039","0.5925" +"GO:0009065","glutamine family amino acid catabolic pr...",3,1,0.92,1134,"0.66671","0.59282","0.5928" +"GO:0034103","regulation of tissue remodeling",6,2,1.84,947,"0.59408","0.59351","0.5935" +"GO:0060401","cytosolic calcium ion transport",6,2,1.84,948,"0.59408","0.59433","0.5943" +"GO:0042981","regulation of apoptotic process",49,15,15.02,908,"0.55706","0.59489","0.5949" +"GO:0043067","regulation of programmed cell death",49,15,15.02,909,"0.55706","0.59489","0.5949" +"GO:0008016","regulation of heart contraction",12,4,3.68,874,"0.52777","0.59575","0.5957" +"GO:1903522","regulation of blood circulation",12,4,3.68,875,"0.52777","0.59575","0.5957" +"GO:0044242","cellular lipid catabolic process",21,7,6.44,799,"0.47589","0.59604","0.5960" +"GO:0051261","protein depolymerization",11,4,3.37,774,"0.44966","0.59821","0.5982" +"GO:0045597","positive regulation of cell differentiat...",38,8,11.65,1793,"0.93387","0.59947","0.5995" +"GO:1904030","negative regulation of cyclin-dependent ...",5,1,1.53,1529,"0.83993","0.60011","0.6001" +"GO:0051254","positive regulation of RNA metabolic pro...",39,11,11.96,1245,"0.68866","0.60115","0.6011" +"GO:0045576","mast cell activation",3,0,0.92,2250,"1.00000","0.60129","0.6013" +"GO:0098742","cell-cell adhesion via plasma-membrane a...",12,5,3.68,561,"0.29345","0.60160","0.6016" +"GO:0071495","cellular response to endogenous stimulus",46,10,14.1,1800,"0.93532","0.60193","0.6019" +"GO:0031175","neuron projection development",54,13,16.55,1639,"0.88887","0.60215","0.6022" +"GO:0000041","transition metal ion transport",9,3,2.76,902,"0.55475","0.60278","0.6028" +"GO:0003206","cardiac chamber morphogenesis",4,1,1.23,1374,"0.76900","0.60324","0.6032" +"GO:0035108","limb morphogenesis",4,1,1.23,1375,"0.76900","0.60324","0.6032" +"GO:0060173","limb development",4,1,1.23,1376,"0.76900","0.60324","0.6032" +"GO:0009152","purine ribonucleotide biosynthetic proce...",43,19,13.18,114,"0.04084","0.05652","0.6044" +"GO:0018991","oviposition",7,1,2.15,1763,"0.92318","0.60531","0.6053" +"GO:0045185","maintenance of protein location",11,3,3.37,1256,"0.70434","0.60569","0.6057" +"GO:0007015","actin filament organization",30,7,9.2,1599,"0.85987","0.60599","0.6060" +"GO:0006536","glutamate metabolic process",3,1,0.92,1135,"0.66671","0.60654","0.6065" +"GO:0006890","retrograde vesicle-mediated transport, G...",7,2,2.15,1213,"0.68462","0.60664","0.6066" +"GO:0022898","regulation of transmembrane transporter ...",12,4,3.68,876,"0.52777","0.60686","0.6069" +"GO:0032409","regulation of transporter activity",12,4,3.68,877,"0.52777","0.60686","0.6069" +"GO:0032412","regulation of ion transmembrane transpor...",12,4,3.68,878,"0.52777","0.60686","0.6069" +"GO:0007030","Golgi organization",9,2,2.76,1479,"0.81589","0.60801","0.6080" +"GO:0043085","positive regulation of catalytic activit...",38,6,11.65,2037,"0.98941","0.60840","0.6084" +"GO:0060541","respiratory system development",12,3,3.68,1319,"0.76320","0.60949","0.6095" +"GO:0006898","receptor-mediated endocytosis",9,2,2.76,1480,"0.81589","0.61020","0.6102" +"GO:0014902","myotube differentiation",9,3,2.76,903,"0.55475","0.61020","0.6102" +"GO:0045807","positive regulation of endocytosis",9,2,2.76,1481,"0.81589","0.61020","0.6102" +"GO:0048545","response to steroid hormone",27,10,8.28,565,"0.29729","0.61023","0.6102" +"GO:0035967","cellular response to topologically incor...",15,5,4.6,863,"0.50710","0.61150","0.6115" +"GO:0034622","cellular protein-containing complex asse...",70,20,21.46,1252,"0.69241","0.61159","0.6116" +"GO:0050877","nervous system process",47,14,14.41,992,"0.60679","0.61228","0.6123" +"GO:1903747","regulation of establishment of protein l...",11,3,3.37,1257,"0.70434","0.61271","0.6127" +"GO:0006030","chitin metabolic process",14,4,4.29,1032,"0.66513","0.61300","0.6130" +"GO:0044843","cell cycle G1/S phase transition",9,4,2.76,547,"0.28517","0.61610","0.6161" +"GO:0042461","photoreceptor cell development",11,5,3.37,494,"0.22448","0.61622","0.6162" +"GO:0042462","eye photoreceptor cell development",11,5,3.37,495,"0.22448","0.61622","0.6162" +"GO:0009127","purine nucleoside monophosphate biosynth...",30,12,9.2,319,"0.17818","0.21240","0.6174" +"GO:0009168","purine ribonucleoside monophosphate bios...",30,12,9.2,320,"0.17818","0.21240","0.6174" +"GO:0030148","sphingolipid biosynthetic process",4,1,1.23,1377,"0.76900","0.61740","0.6174" +"GO:0016126","sterol biosynthetic process",9,4,2.76,548,"0.28517","0.61762","0.6176" +"GO:0050771","negative regulation of axonogenesis",3,0,0.92,2251,"1.00000","0.61938","0.6194" +"GO:0097190","apoptotic signaling pathway",27,8,8.28,993,"0.61815","0.62059","0.6206" +"GO:0045935","positive regulation of nucleobase-contai...",42,13,12.87,883,"0.54191","0.62122","0.6212" +"GO:0070585","protein localization to mitochondrion",22,4,6.74,1813,"0.94076","0.62189","0.6219" +"GO:0072655","establishment of protein localization to...",22,4,6.74,1814,"0.94076","0.62189","0.6219" +"GO:0017156","calcium ion regulated exocytosis",7,0,2.15,2252,"1.00000","0.62270","0.6227" +"GO:0051049","regulation of transport",75,15,22.99,2021,"0.98726","0.62288","0.6229" +"GO:0006605","protein targeting",33,7,10.12,1733,"0.91965","0.62289","0.6229" +"GO:0007269","neurotransmitter secretion",16,3,4.9,1718,"0.91059","0.62312","0.6231" +"GO:0099643","signal release from synapse",16,3,4.9,1719,"0.91059","0.62312","0.6231" +"GO:0048812","neuron projection morphogenesis",37,8,11.34,1736,"0.92031","0.62359","0.6236" +"GO:0048858","cell projection morphogenesis",37,8,11.34,1737,"0.92031","0.62359","0.6236" +"GO:0120039","plasma membrane bounded cell projection ...",37,8,11.34,1738,"0.92031","0.62359","0.6236" +"GO:0032271","regulation of protein polymerization",25,7,7.66,1240,"0.68606","0.62462","0.6246" +"GO:0010959","regulation of metal ion transport",12,4,3.68,879,"0.52777","0.62484","0.6248" +"GO:0051017","actin filament bundle assembly",6,1,1.84,1651,"0.88910","0.62613","0.6261" +"GO:0019752","carboxylic acid metabolic process",142,61,43.53,19,"0.00094","0.00025","0.6275" +"GO:0070265","necrotic cell death",3,0,0.92,2253,"1.00000","0.62813","0.6281" +"GO:0030308","negative regulation of cell growth",9,1,2.76,1903,"0.96316","0.62841","0.6284" +"GO:0000045","autophagosome assembly",5,2,1.53,841,"0.48529","0.62950","0.6295" +"GO:1905037","autophagosome organization",5,2,1.53,842,"0.48529","0.62950","0.6295" +"GO:0035458","cellular response to interferon-beta",4,1,1.23,1378,"0.76900","0.63028","0.6303" +"GO:0031333","negative regulation of protein complex a...",12,3,3.68,1320,"0.76320","0.63287","0.6329" +"GO:0031396","regulation of protein ubiquitination",10,3,3.07,1014,"0.63488","0.63347","0.6335" +"GO:1903320","regulation of protein modification by sm...",10,3,3.07,1015,"0.63488","0.63347","0.6335" +"GO:0006662","glycerol ether metabolic process",3,0,0.92,2254,"1.00000","0.63599","0.6360" +"GO:0018904","ether metabolic process",3,0,0.92,2255,"1.00000","0.63599","0.6360" +"GO:0045861","negative regulation of proteolysis",14,5,4.29,759,"0.43721","0.63667","0.6367" +"GO:0032943","mononuclear cell proliferation",4,0,1.23,2256,"1.00000","0.63684","0.6368" +"GO:0032944","regulation of mononuclear cell prolifera...",4,0,1.23,2257,"1.00000","0.63684","0.6368" +"GO:0046651","lymphocyte proliferation",4,0,1.23,2258,"1.00000","0.63684","0.6368" +"GO:0050670","regulation of lymphocyte proliferation",4,0,1.23,2259,"1.00000","0.63684","0.6368" +"GO:0070661","leukocyte proliferation",4,0,1.23,2260,"1.00000","0.63684","0.6368" +"GO:0070663","regulation of leukocyte proliferation",4,0,1.23,2261,"1.00000","0.63684","0.6368" +"GO:0007033","vacuole organization",13,4,3.99,985,"0.60001","0.63710","0.6371" +"GO:0032535","regulation of cellular component size",27,6,8.28,1629,"0.88065","0.63748","0.6375" +"GO:1903432","regulation of TORC1 signaling",3,1,0.92,1136,"0.66671","0.63861","0.6386" +"GO:1904263","positive regulation of TORC1 signaling",3,1,0.92,1137,"0.66671","0.63861","0.6386" +"GO:0031328","positive regulation of cellular biosynth...",45,13,13.79,1027,"0.65718","0.63914","0.6391" +"GO:0051494","negative regulation of cytoskeleton orga...",13,4,3.99,986,"0.60001","0.64130","0.6413" +"GO:0008643","carbohydrate transport",10,2,3.07,1605,"0.86114","0.64178","0.6418" +"GO:0043647","inositol phosphate metabolic process",4,0,1.23,2262,"1.00000","0.64264","0.6426" +"GO:0016050","vesicle organization",17,4,5.21,1459,"0.81486","0.64267","0.6427" +"GO:0048645","animal organ formation",3,0,0.92,2263,"1.00000","0.64298","0.6430" +"GO:1903707","negative regulation of hemopoiesis",3,0,0.92,2264,"1.00000","0.64298","0.6430" +"GO:0030029","actin filament-based process",62,14,19.01,1816,"0.94125","0.64360","0.6436" +"GO:0140013","meiotic nuclear division",4,0,1.23,2265,"1.00000","0.64365","0.6436" +"GO:0009395","phospholipid catabolic process",6,2,1.84,949,"0.59408","0.64385","0.6438" +"GO:0002164","larval development",4,0,1.23,2266,"1.00000","0.64466","0.6447" +"GO:0035162","embryonic hemopoiesis",4,0,1.23,2267,"1.00000","0.64466","0.6447" +"GO:0048806","genitalia development",4,0,1.23,2268,"1.00000","0.64466","0.6447" +"GO:0030258","lipid modification",22,6,6.74,1267,"0.71078","0.64468","0.6447" +"GO:0099504","synaptic vesicle cycle",17,4,5.21,1460,"0.81486","0.64475","0.6448" +"GO:0002520","immune system development",18,1,5.52,2127,"0.99866","0.64582","0.6458" +"GO:0048534","hematopoietic or lymphoid organ developm...",18,1,5.52,2128,"0.99866","0.64582","0.6458" +"GO:0045747","positive regulation of Notch signaling p...",4,0,1.23,2269,"1.00000","0.64667","0.6467" +"GO:0006813","potassium ion transport",21,8,6.44,575,"0.29925","0.64714","0.6471" +"GO:0015837","amine transport",5,0,1.53,2270,"1.00000","0.64754","0.6475" +"GO:0051952","regulation of amine transport",5,0,1.53,2271,"1.00000","0.64754","0.6475" +"GO:0070372","regulation of ERK1 and ERK2 cascade",4,0,1.23,2272,"1.00000","0.64793","0.6479" +"GO:0015697","quaternary ammonium group transport",3,1,0.92,1138,"0.66671","0.64908","0.6491" +"GO:0006906","vesicle fusion",5,0,1.53,2273,"1.00000","0.64979","0.6498" +"GO:0048284","organelle fusion",5,0,1.53,2274,"1.00000","0.64979","0.6498" +"GO:0061025","membrane fusion",5,0,1.53,2275,"1.00000","0.64979","0.6498" +"GO:0090174","organelle membrane fusion",5,0,1.53,2276,"1.00000","0.64979","0.6498" +"GO:0000082","G1/S transition of mitotic cell cycle",8,3,2.45,791,"0.46489","0.64991","0.6499" +"GO:0016458","gene silencing",8,3,2.45,792,"0.46489","0.64991","0.6499" +"GO:0042775","mitochondrial ATP synthesis coupled elec...",8,1,2.45,1833,"0.94680","0.65044","0.6504" +"GO:0071345","cellular response to cytokine stimulus",16,5,4.9,917,"0.57321","0.65068","0.6507" +"GO:0002694","regulation of leukocyte activation",9,2,2.76,1482,"0.81589","0.65162","0.6516" +"GO:0050865","regulation of cell activation",9,2,2.76,1483,"0.81589","0.65162","0.6516" +"GO:0002026","regulation of the force of heart contrac...",6,2,1.84,950,"0.59408","0.65187","0.6519" +"GO:0009719","response to endogenous stimulus",65,19,19.93,1024,"0.64576","0.65268","0.6527" +"GO:0009966","regulation of signal transduction",124,32,38.01,1713,"0.90515","0.65458","0.6546" +"GO:0006099","tricarboxylic acid cycle",13,3,3.99,1449,"0.81216","0.65472","0.6547" +"GO:0062013","positive regulation of small molecule me...",5,2,1.53,843,"0.48529","0.65474","0.6547" +"GO:0006397","mRNA processing",14,6,4.29,499,"0.23571","0.65555","0.6555" +"GO:0140014","mitotic nuclear division",6,2,1.84,951,"0.59408","0.65556","0.6556" +"GO:0051604","protein maturation",16,5,4.9,918,"0.57321","0.65685","0.6568" +"GO:0030970","retrograde protein transport, ER to cyto...",6,2,1.84,952,"0.59408","0.65720","0.6572" +"GO:1903513","endoplasmic reticulum to cytosol transpo...",6,2,1.84,953,"0.59408","0.65720","0.6572" +"GO:1904292","regulation of ERAD pathway",6,2,1.84,954,"0.59408","0.65720","0.6572" +"GO:0009913","epidermal cell differentiation",7,3,2.15,721,"0.36773","0.65739","0.6574" +"GO:0030587","sorocarp development",7,1,2.15,1764,"0.92318","0.65739","0.6574" +"GO:0090702","non-reproductive fruiting body developme...",7,1,2.15,1765,"0.92318","0.65739","0.6574" +"GO:0099120","socially cooperative development",7,1,2.15,1766,"0.92318","0.65739","0.6574" +"GO:1901652","response to peptide",14,4,4.29,1033,"0.66513","0.65743","0.6574" +"GO:0110053","regulation of actin filament organizatio...",25,5,7.66,1742,"0.92129","0.65933","0.6593" +"GO:0007272","ensheathment of neurons",4,1,1.23,1379,"0.76900","0.65949","0.6595" +"GO:0008366","axon ensheathment",4,1,1.23,1380,"0.76900","0.65949","0.6595" +"GO:0050793","regulation of developmental process",98,25,30.04,1682,"0.89396","0.66137","0.6614" +"GO:0050920","regulation of chemotaxis",5,2,1.53,844,"0.48529","0.66170","0.6617" +"GO:0060326","cell chemotaxis",5,2,1.53,845,"0.48529","0.66170","0.6617" +"GO:1990138","neuron projection extension",8,0,2.45,2277,"1.00000","0.66182","0.6618" +"GO:0045333","cellular respiration",25,5,7.66,1743,"0.92129","0.66185","0.6619" +"GO:0006835","dicarboxylic acid transport",8,2,2.45,1299,"0.75786","0.66235","0.6623" +"GO:0006855","drug transmembrane transport",8,2,2.45,1300,"0.75786","0.66235","0.6623" +"GO:1902475","L-alpha-amino acid transmembrane transpo...",8,2,2.45,1301,"0.75786","0.66235","0.6623" +"GO:0061640","cytoskeleton-dependent cytokinesis",10,1,3.07,1955,"0.97450","0.66247","0.6625" +"GO:0032103","positive regulation of response to exter...",10,4,3.07,730,"0.36778","0.66294","0.6629" +"GO:0042742","defense response to bacterium",10,3,3.07,1016,"0.63488","0.66294","0.6629" +"GO:0036465","synaptic vesicle recycling",7,2,2.15,1214,"0.68462","0.66403","0.6640" +"GO:0006493","protein O-linked glycosylation",17,4,5.21,1461,"0.81486","0.66454","0.6645" +"GO:0006939","smooth muscle contraction",4,1,1.23,1381,"0.76900","0.66475","0.6647" +"GO:0001570","vasculogenesis",4,0,1.23,2278,"1.00000","0.66475","0.6647" +"GO:0016202","regulation of striated muscle tissue dev...",4,0,1.23,2279,"1.00000","0.66475","0.6647" +"GO:0048008","platelet-derived growth factor receptor ...",4,0,1.23,2280,"1.00000","0.66475","0.6647" +"GO:0048634","regulation of muscle organ development",4,0,1.23,2281,"1.00000","0.66475","0.6647" +"GO:1901861","regulation of muscle tissue development",4,0,1.23,2282,"1.00000","0.66475","0.6647" +"GO:0009260","ribonucleotide biosynthetic process",44,19,13.49,115,"0.05192","0.07250","0.6653" +"GO:0046390","ribose phosphate biosynthetic process",44,19,13.49,116,"0.05192","0.07250","0.6653" +"GO:0030036","actin cytoskeleton organization",59,13,18.09,1867,"0.94858","0.66549","0.6655" +"GO:0034220","ion transmembrane transport",109,45,33.41,48,"0.01040","0.06421","0.6660" +"GO:0016079","synaptic vesicle exocytosis",6,0,1.84,2283,"1.00000","0.66641","0.6664" +"GO:0051222","positive regulation of protein transport",15,2,4.6,1927,"0.96891","0.66756","0.6676" +"GO:1904951","positive regulation of establishment of ...",15,2,4.6,1928,"0.96891","0.66756","0.6676" +"GO:0007220","Notch receptor processing",4,1,1.23,1382,"0.76900","0.66875","0.6688" +"GO:0015893","drug transport",15,2,4.6,1929,"0.96891","0.66911","0.6691" +"GO:0045862","positive regulation of proteolysis",13,4,3.99,987,"0.60001","0.66990","0.6699" +"GO:0051345","positive regulation of hydrolase activit...",20,2,6.13,2062,"0.99365","0.67054","0.6705" +"GO:0043588","skin development",8,3,2.45,793,"0.46489","0.67103","0.6710" +"GO:0019216","regulation of lipid metabolic process",17,3,5.21,1785,"0.93110","0.67136","0.6714" +"GO:0008645","hexose transmembrane transport",6,0,1.84,2284,"1.00000","0.67152","0.6715" +"GO:0010827","regulation of glucose transmembrane tran...",6,0,1.84,2285,"1.00000","0.67152","0.6715" +"GO:0015749","monosaccharide transmembrane transport",6,0,1.84,2286,"1.00000","0.67152","0.6715" +"GO:0034219","carbohydrate transmembrane transport",6,0,1.84,2287,"1.00000","0.67152","0.6715" +"GO:1904659","glucose transmembrane transport",6,0,1.84,2288,"1.00000","0.67152","0.6715" +"GO:2000045","regulation of G1/S transition of mitotic...",4,1,1.23,1383,"0.76900","0.67250","0.6725" +"GO:0045168","cell-cell signaling involved in cell fat...",5,1,1.53,1530,"0.83993","0.67334","0.6733" +"GO:0046331","lateral inhibition",5,1,1.53,1531,"0.83993","0.67334","0.6733" +"GO:0010565","regulation of cellular ketone metabolic ...",3,0,0.92,2289,"1.00000","0.67339","0.6734" +"GO:0019217","regulation of fatty acid metabolic proce...",3,0,0.92,2290,"1.00000","0.67339","0.6734" +"GO:0042304","regulation of fatty acid biosynthetic pr...",3,0,0.92,2291,"1.00000","0.67339","0.6734" +"GO:0046320","regulation of fatty acid oxidation",3,0,0.92,2292,"1.00000","0.67339","0.6734" +"GO:0042136","neurotransmitter biosynthetic process",4,1,1.23,1384,"0.76900","0.67649","0.6765" +"GO:0008625","extrinsic apoptotic signaling pathway vi...",5,2,1.53,846,"0.48529","0.67735","0.6774" +"GO:0050776","regulation of immune response",22,6,6.74,1268,"0.71078","0.67793","0.6779" +"GO:0030097","hemopoiesis",17,1,5.21,2113,"0.99807","0.67803","0.6780" +"GO:0006091","generation of precursor metabolites and ...",48,14,14.71,1023,"0.64291","0.67908","0.6791" +"GO:0044743","protein transmembrane import into intrac...",13,3,3.99,1450,"0.81216","0.67947","0.6795" +"GO:0051101","regulation of DNA binding",4,2,1.23,678,"0.35982","0.68023","0.6802" +"GO:0021915","neural tube development",7,2,2.15,1215,"0.68462","0.68121","0.6812" +"GO:0050764","regulation of phagocytosis",7,2,2.15,1216,"0.68462","0.68121","0.6812" +"GO:0009952","anterior/posterior pattern specification",7,0,2.15,2293,"1.00000","0.68121","0.6812" +"GO:0019218","regulation of steroid metabolic process",4,2,1.23,679,"0.35982","0.68123","0.6812" +"GO:0046889","positive regulation of lipid biosyntheti...",4,2,1.23,680,"0.35982","0.68123","0.6812" +"GO:0050810","regulation of steroid biosynthetic proce...",4,2,1.23,681,"0.35982","0.68123","0.6812" +"GO:0106118","regulation of sterol biosynthetic proces...",4,2,1.23,682,"0.35982","0.68123","0.6812" +"GO:1902930","regulation of alcohol biosynthetic proce...",4,2,1.23,683,"0.35982","0.68123","0.6812" +"GO:0034248","regulation of cellular amide metabolic p...",19,5,5.82,1286,"0.73917","0.68201","0.6820" +"GO:0097529","myeloid leukocyte migration",4,2,1.23,684,"0.35982","0.68222","0.6822" +"GO:0007043","cell-cell junction assembly",6,1,1.84,1652,"0.88910","0.68231","0.6823" +"GO:0007424","open tracheal system development",6,2,1.84,955,"0.59408","0.68231","0.6823" +"GO:0045216","cell-cell junction organization",6,1,1.84,1653,"0.88910","0.68231","0.6823" +"GO:0072593","reactive oxygen species metabolic proces...",9,2,2.76,1484,"0.81589","0.68234","0.6823" +"GO:0019098","reproductive behavior",11,3,3.37,1258,"0.70434","0.68283","0.6828" +"GO:0007167","enzyme linked receptor protein signaling...",33,6,10.12,1920,"0.96599","0.68296","0.6830" +"GO:0000902","cell morphogenesis",52,12,15.94,1724,"0.91456","0.68329","0.6833" +"GO:0006473","protein acetylation",6,2,1.84,956,"0.59408","0.68434","0.6843" +"GO:0006475","internal protein amino acid acetylation",6,2,1.84,957,"0.59408","0.68434","0.6843" +"GO:0016573","histone acetylation",6,2,1.84,958,"0.59408","0.68434","0.6843" +"GO:0018393","internal peptidyl-lysine acetylation",6,2,1.84,959,"0.59408","0.68434","0.6843" +"GO:0018394","peptidyl-lysine acetylation",6,2,1.84,960,"0.59408","0.68434","0.6843" +"GO:0016049","cell growth",25,3,7.66,2056,"0.99273","0.68441","0.6844" +"GO:0030326","embryonic limb morphogenesis",3,1,0.92,1139,"0.66671","0.68460","0.6846" +"GO:0035113","embryonic appendage morphogenesis",3,1,0.92,1140,"0.66671","0.68460","0.6846" +"GO:0061311","cell surface receptor signaling pathway ...",3,1,0.92,1141,"0.66671","0.68460","0.6846" +"GO:0099173","postsynapse organization",10,3,3.07,1017,"0.63488","0.68507","0.6851" +"GO:0033043","regulation of organelle organization",63,13,19.31,1944,"0.97395","0.68609","0.6861" +"GO:0048468","cell development",124,32,38.01,1714,"0.90515","0.68730","0.6873" +"GO:0006325","chromatin organization",31,8,9.5,1432,"0.78074","0.68766","0.6877" +"GO:0051051","negative regulation of transport",16,2,4.9,1979,"0.97724","0.68776","0.6878" +"GO:0010469","regulation of signaling receptor activit...",6,2,1.84,961,"0.59408","0.68779","0.6878" +"GO:0098693","regulation of synaptic vesicle cycle",6,2,1.84,962,"0.59408","0.68779","0.6878" +"GO:0032640","tumor necrosis factor production",4,2,1.23,685,"0.35982","0.68818","0.6882" +"GO:0032680","regulation of tumor necrosis factor prod...",4,2,1.23,686,"0.35982","0.68818","0.6882" +"GO:0071706","tumor necrosis factor superfamily cytoki...",4,2,1.23,687,"0.35982","0.68818","0.6882" +"GO:1903555","regulation of tumor necrosis factor supe...",4,2,1.23,688,"0.35982","0.68818","0.6882" +"GO:0010506","regulation of autophagy",19,3,5.82,1892,"0.95974","0.68841","0.6884" +"GO:0043087","regulation of GTPase activity",15,1,4.6,2079,"0.99596","0.68921","0.6892" +"GO:0045930","negative regulation of mitotic cell cycl...",5,1,1.53,1532,"0.83993","0.69136","0.6914" +"GO:0006508","proteolysis",175,49,53.64,1446,"0.80887","0.69404","0.6940" +"GO:0031398","positive regulation of protein ubiquitin...",8,1,2.45,1834,"0.94680","0.69425","0.6942" +"GO:1903322","positive regulation of protein modificat...",8,1,2.45,1835,"0.94680","0.69425","0.6942" +"GO:0071897","DNA biosynthetic process",7,2,2.15,1217,"0.68462","0.69435","0.6943" +"GO:0006839","mitochondrial transport",37,8,11.34,1739,"0.92031","0.69451","0.6945" +"GO:0000280","nuclear division",10,2,3.07,1606,"0.86114","0.69542","0.6954" +"GO:0031960","response to corticosteroid",5,1,1.53,1533,"0.83993","0.69644","0.6964" +"GO:0032411","positive regulation of transporter activ...",5,1,1.53,1534,"0.83993","0.69644","0.6964" +"GO:0032414","positive regulation of ion transmembrane...",5,1,1.53,1535,"0.83993","0.69644","0.6964" +"GO:0034767","positive regulation of ion transmembrane...",5,1,1.53,1536,"0.83993","0.69644","0.6964" +"GO:1904064","positive regulation of cation transmembr...",5,1,1.53,1537,"0.83993","0.69644","0.6964" +"GO:2001259","positive regulation of cation channel ac...",5,1,1.53,1538,"0.83993","0.69644","0.6964" +"GO:0010646","regulation of cell communication",147,38,45.06,1741,"0.92034","0.69812","0.6981" +"GO:0033993","response to lipid",50,17,15.33,591,"0.35204","0.69842","0.6984" +"GO:0006606","protein import into nucleus",5,2,1.53,847,"0.48529","0.69953","0.6995" +"GO:0090559","regulation of membrane permeability",5,2,1.53,848,"0.48529","0.69953","0.6995" +"GO:1902850","microtubule cytoskeleton organization in...",5,2,1.53,849,"0.48529","0.69953","0.6995" +"GO:0050804","modulation of chemical synaptic transmis...",22,6,6.74,1269,"0.71078","0.70084","0.7008" +"GO:0099177","regulation of trans-synaptic signaling",22,6,6.74,1270,"0.71078","0.70084","0.7008" +"GO:0006825","copper ion transport",3,0,0.92,2294,"1.00000","0.70088","0.7009" +"GO:0035434","copper ion transmembrane transport",3,0,0.92,2295,"1.00000","0.70088","0.7009" +"GO:0016125","sterol metabolic process",12,5,3.68,562,"0.29345","0.70094","0.7009" +"GO:0010286","heat acclimation",3,1,0.92,1142,"0.66671","0.70202","0.7020" +"GO:0006935","chemotaxis",25,7,7.66,1241,"0.68606","0.70260","0.7026" +"GO:0048515","spermatid differentiation",14,2,4.29,1885,"0.95768","0.70313","0.7031" +"GO:0043547","positive regulation of GTPase activity",8,0,2.45,2296,"1.00000","0.70402","0.7040" +"GO:1902883","negative regulation of response to oxida...",8,5,2.45,133,"0.06289","0.05648","0.7041" +"GO:0032784","regulation of DNA-templated transcriptio...",3,1,0.92,1143,"0.66671","0.70486","0.7049" +"GO:0000375","RNA splicing, via transesterification re...",11,4,3.37,775,"0.44966","0.70626","0.7063" +"GO:0000377","RNA splicing, via transesterification re...",11,4,3.37,776,"0.44966","0.70626","0.7063" +"GO:0000398","mRNA splicing, via spliceosome",11,4,3.37,777,"0.44966","0.70626","0.7063" +"GO:0045921","positive regulation of exocytosis",4,0,1.23,2297,"1.00000","0.70644","0.7064" +"GO:0046849","bone remodeling",4,0,1.23,2298,"1.00000","0.70644","0.7064" +"GO:0046850","regulation of bone remodeling",4,0,1.23,2299,"1.00000","0.70644","0.7064" +"GO:0090382","phagosome maturation",4,0,1.23,2300,"1.00000","0.70644","0.7064" +"GO:0045595","regulation of cell differentiation",69,16,21.15,1801,"0.93596","0.70777","0.7078" +"GO:0060341","regulation of cellular localization",43,12,13.18,1266,"0.70739","0.70847","0.7085" +"GO:0007507","heart development",32,6,9.81,1880,"0.95756","0.70930","0.7093" +"GO:0048705","skeletal system morphogenesis",3,1,0.92,1144,"0.66671","0.71024","0.7102" +"GO:0006417","regulation of translation",17,4,5.21,1462,"0.81486","0.71025","0.7102" +"GO:0001558","regulation of cell growth",18,1,5.52,2129,"0.99866","0.71064","0.7106" +"GO:0043244","regulation of protein complex disassembl...",10,2,3.07,1607,"0.86114","0.71084","0.7108" +"GO:0071383","cellular response to steroid hormone sti...",20,7,6.13,743,"0.41701","0.71119","0.7112" +"GO:0010256","endomembrane system organization",26,5,7.97,1804,"0.93693","0.71142","0.7114" +"GO:0032940","secretion by cell",54,12,16.55,1810,"0.93798","0.71173","0.7117" +"GO:0017038","protein import",16,4,4.9,1426,"0.77238","0.71356","0.7136" +"GO:0006775","fat-soluble vitamin metabolic process",3,1,0.92,1145,"0.66671","0.71532","0.7153" +"GO:0006357","regulation of transcription by RNA polym...",56,14,17.17,1596,"0.85967","0.71588","0.7159" +"GO:0002253","activation of immune response",10,2,3.07,1608,"0.86114","0.71626","0.7163" +"GO:0008064","regulation of actin polymerization or de...",20,4,6.13,1705,"0.90475","0.71711","0.7171" +"GO:0008154","actin polymerization or depolymerization",20,4,6.13,1706,"0.90475","0.71711","0.7171" +"GO:0030041","actin filament polymerization",20,4,6.13,1707,"0.90475","0.71711","0.7171" +"GO:0030832","regulation of actin filament length",20,4,6.13,1708,"0.90475","0.71711","0.7171" +"GO:0030833","regulation of actin filament polymerizat...",20,4,6.13,1709,"0.90475","0.71711","0.7171" +"GO:0031334","positive regulation of protein complex a...",17,5,5.21,1001,"0.63434","0.71868","0.7187" +"GO:0007140","male meiotic nuclear division",3,0,0.92,2301,"1.00000","0.71870","0.7187" +"GO:0007419","ventral cord development",3,1,0.92,1146,"0.66671","0.71954","0.7195" +"GO:0008277","regulation of G protein-coupled receptor...",3,1,0.92,1147,"0.66671","0.71954","0.7195" +"GO:0035152","regulation of tube architecture, open tr...",3,1,0.92,1148,"0.66671","0.71954","0.7195" +"GO:0001708","cell fate specification",3,0,0.92,2302,"1.00000","0.71954","0.7195" +"GO:0002119","nematode larval development",3,0,0.92,2303,"1.00000","0.71954","0.7195" +"GO:0010770","positive regulation of cell morphogenesi...",3,0,0.92,2304,"1.00000","0.71954","0.7195" +"GO:0019827","stem cell population maintenance",3,0,0.92,2305,"1.00000","0.71954","0.7195" +"GO:0030718","germ-line stem cell population maintenan...",3,0,0.92,2306,"1.00000","0.71954","0.7195" +"GO:0031623","receptor internalization",3,0,0.92,2307,"1.00000","0.71954","0.7195" +"GO:0032594","protein transport within lipid bilayer",3,0,0.92,2308,"1.00000","0.71954","0.7195" +"GO:0043277","apoptotic cell clearance",3,0,0.92,2309,"1.00000","0.71954","0.7195" +"GO:0098727","maintenance of cell number",3,0,0.92,2310,"1.00000","0.71954","0.7195" +"GO:0006488","dolichol-linked oligosaccharide biosynth...",5,1,1.53,1539,"0.83993","0.71970","0.7197" +"GO:1903706","regulation of hemopoiesis",6,1,1.84,1654,"0.88910","0.71971","0.7197" +"GO:0002263","cell activation involved in immune respo...",6,0,1.84,2311,"1.00000","0.71971","0.7197" +"GO:0002275","myeloid cell activation involved in immu...",6,0,1.84,2312,"1.00000","0.71971","0.7197" +"GO:0002283","neutrophil activation involved in immune...",6,0,1.84,2313,"1.00000","0.71971","0.7197" +"GO:0002366","leukocyte activation involved in immune ...",6,0,1.84,2314,"1.00000","0.71971","0.7197" +"GO:0002444","myeloid leukocyte mediated immunity",6,0,1.84,2315,"1.00000","0.71971","0.7197" +"GO:0002446","neutrophil mediated immunity",6,0,1.84,2316,"1.00000","0.71971","0.7197" +"GO:0036230","granulocyte activation",6,0,1.84,2317,"1.00000","0.71971","0.7197" +"GO:0042119","neutrophil activation",6,0,1.84,2318,"1.00000","0.71971","0.7197" +"GO:0043299","leukocyte degranulation",6,0,1.84,2319,"1.00000","0.71971","0.7197" +"GO:0043312","neutrophil degranulation",6,0,1.84,2320,"1.00000","0.71971","0.7197" +"GO:0060711","labyrinthine layer development",3,1,0.92,1149,"0.66671","0.71982","0.7198" +"GO:0140029","exocytic process",9,1,2.76,1904,"0.96316","0.72012","0.7201" +"GO:0043401","steroid hormone mediated signaling pathw...",17,6,5.21,754,"0.42650","0.72069","0.7207" +"GO:0060795","cell fate commitment involved in formati...",3,0,0.92,2321,"1.00000","0.72123","0.7212" +"GO:1902680","positive regulation of RNA biosynthetic ...",35,9,10.73,1438,"0.79244","0.72138","0.7214" +"GO:0009891","positive regulation of biosynthetic proc...",50,15,15.33,925,"0.59396","0.72157","0.7216" +"GO:0002431","Fc receptor mediated stimulatory signali...",4,1,1.23,1385,"0.76900","0.72232","0.7223" +"GO:0048259","regulation of receptor-mediated endocyto...",4,1,1.23,1386,"0.76900","0.72232","0.7223" +"GO:0048260","positive regulation of receptor-mediated...",4,1,1.23,1387,"0.76900","0.72232","0.7223" +"GO:0051094","positive regulation of developmental pro...",56,16,17.17,1200,"0.68229","0.72279","0.7228" +"GO:0060322","head development",39,10,11.96,1443,"0.80330","0.72285","0.7228" +"GO:0030968","endoplasmic reticulum unfolded protein r...",9,2,2.76,1485,"0.81589","0.72466","0.7247" +"GO:0034620","cellular response to unfolded protein",9,2,2.76,1486,"0.81589","0.72466","0.7247" +"GO:0022411","cellular component disassembly",22,5,6.74,1591,"0.85227","0.72604","0.7260" +"GO:0006476","protein deacetylation",3,0,0.92,2322,"1.00000","0.72655","0.7265" +"GO:0021700","developmental maturation",10,1,3.07,1956,"0.97450","0.72657","0.7266" +"GO:0030099","myeloid cell differentiation",10,1,3.07,1957,"0.97450","0.72657","0.7266" +"GO:0048469","cell maturation",10,1,3.07,1958,"0.97450","0.72657","0.7266" +"GO:0043297","apical junction assembly",5,1,1.53,1540,"0.83993","0.72729","0.7273" +"GO:0120192","tight junction assembly",5,1,1.53,1541,"0.83993","0.72729","0.7273" +"GO:0120193","tight junction organization",5,1,1.53,1542,"0.83993","0.72729","0.7273" +"GO:0032386","regulation of intracellular transport",21,3,6.44,1976,"0.97691","0.72761","0.7276" +"GO:0043062","extracellular structure organization",11,3,3.37,1259,"0.70434","0.72819","0.7282" +"GO:0044087","regulation of cellular component biogene...",55,14,16.86,1511,"0.83992","0.73000","0.7300" +"GO:0006338","chromatin remodeling",5,1,1.53,1543,"0.83993","0.73075","0.7308" +"GO:1990504","dense core granule exocytosis",3,0,0.92,2323,"1.00000","0.73157","0.7316" +"GO:0050906","detection of stimulus involved in sensor...",8,2,2.45,1302,"0.75786","0.73160","0.7316" +"GO:0001754","eye photoreceptor cell differentiation",12,5,3.68,563,"0.29345","0.73182","0.7318" +"GO:0046530","photoreceptor cell differentiation",12,5,3.68,564,"0.29345","0.73182","0.7318" +"GO:1901136","carbohydrate derivative catabolic proces...",8,3,2.45,794,"0.46489","0.73194","0.7319" +"GO:0018196","peptidyl-asparagine modification",9,3,2.76,904,"0.55475","0.73256","0.7326" +"GO:0018279","protein N-linked glycosylation via aspar...",9,3,2.76,905,"0.55475","0.73256","0.7326" +"GO:0006437","tyrosyl-tRNA aminoacylation",3,0,0.92,2324,"1.00000","0.73296","0.7330" +"GO:0007606","sensory perception of chemical stimulus",7,2,2.15,1218,"0.68462","0.73314","0.7331" +"GO:0006954","inflammatory response",10,2,3.07,1609,"0.86114","0.73314","0.7331" +"GO:0051865","protein autoubiquitination",6,1,1.84,1655,"0.88910","0.73395","0.7339" +"GO:0008202","steroid metabolic process",24,9,7.36,569,"0.29857","0.73489","0.7349" +"GO:0032272","negative regulation of protein polymeriz...",9,2,2.76,1487,"0.81589","0.73561","0.7356" +"GO:0043242","negative regulation of protein complex d...",9,2,2.76,1488,"0.81589","0.73561","0.7356" +"GO:0006940","regulation of smooth muscle contraction",3,0,0.92,2325,"1.00000","0.73629","0.7363" +"GO:0045933","positive regulation of muscle contractio...",3,0,0.92,2326,"1.00000","0.73629","0.7363" +"GO:0048844","artery morphogenesis",3,0,0.92,2327,"1.00000","0.73629","0.7363" +"GO:0090100","positive regulation of transmembrane rec...",3,0,0.92,2328,"1.00000","0.73629","0.7363" +"GO:0001763","morphogenesis of a branching structure",5,1,1.53,1544,"0.83993","0.73635","0.7364" +"GO:0071695","anatomical structure maturation",6,0,1.84,2329,"1.00000","0.73650","0.7365" +"GO:0001890","placenta development",4,1,1.23,1388,"0.76900","0.73657","0.7366" +"GO:0001892","embryonic placenta development",4,1,1.23,1389,"0.76900","0.73657","0.7366" +"GO:0043462","regulation of ATPase activity",4,0,1.23,2330,"1.00000","0.73657","0.7366" +"GO:0001942","hair follicle development",3,1,0.92,1150,"0.66671","0.73684","0.7368" +"GO:0022404","molting cycle process",3,1,0.92,1151,"0.66671","0.73684","0.7368" +"GO:0022405","hair cycle process",3,1,0.92,1152,"0.66671","0.73684","0.7368" +"GO:0042633","hair cycle",3,1,0.92,1153,"0.66671","0.73684","0.7368" +"GO:0098773","skin epidermis development",3,1,0.92,1154,"0.66671","0.73684","0.7368" +"GO:0032456","endocytic recycling",7,2,2.15,1219,"0.68462","0.73696","0.7370" +"GO:0042493","response to drug",46,15,14.1,762,"0.44096","0.73784","0.7378" +"GO:0006413","translational initiation",15,4,4.6,1276,"0.72259","0.73961","0.7396" +"GO:0045893","positive regulation of transcription, DN...",34,9,10.42,1314,"0.76041","0.73964","0.7396" +"GO:1903508","positive regulation of nucleic acid-temp...",34,9,10.42,1315,"0.76041","0.73964","0.7396" +"GO:0051240","positive regulation of multicellular org...",55,18,16.86,744,"0.41806","0.74003","0.7400" +"GO:0045088","regulation of innate immune response",9,1,2.76,1905,"0.96316","0.74010","0.7401" +"GO:0060402","calcium ion transport into cytosol",3,1,0.92,1155,"0.66671","0.74182","0.7418" +"GO:1903169","regulation of calcium ion transmembrane ...",3,1,0.92,1156,"0.66671","0.74182","0.7418" +"GO:1902806","regulation of cell cycle G1/S phase tran...",5,2,1.53,850,"0.48529","0.74214","0.7421" +"GO:0015672","monovalent inorganic cation transport",68,30,20.84,55,"0.01206","0.02206","0.7422" +"GO:0045944","positive regulation of transcription by ...",27,7,8.28,1327,"0.76806","0.74282","0.7428" +"GO:0043407","negative regulation of MAP kinase activi...",3,0,0.92,2331,"1.00000","0.74320","0.7432" +"GO:0060548","negative regulation of cell death",39,16,11.96,236,"0.10893","0.20389","0.7442" +"GO:0006955","immune response",39,10,11.96,1444,"0.80330","0.74505","0.7450" +"GO:0006694","steroid biosynthetic process",19,7,5.82,596,"0.35761","0.74689","0.7469" +"GO:1903034","regulation of response to wounding",7,2,2.15,1220,"0.68462","0.74834","0.7483" +"GO:1903827","regulation of cellular protein localizat...",25,7,7.66,1242,"0.68606","0.74860","0.7486" +"GO:0009416","response to light stimulus",19,5,5.82,1287,"0.73917","0.74886","0.7489" +"GO:0015718","monocarboxylic acid transport",9,3,2.76,906,"0.55475","0.74932","0.7493" +"GO:0030323","respiratory tube development",7,2,2.15,1221,"0.68462","0.74959","0.7496" +"GO:0030324","lung development",7,2,2.15,1222,"0.68462","0.74959","0.7496" +"GO:0042052","rhabdomere development",3,1,0.92,1157,"0.66671","0.75061","0.7506" +"GO:0023051","regulation of signaling",150,39,45.98,1730,"0.91597","0.75079","0.7508" +"GO:2000147","positive regulation of cell motility",13,5,3.99,693,"0.36524","0.75123","0.7512" +"GO:0045444","fat cell differentiation",6,0,1.84,2332,"1.00000","0.75189","0.7519" +"GO:0007391","dorsal closure",3,0,0.92,2333,"1.00000","0.75198","0.7520" +"GO:1901264","carbohydrate derivative transport",6,2,1.84,963,"0.59408","0.75227","0.7523" +"GO:0042176","regulation of protein catabolic process",15,4,4.6,1277,"0.72259","0.75254","0.7525" +"GO:0051046","regulation of secretion",20,2,6.13,2063,"0.99365","0.75397","0.7540" +"GO:0023061","signal release",23,5,7.05,1624,"0.87950","0.75438","0.7544" +"GO:0045637","regulation of myeloid cell differentiati...",4,1,1.23,1390,"0.76900","0.75490","0.7549" +"GO:0009893","positive regulation of metabolic process",106,23,32.49,2018,"0.98647","0.75498","0.7550" +"GO:0040017","positive regulation of locomotion",18,6,5.52,856,"0.49023","0.75747","0.7575" +"GO:0018193","peptidyl-amino acid modification",53,14,16.25,1440,"0.79423","0.75772","0.7577" +"GO:0035315","hair cell differentiation",3,1,0.92,1158,"0.66671","0.75824","0.7582" +"GO:0043434","response to peptide hormone",13,4,3.99,988,"0.60001","0.75897","0.7590" +"GO:0097193","intrinsic apoptotic signaling pathway",15,4,4.6,1278,"0.72259","0.75901","0.7590" +"GO:0002262","myeloid cell homeostasis",5,1,1.53,1545,"0.83993","0.76036","0.7604" +"GO:0030218","erythrocyte differentiation",5,1,1.53,1546,"0.83993","0.76036","0.7604" +"GO:0033627","cell adhesion mediated by integrin",5,1,1.53,1547,"0.83993","0.76036","0.7604" +"GO:0034101","erythrocyte homeostasis",5,1,1.53,1548,"0.83993","0.76036","0.7604" +"GO:0009880","embryonic pattern specification",5,0,1.53,2334,"1.00000","0.76036","0.7604" +"GO:0035282","segmentation",5,0,1.53,2335,"1.00000","0.76036","0.7604" +"GO:0042391","regulation of membrane potential",10,3,3.07,1018,"0.63488","0.76055","0.7605" +"GO:1904029","regulation of cyclin-dependent protein k...",6,1,1.84,1656,"0.88910","0.76074","0.7607" +"GO:0009583","detection of light stimulus",7,2,2.15,1223,"0.68462","0.76083","0.7608" +"GO:0007584","response to nutrient",9,2,2.76,1489,"0.81589","0.76097","0.7610" +"GO:0035107","appendage morphogenesis",9,1,2.76,1906,"0.96316","0.76097","0.7610" +"GO:0030837","negative regulation of actin filament po...",8,2,2.45,1303,"0.75786","0.76123","0.7612" +"GO:1901879","regulation of protein depolymerization",8,2,2.45,1304,"0.75786","0.76123","0.7612" +"GO:1901880","negative regulation of protein depolymer...",8,2,2.45,1305,"0.75786","0.76123","0.7612" +"GO:0044085","cellular component biogenesis",179,44,54.87,1950,"0.97410","0.76168","0.7617" +"GO:0008356","asymmetric cell division",3,0,0.92,2336,"1.00000","0.76177","0.7618" +"GO:0017158","regulation of calcium ion-dependent exoc...",4,0,1.23,2337,"1.00000","0.76312","0.7631" +"GO:0048791","calcium ion-regulated exocytosis of neur...",4,0,1.23,2338,"1.00000","0.76312","0.7631" +"GO:1903305","regulation of regulated secretory pathwa...",4,0,1.23,2339,"1.00000","0.76312","0.7631" +"GO:0008285","negative regulation of cell proliferatio...",15,2,4.6,1930,"0.96891","0.76362","0.7636" +"GO:0044257","cellular protein catabolic process",55,11,16.86,1945,"0.97397","0.76421","0.7642" +"GO:0051603","proteolysis involved in cellular protein...",55,11,16.86,1946,"0.97397","0.76421","0.7642" +"GO:0006513","protein monoubiquitination",6,1,1.84,1657,"0.88910","0.76552","0.7655" +"GO:0006986","response to unfolded protein",14,4,4.29,1034,"0.66513","0.76703","0.7670" +"GO:0010950","positive regulation of endopeptidase act...",4,0,1.23,2340,"1.00000","0.76802","0.7680" +"GO:0042074","cell migration involved in gastrulation",4,0,1.23,2341,"1.00000","0.76802","0.7680" +"GO:2001056","positive regulation of cysteine-type end...",4,0,1.23,2342,"1.00000","0.76802","0.7680" +"GO:0009584","detection of visible light",6,2,1.84,964,"0.59408","0.76837","0.7684" +"GO:0007286","spermatid development",13,2,3.99,1819,"0.94262","0.77026","0.7703" +"GO:0033157","regulation of intracellular protein tran...",13,2,3.99,1820,"0.94262","0.77026","0.7703" +"GO:0014046","dopamine secretion",3,0,0.92,2343,"1.00000","0.77065","0.7706" +"GO:0014059","regulation of dopamine secretion",3,0,0.92,2344,"1.00000","0.77065","0.7706" +"GO:0015844","monoamine transport",3,0,0.92,2345,"1.00000","0.77065","0.7706" +"GO:0015872","dopamine transport",3,0,0.92,2346,"1.00000","0.77065","0.7706" +"GO:0050432","catecholamine secretion",3,0,0.92,2347,"1.00000","0.77065","0.7706" +"GO:0050433","regulation of catecholamine secretion",3,0,0.92,2348,"1.00000","0.77065","0.7706" +"GO:0051937","catecholamine transport",3,0,0.92,2349,"1.00000","0.77065","0.7706" +"GO:1903307","positive regulation of regulated secreto...",3,0,0.92,2350,"1.00000","0.77065","0.7706" +"GO:1990926","short-term synaptic potentiation",3,0,0.92,2351,"1.00000","0.77065","0.7706" +"GO:0032984","protein-containing complex disassembly",20,5,6.13,1435,"0.78255","0.77067","0.7707" +"GO:0007389","pattern specification process",30,6,9.2,1799,"0.93484","0.77147","0.7715" +"GO:0031338","regulation of vesicle fusion",3,0,0.92,2352,"1.00000","0.77225","0.7723" +"GO:0008045","motor neuron axon guidance",3,1,0.92,1159,"0.66671","0.77359","0.7736" +"GO:0006979","response to oxidative stress",37,14,11.34,348,"0.21647","0.28325","0.7755" +"GO:0065002","intracellular protein transmembrane tran...",12,1,3.68,2025,"0.98778","0.77671","0.7767" +"GO:0061008","hepaticobiliary system development",4,0,1.23,2353,"1.00000","0.77888","0.7789" +"GO:0007041","lysosomal transport",10,2,3.07,1610,"0.86114","0.77892","0.7789" +"GO:0006520","cellular amino acid metabolic process",73,28,22.38,215,"0.09493","0.06797","0.7799" +"GO:0001667","ameboidal-type cell migration",14,2,4.29,1886,"0.95768","0.78002","0.7800" +"GO:0050806","positive regulation of synaptic transmis...",8,2,2.45,1306,"0.75786","0.78026","0.7803" +"GO:0032872","regulation of stress-activated MAPK casc...",6,1,1.84,1658,"0.88910","0.78174","0.7817" +"GO:0048520","positive regulation of behavior",6,2,1.84,965,"0.59408","0.78174","0.7817" +"GO:0070302","regulation of stress-activated protein k...",6,1,1.84,1659,"0.88910","0.78174","0.7817" +"GO:0061136","regulation of proteasomal protein catabo...",13,4,3.99,989,"0.60001","0.78178","0.7818" +"GO:1903050","regulation of proteolysis involved in ce...",13,4,3.99,990,"0.60001","0.78178","0.7818" +"GO:1903362","regulation of cellular protein catabolic...",13,4,3.99,991,"0.60001","0.78178","0.7818" +"GO:0035266","meristem growth",4,1,1.23,1391,"0.76900","0.78277","0.7828" +"GO:0043090","amino acid import",3,0,0.92,2354,"1.00000","0.78287","0.7829" +"GO:0016192","vesicle-mediated transport",145,31,44.45,2086,"0.99617","0.78387","0.7839" +"GO:0043902","positive regulation of multi-organism pr...",14,5,4.29,760,"0.43721","0.78431","0.7843" +"GO:0034762","regulation of transmembrane transport",21,5,6.44,1502,"0.82012","0.78461","0.7846" +"GO:0045732","positive regulation of protein catabolic...",8,2,2.45,1307,"0.75786","0.78479","0.7848" +"GO:0065008","regulation of biological quality",204,65,62.53,731,"0.37460","0.43511","0.7858" +"GO:0015807","L-amino acid transport",9,2,2.76,1490,"0.81589","0.78625","0.7863" +"GO:0046890","regulation of lipid biosynthetic process",9,3,2.76,907,"0.55475","0.78761","0.7876" +"GO:0097306","cellular response to alcohol",9,2,2.76,1491,"0.81589","0.78761","0.7876" +"GO:0030042","actin filament depolymerization",7,2,2.15,1224,"0.68462","0.78772","0.7877" +"GO:0030834","regulation of actin filament depolymeriz...",7,2,2.15,1225,"0.68462","0.78772","0.7877" +"GO:0030835","negative regulation of actin filament de...",7,2,2.15,1226,"0.68462","0.78772","0.7877" +"GO:0007059","chromosome segregation",5,0,1.53,2355,"1.00000","0.78843","0.7884" +"GO:0015850","organic hydroxy compound transport",11,2,3.37,1687,"0.89599","0.78844","0.7884" +"GO:0060284","regulation of cell development",41,7,12.57,2016,"0.98515","0.78963","0.7896" +"GO:0030150","protein import into mitochondrial matrix",4,0,1.23,2356,"1.00000","0.79095","0.7909" +"GO:0010033","response to organic substance",120,33,36.78,1445,"0.80715","0.79207","0.7921" +"GO:0007420","brain development",37,10,11.34,1288,"0.74152","0.79225","0.7923" +"GO:0043624","cellular protein complex disassembly",17,4,5.21,1463,"0.81486","0.79259","0.7926" +"GO:0051128","regulation of cellular component organiz...",114,23,34.95,2089,"0.99632","0.79322","0.7932" +"GO:0009887","animal organ morphogenesis",50,12,15.33,1630,"0.88415","0.79435","0.7943" +"GO:0007156","homophilic cell adhesion via plasma memb...",3,1,0.92,1160,"0.66671","0.79437","0.7944" +"GO:0000413","protein peptidyl-prolyl isomerization",5,2,1.53,851,"0.48529","0.79489","0.7949" +"GO:0018208","peptidyl-proline modification",5,2,1.53,852,"0.48529","0.79489","0.7949" +"GO:0071216","cellular response to biotic stimulus",7,2,2.15,1227,"0.68462","0.79489","0.7949" +"GO:0007283","spermatogenesis",24,2,7.36,2122,"0.99829","0.79590","0.7959" +"GO:0048193","Golgi vesicle transport",28,6,8.58,1694,"0.90192","0.79685","0.7969" +"GO:0051693","actin filament capping",6,2,1.84,966,"0.59408","0.79964","0.7996" +"GO:0007010","cytoskeleton organization",79,19,24.22,1778,"0.92459","0.79964","0.7996" +"GO:0070588","calcium ion transmembrane transport",14,5,4.29,761,"0.43721","0.80036","0.8004" +"GO:0043603","cellular amide metabolic process",197,32,60.39,2175,"1.00000","0.76917","0.8007" +"GO:0016311","dephosphorylation",37,8,11.34,1740,"0.92031","0.80107","0.8011" +"GO:0046323","glucose import",5,0,1.53,2357,"1.00000","0.80148","0.8015" +"GO:0046324","regulation of glucose import",5,0,1.53,2358,"1.00000","0.80148","0.8015" +"GO:0080134","regulation of response to stress",53,15,16.25,1253,"0.69563","0.37385","0.8016" +"GO:0010171","body morphogenesis",4,1,1.23,1392,"0.76900","0.80325","0.8033" +"GO:0001756","somitogenesis",4,0,1.23,2359,"1.00000","0.80325","0.8033" +"GO:0002521","leukocyte differentiation",4,0,1.23,2360,"1.00000","0.80325","0.8033" +"GO:0061053","somite development",4,0,1.23,2361,"1.00000","0.80325","0.8033" +"GO:2000243","positive regulation of reproductive proc...",4,0,1.23,2362,"1.00000","0.80325","0.8033" +"GO:1902017","regulation of cilium assembly",5,0,1.53,2363,"1.00000","0.80327","0.8033" +"GO:0051188","cofactor biosynthetic process",49,26,15.02,17,"0.00080","0.00141","0.8037" +"GO:0043269","regulation of ion transport",24,7,7.36,1021,"0.63876","0.80575","0.8058" +"GO:0097428","protein maturation by iron-sulfur cluste...",3,0,0.92,2364,"1.00000","0.80620","0.8062" +"GO:0009163","nucleoside biosynthetic process",4,0,1.23,2365,"1.00000","0.80701","0.8070" +"GO:0042455","ribonucleoside biosynthetic process",4,0,1.23,2366,"1.00000","0.80701","0.8070" +"GO:1901659","glycosyl compound biosynthetic process",4,0,1.23,2367,"1.00000","0.80701","0.8070" +"GO:0044091","membrane biogenesis",7,2,2.15,1228,"0.68462","0.80783","0.8078" +"GO:0034764","positive regulation of transmembrane tra...",8,1,2.45,1836,"0.94680","0.80870","0.8087" +"GO:0043270","positive regulation of ion transport",8,1,2.45,1837,"0.94680","0.80870","0.8087" +"GO:0009790","embryo development",56,8,17.17,2130,"0.99877","0.80891","0.8089" +"GO:0002064","epithelial cell development",17,4,5.21,1464,"0.81486","0.80957","0.8096" +"GO:1905475","regulation of protein localization to me...",7,2,2.15,1229,"0.68462","0.81132","0.8113" +"GO:0006511","ubiquitin-dependent protein catabolic pr...",42,8,12.87,1935,"0.96998","0.81152","0.8115" +"GO:0019941","modification-dependent protein catabolic...",42,8,12.87,1936,"0.96998","0.81152","0.8115" +"GO:0043632","modification-dependent macromolecule cat...",42,8,12.87,1937,"0.96998","0.81152","0.8115" +"GO:0045137","development of primary sexual characteri...",4,1,1.23,1393,"0.76900","0.81206","0.8121" +"GO:0010556","regulation of macromolecule biosynthetic...",194,43,59.47,2107,"0.99765","0.81335","0.8133" +"GO:0099003","vesicle-mediated transport in synapse",17,4,5.21,1465,"0.81486","0.81403","0.8140" +"GO:0007369","gastrulation",13,2,3.99,1821,"0.94262","0.81514","0.8151" +"GO:0006022","aminoglycan metabolic process",17,4,5.21,1466,"0.81486","0.81541","0.8154" +"GO:0048881","mechanosensory lateral line system devel...",4,0,1.23,2368,"1.00000","0.81576","0.8158" +"GO:0048882","lateral line development",4,0,1.23,2369,"1.00000","0.81576","0.8158" +"GO:0048925","lateral line system development",4,0,1.23,2370,"1.00000","0.81576","0.8158" +"GO:0044770","cell cycle phase transition",16,5,4.9,919,"0.57321","0.81612","0.8161" +"GO:0007340","acrosome reaction",3,0,0.92,2371,"1.00000","0.81655","0.8165" +"GO:0042594","response to starvation",15,3,4.6,1634,"0.88467","0.81855","0.8186" +"GO:0006354","DNA-templated transcription, elongation",4,1,1.23,1394,"0.76900","0.81879","0.8188" +"GO:0002237","response to molecule of bacterial origin",6,2,1.84,967,"0.59408","0.81882","0.8188" +"GO:0032496","response to lipopolysaccharide",6,2,1.84,968,"0.59408","0.81882","0.8188" +"GO:2000112","regulation of cellular macromolecule bio...",192,43,58.86,2096,"0.99688","0.81926","0.8193" +"GO:0099402","plant organ development",5,1,1.53,1549,"0.83993","0.81931","0.8193" +"GO:0007034","vacuolar transport",17,3,5.21,1786,"0.93110","0.81951","0.8195" +"GO:0098655","cation transmembrane transport",69,30,21.15,67,"0.01526","0.01995","0.8201" +"GO:0001501","skeletal system development",11,3,3.37,1260,"0.70434","0.82074","0.8207" +"GO:0060560","developmental growth involved in morphog...",13,2,3.99,1822,"0.94262","0.82186","0.8219" +"GO:0008089","anterograde axonal transport",3,1,0.92,1161,"0.66671","0.82202","0.8220" +"GO:0015918","sterol transport",9,1,2.76,1907,"0.96316","0.82339","0.8234" +"GO:0045646","regulation of erythrocyte differentiatio...",3,1,0.92,1162,"0.66671","0.82376","0.8238" +"GO:0051493","regulation of cytoskeleton organization",34,9,10.42,1316,"0.76041","0.82398","0.8240" +"GO:0051961","negative regulation of nervous system de...",8,0,2.45,2372,"1.00000","0.82615","0.8262" +"GO:0019991","septate junction assembly",3,0,0.92,2373,"1.00000","0.82622","0.8262" +"GO:0050829","defense response to Gram-negative bacter...",3,0,0.92,2374,"1.00000","0.82622","0.8262" +"GO:0030163","protein catabolic process",67,16,20.54,1727,"0.91475","0.82629","0.8263" +"GO:0016569","covalent chromatin modification",21,5,6.44,1503,"0.82012","0.82653","0.8265" +"GO:0071705","nitrogen compound transport",148,37,45.37,1868,"0.95074","0.82671","0.8267" +"GO:0044057","regulation of system process",23,8,7.05,742,"0.40843","0.82741","0.8274" +"GO:0035065","regulation of histone acetylation",3,1,0.92,1163,"0.66671","0.82745","0.8274" +"GO:0043966","histone H3 acetylation",3,1,0.92,1164,"0.66671","0.82745","0.8274" +"GO:1901983","regulation of protein acetylation",3,1,0.92,1165,"0.66671","0.82745","0.8274" +"GO:2000756","regulation of peptidyl-lysine acetylatio...",3,1,0.92,1166,"0.66671","0.82745","0.8274" +"GO:0007417","central nervous system development",47,13,14.41,1280,"0.72441","0.82787","0.8279" +"GO:0006886","intracellular protein transport",89,19,27.28,2006,"0.98276","0.82901","0.8290" +"GO:0001889","liver development",3,0,0.92,2375,"1.00000","0.82916","0.8292" +"GO:0040008","regulation of growth",31,3,9.5,2132,"0.99882","0.82946","0.8295" +"GO:0032387","negative regulation of intracellular tra...",7,2,2.15,1230,"0.68462","0.82954","0.8295" +"GO:1901990","regulation of mitotic cell cycle phase t...",7,2,2.15,1231,"0.68462","0.82954","0.8295" +"GO:0043409","negative regulation of MAPK cascade",8,1,2.45,1838,"0.94680","0.83006","0.8301" +"GO:0006188","IMP biosynthetic process",4,3,1.23,211,"0.08855","0.03737","0.8303" +"GO:0032365","intracellular lipid transport",7,1,2.15,1767,"0.92318","0.83066","0.8307" +"GO:0000422","autophagy of mitochondrion",3,0,0.92,2376,"1.00000","0.83135","0.8314" +"GO:0061726","mitochondrion disassembly",3,0,0.92,2377,"1.00000","0.83135","0.8314" +"GO:1903008","organelle disassembly",3,0,0.92,2378,"1.00000","0.83135","0.8314" +"GO:0035295","tube development",40,8,12.26,1876,"0.95507","0.83243","0.8324" +"GO:0051050","positive regulation of transport",42,7,12.87,2032,"0.98818","0.83254","0.8325" +"GO:0045664","regulation of neuron differentiation",33,5,10.12,2033,"0.98824","0.83302","0.8330" +"GO:0030838","positive regulation of actin filament po...",11,2,3.37,1688,"0.89599","0.83344","0.8334" +"GO:0010608","posttranscriptional regulation of gene e...",25,8,7.66,866,"0.51715","0.83390","0.8339" +"GO:1901800","positive regulation of proteasomal prote...",6,2,1.84,969,"0.59408","0.83393","0.8339" +"GO:1903052","positive regulation of proteolysis invol...",6,2,1.84,970,"0.59408","0.83393","0.8339" +"GO:1903364","positive regulation of cellular protein ...",6,2,1.84,971,"0.59408","0.83393","0.8339" +"GO:0033013","tetrapyrrole metabolic process",10,1,3.07,1959,"0.97450","0.83435","0.8343" +"GO:0032388","positive regulation of intracellular tra...",12,2,3.68,1749,"0.92255","0.83442","0.8344" +"GO:0032970","regulation of actin filament-based proce...",36,9,11.04,1504,"0.82121","0.83473","0.8347" +"GO:0009894","regulation of catabolic process",40,9,12.26,1715,"0.90658","0.83523","0.8352" +"GO:0043412","macromolecule modification",312,67,95.64,2165,"0.99996","0.83556","0.8356" +"GO:0007051","spindle organization",6,2,1.84,972,"0.59408","0.83564","0.8356" +"GO:0045471","response to ethanol",6,2,1.84,973,"0.59408","0.83564","0.8356" +"GO:0044267","cellular protein metabolic process",498,82,152.66,2190,"1.00000","0.83921","0.8392" +"GO:0046887","positive regulation of hormone secretion",5,1,1.53,1550,"0.83993","0.83991","0.8399" +"GO:0042330","taxis",26,7,7.97,1281,"0.72919","0.84082","0.8408" +"GO:0006612","protein targeting to membrane",6,2,1.84,974,"0.59408","0.84274","0.8427" +"GO:0061572","actin filament bundle organization",7,1,2.15,1768,"0.92318","0.84279","0.8428" +"GO:0030038","contractile actin filament bundle assemb...",5,1,1.53,1551,"0.83993","0.84286","0.8429" +"GO:0043149","stress fiber assembly",5,1,1.53,1552,"0.83993","0.84286","0.8429" +"GO:0110020","regulation of actomyosin structure organ...",5,1,1.53,1553,"0.83993","0.84286","0.8429" +"GO:0006464","cellular protein modification process",297,66,91.04,2159,"0.99978","0.84384","0.8438" +"GO:0036211","protein modification process",297,66,91.04,2160,"0.99978","0.84384","0.8438" +"GO:0007044","cell-substrate junction assembly",4,1,1.23,1395,"0.76900","0.84466","0.8447" +"GO:0006518","peptide metabolic process",174,18,53.34,2185,"1.00000","0.84642","0.8464" +"GO:0032879","regulation of localization",121,28,37.09,1975,"0.97613","0.84677","0.8468" +"GO:0048588","developmental cell growth",11,0,3.37,2379,"1.00000","0.84716","0.8472" +"GO:0045010","actin nucleation",10,2,3.07,1611,"0.86114","0.84741","0.8474" +"GO:0002687","positive regulation of leukocyte migrati...",3,1,0.92,1167,"0.66671","0.84853","0.8485" +"GO:0002696","positive regulation of leukocyte activat...",3,1,0.92,1168,"0.66671","0.84853","0.8485" +"GO:0010172","embryonic body morphogenesis",3,1,0.92,1169,"0.66671","0.84853","0.8485" +"GO:0050867","positive regulation of cell activation",3,1,0.92,1170,"0.66671","0.84853","0.8485" +"GO:0051251","positive regulation of lymphocyte activa...",3,1,0.92,1171,"0.66671","0.84853","0.8485" +"GO:0001818","negative regulation of cytokine producti...",3,0,0.92,2380,"1.00000","0.84853","0.8485" +"GO:0010324","membrane invagination",3,0,0.92,2381,"1.00000","0.84853","0.8485" +"GO:0022416","chaeta development",3,0,0.92,2382,"1.00000","0.84853","0.8485" +"GO:0042098","T cell proliferation",3,0,0.92,2383,"1.00000","0.84853","0.8485" +"GO:0042129","regulation of T cell proliferation",3,0,0.92,2384,"1.00000","0.84853","0.8485" +"GO:0043029","T cell homeostasis",3,0,0.92,2385,"1.00000","0.84853","0.8485" +"GO:0051125","regulation of actin nucleation",3,0,0.92,2386,"1.00000","0.84853","0.8485" +"GO:0051127","positive regulation of actin nucleation",3,0,0.92,2387,"1.00000","0.84853","0.8485" +"GO:0072583","clathrin-dependent endocytosis",3,0,0.92,2388,"1.00000","0.84853","0.8485" +"GO:1901046","positive regulation of oviposition",3,0,0.92,2389,"1.00000","0.84853","0.8485" +"GO:0002833","positive regulation of response to bioti...",4,1,1.23,1396,"0.76900","0.84873","0.8487" +"GO:0071554","cell wall organization or biogenesis",5,1,1.53,1554,"0.83993","0.84907","0.8491" +"GO:0034308","primary alcohol metabolic process",7,2,2.15,1232,"0.68462","0.84926","0.8493" +"GO:0045834","positive regulation of lipid metabolic p...",7,2,2.15,1233,"0.68462","0.84926","0.8493" +"GO:0016570","histone modification",18,4,5.52,1580,"0.85060","0.84951","0.8495" +"GO:0006778","porphyrin-containing compound metabolic ...",9,1,2.76,1908,"0.96316","0.84965","0.8497" +"GO:0006109","regulation of carbohydrate metabolic pro...",6,1,1.84,1660,"0.88910","0.84990","0.8499" +"GO:0017148","negative regulation of translation",3,0,0.92,2390,"1.00000","0.84994","0.8499" +"GO:0034249","negative regulation of cellular amide me...",3,0,0.92,2391,"1.00000","0.84994","0.8499" +"GO:0014070","response to organic cyclic compound",42,13,12.87,884,"0.54191","0.85004","0.8500" +"GO:0010817","regulation of hormone levels",26,7,7.97,1282,"0.72919","0.85016","0.8502" +"GO:0006333","chromatin assembly or disassembly",3,1,0.92,1172,"0.66671","0.85017","0.8502" +"GO:0048729","tissue morphogenesis",35,5,10.73,2059,"0.99297","0.85202","0.8520" +"GO:0048608","reproductive structure development",16,3,4.9,1720,"0.91059","0.85268","0.8527" +"GO:0050808","synapse organization",24,6,7.36,1439,"0.79276","0.85274","0.8527" +"GO:0002009","morphogenesis of an epithelium",32,5,9.81,2014,"0.98487","0.85292","0.8529" +"GO:0035239","tube morphogenesis",32,6,9.81,1881,"0.95756","0.85292","0.8529" +"GO:0009889","regulation of biosynthetic process",206,46,63.15,2111,"0.99787","0.85318","0.8532" +"GO:0051258","protein polymerization",27,7,8.28,1328,"0.76806","0.85399","0.8540" +"GO:0001738","morphogenesis of a polarized epithelium",11,3,3.37,1261,"0.70434","0.85422","0.8542" +"GO:0007164","establishment of tissue polarity",11,3,3.37,1262,"0.70434","0.85422","0.8542" +"GO:0046545","development of primary female sexual cha...",3,1,0.92,1173,"0.66671","0.85550","0.8555" +"GO:0046660","female sex differentiation",3,1,0.92,1174,"0.66671","0.85550","0.8555" +"GO:0060996","dendritic spine development",7,2,2.15,1234,"0.68462","0.85670","0.8567" +"GO:0060998","regulation of dendritic spine developmen...",7,2,2.15,1235,"0.68462","0.85670","0.8567" +"GO:1901988","negative regulation of cell cycle phase ...",3,1,0.92,1175,"0.66671","0.85687","0.8569" +"GO:1901991","negative regulation of mitotic cell cycl...",3,1,0.92,1176,"0.66671","0.85687","0.8569" +"GO:1901987","regulation of cell cycle phase transitio...",8,3,2.45,795,"0.46489","0.85843","0.8584" +"GO:0031329","regulation of cellular catabolic process",38,9,11.65,1619,"0.86945","0.85872","0.8587" +"GO:0006950","response to stress",192,60,58.86,778,"0.45466","0.68606","0.8588" +"GO:0044089","positive regulation of cellular componen...",31,8,9.5,1433,"0.78074","0.85952","0.8595" +"GO:2000241","regulation of reproductive process",9,1,2.76,1909,"0.96316","0.85965","0.8596" +"GO:2000026","regulation of multicellular organismal d...",75,19,22.99,1622,"0.87458","0.86061","0.8606" +"GO:0007040","lysosome organization",7,2,2.15,1236,"0.68462","0.86088","0.8609" +"GO:0080171","lytic vacuole organization",7,2,2.15,1237,"0.68462","0.86088","0.8609" +"GO:1903530","regulation of secretion by cell",17,1,5.21,2114,"0.99807","0.86133","0.8613" +"GO:0034314","Arp2/3 complex-mediated actin nucleation",9,2,2.76,1492,"0.81589","0.86161","0.8616" +"GO:0060429","epithelium development",53,9,16.25,2057,"0.99288","0.86163","0.8616" +"GO:0042221","response to chemical",184,49,56.4,1717,"0.90700","0.82732","0.8619" +"GO:0002011","morphogenesis of an epithelial sheet",3,1,0.92,1177,"0.66671","0.86211","0.8621" +"GO:0001666","response to hypoxia",12,3,3.68,1321,"0.76320","0.86366","0.8637" +"GO:0036293","response to decreased oxygen levels",12,3,3.68,1322,"0.76320","0.86366","0.8637" +"GO:0070482","response to oxygen levels",12,3,3.68,1323,"0.76320","0.86366","0.8637" +"GO:0070534","protein K63-linked ubiquitination",3,1,0.92,1178,"0.66671","0.86414","0.8641" +"GO:0002181","cytoplasmic translation",6,0,1.84,2392,"1.00000","0.86464","0.8646" +"GO:0051246","regulation of protein metabolic process",90,20,27.59,1943,"0.97312","0.86473","0.8647" +"GO:0033014","tetrapyrrole biosynthetic process",8,1,2.45,1839,"0.94680","0.86523","0.8652" +"GO:0090068","positive regulation of cell cycle proces...",5,2,1.53,853,"0.48529","0.86712","0.8671" +"GO:0001655","urogenital system development",18,5,5.52,1248,"0.68977","0.86854","0.8685" +"GO:0006213","pyrimidine nucleoside metabolic process",3,0,0.92,2393,"1.00000","0.86860","0.8686" +"GO:0046131","pyrimidine ribonucleoside metabolic proc...",3,0,0.92,2394,"1.00000","0.86860","0.8686" +"GO:0008283","cell proliferation",51,9,15.63,2035,"0.98901","0.86936","0.8694" +"GO:0070925","organelle assembly",51,16,15.63,865,"0.50869","0.86936","0.8694" +"GO:0002526","acute inflammatory response",4,1,1.23,1397,"0.76900","0.86944","0.8694" +"GO:0031326","regulation of cellular biosynthetic proc...",200,43,61.31,2134,"0.99903","0.86957","0.8696" +"GO:0010948","negative regulation of cell cycle proces...",5,2,1.53,854,"0.48529","0.86970","0.8697" +"GO:0033365","protein localization to organelle",50,11,15.33,1802,"0.93655","0.86979","0.8698" +"GO:2001141","regulation of RNA biosynthetic process",174,37,53.34,2126,"0.99846","0.87132","0.8713" +"GO:0032873","negative regulation of stress-activated ...",3,1,0.92,1179,"0.66671","0.87147","0.8715" +"GO:0061097","regulation of protein tyrosine kinase ac...",3,1,0.92,1180,"0.66671","0.87147","0.8715" +"GO:0070303","negative regulation of stress-activated ...",3,1,0.92,1181,"0.66671","0.87147","0.8715" +"GO:0120036","plasma membrane bounded cell projection ...",76,17,23.3,1896,"0.96040","0.87285","0.8729" +"GO:0043113","receptor clustering",3,1,0.92,1182,"0.66671","0.87345","0.8734" +"GO:0051270","regulation of cellular component movemen...",31,8,9.5,1434,"0.78074","0.87362","0.8736" +"GO:0043065","positive regulation of apoptotic process",19,2,5.82,2044,"0.99123","0.87392","0.8739" +"GO:0043068","positive regulation of programmed cell d...",19,2,5.82,2045,"0.99123","0.87392","0.8739" +"GO:0006355","regulation of transcription, DNA-templat...",173,37,53.03,2120,"0.99821","0.87412","0.8741" +"GO:1903506","regulation of nucleic acid-templated tra...",173,37,53.03,2121,"0.99821","0.87412","0.8741" +"GO:0030301","cholesterol transport",5,1,1.53,1555,"0.83993","0.87598","0.8760" +"GO:0036314","response to sterol",5,0,1.53,2395,"1.00000","0.87598","0.8760" +"GO:0036315","cellular response to sterol",5,0,1.53,2396,"1.00000","0.87598","0.8760" +"GO:0051224","negative regulation of protein transport",7,1,2.15,1769,"0.92318","0.87614","0.8761" +"GO:0016197","endosomal transport",21,3,6.44,1977,"0.97691","0.87636","0.8764" +"GO:0040007","growth",48,8,14.71,2051,"0.99180","0.87670","0.8767" +"GO:0061024","membrane organization",48,10,14.71,1874,"0.95474","0.87670","0.8767" +"GO:0031347","regulation of defense response",12,2,3.68,1750,"0.92255","0.87779","0.8778" +"GO:2001235","positive regulation of apoptotic signali...",8,2,2.45,1308,"0.75786","0.87829","0.8783" +"GO:0044265","cellular macromolecule catabolic process",74,15,22.68,2013,"0.98478","0.87902","0.8790" +"GO:0016477","cell migration",46,11,14.1,1623,"0.87932","0.87908","0.8791" +"GO:0008654","phospholipid biosynthetic process",29,5,8.89,1924,"0.96850","0.87910","0.8791" +"GO:0048232","male gamete generation",26,2,7.97,2136,"0.99912","0.87966","0.8797" +"GO:0097305","response to alcohol",18,5,5.52,1249,"0.68977","0.87988","0.8799" +"GO:0062012","regulation of small molecule metabolic p...",11,3,3.37,1263,"0.70434","0.88052","0.8805" +"GO:0051241","negative regulation of multicellular org...",28,1,8.58,2167,"0.99997","0.88156","0.8816" +"GO:0007178","transmembrane receptor protein serine/th...",20,2,6.13,2064,"0.99365","0.88202","0.8820" +"GO:0048872","homeostasis of number of cells",10,2,3.07,1612,"0.86114","0.88229","0.8823" +"GO:0051321","meiotic cell cycle",11,0,3.37,2397,"1.00000","0.88319","0.8832" +"GO:0035418","protein localization to synapse",4,1,1.23,1398,"0.76900","0.88351","0.8835" +"GO:0090277","positive regulation of peptide hormone s...",4,1,1.23,1399,"0.76900","0.88351","0.8835" +"GO:0007613","memory",8,0,2.45,2398,"1.00000","0.88353","0.8835" +"GO:0072594","establishment of protein localization to...",33,7,10.12,1734,"0.91965","0.88374","0.8837" +"GO:0010647","positive regulation of cell communicatio...",55,11,16.86,1947,"0.97397","0.88401","0.8840" +"GO:0023056","positive regulation of signaling",55,11,16.86,1948,"0.97397","0.88401","0.8840" +"GO:0008219","cell death",80,25,24.52,858,"0.49631","0.72729","0.8842" +"GO:0007006","mitochondrial membrane organization",9,2,2.76,1493,"0.81589","0.88426","0.8843" +"GO:0006783","heme biosynthetic process",4,1,1.23,1400,"0.76900","0.88460","0.8846" +"GO:0042168","heme metabolic process",4,1,1.23,1401,"0.76900","0.88460","0.8846" +"GO:0008306","associative learning",6,0,1.84,2399,"1.00000","0.88615","0.8861" +"GO:0048568","embryonic organ development",20,2,6.13,2065,"0.99365","0.88685","0.8869" +"GO:0016310","phosphorylation",173,35,53.03,2140,"0.99948","0.88728","0.8873" +"GO:0009057","macromolecule catabolic process",85,19,26.06,1922,"0.96786","0.88737","0.8874" +"GO:0007005","mitochondrion organization",48,8,14.71,2052,"0.99180","0.88775","0.8877" +"GO:0030855","epithelial cell differentiation",26,5,7.97,1805,"0.93693","0.88824","0.8882" +"GO:0032268","regulation of cellular protein metabolic...",87,18,26.67,2022,"0.98743","0.88859","0.8886" +"GO:0046834","lipid phosphorylation",7,1,2.15,1770,"0.92318","0.88880","0.8888" +"GO:0046854","phosphatidylinositol phosphorylation",7,1,2.15,1771,"0.92318","0.88880","0.8888" +"GO:0012501","programmed cell death",71,21,21.76,994,"0.62388","0.88926","0.8893" +"GO:0050890","cognition",17,1,5.21,2115,"0.99807","0.88931","0.8893" +"GO:0009187","cyclic nucleotide metabolic process",8,2,2.45,1309,"0.75786","0.88956","0.8896" +"GO:0009190","cyclic nucleotide biosynthetic process",8,2,2.45,1310,"0.75786","0.88956","0.8896" +"GO:0050908","detection of light stimulus involved in ...",3,0,0.92,2400,"1.00000","0.88963","0.8896" +"GO:0050962","detection of light stimulus involved in ...",3,0,0.92,2401,"1.00000","0.88963","0.8896" +"GO:0009886","post-embryonic animal morphogenesis",7,1,2.15,1772,"0.92318","0.88975","0.8897" +"GO:0032091","negative regulation of protein binding",7,1,2.15,1773,"0.92318","0.88975","0.8897" +"GO:0035220","wing disc development",7,0,2.15,2402,"1.00000","0.88975","0.8897" +"GO:0048569","post-embryonic animal organ development",7,0,2.15,2403,"1.00000","0.88975","0.8897" +"GO:0006182","cGMP biosynthetic process",3,1,0.92,1183,"0.66671","0.88984","0.8898" +"GO:0046068","cGMP metabolic process",3,1,0.92,1184,"0.66671","0.88984","0.8898" +"GO:0045087","innate immune response",16,3,4.9,1721,"0.91059","0.89059","0.8906" +"GO:0006793","phosphorus metabolic process",324,94,99.32,1430,"0.77371","0.88551","0.8911" +"GO:0050767","regulation of neurogenesis",36,6,11.04,2007,"0.98292","0.89139","0.8914" +"GO:0008152","metabolic process",1519,455,465.63,1573,"0.84664","0.75391","0.8920" +"GO:0001736","establishment of planar polarity",10,3,3.07,1019,"0.63488","0.89225","0.8923" +"GO:0006796","phosphate-containing compound metabolic ...",321,93,98.4,1431,"0.77776","0.88715","0.8927" +"GO:0042177","negative regulation of protein catabolic...",6,1,1.84,1661,"0.88910","0.89289","0.8929" +"GO:1901799","negative regulation of proteasomal prote...",6,1,1.84,1662,"0.88910","0.89289","0.8929" +"GO:1903051","negative regulation of proteolysis invol...",6,1,1.84,1663,"0.88910","0.89289","0.8929" +"GO:1903363","negative regulation of cellular protein ...",6,1,1.84,1664,"0.88910","0.89289","0.8929" +"GO:0045926","negative regulation of growth",10,1,3.07,1960,"0.97450","0.89326","0.8933" +"GO:1903046","meiotic cell cycle process",10,0,3.07,2404,"1.00000","0.89326","0.8933" +"GO:0006418","tRNA aminoacylation for protein translat...",22,1,6.74,2151,"0.99970","0.89357","0.8936" +"GO:0043038","amino acid activation",22,1,6.74,2152,"0.99970","0.89357","0.8936" +"GO:0043039","tRNA aminoacylation",22,1,6.74,2153,"0.99970","0.89357","0.8936" +"GO:0006915","apoptotic process",68,20,20.84,1002,"0.63460","0.89381","0.8938" +"GO:0072528","pyrimidine-containing compound biosynthe...",6,2,1.84,975,"0.59408","0.89433","0.8943" +"GO:0051016","barbed-end actin filament capping",3,1,0.92,1185,"0.66671","0.89435","0.8943" +"GO:0006469","negative regulation of protein kinase ac...",14,3,4.29,1584,"0.85226","0.89458","0.8946" +"GO:0048167","regulation of synaptic plasticity",8,1,2.45,1840,"0.94680","0.89471","0.8947" +"GO:1902531","regulation of intracellular signal trans...",68,12,20.84,2075,"0.99548","0.89476","0.8948" +"GO:0007271","synaptic transmission, cholinergic",4,0,1.23,2405,"1.00000","0.89605","0.8960" +"GO:0032222","regulation of synaptic transmission, cho...",4,0,1.23,2406,"1.00000","0.89605","0.8960" +"GO:0010769","regulation of cell morphogenesis involve...",12,1,3.68,2026,"0.98778","0.89621","0.8962" +"GO:0040013","negative regulation of locomotion",11,2,3.37,1689,"0.89599","0.89660","0.8966" +"GO:0006779","porphyrin-containing compound biosynthet...",6,1,1.84,1665,"0.88910","0.89720","0.8972" +"GO:0009451","RNA modification",14,0,4.29,2407,"1.00000","0.89721","0.8972" +"GO:0060348","bone development",4,1,1.23,1402,"0.76900","0.89883","0.8988" +"GO:0042127","regulation of cell proliferation",39,8,11.96,1830,"0.94537","0.89897","0.8990" +"GO:0043687","post-translational protein modification",4,1,1.23,1403,"0.76900","0.89901","0.8990" +"GO:0048706","embryonic skeletal system development",4,1,1.23,1404,"0.76900","0.89901","0.8990" +"GO:0032366","intracellular sterol transport",4,1,1.23,1405,"0.76900","0.89953","0.8995" +"GO:0032367","intracellular cholesterol transport",4,1,1.23,1406,"0.76900","0.89953","0.8995" +"GO:0070723","response to cholesterol",4,0,1.23,2408,"1.00000","0.89953","0.8995" +"GO:0071397","cellular response to cholesterol",4,0,1.23,2409,"1.00000","0.89953","0.8995" +"GO:0098662","inorganic cation transmembrane transport",59,27,18.09,47,"0.00957","0.01863","0.9014" +"GO:0051960","regulation of nervous system development",38,7,11.65,1938,"0.97115","0.90146","0.9015" +"GO:0080090","regulation of primary metabolic process",260,57,79.7,2147,"0.99965","0.90225","0.9023" +"GO:0031401","positive regulation of protein modificat...",31,5,9.5,1987,"0.98060","0.90269","0.9027" +"GO:0050848","regulation of calcium-mediated signaling",3,1,0.92,1186,"0.66671","0.90275","0.9027" +"GO:0006650","glycerophospholipid metabolic process",43,6,13.18,2099,"0.99697","0.90290","0.9029" +"GO:0030865","cortical cytoskeleton organization",9,0,2.76,2410,"1.00000","0.90344","0.9034" +"GO:0043604","amide biosynthetic process",169,16,51.81,2186,"1.00000","0.87752","0.9035" +"GO:0060491","regulation of cell projection assembly",12,1,3.68,2027,"0.98778","0.90446","0.9045" +"GO:0120032","regulation of plasma membrane bounded ce...",12,1,3.68,2028,"0.98778","0.90446","0.9045" +"GO:0000075","cell cycle checkpoint",5,1,1.53,1556,"0.83993","0.90472","0.9047" +"GO:0034975","protein folding in endoplasmic reticulum",3,1,0.92,1187,"0.66671","0.90529","0.9053" +"GO:0007017","microtubule-based process",39,11,11.96,1246,"0.68866","0.90600","0.9060" +"GO:0002757","immune response-activating signal transd...",9,1,2.76,1910,"0.96316","0.90737","0.9074" +"GO:0051100","negative regulation of binding",9,2,2.76,1494,"0.81589","0.90737","0.9074" +"GO:0042274","ribosomal small subunit biogenesis",4,0,1.23,2411,"1.00000","0.90766","0.9077" +"GO:0003205","cardiac chamber development",7,1,2.15,1774,"0.92318","0.90805","0.9081" +"GO:0120009","intermembrane lipid transfer",3,0,0.92,2412,"1.00000","0.90876","0.9088" +"GO:0031344","regulation of cell projection organizati...",35,6,10.73,1983,"0.97843","0.90899","0.9090" +"GO:0120035","regulation of plasma membrane bounded ce...",35,6,10.73,1984,"0.97843","0.90899","0.9090" +"GO:0051338","regulation of transferase activity",32,6,9.81,1882,"0.95756","0.90951","0.9095" +"GO:0070861","regulation of protein exit from endoplas...",5,1,1.53,1557,"0.83993","0.90995","0.9099" +"GO:0070862","negative regulation of protein exit from...",5,1,1.53,1558,"0.83993","0.90995","0.9099" +"GO:0090317","negative regulation of intracellular pro...",5,1,1.53,1559,"0.83993","0.90995","0.9099" +"GO:1904152","regulation of retrograde protein transpo...",5,1,1.53,1560,"0.83993","0.90995","0.9099" +"GO:1904153","negative regulation of retrograde protei...",5,1,1.53,1561,"0.83993","0.90995","0.9099" +"GO:1904293","negative regulation of ERAD pathway",5,1,1.53,1562,"0.83993","0.90995","0.9099" +"GO:0019538","protein metabolic process",608,117,186.38,2187,"1.00000","0.91017","0.9102" +"GO:0030030","cell projection organization",79,18,24.22,1877,"0.95536","0.91024","0.9102" +"GO:0006996","organelle organization",226,50,69.28,2133,"0.99895","0.91030","0.9103" +"GO:0071852","fungal-type cell wall organization or bi...",3,0,0.92,2413,"1.00000","0.91047","0.9105" +"GO:0006641","triglyceride metabolic process",3,1,0.92,1188,"0.66671","0.91085","0.9109" +"GO:0051098","regulation of binding",14,3,4.29,1585,"0.85226","0.91116","0.9112" +"GO:0016567","protein ubiquitination",34,8,10.42,1618,"0.86456","0.91122","0.9112" +"GO:0016579","protein deubiquitination",9,2,2.76,1495,"0.81589","0.91145","0.9114" +"GO:0070646","protein modification by small protein re...",9,2,2.76,1496,"0.81589","0.91145","0.9114" +"GO:0010975","regulation of neuron projection developm...",26,5,7.97,1806,"0.93693","0.91240","0.9124" +"GO:0071407","cellular response to organic cyclic comp...",26,8,7.97,910,"0.56897","0.91240","0.9124" +"GO:0070848","response to growth factor",18,3,5.52,1861,"0.94720","0.91253","0.9125" +"GO:0071363","cellular response to growth factor stimu...",18,3,5.52,1862,"0.94720","0.91253","0.9125" +"GO:0006699","bile acid biosynthetic process",3,0,0.92,2414,"1.00000","0.91330","0.9133" +"GO:0008206","bile acid metabolic process",3,0,0.92,2415,"1.00000","0.91330","0.9133" +"GO:0044110","growth involved in symbiotic interaction",3,0,0.92,2416,"1.00000","0.91330","0.9133" +"GO:0044116","growth of symbiont involved in interacti...",3,0,0.92,2417,"1.00000","0.91330","0.9133" +"GO:0044117","growth of symbiont in host",3,0,0.92,2418,"1.00000","0.91330","0.9133" +"GO:0044126","regulation of growth of symbiont in host",3,0,0.92,2419,"1.00000","0.91330","0.9133" +"GO:0044128","positive regulation of growth of symbion...",3,0,0.92,2420,"1.00000","0.91330","0.9133" +"GO:0044144","modulation of growth of symbiont involve...",3,0,0.92,2421,"1.00000","0.91330","0.9133" +"GO:0044148","positive regulation of growth of symbion...",3,0,0.92,2422,"1.00000","0.91330","0.9133" +"GO:0046503","glycerolipid catabolic process",9,1,2.76,1911,"0.96316","0.91340","0.9134" +"GO:0001745","compound eye morphogenesis",8,1,2.45,1841,"0.94680","0.91372","0.9137" +"GO:0048749","compound eye development",8,1,2.45,1842,"0.94680","0.91372","0.9137" +"GO:0030866","cortical actin cytoskeleton organization",8,0,2.45,2423,"1.00000","0.91372","0.9137" +"GO:0098876","vesicle-mediated transport to the plasma...",3,0,0.92,2424,"1.00000","0.91386","0.9139" +"GO:0007179","transforming growth factor beta receptor...",8,1,2.45,1843,"0.94680","0.91452","0.9145" +"GO:0071559","response to transforming growth factor b...",8,1,2.45,1844,"0.94680","0.91452","0.9145" +"GO:0071560","cellular response to transforming growth...",8,1,2.45,1845,"0.94680","0.91452","0.9145" +"GO:0007635","chemosensory behavior",3,1,0.92,1189,"0.66671","0.91535","0.9154" +"GO:0042048","olfactory behavior",3,1,0.92,1190,"0.66671","0.91535","0.9154" +"GO:0032956","regulation of actin cytoskeleton organiz...",28,6,8.58,1695,"0.90192","0.91639","0.9164" +"GO:0048589","developmental growth",32,7,9.81,1701,"0.90277","0.91655","0.9166" +"GO:0006468","protein phosphorylation",128,24,39.24,2138,"0.99938","0.91692","0.9169" +"GO:0006974","cellular response to DNA damage stimulus",31,4,9.5,2071,"0.99441","0.91732","0.9173" +"GO:0051252","regulation of RNA metabolic process",181,40,55.48,2101,"0.99701","0.91837","0.9184" +"GO:0006260","DNA replication",11,2,3.37,1690,"0.89599","0.91907","0.9191" +"GO:1900006","positive regulation of dendrite developm...",3,0,0.92,2425,"1.00000","0.91957","0.9196" +"GO:0002065","columnar/cuboidal epithelial cell differ...",14,3,4.29,1586,"0.85226","0.91958","0.9196" +"GO:0048638","regulation of developmental growth",14,2,4.29,1887,"0.95768","0.91958","0.9196" +"GO:0007031","peroxisome organization",10,2,3.07,1613,"0.86114","0.92060","0.9206" +"GO:1901016","regulation of potassium ion transmembran...",3,0,0.92,2426,"1.00000","0.92101","0.9210" +"GO:1901379","regulation of potassium ion transmembran...",3,0,0.92,2427,"1.00000","0.92101","0.9210" +"GO:0072527","pyrimidine-containing compound metabolic...",7,2,2.15,1238,"0.68462","0.92167","0.9217" +"GO:0034329","cell junction assembly",9,2,2.76,1497,"0.81589","0.92177","0.9218" +"GO:0034330","cell junction organization",9,2,2.76,1498,"0.81589","0.92177","0.9218" +"GO:0048736","appendage development",11,1,3.37,1993,"0.98235","0.92181","0.9218" +"GO:0009791","post-embryonic development",21,3,6.44,1978,"0.97691","0.92264","0.9226" +"GO:0044782","cilium organization",13,3,3.99,1451,"0.81216","0.92309","0.9231" +"GO:0060271","cilium assembly",13,3,3.99,1452,"0.81216","0.92309","0.9231" +"GO:0015804","neutral amino acid transport",3,0,0.92,2428,"1.00000","0.92315","0.9232" +"GO:0045117","azole transport",3,0,0.92,2429,"1.00000","0.92315","0.9232" +"GO:0021987","cerebral cortex development",4,0,1.23,2430,"1.00000","0.92367","0.9237" +"GO:0034698","response to gonadotropin",3,1,0.92,1191,"0.66671","0.92369","0.9237" +"GO:0010562","positive regulation of phosphorus metabo...",24,5,7.36,1697,"0.90233","0.92436","0.9244" +"GO:0045937","positive regulation of phosphate metabol...",24,5,7.36,1698,"0.90233","0.92436","0.9244" +"GO:0031323","regulation of cellular metabolic process",269,55,82.46,2170,"0.99997","0.92485","0.9249" +"GO:0043467","regulation of generation of precursor me...",4,0,1.23,2431,"1.00000","0.92504","0.9250" +"GO:1903578","regulation of ATP metabolic process",4,0,1.23,2432,"1.00000","0.92504","0.9250" +"GO:0033674","positive regulation of kinase activity",11,1,3.37,1994,"0.98235","0.92542","0.9254" +"GO:0051640","organelle localization",40,6,12.26,2061,"0.99352","0.92563","0.9256" +"GO:0060562","epithelial tube morphogenesis",17,1,5.21,2116,"0.99807","0.92571","0.9257" +"GO:0051171","regulation of nitrogen compound metaboli...",249,54,76.33,2150,"0.99967","0.92613","0.9261" +"GO:2001020","regulation of response to DNA damage sti...",8,0,2.45,2433,"1.00000","0.92645","0.9265" +"GO:0006457","protein folding",46,17,14.1,350,"0.21697","0.22164","0.9270" +"GO:0030307","positive regulation of cell growth",4,0,1.23,2434,"1.00000","0.92731","0.9273" +"GO:0006644","phospholipid metabolic process",58,13,17.78,1812,"0.93957","0.92734","0.9273" +"GO:0007548","sex differentiation",10,1,3.07,1961,"0.97450","0.92758","0.9276" +"GO:0030336","negative regulation of cell migration",10,1,3.07,1962,"0.97450","0.92758","0.9276" +"GO:0051271","negative regulation of cellular componen...",10,1,3.07,1963,"0.97450","0.92758","0.9276" +"GO:2000146","negative regulation of cell motility",10,1,3.07,1964,"0.97450","0.92758","0.9276" +"GO:0007610","behavior",52,12,15.94,1725,"0.91456","0.92771","0.9277" +"GO:0048584","positive regulation of response to stimu...",73,19,22.38,1571,"0.84131","0.92787","0.9279" +"GO:0001704","formation of primary germ layer",6,0,1.84,2435,"1.00000","0.92817","0.9282" +"GO:0009967","positive regulation of signal transducti...",48,9,14.71,1986,"0.97940","0.92904","0.9290" +"GO:0030330","DNA damage response, signal transduction...",3,0,0.92,2436,"1.00000","0.92909","0.9291" +"GO:0043516","regulation of DNA damage response, signa...",3,0,0.92,2437,"1.00000","0.92909","0.9291" +"GO:0098660","inorganic ion transmembrane transport",60,27,18.39,59,"0.01246","0.02339","0.9292" +"GO:0002066","columnar/cuboidal epithelial cell develo...",12,2,3.68,1751,"0.92255","0.93071","0.9307" +"GO:0030707","ovarian follicle cell development",12,2,3.68,1752,"0.92255","0.93071","0.9307" +"GO:0007498","mesoderm development",12,0,3.68,2438,"1.00000","0.93071","0.9307" +"GO:0051047","positive regulation of secretion",14,1,4.29,2069,"0.99415","0.93097","0.9310" +"GO:0007611","learning or memory",14,0,4.29,2439,"1.00000","0.93097","0.9310" +"GO:0006654","phosphatidic acid biosynthetic process",3,0,0.92,2440,"1.00000","0.93248","0.9325" +"GO:0046473","phosphatidic acid metabolic process",3,0,0.92,2441,"1.00000","0.93248","0.9325" +"GO:0060191","regulation of lipase activity",3,0,0.92,2442,"1.00000","0.93248","0.9325" +"GO:0030334","regulation of cell migration",25,6,7.66,1505,"0.82645","0.93293","0.9329" +"GO:0051703","intraspecies interaction between organis...",8,1,2.45,1846,"0.94680","0.93305","0.9330" +"GO:0030031","cell projection assembly",23,4,7.05,1871,"0.95365","0.93312","0.9331" +"GO:0120031","plasma membrane bounded cell projection ...",23,4,7.05,1872,"0.95365","0.93312","0.9331" +"GO:0031399","regulation of protein modification proce...",55,12,16.86,1865,"0.94746","0.93314","0.9331" +"GO:0032418","lysosome localization",4,0,1.23,2443,"1.00000","0.93436","0.9344" +"GO:0051656","establishment of organelle localization",25,2,7.66,2131,"0.99877","0.93438","0.9344" +"GO:0001751","compound eye photoreceptor cell differen...",6,1,1.84,1666,"0.88910","0.93462","0.9346" +"GO:0048017","inositol lipid-mediated signaling",4,0,1.23,2444,"1.00000","0.93493","0.9349" +"GO:0032880","regulation of protein localization",41,9,12.57,1744,"0.92153","0.93527","0.9353" +"GO:0048507","meristem development",6,1,1.84,1667,"0.88910","0.93532","0.9353" +"GO:0009267","cellular response to starvation",9,1,2.76,1912,"0.96316","0.93557","0.9356" +"GO:0043043","peptide biosynthetic process",158,9,48.43,2191,"1.00000","0.93573","0.9357" +"GO:1903047","mitotic cell cycle process",26,5,7.97,1807,"0.93693","0.93590","0.9359" +"GO:0003007","heart morphogenesis",11,1,3.37,1995,"0.98235","0.93633","0.9363" +"GO:0045927","positive regulation of growth",11,1,3.37,1996,"0.98235","0.93633","0.9363" +"GO:0030111","regulation of Wnt signaling pathway",11,0,3.37,2445,"1.00000","0.93633","0.9363" +"GO:0051130","positive regulation of cellular componen...",67,16,20.54,1728,"0.91475","0.93701","0.9370" +"GO:0071840","cellular component organization or bioge...",360,80,110.35,2164,"0.99996","0.93726","0.9373" +"GO:0006470","protein dephosphorylation",23,5,7.05,1625,"0.87950","0.93783","0.9378" +"GO:0042327","positive regulation of phosphorylation",23,5,7.05,1626,"0.87950","0.93818","0.9382" +"GO:0046488","phosphatidylinositol metabolic process",27,4,8.28,2012,"0.98342","0.93829","0.9383" +"GO:0030900","forebrain development",12,2,3.68,1753,"0.92255","0.93882","0.9388" +"GO:1901564","organonitrogen compound metabolic proces...",809,208,247.99,2163,"0.99993","0.94719","0.9389" +"GO:0042147","retrograde transport, endosome to Golgi",10,0,3.07,2446,"1.00000","0.93936","0.9394" +"GO:0090087","regulation of peptide transport",23,3,7.05,2020,"0.98696","0.93952","0.9395" +"GO:0042063","gliogenesis",5,1,1.53,1563,"0.83993","0.93980","0.9398" +"GO:0007297","ovarian follicle cell migration",5,0,1.53,2447,"1.00000","0.93980","0.9398" +"GO:0048332","mesoderm morphogenesis",5,0,1.53,2448,"1.00000","0.93980","0.9398" +"GO:0006412","translation",157,9,48.13,2192,"1.00000","0.94036","0.9404" +"GO:0016043","cellular component organization",340,79,104.22,2142,"0.99957","0.94120","0.9412" +"GO:0006892","post-Golgi vesicle-mediated transport",4,0,1.23,2449,"1.00000","0.94163","0.9416" +"GO:0007398","ectoderm development",4,0,1.23,2450,"1.00000","0.94163","0.9416" +"GO:0090276","regulation of peptide hormone secretion",7,1,2.15,1775,"0.92318","0.94173","0.9417" +"GO:0000077","DNA damage checkpoint",3,1,0.92,1192,"0.66671","0.94174","0.9417" +"GO:0031570","DNA integrity checkpoint",3,1,0.92,1193,"0.66671","0.94174","0.9417" +"GO:0036473","cell death in response to oxidative stre...",9,5,2.76,235,"0.10660","0.10352","0.9419" +"GO:0007163","establishment or maintenance of cell pol...",10,2,3.07,1614,"0.86114","0.94197","0.9420" +"GO:0010720","positive regulation of cell development",22,4,6.74,1815,"0.94076","0.94209","0.9421" +"GO:0051223","regulation of protein transport",22,2,6.74,2095,"0.99669","0.94209","0.9421" +"GO:0051962","positive regulation of nervous system de...",22,5,6.74,1592,"0.85227","0.94209","0.9421" +"GO:0042551","neuron maturation",3,0,0.92,2451,"1.00000","0.94221","0.9422" +"GO:0043280","positive regulation of cysteine-type end...",3,0,0.92,2452,"1.00000","0.94221","0.9422" +"GO:0007267","cell-cell signaling",64,16,19.62,1620,"0.87235","0.94232","0.9423" +"GO:0009991","response to extracellular stimulus",26,6,7.97,1595,"0.85563","0.94294","0.9429" +"GO:0043549","regulation of kinase activity",26,4,7.97,1981,"0.97842","0.94294","0.9429" +"GO:0031667","response to nutrient levels",25,6,7.66,1506,"0.82645","0.94304","0.9430" +"GO:0006259","DNA metabolic process",36,7,11.04,1878,"0.95596","0.94305","0.9431" +"GO:0052652","cyclic purine nucleotide metabolic proce...",4,1,1.23,1407,"0.76900","0.94326","0.9433" +"GO:0003231","cardiac ventricle development",6,1,1.84,1668,"0.88910","0.94346","0.9435" +"GO:0070647","protein modification by small protein co...",44,11,13.49,1509,"0.83787","0.94378","0.9438" +"GO:0007009","plasma membrane organization",8,1,2.45,1847,"0.94680","0.94389","0.9439" +"GO:0002274","myeloid leukocyte activation",8,0,2.45,2453,"1.00000","0.94389","0.9439" +"GO:0042051","compound eye photoreceptor development",5,1,1.53,1564,"0.83993","0.94524","0.9452" +"GO:0006281","DNA repair",17,3,5.21,1787,"0.93110","0.94564","0.9456" +"GO:0035556","intracellular signal transduction",147,31,45.06,2102,"0.99720","0.94589","0.9459" +"GO:0019722","calcium-mediated signaling",4,1,1.23,1408,"0.76900","0.94605","0.9460" +"GO:0046883","regulation of hormone secretion",8,1,2.45,1848,"0.94680","0.94623","0.9462" +"GO:0048518","positive regulation of biological proces...",247,64,75.72,1915,"0.96391","0.94647","0.9465" +"GO:0071396","cellular response to lipid",34,10,10.42,995,"0.62686","0.94667","0.9467" +"GO:0007552","metamorphosis",6,0,1.84,2454,"1.00000","0.94681","0.9468" +"GO:0007560","imaginal disc morphogenesis",6,0,1.84,2455,"1.00000","0.94681","0.9468" +"GO:0048563","post-embryonic animal organ morphogenesi...",6,0,1.84,2456,"1.00000","0.94681","0.9468" +"GO:0048707","instar larval or pupal morphogenesis",6,0,1.84,2457,"1.00000","0.94681","0.9468" +"GO:0033554","cellular response to stress",95,21,29.12,1980,"0.97751","0.93928","0.9470" +"GO:0044772","mitotic cell cycle phase transition",14,4,4.29,1035,"0.66513","0.94707","0.9471" +"GO:0008284","positive regulation of cell proliferatio...",20,4,6.13,1710,"0.90475","0.94726","0.9473" +"GO:0050769","positive regulation of neurogenesis",20,4,6.13,1711,"0.90475","0.94726","0.9473" +"GO:0051648","vesicle localization",20,3,6.13,1931,"0.96944","0.94726","0.9473" +"GO:0006400","tRNA modification",7,0,2.15,2458,"1.00000","0.94736","0.9474" +"GO:0051668","localization within membrane",10,2,3.07,1615,"0.86114","0.94743","0.9474" +"GO:0001503","ossification",9,0,2.76,2459,"1.00000","0.94764","0.9476" +"GO:0048565","digestive tract development",9,0,2.76,2460,"1.00000","0.94764","0.9476" +"GO:0055123","digestive system development",9,0,2.76,2461,"1.00000","0.94764","0.9476" +"GO:0032008","positive regulation of TOR signaling",5,1,1.53,1565,"0.83993","0.94769","0.9477" +"GO:0034446","substrate adhesion-dependent cell spread...",3,0,0.92,2462,"1.00000","0.94772","0.9477" +"GO:0001934","positive regulation of protein phosphory...",19,3,5.82,1893,"0.95974","0.94873","0.9487" +"GO:0046467","membrane lipid biosynthetic process",15,3,4.6,1635,"0.88467","0.94885","0.9488" +"GO:0022604","regulation of cell morphogenesis",19,3,5.82,1894,"0.95974","0.94985","0.9498" +"GO:0048015","phosphatidylinositol-mediated signaling",3,0,0.92,2463,"1.00000","0.95081","0.9508" +"GO:0045786","negative regulation of cell cycle",18,2,5.52,2029,"0.98792","0.95138","0.9514" +"GO:0001707","mesoderm formation",4,0,1.23,2464,"1.00000","0.95156","0.9516" +"GO:0007298","border follicle cell migration",4,0,1.23,2465,"1.00000","0.95156","0.9516" +"GO:0010001","glial cell differentiation",4,0,1.23,2466,"1.00000","0.95156","0.9516" +"GO:0032504","multicellular organism reproduction",61,12,18.7,1989,"0.98195","0.95175","0.9518" +"GO:0031669","cellular response to nutrient levels",10,1,3.07,1965,"0.97450","0.95178","0.9518" +"GO:0051650","establishment of vesicle localization",18,2,5.52,2030,"0.98792","0.95244","0.9524" +"GO:0045292","mRNA cis splicing, via spliceosome",4,0,1.23,2467,"1.00000","0.95255","0.9526" +"GO:0032446","protein modification by small protein co...",37,9,11.34,1575,"0.84682","0.95265","0.9526" +"GO:0008360","regulation of cell shape",8,2,2.45,1311,"0.75786","0.95333","0.9533" +"GO:0048562","embryonic organ morphogenesis",8,1,2.45,1849,"0.94680","0.95333","0.9533" +"GO:0048863","stem cell differentiation",8,2,2.45,1312,"0.75786","0.95333","0.9533" +"GO:0060485","mesenchyme development",8,1,2.45,1850,"0.94680","0.95333","0.9533" +"GO:0060828","regulation of canonical Wnt signaling pa...",8,0,2.45,2468,"1.00000","0.95333","0.9533" +"GO:0048522","positive regulation of cellular process",217,50,66.52,2091,"0.99637","0.95345","0.9534" +"GO:0007444","imaginal disc development",10,0,3.07,2469,"1.00000","0.95573","0.9557" +"GO:0010668","ectodermal cell differentiation",3,0,0.92,2470,"1.00000","0.95592","0.9559" +"GO:0032252","secretory granule localization",3,0,0.92,2471,"1.00000","0.95592","0.9559" +"GO:0032253","dense core granule localization",3,0,0.92,2472,"1.00000","0.95592","0.9559" +"GO:1901950","dense core granule transport",3,0,0.92,2473,"1.00000","0.95592","0.9559" +"GO:0007616","long-term memory",4,0,1.23,2474,"1.00000","0.95596","0.9560" +"GO:0019233","sensory perception of pain",4,1,1.23,1409,"0.76900","0.95620","0.9562" +"GO:0031644","regulation of neurological system proces...",4,1,1.23,1410,"0.76900","0.95620","0.9562" +"GO:0031102","neuron projection regeneration",4,0,1.23,2475,"1.00000","0.95620","0.9562" +"GO:0070570","regulation of neuron projection regenera...",4,0,1.23,2476,"1.00000","0.95620","0.9562" +"GO:0046474","glycerophospholipid biosynthetic process",19,1,5.82,2135,"0.99908","0.95631","0.9563" +"GO:0016226","iron-sulfur cluster assembly",8,1,2.45,1851,"0.94680","0.95650","0.9565" +"GO:0031163","metallo-sulfur cluster assembly",8,1,2.45,1852,"0.94680","0.95650","0.9565" +"GO:0019219","regulation of nucleobase-containing comp...",187,42,57.32,2088,"0.99629","0.95657","0.9566" +"GO:0034613","cellular protein localization",133,32,40.77,1918,"0.96583","0.95699","0.9570" +"GO:0070727","cellular macromolecule localization",133,32,40.77,1919,"0.96583","0.95699","0.9570" +"GO:0008291","acetylcholine metabolic process",4,1,1.23,1411,"0.76900","0.95774","0.9577" +"GO:1900619","acetate ester metabolic process",4,1,1.23,1412,"0.76900","0.95774","0.9577" +"GO:0000165","MAPK cascade",20,3,6.13,1932,"0.96944","0.95775","0.9577" +"GO:0023014","signal transduction by protein phosphory...",20,3,6.13,1933,"0.96944","0.95775","0.9577" +"GO:0048489","synaptic vesicle transport",11,1,3.37,1997,"0.98235","0.95791","0.9579" +"GO:0097480","establishment of synaptic vesicle locali...",11,1,3.37,1998,"0.98235","0.95791","0.9579" +"GO:0048519","negative regulation of biological proces...",199,41,61,2148,"0.99966","0.95757","0.9587" +"GO:0007186","G protein-coupled receptor signaling pat...",82,20,25.14,1731,"0.91760","0.95896","0.9590" +"GO:0030178","negative regulation of Wnt signaling pat...",7,0,2.15,2477,"1.00000","0.95906","0.9591" +"GO:0045184","establishment of protein localization",126,26,38.62,2093,"0.99642","0.95933","0.9593" +"GO:0016358","dendrite development",13,2,3.99,1823,"0.94262","0.96022","0.9602" +"GO:1903532","positive regulation of secretion by cell",13,1,3.99,2048,"0.99155","0.96022","0.9602" +"GO:0031346","positive regulation of cell projection o...",15,3,4.6,1636,"0.88467","0.96026","0.9603" +"GO:0046475","glycerophospholipid catabolic process",4,0,1.23,2478,"1.00000","0.96062","0.9606" +"GO:0034504","protein localization to nucleus",8,2,2.45,1313,"0.75786","0.96077","0.9608" +"GO:1901576","organic substance biosynthetic process",612,155,187.6,2149,"0.99966","0.97720","0.9610" +"GO:0007346","regulation of mitotic cell cycle",16,4,4.9,1427,"0.77238","0.96128","0.9613" +"GO:0042886","amide transport",120,24,36.78,2106,"0.99740","0.96133","0.9613" +"GO:0015031","protein transport",119,24,36.48,2097,"0.99691","0.96166","0.9617" +"GO:0015833","peptide transport",119,24,36.48,2098,"0.99691","0.96166","0.9617" +"GO:0045859","regulation of protein kinase activity",24,4,7.36,1916,"0.96392","0.96186","0.9619" +"GO:0070201","regulation of establishment of protein l...",24,3,7.36,2041,"0.99025","0.96186","0.9619" +"GO:0016073","snRNA metabolic process",3,0,0.92,2479,"1.00000","0.96193","0.9619" +"GO:0016180","snRNA processing",3,0,0.92,2480,"1.00000","0.96193","0.9619" +"GO:0060840","artery development",4,0,1.23,2481,"1.00000","0.96197","0.9620" +"GO:0060976","coronary vasculature development",4,0,1.23,2482,"1.00000","0.96197","0.9620" +"GO:0008104","protein localization",177,42,54.26,2017,"0.98614","0.96253","0.9625" +"GO:0007292","female gamete generation",21,4,6.44,1782,"0.92467","0.96261","0.9626" +"GO:0045666","positive regulation of neuron differenti...",14,3,4.29,1587,"0.85226","0.96287","0.9629" +"GO:0050803","regulation of synapse structure or activ...",14,2,4.29,1888,"0.95768","0.96287","0.9629" +"GO:0042254","ribosome biogenesis",26,1,7.97,2162,"0.99993","0.96334","0.9633" +"GO:0000212","meiotic spindle organization",3,0,0.92,2483,"1.00000","0.96346","0.9635" +"GO:0007111","meiosis II cytokinesis",3,0,0.92,2484,"1.00000","0.96346","0.9635" +"GO:0033206","meiotic cytokinesis",3,0,0.92,2485,"1.00000","0.96346","0.9635" +"GO:0061983","meiosis II cell cycle process",3,0,0.92,2486,"1.00000","0.96346","0.9635" +"GO:0050730","regulation of peptidyl-tyrosine phosphor...",4,1,1.23,1413,"0.76900","0.96363","0.9636" +"GO:0050731","positive regulation of peptidyl-tyrosine...",4,1,1.23,1414,"0.76900","0.96363","0.9636" +"GO:0000245","spliceosomal complex assembly",3,1,0.92,1194,"0.66671","0.96421","0.9642" +"GO:0031668","cellular response to extracellular stimu...",11,1,3.37,1999,"0.98235","0.96437","0.9644" +"GO:0007565","female pregnancy",4,1,1.23,1415,"0.76900","0.96439","0.9644" +"GO:0051641","cellular localization",205,49,62.84,2038,"0.98963","0.96445","0.9644" +"GO:0000209","protein polyubiquitination",14,2,4.29,1889,"0.95768","0.96451","0.9645" +"GO:0030010","establishment of cell polarity",6,1,1.84,1669,"0.88910","0.96482","0.9648" +"GO:0048639","positive regulation of developmental gro...",6,1,1.84,1670,"0.88910","0.96482","0.9648" +"GO:0048762","mesenchymal cell differentiation",6,1,1.84,1671,"0.88910","0.96482","0.9648" +"GO:0001649","osteoblast differentiation",6,0,1.84,2487,"1.00000","0.96482","0.9648" +"GO:0030278","regulation of ossification",6,0,1.84,2488,"1.00000","0.96482","0.9648" +"GO:0035050","embryonic heart tube development",6,0,1.84,2489,"1.00000","0.96482","0.9648" +"GO:0048598","embryonic morphogenesis",32,3,9.81,2137,"0.99914","0.96537","0.9654" +"GO:0050807","regulation of synapse organization",13,2,3.99,1824,"0.94262","0.96549","0.9655" +"GO:0097479","synaptic vesicle localization",13,2,3.99,1825,"0.94262","0.96549","0.9655" +"GO:0032774","RNA biosynthetic process",192,39,58.86,2156,"0.99970","0.96566","0.9657" +"GO:0008333","endosome to lysosome transport",4,0,1.23,2490,"1.00000","0.96600","0.9660" +"GO:0071704","organic substance metabolic process",1270,351,389.3,2158,"0.99971","0.90277","0.9661" +"GO:0009896","positive regulation of catabolic process",19,2,5.82,2046,"0.99123","0.96614","0.9661" +"GO:0048477","oogenesis",19,3,5.82,1895,"0.95974","0.96614","0.9661" +"GO:0048523","negative regulation of cellular process",164,39,50.27,1990,"0.98228","0.96544","0.9666" +"GO:0007528","neuromuscular junction development",3,0,0.92,2491,"1.00000","0.96680","0.9668" +"GO:0048640","negative regulation of developmental gro...",3,0,0.92,2492,"1.00000","0.96680","0.9668" +"GO:0046486","glycerolipid metabolic process",49,8,15.02,2060,"0.99347","0.96696","0.9670" +"GO:0045787","positive regulation of cell cycle",6,2,1.84,976,"0.59408","0.96724","0.9672" +"GO:0010828","positive regulation of glucose transmemb...",3,0,0.92,2493,"1.00000","0.96728","0.9673" +"GO:0021761","limbic system development",3,0,0.92,2494,"1.00000","0.96764","0.9676" +"GO:0021766","hippocampus development",3,0,0.92,2495,"1.00000","0.96764","0.9676" +"GO:0035601","protein deacylation",4,0,1.23,2496,"1.00000","0.96778","0.9678" +"GO:0098732","macromolecule deacylation",4,0,1.23,2497,"1.00000","0.96778","0.9678" +"GO:0071310","cellular response to organic substance",84,20,25.75,1803,"0.93667","0.96781","0.9678" +"GO:0048583","regulation of response to stimulus",170,45,52.11,1716,"0.90681","0.88590","0.9679" +"GO:0019438","aromatic compound biosynthetic process",276,78,84.6,1510,"0.83789","0.96008","0.9680" +"GO:0010976","positive regulation of neuron projection...",12,3,3.68,1324,"0.76320","0.96812","0.9681" +"GO:0010942","positive regulation of cell death",20,2,6.13,2066,"0.99365","0.96816","0.9682" +"GO:0050900","leukocyte migration",6,2,1.84,977,"0.59408","0.96826","0.9683" +"GO:0006351","transcription, DNA-templated",190,39,58.24,2143,"0.99959","0.96840","0.9684" +"GO:0097659","nucleic acid-templated transcription",190,39,58.24,2144,"0.99959","0.96840","0.9684" +"GO:0019220","regulation of phosphate metabolic proces...",49,9,15.02,2008,"0.98324","0.96842","0.9684" +"GO:0051174","regulation of phosphorus metabolic proce...",49,9,15.02,2009,"0.98324","0.96842","0.9684" +"GO:0006140","regulation of nucleotide metabolic proce...",5,0,1.53,2498,"1.00000","0.96845","0.9685" +"GO:0032868","response to insulin",5,0,1.53,2499,"1.00000","0.96845","0.9685" +"GO:1900542","regulation of purine nucleotide metaboli...",5,0,1.53,2500,"1.00000","0.96845","0.9685" +"GO:0016255","attachment of GPI anchor to protein",3,0,0.92,2501,"1.00000","0.96859","0.9686" +"GO:0002165","instar larval or pupal development",7,0,2.15,2502,"1.00000","0.96884","0.9688" +"GO:0045934","negative regulation of nucleobase-contai...",31,4,9.5,2072,"0.99441","0.96924","0.9692" +"GO:0051205","protein insertion into membrane",3,0,0.92,2503,"1.00000","0.96929","0.9693" +"GO:0031331","positive regulation of cellular cataboli...",17,2,5.21,2011,"0.98339","0.96968","0.9697" +"GO:0019915","lipid storage",9,2,2.76,1499,"0.81589","0.97035","0.9703" +"GO:0001947","heart looping",5,0,1.53,2504,"1.00000","0.97061","0.9706" +"GO:0003143","embryonic heart tube morphogenesis",5,0,1.53,2505,"1.00000","0.97061","0.9706" +"GO:0030032","lamellipodium assembly",5,0,1.53,2506,"1.00000","0.97061","0.9706" +"GO:0045667","regulation of osteoblast differentiation",5,0,1.53,2507,"1.00000","0.97061","0.9706" +"GO:0061371","determination of heart left/right asymme...",5,0,1.53,2508,"1.00000","0.97061","0.9706" +"GO:0097581","lamellipodium organization",5,0,1.53,2509,"1.00000","0.97061","0.9706" +"GO:0050773","regulation of dendrite development",11,2,3.37,1691,"0.89599","0.97075","0.9707" +"GO:1902600","proton transmembrane transport",28,16,8.58,25,"0.00308","0.00113","0.9709" +"GO:0042325","regulation of phosphorylation",45,9,13.79,1899,"0.96259","0.97101","0.9710" +"GO:0044238","primary metabolic process",1187,319,363.86,2169,"0.99997","0.93333","0.9711" +"GO:0003279","cardiac septum development",3,0,0.92,2510,"1.00000","0.97136","0.9714" +"GO:0035904","aorta development",3,0,0.92,2511,"1.00000","0.97136","0.9714" +"GO:0071496","cellular response to external stimulus",13,2,3.99,1826,"0.94262","0.97188","0.9719" +"GO:0009914","hormone transport",11,1,3.37,2000,"0.98235","0.97204","0.9720" +"GO:0051705","multi-organism behavior",11,1,3.37,2001,"0.98235","0.97204","0.9720" +"GO:0032269","negative regulation of cellular protein ...",43,11,13.18,1455,"0.81340","0.97230","0.9723" +"GO:0051248","negative regulation of protein metabolic...",43,11,13.18,1456,"0.81340","0.97230","0.9723" +"GO:0007049","cell cycle",68,12,20.84,2076,"0.99548","0.97232","0.9723" +"GO:0015985","energy coupled proton transport, down el...",12,3,3.68,1325,"0.76320","0.97237","0.9724" +"GO:0015986","ATP synthesis coupled proton transport",12,3,3.68,1326,"0.76320","0.97237","0.9724" +"GO:1901796","regulation of signal transduction by p53...",6,0,1.84,2512,"1.00000","0.97239","0.9724" +"GO:0045860","positive regulation of protein kinase ac...",10,1,3.07,1966,"0.97450","0.97278","0.9728" +"GO:0009890","negative regulation of biosynthetic proc...",30,3,9.2,2124,"0.99839","0.97299","0.9730" +"GO:0031327","negative regulation of cellular biosynth...",30,3,9.2,2125,"0.99839","0.97299","0.9730" +"GO:0018345","protein palmitoylation",6,0,1.84,2513,"1.00000","0.97324","0.9732" +"GO:0070979","protein K11-linked ubiquitination",3,0,0.92,2514,"1.00000","0.97335","0.9733" +"GO:1901362","organic cyclic compound biosynthetic pro...",300,91,91.96,920,"0.57510","0.96633","0.9734" +"GO:0007416","synapse assembly",10,2,3.07,1616,"0.86114","0.97338","0.9734" +"GO:0007612","learning",10,0,3.07,2515,"1.00000","0.97338","0.9734" +"GO:0051649","establishment of localization in cell",164,36,50.27,2085,"0.99610","0.97343","0.9734" +"GO:0015748","organophosphate ester transport",7,1,2.15,1776,"0.92318","0.97350","0.9735" +"GO:0048585","negative regulation of response to stimu...",58,14,17.78,1680,"0.89344","0.97066","0.9736" +"GO:0044271","cellular nitrogen compound biosynthetic ...",443,92,135.8,2177,"1.00000","0.96573","0.9737" +"GO:1905477","positive regulation of protein localizat...",5,0,1.53,2516,"1.00000","0.97413","0.9741" +"GO:0048870","cell motility",48,11,14.71,1722,"0.91176","0.97451","0.9745" +"GO:0051674","localization of cell",48,11,14.71,1723,"0.91176","0.97451","0.9745" +"GO:0009247","glycolipid biosynthetic process",11,2,3.37,1692,"0.89599","0.97455","0.9746" +"GO:0046879","hormone secretion",10,1,3.07,1967,"0.97450","0.97456","0.9746" +"GO:0044237","cellular metabolic process",1134,282,347.62,2183,"1.00000","0.95459","0.9749" +"GO:2000145","regulation of cell motility",28,6,8.58,1696,"0.90192","0.97525","0.9752" +"GO:0034599","cellular response to oxidative stress",15,5,4.6,864,"0.50710","0.51572","0.9754" +"GO:0043410","positive regulation of MAPK cascade",9,0,2.76,2517,"1.00000","0.97548","0.9755" +"GO:0072331","signal transduction by p53 class mediato...",9,0,2.76,2518,"1.00000","0.97548","0.9755" +"GO:0001932","regulation of protein phosphorylation",38,7,11.65,1939,"0.97115","0.97554","0.9755" +"GO:0038202","TORC1 signaling",4,1,1.23,1416,"0.76900","0.97589","0.9759" +"GO:0046907","intracellular transport",149,32,45.67,2087,"0.99626","0.97599","0.9760" +"GO:0002791","regulation of peptide secretion",9,1,2.76,1913,"0.96316","0.97602","0.9760" +"GO:0033673","negative regulation of kinase activity",15,3,4.6,1637,"0.88467","0.97608","0.9761" +"GO:0071900","regulation of protein serine/threonine k...",15,1,4.6,2080,"0.99596","0.97608","0.9761" +"GO:0051704","multi-organism process",103,29,31.57,1292,"0.74665","0.97624","0.9762" +"GO:0035329","hippo signaling",4,0,1.23,2519,"1.00000","0.97643","0.9764" +"GO:0048546","digestive tract morphogenesis",4,0,1.23,2520,"1.00000","0.97643","0.9764" +"GO:0090090","negative regulation of canonical Wnt sig...",4,0,1.23,2521,"1.00000","0.97643","0.9764" +"GO:0043112","receptor metabolic process",5,0,1.53,2522,"1.00000","0.97649","0.9765" +"GO:0006415","translational termination",6,0,1.84,2523,"1.00000","0.97654","0.9765" +"GO:0010558","negative regulation of macromolecule bio...",29,3,8.89,2109,"0.99782","0.97661","0.9766" +"GO:2000113","negative regulation of cellular macromol...",29,3,8.89,2110,"0.99782","0.97661","0.9766" +"GO:0051348","negative regulation of transferase activ...",17,3,5.21,1788,"0.93110","0.97679","0.9768" +"GO:0006505","GPI anchor metabolic process",10,2,3.07,1617,"0.86114","0.97685","0.9768" +"GO:0006661","phosphatidylinositol biosynthetic proces...",10,1,3.07,1968,"0.97450","0.97685","0.9768" +"GO:0009059","macromolecule biosynthetic process",433,72,132.73,2188,"1.00000","0.97731","0.9773" +"GO:0007472","wing disc morphogenesis",5,0,1.53,2524,"1.00000","0.97766","0.9777" +"GO:0007476","imaginal disc-derived wing morphogenesis",5,0,1.53,2525,"1.00000","0.97766","0.9777" +"GO:0035114","imaginal disc-derived appendage morphoge...",5,0,1.53,2526,"1.00000","0.97766","0.9777" +"GO:0035120","post-embryonic appendage morphogenesis",5,0,1.53,2527,"1.00000","0.97766","0.9777" +"GO:0048737","imaginal disc-derived appendage developm...",5,0,1.53,2528,"1.00000","0.97766","0.9777" +"GO:0010468","regulation of gene expression",219,46,67.13,2155,"0.99970","0.97796","0.9780" +"GO:1901566","organonitrogen compound biosynthetic pro...",326,75,99.93,2146,"0.99961","0.97001","0.9780" +"GO:0031349","positive regulation of defense response",8,1,2.45,1853,"0.94680","0.97818","0.9782" +"GO:0036294","cellular response to decreased oxygen le...",8,1,2.45,1854,"0.94680","0.97818","0.9782" +"GO:0071453","cellular response to oxygen levels",8,1,2.45,1855,"0.94680","0.97818","0.9782" +"GO:0071456","cellular response to hypoxia",8,1,2.45,1856,"0.94680","0.97818","0.9782" +"GO:1905952","regulation of lipid localization",8,0,2.45,2529,"1.00000","0.97818","0.9782" +"GO:0006928","movement of cell or subcellular componen...",78,18,23.91,1866,"0.94835","0.97831","0.9783" +"GO:0017121","phospholipid scrambling",3,0,0.92,2530,"1.00000","0.97862","0.9786" +"GO:0097035","regulation of membrane lipid distributio...",3,0,0.92,2531,"1.00000","0.97862","0.9786" +"GO:0097194","execution phase of apoptosis",3,0,0.92,2532,"1.00000","0.97862","0.9786" +"GO:0050708","regulation of protein secretion",8,0,2.45,2533,"1.00000","0.97867","0.9787" +"GO:0042255","ribosome assembly",7,1,2.15,1777,"0.92318","0.97871","0.9787" +"GO:0022412","cellular process involved in reproductio...",33,5,10.12,2034,"0.98824","0.97876","0.9788" +"GO:0009968","negative regulation of signal transducti...",42,9,12.87,1796,"0.93438","0.97881","0.9788" +"GO:0010648","negative regulation of cell communicatio...",42,9,12.87,1797,"0.93438","0.97881","0.9788" +"GO:0023057","negative regulation of signaling",42,9,12.87,1798,"0.93438","0.97881","0.9788" +"GO:0006801","superoxide metabolic process",3,0,0.92,2534,"1.00000","0.97892","0.9789" +"GO:0015908","fatty acid transport",6,1,1.84,1672,"0.88910","0.97901","0.9790" +"GO:0015909","long-chain fatty acid transport",6,1,1.84,1673,"0.88910","0.97901","0.9790" +"GO:0006506","GPI anchor biosynthetic process",9,1,2.76,1914,"0.96316","0.97915","0.9791" +"GO:0006023","aminoglycan biosynthetic process",3,0,0.92,2535,"1.00000","0.97921","0.9792" +"GO:0006029","proteoglycan metabolic process",3,0,0.92,2536,"1.00000","0.97921","0.9792" +"GO:0030166","proteoglycan biosynthetic process",3,0,0.92,2537,"1.00000","0.97921","0.9792" +"GO:0022402","cell cycle process",51,10,15.63,1951,"0.97425","0.97932","0.9793" +"GO:0030073","insulin secretion",6,1,1.84,1674,"0.88910","0.97942","0.9794" +"GO:0009058","biosynthetic process",641,163,196.49,2157,"0.99971","0.98481","0.9795" +"GO:0030072","peptide hormone secretion",8,1,2.45,1857,"0.94680","0.97961","0.9796" +"GO:0040011","locomotion",73,16,22.38,1917,"0.96523","0.97973","0.9797" +"GO:0018108","peptidyl-tyrosine phosphorylation",5,1,1.53,1566,"0.83993","0.97978","0.9798" +"GO:0000003","reproduction",90,18,27.59,2053,"0.99251","0.97993","0.9799" +"GO:0034645","cellular macromolecule biosynthetic proc...",430,71,131.81,2189,"1.00000","0.98019","0.9802" +"GO:0071702","organic substance transport",179,47,54.87,1746,"0.92232","0.98040","0.9804" +"GO:0007166","cell surface receptor signaling pathway",95,24,29.12,1693,"0.90084","0.98043","0.9804" +"GO:0007007","inner mitochondrial membrane organizatio...",5,0,1.53,2538,"1.00000","0.98066","0.9807" +"GO:0007281","germ cell development",30,5,9.2,1974,"0.97523","0.98070","0.9807" +"GO:0007050","cell cycle arrest",7,0,2.15,2539,"1.00000","0.98089","0.9809" +"GO:0036065","fucosylation",4,1,1.23,1417,"0.76900","0.98115","0.9812" +"GO:0007229","integrin-mediated signaling pathway",4,0,1.23,2540,"1.00000","0.98115","0.9812" +"GO:0006664","glycolipid metabolic process",14,3,4.29,1588,"0.85226","0.98140","0.9814" +"GO:1903509","liposaccharide metabolic process",14,3,4.29,1589,"0.85226","0.98140","0.9814" +"GO:0009892","negative regulation of metabolic process",90,17,27.59,2092,"0.99642","0.98149","0.9815" +"GO:0022414","reproductive process",83,15,25.44,2105,"0.99721","0.98153","0.9815" +"GO:0007254","JNK cascade",5,1,1.53,1567,"0.83993","0.98159","0.9816" +"GO:0016072","rRNA metabolic process",13,0,3.99,2541,"1.00000","0.98160","0.9816" +"GO:0042273","ribosomal large subunit biogenesis",6,0,1.84,2542,"1.00000","0.98173","0.9817" +"GO:0031400","negative regulation of protein modificat...",28,7,8.58,1442,"0.80268","0.98199","0.9820" +"GO:0014033","neural crest cell differentiation",3,0,0.92,2543,"1.00000","0.98228","0.9823" +"GO:0016339","calcium-dependent cell-cell adhesion via...",3,0,0.92,2544,"1.00000","0.98228","0.9823" +"GO:0030279","negative regulation of ossification",3,0,0.92,2545,"1.00000","0.98228","0.9823" +"GO:0033962","cytoplasmic mRNA processing body assembl...",3,0,0.92,2546,"1.00000","0.98228","0.9823" +"GO:0035265","organ growth",3,0,0.92,2547,"1.00000","0.98228","0.9823" +"GO:0045668","negative regulation of osteoblast differ...",3,0,0.92,2548,"1.00000","0.98228","0.9823" +"GO:0060039","pericardium development",3,0,0.92,2549,"1.00000","0.98228","0.9823" +"GO:0060968","regulation of gene silencing",3,0,0.92,2550,"1.00000","0.98228","0.9823" +"GO:0061418","regulation of transcription from RNA pol...",3,0,0.92,2551,"1.00000","0.98228","0.9823" +"GO:0071219","cellular response to molecule of bacteri...",5,1,1.53,1568,"0.83993","0.98235","0.9824" +"GO:0071222","cellular response to lipopolysaccharide",5,1,1.53,1569,"0.83993","0.98235","0.9824" +"GO:0040012","regulation of locomotion",35,8,10.73,1638,"0.88593","0.98236","0.9824" +"GO:0051179","localization",676,229,207.22,71,"0.01850","0.02606","0.9826" +"GO:0010605","negative regulation of macromolecule met...",84,15,25.75,2108,"0.99771","0.98276","0.9828" +"GO:0006364","rRNA processing",12,0,3.68,2552,"1.00000","0.98301","0.9830" +"GO:0010563","negative regulation of phosphorus metabo...",26,5,7.97,1808,"0.93693","0.98328","0.9833" +"GO:0045936","negative regulation of phosphate metabol...",26,5,7.97,1809,"0.93693","0.98328","0.9833" +"GO:0002764","immune response-regulating signaling pat...",10,1,3.07,1969,"0.97450","0.98336","0.9834" +"GO:0002768","immune response-regulating cell surface ...",10,1,3.07,1970,"0.97450","0.98336","0.9834" +"GO:0045892","negative regulation of transcription, DN...",27,3,8.28,2081,"0.99600","0.98337","0.9834" +"GO:0051253","negative regulation of RNA metabolic pro...",27,3,8.28,2082,"0.99600","0.98337","0.9834" +"GO:1902679","negative regulation of RNA biosynthetic ...",27,3,8.28,2083,"0.99600","0.98337","0.9834" +"GO:1903507","negative regulation of nucleic acid-temp...",27,3,8.28,2084,"0.99600","0.98337","0.9834" +"GO:0051726","regulation of cell cycle",41,9,12.57,1745,"0.92153","0.98341","0.9834" +"GO:0044260","cellular macromolecule metabolic process",697,121,213.66,2553,"1.00000","0.98346","0.9835" +"GO:0043406","positive regulation of MAP kinase activi...",6,0,1.84,2554,"1.00000","0.98361","0.9836" +"GO:0071902","positive regulation of protein serine/th...",6,0,1.84,2555,"1.00000","0.98361","0.9836" +"GO:0043405","regulation of MAP kinase activity",10,0,3.07,2556,"1.00000","0.98402","0.9840" +"GO:0042326","negative regulation of phosphorylation",24,5,7.36,1699,"0.90233","0.98457","0.9846" +"GO:1902533","positive regulation of intracellular sig...",24,2,7.36,2123,"0.99829","0.98457","0.9846" +"GO:0006220","pyrimidine nucleotide metabolic process",3,0,0.92,2557,"1.00000","0.98461","0.9846" +"GO:0006221","pyrimidine nucleotide biosynthetic proce...",3,0,0.92,2558,"1.00000","0.98461","0.9846" +"GO:0044706","multi-multicellular organism process",6,1,1.84,1675,"0.88910","0.98468","0.9847" +"GO:0070936","protein K48-linked ubiquitination",6,1,1.84,1676,"0.88910","0.98468","0.9847" +"GO:0016071","mRNA metabolic process",32,9,9.81,1243,"0.68641","0.98477","0.9848" +"GO:0034654","nucleobase-containing compound biosynthe...",258,70,79.09,1729,"0.91578","0.97899","0.9851" +"GO:0045017","glycerolipid biosynthetic process",22,1,6.74,2154,"0.99970","0.98520","0.9852" +"GO:0031324","negative regulation of cellular metaboli...",72,15,22.07,1985,"0.97844","0.98528","0.9853" +"GO:0051234","establishment of localization",611,210,187.3,58,"0.01240","0.01010","0.9853" +"GO:1904950","negative regulation of establishment of ...",9,2,2.76,1500,"0.81589","0.98561","0.9856" +"GO:0006810","transport",601,208,184.23,46,"0.00904","0.00539","0.9856" +"GO:0031929","TOR signaling",8,1,2.45,1858,"0.94680","0.98567","0.9857" +"GO:0022613","ribonucleoprotein complex biogenesis",35,4,10.73,2119,"0.99820","0.98586","0.9859" +"GO:0001933","negative regulation of protein phosphory...",22,5,6.74,1593,"0.85227","0.98586","0.9859" +"GO:1900407","regulation of cellular response to oxida...",8,5,2.45,134,"0.06289","0.05648","0.9863" +"GO:0051172","negative regulation of nitrogen compound...",67,13,20.54,2023,"0.98745","0.98632","0.9863" +"GO:1905954","positive regulation of lipid localizatio...",5,0,1.53,2559,"1.00000","0.98633","0.9863" +"GO:0198738","cell-cell signaling by wnt",20,3,6.13,1934,"0.96944","0.98655","0.9865" +"GO:1905114","cell surface receptor signaling pathway ...",20,2,6.13,2067,"0.99365","0.98655","0.9865" +"GO:0002793","positive regulation of peptide secretion",5,1,1.53,1570,"0.83993","0.98663","0.9866" +"GO:0048813","dendrite morphogenesis",5,0,1.53,2560,"1.00000","0.98663","0.9866" +"GO:0050796","regulation of insulin secretion",5,0,1.53,2561,"1.00000","0.98663","0.9866" +"GO:0120034","positive regulation of plasma membrane b...",5,0,1.53,2562,"1.00000","0.98663","0.9866" +"GO:0000278","mitotic cell cycle",33,6,10.12,1921,"0.96599","0.98667","0.9867" +"GO:0010883","regulation of lipid storage",4,0,1.23,2563,"1.00000","0.98674","0.9867" +"GO:0010889","regulation of sequestering of triglyceri...",4,0,1.23,2564,"1.00000","0.98674","0.9867" +"GO:0030730","sequestering of triglyceride",4,0,1.23,2565,"1.00000","0.98674","0.9867" +"GO:0019222","regulation of metabolic process",299,61,91.66,2172,"0.99999","0.98675","0.9868" +"GO:0070887","cellular response to chemical stimulus",104,23,31.88,1988,"0.98167","0.97629","0.9869" +"GO:0006725","cellular aromatic compound metabolic pro...",439,115,134.57,2039,"0.98985","0.97736","0.9870" +"GO:1902532","negative regulation of intracellular sig...",20,4,6.13,1712,"0.90475","0.98715","0.9871" +"GO:0050896","response to stimulus",592,159,181.47,2047,"0.99125","0.98715","0.9875" +"GO:0033036","macromolecule localization",209,50,64.07,2040,"0.99006","0.98764","0.9876" +"GO:0048609","multicellular organismal reproductive pr...",56,9,17.17,2090,"0.99637","0.98764","0.9876" +"GO:0018130","heterocycle biosynthetic process",283,83,86.75,1273,"0.71867","0.98082","0.9877" +"GO:0003006","developmental process involved in reprod...",51,8,15.63,2078,"0.99590","0.98785","0.9879" +"GO:0044703","multi-organism reproductive process",55,11,16.86,1949,"0.97397","0.98787","0.9879" +"GO:0061458","reproductive system development",17,3,5.21,1789,"0.93110","0.98789","0.9879" +"GO:0016055","Wnt signaling pathway",18,2,5.52,2031,"0.98792","0.98789","0.9879" +"GO:0065007","biological regulation",787,195,241.25,2173,"1.00000","0.98621","0.9879" +"GO:0019953","sexual reproduction",53,10,16.25,2005,"0.98263","0.98832","0.9883" +"GO:0044249","cellular biosynthetic process",597,145,183,2168,"0.99997","0.98865","0.9884" +"GO:0048580","regulation of post-embryonic development",5,0,1.53,2566,"1.00000","0.98844","0.9884" +"GO:0002790","peptide secretion",17,4,5.21,1467,"0.81486","0.98857","0.9886" +"GO:0009306","protein secretion",17,4,5.21,1468,"0.81486","0.98857","0.9886" +"GO:0042157","lipoprotein metabolic process",17,1,5.21,2117,"0.99807","0.98857","0.9886" +"GO:0015919","peroxisomal membrane transport",3,1,0.92,1195,"0.66671","0.98872","0.9887" +"GO:0016558","protein import into peroxisome matrix",3,1,0.92,1196,"0.66671","0.98872","0.9887" +"GO:0015780","nucleotide-sugar transmembrane transport",3,0,0.92,2567,"1.00000","0.98901","0.9890" +"GO:0002685","regulation of leukocyte migration",4,1,1.23,1418,"0.76900","0.98905","0.9890" +"GO:0001776","leukocyte homeostasis",4,0,1.23,2568,"1.00000","0.98905","0.9890" +"GO:0002260","lymphocyte homeostasis",4,0,1.23,2569,"1.00000","0.98905","0.9890" +"GO:0008630","intrinsic apoptotic signaling pathway in...",4,0,1.23,2570,"1.00000","0.98905","0.9890" +"GO:0030808","regulation of nucleotide biosynthetic pr...",4,0,1.23,2571,"1.00000","0.98905","0.9890" +"GO:0032368","regulation of lipid transport",4,0,1.23,2572,"1.00000","0.98905","0.9890" +"GO:0032370","positive regulation of lipid transport",4,0,1.23,2573,"1.00000","0.98905","0.9890" +"GO:0033273","response to vitamin",4,0,1.23,2574,"1.00000","0.98905","0.9890" +"GO:0042770","signal transduction in response to DNA d...",4,0,1.23,2575,"1.00000","0.98905","0.9890" +"GO:0043266","regulation of potassium ion transport",4,0,1.23,2576,"1.00000","0.98905","0.9890" +"GO:0046717","acid secretion",4,0,1.23,2577,"1.00000","0.98905","0.9890" +"GO:0048144","fibroblast proliferation",4,0,1.23,2578,"1.00000","0.98905","0.9890" +"GO:0048145","regulation of fibroblast proliferation",4,0,1.23,2579,"1.00000","0.98905","0.9890" +"GO:0051193","regulation of cofactor metabolic process",4,0,1.23,2580,"1.00000","0.98905","0.9890" +"GO:0051196","regulation of coenzyme metabolic process",4,0,1.23,2581,"1.00000","0.98905","0.9890" +"GO:1900371","regulation of purine nucleotide biosynth...",4,0,1.23,2582,"1.00000","0.98905","0.9890" +"GO:1902229","regulation of intrinsic apoptotic signal...",4,0,1.23,2583,"1.00000","0.98905","0.9890" +"GO:0043408","regulation of MAPK cascade",17,1,5.21,2118,"0.99807","0.98908","0.9891" +"GO:0010629","negative regulation of gene expression",53,11,16.25,1897,"0.96242","0.98923","0.9892" +"GO:0006497","protein lipidation",16,1,4.9,2103,"0.99720","0.98924","0.9892" +"GO:0042158","lipoprotein biosynthetic process",16,1,4.9,2104,"0.99720","0.98924","0.9892" +"GO:0032006","regulation of TOR signaling",6,1,1.84,1677,"0.88910","0.98924","0.9892" +"GO:0046483","heterocycle metabolic process",436,113,133.65,2058,"0.99294","0.98032","0.9893" +"GO:0050714","positive regulation of protein secretion",4,0,1.23,2584,"1.00000","0.98929","0.9893" +"GO:0051963","regulation of synapse assembly",4,0,1.23,2585,"1.00000","0.98929","0.9893" +"GO:0015931","nucleobase-containing compound transport",12,2,3.68,1754,"0.92255","0.98959","0.9896" +"GO:0006414","translational elongation",13,1,3.99,2049,"0.99155","0.99003","0.9900" +"GO:0006658","phosphatidylserine metabolic process",3,0,0.92,2586,"1.00000","0.99004","0.9900" +"GO:0007276","gamete generation",43,6,13.18,2100,"0.99697","0.99055","0.9906" +"GO:0000027","ribosomal large subunit assembly",3,0,0.92,2587,"1.00000","0.99083","0.9908" +"GO:0000054","ribosomal subunit export from nucleus",3,0,0.92,2588,"1.00000","0.99083","0.9908" +"GO:0000055","ribosomal large subunit export from nucl...",3,0,0.92,2589,"1.00000","0.99083","0.9908" +"GO:0000460","maturation of 5.8S rRNA",3,0,0.92,2590,"1.00000","0.99083","0.9908" +"GO:0000463","maturation of LSU-rRNA from tricistronic...",3,0,0.92,2591,"1.00000","0.99083","0.9908" +"GO:0000470","maturation of LSU-rRNA",3,0,0.92,2592,"1.00000","0.99083","0.9908" +"GO:0033750","ribosome localization",3,0,0.92,2593,"1.00000","0.99083","0.9908" +"GO:0071428","rRNA-containing ribonucleoprotein comple...",3,0,0.92,2594,"1.00000","0.99083","0.9908" +"GO:0050789","regulation of biological process",727,170,222.85,2178,"1.00000","0.99066","0.9909" +"GO:0051235","maintenance of location",22,6,6.74,1271,"0.71078","0.99102","0.9910" +"GO:0010876","lipid localization",38,8,11.65,1794,"0.93387","0.99111","0.9911" +"GO:0006366","transcription by RNA polymerase II",62,14,19.01,1817,"0.94125","0.99121","0.9912" +"GO:0043543","protein acylation",13,2,3.99,1827,"0.94262","0.99126","0.9913" +"GO:0031503","protein-containing complex localization",10,1,3.07,1971,"0.97450","0.99133","0.9913" +"GO:0032543","mitochondrial translation",11,1,3.37,2002,"0.98235","0.99157","0.9916" +"GO:0140053","mitochondrial gene expression",11,1,3.37,2003,"0.98235","0.99157","0.9916" +"GO:0006110","regulation of glycolytic process",3,0,0.92,2595,"1.00000","0.99178","0.9918" +"GO:0007569","cell aging",3,0,0.92,2596,"1.00000","0.99178","0.9918" +"GO:0014812","muscle cell migration",3,0,0.92,2597,"1.00000","0.99178","0.9918" +"GO:0014909","smooth muscle cell migration",3,0,0.92,2598,"1.00000","0.99178","0.9918" +"GO:0014910","regulation of smooth muscle cell migrati...",3,0,0.92,2599,"1.00000","0.99178","0.9918" +"GO:0030811","regulation of nucleotide catabolic proce...",3,0,0.92,2600,"1.00000","0.99178","0.9918" +"GO:0031103","axon regeneration",3,0,0.92,2601,"1.00000","0.99178","0.9918" +"GO:0032309","icosanoid secretion",3,0,0.92,2602,"1.00000","0.99178","0.9918" +"GO:0043268","positive regulation of potassium ion tra...",3,0,0.92,2603,"1.00000","0.99178","0.9918" +"GO:0043470","regulation of carbohydrate catabolic pro...",3,0,0.92,2604,"1.00000","0.99178","0.9918" +"GO:0048678","response to axon injury",3,0,0.92,2605,"1.00000","0.99178","0.9918" +"GO:0048679","regulation of axon regeneration",3,0,0.92,2606,"1.00000","0.99178","0.9918" +"GO:0048680","positive regulation of axon regeneration",3,0,0.92,2607,"1.00000","0.99178","0.9918" +"GO:0050482","arachidonic acid secretion",3,0,0.92,2608,"1.00000","0.99178","0.9918" +"GO:0070572","positive regulation of neuron projection...",3,0,0.92,2609,"1.00000","0.99178","0.9918" +"GO:0071715","icosanoid transport",3,0,0.92,2610,"1.00000","0.99178","0.9918" +"GO:0072332","intrinsic apoptotic signaling pathway by...",3,0,0.92,2611,"1.00000","0.99178","0.9918" +"GO:1901571","fatty acid derivative transport",3,0,0.92,2612,"1.00000","0.99178","0.9918" +"GO:1903036","positive regulation of response to wound...",3,0,0.92,2613,"1.00000","0.99178","0.9918" +"GO:1903963","arachidonate transport",3,0,0.92,2614,"1.00000","0.99178","0.9918" +"GO:2001169","regulation of ATP biosynthetic process",3,0,0.92,2615,"1.00000","0.99178","0.9918" +"GO:0007585","respiratory gaseous exchange",3,0,0.92,2616,"1.00000","0.99196","0.9920" +"GO:0032024","positive regulation of insulin secretion",3,0,0.92,2617,"1.00000","0.99196","0.9920" +"GO:0048814","regulation of dendrite morphogenesis",3,0,0.92,2618,"1.00000","0.99196","0.9920" +"GO:0015914","phospholipid transport",6,1,1.84,1678,"0.88910","0.99222","0.9922" +"GO:0001967","suckling behavior",3,0,0.92,2619,"1.00000","0.99232","0.9923" +"GO:0051646","mitochondrion localization",4,0,1.23,2620,"1.00000","0.99242","0.9924" +"GO:0060070","canonical Wnt signaling pathway",11,1,3.37,2004,"0.98235","0.99261","0.9926" +"GO:0034660","ncRNA metabolic process",54,1,16.55,2184,"1.00000","0.99271","0.9927" +"GO:0060255","regulation of macromolecule metabolic pr...",269,54,82.46,2171,"0.99999","0.99348","0.9935" +"GO:0022618","ribonucleoprotein complex assembly",16,4,4.9,1428,"0.77238","0.99356","0.9936" +"GO:0071826","ribonucleoprotein complex subunit organi...",16,4,4.9,1429,"0.77238","0.99356","0.9936" +"GO:0050794","regulation of cellular process",685,159,209.98,2176,"1.00000","0.99333","0.9936" +"GO:0046328","regulation of JNK cascade",4,0,1.23,2621,"1.00000","0.99359","0.9936" +"GO:0018212","peptidyl-tyrosine modification",6,1,1.84,1679,"0.88910","0.99393","0.9939" +"GO:0048311","mitochondrion distribution",3,0,0.92,2622,"1.00000","0.99431","0.9943" +"GO:0006401","RNA catabolic process",17,3,5.21,1790,"0.93110","0.99458","0.9946" +"GO:0006402","mRNA catabolic process",17,3,5.21,1791,"0.93110","0.99458","0.9946" +"GO:0006672","ceramide metabolic process",4,0,1.23,2623,"1.00000","0.99467","0.9947" +"GO:0006403","RNA localization",6,0,1.84,2624,"1.00000","0.99480","0.9948" +"GO:0050657","nucleic acid transport",6,0,1.84,2625,"1.00000","0.99480","0.9948" +"GO:0050658","RNA transport",6,0,1.84,2626,"1.00000","0.99480","0.9948" +"GO:0051236","establishment of RNA localization",6,0,1.84,2627,"1.00000","0.99480","0.9948" +"GO:0019932","second-messenger-mediated signaling",8,1,2.45,1859,"0.94680","0.99486","0.9949" +"GO:0006807","nitrogen compound metabolic process",1056,259,323.71,2182,"1.00000","0.99526","0.9950" +"GO:0006399","tRNA metabolic process",37,1,11.34,2174,"1.00000","0.99520","0.9952" +"GO:0002683","negative regulation of immune system pro...",9,2,2.76,1501,"0.81589","0.99548","0.9955" +"GO:0021537","telencephalon development",7,0,2.15,2628,"1.00000","0.99551","0.9955" +"GO:0021543","pallium development",7,0,2.15,2629,"1.00000","0.99551","0.9955" +"GO:0006139","nucleobase-containing compound metabolic...",403,100,123.54,2112,"0.99806","0.98994","0.9955" +"GO:0051169","nuclear transport",14,2,4.29,1890,"0.95768","0.99561","0.9956" +"GO:1902882","regulation of response to oxidative stre...",10,5,3.07,289,"0.16125","0.18721","0.9956" +"GO:0006405","RNA export from nucleus",5,0,1.53,2630,"1.00000","0.99566","0.9957" +"GO:0006611","protein export from nucleus",5,0,1.53,2631,"1.00000","0.99566","0.9957" +"GO:0051168","nuclear export",5,0,1.53,2632,"1.00000","0.99566","0.9957" +"GO:0071166","ribonucleoprotein complex localization",5,0,1.53,2633,"1.00000","0.99566","0.9957" +"GO:0071426","ribonucleoprotein complex export from nu...",5,0,1.53,2634,"1.00000","0.99566","0.9957" +"GO:0006913","nucleocytoplasmic transport",13,2,3.99,1828,"0.94262","0.99593","0.9959" +"GO:0002429","immune response-activating cell surface ...",8,1,2.45,1860,"0.94680","0.99599","0.9960" +"GO:1901360","organic cyclic compound metabolic proces...",465,126,142.54,1942,"0.97267","0.99141","0.9961" +"GO:0007631","feeding behavior",6,0,1.84,2635,"1.00000","0.99615","0.9961" +"GO:0097120","receptor localization to synapse",3,0,0.92,2636,"1.00000","0.99626","0.9963" +"GO:0051716","cellular response to stimulus",456,106,139.78,2166,"0.99996","0.99611","0.9963" +"GO:0009987","cellular process",1643,415,503.64,2637,"1.00000","0.99436","0.9963" +"GO:0043170","macromolecule metabolic process",873,168,267.61,2638,"1.00000","0.99642","0.9964" +"GO:0090304","nucleic acid metabolic process",299,52,91.66,2181,"1.00000","0.99704","0.9970" +"GO:0000956","nuclear-transcribed mRNA catabolic proce...",10,1,3.07,1972,"0.97450","0.99707","0.9971" +"GO:0006625","protein targeting to peroxisome",4,1,1.23,1419,"0.76900","0.99719","0.9972" +"GO:0043574","peroxisomal transport",4,1,1.23,1420,"0.76900","0.99719","0.9972" +"GO:0072662","protein localization to peroxisome",4,1,1.23,1421,"0.76900","0.99719","0.9972" +"GO:0072663","establishment of protein localization to...",4,1,1.23,1422,"0.76900","0.99719","0.9972" +"GO:0000122","negative regulation of transcription by ...",14,1,4.29,2070,"0.99415","0.99719","0.9972" +"GO:0016070","RNA metabolic process",272,47,83.38,2179,"1.00000","0.99734","0.9973" +"GO:0051028","mRNA transport",3,0,0.92,2639,"1.00000","0.99740","0.9974" +"GO:0019933","cAMP-mediated signaling",4,0,1.23,2640,"1.00000","0.99743","0.9974" +"GO:0019935","cyclic-nucleotide-mediated signaling",4,0,1.23,2641,"1.00000","0.99743","0.9974" +"GO:0016482","cytosolic transport",15,0,4.6,2642,"1.00000","0.99769","0.9977" +"GO:0031532","actin cytoskeleton reorganization",4,0,1.23,2643,"1.00000","0.99799","0.9980" +"GO:0050851","antigen receptor-mediated signaling path...",4,0,1.23,2644,"1.00000","0.99799","0.9980" +"GO:0007154","cell communication",413,99,126.6,2145,"0.99960","0.99803","0.9980" +"GO:0043949","regulation of cAMP-mediated signaling",3,0,0.92,2645,"1.00000","0.99808","0.9981" +"GO:0051384","response to glucocorticoid",3,0,0.92,2646,"1.00000","0.99808","0.9981" +"GO:0023052","signaling",407,98,124.76,2139,"0.99946","0.99826","0.9983" +"GO:2000249","regulation of actin cytoskeleton reorgan...",3,0,0.92,2647,"1.00000","0.99850","0.9985" +"GO:0000184","nuclear-transcribed mRNA catabolic proce...",5,0,1.53,2648,"1.00000","0.99854","0.9985" +"GO:0006869","lipid transport",31,6,9.5,1864,"0.94729","0.99855","0.9985" +"GO:0034641","cellular nitrogen compound metabolic pro...",584,128,179.02,2180,"1.00000","0.99574","0.9987" +"GO:0045931","positive regulation of mitotic cell cycl...",3,0,0.92,2649,"1.00000","0.99880","0.9988" +"GO:0048367","shoot system development",4,0,1.23,2650,"1.00000","0.99906","0.9991" +"GO:0006396","RNA processing",50,6,15.33,2141,"0.99953","0.99913","0.9991" +"GO:0043618","regulation of transcription from RNA pol...",4,0,1.23,2651,"1.00000","0.99920","0.9992" +"GO:0043620","regulation of DNA-templated transcriptio...",4,0,1.23,2652,"1.00000","0.99920","0.9992" +"GO:0010467","gene expression",423,60,129.67,2653,"1.00000","0.99929","0.9993" +"GO:0090567","reproductive shoot system development",3,0,0.92,2654,"1.00000","0.99930","0.9993" +"GO:0007165","signal transduction",373,85,114.34,2161,"0.99990","0.99931","0.9993" +"GO:0034470","ncRNA processing",29,0,8.89,2655,"1.00000","0.99950","0.9995" +"GO:0008380","RNA splicing",15,4,4.6,1279,"0.72259","0.99974","0.9997" +"GO:0008033","tRNA processing",14,0,4.29,2656,"1.00000","0.99976","0.9998" +"GO:0008150","biological_process",2401,736,736,2657,"1.00000","1.00000","1.0000" +"GO:0015988","energy coupled proton transmembrane tran...",16,13,4.9,6,"4.1e-05","8.9e-06","1.0000" +"GO:0016053","organic acid biosynthetic process",41,21,12.57,30,"0.00442","0.00604","1.0000" +"GO:0035384","thioester biosynthetic process",5,4,1.53,107,"0.03317","0.00857","1.0000" +"GO:0090662","ATP hydrolysis coupled transmembrane tra...",16,13,4.9,7,"4.1e-05","8.9e-06","1.0000" +"GO:0099131","ATP hydrolysis coupled ion transmembrane...",16,13,4.9,8,"4.1e-05","8.9e-06","1.0000" +"GO:0099132","ATP hydrolysis coupled cation transmembr...",16,13,4.9,9,"4.1e-05","8.9e-06","1.0000" +"GO:1903201","regulation of oxidative stress-induced c...",6,5,1.84,54,"0.01200","0.00950","1.0000" diff --git a/GO_enrichment_output/contrast_young_males_downregulated.csv b/GO_enrichment_output/contrast_young_males_downregulated.csv index edf767e..4a3c01d 100644 --- a/GO_enrichment_output/contrast_young_males_downregulated.csv +++ b/GO_enrichment_output/contrast_young_males_downregulated.csv @@ -1,6 +1,1232 @@ "GO.ID","Term","Annotated","Significant","Expected","Rank in classicFisher","classicFisher","classicKS","elimKS" -"GO:0050766","positive regulation of phagocytosis",11,10,7.13,120,"0.059","5.0e-07","5.0e-07" -"GO:0010667","negative regulation of cardiac muscle ce...",10,9,6.48,192,"0.084","1.4e-06","1.4e-06" -"GO:0021549","cerebellum development",16,14,10.37,82,"0.043","1.6e-06","1.6e-06" -"GO:0048026","positive regulation of mRNA splicing, vi...",10,9,6.48,193,"0.084","5.2e-06","5.2e-06" -"GO:0000082","G1/S transition of mitotic cell cycle",9,8,5.83,309,"0.118","7.3e-06","7.3e-06" +"GO:0050766","positive regulation of phagocytosis",11,10,7.13,102,"0.0587","5.0e-07","5.0e-07" +"GO:0010667","negative regulation of cardiac muscle ce...",10,9,6.48,151,"0.0837","1.4e-06","1.4e-06" +"GO:0021549","cerebellum development",16,14,10.37,76,"0.0432","1.6e-06","1.6e-06" +"GO:0061077","chaperone-mediated protein folding",17,15,11.02,50,"0.0312","4.0e-06","4.0e-06" +"GO:0048026","positive regulation of mRNA splicing, vi...",10,9,6.48,152,"0.0837","5.2e-06","5.2e-06" +"GO:0048488","synaptic vesicle endocytosis",11,10,7.13,103,"0.0587","5.8e-06","5.8e-06" +"GO:0006458","'de novo' protein folding",11,10,7.13,104,"0.0587","6.4e-06","6.4e-06" +"GO:0006468","protein phosphorylation",203,150,131.57,1,"0.0025","4.4e-07","1.0e-05" +"GO:0034605","cellular response to heat",15,14,9.72,22,"0.0135","1.6e-05","1.6e-05" +"GO:0032355","response to estradiol",12,10,7.78,257,"0.1475","2.0e-05","2.0e-05" +"GO:0001912","positive regulation of leukocyte mediate...",10,8,6.48,408,"0.2571","3.0e-05","3.0e-05" +"GO:0002708","positive regulation of lymphocyte mediat...",10,8,6.48,409,"0.2571","3.0e-05","3.0e-05" +"GO:0014823","response to activity",10,9,6.48,153,"0.0837","3.0e-05","3.0e-05" +"GO:0019079","viral genome replication",10,9,6.48,154,"0.0837","3.0e-05","3.0e-05" +"GO:0042698","ovulation cycle",10,9,6.48,155,"0.0837","3.0e-05","3.0e-05" +"GO:0044843","cell cycle G1/S phase transition",10,8,6.48,410,"0.2571","3.0e-05","3.0e-05" +"GO:0051851","modification by host of symbiont morphol...",10,9,6.48,156,"0.0837","3.0e-05","3.0e-05" +"GO:0061635","regulation of protein complex stability",10,8,6.48,411,"0.2571","3.0e-05","3.0e-05" +"GO:0071276","cellular response to cadmium ion",10,9,6.48,157,"0.0837","3.0e-05","3.0e-05" +"GO:0072666","establishment of protein localization to...",10,8,6.48,412,"0.2571","3.0e-05","3.0e-05" +"GO:1903206","negative regulation of hydrogen peroxide...",10,9,6.48,158,"0.0837","3.0e-05","3.0e-05" +"GO:1903902","positive regulation of viral life cycle",10,8,6.48,413,"0.2571","3.0e-05","3.0e-05" +"GO:1905710","positive regulation of membrane permeabi...",10,8,6.48,414,"0.2571","3.0e-05","3.0e-05" +"GO:1903332","regulation of protein folding",12,10,7.78,258,"0.1475","3.2e-05","3.2e-05" +"GO:0042026","protein refolding",17,15,11.02,51,"0.0312","3.6e-05","3.6e-05" +"GO:0008088","axo-dendritic transport",13,9,8.43,718,"0.4946","5.5e-05","5.5e-05" +"GO:0031396","regulation of protein ubiquitination",20,18,12.96,19,"0.0114","7.6e-05","7.6e-05" +"GO:0044743","protein transmembrane import into intrac...",11,8,7.13,630,"0.4201","9.4e-05","9.4e-05" +"GO:0045471","response to ethanol",11,10,7.13,105,"0.0587","9.4e-05","9.4e-05" +"GO:0032570","response to progesterone",12,10,7.78,259,"0.1475","0.00012","0.00012" +"GO:0007088","regulation of mitotic nuclear division",11,10,7.13,106,"0.0587","0.00013","0.00013" +"GO:0044772","mitotic cell cycle phase transition",17,14,11.02,193,"0.0992","0.00021","0.00021" +"GO:0045862","positive regulation of proteolysis",20,17,12.96,73,"0.0422","0.00023","0.00023" +"GO:0007040","lysosome organization",12,9,7.78,523,"0.3411","0.00025","0.00025" +"GO:0007606","sensory perception of chemical stimulus",12,9,7.78,524,"0.3411","0.00025","0.00025" +"GO:0046777","protein autophosphorylation",12,9,7.78,525,"0.3411","0.00025","0.00025" +"GO:0030900","forebrain development",16,14,10.37,77,"0.0432","0.00037","0.00037" +"GO:0090084","negative regulation of inclusion body as...",10,9,6.48,159,"0.0837","0.00041","0.00041" +"GO:0008037","cell recognition",12,9,7.78,526,"0.3411","0.00042","0.00042" +"GO:0009566","fertilization",11,9,7.13,321,"0.1959","0.00044","0.00044" +"GO:1902115","regulation of organelle assembly",18,13,11.67,558,"0.3481","0.00044","0.00044" +"GO:0006606","protein import into nucleus",16,14,10.37,78,"0.0432","0.00045","0.00045" +"GO:0051261","protein depolymerization",16,14,10.37,79,"0.0432","0.00055","0.00055" +"GO:1902850","microtubule cytoskeleton organization in...",13,11,8.43,210,"0.1099","0.00089","0.00089" +"GO:0007041","lysosomal transport",16,13,10.37,238,"0.1297","0.00106","0.00106" +"GO:1902904","negative regulation of supramolecular fi...",18,16,11.67,33,"0.0224","0.00165","0.00165" +"GO:0007051","spindle organization",12,10,7.78,260,"0.1475","0.00202","0.00202" +"GO:0046034","ATP metabolic process",19,12,12.31,873,"0.6597","0.00289","0.00289" +"GO:0060249","anatomical structure homeostasis",22,18,14.26,126,"0.0683","0.00290","0.00290" +"GO:1903321","negative regulation of protein modificat...",10,8,6.48,415,"0.2571","0.00409","0.00409" +"GO:0007519","skeletal muscle tissue development",17,13,11.02,362,"0.2291","0.00534","0.00534" +"GO:0042594","response to starvation",21,13,13.61,922,"0.7002","0.00575","0.00575" +"GO:1901565","organonitrogen compound catabolic proces...",122,88,79.07,91,"0.0488","0.00608","0.00608" +"GO:0070507","regulation of microtubule cytoskeleton o...",13,11,8.43,211,"0.1099","0.00614","0.00614" +"GO:0051924","regulation of calcium ion transport",11,9,7.13,322,"0.1959","0.00713","0.00713" +"GO:0031647","regulation of protein stability",26,21,16.85,120,"0.0615","0.00753","0.00753" +"GO:0006508","proteolysis",205,147,132.87,31,"0.0175","0.00049","0.00783" +"GO:0001822","kidney development",22,18,14.26,127,"0.0683","0.00808","0.00808" +"GO:0046785","microtubule polymerization",11,10,7.13,107,"0.0587","0.00827","0.00827" +"GO:0051345","positive regulation of hydrolase activit...",29,23,18.8,131,"0.0698","0.00858","0.00858" +"GO:0006874","cellular calcium ion homeostasis",11,8,7.13,631,"0.4201","0.00946","0.00946" +"GO:1903573","negative regulation of response to endop...",11,10,7.13,108,"0.0587","0.00946","0.00946" +"GO:0048285","organelle fission",39,33,25.28,8,"0.0051","0.00065","0.00956" +"GO:2001243","negative regulation of intrinsic apoptot...",10,8,6.48,416,"0.2571","0.00969","0.00969" +"GO:0050778","positive regulation of immune response",27,20,17.5,347,"0.2110","0.00990","0.00990" +"GO:1903828","negative regulation of cellular protein ...",10,9,6.48,160,"0.0837","0.01000","0.01000" +"GO:0000070","mitotic sister chromatid segregation",13,11,8.43,212,"0.1099","0.01088","0.01088" +"GO:0071345","cellular response to cytokine stimulus",21,16,13.61,317,"0.1948","0.01131","0.01131" +"GO:0043085","positive regulation of catalytic activit...",56,45,36.3,14,"0.0081","0.00026","0.01359" +"GO:0001701","in utero embryonic development",20,18,12.96,20,"0.0114","0.01408","0.01408" +"GO:0001819","positive regulation of cytokine producti...",12,9,7.78,527,"0.3411","0.01410","0.01410" +"GO:0031110","regulation of microtubule polymerization...",12,10,7.78,261,"0.1475","0.01410","0.01410" +"GO:0031099","regeneration",11,9,7.13,323,"0.1959","0.01417","0.01417" +"GO:0002262","myeloid cell homeostasis",10,9,6.48,161,"0.0837","0.01434","0.01434" +"GO:0030218","erythrocyte differentiation",10,9,6.48,162,"0.0837","0.01434","0.01434" +"GO:0034101","erythrocyte homeostasis",10,9,6.48,163,"0.0837","0.01434","0.01434" +"GO:0048568","embryonic organ development",35,27,22.68,183,"0.0839","0.01452","0.01452" +"GO:0032271","regulation of protein polymerization",24,18,15.56,338,"0.2038","0.01457","0.01457" +"GO:0051247","positive regulation of protein metabolic...",63,50,40.83,15,"0.0083","0.00010","0.01524" +"GO:0032273","positive regulation of protein polymeriz...",20,15,12.96,383,"0.2389","0.01594","0.01594" +"GO:0032270","positive regulation of cellular protein ...",59,47,38.24,16,"0.0092","0.00013","0.01722" +"GO:0048871","multicellular organismal homeostasis",14,12,9.07,139,"0.0812","0.01732","0.01732" +"GO:0044092","negative regulation of molecular functio...",40,30,25.93,227,"0.1147","0.01735","0.01735" +"GO:0098813","nuclear chromosome segregation",19,15,12.31,251,"0.1451","0.01779","0.01779" +"GO:0000280","nuclear division",35,29,22.68,24,"0.0155","0.00115","0.01870" +"GO:0031401","positive regulation of protein modificat...",39,29,25.28,246,"0.1371","0.01904","0.01904" +"GO:0007568","aging",26,17,16.85,790,"0.5653","0.02392","0.02392" +"GO:0031398","positive regulation of protein ubiquitin...",13,11,8.43,213,"0.1099","0.02417","0.02417" +"GO:1903322","positive regulation of protein modificat...",13,11,8.43,214,"0.1099","0.02417","0.02417" +"GO:0009890","negative regulation of biosynthetic proc...",75,59,48.61,9,"0.0061","0.02510","0.02510" +"GO:0050821","protein stabilization",14,12,9.07,140,"0.0812","0.02556","0.02556" +"GO:0045814","negative regulation of gene expression, ...",10,6,6.48,963,"0.7478","0.02682","0.02682" +"GO:0051172","negative regulation of nitrogen compound...",111,85,71.94,5,"0.0044","0.00652","0.02752" +"GO:0031334","positive regulation of protein complex a...",22,16,14.26,487,"0.2948","0.02785","0.02785" +"GO:2001233","regulation of apoptotic signaling pathwa...",20,17,12.96,74,"0.0422","0.00082","0.02813" +"GO:0010558","negative regulation of macromolecule bio...",73,57,47.31,17,"0.0093","0.02850","0.02850" +"GO:0001933","negative regulation of protein phosphory...",17,13,11.02,363,"0.2291","0.02988","0.02988" +"GO:0097191","extrinsic apoptotic signaling pathway",11,8,7.13,632,"0.4201","0.03096","0.03096" +"GO:0043086","negative regulation of catalytic activit...",34,26,22.04,199,"0.1028","0.03215","0.03215" +"GO:2000113","negative regulation of cellular macromol...",71,55,46.02,23,"0.0141","0.03234","0.03234" +"GO:0051051","negative regulation of transport",16,14,10.37,80,"0.0432","0.03416","0.03416" +"GO:0031400","negative regulation of protein modificat...",34,26,22.04,200,"0.1028","0.00124","0.03466" +"GO:1901214","regulation of neuron death",16,14,10.37,81,"0.0432","0.03480","0.03480" +"GO:0140014","mitotic nuclear division",22,19,14.26,35,"0.0231","0.00125","0.03488" +"GO:2001234","negative regulation of apoptotic signali...",14,12,9.07,141,"0.0812","0.00045","0.03535" +"GO:0034097","response to cytokine",25,19,16.2,289,"0.1672","0.03584","0.03584" +"GO:0031327","negative regulation of cellular biosynth...",74,58,47.96,12,"0.0076","0.03650","0.03650" +"GO:0007269","neurotransmitter secretion",12,10,7.78,262,"0.1475","0.03677","0.03677" +"GO:0099643","signal release from synapse",12,10,7.78,263,"0.1475","0.03677","0.03677" +"GO:0031324","negative regulation of cellular metaboli...",121,92,78.42,6,"0.0044","0.01193","0.03996" +"GO:0052548","regulation of endopeptidase activity",11,9,7.13,324,"0.1959","0.03998","0.03998" +"GO:0051276","chromosome organization",102,74,66.11,100,"0.0568","0.04189","0.04189" +"GO:0042326","negative regulation of phosphorylation",21,16,13.61,318,"0.1948","0.04284","0.04284" +"GO:0043254","regulation of protein complex assembly",29,20,18.8,579,"0.3986","0.04399","0.04399" +"GO:0046530","photoreceptor cell differentiation",12,11,7.78,62,"0.0409","0.04586","0.04586" +"GO:0051346","negative regulation of hydrolase activit...",22,17,14.26,280,"0.1573","0.04595","0.04595" +"GO:0000819","sister chromatid segregation",17,13,11.02,364,"0.2291","0.04630","0.04630" +"GO:0007059","chromosome segregation",22,16,14.26,488,"0.2948","0.04731","0.04731" +"GO:0006935","chemotaxis",25,17,16.2,677,"0.4586","0.04881","0.04881" +"GO:0001817","regulation of cytokine production",23,17,14.91,399,"0.2463","0.05055","0.05055" +"GO:0071897","DNA biosynthetic process",12,11,7.78,63,"0.0409","0.05071","0.05071" +"GO:0043523","regulation of neuron apoptotic process",12,11,7.78,64,"0.0409","0.05215","0.05215" +"GO:0010608","posttranscriptional regulation of gene e...",36,28,23.33,125,"0.0680","0.05388","0.05388" +"GO:1902905","positive regulation of supramolecular fi...",25,17,16.2,678,"0.4586","0.05403","0.05403" +"GO:0001894","tissue homeostasis",12,10,7.78,264,"0.1475","0.05426","0.05426" +"GO:0018022","peptidyl-lysine methylation",17,12,11.02,608,"0.4129","0.05478","0.05478" +"GO:0006836","neurotransmitter transport",23,19,14.91,92,"0.0523","0.05558","0.05558" +"GO:0030163","protein catabolic process",99,70,64.17,233,"0.1250","0.05609","0.05609" +"GO:0045934","negative regulation of nucleobase-contai...",71,53,46.02,90,"0.0485","0.05666","0.05666" +"GO:1903706","regulation of hemopoiesis",12,11,7.78,65,"0.0409","0.05742","0.05742" +"GO:0023061","signal release",22,16,14.26,489,"0.2948","0.05869","0.05869" +"GO:0042493","response to drug",53,44,34.35,2,"0.0027","0.00378","0.05877" +"GO:0006914","autophagy",45,30,29.17,680,"0.4641","0.05955","0.05955" +"GO:0061919","process utilizing autophagic mechanism",45,30,29.17,681,"0.4641","0.05955","0.05955" +"GO:2000241","regulation of reproductive process",13,12,8.43,43,"0.0284","0.05958","0.05958" +"GO:0035966","response to topologically incorrect prot...",26,20,16.85,243,"0.1359","0.05958","0.05958" +"GO:0007369","gastrulation",16,12,10.37,476,"0.2831","0.06022","0.06022" +"GO:0002764","immune response-regulating signaling pat...",17,13,11.02,365,"0.2291","0.06106","0.06106" +"GO:0048872","homeostasis of number of cells",16,12,10.37,477,"0.2831","0.06124","0.06124" +"GO:0000278","mitotic cell cycle",60,48,38.89,11,"0.0073","0.01733","0.06178" +"GO:1902679","negative regulation of RNA biosynthetic ...",65,49,42.13,86,"0.0440","0.06183","0.06183" +"GO:1903507","negative regulation of nucleic acid-temp...",65,49,42.13,87,"0.0440","0.06183","0.06183" +"GO:0009792","embryo development ending in birth or eg...",51,37,33.05,278,"0.1534","0.06203","0.06203" +"GO:0010921","regulation of phosphatase activity",11,9,7.13,325,"0.1959","0.06241","0.06241" +"GO:0006605","protein targeting",28,20,18.15,497,"0.3005","0.06319","0.06319" +"GO:0003006","developmental process involved in reprod...",63,42,40.83,653,"0.4341","0.06365","0.06365" +"GO:0046903","secretion",64,43,41.48,578,"0.3980","0.06478","0.06478" +"GO:0051495","positive regulation of cytoskeleton orga...",26,17,16.85,791,"0.5653","0.06501","0.06501" +"GO:0034504","protein localization to nucleus",23,21,14.91,4,"0.0040","0.00144","0.06783" +"GO:1903747","regulation of establishment of protein l...",14,11,9.07,352,"0.2155","0.06786","0.06786" +"GO:0045892","negative regulation of transcription, DN...",64,48,41.48,94,"0.0525","0.06790","0.06790" +"GO:0045597","positive regulation of cell differentiat...",36,24,23.33,703,"0.4834","0.06815","0.06815" +"GO:0043244","regulation of protein complex disassembl...",10,9,6.48,164,"0.0837","0.06872","0.06872" +"GO:0050790","regulation of catalytic activity",98,76,63.52,3,"0.0039","0.00291","0.06883" +"GO:0051347","positive regulation of transferase activ...",19,16,12.31,97,"0.0565","0.06927","0.06927" +"GO:0042330","taxis",27,17,17.5,876,"0.6630","0.06981","0.06981" +"GO:0043281","regulation of cysteine-type endopeptidas...",10,8,6.48,417,"0.2571","0.07041","0.07041" +"GO:2000116","regulation of cysteine-type endopeptidas...",10,8,6.48,418,"0.2571","0.07041","0.07041" +"GO:0045861","negative regulation of proteolysis",22,17,14.26,281,"0.1573","0.07324","0.07324" +"GO:0034765","regulation of ion transmembrane transpor...",14,12,9.07,142,"0.0812","0.07486","0.07486" +"GO:1904062","regulation of cation transmembrane trans...",14,12,9.07,143,"0.0812","0.07486","0.07486" +"GO:0070997","neuron death",17,14,11.02,194,"0.0992","0.07494","0.07494" +"GO:0002443","leukocyte mediated immunity",14,11,9.07,353,"0.2155","1.2e-05","0.07514" +"GO:0001816","cytokine production",26,19,16.85,405,"0.2520","0.07543","0.07543" +"GO:0051783","regulation of nuclear division",13,12,8.43,44,"0.0284","0.00021","0.07636" +"GO:0043161","proteasome-mediated ubiquitin-dependent ...",37,26,23.98,510,"0.3037","0.07853","0.07853" +"GO:0061564","axon development",29,20,18.8,580,"0.3986","0.08077","0.08077" +"GO:0001775","cell activation",23,18,14.91,234,"0.1259","0.08086","0.08086" +"GO:0051253","negative regulation of RNA metabolic pro...",66,49,42.78,124,"0.0649","0.08212","0.08212" +"GO:0051094","positive regulation of developmental pro...",52,37,33.7,344,"0.2072","0.08241","0.08241" +"GO:0006323","DNA packaging",10,8,6.48,419,"0.2571","0.08271","0.08271" +"GO:0006820","anion transport",33,21,21.39,849,"0.6335","0.08322","0.08322" +"GO:0071103","DNA conformation change",12,10,7.78,265,"0.1475","0.08598","0.08598" +"GO:1903047","mitotic cell cycle process",48,38,31.11,34,"0.0224","0.02132","0.08756" +"GO:0030099","myeloid cell differentiation",13,11,8.43,215,"0.1099","0.09150","0.09150" +"GO:0015893","drug transport",12,11,7.78,66,"0.0409","0.09247","0.09247" +"GO:0035303","regulation of dephosphorylation",13,10,8.43,456,"0.2729","0.09398","0.09398" +"GO:0034762","regulation of transmembrane transport",17,13,11.02,366,"0.2291","0.09642","0.09642" +"GO:0032269","negative regulation of cellular protein ...",56,43,36.3,60,"0.0365","0.00857","0.09855" +"GO:0051248","negative regulation of protein metabolic...",56,43,36.3,61,"0.0365","0.00857","0.09855" +"GO:0050776","regulation of immune response",34,26,22.04,201,"0.1028","0.00465","0.09966" +"GO:0048638","regulation of developmental growth",11,10,7.13,109,"0.0587","0.09994","0.09994" +"GO:0009314","response to radiation",27,22,17.5,89,"0.0477","0.10035","0.10035" +"GO:0061024","membrane organization",47,35,30.46,203,"0.1046","0.10180","0.10180" +"GO:0000122","negative regulation of transcription by ...",31,23,20.09,300,"0.1820","0.10259","0.10259" +"GO:0042110","T cell activation",10,9,6.48,165,"0.0837","0.10345","0.10345" +"GO:0007409","axonogenesis",24,18,15.56,339,"0.2038","0.10382","0.10382" +"GO:0061640","cytoskeleton-dependent cytokinesis",10,8,6.48,420,"0.2571","0.10403","0.10403" +"GO:0042391","regulation of membrane potential",13,11,8.43,216,"0.1099","0.10430","0.10430" +"GO:0042327","positive regulation of phosphorylation",23,17,14.91,400,"0.2463","0.10456","0.10456" +"GO:0007498","mesoderm development",10,9,6.48,166,"0.0837","0.10697","0.10697" +"GO:0007411","axon guidance",14,10,9.07,618,"0.4166","0.10713","0.10713" +"GO:0016441","posttranscriptional gene silencing",14,12,9.07,144,"0.0812","0.10713","0.10713" +"GO:0030707","ovarian follicle cell development",14,10,9.07,619,"0.4166","0.10713","0.10713" +"GO:0035194","posttranscriptional gene silencing by RN...",14,12,9.07,145,"0.0812","0.10713","0.10713" +"GO:0097485","neuron projection guidance",14,10,9.07,620,"0.4166","0.10713","0.10713" +"GO:0001655","urogenital system development",25,21,16.2,47,"0.0301","0.01886","0.10849" +"GO:0010604","positive regulation of macromolecule met...",117,89,75.83,7,"0.0050","0.00318","0.11126" +"GO:0045664","regulation of neuron differentiation",31,17,20.09,1147,"0.9112","0.11303","0.11303" +"GO:0002757","immune response-activating signal transd...",16,12,10.37,478,"0.2831","0.11329","0.11329" +"GO:0006417","regulation of translation",19,15,12.31,252,"0.1451","0.11373","0.11373" +"GO:0052547","regulation of peptidase activity",14,11,9.07,354,"0.2155","0.11383","0.11383" +"GO:0032940","secretion by cell",56,37,36.3,702,"0.4823","0.11525","0.11525" +"GO:2001242","regulation of intrinsic apoptotic signal...",12,10,7.78,266,"0.1475","0.00369","0.11586" +"GO:0008285","negative regulation of cell proliferatio...",22,16,14.26,490,"0.2948","0.11676","0.11676" +"GO:0051402","neuron apoptotic process",13,11,8.43,217,"0.1099","0.11817","0.11817" +"GO:0002682","regulation of immune system process",51,40,33.05,38,"0.0250","0.02252","0.11845" +"GO:0009141","nucleoside triphosphate metabolic proces...",24,16,15.56,752,"0.5179","0.00108","0.12149" +"GO:0016055","Wnt signaling pathway",27,19,17.5,564,"0.3492","0.12157","0.12157" +"GO:0007219","Notch signaling pathway",12,11,7.78,67,"0.0409","0.12169","0.12169" +"GO:0070585","protein localization to mitochondrion",18,14,11.67,301,"0.1833","0.12246","0.12246" +"GO:0072655","establishment of protein localization to...",18,14,11.67,302,"0.1833","0.12246","0.12246" +"GO:0007169","transmembrane receptor protein tyrosine ...",21,14,13.61,762,"0.5292","0.12261","0.12261" +"GO:0001890","placenta development",10,7,6.48,735,"0.5087","0.12266","0.12266" +"GO:0043393","regulation of protein binding",10,7,6.48,736,"0.5087","0.12266","0.12266" +"GO:0198738","cell-cell signaling by wnt",28,20,18.15,498,"0.3005","0.12267","0.12267" +"GO:0007167","enzyme linked receptor protein signaling...",44,29,28.52,734,"0.5084","0.12446","0.12446" +"GO:0098655","cation transmembrane transport",45,32,29.17,378,"0.2334","0.12468","0.12468" +"GO:0032388","positive regulation of intracellular tra...",13,10,8.43,457,"0.2729","0.12561","0.12561" +"GO:0090316","positive regulation of intracellular pro...",13,10,8.43,458,"0.2729","0.12561","0.12561" +"GO:1903214","regulation of protein targeting to mitoc...",13,10,8.43,459,"0.2729","0.12561","0.12561" +"GO:1903533","regulation of protein targeting",13,10,8.43,460,"0.2729","0.12561","0.12561" +"GO:1903749","positive regulation of establishment of ...",13,10,8.43,461,"0.2729","0.12561","0.12561" +"GO:1903955","positive regulation of protein targeting...",13,10,8.43,462,"0.2729","0.12561","0.12561" +"GO:0009117","nucleotide metabolic process",59,41,38.24,454,"0.2692","0.02068","0.12619" +"GO:0009416","response to light stimulus",18,15,11.67,133,"0.0752","0.12655","0.12655" +"GO:0006839","mitochondrial transport",30,21,19.44,562,"0.3485","0.12718","0.12718" +"GO:0045089","positive regulation of innate immune res...",10,7,6.48,737,"0.5087","0.12735","0.12735" +"GO:0009612","response to mechanical stimulus",14,11,9.07,355,"0.2155","0.12797","0.12797" +"GO:0045732","positive regulation of protein catabolic...",13,10,8.43,463,"0.2729","0.12955","0.12955" +"GO:0051321","meiotic cell cycle",19,14,12.31,485,"0.2900","0.13091","0.13091" +"GO:0019637","organophosphate metabolic process",116,75,75.18,782,"0.5576","0.09832","0.13312" +"GO:0002066","columnar/cuboidal epithelial cell develo...",15,10,9.72,783,"0.5582","0.13445","0.13445" +"GO:0009611","response to wounding",22,18,14.26,128,"0.0683","0.13699","0.13699" +"GO:0032880","regulation of protein localization",55,37,35.65,596,"0.4089","0.13774","0.13774" +"GO:0007166","cell surface receptor signaling pathway",121,80,78.42,629,"0.4201","0.13882","0.13882" +"GO:0046649","lymphocyte activation",12,10,7.78,267,"0.1475","0.13886","0.13886" +"GO:0001932","regulation of protein phosphorylation",42,30,27.22,373,"0.2312","0.14188","0.14188" +"GO:0097305","response to alcohol",22,19,14.26,36,"0.0231","0.00305","0.14195" +"GO:0010563","negative regulation of phosphorus metabo...",27,21,17.5,206,"0.1096","0.14258","0.14258" +"GO:0045936","negative regulation of phosphate metabol...",27,21,17.5,207,"0.1096","0.14258","0.14258" +"GO:0044057","regulation of system process",22,14,14.26,866,"0.6401","0.14291","0.14291" +"GO:0009057","macromolecule catabolic process",126,87,81.66,298,"0.1774","0.14473","0.14473" +"GO:0048515","spermatid differentiation",13,10,8.43,464,"0.2729","0.14494","0.14494" +"GO:0010498","proteasomal protein catabolic process",42,30,27.22,374,"0.2312","0.14650","0.14650" +"GO:0001501","skeletal system development",15,11,9.72,546,"0.3457","0.14672","0.14672" +"GO:0044093","positive regulation of molecular functio...",70,54,45.37,29,"0.0172","0.00451","0.14785" +"GO:0051348","negative regulation of transferase activ...",13,9,8.43,719,"0.4946","0.14786","0.14786" +"GO:0051301","cell division",26,18,16.85,585,"0.4021","0.14846","0.14846" +"GO:0006040","amino sugar metabolic process",15,13,9.72,116,"0.0594","0.14889","0.14889" +"GO:0016331","morphogenesis of embryonic epithelium",10,8,6.48,421,"0.2571","0.14978","0.14978" +"GO:0048705","skeletal system morphogenesis",10,8,6.48,422,"0.2571","0.14978","0.14978" +"GO:0009968","negative regulation of signal transducti...",58,40,37.59,501,"0.3012","0.04142","0.15170" +"GO:0140013","meiotic nuclear division",13,10,8.43,465,"0.2729","0.15547","0.15547" +"GO:1903202","negative regulation of oxidative stress-...",11,10,7.13,110,"0.0587","5.8e-06","0.15592" +"GO:0048736","appendage development",18,12,11.67,769,"0.5424","0.15647","0.15647" +"GO:0051960","regulation of nervous system development",36,20,23.33,1141,"0.9095","0.15931","0.15931" +"GO:1903827","regulation of cellular protein localizat...",31,21,20.09,665,"0.4460","0.15998","0.15998" +"GO:0031047","gene silencing by RNA",16,12,10.37,479,"0.2831","0.16380","0.16380" +"GO:0030522","intracellular receptor signaling pathway",16,11,10.37,707,"0.4834","0.16733","0.16733" +"GO:0050767","regulation of neurogenesis",35,19,22.68,1162,"0.9301","0.17079","0.17079" +"GO:0045926","negative regulation of growth",15,11,9.72,547,"0.3457","0.17126","0.17126" +"GO:0031399","regulation of protein modification proce...",80,60,51.85,52,"0.0319","0.00346","0.17273" +"GO:0035107","appendage morphogenesis",17,11,11.02,843,"0.6127","0.17358","0.17358" +"GO:1903522","regulation of blood circulation",12,8,7.78,799,"0.5780","0.17580","0.17580" +"GO:0010821","regulation of mitochondrion organization",19,15,12.31,253,"0.1451","0.17625","0.17625" +"GO:0055086","nucleobase-containing small molecule met...",77,53,49.91,445,"0.2670","0.02228","0.17688" +"GO:0044770","cell cycle phase transition",21,17,13.61,188,"0.0885","0.00036","0.17710" +"GO:0048523","negative regulation of cellular process",225,159,145.83,48,"0.0305","0.03952","0.17817" +"GO:0006022","aminoglycan metabolic process",14,12,9.07,146,"0.0812","0.18085","0.18085" +"GO:1901071","glucosamine-containing compound metaboli...",14,12,9.07,147,"0.0812","0.18085","0.18085" +"GO:0010605","negative regulation of macromolecule met...",136,99,88.15,40,"0.0262","0.05900","0.18121" +"GO:0060070","canonical Wnt signaling pathway",15,10,9.72,784,"0.5582","0.18222","0.18222" +"GO:0045165","cell fate commitment",17,12,11.02,609,"0.4129","0.18240","0.18240" +"GO:0002683","negative regulation of immune system pro...",12,10,7.78,268,"0.1475","0.18299","0.18299" +"GO:0016485","protein processing",12,10,7.78,269,"0.1475","0.18299","0.18299" +"GO:0002252","immune effector process",27,20,17.5,348,"0.2110","0.00070","0.18590" +"GO:0051338","regulation of transferase activity",34,25,22.04,312,"0.1876","0.18806","0.18806" +"GO:0009144","purine nucleoside triphosphate metabolic...",22,15,14.26,683,"0.4659","0.00218","0.19057" +"GO:0046434","organophosphate catabolic process",15,9,9.72,984,"0.7505","0.19104","0.19104" +"GO:0065009","regulation of molecular function",125,93,81.02,21,"0.0122","0.02352","0.19110" +"GO:0051173","positive regulation of nitrogen compound...",107,80,69.35,27,"0.0161","0.00610","0.19120" +"GO:0006643","membrane lipid metabolic process",14,9,9.07,853,"0.6351","0.19148","0.19148" +"GO:0060562","epithelial tube morphogenesis",24,17,15.56,566,"0.3495","0.19207","0.19207" +"GO:0098609","cell-cell adhesion",38,27,24.63,443,"0.2644","0.19229","0.19229" +"GO:0000910","cytokinesis",13,10,8.43,466,"0.2729","0.19247","0.19247" +"GO:0006479","protein methylation",26,18,16.85,586,"0.4021","0.19407","0.19407" +"GO:0008213","protein alkylation",26,18,16.85,587,"0.4021","0.19407","0.19407" +"GO:1901215","negative regulation of neuron death",12,10,7.78,270,"0.1475","0.19491","0.19491" +"GO:0009967","positive regulation of signal transducti...",61,45,39.54,185,"0.0868","0.19521","0.19521" +"GO:0007010","cytoskeleton organization",97,69,62.87,209,"0.1098","0.04060","0.19529" +"GO:0045595","regulation of cell differentiation",73,47,47.31,819,"0.5845","0.19552","0.19552" +"GO:0000226","microtubule cytoskeleton organization",34,25,22.04,313,"0.1876","0.00863","0.19569" +"GO:0042325","regulation of phosphorylation",49,35,31.76,341,"0.2051","0.19755","0.19755" +"GO:0090092","regulation of transmembrane receptor pro...",15,10,9.72,785,"0.5582","0.19900","0.19900" +"GO:0010562","positive regulation of phosphorus metabo...",25,18,16.2,493,"0.2982","0.19901","0.19901" +"GO:0045937","positive regulation of phosphate metabol...",25,18,16.2,494,"0.2982","0.19901","0.19901" +"GO:0006281","DNA repair",63,44,40.83,391,"0.2399","0.20275","0.20275" +"GO:0001934","positive regulation of protein phosphory...",20,15,12.96,384,"0.2389","0.20324","0.20324" +"GO:0022898","regulation of transmembrane transporter ...",12,10,7.78,271,"0.1475","0.20684","0.20684" +"GO:0032409","regulation of transporter activity",12,10,7.78,272,"0.1475","0.20684","0.20684" +"GO:0032412","regulation of ion transmembrane transpor...",12,10,7.78,273,"0.1475","0.20684","0.20684" +"GO:0006626","protein targeting to mitochondrion",17,13,11.02,367,"0.2291","0.20699","0.20699" +"GO:0002253","activation of immune response",18,14,11.67,303,"0.1833","0.20973","0.20973" +"GO:0009892","negative regulation of metabolic process",147,106,95.28,53,"0.0326","0.14631","0.21035" +"GO:0010720","positive regulation of cell development",21,14,13.61,763,"0.5292","0.21076","0.21076" +"GO:0010629","negative regulation of gene expression",99,71,64.17,184,"0.0851","0.21138","0.21138" +"GO:0001101","response to acid chemical",20,15,12.96,385,"0.2389","0.21146","0.21146" +"GO:0045088","regulation of innate immune response",12,9,7.78,528,"0.3411","0.21182","0.21182" +"GO:0097164","ammonium ion metabolic process",16,11,10.37,708,"0.4834","0.21352","0.21352" +"GO:0043087","regulation of GTPase activity",16,12,10.37,480,"0.2831","0.21414","0.21414" +"GO:0060491","regulation of cell projection assembly",16,9,10.37,1065,"0.8374","0.21414","0.21414" +"GO:0120032","regulation of plasma membrane bounded ce...",16,9,10.37,1066,"0.8374","0.21414","0.21414" +"GO:0045321","leukocyte activation",19,15,12.31,254,"0.1451","0.21754","0.21754" +"GO:0006887","exocytosis",25,18,16.2,495,"0.2982","0.21841","0.21841" +"GO:0051052","regulation of DNA metabolic process",15,13,9.72,117,"0.0594","0.22009","0.22009" +"GO:0060284","regulation of cell development",40,23,25.93,1105,"0.8729","0.22059","0.22059" +"GO:0010035","response to inorganic substance",34,26,22.04,202,"0.1028","0.03527","0.22070" +"GO:0019098","reproductive behavior",10,9,6.48,167,"0.0837","0.22074","0.22074" +"GO:0009628","response to abiotic stimulus",81,61,52.5,41,"0.0268","0.00533","0.22190" +"GO:0016458","gene silencing",18,13,11.67,559,"0.3481","0.22677","0.22677" +"GO:0001906","cell killing",11,9,7.13,326,"0.1959","4.3e-05","0.22866" +"GO:0031341","regulation of cell killing",11,9,7.13,327,"0.1959","4.3e-05","0.22866" +"GO:0031343","positive regulation of cell killing",11,9,7.13,328,"0.1959","4.3e-05","0.22866" +"GO:1903046","meiotic cell cycle process",16,11,10.37,709,"0.4834","0.22887","0.22887" +"GO:0034248","regulation of cellular amide metabolic p...",20,15,12.96,386,"0.2389","0.23005","0.23005" +"GO:0048863","stem cell differentiation",14,10,9.07,621,"0.4166","0.23083","0.23083" +"GO:0006955","immune response",48,34,31.11,381,"0.2351","0.00562","0.23297" +"GO:0006753","nucleoside phosphate metabolic process",61,41,39.54,584,"0.4015","0.02665","0.23710" +"GO:0045087","innate immune response",16,12,10.37,481,"0.2831","0.23748","0.23748" +"GO:0007267","cell-cell signaling",74,51,47.96,446,"0.2676","0.23855","0.23855" +"GO:0007626","locomotory behavior",18,14,11.67,304,"0.1833","0.24086","0.24086" +"GO:0032101","regulation of response to external stimu...",18,14,11.67,305,"0.1833","0.24086","0.24086" +"GO:0043065","positive regulation of apoptotic process",18,14,11.67,306,"0.1833","0.24086","0.24086" +"GO:0090287","regulation of cellular response to growt...",18,12,11.67,770,"0.5424","0.24150","0.24150" +"GO:0043066","negative regulation of apoptotic process",46,37,29.81,26,"0.0156","0.01462","0.24219" +"GO:0015672","monovalent inorganic cation transport",43,33,27.87,123,"0.0647","0.24254","0.24254" +"GO:0010822","positive regulation of mitochondrion org...",16,12,10.37,482,"0.2831","0.24289","0.24289" +"GO:0051962","positive regulation of nervous system de...",19,11,12.31,1042,"0.8107","0.24474","0.24474" +"GO:0048598","embryonic morphogenesis",45,32,29.17,379,"0.2334","0.24707","0.24707" +"GO:0001505","regulation of neurotransmitter levels",24,16,15.56,753,"0.5179","0.24890","0.24890" +"GO:0035967","cellular response to topologically incor...",20,16,12.96,224,"0.1138","0.24968","0.24968" +"GO:0007286","spermatid development",12,9,7.78,529,"0.3411","0.24992","0.24992" +"GO:0043547","positive regulation of GTPase activity",12,9,7.78,530,"0.3411","0.25052","0.25052" +"GO:0010648","negative regulation of cell communicatio...",60,40,38.89,660,"0.4385","0.06769","0.25154" +"GO:0023057","negative regulation of signaling",60,40,38.89,661,"0.4385","0.06769","0.25154" +"GO:0030155","regulation of cell adhesion",14,12,9.07,148,"0.0812","0.25257","0.25257" +"GO:1905114","cell surface receptor signaling pathway ...",29,19,18.8,781,"0.5534","0.25297","0.25297" +"GO:0010876","lipid localization",29,18,18.8,919,"0.6985","0.25460","0.25460" +"GO:0010639","negative regulation of organelle organiz...",22,18,14.26,129,"0.0683","0.25492","0.25492" +"GO:0048477","oogenesis",23,16,14.91,593,"0.4056","0.25536","0.25536" +"GO:0006302","double-strand break repair",10,9,6.48,168,"0.0837","0.25571","0.25571" +"GO:0070534","protein K63-linked ubiquitination",10,8,6.48,423,"0.2571","0.25571","0.25571" +"GO:0031349","positive regulation of defense response",13,8,8.43,932,"0.7114","0.25687","0.25687" +"GO:0048592","eye morphogenesis",21,13,13.61,923,"0.7002","0.25769","0.25769" +"GO:0048469","cell maturation",13,9,8.43,720,"0.4946","0.25932","0.25932" +"GO:0060828","regulation of canonical Wnt signaling pa...",13,9,8.43,721,"0.4946","0.25932","0.25932" +"GO:0003007","heart morphogenesis",14,10,9.07,622,"0.4166","0.26238","0.26238" +"GO:0030308","negative regulation of cell growth",14,10,9.07,623,"0.4166","0.26238","0.26238" +"GO:0006814","sodium ion transport",24,19,15.56,195,"0.0999","0.26315","0.26315" +"GO:0050769","positive regulation of neurogenesis",18,11,11.67,947,"0.7232","0.26370","0.26370" +"GO:0048667","cell morphogenesis involved in neuron di...",32,20,20.74,902,"0.6828","0.26431","0.26431" +"GO:0010975","regulation of neuron projection developm...",19,10,12.31,1142,"0.9105","0.26462","0.26462" +"GO:0051054","positive regulation of DNA metabolic pro...",10,9,6.48,169,"0.0837","0.26469","0.26469" +"GO:0042060","wound healing",18,14,11.67,307,"0.1833","0.26489","0.26489" +"GO:0051604","protein maturation",16,13,10.37,239,"0.1297","0.26565","0.26565" +"GO:0071363","cellular response to growth factor stimu...",30,21,19.44,563,"0.3485","0.26627","0.26627" +"GO:0120036","plasma membrane bounded cell projection ...",84,51,54.44,1055,"0.8209","0.26653","0.26653" +"GO:1901615","organic hydroxy compound metabolic proce...",24,16,15.56,754,"0.5179","0.26727","0.26727" +"GO:0071310","cellular response to organic substance",98,68,63.52,320,"0.1956","0.26736","0.26736" +"GO:0051606","detection of stimulus",12,9,7.78,531,"0.3411","0.26812","0.26812" +"GO:0031175","neuron projection development",51,31,33.05,1008,"0.7772","0.26828","0.26828" +"GO:0006259","DNA metabolic process",107,71,69.35,603,"0.4094","0.26949","0.26949" +"GO:0002768","immune response-regulating cell surface ...",11,8,7.13,633,"0.4201","0.27127","0.27127" +"GO:1903320","regulation of protein modification by sm...",22,19,14.26,37,"0.0231","9.1e-05","0.27204" +"GO:0010647","positive regulation of cell communicatio...",68,50,44.07,137,"0.0790","0.27319","0.27319" +"GO:0023056","positive regulation of signaling",68,50,44.07,138,"0.0790","0.27319","0.27319" +"GO:0051336","regulation of hydrolase activity",53,41,34.35,55,"0.0337","0.01393","0.27387" +"GO:0006664","glycolipid metabolic process",10,6,6.48,964,"0.7478","0.27503","0.27503" +"GO:1903509","liposaccharide metabolic process",10,6,6.48,965,"0.7478","0.27503","0.27503" +"GO:0005975","carbohydrate metabolic process",68,48,44.07,316,"0.1895","0.27527","0.27527" +"GO:0006413","translational initiation",13,10,8.43,467,"0.2729","0.27596","0.27596" +"GO:0009408","response to heat",35,29,22.68,25,"0.0155","0.00041","0.27994" +"GO:0043009","chordate embryonic development",38,27,24.63,444,"0.2644","0.28368","0.28368" +"GO:0031325","positive regulation of cellular metaboli...",121,88,78.42,59,"0.0363","0.01458","0.28369" +"GO:0010638","positive regulation of organelle organiz...",52,36,33.7,506,"0.3027","0.28525","0.28525" +"GO:0033157","regulation of intracellular protein tran...",17,13,11.02,368,"0.2291","0.28595","0.28595" +"GO:0061136","regulation of proteasomal protein catabo...",17,12,11.02,610,"0.4129","0.28595","0.28595" +"GO:0044089","positive regulation of cellular componen...",39,25,25.28,840,"0.6093","0.28710","0.28710" +"GO:0002064","epithelial cell development",20,14,12.96,597,"0.4092","0.29034","0.29034" +"GO:0002065","columnar/cuboidal epithelial cell differ...",20,13,12.96,825,"0.5944","0.29290","0.29290" +"GO:0006325","chromatin organization",71,49,46.02,449,"0.2681","0.29334","0.29334" +"GO:0007049","cell cycle",125,88,81.02,204,"0.1052","0.11022","0.29432" +"GO:0048585","negative regulation of response to stimu...",75,52,48.61,396,"0.2408","0.00347","0.29451" +"GO:0030030","cell projection organization",86,51,55.74,1116,"0.8851","0.29503","0.29503" +"GO:0042063","gliogenesis",10,7,6.48,738,"0.5087","0.29765","0.29765" +"GO:0043632","modification-dependent macromolecule cat...",72,48,46.67,646,"0.4217","0.29776","0.29776" +"GO:0009886","post-embryonic animal morphogenesis",11,6,7.13,1073,"0.8487","0.29936","0.29936" +"GO:0035220","wing disc development",11,7,7.13,879,"0.6637","0.29936","0.29936" +"GO:1902533","positive regulation of intracellular sig...",31,24,20.09,191,"0.0958","0.30187","0.30187" +"GO:0009893","positive regulation of metabolic process",134,98,86.85,32,"0.0221","0.02411","0.30377" +"GO:0045666","positive regulation of neuron differenti...",16,9,10.37,1067,"0.8374","0.30610","0.30610" +"GO:0007178","transmembrane receptor protein serine/th...",24,16,15.56,755,"0.5179","0.30612","0.30612" +"GO:0048524","positive regulation of viral process",12,10,7.78,274,"0.1475","0.00025","0.30727" +"GO:0009581","detection of external stimulus",10,8,6.48,424,"0.2571","0.30998","0.30998" +"GO:0009582","detection of abiotic stimulus",10,8,6.48,425,"0.2571","0.30998","0.30998" +"GO:0044419","interspecies interaction between organis...",25,20,16.2,135,"0.0787","0.01991","0.31059" +"GO:0032268","regulation of cellular protein metabolic...",125,94,81.02,10,"0.0071","0.00240","0.31425" +"GO:0001654","eye development",36,24,23.33,704,"0.4834","0.31708","0.31708" +"GO:0048880","sensory system development",36,24,23.33,705,"0.4834","0.31708","0.31708" +"GO:0150063","visual system development",36,24,23.33,706,"0.4834","0.31708","0.31708" +"GO:0007017","microtubule-based process",75,49,48.61,749,"0.5153","0.02034","0.31775" +"GO:0098660","inorganic ion transmembrane transport",33,23,21.39,551,"0.3475","0.32013","0.32013" +"GO:0098662","inorganic cation transmembrane transport",33,23,21.39,552,"0.3475","0.32013","0.32013" +"GO:0006030","chitin metabolic process",11,9,7.13,329,"0.1959","0.32041","0.32041" +"GO:0060541","respiratory system development",14,9,9.07,854,"0.6351","0.32264","0.32264" +"GO:1901654","response to ketone",16,14,10.37,82,"0.0432","0.00183","0.32343" +"GO:0071806","protein transmembrane transport",12,9,7.78,532,"0.3411","0.00025","0.32501" +"GO:1901135","carbohydrate derivative metabolic proces...",149,98,96.57,659,"0.4377","0.04915","0.32526" +"GO:0015849","organic acid transport",20,13,12.96,826,"0.5944","0.32554","0.32554" +"GO:0046942","carboxylic acid transport",20,13,12.96,827,"0.5944","0.32554","0.32554" +"GO:0040029","regulation of gene expression, epigeneti...",21,15,13.61,565,"0.3492","0.32632","0.32632" +"GO:0022604","regulation of cell morphogenesis",16,11,10.37,710,"0.4834","0.32688","0.32688" +"GO:1903050","regulation of proteolysis involved in ce...",18,12,11.67,771,"0.5424","0.32983","0.32983" +"GO:0016197","endosomal transport",18,13,11.67,560,"0.3481","0.33060","0.33060" +"GO:0050795","regulation of behavior",11,9,7.13,330,"0.1959","0.33130","0.33130" +"GO:0071396","cellular response to lipid",31,21,20.09,666,"0.4460","0.33184","0.33184" +"GO:0060341","regulation of cellular localization",49,36,31.76,237,"0.1280","0.33200","0.33200" +"GO:0048812","neuron projection morphogenesis",35,20,22.68,1099,"0.8712","0.33265","0.33265" +"GO:0048858","cell projection morphogenesis",35,20,22.68,1100,"0.8712","0.33265","0.33265" +"GO:0120039","plasma membrane bounded cell projection ...",35,20,22.68,1101,"0.8712","0.33265","0.33265" +"GO:1901701","cellular response to oxygen-containing c...",40,28,25.93,512,"0.3039","0.01836","0.33270" +"GO:0051246","regulation of protein metabolic process",132,98,85.55,18,"0.0113","0.00204","0.33280" +"GO:0035821","modification of morphology or physiology...",11,10,7.13,111,"0.0587","9.4e-05","0.33308" +"GO:0051817","modification of morphology or physiology...",11,10,7.13,112,"0.0587","9.4e-05","0.33308" +"GO:0006812","cation transport",103,74,66.76,134,"0.0759","0.18136","0.33329" +"GO:0007552","metamorphosis",10,6,6.48,966,"0.7478","0.33420","0.33420" +"GO:0007560","imaginal disc morphogenesis",10,6,6.48,967,"0.7478","0.33420","0.33420" +"GO:0035120","post-embryonic appendage morphogenesis",10,5,6.48,1124,"0.9033","0.33420","0.33420" +"GO:0048563","post-embryonic animal organ morphogenesi...",10,6,6.48,968,"0.7478","0.33420","0.33420" +"GO:0048569","post-embryonic animal organ development",10,6,6.48,969,"0.7478","0.33420","0.33420" +"GO:0048707","instar larval or pupal morphogenesis",10,6,6.48,970,"0.7478","0.33420","0.33420" +"GO:0015711","organic anion transport",25,15,16.2,1002,"0.7661","0.33659","0.33659" +"GO:0006974","cellular response to DNA damage stimulus",90,61,58.33,515,"0.3158","0.33757","0.33757" +"GO:0009798","axis specification",11,8,7.13,634,"0.4201","0.33800","0.33800" +"GO:0043603","cellular amide metabolic process",90,54,58.33,1086,"0.8612","0.34068","0.34068" +"GO:0097190","apoptotic signaling pathway",25,18,16.2,496,"0.2982","0.01909","0.34274" +"GO:0070588","calcium ion transmembrane transport",17,10,11.02,1013,"0.7831","0.34284","0.34284" +"GO:0007346","regulation of mitotic cell cycle",27,21,17.5,208,"0.1096","0.02136","0.34326" +"GO:0006511","ubiquitin-dependent protein catabolic pr...",71,47,46.02,674,"0.4562","0.34526","0.34526" +"GO:0019941","modification-dependent protein catabolic...",71,47,46.02,675,"0.4562","0.34526","0.34526" +"GO:0019827","stem cell population maintenance",10,8,6.48,426,"0.2571","0.34735","0.34735" +"GO:0098727","maintenance of cell number",10,8,6.48,427,"0.2571","0.34735","0.34735" +"GO:0018205","peptidyl-lysine modification",33,21,21.39,850,"0.6335","0.34878","0.34878" +"GO:0034220","ion transmembrane transport",76,49,49.26,797,"0.5776","0.35127","0.35127" +"GO:0006793","phosphorus metabolic process",356,247,230.74,42,"0.0282","0.00016","0.35148" +"GO:0006796","phosphate-containing compound metabolic ...",354,246,229.44,39,"0.0257","0.00021","0.35328" +"GO:0006310","DNA recombination",20,15,12.96,387,"0.2389","0.35343","0.35343" +"GO:0090596","sensory organ morphogenesis",22,14,14.26,867,"0.6401","0.35400","0.35400" +"GO:0006464","cellular protein modification process",449,308,291.01,56,"0.0348","0.00014","0.35470" +"GO:0036211","protein modification process",449,308,291.01,57,"0.0348","0.00014","0.35470" +"GO:0062012","regulation of small molecule metabolic p...",11,4,7.13,1220,"0.9875","0.35739","0.35739" +"GO:0030433","ubiquitin-dependent ERAD pathway",18,14,11.67,308,"0.1833","0.36046","0.36046" +"GO:0022008","neurogenesis",98,62,63.52,896,"0.6712","0.36590","0.36590" +"GO:0048519","negative regulation of biological proces...",263,182,170.46,122,"0.0645","0.11563","0.36724" +"GO:0032386","regulation of intracellular transport",26,20,16.85,244,"0.1359","0.36910","0.36910" +"GO:0003333","amino acid transmembrane transport",11,8,7.13,635,"0.4201","0.36945","0.36945" +"GO:0006865","amino acid transport",11,8,7.13,636,"0.4201","0.36945","0.36945" +"GO:0033365","protein localization to organelle",55,39,35.65,346,"0.2090","0.07388","0.36982" +"GO:0006402","mRNA catabolic process",23,16,14.91,594,"0.4056","0.37029","0.37029" +"GO:0045596","negative regulation of cell differentiat...",27,17,17.5,877,"0.6630","0.37217","0.37217" +"GO:0022412","cellular process involved in reproductio...",38,25,24.63,760,"0.5242","0.37282","0.37282" +"GO:0044281","small molecule metabolic process",190,120,123.15,945,"0.7195","0.25248","0.37351" +"GO:0002520","immune system development",25,19,16.2,290,"0.1672","0.37366","0.37366" +"GO:0048534","hematopoietic or lymphoid organ developm...",25,19,16.2,291,"0.1672","0.37366","0.37366" +"GO:1903362","regulation of cellular protein catabolic...",19,12,12.31,874,"0.6597","0.37395","0.37395" +"GO:0030111","regulation of Wnt signaling pathway",16,10,10.37,904,"0.6829","0.37461","0.37461" +"GO:0051222","positive regulation of protein transport",20,12,12.96,994,"0.7576","0.37464","0.37464" +"GO:1904951","positive regulation of establishment of ...",20,12,12.96,995,"0.7576","0.37464","0.37464" +"GO:0010243","response to organonitrogen compound",47,34,30.46,297,"0.1749","0.37744","0.37744" +"GO:0007268","chemical synaptic transmission",33,23,21.39,553,"0.3475","0.37849","0.37849" +"GO:0098916","anterograde trans-synaptic signaling",33,23,21.39,554,"0.3475","0.37849","0.37849" +"GO:0099536","synaptic signaling",33,23,21.39,555,"0.3475","0.37849","0.37849" +"GO:0099537","trans-synaptic signaling",33,23,21.39,556,"0.3475","0.37849","0.37849" +"GO:0016032","viral process",21,17,13.61,189,"0.0885","0.00485","0.38037" +"GO:1901700","response to oxygen-containing compound",63,45,40.83,287,"0.1635","0.16054","0.38342" +"GO:0006869","lipid transport",23,14,14.91,952,"0.7355","0.38347","0.38347" +"GO:0042592","homeostatic process",83,62,53.8,54,"0.0334","0.00618","0.38364" +"GO:0040007","growth",62,41,40.18,694,"0.4712","0.38522","0.38522" +"GO:1900408","negative regulation of cellular response...",13,11,8.43,218,"0.1099","5.5e-05","0.38550" +"GO:0019220","regulation of phosphate metabolic proces...",59,42,38.24,311,"0.1848","0.38704","0.38704" +"GO:0031344","regulation of cell projection organizati...",31,18,20.09,1062,"0.8370","0.38708","0.38708" +"GO:0120035","regulation of plasma membrane bounded ce...",31,18,20.09,1063,"0.8370","0.38708","0.38708" +"GO:0009952","anterior/posterior pattern specification",13,9,8.43,722,"0.4946","0.38730","0.38730" +"GO:0031098","stress-activated protein kinase signalin...",11,9,7.13,331,"0.1959","0.38798","0.38798" +"GO:0007444","imaginal disc development",16,10,10.37,905,"0.6829","0.38939","0.38939" +"GO:0043412","macromolecule modification",479,327,310.46,75,"0.0426","0.00029","0.38970" +"GO:0000302","response to reactive oxygen species",20,15,12.96,388,"0.2389","0.00175","0.39094" +"GO:0007283","spermatogenesis",32,20,20.74,903,"0.6828","0.39174","0.39174" +"GO:0010556","regulation of macromolecule biosynthetic...",327,219,211.94,345,"0.2074","0.39305","0.39305" +"GO:0072001","renal system development",23,19,14.91,93,"0.0523","0.01099","0.39323" +"GO:0007281","germ cell development",34,23,22.04,662,"0.4404","0.39446","0.39446" +"GO:0051169","nuclear transport",30,24,19.44,95,"0.0551","0.02654","0.39628" +"GO:0007423","sensory organ development",45,29,29.17,821,"0.5886","0.39764","0.39764" +"GO:0046677","response to antibiotic",25,19,16.2,292,"0.1672","0.00326","0.39829" +"GO:0071559","response to transforming growth factor b...",19,13,12.31,696,"0.4740","0.40035","0.40035" +"GO:0071560","cellular response to transforming growth...",19,13,12.31,697,"0.4740","0.40035","0.40035" +"GO:0043484","regulation of RNA splicing",13,12,8.43,45,"0.0284","0.00016","0.40102" +"GO:0032990","cell part morphogenesis",38,21,24.63,1156,"0.9195","0.40162","0.40162" +"GO:0032886","regulation of microtubule-based process",15,12,9.72,293,"0.1681","0.00320","0.40273" +"GO:0070848","response to growth factor",32,21,20.74,777,"0.5427","0.40274","0.40274" +"GO:0051050","positive regulation of transport",45,32,29.17,380,"0.2334","0.08547","0.40696" +"GO:0030182","neuron differentiation",84,52,54.44,992,"0.7549","0.40710","0.40710" +"GO:0098656","anion transmembrane transport",16,10,10.37,906,"0.6829","0.40807","0.40807" +"GO:0009991","response to extracellular stimulus",28,19,18.15,672,"0.4520","0.02598","0.40879" +"GO:0031667","response to nutrient levels",28,19,18.15,673,"0.4520","0.02598","0.40879" +"GO:0051098","regulation of binding",13,8,8.43,933,"0.7114","0.40963","0.40963" +"GO:0030097","hemopoiesis",24,18,15.56,340,"0.2038","0.40997","0.40997" +"GO:1903311","regulation of mRNA metabolic process",19,16,12.31,98,"0.0565","0.00033","0.41020" +"GO:0006644","phospholipid metabolic process",49,30,31.76,990,"0.7548","0.41037","0.41037" +"GO:0010970","transport along microtubule",24,14,15.56,1044,"0.8125","0.00019","0.41108" +"GO:0030705","cytoskeleton-dependent intracellular tra...",24,14,15.56,1045,"0.8125","0.00019","0.41108" +"GO:0099111","microtubule-based transport",24,14,15.56,1046,"0.8125","0.00019","0.41108" +"GO:0006518","peptide metabolic process",78,47,50.55,1061,"0.8359","0.41186","0.41186" +"GO:0001503","ossification",10,7,6.48,739,"0.5087","0.41258","0.41258" +"GO:0036503","ERAD pathway",21,16,13.61,319,"0.1948","0.41346","0.41346" +"GO:0005996","monosaccharide metabolic process",17,13,11.02,369,"0.2291","0.41422","0.41422" +"GO:0006260","DNA replication",36,21,23.33,1071,"0.8405","0.41507","0.41507" +"GO:0007005","mitochondrion organization",37,25,23.98,657,"0.4351","0.41736","0.41736" +"GO:1903829","positive regulation of cellular protein ...",20,12,12.96,996,"0.7576","0.41781","0.41781" +"GO:0048584","positive regulation of response to stimu...",88,64,57.04,130,"0.0688","0.12726","0.41951" +"GO:0010976","positive regulation of neuron projection...",10,6,6.48,971,"0.7478","0.41983","0.41983" +"GO:0003013","circulatory system process",16,10,10.37,907,"0.6829","0.42020","0.42020" +"GO:0008015","blood circulation",16,10,10.37,908,"0.6829","0.42020","0.42020" +"GO:0042147","retrograde transport, endosome to Golgi",12,9,7.78,533,"0.3411","0.42088","0.42088" +"GO:0001745","compound eye morphogenesis",10,6,6.48,972,"0.7478","0.42128","0.42128" +"GO:0048749","compound eye development",10,6,6.48,973,"0.7478","0.42128","0.42128" +"GO:0007165","signal transduction",410,257,265.73,1081,"0.8527","0.38718","0.42147" +"GO:0000003","reproduction",115,80,74.54,284,"0.1603","0.04750","0.42215" +"GO:0009308","amine metabolic process",11,7,7.13,880,"0.6637","0.42225","0.42225" +"GO:0044106","cellular amine metabolic process",11,7,7.13,881,"0.6637","0.42225","0.42225" +"GO:0006470","protein dephosphorylation",36,25,23.33,549,"0.3463","0.42246","0.42246" +"GO:1903201","regulation of oxidative stress-induced c...",12,10,7.78,275,"0.1475","2.0e-05","0.42275" +"GO:0071214","cellular response to abiotic stimulus",13,9,8.43,723,"0.4946","0.42286","0.42286" +"GO:0104004","cellular response to environmental stimu...",13,9,8.43,724,"0.4946","0.42286","0.42286" +"GO:0032434","regulation of proteasomal ubiquitin-depe...",10,6,6.48,974,"0.7478","0.42859","0.42859" +"GO:0060041","retina development in camera-type eye",15,9,9.72,985,"0.7505","0.42873","0.42873" +"GO:0048589","developmental growth",39,26,25.28,699,"0.4765","0.43040","0.43040" +"GO:0006790","sulfur compound metabolic process",22,15,14.26,684,"0.4659","0.43413","0.43413" +"GO:0044403","symbiont process",24,19,15.56,196,"0.0999","0.01467","0.43469" +"GO:0044248","cellular catabolic process",183,120,118.61,664,"0.4456","0.43588","0.43588" +"GO:0051174","regulation of phosphorus metabolic proce...",60,42,38.89,390,"0.2394","0.43637","0.43637" +"GO:0006952","defense response",53,36,34.35,571,"0.3740","0.43667","0.43667" +"GO:0050808","synapse organization",20,13,12.96,828,"0.5944","0.43859","0.43859" +"GO:0031326","regulation of cellular biosynthetic proc...",332,221,215.18,406,"0.2560","0.43875","0.43875" +"GO:0050803","regulation of synapse structure or activ...",11,6,7.13,1074,"0.8487","0.43921","0.43921" +"GO:0048666","neuron development",65,43,42.13,690,"0.4660","0.44116","0.44116" +"GO:0070201","regulation of establishment of protein l...",31,19,20.09,950,"0.7302","0.44157","0.44157" +"GO:0002165","instar larval or pupal development",13,6,8.43,1181,"0.9528","0.44185","0.44185" +"GO:1901605","alpha-amino acid metabolic process",19,14,12.31,486,"0.2900","0.44290","0.44290" +"GO:0035601","protein deacylation",12,9,7.78,534,"0.3411","0.44346","0.44346" +"GO:0098732","macromolecule deacylation",12,9,7.78,535,"0.3411","0.44346","0.44346" +"GO:0000904","cell morphogenesis involved in different...",40,26,25.93,789,"0.5626","0.44705","0.44705" +"GO:0006909","phagocytosis",20,16,12.96,225,"0.1138","0.00151","0.44842" +"GO:1902532","negative regulation of intracellular sig...",30,23,19.44,230,"0.1180","0.07574","0.44932" +"GO:0042542","response to hydrogen peroxide",16,13,10.37,240,"0.1297","0.00016","0.45038" +"GO:0051716","cellular response to stimulus",549,351,355.82,931,"0.7066","0.35332","0.45062" +"GO:0006986","response to unfolded protein",15,12,9.72,294,"0.1681","0.45176","0.45176" +"GO:2001257","regulation of cation channel activity",10,8,6.48,428,"0.2571","0.45532","0.45532" +"GO:0043900","regulation of multi-organism process",24,17,15.56,567,"0.3495","0.01457","0.45631" +"GO:0016569","covalent chromatin modification",50,36,32.41,299,"0.1779","0.45782","0.45782" +"GO:0002697","regulation of immune effector process",16,13,10.37,241,"0.1297","0.00337","0.45854" +"GO:0032103","positive regulation of response to exter...",10,7,6.48,740,"0.5087","0.45983","0.45983" +"GO:0009889","regulation of biosynthetic process",333,222,215.83,397,"0.2424","0.46154","0.46154" +"GO:0060627","regulation of vesicle-mediated transport",29,21,18.8,407,"0.2563","0.00075","0.46161" +"GO:0006066","alcohol metabolic process",14,9,9.07,855,"0.6351","0.46261","0.46261" +"GO:0033673","negative regulation of kinase activity",11,7,7.13,882,"0.6637","0.46362","0.46362" +"GO:0046686","response to cadmium ion",14,12,9.07,149,"0.0812","0.00110","0.46393" +"GO:0006457","protein folding",50,39,32.41,49,"0.0309","0.00150","0.46490" +"GO:0022414","reproductive process",109,76,70.65,283,"0.1596","0.05673","0.46707" +"GO:0033993","response to lipid",54,39,35,279,"0.1564","0.09075","0.46759" +"GO:0007018","microtubule-based movement",49,31,31.76,871,"0.6525","0.00920","0.46765" +"GO:0002521","leukocyte differentiation",10,8,6.48,429,"0.2571","0.47043","0.47043" +"GO:0016311","dephosphorylation",48,32,31.11,676,"0.4585","0.47044","0.47044" +"GO:0007416","synapse assembly",10,7,6.48,741,"0.5087","0.47347","0.47347" +"GO:0043068","positive regulation of programmed cell d...",20,14,12.96,598,"0.4092","0.47373","0.47373" +"GO:0006352","DNA-templated transcription, initiation",16,11,10.37,711,"0.4834","0.47425","0.47425" +"GO:0010941","regulation of cell death",73,51,47.31,351,"0.2152","0.07586","0.47571" +"GO:0006913","nucleocytoplasmic transport",28,22,18.15,187,"0.0878","0.01602","0.47597" +"GO:0010564","regulation of cell cycle process",29,22,18.8,250,"0.1444","0.01489","0.47755" +"GO:0040008","regulation of growth",32,22,20.74,577,"0.3953","0.48015","0.48015" +"GO:2000112","regulation of cellular macromolecule bio...",325,217,210.64,377,"0.2329","0.48132","0.48132" +"GO:0060548","negative regulation of cell death",52,40,33.7,72,"0.0413","0.04578","0.48169" +"GO:0019318","hexose metabolic process",14,10,9.07,624,"0.4166","0.48399","0.48399" +"GO:0009199","ribonucleoside triphosphate metabolic pr...",21,14,13.61,764,"0.5292","0.00143","0.48433" +"GO:0010942","positive regulation of cell death",23,16,14.91,595,"0.4056","0.48641","0.48641" +"GO:0051403","stress-activated MAPK cascade",10,8,6.48,430,"0.2571","0.48877","0.48877" +"GO:0055085","transmembrane transport",203,135,131.57,518,"0.3283","0.17171","0.48973" +"GO:0060271","cilium assembly",23,15,14.91,809,"0.5788","0.49180","0.49180" +"GO:0098657","import into cell",47,36,30.46,101,"0.0569","0.01664","0.49362" +"GO:0023051","regulation of signaling",163,111,105.65,342,"0.2055","0.40812","0.49408" +"GO:0071236","cellular response to antibiotic",17,13,11.02,370,"0.2291","0.00098","0.49512" +"GO:0016042","lipid catabolic process",21,14,13.61,765,"0.5292","0.49532","0.49532" +"GO:0051272","positive regulation of cellular componen...",20,11,12.96,1109,"0.8755","0.49546","0.49546" +"GO:2000058","regulation of ubiquitin-dependent protei...",11,6,7.13,1075,"0.8487","0.49599","0.49599" +"GO:0006950","response to stress",236,162,152.96,205,"0.1096","0.17898","0.49647" +"GO:0051091","positive regulation of DNA-binding trans...",12,7,7.78,1022,"0.7837","0.49669","0.49669" +"GO:0030198","extracellular matrix organization",11,8,7.13,637,"0.4201","0.49732","0.49732" +"GO:0043062","extracellular structure organization",11,8,7.13,638,"0.4201","0.49732","0.49732" +"GO:0008152","metabolic process",1584,1051,1026.64,28,"0.0162","0.01345","0.49737" +"GO:0010769","regulation of cell morphogenesis involve...",10,5,6.48,1125,"0.9033","0.49803","0.49803" +"GO:0050773","regulation of dendrite development",10,4,6.48,1199,"0.9734","0.49803","0.49803" +"GO:0006629","lipid metabolic process",127,80,82.31,929,"0.7064","0.49892","0.49892" +"GO:0045454","cell redox homeostasis",17,12,11.02,611,"0.4129","0.49894","0.49894" +"GO:0033554","cellular response to stress",157,108,101.76,285,"0.1604","0.10523","0.49926" +"GO:0007292","female gamete generation",27,17,17.5,878,"0.6630","0.49970","0.49970" +"GO:0010033","response to organic substance",144,101,93.33,192,"0.0975","0.22016","0.49995" +"GO:0009063","cellular amino acid catabolic process",10,7,6.48,742,"0.5087","0.50267","0.50267" +"GO:0048732","gland development",11,8,7.13,639,"0.4201","0.50307","0.50307" +"GO:0021700","developmental maturation",18,12,11.67,772,"0.5424","0.50380","0.50380" +"GO:0000413","protein peptidyl-prolyl isomerization",12,8,7.78,800,"0.5780","0.50432","0.50432" +"GO:0018208","peptidyl-proline modification",12,8,7.78,801,"0.5780","0.50432","0.50432" +"GO:0007265","Ras protein signal transduction",23,17,14.91,401,"0.2463","0.50519","0.50519" +"GO:0043069","negative regulation of programmed cell d...",48,37,31.11,88,"0.0467","0.02603","0.50532" +"GO:0009966","regulation of signal transduction",145,100,93.98,286,"0.1610","0.28303","0.50535" +"GO:0051240","positive regulation of multicellular org...",58,39,37.59,591,"0.4051","0.50783","0.50783" +"GO:0099003","vesicle-mediated transport in synapse",20,16,12.96,226,"0.1138","0.00396","0.50870" +"GO:0023052","signaling",442,279,286.47,1041,"0.8105","0.47358","0.51005" +"GO:0048232","male gamete generation",36,22,23.33,956,"0.7433","0.51060","0.51060" +"GO:1903825","organic acid transmembrane transport",12,8,7.78,802,"0.5780","0.51114","0.51114" +"GO:1905039","carboxylic acid transmembrane transport",12,8,7.78,803,"0.5780","0.51114","0.51114" +"GO:0044262","cellular carbohydrate metabolic process",15,9,9.72,986,"0.7505","0.51114","0.51114" +"GO:0045944","positive regulation of transcription by ...",34,24,22.04,507,"0.3031","0.51153","0.51153" +"GO:0043010","camera-type eye development",24,16,15.56,756,"0.5179","0.51205","0.51205" +"GO:0061061","muscle structure development",46,32,29.81,509,"0.3037","0.02101","0.51582" +"GO:1901698","response to nitrogen compound",49,34,31.76,508,"0.3032","0.51621","0.51621" +"GO:1901617","organic hydroxy compound biosynthetic pr...",13,7,8.43,1090,"0.8680","0.51743","0.51743" +"GO:0034614","cellular response to reactive oxygen spe...",17,12,11.02,612,"0.4129","0.00098","0.51861" +"GO:0008219","cell death",95,65,61.57,441,"0.2626","0.40391","0.51938" +"GO:0000902","cell morphogenesis",52,33,33.7,870,"0.6424","0.52093","0.52093" +"GO:0007601","visual perception",13,9,8.43,725,"0.4946","0.52099","0.52099" +"GO:0050953","sensory perception of light stimulus",13,9,8.43,726,"0.4946","0.52099","0.52099" +"GO:0045935","positive regulation of nucleobase-contai...",68,49,44.07,236,"0.1262","0.13995","0.52305" +"GO:1902531","regulation of intracellular signal trans...",81,58,52.5,229,"0.1172","0.38571","0.52378" +"GO:0009605","response to external stimulus",104,70,67.41,520,"0.3330","0.21778","0.52380" +"GO:0048869","cellular developmental process",197,128,127.68,748,"0.5139","0.52395","0.52395" +"GO:0034655","nucleobase-containing compound catabolic...",41,25,26.57,993,"0.7554","0.52611","0.52611" +"GO:0009636","response to toxic substance",24,19,15.56,197,"0.0999","0.00222","0.52633" +"GO:0006897","endocytosis",45,34,29.17,150,"0.0835","0.01139","0.52729" +"GO:0009790","embryo development",81,56,52.5,393,"0.2406","0.52784","0.52784" +"GO:0034622","cellular protein-containing complex asse...",71,48,46.02,570,"0.3581","0.11812","0.52883" +"GO:0072507","divalent inorganic cation homeostasis",13,10,8.43,468,"0.2729","0.04269","0.53025" +"GO:0042981","regulation of apoptotic process",62,46,40.18,132,"0.0737","0.02364","0.53052" +"GO:0022402","cell cycle process",89,60,57.68,544,"0.3439","0.06004","0.53088" +"GO:0006357","regulation of transcription by RNA polym...",92,61,59.63,649,"0.4270","0.53268","0.53268" +"GO:0051223","regulation of protein transport",29,18,18.8,920,"0.6985","0.53269","0.53269" +"GO:0090087","regulation of peptide transport",29,18,18.8,921,"0.6985","0.53269","0.53269" +"GO:0051649","establishment of localization in cell",178,119,115.37,513,"0.3066","0.33409","0.53541" +"GO:1903313","positive regulation of mRNA metabolic pr...",12,11,7.78,68,"0.0409","7.3e-05","0.53688" +"GO:0048562","embryonic organ morphogenesis",18,12,11.67,773,"0.5424","0.53837","0.53837" +"GO:0042176","regulation of protein catabolic process",25,16,16.2,844,"0.6232","0.54037","0.54037" +"GO:0034404","nucleobase-containing small molecule bio...",16,9,10.37,1068,"0.8374","0.54312","0.54312" +"GO:0001944","vasculature development",16,10,10.37,909,"0.6829","0.54337","0.54337" +"GO:0048024","regulation of mRNA splicing, via spliceo...",12,11,7.78,69,"0.0409","7.3e-05","0.54394" +"GO:0050684","regulation of mRNA processing",12,11,7.78,70,"0.0409","7.3e-05","0.54394" +"GO:0044257","cellular protein catabolic process",77,51,49.91,669,"0.4472","0.54422","0.54422" +"GO:0051603","proteolysis involved in cellular protein...",77,51,49.91,670,"0.4472","0.54422","0.54422" +"GO:0006401","RNA catabolic process",27,18,17.5,731,"0.5079","0.54442","0.54442" +"GO:0097237","cellular response to toxic substance",15,12,9.72,295,"0.1681","0.00028","0.54463" +"GO:2000027","regulation of animal organ morphogenesis",12,8,7.78,804,"0.5780","0.54582","0.54582" +"GO:0001510","RNA methylation",14,10,9.07,625,"0.4166","0.54676","0.54676" +"GO:0099504","synaptic vesicle cycle",19,16,12.31,99,"0.0565","0.00262","0.54851" +"GO:0016049","cell growth",28,17,18.15,961,"0.7473","0.54921","0.54921" +"GO:0007179","transforming growth factor beta receptor...",16,10,10.37,910,"0.6829","0.54987","0.54987" +"GO:0019438","aromatic compound biosynthetic process",397,261,257.31,569,"0.3581","0.55041","0.55041" +"GO:0048878","chemical homeostasis",34,25,22.04,314,"0.1876","0.12652","0.55190" +"GO:0008610","lipid biosynthetic process",50,30,32.41,1040,"0.8087","0.55356","0.55356" +"GO:0010646","regulation of cell communication",160,109,103.7,343,"0.2062","0.46287","0.55467" +"GO:0009266","response to temperature stimulus",38,30,24.63,85,"0.0438","0.00240","0.55585" +"GO:0031347","regulation of defense response",20,14,12.96,599,"0.4092","0.55764","0.55764" +"GO:0044238","primary metabolic process",1360,903,881.46,58,"0.0352","0.00350","0.55904" +"GO:0019058","viral life cycle",15,12,9.72,296,"0.1681","0.00044","0.55905" +"GO:0033674","positive regulation of kinase activity",11,8,7.13,640,"0.4201","0.55908","0.55908" +"GO:0043410","positive regulation of MAPK cascade",11,8,7.13,641,"0.4201","0.55908","0.55908" +"GO:0045860","positive regulation of protein kinase ac...",11,8,7.13,642,"0.4201","0.55908","0.55908" +"GO:0030154","cell differentiation",192,125,124.44,730,"0.4989","0.55952","0.55952" +"GO:0043903","regulation of symbiosis, encompassing mu...",14,11,9.07,356,"0.2155","0.00110","0.55958" +"GO:0050792","regulation of viral process",14,11,9.07,357,"0.2155","0.00110","0.55958" +"GO:0030036","actin cytoskeleton organization",56,39,36.3,452,"0.2692","0.56156","0.56156" +"GO:0009116","nucleoside metabolic process",18,12,11.67,774,"0.5424","0.56506","0.56506" +"GO:1901657","glycosyl compound metabolic process",18,12,11.67,775,"0.5424","0.56506","0.56506" +"GO:0044782","cilium organization",25,15,16.2,1003,"0.7661","0.56547","0.56547" +"GO:0008016","regulation of heart contraction",10,6,6.48,975,"0.7478","0.56554","0.56554" +"GO:0010721","negative regulation of cell development",12,5,7.78,1201,"0.9739","0.56810","0.56810" +"GO:0051961","negative regulation of nervous system de...",12,5,7.78,1202,"0.9739","0.56810","0.56810" +"GO:0010038","response to metal ion",23,18,14.91,235,"0.1259","0.02124","0.56918" +"GO:0019725","cellular homeostasis",43,30,27.87,511,"0.3039","0.09068","0.56932" +"GO:0048699","generation of neurons",96,60,62.22,949,"0.7256","0.57108","0.57108" +"GO:0050804","modulation of chemical synaptic transmis...",17,10,11.02,1014,"0.7831","0.57321","0.57321" +"GO:0099177","regulation of trans-synaptic signaling",17,10,11.02,1015,"0.7831","0.57321","0.57321" +"GO:0042127","regulation of cell proliferation",48,31,31.11,816,"0.5793","0.57566","0.57566" +"GO:0050793","regulation of developmental process",112,73,72.59,746,"0.5110","0.57590","0.57590" +"GO:0009791","post-embryonic development",31,17,20.09,1148,"0.9112","0.57697","0.57697" +"GO:0030041","actin filament polymerization",16,11,10.37,712,"0.4834","0.57902","0.57902" +"GO:0030833","regulation of actin filament polymerizat...",16,11,10.37,713,"0.4834","0.57902","0.57902" +"GO:0034654","nucleobase-containing compound biosynthe...",385,255,249.53,475,"0.2824","0.57963","0.57963" +"GO:0035239","tube morphogenesis",33,21,21.39,851,"0.6335","0.57978","0.57978" +"GO:0018130","heterocycle biosynthetic process",398,262,257.96,543,"0.3432","0.58112","0.58112" +"GO:0009896","positive regulation of catabolic process",28,18,18.15,838,"0.6084","0.58674","0.58674" +"GO:0080135","regulation of cellular response to stres...",48,35,31.11,276,"0.1500","0.00292","0.58674" +"GO:1901292","nucleoside phosphate catabolic process",10,5,6.48,1126,"0.9033","0.58782","0.58782" +"GO:0046578","regulation of Ras protein signal transdu...",20,14,12.96,600,"0.4092","0.58806","0.58806" +"GO:0036473","cell death in response to oxidative stre...",13,10,8.43,469,"0.2729","5.5e-05","0.58848" +"GO:0060560","developmental growth involved in morphog...",11,7,7.13,883,"0.6637","0.58910","0.58910" +"GO:0009653","anatomical structure morphogenesis",156,101,101.11,778,"0.5449","0.58950","0.58950" +"GO:0030162","regulation of proteolysis",42,32,27.22,136,"0.0787","0.01337","0.59057" +"GO:0000209","protein polyubiquitination",23,15,14.91,810,"0.5788","0.59065","0.59065" +"GO:0034976","response to endoplasmic reticulum stress",33,26,21.39,121,"0.0618","0.20863","0.59173" +"GO:0031329","regulation of cellular catabolic process",52,32,33.7,959,"0.7435","0.59250","0.59250" +"GO:0003002","regionalization",30,18,19.44,1006,"0.7750","0.59256","0.59256" +"GO:0019439","aromatic compound catabolic process",44,27,28.52,955,"0.7425","0.59503","0.59503" +"GO:0044270","cellular nitrogen compound catabolic pro...",44,26,28.52,1059,"0.8322","0.59503","0.59503" +"GO:0016310","phosphorylation",230,166,149.07,13,"0.0078","3.3e-06","0.59523" +"GO:0030031","cell projection assembly",33,20,21.39,998,"0.7585","0.59530","0.59530" +"GO:0120031","plasma membrane bounded cell projection ...",33,20,21.39,999,"0.7585","0.59530","0.59530" +"GO:0050768","negative regulation of neurogenesis",11,4,7.13,1221,"0.9875","0.59564","0.59564" +"GO:0016570","histone modification",47,33,30.46,447,"0.2680","0.59638","0.59638" +"GO:0007623","circadian rhythm",13,8,8.43,934,"0.7114","0.59701","0.59701" +"GO:0031328","positive regulation of cellular biosynth...",57,38,36.94,663,"0.4432","0.59981","0.59981" +"GO:0044242","cellular lipid catabolic process",16,12,10.37,483,"0.2831","0.60097","0.60097" +"GO:0019216","regulation of lipid metabolic process",13,6,8.43,1182,"0.9528","0.60344","0.60344" +"GO:0032006","regulation of TOR signaling",11,8,7.13,643,"0.4201","0.60446","0.60446" +"GO:0071407","cellular response to organic cyclic comp...",24,16,15.56,757,"0.5179","0.60548","0.60548" +"GO:0072594","establishment of protein localization to...",35,25,22.68,440,"0.2624","0.04709","0.60615" +"GO:0046700","heterocycle catabolic process",45,27,29.17,1036,"0.8007","0.60786","0.60786" +"GO:0045807","positive regulation of endocytosis",14,11,9.07,358,"0.2155","1.7e-06","0.60866" +"GO:0080090","regulation of primary metabolic process",410,277,265.73,222,"0.1105","0.33106","0.60947" +"GO:0016358","dendrite development",16,7,10.37,1206,"0.9766","0.61031","0.61031" +"GO:1901361","organic cyclic compound catabolic proces...",46,28,29.81,1004,"0.7667","0.61120","0.61120" +"GO:0055074","calcium ion homeostasis",12,9,7.78,536,"0.3411","0.02165","0.61273" +"GO:0043067","regulation of programmed cell death",65,46,42.13,315,"0.1881","0.04814","0.61341" +"GO:0008064","regulation of actin polymerization or de...",17,12,11.02,613,"0.4129","0.61471","0.61471" +"GO:0030832","regulation of actin filament length",17,12,11.02,614,"0.4129","0.61471","0.61471" +"GO:0070301","cellular response to hydrogen peroxide",14,11,9.07,359,"0.2155","0.00013","0.61513" +"GO:0006811","ion transport",165,109,106.94,582,"0.3989","0.55163","0.61658" +"GO:0030029","actin filament-based process",57,40,36.94,382,"0.2387","0.61667","0.61667" +"GO:0006810","transport",515,335,333.79,695,"0.4717","0.54666","0.61763" +"GO:0032879","regulation of localization",135,92,87.5,372,"0.2301","0.04833","0.61904" +"GO:0048608","reproductive structure development",29,17,18.8,1053,"0.8164","0.62007","0.62007" +"GO:0051171","regulation of nitrogen compound metaboli...",401,272,259.9,190,"0.0915","0.26756","0.62022" +"GO:0032989","cellular component morphogenesis",67,41,43.42,1009,"0.7775","0.62083","0.62083" +"GO:0043414","macromolecule methylation",42,30,27.22,375,"0.2312","0.62133","0.62133" +"GO:0009895","negative regulation of catabolic process",16,11,10.37,714,"0.4834","0.62167","0.62167" +"GO:0051093","negative regulation of developmental pro...",35,22,22.68,895,"0.6685","0.62212","0.62212" +"GO:0006954","inflammatory response",10,7,6.48,743,"0.5087","0.62449","0.62449" +"GO:0042157","lipoprotein metabolic process",15,10,9.72,786,"0.5582","0.62509","0.62509" +"GO:0071496","cellular response to external stimulus",11,5,7.13,1177,"0.9488","0.63076","0.63076" +"GO:0009880","embryonic pattern specification",10,5,6.48,1127,"0.9033","0.63086","0.63086" +"GO:0006091","generation of precursor metabolites and ...",14,9,9.07,856,"0.6351","0.63506","0.63506" +"GO:0030335","positive regulation of cell migration",16,8,10.37,1164,"0.9315","0.63655","0.63655" +"GO:0051656","establishment of organelle localization",19,13,12.31,698,"0.4740","0.63696","0.63696" +"GO:0033044","regulation of chromosome organization",17,12,11.02,615,"0.4129","0.63698","0.63698" +"GO:0001736","establishment of planar polarity",11,4,7.13,1222,"0.9875","0.63759","0.63759" +"GO:0001738","morphogenesis of a polarized epithelium",11,4,7.13,1223,"0.9875","0.63759","0.63759" +"GO:0007164","establishment of tissue polarity",11,4,7.13,1224,"0.9875","0.63759","0.63759" +"GO:0048511","rhythmic process",26,20,16.85,245,"0.1359","0.00753","0.64097" +"GO:0009126","purine nucleoside monophosphate metaboli...",23,15,14.91,811,"0.5788","0.00319","0.64153" +"GO:0009167","purine ribonucleoside monophosphate meta...",23,15,14.91,812,"0.5788","0.00319","0.64153" +"GO:0033036","macromolecule localization",212,140,137.4,573,"0.3783","0.62808","0.64161" +"GO:0042742","defense response to bacterium",13,10,8.43,470,"0.2729","0.64190","0.64190" +"GO:0097193","intrinsic apoptotic signaling pathway",14,10,9.07,626,"0.4166","0.01913","0.64543" +"GO:0010506","regulation of autophagy",20,11,12.96,1110,"0.8755","0.64564","0.64564" +"GO:0006813","potassium ion transport",14,10,9.07,627,"0.4166","0.64662","0.64662" +"GO:0022603","regulation of anatomical structure morph...",38,25,24.63,761,"0.5242","0.64691","0.64691" +"GO:0060429","epithelium development",64,34,41.48,1213,"0.9815","0.64748","0.64748" +"GO:2000026","regulation of multicellular organismal d...",75,46,48.61,1010,"0.7789","0.64762","0.64762" +"GO:0008154","actin polymerization or depolymerization",18,13,11.67,561,"0.3481","0.64782","0.64782" +"GO:1902883","negative regulation of response to oxida...",14,11,9.07,360,"0.2155","0.00013","0.65046" +"GO:0031346","positive regulation of cell projection o...",13,7,8.43,1091,"0.8680","0.65402","0.65402" +"GO:0014070","response to organic cyclic compound",48,35,31.11,277,"0.1500","0.06194","0.65520" +"GO:0019538","protein metabolic process",660,448,427.77,46,"0.0292","2.5e-05","0.65629" +"GO:0007154","cell communication",446,277,289.07,1154,"0.9158","0.61796","0.65679" +"GO:0010817","regulation of hormone levels",22,16,14.26,491,"0.2948","0.65709","0.65709" +"GO:0090066","regulation of anatomical structure size",31,19,20.09,951,"0.7302","0.65807","0.65807" +"GO:0031323","regulation of cellular metabolic process",417,282,270.27,198,"0.1023","0.31397","0.65889" +"GO:0009891","positive regulation of biosynthetic proc...",58,39,37.59,592,"0.4051","0.65924","0.65924" +"GO:0036465","synaptic vesicle recycling",12,11,7.78,71,"0.0409","2.0e-05","0.66063" +"GO:0002376","immune system process",89,61,57.68,442,"0.2642","0.10613","0.66095" +"GO:0000075","cell cycle checkpoint",13,8,8.43,935,"0.7114","0.66124","0.66124" +"GO:0043543","protein acylation",23,15,14.91,813,"0.5788","0.66219","0.66219" +"GO:0034599","cellular response to oxidative stress",22,14,14.26,868,"0.6401","0.00195","0.66348" +"GO:0048518","positive regulation of biological proces...",295,200,191.2,247,"0.1398","0.26274","0.66618" +"GO:0051258","protein polymerization",30,24,19.44,96,"0.0551","0.05237","0.67112" +"GO:0009887","animal organ morphogenesis",59,37,38.24,918,"0.6878","0.67115","0.67115" +"GO:2000147","positive regulation of cell motility",19,10,12.31,1143,"0.9105","0.67151","0.67151" +"GO:0006082","organic acid metabolic process",77,43,49.91,1190,"0.9622","0.67183","0.67183" +"GO:0019752","carboxylic acid metabolic process",77,43,49.91,1191,"0.9622","0.67183","0.67183" +"GO:0043436","oxoacid metabolic process",77,43,49.91,1192,"0.9622","0.67183","0.67183" +"GO:0006366","transcription by RNA polymerase II",104,69,67.41,605,"0.4127","0.67219","0.67219" +"GO:0048583","regulation of response to stimulus",194,133,125.74,249,"0.1443","0.21128","0.67423" +"GO:0051046","regulation of secretion",20,12,12.96,997,"0.7576","0.67478","0.67478" +"GO:0045137","development of primary sexual characteri...",12,8,7.78,805,"0.5780","0.67611","0.67611" +"GO:0072522","purine-containing compound biosynthetic ...",22,12,14.26,1118,"0.8905","0.67672","0.67672" +"GO:0035556","intracellular signal transduction",157,102,101.76,759,"0.5207","0.62474","0.67781" +"GO:0072330","monocarboxylic acid biosynthetic process",12,5,7.78,1203,"0.9739","0.67783","0.67783" +"GO:0008283","cell proliferation",64,41,41.48,837,"0.6070","0.67907","0.67907" +"GO:0003015","heart process",11,7,7.13,884,"0.6637","0.67999","0.67999" +"GO:0060047","heart contraction",11,7,7.13,885,"0.6637","0.67999","0.67999" +"GO:0002699","positive regulation of immune effector p...",13,10,8.43,471,"0.2729","0.00055","0.68008" +"GO:0006261","DNA-dependent DNA replication",16,10,10.37,911,"0.6829","0.68237","0.68237" +"GO:0007600","sensory perception",31,20,20.09,833,"0.5952","0.03926","0.68353" +"GO:0051241","negative regulation of multicellular org...",41,27,26.57,751,"0.5160","0.68448","0.68448" +"GO:0051090","regulation of DNA-binding transcription ...",16,10,10.37,912,"0.6829","0.68758","0.68758" +"GO:0022618","ribonucleoprotein complex assembly",15,9,9.72,987,"0.7505","0.68781","0.68781" +"GO:0072358","cardiovascular system development",17,10,11.02,1016,"0.7831","0.68795","0.68795" +"GO:0051641","cellular localization",221,143,143.24,779,"0.5457","0.59682","0.69199" +"GO:0006355","regulation of transcription, DNA-templat...",301,198,195.09,574,"0.3795","0.69239","0.69239" +"GO:1903506","regulation of nucleic acid-templated tra...",301,198,195.09,575,"0.3795","0.69239","0.69239" +"GO:2001141","regulation of RNA biosynthetic process",301,198,195.09,576,"0.3795","0.69239","0.69239" +"GO:0000165","MAPK cascade",26,17,16.85,792,"0.5653","0.69394","0.69394" +"GO:0023014","signal transduction by protein phosphory...",26,17,16.85,793,"0.5653","0.69394","0.69394" +"GO:0033043","regulation of organelle organization",84,60,54.44,231,"0.1188","0.07095","0.69407" +"GO:2001023","regulation of response to drug",13,11,8.43,219,"0.1099","0.00055","0.69469" +"GO:1901362","organic cyclic compound biosynthetic pro...",404,264,261.85,648,"0.4265","0.69800","0.69800" +"GO:0009259","ribonucleotide metabolic process",36,22,23.33,957,"0.7433","0.01025","0.70016" +"GO:0010657","muscle cell apoptotic process",11,10,7.13,113,"0.0587","5.8e-06","0.70065" +"GO:0010660","regulation of muscle cell apoptotic proc...",11,10,7.13,114,"0.0587","5.8e-06","0.70065" +"GO:0001568","blood vessel development",15,9,9.72,988,"0.7505","0.70120","0.70120" +"GO:0001667","ameboidal-type cell migration",15,9,9.72,989,"0.7505","0.70120","0.70120" +"GO:0060255","regulation of macromolecule metabolic pr...",421,284,272.86,228,"0.1158","0.34941","0.70138" +"GO:0009260","ribonucleotide biosynthetic process",20,11,12.96,1111,"0.8755","0.70138","0.70138" +"GO:0046390","ribose phosphate biosynthetic process",20,11,12.96,1112,"0.8755","0.70138","0.70138" +"GO:0044265","cellular macromolecule catabolic process",104,68,67.41,729,"0.4959","0.70199","0.70199" +"GO:0072521","purine-containing compound metabolic pro...",42,27,27.22,834,"0.5985","0.02979","0.70250" +"GO:0051047","positive regulation of secretion",13,8,8.43,936,"0.7114","0.70336","0.70336" +"GO:0051648","vesicle localization",13,9,8.43,727,"0.4946","0.70336","0.70336" +"GO:1903532","positive regulation of secretion by cell",13,8,8.43,937,"0.7114","0.70336","0.70336" +"GO:0042221","response to chemical",211,140,136.76,542,"0.3413","0.27172","0.70357" +"GO:0110053","regulation of actin filament organizatio...",20,14,12.96,601,"0.4092","0.70688","0.70688" +"GO:0051270","regulation of cellular component movemen...",29,15,18.8,1180,"0.9512","0.70747","0.70747" +"GO:0051640","organelle localization",33,21,21.39,852,"0.6335","0.70869","0.70869" +"GO:0032259","methylation",47,33,30.46,448,"0.2680","0.70879","0.70879" +"GO:0048468","cell development",127,80,82.31,930,"0.7064","0.70888","0.70888" +"GO:0071495","cellular response to endogenous stimulus",62,40,40.18,798,"0.5778","0.70994","0.70994" +"GO:0071826","ribonucleoprotein complex subunit organi...",16,10,10.37,913,"0.6829","0.71048","0.71048" +"GO:0016573","histone acetylation",13,9,8.43,728,"0.4946","0.71096","0.71096" +"GO:0050764","regulation of phagocytosis",15,13,9.72,118,"0.0594","5.9e-05","0.71266" +"GO:1901564","organonitrogen compound metabolic proces...",795,539,515.27,30,"0.0173","0.00042","0.71289" +"GO:0001558","regulation of cell growth",22,14,14.26,869,"0.6401","0.71338","0.71338" +"GO:0090132","epithelium migration",13,8,8.43,938,"0.7114","0.71381","0.71381" +"GO:0006164","purine nucleotide biosynthetic process",19,10,12.31,1144,"0.9105","0.71403","0.71403" +"GO:0009152","purine ribonucleotide biosynthetic proce...",19,10,12.31,1145,"0.9105","0.71403","0.71403" +"GO:0031330","negative regulation of cellular cataboli...",14,10,9.07,628,"0.4166","0.71583","0.71583" +"GO:0009205","purine ribonucleoside triphosphate metab...",20,13,12.96,829,"0.5944","0.00437","0.71600" +"GO:0061458","reproductive system development",30,17,19.44,1097,"0.8705","0.71611","0.71611" +"GO:0071417","cellular response to organonitrogen comp...",12,7,7.78,1023,"0.7837","0.71678","0.71678" +"GO:0018193","peptidyl-amino acid modification",75,46,48.61,1011,"0.7789","0.71864","0.71864" +"GO:0009894","regulation of catabolic process",59,36,38.24,1007,"0.7768","0.72025","0.72025" +"GO:0012501","programmed cell death",87,59,56.39,516,"0.3175","0.30369","0.72104" +"GO:0016192","vesicle-mediated transport",145,95,93.98,689,"0.4659","0.40590","0.72268" +"GO:0031589","cell-substrate adhesion",10,7,6.48,744,"0.5087","0.72341","0.72341" +"GO:0006163","purine nucleotide metabolic process",38,24,24.63,872,"0.6554","0.01522","0.72405" +"GO:0030855","epithelial cell differentiation",35,21,22.68,1028,"0.7838","0.72463","0.72463" +"GO:0001525","angiogenesis",11,7,7.13,886,"0.6637","0.72526","0.72526" +"GO:0007368","determination of left/right symmetry",11,7,7.13,887,"0.6637","0.72526","0.72526" +"GO:0009799","specification of symmetry",11,7,7.13,888,"0.6637","0.72526","0.72526" +"GO:0009855","determination of bilateral symmetry",11,7,7.13,889,"0.6637","0.72526","0.72526" +"GO:0009123","nucleoside monophosphate metabolic proce...",26,17,16.85,794,"0.5653","0.00837","0.72554" +"GO:0051179","localization",605,394,392.12,668,"0.4470","0.62049","0.72559" +"GO:0072503","cellular divalent inorganic cation homeo...",12,9,7.78,537,"0.3411","0.02165","0.72828" +"GO:0051049","regulation of transport",80,58,51.85,186,"0.0876","0.01785","0.73196" +"GO:0006915","apoptotic process",81,56,52.5,394,"0.2406","0.23335","0.73379" +"GO:0035690","cellular response to drug",20,14,12.96,602,"0.4092","0.00396","0.73524" +"GO:0051704","multi-organism process",126,81,81.66,822,"0.5914","0.79022","0.73635" +"GO:1901137","carbohydrate derivative biosynthetic pro...",89,52,57.68,1155,"0.9178","0.73729","0.73729" +"GO:0031331","positive regulation of cellular cataboli...",24,15,15.56,897,"0.6804","0.73806","0.73806" +"GO:0007266","Rho protein signal transduction",15,10,9.72,787,"0.5582","0.73819","0.73819" +"GO:0046488","phosphatidylinositol metabolic process",17,10,11.02,1017,"0.7831","0.74022","0.74022" +"GO:0046879","hormone secretion",11,7,7.13,890,"0.6637","0.74148","0.74148" +"GO:0016482","cytosolic transport",16,10,10.37,914,"0.6829","0.74215","0.74215" +"GO:0006403","RNA localization",12,6,7.78,1149,"0.9137","0.74347","0.74347" +"GO:0008104","protein localization",180,121,116.66,451,"0.2683","0.60190","0.74354" +"GO:0090407","organophosphate biosynthetic process",62,38,40.18,1005,"0.7670","0.74366","0.74366" +"GO:0040017","positive regulation of locomotion",23,13,14.91,1082,"0.8542","0.74410","0.74410" +"GO:0010557","positive regulation of macromolecule bio...",54,36,35,671,"0.4480","0.74564","0.74564" +"GO:0032984","protein-containing complex disassembly",23,17,14.91,402,"0.2463","0.00417","0.74580" +"GO:0043269","regulation of ion transport",23,17,14.91,403,"0.2463","0.27496","0.74655" +"GO:0016053","organic acid biosynthetic process",22,10,14.26,1214,"0.9816","0.74671","0.74671" +"GO:0046394","carboxylic acid biosynthetic process",22,10,14.26,1215,"0.9816","0.74671","0.74671" +"GO:0071383","cellular response to steroid hormone sti...",20,13,12.96,830,"0.5944","0.74688","0.74688" +"GO:0046486","glycerolipid metabolic process",39,26,25.28,700,"0.4765","0.74792","0.74792" +"GO:0071702","organic substance transport",165,106,106.94,835,"0.5988","0.52178","0.74801" +"GO:0098542","defense response to other organism",22,15,14.26,685,"0.4659","0.74854","0.74854" +"GO:0030838","positive regulation of actin filament po...",12,8,7.78,806,"0.5780","0.74923","0.74923" +"GO:0019693","ribose phosphate metabolic process",39,25,25.28,841,"0.6093","0.01826","0.74972" +"GO:0016051","carbohydrate biosynthetic process",13,7,8.43,1092,"0.8680","0.75035","0.75035" +"GO:0007399","nervous system development",144,89,93.33,1039,"0.8082","0.32160","0.75101" +"GO:0051056","regulation of small GTPase mediated sign...",23,15,14.91,814,"0.5788","0.75509","0.75509" +"GO:0009161","ribonucleoside monophosphate metabolic p...",25,16,16.2,845,"0.6232","0.00624","0.75610" +"GO:0006575","cellular modified amino acid metabolic p...",10,5,6.48,1128,"0.9033","0.75662","0.75662" +"GO:1903530","regulation of secretion by cell",18,11,11.67,948,"0.7232","0.75683","0.75683" +"GO:0016571","histone methylation",12,9,7.78,538,"0.3411","0.75767","0.75767" +"GO:0007417","central nervous system development",59,39,38.24,701,"0.4766","0.01793","0.75787" +"GO:0016071","mRNA metabolic process",64,45,41.48,350,"0.2130","0.23243","0.75865" +"GO:0009127","purine nucleoside monophosphate biosynth...",10,5,6.48,1129,"0.9033","0.75959","0.75959" +"GO:0009168","purine ribonucleoside monophosphate bios...",10,5,6.48,1130,"0.9033","0.75959","0.75959" +"GO:0006493","protein O-linked glycosylation",11,6,7.13,1076,"0.8487","0.76241","0.76241" +"GO:0007015","actin filament organization",28,20,18.15,499,"0.3005","0.76340","0.76340" +"GO:0009165","nucleotide biosynthetic process",32,19,20.74,1034,"0.7995","0.76369","0.76369" +"GO:1901293","nucleoside phosphate biosynthetic proces...",32,19,20.74,1035,"0.7995","0.76369","0.76369" +"GO:0043408","regulation of MAPK cascade",21,13,13.61,924,"0.7002","0.76400","0.76400" +"GO:0045859","regulation of protein kinase activity",21,13,13.61,925,"0.7002","0.76400","0.76400" +"GO:1900407","regulation of cellular response to oxida...",15,11,9.72,548,"0.3457","0.00028","0.76437" +"GO:0048522","positive regulation of cellular process",260,174,168.51,404,"0.2474","0.28079","0.76560" +"GO:0007548","sex differentiation",15,10,9.72,788,"0.5582","0.76564","0.76564" +"GO:0043207","response to external biotic stimulus",34,22,22.04,817,"0.5834","0.76681","0.76681" +"GO:0051707","response to other organism",34,22,22.04,818,"0.5834","0.76681","0.76681" +"GO:0048646","anatomical structure formation involved ...",56,36,36.3,824,"0.5939","0.76746","0.76746" +"GO:0002009","morphogenesis of an epithelium",31,18,20.09,1064,"0.8370","0.76786","0.76786" +"GO:0031503","protein-containing complex localization",15,8,9.72,1113,"0.8844","0.76805","0.76805" +"GO:0016054","organic acid catabolic process",13,8,8.43,939,"0.7114","0.76816","0.76816" +"GO:0046395","carboxylic acid catabolic process",13,8,8.43,940,"0.7114","0.76816","0.76816" +"GO:0051254","positive regulation of RNA metabolic pro...",61,43,39.54,349,"0.2119","0.15677","0.76926" +"GO:0006473","protein acetylation",16,10,10.37,915,"0.6829","0.76945","0.76945" +"GO:0051493","regulation of cytoskeleton organization",36,25,23.33,550,"0.3463","0.09198","0.77259" +"GO:0010959","regulation of metal ion transport",13,10,8.43,472,"0.2729","0.04269","0.77261" +"GO:0044703","multi-organism reproductive process",69,44,44.72,847,"0.6266","0.62289","0.77298" +"GO:0007264","small GTPase mediated signal transductio...",40,24,25.93,1032,"0.7924","0.77544","0.77544" +"GO:0045893","positive regulation of transcription, DN...",49,32,31.76,766,"0.5368","0.77553","0.77553" +"GO:1902680","positive regulation of RNA biosynthetic ...",49,32,31.76,767,"0.5368","0.77553","0.77553" +"GO:1903508","positive regulation of nucleic acid-temp...",49,32,31.76,768,"0.5368","0.77553","0.77553" +"GO:0010256","endomembrane system organization",29,20,18.8,581,"0.3986","0.77579","0.77579" +"GO:0007155","cell adhesion",65,43,42.13,691,"0.4660","0.77686","0.77686" +"GO:0022610","biological adhesion",65,43,42.13,692,"0.4660","0.77686","0.77686" +"GO:0051239","regulation of multicellular organismal p...",127,84,82.31,617,"0.4135","0.77875","0.77875" +"GO:0035023","regulation of Rho protein signal transdu...",14,9,9.07,857,"0.6351","0.78257","0.78257" +"GO:0007163","establishment or maintenance of cell pol...",13,7,8.43,1093,"0.8680","0.78360","0.78360" +"GO:0044283","small molecule biosynthetic process",45,24,29.17,1189,"0.9609","0.78375","0.78375" +"GO:0031109","microtubule polymerization or depolymeri...",13,11,8.43,220,"0.1099","0.02210","0.78430" +"GO:0045786","negative regulation of cell cycle",28,14,18.15,1196,"0.9655","0.78472","0.78472" +"GO:0006520","cellular amino acid metabolic process",49,30,31.76,991,"0.7548","0.78521","0.78521" +"GO:0050794","regulation of cellular process",852,540,552.21,1103,"0.8715","0.65089","0.78665" +"GO:0055082","cellular chemical homeostasis",19,11,12.31,1043,"0.8107","0.05285","0.78737" +"GO:0007610","behavior",52,35,33.7,606,"0.4128","0.78795","0.78795" +"GO:0070727","cellular macromolecule localization",141,93,91.39,647,"0.4229","0.73041","0.79077" +"GO:0006650","glycerophospholipid metabolic process",33,20,21.39,1000,"0.7585","0.79152","0.79152" +"GO:0030518","intracellular steroid hormone receptor s...",10,6,6.48,976,"0.7478","0.79156","0.79156" +"GO:0010927","cellular component assembly involved in ...",13,8,8.43,941,"0.7114","0.79201","0.79201" +"GO:2000145","regulation of cell motility",27,13,17.5,1205,"0.9765","0.79235","0.79235" +"GO:0071704","organic substance metabolic process",1422,940,921.64,119,"0.0609","0.01682","0.79275" +"GO:0051650","establishment of vesicle localization",11,7,7.13,891,"0.6637","0.79445","0.79445" +"GO:0050657","nucleic acid transport",10,6,6.48,977,"0.7478","0.79582","0.79582" +"GO:0050658","RNA transport",10,6,6.48,978,"0.7478","0.79582","0.79582" +"GO:0051236","establishment of RNA localization",10,6,6.48,979,"0.7478","0.79582","0.79582" +"GO:0090501","RNA phosphodiester bond hydrolysis",10,7,6.48,745,"0.5087","0.79582","0.79582" +"GO:0017144","drug metabolic process",50,33,32.41,717,"0.4946","0.24704","0.79601" +"GO:1903900","regulation of viral life cycle",12,9,7.78,539,"0.3411","0.00025","0.79660" +"GO:0009607","response to biotic stimulus",36,22,23.33,958,"0.7433","0.79834","0.79834" +"GO:0000956","nuclear-transcribed mRNA catabolic proce...",14,9,9.07,858,"0.6351","0.79920","0.79920" +"GO:0032535","regulation of cellular component size",24,15,15.56,898,"0.6804","0.80054","0.80054" +"GO:0032956","regulation of actin cytoskeleton organiz...",24,15,15.56,899,"0.6804","0.80054","0.80054" +"GO:0080134","regulation of response to stress",65,47,42.13,232,"0.1239","0.03528","0.80056" +"GO:0010628","positive regulation of gene expression",71,49,46.02,450,"0.2681","0.41315","0.80162" +"GO:0051234","establishment of localization",531,345,344.16,716,"0.4871","0.48680","0.80280" +"GO:0044255","cellular lipid metabolic process",92,55,59.63,1104,"0.8727","0.80359","0.80359" +"GO:0009156","ribonucleoside monophosphate biosyntheti...",11,6,7.13,1077,"0.8487","0.80584","0.80584" +"GO:0048193","Golgi vesicle transport",30,17,19.44,1098,"0.8705","0.80742","0.80742" +"GO:0009124","nucleoside monophosphate biosynthetic pr...",12,7,7.78,1024,"0.7837","0.80888","0.80888" +"GO:0006886","intracellular protein transport",89,60,57.68,545,"0.3439","0.56972","0.81189" +"GO:0032774","RNA biosynthetic process",337,221,218.42,583,"0.4007","0.81275","0.81275" +"GO:0030334","regulation of cell migration",24,11,15.56,1216,"0.9832","0.81332","0.81332" +"GO:0051146","striated muscle cell differentiation",14,7,9.07,1157,"0.9231","0.81355","0.81355" +"GO:0007389","pattern specification process",39,23,25.28,1057,"0.8266","0.81383","0.81383" +"GO:1902882","regulation of response to oxidative stre...",16,11,10.37,715,"0.4834","0.00055","0.81496" +"GO:0034613","cellular protein localization",140,93,90.74,572,"0.3768","0.71857","0.81512" +"GO:0051188","cofactor biosynthetic process",24,12,15.56,1184,"0.9567","0.81616","0.81616" +"GO:0006979","response to oxidative stress",40,27,25.93,652,"0.4302","0.04299","0.81801" +"GO:1905897","regulation of response to endoplasmic re...",13,11,8.43,221,"0.1099","0.03605","0.81825" +"GO:0006364","rRNA processing",21,8,13.61,1227,"0.9968","0.81828","0.81828" +"GO:0015931","nucleobase-containing compound transport",13,7,8.43,1094,"0.8680","0.81842","0.81842" +"GO:0002684","positive regulation of immune system pro...",31,21,20.09,667,"0.4460","0.01501","0.82109" +"GO:0035282","segmentation",13,5,8.43,1219,"0.9871","0.82211","0.82211" +"GO:0006513","protein monoubiquitination",13,8,8.43,942,"0.7114","0.82223","0.82223" +"GO:0050801","ion homeostasis",24,17,15.56,568,"0.3495","0.17283","0.82314" +"GO:0071705","nitrogen compound transport",140,91,90.74,758,"0.5205","0.73201","0.82342" +"GO:0032502","developmental process",351,227,227.49,780,"0.5495","0.69777","0.82492" +"GO:0051129","negative regulation of cellular componen...",45,33,29.17,256,"0.1463","0.03137","0.82521" +"GO:0032787","monocarboxylic acid metabolic process",21,7,13.61,1230,"0.9993","0.82530","0.82530" +"GO:0051252","regulation of RNA metabolic process",313,207,202.87,517,"0.3237","0.62151","0.82539" +"GO:0060322","head development",48,33,31.11,522,"0.3403","0.03393","0.82561" +"GO:0009617","response to bacterium",22,15,14.26,686,"0.4659","0.82842","0.82842" +"GO:0019219","regulation of nucleobase-containing comp...",323,213,209.35,557,"0.3479","0.64794","0.82996" +"GO:0006475","internal protein amino acid acetylation",14,9,9.07,859,"0.6351","0.83027","0.83027" +"GO:0018393","internal peptidyl-lysine acetylation",14,9,9.07,860,"0.6351","0.83027","0.83027" +"GO:0018394","peptidyl-lysine acetylation",14,9,9.07,861,"0.6351","0.83027","0.83027" +"GO:0051726","regulation of cell cycle",65,43,42.13,693,"0.4660","0.24922","0.83064" +"GO:0009108","coenzyme biosynthetic process",18,8,11.67,1209,"0.9783","0.83111","0.83111" +"GO:0031032","actomyosin structure organization",16,9,10.37,1069,"0.8374","0.83175","0.83175" +"GO:0044282","small molecule catabolic process",17,10,11.02,1018,"0.7831","0.83197","0.83197" +"GO:0034329","cell junction assembly",11,8,7.13,644,"0.4201","0.83217","0.83217" +"GO:0034330","cell junction organization",11,8,7.13,645,"0.4201","0.83217","0.83217" +"GO:2001020","regulation of response to DNA damage sti...",11,6,7.13,1078,"0.8487","0.83318","0.83318" +"GO:0051235","maintenance of location",14,7,9.07,1158,"0.9231","0.83363","0.83363" +"GO:0072657","protein localization to membrane",23,12,14.91,1163,"0.9301","0.83403","0.83403" +"GO:0019222","regulation of metabolic process",449,298,291.01,389,"0.2391","0.61091","0.83445" +"GO:0070838","divalent metal ion transport",27,18,17.5,732,"0.5079","0.10615","0.83497" +"GO:0072511","divalent inorganic cation transport",27,18,17.5,733,"0.5079","0.10615","0.83497" +"GO:0009914","hormone transport",12,8,7.78,807,"0.5780","0.83651","0.83651" +"GO:0032970","regulation of actin filament-based proce...",26,16,16.85,943,"0.7159","0.83729","0.83729" +"GO:0042692","muscle cell differentiation",15,8,9.72,1114,"0.8844","0.83971","0.83971" +"GO:0050806","positive regulation of synaptic transmis...",10,6,6.48,980,"0.7478","0.84072","0.84072" +"GO:0070887","cellular response to chemical stimulus",114,77,73.89,505,"0.3022","0.28801","0.84098" +"GO:0048609","multicellular organismal reproductive pr...",70,45,45.37,823,"0.5917","0.56230","0.84430" +"GO:0016579","protein deubiquitination",24,14,15.56,1047,"0.8125","0.84442","0.84442" +"GO:0070646","protein modification by small protein re...",24,14,15.56,1048,"0.8125","0.84442","0.84442" +"GO:0007420","brain development",45,30,29.17,682,"0.4641","0.02095","0.84500" +"GO:0050896","response to stimulus",657,412,425.82,1153,"0.9147","0.66609","0.84581" +"GO:0003012","muscle system process",16,9,10.37,1070,"0.8374","0.84623","0.84623" +"GO:0006497","protein lipidation",12,7,7.78,1025,"0.7837","0.84625","0.84625" +"GO:0042158","lipoprotein biosynthetic process",12,7,7.78,1026,"0.7837","0.84625","0.84625" +"GO:0001666","response to hypoxia",10,5,6.48,1131,"0.9033","0.84718","0.84718" +"GO:0036293","response to decreased oxygen levels",10,5,6.48,1132,"0.9033","0.84718","0.84718" +"GO:0070482","response to oxygen levels",10,5,6.48,1133,"0.9033","0.84718","0.84718" +"GO:0007186","G protein-coupled receptor signaling pat...",72,39,46.67,1208,"0.9782","0.84815","0.84815" +"GO:0055080","cation homeostasis",22,15,14.26,687,"0.4659","0.09172","0.84828" +"GO:0098771","inorganic ion homeostasis",22,15,14.26,688,"0.4659","0.09172","0.84828" +"GO:0065008","regulation of biological quality",193,130,125.09,398,"0.2452","0.35261","0.85141" +"GO:0007276","gamete generation",54,31,35,1123,"0.9014","0.85207","0.85207" +"GO:0006888","ER to Golgi vesicle-mediated transport",14,8,9.07,1049,"0.8130","0.85226","0.85226" +"GO:0051170","import into nucleus",19,15,12.31,255,"0.1451","0.00121","0.85263" +"GO:0006351","transcription, DNA-templated",335,219,217.12,654,"0.4344","0.85289","0.85289" +"GO:0097659","nucleic acid-templated transcription",335,219,217.12,655,"0.4344","0.85289","0.85289" +"GO:0048514","blood vessel morphogenesis",14,8,9.07,1050,"0.8130","0.85312","0.85312" +"GO:0090130","tissue migration",14,8,9.07,1051,"0.8130","0.85312","0.85312" +"GO:0032870","cellular response to hormone stimulus",33,20,21.39,1001,"0.7585","0.85326","0.85326" +"GO:0030001","metal ion transport",70,48,45.37,492,"0.2973","0.57994","0.85360" +"GO:0097435","supramolecular fiber organization",56,39,36.3,453,"0.2692","0.12519","0.85453" +"GO:0040011","locomotion",77,43,49.91,1193,"0.9622","0.85721","0.85721" +"GO:0030258","lipid modification",15,7,9.72,1185,"0.9569","0.85798","0.85798" +"GO:0016477","cell migration",40,22,25.93,1161,"0.9283","0.85880","0.85880" +"GO:0008406","gonad development",11,7,7.13,892,"0.6637","0.86212","0.86212" +"GO:0035295","tube development",43,25,27.87,1084,"0.8608","0.86449","0.86449" +"GO:0007517","muscle organ development",28,20,18.15,500,"0.3005","0.02598","0.86468" +"GO:0010468","regulation of gene expression",358,236,232.03,521,"0.3400","0.72418","0.86527" +"GO:0055001","muscle cell development",11,6,7.13,1079,"0.8487","0.86669","0.86669" +"GO:0055002","striated muscle cell development",11,6,7.13,1080,"0.8487","0.86669","0.86669" +"GO:0006997","nucleus organization",11,7,7.13,893,"0.6637","0.86727","0.86727" +"GO:1901652","response to peptide",13,7,8.43,1095,"0.8680","0.86891","0.86891" +"GO:0031929","TOR signaling",14,9,9.07,862,"0.6351","0.86924","0.86924" +"GO:0008654","phospholipid biosynthetic process",26,16,16.85,944,"0.7159","0.86994","0.86994" +"GO:0010631","epithelial cell migration",12,7,7.78,1027,"0.7837","0.87280","0.87280" +"GO:0055065","metal ion homeostasis",17,12,11.02,616,"0.4129","0.09642","0.87384" +"GO:0051186","cofactor metabolic process",45,26,29.17,1108,"0.8752","0.87546","0.87546" +"GO:0008380","RNA splicing",40,29,25.93,337,"0.1963","0.17938","0.87812" +"GO:0048870","cell motility",47,26,30.46,1168,"0.9352","0.87886","0.87886" +"GO:0051674","localization of cell",47,26,30.46,1169,"0.9352","0.87886","0.87886" +"GO:0032504","multicellular organism reproduction",73,47,47.31,820,"0.5845","0.60978","0.87931" +"GO:0009150","purine ribonucleotide metabolic process",35,21,22.68,1029,"0.7838","0.02237","0.88259" +"GO:0009100","glycoprotein metabolic process",59,33,38.24,1172,"0.9417","0.88341","0.88341" +"GO:0046907","intracellular transport",163,106,105.65,747,"0.5128","0.62698","0.88554" +"GO:0036474","cell death in response to hydrogen perox...",11,9,7.13,332,"0.1959","9.4e-05","0.88574" +"GO:0070841","inclusion body assembly",11,9,7.13,333,"0.1959","0.00152","0.88574" +"GO:1901031","regulation of response to reactive oxyge...",11,9,7.13,334,"0.1959","9.4e-05","0.88574" +"GO:1903205","regulation of hydrogen peroxide-induced ...",11,9,7.13,335,"0.1959","9.4e-05","0.88574" +"GO:2001038","regulation of cellular response to drug",11,9,7.13,336,"0.1959","9.4e-05","0.88574" +"GO:0048856","anatomical structure development",319,202,206.75,960,"0.7466","0.68421","0.88606" +"GO:0065003","protein-containing complex assembly",94,60,60.92,846,"0.6265","0.62373","0.88612" +"GO:0044267","cellular protein metabolic process",550,369,356.47,223,"0.1105","0.00485","0.88623" +"GO:0055114","oxidation-reduction process",94,57,60.92,1060,"0.8353","0.88740","0.88740" +"GO:0043902","positive regulation of multi-organism pr...",16,12,10.37,484,"0.2831","0.00337","0.88754" +"GO:0030100","regulation of endocytosis",22,17,14.26,282,"0.1573","0.00024","0.88883" +"GO:0051128","regulation of cellular component organiz...",139,93,90.09,519,"0.3321","0.17761","0.88991" +"GO:0044087","regulation of cellular component biogene...",66,44,42.78,650,"0.4298","0.05154","0.89031" +"GO:0051130","positive regulation of cellular componen...",78,54,50.55,395,"0.2407","0.18805","0.89345" +"GO:0071900","regulation of protein serine/threonine k...",17,10,11.02,1019,"0.7831","0.89346","0.89346" +"GO:1902903","regulation of supramolecular fiber organ...",36,26,23.33,361,"0.2254","0.02400","0.89425" +"GO:0022613","ribonucleoprotein complex biogenesis",41,23,26.57,1140,"0.9089","0.89441","0.89441" +"GO:0044271","cellular nitrogen compound biosynthetic ...",464,298,300.73,865,"0.6378","0.89479","0.89479" +"GO:0048729","tissue morphogenesis",35,20,22.68,1102,"0.8712","0.89490","0.89490" +"GO:0000375","RNA splicing, via transesterification re...",31,22,20.09,502,"0.3021","0.06160","0.89560" +"GO:0000377","RNA splicing, via transesterification re...",31,22,20.09,503,"0.3021","0.06160","0.89560" +"GO:0000398","mRNA splicing, via spliceosome",31,22,20.09,504,"0.3021","0.06160","0.89560" +"GO:1901566","organonitrogen compound biosynthetic pro...",185,105,119.9,1226,"0.9927","0.89627","0.89627" +"GO:0050877","nervous system process",52,35,33.7,607,"0.4128","0.32401","0.89778" +"GO:0032501","multicellular organismal process",356,226,230.74,954,"0.7362","0.76776","0.89877" +"GO:0051259","protein complex oligomerization",21,13,13.61,926,"0.7002","0.89915","0.89915" +"GO:0098742","cell-cell adhesion via plasma-membrane a...",14,7,9.07,1159,"0.9231","0.89923","0.89923" +"GO:0043933","protein-containing complex subunit organ...",106,66,68.7,983,"0.7489","0.47832","0.89942" +"GO:0019953","sexual reproduction",64,39,41.48,1030,"0.7867","0.62216","0.89948" +"GO:0016241","regulation of macroautophagy",14,6,9.07,1204,"0.9751","0.89960","0.89960" +"GO:0048545","response to steroid hormone",32,23,20.74,439,"0.2597","0.04808","0.89993" +"GO:0009451","RNA modification",28,18,18.15,839,"0.6084","0.90220","0.90220" +"GO:0030239","myofibril assembly",10,5,6.48,1134,"0.9033","0.90276","0.90276" +"GO:0009755","hormone-mediated signaling pathway",20,13,12.96,831,"0.5944","0.90332","0.90332" +"GO:0006397","mRNA processing",42,30,27.22,376,"0.2312","0.21241","0.90336" +"GO:0022607","cellular component assembly",172,113,111.48,658,"0.4355","0.56736","0.90450" +"GO:0046474","glycerophospholipid biosynthetic process",17,10,11.02,1020,"0.7831","0.90550","0.90550" +"GO:0043588","skin development",10,6,6.48,981,"0.7478","0.90596","0.90596" +"GO:0007275","multicellular organism development",296,185,191.85,1058,"0.8303","0.70909","0.90874" +"GO:0044085","cellular component biogenesis",201,129,130.27,842,"0.6101","0.84171","0.90898" +"GO:0008544","epidermis development",15,5,9.72,1228,"0.9971","0.90920","0.90920" +"GO:1901699","cellular response to nitrogen compound",14,7,9.07,1160,"0.9231","0.90969","0.90969" +"GO:0009101","glycoprotein biosynthetic process",52,28,33.7,1194,"0.9638","0.91032","0.91032" +"GO:0002790","peptide secretion",20,10,12.96,1174,"0.9456","0.91298","0.91298" +"GO:0009306","protein secretion",20,10,12.96,1175,"0.9456","0.91298","0.91298" +"GO:0071241","cellular response to inorganic substance",13,10,8.43,473,"0.2729","0.00055","0.91323" +"GO:0008284","positive regulation of cell proliferatio...",19,10,12.31,1146,"0.9105","0.91663","0.91663" +"GO:0045017","glycerolipid biosynthetic process",19,12,12.31,875,"0.6597","0.91670","0.91670" +"GO:0006486","protein glycosylation",50,27,32.41,1186,"0.9595","0.91791","0.91791" +"GO:0043413","macromolecule glycosylation",50,27,32.41,1187,"0.9595","0.91791","0.91791" +"GO:0070085","glycosylation",50,27,32.41,1188,"0.9595","0.91791","0.91791" +"GO:0006928","movement of cell or subcellular componen...",103,60,66.76,1170,"0.9357","0.36127","0.91963" +"GO:0072359","circulatory system development",40,23,25.93,1106,"0.8729","0.92424","0.92424" +"GO:0006873","cellular ion homeostasis",16,10,10.37,916,"0.6829","0.06124","0.92811" +"GO:0030003","cellular cation homeostasis",16,10,10.37,917,"0.6829","0.06124","0.92811" +"GO:0016072","rRNA metabolic process",24,11,15.56,1217,"0.9832","0.92877","0.92877" +"GO:0009888","tissue development",105,66,68.05,928,"0.7055","0.70947","0.92967" +"GO:0043401","steroid hormone mediated signaling pathw...",17,10,11.02,1021,"0.7831","0.93235","0.93235" +"GO:0022411","cellular component disassembly",26,18,16.85,588,"0.4021","0.01086","0.93289" +"GO:0006875","cellular metal ion homeostasis",14,9,9.07,863,"0.6351","0.07486","0.93487" +"GO:0040012","regulation of locomotion",34,19,22.04,1121,"0.8981","0.93538","0.93538" +"GO:0048731","system development",244,152,158.14,1056,"0.8264","0.54301","0.93620" +"GO:0065007","biological regulation",952,603,617.02,1120,"0.8974","0.78431","0.93654" +"GO:0043434","response to peptide hormone",11,5,7.13,1178,"0.9488","0.93670","0.93670" +"GO:0043549","regulation of kinase activity",24,15,15.56,900,"0.6804","0.93877","0.93877" +"GO:0002791","regulation of peptide secretion",10,5,6.48,1135,"0.9033","0.93893","0.93893" +"GO:0050708","regulation of protein secretion",10,5,6.48,1136,"0.9033","0.93893","0.93893" +"GO:0015833","peptide transport",121,78,78.42,795,"0.5749","0.80817","0.94033" +"GO:0042886","amide transport",121,78,78.42,796,"0.5749","0.80817","0.94033" +"GO:0043405","regulation of MAP kinase activity",12,6,7.78,1150,"0.9137","0.94101","0.94101" +"GO:0071248","cellular response to metal ion",12,9,7.78,540,"0.3411","0.00025","0.94131" +"GO:0009056","catabolic process",207,138,134.16,514,"0.3074","0.18224","0.94377" +"GO:0006631","fatty acid metabolic process",13,4,8.43,1229,"0.9974","0.94452","0.94452" +"GO:0015031","protein transport",120,77,77.78,836,"0.6019","0.88805","0.94536" +"GO:0009725","response to hormone",64,40,41.48,927,"0.7033","0.23243","0.94559" +"GO:0007507","heart development",28,17,18.15,962,"0.7473","0.94661","0.94661" +"GO:0006354","DNA-templated transcription, elongation",12,8,7.78,808,"0.5780","0.94746","0.94746" +"GO:0050789","regulation of biological process",901,572,583.97,1089,"0.8641","0.84811","0.95075" +"GO:0072524","pyridine-containing compound metabolic p...",12,6,7.78,1151,"0.9137","0.95511","0.95511" +"GO:0071840","cellular component organization or bioge...",441,286,285.83,750,"0.5157","0.91955","0.95558" +"GO:0006996","organelle organization",292,198,189.25,248,"0.1404","0.50813","0.95818" +"GO:0016567","protein ubiquitination",63,44,40.83,392,"0.2399","0.06492","0.95850" +"GO:0006725","cellular aromatic compound metabolic pro...",651,414,421.93,1031,"0.7913","0.89252","0.95916" +"GO:0016050","vesicle organization",18,12,11.67,776,"0.5424","0.95986","0.95986" +"GO:0032446","protein modification by small protein co...",66,44,42.78,651,"0.4298","0.12219","0.96140" +"GO:0006816","calcium ion transport",23,14,14.91,953,"0.7355","0.16315","0.96295" +"GO:0044237","cellular metabolic process",1282,834,830.91,604,"0.4122","0.48990","0.96295" +"GO:0051260","protein homooligomerization",14,9,9.07,864,"0.6351","0.96385","0.96385" +"GO:0045010","actin nucleation",10,6,6.48,982,"0.7478","0.96398","0.96398" +"GO:0003008","system process",80,51,51.85,848,"0.6297","0.57950","0.96414" +"GO:0016043","cellular component organization",414,271,268.33,590,"0.4043","0.82679","0.96419" +"GO:1901575","organic substance catabolic process",174,117,112.78,455,"0.2711","0.10788","0.96478" +"GO:0016236","macroautophagy",21,10,13.61,1197,"0.9679","0.96828","0.96828" +"GO:0006418","tRNA aminoacylation for protein translat...",16,8,10.37,1165,"0.9315","0.96918","0.96918" +"GO:0043038","amino acid activation",16,8,10.37,1166,"0.9315","0.96918","0.96918" +"GO:0043039","tRNA aminoacylation",16,8,10.37,1167,"0.9315","0.96918","0.96918" +"GO:1901360","organic cyclic compound metabolic proces...",662,421,429.06,1033,"0.7936","0.91187","0.97089" +"GO:0045184","establishment of protein localization",128,81,82.96,901,"0.6824","0.82533","0.97129" +"GO:0070647","protein modification by small protein co...",86,57,55.74,656,"0.4347","0.22070","0.97368" +"GO:1902275","regulation of chromatin organization",11,7,7.13,894,"0.6637","0.97396","0.97396" +"GO:0050673","epithelial cell proliferation",13,7,8.43,1096,"0.8680","0.97500","0.97500" +"GO:0044260","cellular macromolecule metabolic process",916,601,593.69,474,"0.2750","0.16955","0.97576" +"GO:0006733","oxidoreduction coenzyme metabolic proces...",10,5,6.48,1137,"0.9033","0.97702","0.97702" +"GO:0019362","pyridine nucleotide metabolic process",10,5,6.48,1138,"0.9033","0.97702","0.97702" +"GO:0046496","nicotinamide nucleotide metabolic proces...",10,5,6.48,1139,"0.9033","0.97702","0.97702" +"GO:0006732","coenzyme metabolic process",25,13,16.2,1171,"0.9381","0.97745","0.97745" +"GO:0006807","nitrogen compound metabolic process",1272,838,824.42,242,"0.1320","0.04139","0.98080" +"GO:0007033","vacuole organization",20,13,12.96,832,"0.5944","0.01594","0.98185" +"GO:0009058","biosynthetic process",626,395,405.73,1087,"0.8626","0.98203","0.98203" +"GO:0009987","cellular process",1820,1162,1179.6,1195,"0.9642","0.91532","0.98205" +"GO:0060537","muscle tissue development",26,18,16.85,589,"0.4021","0.04506","0.98241" +"GO:0014706","striated muscle tissue development",25,17,16.2,679,"0.4586","0.03584","0.98435" +"GO:0048513","animal organ development",177,109,114.72,1072,"0.8454","0.35051","0.98536" +"GO:0043624","cellular protein complex disassembly",18,14,11.67,309,"0.1833","0.00165","0.98582" +"GO:0006400","tRNA modification",15,8,9.72,1115,"0.8844","0.98709","0.98709" +"GO:0007029","endoplasmic reticulum organization",10,4,6.48,1200,"0.9734","0.98844","0.98844" +"GO:0043604","amide biosynthetic process",67,36,43.42,1210,"0.9786","0.99052","0.99052" +"GO:0070925","organelle assembly",61,36,39.54,1088,"0.8631","0.16820","0.99095" +"GO:0009719","response to endogenous stimulus",88,55,57.04,946,"0.7202","0.58465","0.99234" +"GO:0006487","protein N-linked glycosylation",20,10,12.96,1176,"0.9456","0.99291","0.99291" +"GO:0050890","cognition",13,6,8.43,1183,"0.9528","0.99352","0.99352" +"GO:0043043","peptide biosynthetic process",62,33,40.18,1211,"0.9793","0.99359","0.99359" +"GO:0010467","gene expression",538,337,348.7,1119,"0.8939","0.99415","0.99393" +"GO:0007611","learning or memory",11,5,7.13,1179,"0.9488","0.99452","0.99452" +"GO:0006396","RNA processing",121,75,78.42,1012,"0.7793","0.68965","0.99456" +"GO:0006412","translation",60,32,38.89,1207,"0.9769","0.99470","0.99470" +"GO:0034641","cellular nitrogen compound metabolic pro...",708,448,458.88,1083,"0.8566","0.99550","0.99488" +"GO:0042254","ribosome biogenesis",28,13,18.15,1218,"0.9861","0.99514","0.99514" +"GO:0090305","nucleic acid phosphodiester bond hydroly...",14,8,9.07,1052,"0.8130","0.99535","0.99535" +"GO:0043170","macromolecule metabolic process",1142,752,740.17,288,"0.1665","0.06376","0.99564" +"GO:0016070","RNA metabolic process",479,303,310.46,1038,"0.8027","0.98531","0.99657" +"GO:0034645","cellular macromolecule biosynthetic proc...",496,309,321.47,1152,"0.9141","0.99680","0.99680" +"GO:0009059","macromolecule biosynthetic process",500,313,324.07,1117,"0.8879","0.99683","0.99683" +"GO:0090304","nucleic acid metabolic process",562,354,364.25,1085,"0.8608","0.95885","0.99721" +"GO:0044249","cellular biosynthetic process",605,381,392.12,1107,"0.8734","0.99723","0.99723" +"GO:0006139","nucleobase-containing compound metabolic...",633,402,410.27,1037,"0.8025","0.98674","0.99758" +"GO:1901576","organic substance biosynthetic process",615,386,398.6,1122,"0.8998","0.99758","0.99758" +"GO:0046483","heterocycle metabolic process",648,411,419.99,1054,"0.8195","0.97553","0.99765" +"GO:0034470","ncRNA processing",52,26,33.7,1225,"0.9909","0.99848","0.99848" +"GO:0006399","tRNA metabolic process",44,23,28.52,1198,"0.9705","0.99875","0.99875" +"GO:0008033","tRNA processing",27,14,17.5,1173,"0.9451","0.99924","0.99924" +"GO:0034660","ncRNA metabolic process",74,40,47.96,1212,"0.9804","0.99934","0.99934" +"GO:0007034","vacuolar transport",23,15,14.91,815,"0.5788","0.02009","0.99970" +"GO:0001909","leukocyte mediated cytotoxicity",10,8,6.48,431,"0.2571","3.0e-05","1.00000" +"GO:0001910","regulation of leukocyte mediated cytotox...",10,8,6.48,432,"0.2571","3.0e-05","1.00000" +"GO:0002449","lymphocyte mediated immunity",10,8,6.48,433,"0.2571","3.0e-05","1.00000" +"GO:0002703","regulation of leukocyte mediated immunit...",10,8,6.48,434,"0.2571","3.0e-05","1.00000" +"GO:0002705","positive regulation of leukocyte mediate...",10,8,6.48,435,"0.2571","3.0e-05","1.00000" +"GO:0002706","regulation of lymphocyte mediated immuni...",10,8,6.48,436,"0.2571","3.0e-05","1.00000" +"GO:0008150","biological_process",2410,1562,1562,1231,"1.0000","1.00000","1.00000" +"GO:0010656","negative regulation of muscle cell apopt...",10,9,6.48,170,"0.0837","1.4e-06","1.00000" +"GO:0010658","striated muscle cell apoptotic process",10,9,6.48,171,"0.0837","1.4e-06","1.00000" +"GO:0010659","cardiac muscle cell apoptotic process",10,9,6.48,172,"0.0837","1.4e-06","1.00000" +"GO:0010662","regulation of striated muscle cell apopt...",10,9,6.48,173,"0.0837","1.4e-06","1.00000" +"GO:0010664","negative regulation of striated muscle c...",10,9,6.48,174,"0.0837","1.4e-06","1.00000" +"GO:0010665","regulation of cardiac muscle cell apopto...",10,9,6.48,175,"0.0837","1.4e-06","1.00000" +"GO:0017038","protein import",18,14,11.67,310,"0.1833","0.00169","1.00000" +"GO:0022037","metencephalon development",16,14,10.37,83,"0.0432","1.6e-06","1.00000" +"GO:0030902","hindbrain development",16,14,10.37,84,"0.0432","1.6e-06","1.00000" +"GO:0033120","positive regulation of RNA splicing",10,9,6.48,176,"0.0837","5.2e-06","1.00000" +"GO:0050685","positive regulation of mRNA processing",10,9,6.48,177,"0.0837","5.2e-06","1.00000" +"GO:0051702","interaction with symbiont",10,9,6.48,178,"0.0837","3.0e-05","1.00000" +"GO:0060538","skeletal muscle organ development",17,13,11.02,371,"0.2291","0.00534","1.00000" +"GO:0072665","protein localization to vacuole",10,8,6.48,437,"0.2571","3.0e-05","1.00000" +"GO:0080171","lytic vacuole organization",12,9,7.78,541,"0.3411","0.00025","1.00000" +"GO:0090083","regulation of inclusion body assembly",10,9,6.48,179,"0.0837","0.00041","1.00000" +"GO:0090559","regulation of membrane permeability",10,8,6.48,438,"0.2571","3.0e-05","1.00000" +"GO:0140238","presynaptic endocytosis",11,10,7.13,115,"0.0587","5.8e-06","1.00000" +"GO:1901032","negative regulation of response to react...",10,9,6.48,180,"0.0837","3.0e-05","1.00000" +"GO:2001024","negative regulation of response to drug",10,9,6.48,181,"0.0837","3.0e-05","1.00000" +"GO:2001039","negative regulation of cellular response...",10,9,6.48,182,"0.0837","3.0e-05","1.00000" diff --git a/GO_enrichment_output/contrast_young_males_upregulated.csv b/GO_enrichment_output/contrast_young_males_upregulated.csv index 9f5824e..e2be251 100644 --- a/GO_enrichment_output/contrast_young_males_upregulated.csv +++ b/GO_enrichment_output/contrast_young_males_upregulated.csv @@ -4,3 +4,2981 @@ "GO:0042254","ribosome biogenesis",54,44,31.07,11,"0.00015","5.3e-06","0.00073" "GO:0055114","oxidation-reduction process",189,129,108.74,13,"0.00114","0.00024","0.00173" "GO:0042273","ribosomal large subunit biogenesis",12,11,6.9,42,"0.01282","0.00310","0.00310" +"GO:0006270","DNA replication initiation",8,7,4.6,106,"0.08261","0.00434","0.00434" +"GO:0006099","tricarboxylic acid cycle",14,13,8.06,22,"0.00485","0.00508","0.00508" +"GO:0015986","ATP synthesis coupled proton transport",12,11,6.9,43,"0.01282","0.00565","0.00565" +"GO:0009612","response to mechanical stimulus",17,12,9.78,313,"0.20024","0.00750","0.00750" +"GO:0046394","carboxylic acid biosynthetic process",35,28,20.14,20,"0.00437","0.00814","0.00814" +"GO:0071616","acyl-CoA biosynthetic process",5,5,2.88,85,"0.06288","0.00880","0.00880" +"GO:0015698","inorganic anion transport",12,10,6.9,80,"0.05989","0.01010","0.01010" +"GO:0055013","cardiac muscle cell development",7,6,4.03,157,"0.12839","0.01033","0.01033" +"GO:0050982","detection of mechanical stimulus",8,6,4.6,359,"0.26575","0.01055","0.01055" +"GO:0030036","actin cytoskeleton organization",67,36,38.55,1300,"0.77790","0.01094","0.01094" +"GO:0071257","cellular response to electrical stimulus",6,6,3.45,61,"0.03613","0.01250","0.01250" +"GO:0065002","intracellular protein transmembrane tran...",14,11,8.06,125,"0.08973","0.01739","0.01739" +"GO:0019752","carboxylic acid metabolic process",122,93,70.19,7,"8.3e-06","3.0e-05","0.01840" +"GO:0003300","cardiac muscle hypertrophy",6,5,3.45,285,"0.19664","0.01895","0.01895" +"GO:0014897","striated muscle hypertrophy",6,5,3.45,286,"0.19664","0.01895","0.01895" +"GO:0035994","response to muscle stretch",6,5,3.45,287,"0.19664","0.01895","0.01895" +"GO:0035995","detection of muscle stretch",6,5,3.45,288,"0.19664","0.01895","0.01895" +"GO:0045663","positive regulation of myoblast differen...",6,5,3.45,289,"0.19664","0.01895","0.01895" +"GO:0051014","actin filament severing",6,5,3.45,290,"0.19664","0.01895","0.01895" +"GO:0055003","cardiac myofibril assembly",6,5,3.45,291,"0.19664","0.01895","0.01895" +"GO:1903918","regulation of actin filament severing",6,5,3.45,292,"0.19664","0.01895","0.01895" +"GO:1903919","negative regulation of actin filament se...",6,5,3.45,293,"0.19664","0.01895","0.01895" +"GO:1903920","positive regulation of actin filament se...",6,5,3.45,294,"0.19664","0.01895","0.01895" +"GO:0014896","muscle hypertrophy",7,6,4.03,158,"0.12839","0.01920","0.01920" +"GO:0006090","pyruvate metabolic process",11,10,6.33,48,"0.02067","0.01937","0.01937" +"GO:0048667","cell morphogenesis involved in neuron di...",40,28,23.01,100,"0.07246","0.02157","0.02157" +"GO:0030029","actin filament-based process",71,37,40.85,1656,"0.85493","0.02183","0.02183" +"GO:0006082","organic acid metabolic process",124,94,71.34,8,"1.1e-05","3.8e-05","0.02254" +"GO:0043436","oxoacid metabolic process",124,94,71.34,9,"1.1e-05","3.8e-05","0.02254" +"GO:0006869","lipid transport",28,20,16.11,129,"0.09470","0.02334","0.02334" +"GO:0055085","transmembrane transport",237,155,136.36,25,"0.00599","0.00488","0.02366" +"GO:0010876","lipid localization",33,21,18.99,418,"0.29850","0.02420","0.02420" +"GO:0055006","cardiac cell development",8,6,4.6,360,"0.26575","0.02422","0.02422" +"GO:0051127","positive regulation of actin nucleation",6,5,3.45,295,"0.19664","0.02436","0.02436" +"GO:0002118","aggressive behavior",5,5,2.88,86,"0.06288","0.02531","0.02531" +"GO:0002121","inter-male aggressive behavior",5,5,2.88,87,"0.06288","0.02531","0.02531" +"GO:0021762","substantia nigra development",5,5,2.88,88,"0.06288","0.02531","0.02531" +"GO:0035902","response to immobilization stress",5,5,2.88,89,"0.06288","0.02531","0.02531" +"GO:0048857","neural nucleus development",5,5,2.88,90,"0.06288","0.02531","0.02531" +"GO:0098974","postsynaptic actin cytoskeleton organiza...",5,5,2.88,91,"0.06288","0.02531","0.02531" +"GO:0099188","postsynaptic cytoskeleton organization",5,5,2.88,92,"0.06288","0.02531","0.02531" +"GO:0006364","rRNA processing",29,21,16.69,101,"0.07272","0.02562","0.02562" +"GO:0043161","proteasome-mediated ubiquitin-dependent ...",23,17,13.23,104,"0.08094","0.02679","0.02679" +"GO:0046822","regulation of nucleocytoplasmic transpor...",3,3,1.73,225,"0.19032","0.02693","0.02693" +"GO:0006006","glucose metabolic process",10,8,5.75,176,"0.13032","0.02867","0.02867" +"GO:0007409","axonogenesis",36,26,20.71,70,"0.04992","0.02912","0.02912" +"GO:1903522","regulation of blood circulation",15,11,8.63,199,"0.16405","0.03001","0.03001" +"GO:0030239","myofibril assembly",15,11,8.63,200,"0.16405","0.03046","0.03046" +"GO:0032787","monocarboxylic acid metabolic process",47,35,27.04,37,"0.01170","0.03114","0.03114" +"GO:0006333","chromatin assembly or disassembly",14,10,8.06,320,"0.21906","0.03196","0.03196" +"GO:0051783","regulation of nuclear division",12,9,6.9,206,"0.17613","0.03416","0.03416" +"GO:0051602","response to electrical stimulus",9,8,5.18,72,"0.05253","0.03523","0.03523" +"GO:0007623","circadian rhythm",17,11,9.78,455,"0.36652","0.03679","0.03679" +"GO:0006970","response to osmotic stress",7,5,4.03,462,"0.36726","0.03704","0.03704" +"GO:0010498","proteasomal protein catabolic process",27,20,15.53,78,"0.05785","0.03722","0.03722" +"GO:0072330","monocarboxylic acid biosynthetic process",24,19,13.81,50,"0.02283","0.03740","0.03740" +"GO:0000184","nuclear-transcribed mRNA catabolic proce...",5,5,2.88,93,"0.06288","0.03878","0.03878" +"GO:0045662","negative regulation of myoblast differen...",7,5,4.03,463,"0.36726","0.03992","0.03992" +"GO:0015696","ammonium transport",5,5,2.88,94,"0.06288","0.04227","0.04227" +"GO:0030466","chromatin silencing at silent mating-typ...",3,3,1.73,226,"0.19032","0.04268","0.04268" +"GO:0031938","regulation of chromatin silencing at tel...",3,3,1.73,227,"0.19032","0.04268","0.04268" +"GO:0031939","negative regulation of chromatin silenci...",3,3,1.73,228,"0.19032","0.04268","0.04268" +"GO:0043951","negative regulation of cAMP-mediated sig...",3,3,1.73,229,"0.19032","0.04268","0.04268" +"GO:0061186","negative regulation of chromatin silenci...",3,3,1.73,230,"0.19032","0.04268","0.04268" +"GO:0090054","regulation of chromatin silencing at sil...",3,3,1.73,231,"0.19032","0.04268","0.04268" +"GO:0016072","rRNA metabolic process",31,23,17.84,67,"0.04165","0.04383","0.04383" +"GO:0070527","platelet aggregation",8,7,4.6,107,"0.08261","0.04462","0.04462" +"GO:0009581","detection of external stimulus",15,9,8.63,727,"0.53237","0.04562","0.04562" +"GO:0009582","detection of abiotic stimulus",15,9,8.63,728,"0.53237","0.04562","0.04562" +"GO:0005996","monosaccharide metabolic process",16,11,9.21,350,"0.25892","0.04706","0.04706" +"GO:0000469","cleavage involved in rRNA processing",6,5,3.45,296,"0.19664","0.04776","0.04776" +"GO:0006085","acetyl-CoA biosynthetic process",3,3,1.73,232,"0.19032","0.04911","0.04911" +"GO:0015850","organic hydroxy compound transport",11,7,6.33,631,"0.46496","0.05285","0.05285" +"GO:0003015","heart process",14,10,8.06,321,"0.21906","0.05415","0.05415" +"GO:0008016","regulation of heart contraction",14,10,8.06,322,"0.21906","0.05415","0.05415" +"GO:0060047","heart contraction",14,10,8.06,323,"0.21906","0.05415","0.05415" +"GO:0032868","response to insulin",5,4,2.88,387,"0.29553","0.05437","0.05437" +"GO:0032869","cellular response to insulin stimulus",5,4,2.88,388,"0.29553","0.05437","0.05437" +"GO:0031503","protein-containing complex localization",17,13,9.78,123,"0.08788","0.05462","0.05462" +"GO:0051091","positive regulation of DNA-binding trans...",11,6,6.33,1229,"0.69682","0.05519","0.05519" +"GO:0042274","ribosomal small subunit biogenesis",8,6,4.6,361,"0.26575","0.05593","0.05593" +"GO:0034109","homotypic cell-cell adhesion",9,8,5.18,73,"0.05253","0.05610","0.05610" +"GO:0071806","protein transmembrane transport",16,12,9.21,151,"0.12093","0.05617","0.05617" +"GO:0007349","cellularization",8,7,4.6,108,"0.08261","0.05621","0.05621" +"GO:0042255","ribosome assembly",11,8,6.33,333,"0.24064","0.05723","0.05723" +"GO:0006520","cellular amino acid metabolic process",54,38,31.07,59,"0.03517","0.05780","0.05780" +"GO:0051125","regulation of actin nucleation",7,6,4.03,159,"0.12839","0.05972","0.05972" +"GO:0007088","regulation of mitotic nuclear division",10,7,5.75,421,"0.32221","0.06009","0.06009" +"GO:0003013","circulatory system process",16,11,9.21,351,"0.25892","0.06062","0.06062" +"GO:0008015","blood circulation",16,11,9.21,352,"0.25892","0.06062","0.06062" +"GO:0006402","mRNA catabolic process",22,17,12.66,68,"0.04488","0.06064","0.06064" +"GO:0045214","sarcomere organization",10,7,5.75,422,"0.32221","0.06075","0.06075" +"GO:0006821","chloride transport",6,5,3.45,297,"0.19664","0.06152","0.06152" +"GO:0006541","glutamine metabolic process",3,3,1.73,233,"0.19032","0.06198","0.06198" +"GO:0060856","establishment of blood-brain barrier",4,4,2.3,135,"0.10941","0.06547","0.06547" +"GO:0016319","mushroom body development",6,5,3.45,298,"0.19664","0.06826","0.06826" +"GO:1904030","negative regulation of cyclin-dependent ...",6,5,3.45,299,"0.19664","0.06826","0.06826" +"GO:0043044","ATP-dependent chromatin remodeling",7,6,4.03,160,"0.12839","0.06906","0.06906" +"GO:0006084","acetyl-CoA metabolic process",4,4,2.3,136,"0.10941","0.06933","0.06933" +"GO:0001974","blood vessel remodeling",8,6,4.6,362,"0.26575","0.06953","0.06953" +"GO:0002026","regulation of the force of heart contrac...",8,6,4.6,363,"0.26575","0.06953","0.06953" +"GO:0010831","positive regulation of myotube different...",8,6,4.6,364,"0.26575","0.06953","0.06953" +"GO:0044272","sulfur compound biosynthetic process",13,12,7.48,32,"0.00791","0.00452","0.06964" +"GO:0006813","potassium ion transport",16,11,9.21,353,"0.25892","0.07110","0.07110" +"GO:0000027","ribosomal large subunit assembly",6,5,3.45,300,"0.19664","0.07347","0.07347" +"GO:0008652","cellular amino acid biosynthetic process",10,9,5.75,56,"0.03308","0.07363","0.07363" +"GO:1901607","alpha-amino acid biosynthetic process",10,9,5.75,57,"0.03308","0.07363","0.07363" +"GO:0008272","sulfate transport",4,3,2.3,530,"0.43303","0.07684","0.07684" +"GO:0006165","nucleoside diphosphate phosphorylation",9,8,5.18,74,"0.05253","0.07686","0.07686" +"GO:0046939","nucleotide phosphorylation",9,8,5.18,75,"0.05253","0.07686","0.07686" +"GO:0006414","translational elongation",19,14,10.93,145,"0.11440","0.07881","0.07881" +"GO:0048167","regulation of synaptic plasticity",4,4,2.3,137,"0.10941","0.07966","0.07966" +"GO:0051051","negative regulation of transport",11,8,6.33,334,"0.24064","0.08001","0.08001" +"GO:1900180","regulation of protein localization to nu...",3,3,1.73,234,"0.19032","0.08131","0.08131" +"GO:0007411","axon guidance",22,16,12.66,133,"0.10768","0.08134","0.08134" +"GO:0097485","neuron projection guidance",22,16,12.66,134,"0.10768","0.08134","0.08134" +"GO:0008202","steroid metabolic process",24,17,13.81,182,"0.13141","0.08416","0.08416" +"GO:0001895","retina homeostasis",9,7,5.18,213,"0.18789","0.08420","0.08420" +"GO:0030168","platelet activation",9,7,5.18,214,"0.18789","0.08420","0.08420" +"GO:0031497","chromatin assembly",12,8,6.9,487,"0.36965","0.08625","0.08625" +"GO:0071214","cellular response to abiotic stimulus",17,11,9.78,456,"0.36652","0.08654","0.08654" +"GO:0104004","cellular response to environmental stimu...",17,11,9.78,457,"0.36652","0.08654","0.08654" +"GO:0050878","regulation of body fluid levels",13,10,7.48,153,"0.12668","0.08719","0.08719" +"GO:0010927","cellular component assembly involved in ...",19,13,10.93,329,"0.23486","0.08720","0.08720" +"GO:0006611","protein export from nucleus",13,10,7.48,154,"0.12668","0.08738","0.08738" +"GO:0044057","regulation of system process",26,18,14.96,195,"0.15553","0.08774","0.08774" +"GO:0015918","sterol transport",9,6,5.18,513,"0.42147","0.09036","0.09036" +"GO:0006721","terpenoid metabolic process",8,7,4.6,109,"0.08261","0.09129","0.09129" +"GO:0000280","nuclear division",29,20,16.69,187,"0.14354","0.09177","0.09177" +"GO:0009060","aerobic respiration",16,15,9.21,15,"0.00180","0.00185","0.09222" +"GO:0055002","striated muscle cell development",20,13,11.51,443,"0.33002","0.09241","0.09241" +"GO:0007596","blood coagulation",11,8,6.33,335,"0.24064","0.09482","0.09482" +"GO:0007599","hemostasis",11,8,6.33,336,"0.24064","0.09482","0.09482" +"GO:0048771","tissue remodeling",11,8,6.33,337,"0.24064","0.09482","0.09482" +"GO:0050817","coagulation",11,8,6.33,338,"0.24064","0.09482","0.09482" +"GO:0006751","glutathione catabolic process",3,2,1.73,831,"0.61223","0.09624","0.09624" +"GO:0043171","peptide catabolic process",3,2,1.73,832,"0.61223","0.09624","0.09624" +"GO:0044273","sulfur compound catabolic process",3,2,1.73,833,"0.61223","0.09624","0.09624" +"GO:0043949","regulation of cAMP-mediated signaling",6,5,3.45,301,"0.19664","0.09650","0.09650" +"GO:0022900","electron transport chain",19,14,10.93,146,"0.11440","0.09773","0.09773" +"GO:0006909","phagocytosis",13,10,7.48,155,"0.12668","0.09929","0.09929" +"GO:0009651","response to salt stress",6,4,3.45,658,"0.49329","0.10064","0.10064" +"GO:2001235","positive regulation of apoptotic signali...",9,7,5.18,215,"0.18789","0.10103","0.10103" +"GO:1990542","mitochondrial transmembrane transport",12,9,6.9,207,"0.17613","0.10220","0.10220" +"GO:0051028","mRNA transport",10,8,5.75,177,"0.13032","0.10339","0.10339" +"GO:0140014","mitotic nuclear division",21,15,12.08,184,"0.14153","0.10367","0.10367" +"GO:0032784","regulation of DNA-templated transcriptio...",8,7,4.6,110,"0.08261","0.10380","0.10380" +"GO:1904029","regulation of cyclin-dependent protein k...",14,11,8.06,126,"0.08973","0.10521","0.10521" +"GO:0048738","cardiac muscle tissue development",19,14,10.93,147,"0.11440","0.10549","0.10549" +"GO:0051048","negative regulation of secretion",3,3,1.73,235,"0.19032","0.10631","0.10631" +"GO:1903531","negative regulation of secretion by cell",3,3,1.73,236,"0.19032","0.10631","0.10631" +"GO:0010830","regulation of myotube differentiation",9,6,5.18,514,"0.42147","0.10665","0.10665" +"GO:0055007","cardiac muscle cell differentiation",12,8,6.9,488,"0.36965","0.10780","0.10780" +"GO:0010228","vegetative to reproductive phase transit...",3,3,1.73,237,"0.19032","0.10888","0.10888" +"GO:0043434","response to peptide hormone",12,8,6.9,489,"0.36965","0.11128","0.11128" +"GO:1901652","response to peptide",12,8,6.9,490,"0.36965","0.11128","0.11128" +"GO:0051606","detection of stimulus",18,10,10.36,1188,"0.66210","0.11205","0.11205" +"GO:0072350","tricarboxylic acid metabolic process",17,16,9.78,12,"0.00109","0.00111","0.11254" +"GO:0060688","regulation of morphogenesis of a branchi...",3,2,1.73,834,"0.61223","0.11297","0.11297" +"GO:0017144","drug metabolic process",119,91,68.47,6,"8.3e-06","3.4e-06","0.11384" +"GO:0043266","regulation of potassium ion transport",3,3,1.73,238,"0.19032","0.11536","0.11536" +"GO:1901016","regulation of potassium ion transmembran...",3,3,1.73,239,"0.19032","0.11536","0.11536" +"GO:1901379","regulation of potassium ion transmembran...",3,3,1.73,240,"0.19032","0.11536","0.11536" +"GO:0003012","muscle system process",26,16,14.96,511,"0.41869","0.11740","0.11740" +"GO:0007164","establishment of tissue polarity",11,7,6.33,632,"0.46496","0.11797","0.11797" +"GO:0007062","sister chromatid cohesion",10,8,5.75,178,"0.13032","0.11888","0.11888" +"GO:0044248","cellular catabolic process",168,107,96.66,77,"0.05577","0.11908","0.11908" +"GO:0055001","muscle cell development",21,14,12.08,375,"0.26777","0.11945","0.11945" +"GO:0007507","heart development",46,31,26.47,144,"0.11163","0.12060","0.12060" +"GO:0006096","glycolytic process",8,7,4.6,111,"0.08261","0.12064","0.12064" +"GO:0006757","ATP generation from ADP",8,7,4.6,112,"0.08261","0.12064","0.12064" +"GO:0009135","purine nucleoside diphosphate metabolic ...",8,7,4.6,113,"0.08261","0.12064","0.12064" +"GO:0009179","purine ribonucleoside diphosphate metabo...",8,7,4.6,114,"0.08261","0.12064","0.12064" +"GO:0009185","ribonucleoside diphosphate metabolic pro...",8,7,4.6,115,"0.08261","0.12064","0.12064" +"GO:0042866","pyruvate biosynthetic process",8,7,4.6,116,"0.08261","0.12064","0.12064" +"GO:0046031","ADP metabolic process",8,7,4.6,117,"0.08261","0.12064","0.12064" +"GO:0007291","sperm individualization",7,6,4.03,161,"0.12839","0.12109","0.12109" +"GO:0006874","cellular calcium ion homeostasis",18,11,10.36,651,"0.47759","0.12201","0.12201" +"GO:0072503","cellular divalent inorganic cation homeo...",18,11,10.36,652,"0.47759","0.12201","0.12201" +"GO:0000422","autophagy of mitochondrion",6,5,3.45,302,"0.19664","0.12350","0.12350" +"GO:0061726","mitochondrion disassembly",6,5,3.45,303,"0.19664","0.12350","0.12350" +"GO:0006694","steroid biosynthetic process",18,13,10.36,193,"0.15244","0.12408","0.12408" +"GO:0007626","locomotory behavior",9,7,5.18,216,"0.18789","0.12494","0.12494" +"GO:0048812","neuron projection morphogenesis",46,28,26.47,500,"0.38070","0.12560","0.12560" +"GO:0048858","cell projection morphogenesis",46,28,26.47,501,"0.38070","0.12560","0.12560" +"GO:0120039","plasma membrane bounded cell projection ...",46,28,26.47,502,"0.38070","0.12560","0.12560" +"GO:0006706","steroid catabolic process",3,3,1.73,241,"0.19032","0.12562","0.12562" +"GO:0061136","regulation of proteasomal protein catabo...",11,8,6.33,339,"0.24064","0.12597","0.12597" +"GO:1903050","regulation of proteolysis involved in ce...",11,8,6.33,340,"0.24064","0.12597","0.12597" +"GO:1903362","regulation of cellular protein catabolic...",11,8,6.33,341,"0.24064","0.12597","0.12597" +"GO:0071375","cellular response to peptide hormone sti...",8,5,4.6,735,"0.53646","0.12793","0.12793" +"GO:1901653","cellular response to peptide",8,5,4.6,736,"0.53646","0.12793","0.12793" +"GO:2001238","positive regulation of extrinsic apoptot...",3,2,1.73,835,"0.61223","0.12952","0.12952" +"GO:1903409","reactive oxygen species biosynthetic pro...",3,2,1.73,836,"0.61223","0.13018","0.13018" +"GO:0007064","mitotic sister chromatid cohesion",4,4,2.3,138,"0.10941","0.13030","0.13030" +"GO:0060048","cardiac muscle contraction",10,7,5.75,423,"0.32221","0.13238","0.13238" +"GO:0009127","purine nucleoside monophosphate biosynth...",26,21,14.96,35,"0.01121","0.00910","0.13302" +"GO:0009168","purine ribonucleoside monophosphate bios...",26,21,14.96,36,"0.01121","0.00910","0.13302" +"GO:0051168","nuclear export",17,12,9.78,314,"0.20024","0.13461","0.13461" +"GO:0008045","motor neuron axon guidance",5,5,2.88,95,"0.06288","0.13542","0.13542" +"GO:0090175","regulation of establishment of planar po...",6,4,3.45,659,"0.49329","0.13560","0.13560" +"GO:0030901","midbrain development",7,5,4.03,464,"0.36726","0.13571","0.13571" +"GO:1903047","mitotic cell cycle process",60,40,34.52,128,"0.09330","0.13598","0.13598" +"GO:0009062","fatty acid catabolic process",9,7,5.18,217,"0.18789","0.13701","0.13701" +"GO:0072329","monocarboxylic acid catabolic process",9,7,5.18,218,"0.18789","0.13701","0.13701" +"GO:0044281","small molecule metabolic process",250,166,143.84,14,"0.00168","0.00126","0.13703" +"GO:0071804","cellular potassium ion transport",12,10,6.9,81,"0.05989","0.13809","0.13809" +"GO:0071805","potassium ion transmembrane transport",12,10,6.9,82,"0.05989","0.13809","0.13809" +"GO:0051090","regulation of DNA-binding transcription ...",14,7,8.06,1594,"0.80106","0.13909","0.13909" +"GO:0071482","cellular response to light stimulus",6,4,3.45,660,"0.49329","0.13949","0.13949" +"GO:0045471","response to ethanol",7,5,4.03,465,"0.36726","0.14000","0.14000" +"GO:0019318","hexose metabolic process",14,9,8.06,505,"0.41040","0.14168","0.14168" +"GO:0033047","regulation of mitotic sister chromatid s...",6,5,3.45,304,"0.19664","0.14297","0.14297" +"GO:0000281","mitotic cytokinesis",10,8,5.75,179,"0.13032","0.14438","0.14438" +"GO:0009108","coenzyme biosynthetic process",35,24,20.14,152,"0.12281","0.01738","0.14543" +"GO:0034243","regulation of transcription elongation f...",5,5,2.88,96,"0.06288","0.14627","0.14627" +"GO:0046434","organophosphate catabolic process",23,15,13.23,419,"0.29896","0.14713","0.14713" +"GO:0055074","calcium ion homeostasis",19,11,10.93,805,"0.58378","0.14814","0.14814" +"GO:0001523","retinoid metabolic process",7,6,4.03,162,"0.12839","0.14888","0.14888" +"GO:0016101","diterpenoid metabolic process",7,6,4.03,163,"0.12839","0.14888","0.14888" +"GO:0045445","myoblast differentiation",10,6,5.75,776,"0.57035","0.14967","0.14967" +"GO:0045661","regulation of myoblast differentiation",10,6,5.75,777,"0.57035","0.14967","0.14967" +"GO:0051149","positive regulation of muscle cell diffe...",10,6,5.75,778,"0.57035","0.14967","0.14967" +"GO:0051155","positive regulation of striated muscle c...",10,6,5.75,779,"0.57035","0.14967","0.14967" +"GO:0006812","cation transport",98,61,56.39,283,"0.19636","0.09733","0.14982" +"GO:0030431","sleep",3,3,1.73,242,"0.19032","0.15004","0.15004" +"GO:0032024","positive regulation of insulin secretion",3,3,1.73,243,"0.19032","0.15004","0.15004" +"GO:0048168","regulation of neuronal synaptic plastici...",3,3,1.73,244,"0.19032","0.15004","0.15004" +"GO:0009142","nucleoside triphosphate biosynthetic pro...",24,20,13.81,28,"0.00697","0.00391","0.15068" +"GO:0009145","purine nucleoside triphosphate biosynthe...",24,20,13.81,29,"0.00697","0.00391","0.15068" +"GO:0009201","ribonucleoside triphosphate biosynthetic...",24,20,13.81,30,"0.00697","0.00391","0.15068" +"GO:0009206","purine ribonucleoside triphosphate biosy...",24,20,13.81,31,"0.00697","0.00391","0.15068" +"GO:0000070","mitotic sister chromatid segregation",14,11,8.06,127,"0.08973","0.15070","0.15070" +"GO:0044265","cellular macromolecule catabolic process",80,53,46.03,98,"0.06759","0.15125","0.15125" +"GO:0001522","pseudouridine synthesis",10,7,5.75,424,"0.32221","0.15236","0.15236" +"GO:0050796","regulation of insulin secretion",6,5,3.45,305,"0.19664","0.15272","0.15272" +"GO:0000278","mitotic cell cycle",69,45,39.7,150,"0.11762","0.15275","0.15275" +"GO:0003208","cardiac ventricle morphogenesis",3,3,1.73,245,"0.19032","0.15487","0.15487" +"GO:0006403","RNA localization",19,13,10.93,330,"0.23486","0.15577","0.15577" +"GO:0005975","carbohydrate metabolic process",68,42,39.12,379,"0.27904","0.15579","0.15579" +"GO:0019896","axonal transport of mitochondrion",4,3,2.3,531,"0.43303","0.15605","0.15605" +"GO:0034643","establishment of mitochondrion localizat...",4,3,2.3,532,"0.43303","0.15605","0.15605" +"GO:0047497","mitochondrion transport along microtubul...",4,3,2.3,533,"0.43303","0.15605","0.15605" +"GO:0051654","establishment of mitochondrion localizat...",4,3,2.3,534,"0.43303","0.15605","0.15605" +"GO:0098930","axonal transport",4,3,2.3,535,"0.43303","0.15605","0.15605" +"GO:1900006","positive regulation of dendrite developm...",4,3,2.3,536,"0.43303","0.15605","0.15605" +"GO:1901575","organic substance catabolic process",165,104,94.93,105,"0.08147","0.15728","0.15728" +"GO:0000819","sister chromatid segregation",20,15,11.51,118,"0.08473","0.15764","0.15764" +"GO:0035051","cardiocyte differentiation",13,8,7.48,712,"0.50125","0.15854","0.15854" +"GO:0048511","rhythmic process",21,14,12.08,376,"0.26777","0.15859","0.15859" +"GO:0017038","protein import",24,16,13.81,345,"0.24361","0.15884","0.15884" +"GO:0006334","nucleosome assembly",11,7,6.33,633,"0.46496","0.15899","0.15899" +"GO:0030001","metal ion transport",59,33,33.95,1136,"0.65178","0.16006","0.16006" +"GO:0032507","maintenance of protein location in cell",9,6,5.18,515,"0.42147","0.16148","0.16148" +"GO:0051651","maintenance of location in cell",9,6,5.18,516,"0.42147","0.16148","0.16148" +"GO:0061564","axon development",42,29,24.17,120,"0.08490","0.16226","0.16226" +"GO:0032434","regulation of proteasomal ubiquitin-depe...",5,4,2.88,389,"0.29553","0.16272","0.16272" +"GO:2000058","regulation of ubiquitin-dependent protei...",5,4,2.88,390,"0.29553","0.16272","0.16272" +"GO:0072527","pyrimidine-containing compound metabolic...",11,8,6.33,342,"0.24064","0.16344","0.16344" +"GO:0009452","7-methylguanosine RNA capping",3,3,1.73,246,"0.19032","0.16447","0.16447" +"GO:0036260","RNA capping",3,3,1.73,247,"0.19032","0.16447","0.16447" +"GO:0031935","regulation of chromatin silencing",4,3,2.3,537,"0.43303","0.16450","0.16450" +"GO:0031936","negative regulation of chromatin silenci...",4,3,2.3,538,"0.43303","0.16450","0.16450" +"GO:0045815","positive regulation of gene expression, ...",4,3,2.3,539,"0.43303","0.16450","0.16450" +"GO:0060969","negative regulation of gene silencing",4,3,2.3,540,"0.43303","0.16450","0.16450" +"GO:0051646","mitochondrion localization",5,4,2.88,391,"0.29553","0.16525","0.16525" +"GO:0006936","muscle contraction",24,14,13.81,767,"0.55481","0.16658","0.16658" +"GO:0008291","acetylcholine metabolic process",5,4,2.88,392,"0.29553","0.16730","0.16730" +"GO:1900619","acetate ester metabolic process",5,4,2.88,393,"0.29553","0.16730","0.16730" +"GO:0034655","nucleobase-containing compound catabolic...",43,30,24.74,99,"0.06773","0.16866","0.16866" +"GO:1901361","organic cyclic compound catabolic proces...",55,37,31.64,124,"0.08933","0.16917","0.16917" +"GO:0006348","chromatin silencing at telomere",5,4,2.88,394,"0.29553","0.16936","0.16936" +"GO:0006405","RNA export from nucleus",14,10,8.06,324,"0.21906","0.17098","0.17098" +"GO:0003206","cardiac chamber morphogenesis",5,4,2.88,395,"0.29553","0.17196","0.17196" +"GO:0008203","cholesterol metabolic process",6,4,3.45,661,"0.49329","0.17253","0.17253" +"GO:0048285","organelle fission",33,22,18.99,212,"0.18727","0.17266","0.17266" +"GO:0007010","cytoskeleton organization",103,50,59.26,2525,"0.97581","0.17352","0.17352" +"GO:0009132","nucleoside diphosphate metabolic process",10,8,5.75,180,"0.13032","0.17373","0.17373" +"GO:0098660","inorganic ion transmembrane transport",49,37,28.19,26,"0.00654","0.03343","0.17390" +"GO:0009141","nucleoside triphosphate metabolic proces...",43,33,24.74,27,"0.00662","0.00812","0.17446" +"GO:0051899","membrane depolarization",5,3,2.88,1068,"0.63928","0.17459","0.17459" +"GO:0060401","cytosolic calcium ion transport",4,4,2.3,139,"0.10941","0.17469","0.17469" +"GO:0006695","cholesterol biosynthetic process",4,3,2.3,541,"0.43303","0.17611","0.17611" +"GO:0019218","regulation of steroid metabolic process",4,3,2.3,542,"0.43303","0.17611","0.17611" +"GO:0045540","regulation of cholesterol biosynthetic p...",4,3,2.3,543,"0.43303","0.17611","0.17611" +"GO:0050810","regulation of steroid biosynthetic proce...",4,3,2.3,544,"0.43303","0.17611","0.17611" +"GO:0090181","regulation of cholesterol metabolic proc...",4,3,2.3,545,"0.43303","0.17611","0.17611" +"GO:0106118","regulation of sterol biosynthetic proces...",4,3,2.3,546,"0.43303","0.17611","0.17611" +"GO:1902930","regulation of alcohol biosynthetic proce...",4,3,2.3,547,"0.43303","0.17611","0.17611" +"GO:0072348","sulfur compound transport",5,3,2.88,1069,"0.63928","0.17671","0.17671" +"GO:0051235","maintenance of location",19,11,10.93,806,"0.58378","0.17770","0.17770" +"GO:0034404","nucleobase-containing small molecule bio...",17,11,9.78,458,"0.36652","0.17776","0.17776" +"GO:0044257","cellular protein catabolic process",53,35,30.49,174,"0.13001","0.17906","0.17906" +"GO:0051603","proteolysis involved in cellular protein...",53,35,30.49,175,"0.13001","0.17906","0.17906" +"GO:0070925","organelle assembly",66,40,37.97,450,"0.35232","0.18049","0.18049" +"GO:0021675","nerve development",4,4,2.3,140,"0.10941","0.18189","0.18189" +"GO:0006568","tryptophan metabolic process",3,2,1.73,837,"0.61223","0.18198","0.18198" +"GO:0006569","tryptophan catabolic process",3,2,1.73,838,"0.61223","0.18198","0.18198" +"GO:0006586","indolalkylamine metabolic process",3,2,1.73,839,"0.61223","0.18198","0.18198" +"GO:0009310","amine catabolic process",3,2,1.73,840,"0.61223","0.18198","0.18198" +"GO:0042402","cellular biogenic amine catabolic proces...",3,2,1.73,841,"0.61223","0.18198","0.18198" +"GO:0042430","indole-containing compound metabolic pro...",3,2,1.73,842,"0.61223","0.18198","0.18198" +"GO:0042436","indole-containing compound catabolic pro...",3,2,1.73,843,"0.61223","0.18198","0.18198" +"GO:0046218","indolalkylamine catabolic process",3,2,1.73,844,"0.61223","0.18198","0.18198" +"GO:0006418","tRNA aminoacylation for protein translat...",22,15,12.66,315,"0.21408","0.18214","0.18214" +"GO:0043038","amino acid activation",22,15,12.66,316,"0.21408","0.18214","0.18214" +"GO:0043039","tRNA aminoacylation",22,15,12.66,317,"0.21408","0.18214","0.18214" +"GO:0009084","glutamine family amino acid biosynthetic...",4,4,2.3,141,"0.10941","0.18287","0.18287" +"GO:0014902","myotube differentiation",13,8,7.48,713,"0.50125","0.18316","0.18316" +"GO:0009070","serine family amino acid biosynthetic pr...",3,3,1.73,248,"0.19032","0.18324","0.18324" +"GO:0051224","negative regulation of protein transport",5,4,2.88,396,"0.29553","0.18430","0.18430" +"GO:0000956","nuclear-transcribed mRNA catabolic proce...",15,11,8.63,201,"0.16405","0.18576","0.18576" +"GO:0003205","cardiac chamber development",10,7,5.75,425,"0.32221","0.18596","0.18596" +"GO:0090287","regulation of cellular response to growt...",10,8,5.75,181,"0.13032","0.18596","0.18596" +"GO:0042219","cellular modified amino acid catabolic p...",4,2,2.3,1409,"0.79143","0.18681","0.18681" +"GO:0006401","RNA catabolic process",26,19,14.96,102,"0.07687","0.18850","0.18850" +"GO:0000209","protein polyubiquitination",20,15,11.51,119,"0.08473","0.18925","0.18925" +"GO:0045333","cellular respiration",31,25,17.84,24,"0.00583","0.00231","0.18970" +"GO:0006811","ion transport",163,99,93.78,327,"0.22101","0.10785","0.19029" +"GO:0018022","peptidyl-lysine methylation",12,8,6.9,491,"0.36965","0.19039","0.19039" +"GO:0006935","chemotaxis",27,17,15.53,452,"0.35638","0.19231","0.19231" +"GO:0032990","cell part morphogenesis",48,28,27.62,723,"0.51664","0.19237","0.19237" +"GO:0015931","nucleobase-containing compound transport",23,15,13.23,420,"0.29896","0.19271","0.19271" +"GO:0061640","cytoskeleton-dependent cytokinesis",12,9,6.9,208,"0.17613","0.19479","0.19479" +"GO:0070534","protein K63-linked ubiquitination",5,4,2.88,397,"0.29553","0.19610","0.19610" +"GO:0070979","protein K11-linked ubiquitination",5,4,2.88,398,"0.29553","0.19610","0.19610" +"GO:0098661","inorganic anion transmembrane transport",3,2,1.73,845,"0.61223","0.19717","0.19717" +"GO:0071902","positive regulation of protein serine/th...",7,5,4.03,466,"0.36726","0.19738","0.19738" +"GO:0007091","metaphase/anaphase transition of mitotic...",5,4,2.88,399,"0.29553","0.19782","0.19782" +"GO:0010965","regulation of mitotic sister chromatid s...",5,4,2.88,400,"0.29553","0.19782","0.19782" +"GO:0030071","regulation of mitotic metaphase/anaphase...",5,4,2.88,401,"0.29553","0.19782","0.19782" +"GO:0044784","metaphase/anaphase transition of cell cy...",5,4,2.88,402,"0.29553","0.19782","0.19782" +"GO:0051304","chromosome separation",5,4,2.88,403,"0.29553","0.19782","0.19782" +"GO:0051306","mitotic sister chromatid separation",5,4,2.88,404,"0.29553","0.19782","0.19782" +"GO:1902099","regulation of metaphase/anaphase transit...",5,4,2.88,405,"0.29553","0.19782","0.19782" +"GO:1905818","regulation of chromosome separation",5,4,2.88,406,"0.29553","0.19782","0.19782" +"GO:0050657","nucleic acid transport",16,11,9.21,354,"0.25892","0.19966","0.19966" +"GO:0050658","RNA transport",16,11,9.21,355,"0.25892","0.19966","0.19966" +"GO:0051236","establishment of RNA localization",16,11,9.21,356,"0.25892","0.19966","0.19966" +"GO:0006576","cellular biogenic amine metabolic proces...",6,4,3.45,662,"0.49329","0.19979","0.19979" +"GO:0009069","serine family amino acid metabolic proce...",6,5,3.45,306,"0.19664","0.20171","0.20171" +"GO:0015748","organophosphate ester transport",6,4,3.45,663,"0.49329","0.20171","0.20171" +"GO:0032355","response to estradiol",6,4,3.45,664,"0.49329","0.20171","0.20171" +"GO:0000086","G2/M transition of mitotic cell cycle",13,10,7.48,156,"0.12668","0.20188","0.20188" +"GO:0072507","divalent inorganic cation homeostasis",21,12,12.08,829,"0.60551","0.20406","0.20406" +"GO:0006094","gluconeogenesis",4,3,2.3,548,"0.43303","0.20422","0.20422" +"GO:0019319","hexose biosynthetic process",4,3,2.3,549,"0.43303","0.20422","0.20422" +"GO:0046364","monosaccharide biosynthetic process",4,3,2.3,550,"0.43303","0.20422","0.20422" +"GO:0000904","cell morphogenesis involved in different...",52,35,29.92,130,"0.09614","0.20443","0.20443" +"GO:0046890","regulation of lipid biosynthetic process",8,5,4.6,737,"0.53646","0.20527","0.20527" +"GO:1901292","nucleoside phosphate catabolic process",15,10,8.63,439,"0.32909","0.20667","0.20667" +"GO:0044743","protein transmembrane import into intrac...",14,10,8.06,325,"0.21906","0.20694","0.20694" +"GO:0006893","Golgi to plasma membrane transport",4,4,2.3,142,"0.10941","0.20794","0.20794" +"GO:0098876","vesicle-mediated transport to the plasma...",4,4,2.3,143,"0.10941","0.20794","0.20794" +"GO:0006613","cotranslational protein targeting to mem...",6,4,3.45,665,"0.49329","0.20885","0.20885" +"GO:0006614","SRP-dependent cotranslational protein ta...",6,4,3.45,666,"0.49329","0.20885","0.20885" +"GO:0045047","protein targeting to ER",6,4,3.45,667,"0.49329","0.20885","0.20885" +"GO:0072599","establishment of protein localization to...",6,4,3.45,668,"0.49329","0.20885","0.20885" +"GO:0006790","sulfur compound metabolic process",27,20,15.53,79,"0.05785","0.03742","0.21047" +"GO:0071478","cellular response to radiation",9,5,5.18,1205,"0.68020","0.21083","0.21083" +"GO:0046889","positive regulation of lipid biosyntheti...",4,3,2.3,551,"0.43303","0.21333","0.21333" +"GO:0006479","protein methylation",20,13,11.51,444,"0.33002","0.21387","0.21387" +"GO:0008213","protein alkylation",20,13,11.51,445,"0.33002","0.21387","0.21387" +"GO:0050890","cognition",15,10,8.63,440,"0.32909","0.21505","0.21505" +"GO:0071166","ribonucleoprotein complex localization",11,8,6.33,343,"0.24064","0.21574","0.21574" +"GO:0071426","ribonucleoprotein complex export from nu...",11,8,6.33,344,"0.24064","0.21574","0.21574" +"GO:0000463","maturation of LSU-rRNA from tricistronic...",3,2,1.73,846,"0.61223","0.21748","0.21748" +"GO:0000470","maturation of LSU-rRNA",3,2,1.73,847,"0.61223","0.21748","0.21748" +"GO:0090100","positive regulation of transmembrane rec...",5,4,2.88,407,"0.29553","0.21876","0.21876" +"GO:0006732","coenzyme metabolic process",47,30,27.04,328,"0.23344","0.09977","0.22074" +"GO:0016042","lipid catabolic process",26,18,14.96,196,"0.15553","0.22182","0.22182" +"GO:0032091","negative regulation of protein binding",8,6,4.6,365,"0.26575","0.22301","0.22301" +"GO:0051788","response to misfolded protein",3,3,1.73,249,"0.19032","0.22422","0.22422" +"GO:0071218","cellular response to misfolded protein",3,3,1.73,250,"0.19032","0.22422","0.22422" +"GO:0098813","nuclear chromosome segregation",23,16,13.23,204,"0.16881","0.22491","0.22491" +"GO:0043632","modification-dependent macromolecule cat...",44,29,25.32,198,"0.16390","0.22501","0.22501" +"GO:0098662","inorganic cation transmembrane transport",47,36,27.04,23,"0.00486","0.03059","0.22526" +"GO:0002275","myeloid cell activation involved in immu...",7,6,4.03,164,"0.12839","0.22578","0.22578" +"GO:0002283","neutrophil activation involved in immune...",7,6,4.03,165,"0.12839","0.22578","0.22578" +"GO:0002444","myeloid leukocyte mediated immunity",7,6,4.03,166,"0.12839","0.22578","0.22578" +"GO:0002446","neutrophil mediated immunity",7,6,4.03,167,"0.12839","0.22578","0.22578" +"GO:0036230","granulocyte activation",7,6,4.03,168,"0.12839","0.22578","0.22578" +"GO:0042119","neutrophil activation",7,6,4.03,169,"0.12839","0.22578","0.22578" +"GO:0043299","leukocyte degranulation",7,6,4.03,170,"0.12839","0.22578","0.22578" +"GO:0043312","neutrophil degranulation",7,6,4.03,171,"0.12839","0.22578","0.22578" +"GO:0009056","catabolic process",192,120,110.47,121,"0.08530","0.22623","0.22623" +"GO:0006873","cellular ion homeostasis",28,17,16.11,615,"0.44435","0.22804","0.22804" +"GO:0030003","cellular cation homeostasis",28,17,16.11,616,"0.44435","0.22804","0.22804" +"GO:0006775","fat-soluble vitamin metabolic process",5,4,2.88,408,"0.29553","0.22944","0.22944" +"GO:0006511","ubiquitin-dependent protein catabolic pr...",42,28,24.17,189,"0.14685","0.22973","0.22973" +"GO:0019941","modification-dependent protein catabolic...",42,28,24.17,190,"0.14685","0.22973","0.22973" +"GO:0051188","cofactor biosynthetic process",43,28,24.74,282,"0.19613","0.03686","0.23082" +"GO:0006816","calcium ion transport",15,11,8.63,202,"0.16405","0.23136","0.23136" +"GO:0007605","sensory perception of sound",9,6,5.18,517,"0.42147","0.23203","0.23203" +"GO:0050954","sensory perception of mechanical stimulu...",9,6,5.18,518,"0.42147","0.23203","0.23203" +"GO:0006482","protein demethylation",7,5,4.03,467,"0.36726","0.23280","0.23280" +"GO:0008214","protein dealkylation",7,5,4.03,468,"0.36726","0.23280","0.23280" +"GO:0007111","meiosis II cytokinesis",4,3,2.3,552,"0.43303","0.23409","0.23409" +"GO:0033206","meiotic cytokinesis",4,3,2.3,553,"0.43303","0.23409","0.23409" +"GO:0061983","meiosis II cell cycle process",4,3,2.3,554,"0.43303","0.23409","0.23409" +"GO:0006941","striated muscle contraction",12,7,6.9,815,"0.59839","0.23450","0.23450" +"GO:0051153","regulation of striated muscle cell diffe...",12,7,6.9,816,"0.59839","0.23450","0.23450" +"GO:0014013","regulation of gliogenesis",3,2,1.73,848,"0.61223","0.23611","0.23611" +"GO:0014015","positive regulation of gliogenesis",3,2,1.73,849,"0.61223","0.23611","0.23611" +"GO:0034765","regulation of ion transmembrane transpor...",16,8,9.21,1613,"0.80712","0.23668","0.23668" +"GO:0001736","establishment of planar polarity",10,6,5.75,780,"0.57035","0.23900","0.23900" +"GO:0051384","response to glucocorticoid",4,3,2.3,555,"0.43303","0.23934","0.23934" +"GO:0051785","positive regulation of nuclear division",4,3,2.3,556,"0.43303","0.23934","0.23934" +"GO:0016052","carbohydrate catabolic process",13,9,7.48,381,"0.28740","0.23994","0.23994" +"GO:0019359","nicotinamide nucleotide biosynthetic pro...",13,9,7.48,382,"0.28740","0.23994","0.23994" +"GO:0019363","pyridine nucleotide biosynthetic process",13,9,7.48,383,"0.28740","0.23994","0.23994" +"GO:0033157","regulation of intracellular protein tran...",14,8,8.06,1055,"0.62238","0.24168","0.24168" +"GO:0032989","cellular component morphogenesis",84,49,48.33,655,"0.48697","0.24407","0.24407" +"GO:0030301","cholesterol transport",5,3,2.88,1070,"0.63928","0.24510","0.24510" +"GO:0003231","cardiac ventricle development",9,6,5.18,519,"0.42147","0.24672","0.24672" +"GO:0042752","regulation of circadian rhythm",9,5,5.18,1206,"0.68020","0.24762","0.24762" +"GO:0042330","taxis",28,17,16.11,617,"0.44435","0.24938","0.24938" +"GO:0006733","oxidoreduction coenzyme metabolic proces...",23,13,13.23,1058,"0.62522","0.25020","0.25020" +"GO:0030150","protein import into mitochondrial matrix",3,3,1.73,251,"0.19032","0.25207","0.25207" +"GO:0050801","ion homeostasis",38,20,21.86,1306,"0.78340","0.25252","0.25252" +"GO:0006213","pyrimidine nucleoside metabolic process",3,2,1.73,850,"0.61223","0.25259","0.25259" +"GO:0046131","pyrimidine ribonucleoside metabolic proc...",3,2,1.73,851,"0.61223","0.25259","0.25259" +"GO:0018105","peptidyl-serine phosphorylation",3,3,1.73,252,"0.19032","0.25312","0.25312" +"GO:0033135","regulation of peptidyl-serine phosphoryl...",3,3,1.73,253,"0.19032","0.25312","0.25312" +"GO:0033138","positive regulation of peptidyl-serine p...",3,3,1.73,254,"0.19032","0.25312","0.25312" +"GO:1901989","positive regulation of cell cycle phase ...",3,3,1.73,255,"0.19032","0.25417","0.25417" +"GO:1901992","positive regulation of mitotic cell cycl...",3,3,1.73,256,"0.19032","0.25417","0.25417" +"GO:0032970","regulation of actin filament-based proce...",34,17,19.56,1657,"0.85731","0.25481","0.25481" +"GO:0006754","ATP biosynthetic process",23,19,13.23,33,"0.01027","0.00729","0.25635" +"GO:0015858","nucleoside transport",4,3,2.3,557,"0.43303","0.25675","0.25675" +"GO:1901642","nucleoside transmembrane transport",4,3,2.3,558,"0.43303","0.25675","0.25675" +"GO:0009072","aromatic amino acid family metabolic pro...",10,7,5.75,426,"0.32221","0.25706","0.25706" +"GO:0050804","modulation of chemical synaptic transmis...",15,9,8.63,729,"0.53237","0.25911","0.25911" +"GO:0099177","regulation of trans-synaptic signaling",15,9,8.63,730,"0.53237","0.25911","0.25911" +"GO:1904062","regulation of cation transmembrane trans...",15,8,8.63,1262,"0.72526","0.25911","0.25911" +"GO:0031032","actomyosin structure organization",25,14,14.38,1123,"0.64324","0.26119","0.26119" +"GO:0000045","autophagosome assembly",7,6,4.03,172,"0.12839","0.26191","0.26191" +"GO:1905037","autophagosome organization",7,6,4.03,173,"0.12839","0.26191","0.26191" +"GO:0051147","regulation of muscle cell differentiatio...",13,8,7.48,714,"0.50125","0.26317","0.26317" +"GO:0045834","positive regulation of lipid metabolic p...",5,3,2.88,1071,"0.63928","0.26352","0.26352" +"GO:1902653","secondary alcohol biosynthetic process",5,3,2.88,1072,"0.63928","0.26352","0.26352" +"GO:0043207","response to external biotic stimulus",29,16,16.69,1196,"0.67516","0.26399","0.26399" +"GO:0051707","response to other organism",29,16,16.69,1197,"0.67516","0.26399","0.26399" +"GO:0009126","purine nucleoside monophosphate metaboli...",43,32,24.74,46,"0.01599","0.03239","0.26461" +"GO:0009167","purine ribonucleoside monophosphate meta...",43,32,24.74,47,"0.01599","0.03239","0.26461" +"GO:0055088","lipid homeostasis",3,3,1.73,257,"0.19032","0.26597","0.26597" +"GO:0008038","neuron recognition",7,5,4.03,469,"0.36726","0.26664","0.26664" +"GO:0006777","Mo-molybdopterin cofactor biosynthetic p...",4,3,2.3,559,"0.43303","0.26733","0.26733" +"GO:0019720","Mo-molybdopterin cofactor metabolic proc...",4,3,2.3,560,"0.43303","0.26733","0.26733" +"GO:0043545","molybdopterin cofactor metabolic process",4,3,2.3,561,"0.43303","0.26733","0.26733" +"GO:0046128","purine ribonucleoside metabolic process",4,3,2.3,562,"0.43303","0.26733","0.26733" +"GO:0051189","prosthetic group metabolic process",4,3,2.3,563,"0.43303","0.26733","0.26733" +"GO:0044242","cellular lipid catabolic process",19,13,10.93,331,"0.23486","0.26779","0.26779" +"GO:0006406","mRNA export from nucleus",8,6,4.6,366,"0.26575","0.26856","0.26856" +"GO:0071427","mRNA-containing ribonucleoprotein comple...",8,6,4.6,367,"0.26575","0.26856","0.26856" +"GO:0002478","antigen processing and presentation of e...",3,3,1.73,258,"0.19032","0.26924","0.26924" +"GO:0008637","apoptotic mitochondrial changes",3,2,1.73,852,"0.61223","0.26924","0.26924" +"GO:0019882","antigen processing and presentation",3,3,1.73,259,"0.19032","0.26924","0.26924" +"GO:0019884","antigen processing and presentation of e...",3,3,1.73,260,"0.19032","0.26924","0.26924" +"GO:0048002","antigen processing and presentation of p...",3,3,1.73,261,"0.19032","0.26924","0.26924" +"GO:0051146","striated muscle cell differentiation",27,17,15.53,453,"0.35638","0.26963","0.26963" +"GO:0006672","ceramide metabolic process",4,2,2.3,1410,"0.79143","0.26985","0.26985" +"GO:0009913","epidermal cell differentiation",3,3,1.73,262,"0.19032","0.27034","0.27034" +"GO:0010522","regulation of calcium ion transport into...",3,3,1.73,263,"0.19032","0.27034","0.27034" +"GO:0051208","sequestering of calcium ion",3,3,1.73,264,"0.19032","0.27034","0.27034" +"GO:0051209","release of sequestered calcium ion into ...",3,3,1.73,265,"0.19032","0.27034","0.27034" +"GO:0051279","regulation of release of sequestered cal...",3,3,1.73,266,"0.19032","0.27034","0.27034" +"GO:0051282","regulation of sequestering of calcium io...",3,3,1.73,267,"0.19032","0.27034","0.27034" +"GO:0051283","negative regulation of sequestering of c...",3,3,1.73,268,"0.19032","0.27034","0.27034" +"GO:0060402","calcium ion transport into cytosol",3,3,1.73,269,"0.19032","0.27034","0.27034" +"GO:0097553","calcium ion transmembrane import into cy...",3,3,1.73,270,"0.19032","0.27034","0.27034" +"GO:0006415","translational termination",9,7,5.18,219,"0.18789","0.27080","0.27080" +"GO:0006544","glycine metabolic process",4,3,2.3,564,"0.43303","0.27176","0.27176" +"GO:0031145","anaphase-promoting complex-dependent cat...",4,3,2.3,565,"0.43303","0.27176","0.27176" +"GO:0042078","germ-line stem cell division",4,3,2.3,566,"0.43303","0.27176","0.27176" +"GO:0098728","germline stem cell asymmetric division",4,3,2.3,567,"0.43303","0.27176","0.27176" +"GO:1902914","regulation of protein polyubiquitination",4,3,2.3,568,"0.43303","0.27176","0.27176" +"GO:1902916","positive regulation of protein polyubiqu...",4,3,2.3,569,"0.43303","0.27176","0.27176" +"GO:0098542","defense response to other organism",22,11,12.66,1636,"0.82523","0.27290","0.27290" +"GO:0006699","bile acid biosynthetic process",3,3,1.73,271,"0.19032","0.27364","0.27364" +"GO:0008206","bile acid metabolic process",3,3,1.73,272,"0.19032","0.27364","0.27364" +"GO:0044128","positive regulation of growth of symbion...",3,3,1.73,273,"0.19032","0.27364","0.27364" +"GO:0044148","positive regulation of growth of symbion...",3,3,1.73,274,"0.19032","0.27364","0.27364" +"GO:0051784","negative regulation of nuclear division",4,3,2.3,570,"0.43303","0.27367","0.27367" +"GO:0007160","cell-matrix adhesion",6,3,3.45,1308,"0.78526","0.27523","0.27523" +"GO:0019439","aromatic compound catabolic process",52,34,29.92,194,"0.15516","0.27675","0.27675" +"GO:0006749","glutathione metabolic process",5,4,2.88,409,"0.29553","0.27771","0.27771" +"GO:0042060","wound healing",26,15,14.96,803,"0.57621","0.27851","0.27851" +"GO:0009124","nucleoside monophosphate biosynthetic pr...",27,21,15.53,51,"0.02327","0.02261","0.27863" +"GO:0009156","ribonucleoside monophosphate biosyntheti...",27,21,15.53,52,"0.02327","0.02261","0.27863" +"GO:0033559","unsaturated fatty acid metabolic process",5,3,2.88,1073,"0.63928","0.27916","0.27916" +"GO:0007224","smoothened signaling pathway",3,3,1.73,275,"0.19032","0.27921","0.27921" +"GO:0045185","maintenance of protein location",11,6,6.33,1230,"0.69682","0.27955","0.27955" +"GO:0032874","positive regulation of stress-activated ...",4,3,2.3,571,"0.43303","0.28205","0.28205" +"GO:0070304","positive regulation of stress-activated ...",4,3,2.3,572,"0.43303","0.28205","0.28205" +"GO:0000910","cytokinesis",16,11,9.21,357,"0.25892","0.28311","0.28311" +"GO:0022898","regulation of transmembrane transporter ...",14,7,8.06,1595,"0.80106","0.28365","0.28365" +"GO:0032409","regulation of transporter activity",14,7,8.06,1596,"0.80106","0.28365","0.28365" +"GO:0032412","regulation of ion transmembrane transpor...",14,7,8.06,1597,"0.80106","0.28365","0.28365" +"GO:0006875","cellular metal ion homeostasis",26,15,14.96,804,"0.57621","0.28453","0.28453" +"GO:0006635","fatty acid beta-oxidation",5,4,2.88,410,"0.29553","0.28498","0.28498" +"GO:0010970","transport along microtubule",10,6,5.75,781,"0.57035","0.28521","0.28521" +"GO:0099111","microtubule-based transport",10,6,5.75,782,"0.57035","0.28521","0.28521" +"GO:0030488","tRNA methylation",3,2,1.73,853,"0.61223","0.28598","0.28598" +"GO:0009119","ribonucleoside metabolic process",6,4,3.45,669,"0.49329","0.28636","0.28636" +"GO:0048284","organelle fusion",8,6,4.6,368,"0.26575","0.28961","0.28961" +"GO:0033045","regulation of sister chromatid segregati...",8,6,4.6,369,"0.26575","0.29148","0.29148" +"GO:0051983","regulation of chromosome segregation",8,6,4.6,370,"0.26575","0.29148","0.29148" +"GO:0031331","positive regulation of cellular cataboli...",12,8,6.9,492,"0.36965","0.29167","0.29167" +"GO:0001738","morphogenesis of a polarized epithelium",11,7,6.33,634,"0.46496","0.29323","0.29323" +"GO:0009144","purine nucleoside triphosphate metabolic...",41,31,23.59,38,"0.01220","0.02100","0.29347" +"GO:0009199","ribonucleoside triphosphate metabolic pr...",41,31,23.59,39,"0.01220","0.02100","0.29347" +"GO:0009205","purine ribonucleoside triphosphate metab...",41,31,23.59,40,"0.01220","0.02100","0.29347" +"GO:0055065","metal ion homeostasis",29,16,16.69,1198,"0.67516","0.29394","0.29394" +"GO:0070125","mitochondrial translational elongation",3,3,1.73,276,"0.19032","0.29458","0.29458" +"GO:0070126","mitochondrial translational termination",3,3,1.73,277,"0.19032","0.29458","0.29458" +"GO:0070936","protein K48-linked ubiquitination",10,7,5.75,427,"0.32221","0.29569","0.29569" +"GO:0017015","regulation of transforming growth factor...",4,3,2.3,573,"0.43303","0.29659","0.29659" +"GO:0030511","positive regulation of transforming grow...",4,3,2.3,574,"0.43303","0.29659","0.29659" +"GO:1903844","regulation of cellular response to trans...",4,3,2.3,575,"0.43303","0.29659","0.29659" +"GO:1903846","positive regulation of cellular response...",4,3,2.3,576,"0.43303","0.29659","0.29659" +"GO:0001824","blastocyst development",3,3,1.73,278,"0.19032","0.29748","0.29748" +"GO:0051705","multi-organism behavior",9,5,5.18,1207,"0.68020","0.29762","0.29762" +"GO:0034968","histone lysine methylation",10,7,5.75,428,"0.32221","0.29781","0.29781" +"GO:0007005","mitochondrion organization",57,31,32.8,1271,"0.73405","0.29894","0.29894" +"GO:0034728","nucleosome organization",14,9,8.06,506,"0.41040","0.29965","0.29965" +"GO:0006739","NADP metabolic process",5,2,2.88,1785,"0.89286","0.29985","0.29985" +"GO:0046040","IMP metabolic process",4,3,2.3,577,"0.43303","0.29996","0.29996" +"GO:0006631","fatty acid metabolic process",29,19,16.69,349,"0.24854","0.30197","0.30197" +"GO:0050708","regulation of protein secretion",9,7,5.18,220,"0.18789","0.30303","0.30303" +"GO:0042692","muscle cell differentiation",30,19,17.26,436,"0.32571","0.30343","0.30343" +"GO:0055082","cellular chemical homeostasis",30,17,17.26,1052,"0.61423","0.30343","0.30343" +"GO:1901568","fatty acid derivative metabolic process",8,5,4.6,738,"0.53646","0.30385","0.30385" +"GO:0006091","generation of precursor metabolites and ...",50,36,28.77,53,"0.02420","0.01295","0.30487" +"GO:0043243","positive regulation of protein complex d...",3,3,1.73,279,"0.19032","0.30569","0.30569" +"GO:0009607","response to biotic stimulus",31,16,17.84,1609,"0.80389","0.30618","0.30618" +"GO:0035304","regulation of protein dephosphorylation",5,3,2.88,1074,"0.63928","0.30669","0.30669" +"GO:0009268","response to pH",3,3,1.73,280,"0.19032","0.30865","0.30865" +"GO:0007059","chromosome segregation",24,16,13.81,346,"0.24361","0.30872","0.30872" +"GO:0006633","fatty acid biosynthetic process",12,8,6.9,493,"0.36965","0.30925","0.30925" +"GO:0021987","cerebral cortex development",8,4,4.6,1371,"0.78620","0.30965","0.30965" +"GO:2001257","regulation of cation channel activity",13,6,7.48,1661,"0.86685","0.31050","0.31050" +"GO:0090151","establishment of protein localization to...",8,5,4.6,739,"0.53646","0.31356","0.31356" +"GO:0007274","neuromuscular synaptic transmission",4,3,2.3,578,"0.43303","0.31363","0.31363" +"GO:1902652","secondary alcohol metabolic process",7,4,4.03,1139,"0.66133","0.31469","0.31469" +"GO:0014074","response to purine-containing compound",7,4,4.03,1140,"0.66133","0.31574","0.31574" +"GO:0031960","response to corticosteroid",7,4,4.03,1141,"0.66133","0.31574","0.31574" +"GO:0032411","positive regulation of transporter activ...",7,4,4.03,1142,"0.66133","0.31574","0.31574" +"GO:0032414","positive regulation of ion transmembrane...",7,4,4.03,1143,"0.66133","0.31574","0.31574" +"GO:0034767","positive regulation of ion transmembrane...",7,4,4.03,1144,"0.66133","0.31574","0.31574" +"GO:1904064","positive regulation of cation transmembr...",7,4,4.03,1145,"0.66133","0.31574","0.31574" +"GO:2001259","positive regulation of cation channel ac...",7,4,4.03,1146,"0.66133","0.31574","0.31574" +"GO:0000154","rRNA modification",7,5,4.03,470,"0.36726","0.31679","0.31679" +"GO:0071417","cellular response to organonitrogen comp...",13,7,7.48,1246,"0.71172","0.31714","0.31714" +"GO:0006089","lactate metabolic process",3,2,1.73,854,"0.61223","0.31764","0.31764" +"GO:0006110","regulation of glycolytic process",3,2,1.73,855,"0.61223","0.31764","0.31764" +"GO:0010573","vascular endothelial growth factor produ...",3,2,1.73,856,"0.61223","0.31764","0.31764" +"GO:0010574","regulation of vascular endothelial growt...",3,2,1.73,857,"0.61223","0.31764","0.31764" +"GO:0010594","regulation of endothelial cell migration",3,2,1.73,858,"0.61223","0.31764","0.31764" +"GO:0030808","regulation of nucleotide biosynthetic pr...",3,2,1.73,859,"0.61223","0.31764","0.31764" +"GO:0030811","regulation of nucleotide catabolic proce...",3,2,1.73,860,"0.61223","0.31764","0.31764" +"GO:0043457","regulation of cellular respiration",3,2,1.73,861,"0.61223","0.31764","0.31764" +"GO:0043470","regulation of carbohydrate catabolic pro...",3,2,1.73,862,"0.61223","0.31764","0.31764" +"GO:0043534","blood vessel endothelial cell migration",3,2,1.73,863,"0.61223","0.31764","0.31764" +"GO:0051193","regulation of cofactor metabolic process",3,2,1.73,864,"0.61223","0.31764","0.31764" +"GO:0051196","regulation of coenzyme metabolic process",3,2,1.73,865,"0.61223","0.31764","0.31764" +"GO:1900371","regulation of purine nucleotide biosynth...",3,2,1.73,866,"0.61223","0.31764","0.31764" +"GO:2000377","regulation of reactive oxygen species me...",3,2,1.73,867,"0.61223","0.31764","0.31764" +"GO:2001169","regulation of ATP biosynthetic process",3,2,1.73,868,"0.61223","0.31764","0.31764" +"GO:0032259","methylation",39,23,22.44,710,"0.49531","0.31913","0.31913" +"GO:0030217","T cell differentiation",3,2,1.73,869,"0.61223","0.32128","0.32128" +"GO:0045580","regulation of T cell differentiation",3,2,1.73,870,"0.61223","0.32128","0.32128" +"GO:0044270","cellular nitrogen compound catabolic pro...",51,33,29.34,210,"0.18379","0.32194","0.32194" +"GO:0046700","heterocycle catabolic process",51,33,29.34,211,"0.18379","0.32194","0.32194" +"GO:0032365","intracellular lipid transport",5,3,2.88,1075,"0.63928","0.32378","0.32378" +"GO:0048878","chemical homeostasis",50,26,28.77,1640,"0.82749","0.32384","0.32384" +"GO:0006612","protein targeting to membrane",9,6,5.18,520,"0.42147","0.32417","0.32417" +"GO:0090092","regulation of transmembrane receptor pro...",8,6,4.6,371,"0.26575","0.32545","0.32545" +"GO:0010656","negative regulation of muscle cell apopt...",4,2,2.3,1411,"0.79143","0.32554","0.32554" +"GO:0010657","muscle cell apoptotic process",4,2,2.3,1412,"0.79143","0.32554","0.32554" +"GO:0010658","striated muscle cell apoptotic process",4,2,2.3,1413,"0.79143","0.32554","0.32554" +"GO:0010659","cardiac muscle cell apoptotic process",4,2,2.3,1414,"0.79143","0.32554","0.32554" +"GO:0010660","regulation of muscle cell apoptotic proc...",4,2,2.3,1415,"0.79143","0.32554","0.32554" +"GO:0010662","regulation of striated muscle cell apopt...",4,2,2.3,1416,"0.79143","0.32554","0.32554" +"GO:0010664","negative regulation of striated muscle c...",4,2,2.3,1417,"0.79143","0.32554","0.32554" +"GO:0010665","regulation of cardiac muscle cell apopto...",4,2,2.3,1418,"0.79143","0.32554","0.32554" +"GO:0010667","negative regulation of cardiac muscle ce...",4,2,2.3,1419,"0.79143","0.32554","0.32554" +"GO:0036465","synaptic vesicle recycling",4,3,2.3,579,"0.43303","0.32554","0.32554" +"GO:0042698","ovulation cycle",4,3,2.3,580,"0.43303","0.32554","0.32554" +"GO:0050764","regulation of phagocytosis",4,3,2.3,581,"0.43303","0.32554","0.32554" +"GO:0045787","positive regulation of cell cycle",13,9,7.48,384,"0.28740","0.32641","0.32641" +"GO:0002831","regulation of response to biotic stimulu...",4,2,2.3,1420,"0.79143","0.32695","0.32695" +"GO:0097305","response to alcohol",18,9,10.36,1624,"0.81323","0.32763","0.32763" +"GO:0010770","positive regulation of cell morphogenesi...",3,2,1.73,871,"0.61223","0.32862","0.32862" +"GO:0055080","cation homeostasis",33,18,18.99,1238,"0.70272","0.32986","0.32986" +"GO:0098771","inorganic ion homeostasis",33,18,18.99,1239,"0.70272","0.32986","0.32986" +"GO:0007156","homophilic cell adhesion via plasma memb...",10,7,5.75,429,"0.32221","0.33073","0.33073" +"GO:0010827","regulation of glucose transmembrane tran...",5,3,2.88,1076,"0.63928","0.33252","0.33252" +"GO:1904659","glucose transmembrane transport",5,3,2.88,1077,"0.63928","0.33252","0.33252" +"GO:0045931","positive regulation of mitotic cell cycl...",7,5,4.03,471,"0.36726","0.33377","0.33377" +"GO:1901569","fatty acid derivative catabolic process",4,3,2.3,582,"0.43303","0.33552","0.33552" +"GO:0010038","response to metal ion",23,12,13.23,1295,"0.76973","0.33636","0.33636" +"GO:0033044","regulation of chromosome organization",24,14,13.81,768,"0.55481","0.33639","0.33639" +"GO:0002181","cytoplasmic translation",10,6,5.75,783,"0.57035","0.33754","0.33754" +"GO:0006470","protein dephosphorylation",24,13,13.81,1242,"0.70843","0.33817","0.33817" +"GO:0030317","flagellated sperm motility",3,2,1.73,872,"0.61223","0.33918","0.33918" +"GO:0097722","sperm motility",3,2,1.73,873,"0.61223","0.33918","0.33918" +"GO:0098655","cation transmembrane transport",54,38,31.07,60,"0.03517","0.10676","0.33940" +"GO:0070588","calcium ion transmembrane transport",9,7,5.18,221,"0.18789","0.33991","0.33991" +"GO:0033014","tetrapyrrole biosynthetic process",8,5,4.6,740,"0.53646","0.34168","0.34168" +"GO:0009166","nucleotide catabolic process",14,9,8.06,507,"0.41040","0.34187","0.34187" +"GO:0072525","pyridine-containing compound biosyntheti...",14,9,8.06,508,"0.41040","0.34187","0.34187" +"GO:0021766","hippocampus development",3,2,1.73,874,"0.61223","0.34232","0.34232" +"GO:0032352","positive regulation of hormone metabolic...",3,2,1.73,875,"0.61223","0.34232","0.34232" +"GO:0045840","positive regulation of mitotic nuclear d...",3,2,1.73,876,"0.61223","0.34232","0.34232" +"GO:0007613","memory",7,5,4.03,472,"0.36726","0.34265","0.34265" +"GO:0030073","insulin secretion",7,5,4.03,473,"0.36726","0.34265","0.34265" +"GO:0046883","regulation of hormone secretion",7,5,4.03,474,"0.36726","0.34265","0.34265" +"GO:0090276","regulation of peptide hormone secretion",7,5,4.03,475,"0.36726","0.34265","0.34265" +"GO:0019725","cellular homeostasis",54,30,31.07,1194,"0.67052","0.34306","0.34306" +"GO:0015914","phospholipid transport",4,2,2.3,1421,"0.79143","0.34421","0.34421" +"GO:0070723","response to cholesterol",4,2,2.3,1422,"0.79143","0.34421","0.34421" +"GO:0071397","cellular response to cholesterol",4,2,2.3,1423,"0.79143","0.34421","0.34421" +"GO:0030833","regulation of actin filament polymerizat...",18,9,10.36,1625,"0.81323","0.34498","0.34498" +"GO:2001251","negative regulation of chromosome organi...",11,7,6.33,635,"0.46496","0.34699","0.34699" +"GO:0060968","regulation of gene silencing",5,3,2.88,1078,"0.63928","0.34791","0.34791" +"GO:1903008","organelle disassembly",7,5,4.03,476,"0.36726","0.34817","0.34817" +"GO:0006952","defense response",51,27,29.34,1581,"0.79247","0.34859","0.34859" +"GO:0043269","regulation of ion transport",20,11,11.51,1201,"0.67897","0.34919","0.34919" +"GO:0010039","response to iron ion",7,5,4.03,477,"0.36726","0.34942","0.34942" +"GO:1905330","regulation of morphogenesis of an epithe...",9,5,5.18,1208,"0.68020","0.35051","0.35051" +"GO:0006825","copper ion transport",4,3,2.3,583,"0.43303","0.35081","0.35081" +"GO:0035434","copper ion transmembrane transport",4,3,2.3,584,"0.43303","0.35081","0.35081" +"GO:0006720","isoprenoid metabolic process",20,13,11.51,446,"0.33002","0.35084","0.35084" +"GO:0044839","cell cycle G2/M phase transition",14,10,8.06,326,"0.21906","0.35227","0.35227" +"GO:1901659","glycosyl compound biosynthetic process",3,2,1.73,877,"0.61223","0.35247","0.35247" +"GO:0007033","vacuole organization",12,9,6.9,209,"0.17613","0.35383","0.35383" +"GO:0098609","cell-cell adhesion",47,26,27.04,1200,"0.67871","0.35410","0.35410" +"GO:0044772","mitotic cell cycle phase transition",29,20,16.69,188,"0.14354","0.35514","0.35514" +"GO:0072384","organelle transport along microtubule",6,4,3.45,670,"0.49329","0.35585","0.35585" +"GO:0046834","lipid phosphorylation",4,2,2.3,1424,"0.79143","0.35598","0.35598" +"GO:0046854","phosphatidylinositol phosphorylation",4,2,2.3,1425,"0.79143","0.35598","0.35598" +"GO:0001837","epithelial to mesenchymal transition",6,4,3.45,671,"0.49329","0.35767","0.35767" +"GO:0043405","regulation of MAP kinase activity",6,4,3.45,672,"0.49329","0.35767","0.35767" +"GO:0043406","positive regulation of MAP kinase activi...",6,4,3.45,673,"0.49329","0.35767","0.35767" +"GO:0097435","supramolecular fiber organization",59,31,33.95,1635,"0.82081","0.35815","0.35815" +"GO:0015837","amine transport",3,2,1.73,878,"0.61223","0.35824","0.35824" +"GO:0032366","intracellular sterol transport",3,2,1.73,879,"0.61223","0.35824","0.35824" +"GO:0032367","intracellular cholesterol transport",3,2,1.73,880,"0.61223","0.35824","0.35824" +"GO:0046323","glucose import",3,2,1.73,881,"0.61223","0.35824","0.35824" +"GO:0046324","regulation of glucose import",3,2,1.73,882,"0.61223","0.35824","0.35824" +"GO:0051952","regulation of amine transport",3,2,1.73,883,"0.61223","0.35824","0.35824" +"GO:0000302","response to reactive oxygen species",10,7,5.75,430,"0.32221","0.35843","0.35843" +"GO:0072593","reactive oxygen species metabolic proces...",7,4,4.03,1147,"0.66133","0.35851","0.35851" +"GO:0042773","ATP synthesis coupled electron transport",13,9,7.48,385,"0.28740","0.35872","0.35872" +"GO:0006690","icosanoid metabolic process",4,2,2.3,1426,"0.79143","0.36045","0.36045" +"GO:0006692","prostanoid metabolic process",4,2,2.3,1427,"0.79143","0.36045","0.36045" +"GO:0006693","prostaglandin metabolic process",4,2,2.3,1428,"0.79143","0.36045","0.36045" +"GO:0007254","JNK cascade",4,2,2.3,1429,"0.79143","0.36045","0.36045" +"GO:1901570","fatty acid derivative biosynthetic proce...",4,3,2.3,585,"0.43303","0.36045","0.36045" +"GO:0043270","positive regulation of ion transport",10,5,5.75,1395,"0.79006","0.36197","0.36197" +"GO:0051592","response to calcium ion",10,4,5.75,2188,"0.92495","0.36197","0.36197" +"GO:0036297","interstrand cross-link repair",3,2,1.73,884,"0.61223","0.36277","0.36277" +"GO:0007178","transmembrane receptor protein serine/th...",18,12,10.36,417,"0.29584","0.36281","0.36281" +"GO:0016311","dephosphorylation",40,22,23.01,1223,"0.68910","0.36389","0.36389" +"GO:0019395","fatty acid oxidation",7,5,4.03,478,"0.36726","0.36417","0.36417" +"GO:0034440","lipid oxidation",7,5,4.03,479,"0.36726","0.36417","0.36417" +"GO:0006081","cellular aldehyde metabolic process",9,5,5.18,1209,"0.68020","0.36465","0.36465" +"GO:0006101","citrate metabolic process",15,14,8.63,18,"0.00297","0.00306","0.36499" +"GO:0042471","ear morphogenesis",5,3,2.88,1079,"0.63928","0.36619","0.36619" +"GO:0042472","inner ear morphogenesis",5,3,2.88,1080,"0.63928","0.36619","0.36619" +"GO:0051276","chromosome organization",139,84,79.98,377,"0.26829","0.36648","0.36648" +"GO:0062012","regulation of small molecule metabolic p...",12,7,6.9,817,"0.59839","0.36678","0.36678" +"GO:0051047","positive regulation of secretion",12,8,6.9,494,"0.36965","0.36678","0.36678" +"GO:0009584","detection of visible light",4,2,2.3,1430,"0.79143","0.36795","0.36795" +"GO:0062013","positive regulation of small molecule me...",5,3,2.88,1081,"0.63928","0.36872","0.36872" +"GO:0014823","response to activity",8,4,4.6,1372,"0.78620","0.36895","0.36895" +"GO:0090257","regulation of muscle system process",12,8,6.9,495,"0.36965","0.36939","0.36939" +"GO:0046717","acid secretion",5,4,2.88,411,"0.29553","0.37041","0.37041" +"GO:0006109","regulation of carbohydrate metabolic pro...",6,4,3.45,674,"0.49329","0.37054","0.37054" +"GO:0010675","regulation of cellular carbohydrate meta...",6,4,3.45,675,"0.49329","0.37054","0.37054" +"GO:0019362","pyridine nucleotide metabolic process",17,10,9.78,771,"0.55960","0.37090","0.37090" +"GO:0046496","nicotinamide nucleotide metabolic proces...",17,10,9.78,772,"0.55960","0.37090","0.37090" +"GO:0070972","protein localization to endoplasmic reti...",7,4,4.03,1148,"0.66133","0.37145","0.37145" +"GO:0042391","regulation of membrane potential",11,7,6.33,636,"0.46496","0.37198","0.37198" +"GO:0099173","postsynapse organization",11,7,6.33,637,"0.46496","0.37198","0.37198" +"GO:0051289","protein homotetramerization",6,2,3.45,2256,"0.94666","0.37240","0.37240" +"GO:0008299","isoprenoid biosynthetic process",11,6,6.33,1231,"0.69682","0.37324","0.37324" +"GO:0009057","macromolecule catabolic process",98,61,56.39,284,"0.19636","0.37403","0.37403" +"GO:0032535","regulation of cellular component size",31,16,17.84,1610,"0.80389","0.37444","0.37444" +"GO:0030148","sphingolipid biosynthetic process",3,2,1.73,885,"0.61223","0.37454","0.37454" +"GO:0090150","establishment of protein localization to...",22,15,12.66,318,"0.21408","0.37480","0.37480" +"GO:0048675","axon extension",7,4,4.03,1149,"0.66133","0.37648","0.37648" +"GO:0002756","MyD88-independent toll-like receptor sig...",3,2,1.73,886,"0.61223","0.37652","0.37652" +"GO:0015919","peroxisomal membrane transport",3,2,1.73,887,"0.61223","0.37652","0.37652" +"GO:0016558","protein import into peroxisome matrix",3,2,1.73,888,"0.61223","0.37652","0.37652" +"GO:0038093","Fc receptor signaling pathway",3,2,1.73,889,"0.61223","0.37652","0.37652" +"GO:0048132","female germ-line stem cell asymmetric di...",3,2,1.73,890,"0.61223","0.37652","0.37652" +"GO:0048793","pronephros development",3,2,1.73,891,"0.61223","0.37652","0.37652" +"GO:0050851","antigen receptor-mediated signaling path...",3,2,1.73,892,"0.61223","0.37652","0.37652" +"GO:0050852","T cell receptor signaling pathway",3,2,1.73,893,"0.61223","0.37652","0.37652" +"GO:0097039","protein linear polyubiquitination",3,2,1.73,894,"0.61223","0.37652","0.37652" +"GO:0006979","response to oxidative stress",38,22,21.86,764,"0.55093","0.37776","0.37776" +"GO:0007094","mitotic spindle assembly checkpoint",3,2,1.73,895,"0.61223","0.37851","0.37851" +"GO:0033048","negative regulation of mitotic sister ch...",3,2,1.73,896,"0.61223","0.37851","0.37851" +"GO:0044804","autophagy of nucleus",3,2,1.73,897,"0.61223","0.37851","0.37851" +"GO:0045839","negative regulation of mitotic nuclear d...",3,2,1.73,898,"0.61223","0.37851","0.37851" +"GO:0045841","negative regulation of mitotic metaphase...",3,2,1.73,899,"0.61223","0.37851","0.37851" +"GO:0071173","spindle assembly checkpoint",3,2,1.73,900,"0.61223","0.37851","0.37851" +"GO:0071174","mitotic spindle checkpoint",3,2,1.73,901,"0.61223","0.37851","0.37851" +"GO:1902100","negative regulation of metaphase/anaphas...",3,2,1.73,902,"0.61223","0.37851","0.37851" +"GO:1905819","negative regulation of chromosome separa...",3,2,1.73,903,"0.61223","0.37851","0.37851" +"GO:2000816","negative regulation of mitotic sister ch...",3,2,1.73,904,"0.61223","0.37851","0.37851" +"GO:0031057","negative regulation of histone modificat...",3,2,1.73,905,"0.61223","0.38116","0.38116" +"GO:0016999","antibiotic metabolic process",19,16,10.93,45,"0.01342","0.01003","0.38241" +"GO:0090501","RNA phosphodiester bond hydrolysis",11,7,6.33,638,"0.46496","0.38270","0.38270" +"GO:0048520","positive regulation of behavior",3,2,1.73,906,"0.61223","0.38316","0.38316" +"GO:1905268","negative regulation of chromatin organiz...",7,5,4.03,480,"0.36726","0.38562","0.38562" +"GO:0010828","positive regulation of glucose transmemb...",3,2,1.73,907,"0.61223","0.38583","0.38583" +"GO:0051299","centrosome separation",3,2,1.73,908,"0.61223","0.38583","0.38583" +"GO:0002429","immune response-activating cell surface ...",7,5,4.03,481,"0.36726","0.38606","0.38606" +"GO:0002768","immune response-regulating cell surface ...",7,5,4.03,482,"0.36726","0.38606","0.38606" +"GO:0043271","negative regulation of ion transport",3,2,1.73,909,"0.61223","0.38717","0.38717" +"GO:0043666","regulation of phosphoprotein phosphatase...",3,2,1.73,910,"0.61223","0.38851","0.38851" +"GO:0030435","sporulation resulting in formation of a ...",4,3,2.3,586,"0.43303","0.38861","0.38861" +"GO:0006325","chromatin organization",98,58,56.39,504,"0.41017","0.38879","0.38879" +"GO:0044770","cell cycle phase transition",31,21,17.84,203,"0.16535","0.38907","0.38907" +"GO:1901605","alpha-amino acid metabolic process",24,16,13.81,347,"0.24361","0.38977","0.38977" +"GO:0009123","nucleoside monophosphate metabolic proce...",44,32,25.32,54,"0.02667","0.05772","0.39111" +"GO:0009161","ribonucleoside monophosphate metabolic p...",44,32,25.32,55,"0.02667","0.05772","0.39111" +"GO:0006984","ER-nucleus signaling pathway",3,2,1.73,911,"0.61223","0.39120","0.39120" +"GO:0031124","mRNA 3'-end processing",6,3,3.45,1309,"0.78526","0.39314","0.39314" +"GO:0072523","purine-containing compound catabolic pro...",3,2,1.73,912,"0.61223","0.39322","0.39322" +"GO:0009308","amine metabolic process",8,5,4.6,741,"0.53646","0.39394","0.39394" +"GO:0044106","cellular amine metabolic process",8,5,4.6,742,"0.53646","0.39394","0.39394" +"GO:0097306","cellular response to alcohol",10,4,5.75,2189,"0.92495","0.39466","0.39466" +"GO:0006040","amino sugar metabolic process",33,27,18.99,16,"0.00280","1.9e-05","0.39570" +"GO:1901071","glucosamine-containing compound metaboli...",33,27,18.99,17,"0.00280","1.9e-05","0.39570" +"GO:0015718","monocarboxylic acid transport",10,7,5.75,431,"0.32221","0.39589","0.39589" +"GO:1904950","negative regulation of establishment of ...",6,4,3.45,676,"0.49329","0.39600","0.39600" +"GO:0019933","cAMP-mediated signaling",8,5,4.6,743,"0.53646","0.39726","0.39726" +"GO:0019935","cyclic-nucleotide-mediated signaling",8,5,4.6,744,"0.53646","0.39726","0.39726" +"GO:0030970","retrograde protein transport, ER to cyto...",3,2,1.73,913,"0.61223","0.39863","0.39863" +"GO:0032527","protein exit from endoplasmic reticulum",3,2,1.73,914,"0.61223","0.39863","0.39863" +"GO:0070861","regulation of protein exit from endoplas...",3,2,1.73,915,"0.61223","0.39863","0.39863" +"GO:0070862","negative regulation of protein exit from...",3,2,1.73,916,"0.61223","0.39863","0.39863" +"GO:0090317","negative regulation of intracellular pro...",3,2,1.73,917,"0.61223","0.39863","0.39863" +"GO:1901799","negative regulation of proteasomal prote...",3,2,1.73,918,"0.61223","0.39863","0.39863" +"GO:1903051","negative regulation of proteolysis invol...",3,2,1.73,919,"0.61223","0.39863","0.39863" +"GO:1903363","negative regulation of cellular protein ...",3,2,1.73,920,"0.61223","0.39863","0.39863" +"GO:1903513","endoplasmic reticulum to cytosol transpo...",3,2,1.73,921,"0.61223","0.39863","0.39863" +"GO:1904152","regulation of retrograde protein transpo...",3,2,1.73,922,"0.61223","0.39863","0.39863" +"GO:1904153","negative regulation of retrograde protei...",3,2,1.73,923,"0.61223","0.39863","0.39863" +"GO:1904292","regulation of ERAD pathway",3,2,1.73,924,"0.61223","0.39863","0.39863" +"GO:1904293","negative regulation of ERAD pathway",3,2,1.73,925,"0.61223","0.39863","0.39863" +"GO:0070988","demethylation",8,5,4.6,745,"0.53646","0.39948","0.39948" +"GO:0019233","sensory perception of pain",4,2,2.3,1431,"0.79143","0.40110","0.40110" +"GO:1903169","regulation of calcium ion transmembrane ...",4,3,2.3,587,"0.43303","0.40110","0.40110" +"GO:0060840","artery development",3,1,1.73,1931,"0.92354","0.40203","0.40203" +"GO:1901136","carbohydrate derivative catabolic proces...",8,4,4.6,1373,"0.78620","0.40282","0.40282" +"GO:0016577","histone demethylation",6,4,3.45,677,"0.49329","0.40370","0.40370" +"GO:0008064","regulation of actin polymerization or de...",19,10,10.93,1284,"0.74913","0.40434","0.40434" +"GO:0030041","actin filament polymerization",19,9,10.93,1700,"0.87092","0.40434","0.40434" +"GO:0030832","regulation of actin filament length",19,10,10.93,1285,"0.74913","0.40434","0.40434" +"GO:0035150","regulation of tube size",4,3,2.3,588,"0.43303","0.40504","0.40504" +"GO:0006188","IMP biosynthetic process",3,2,1.73,926,"0.61223","0.40545","0.40545" +"GO:0006189","'de novo' IMP biosynthetic process",3,2,1.73,927,"0.61223","0.40545","0.40545" +"GO:0022904","respiratory electron transport chain",15,10,8.63,441,"0.32909","0.40771","0.40771" +"GO:0031329","regulation of cellular catabolic process",32,19,18.41,656,"0.49092","0.41027","0.41027" +"GO:0042135","neurotransmitter catabolic process",8,6,4.6,372,"0.26575","0.41066","0.41066" +"GO:0010035","response to inorganic substance",28,14,16.11,1644,"0.84209","0.41133","0.41133" +"GO:0031047","gene silencing by RNA",9,5,5.18,1210,"0.68020","0.41270","0.41270" +"GO:0030838","positive regulation of actin filament po...",13,7,7.48,1247,"0.71172","0.41294","0.41294" +"GO:0014031","mesenchymal cell development",6,3,3.45,1310,"0.78526","0.41537","0.41537" +"GO:0014032","neural crest cell development",6,3,3.45,1311,"0.78526","0.41537","0.41537" +"GO:0043467","regulation of generation of precursor me...",6,3,3.45,1312,"0.78526","0.41537","0.41537" +"GO:0045765","regulation of angiogenesis",6,3,3.45,1313,"0.78526","0.41537","0.41537" +"GO:0048864","stem cell development",6,3,3.45,1314,"0.78526","0.41537","0.41537" +"GO:1901342","regulation of vasculature development",6,3,3.45,1315,"0.78526","0.41537","0.41537" +"GO:0010893","positive regulation of steroid biosynthe...",3,2,1.73,928,"0.61223","0.41577","0.41577" +"GO:0045542","positive regulation of cholesterol biosy...",3,2,1.73,929,"0.61223","0.41577","0.41577" +"GO:0045940","positive regulation of steroid metabolic...",3,2,1.73,930,"0.61223","0.41577","0.41577" +"GO:0090205","positive regulation of cholesterol metab...",3,2,1.73,931,"0.61223","0.41577","0.41577" +"GO:0106120","positive regulation of sterol biosynthet...",3,2,1.73,932,"0.61223","0.41577","0.41577" +"GO:1902932","positive regulation of alcohol biosynthe...",3,2,1.73,933,"0.61223","0.41577","0.41577" +"GO:0008088","axo-dendritic transport",7,4,4.03,1150,"0.66133","0.41594","0.41594" +"GO:0051225","spindle assembly",7,5,4.03,483,"0.36726","0.41594","0.41594" +"GO:0035821","modification of morphology or physiology...",4,2,2.3,1432,"0.79143","0.41616","0.41616" +"GO:0044788","modulation by host of viral process",4,2,2.3,1433,"0.79143","0.41616","0.41616" +"GO:0044794","positive regulation by host of viral pro...",4,2,2.3,1434,"0.79143","0.41616","0.41616" +"GO:0044827","modulation by host of viral genome repli...",4,2,2.3,1435,"0.79143","0.41616","0.41616" +"GO:0044829","positive regulation by host of viral gen...",4,2,2.3,1436,"0.79143","0.41616","0.41616" +"GO:0051702","interaction with symbiont",4,2,2.3,1437,"0.79143","0.41616","0.41616" +"GO:0051817","modification of morphology or physiology...",4,2,2.3,1438,"0.79143","0.41616","0.41616" +"GO:0051851","modification by host of symbiont morphol...",4,2,2.3,1439,"0.79143","0.41616","0.41616" +"GO:0009112","nucleobase metabolic process",6,5,3.45,307,"0.19664","0.41831","0.41831" +"GO:0046112","nucleobase biosynthetic process",6,5,3.45,308,"0.19664","0.41831","0.41831" +"GO:0045055","regulated exocytosis",11,7,6.33,639,"0.46496","0.41839","0.41839" +"GO:1902275","regulation of chromatin organization",15,8,8.63,1263,"0.72526","0.41854","0.41854" +"GO:0016079","synaptic vesicle exocytosis",3,2,1.73,934,"0.61223","0.41923","0.41923" +"GO:0017156","calcium ion regulated exocytosis",3,2,1.73,935,"0.61223","0.41923","0.41923" +"GO:0042592","homeostatic process",104,51,59.84,2474,"0.96995","0.42067","0.42067" +"GO:2000027","regulation of animal organ morphogenesis",10,6,5.75,784,"0.57035","0.42098","0.42098" +"GO:0009991","response to extracellular stimulus",28,14,16.11,1645,"0.84209","0.42104","0.42104" +"GO:0002521","leukocyte differentiation",6,3,3.45,1316,"0.78526","0.42126","0.42126" +"GO:0030098","lymphocyte differentiation",6,3,3.45,1317,"0.78526","0.42126","0.42126" +"GO:0031098","stress-activated protein kinase signalin...",8,4,4.6,1374,"0.78620","0.42197","0.42197" +"GO:0051403","stress-activated MAPK cascade",8,4,4.6,1375,"0.78620","0.42197","0.42197" +"GO:0030516","regulation of axon extension",5,3,2.88,1082,"0.63928","0.42465","0.42465" +"GO:0042177","negative regulation of protein catabolic...",5,3,2.88,1083,"0.63928","0.42465","0.42465" +"GO:0003008","system process",84,46,48.33,1275,"0.73805","0.42643","0.42643" +"GO:0046328","regulation of JNK cascade",3,2,1.73,936,"0.61223","0.42760","0.42760" +"GO:0043484","regulation of RNA splicing",9,5,5.18,1211,"0.68020","0.43040","0.43040" +"GO:0007413","axonal fasciculation",3,2,1.73,937,"0.61223","0.43110","0.43110" +"GO:0106030","neuron projection fasciculation",3,2,1.73,938,"0.61223","0.43110","0.43110" +"GO:1903313","positive regulation of mRNA metabolic pr...",3,2,1.73,939,"0.61223","0.43110","0.43110" +"GO:0006323","DNA packaging",18,10,10.36,1189,"0.66210","0.43209","0.43209" +"GO:0043433","negative regulation of DNA-binding trans...",4,2,2.3,1440,"0.79143","0.43227","0.43227" +"GO:0002274","myeloid leukocyte activation",9,7,5.18,222,"0.18789","0.43365","0.43365" +"GO:1903532","positive regulation of secretion by cell",10,6,5.75,785,"0.57035","0.43378","0.43378" +"GO:0042063","gliogenesis",10,5,5.75,1396,"0.79006","0.43378","0.43378" +"GO:0098742","cell-cell adhesion via plasma-membrane a...",16,10,9.21,619,"0.44602","0.43395","0.43395" +"GO:1901661","quinone metabolic process",8,5,4.6,746,"0.53646","0.43456","0.43456" +"GO:0043414","macromolecule methylation",32,19,18.41,657,"0.49092","0.43543","0.43543" +"GO:0035637","multicellular organismal signaling",5,3,2.88,1084,"0.63928","0.43918","0.43918" +"GO:0043200","response to amino acid",5,3,2.88,1085,"0.63928","0.43918","0.43918" +"GO:0046683","response to organophosphorus",5,2,2.88,1786,"0.89286","0.43918","0.43918" +"GO:0051385","response to mineralocorticoid",5,2,2.88,1787,"0.89286","0.43918","0.43918" +"GO:0051591","response to cAMP",5,2,2.88,1788,"0.89286","0.43918","0.43918" +"GO:0061337","cardiac conduction",5,3,2.88,1086,"0.63928","0.43918","0.43918" +"GO:1901699","cellular response to nitrogen compound",16,8,9.21,1614,"0.80712","0.44049","0.44049" +"GO:0006638","neutral lipid metabolic process",3,2,1.73,940,"0.61223","0.44098","0.44098" +"GO:0006639","acylglycerol metabolic process",3,2,1.73,941,"0.61223","0.44098","0.44098" +"GO:0046461","neutral lipid catabolic process",3,2,1.73,942,"0.61223","0.44098","0.44098" +"GO:0046464","acylglycerol catabolic process",3,2,1.73,943,"0.61223","0.44098","0.44098" +"GO:1901523","icosanoid catabolic process",3,2,1.73,944,"0.61223","0.44098","0.44098" +"GO:1905344","prostaglandin catabolic process",3,2,1.73,945,"0.61223","0.44098","0.44098" +"GO:0071236","cellular response to antibiotic",7,5,4.03,484,"0.36726","0.44443","0.44443" +"GO:0071241","cellular response to inorganic substance",7,4,4.03,1151,"0.66133","0.44490","0.44490" +"GO:0071248","cellular response to metal ion",7,4,4.03,1152,"0.66133","0.44490","0.44490" +"GO:0010769","regulation of cell morphogenesis involve...",15,8,8.63,1264,"0.72526","0.44530","0.44530" +"GO:0099504","synaptic vesicle cycle",9,5,5.18,1212,"0.68020","0.44551","0.44551" +"GO:0003254","regulation of membrane depolarization",4,2,2.3,1441,"0.79143","0.44616","0.44616" +"GO:1902065","response to L-glutamate",4,2,2.3,1442,"0.79143","0.44616","0.44616" +"GO:0043618","regulation of transcription from RNA pol...",8,4,4.6,1376,"0.78620","0.44730","0.44730" +"GO:0043620","regulation of DNA-templated transcriptio...",8,4,4.6,1377,"0.78620","0.44730","0.44730" +"GO:0006378","mRNA polyadenylation",4,2,2.3,1443,"0.79143","0.44781","0.44781" +"GO:0034764","positive regulation of transmembrane tra...",10,6,5.75,786,"0.57035","0.44933","0.44933" +"GO:1905952","regulation of lipid localization",3,1,1.73,1932,"0.92354","0.44952","0.44952" +"GO:0007162","negative regulation of cell adhesion",6,4,3.45,678,"0.49329","0.45019","0.45019" +"GO:0010810","regulation of cell-substrate adhesion",6,4,3.45,679,"0.49329","0.45019","0.45019" +"GO:0032309","icosanoid secretion",4,3,2.3,589,"0.43303","0.45193","0.45193" +"GO:0050482","arachidonic acid secretion",4,3,2.3,590,"0.43303","0.45193","0.45193" +"GO:0071715","icosanoid transport",4,3,2.3,591,"0.43303","0.45193","0.45193" +"GO:1901571","fatty acid derivative transport",4,3,2.3,592,"0.43303","0.45193","0.45193" +"GO:1903963","arachidonate transport",4,3,2.3,593,"0.43303","0.45193","0.45193" +"GO:0001894","tissue homeostasis",18,8,10.36,1883,"0.91335","0.45242","0.45242" +"GO:0045597","positive regulation of cell differentiat...",43,22,24.74,1647,"0.84319","0.45263","0.45263" +"GO:0021953","central nervous system neuron differenti...",8,4,4.6,1378,"0.78620","0.45431","0.45431" +"GO:0050714","positive regulation of protein secretion",5,4,2.88,412,"0.29553","0.45760","0.45760" +"GO:0031667","response to nutrient levels",27,14,15.53,1394,"0.78781","0.45787","0.45787" +"GO:0046887","positive regulation of hormone secretion",4,3,2.3,594,"0.43303","0.45856","0.45856" +"GO:0090277","positive regulation of peptide hormone s...",4,3,2.3,595,"0.43303","0.45856","0.45856" +"GO:0070838","divalent metal ion transport",17,11,9.78,459,"0.36652","0.45969","0.45969" +"GO:0072511","divalent inorganic cation transport",17,11,9.78,460,"0.36652","0.45969","0.45969" +"GO:0046903","secretion",51,29,29.34,814,"0.59770","0.46086","0.46086" +"GO:0030517","negative regulation of axon extension",3,2,1.73,946,"0.61223","0.46099","0.46099" +"GO:0006906","vesicle fusion",5,3,2.88,1087,"0.63928","0.46131","0.46131" +"GO:0090174","organelle membrane fusion",5,3,2.88,1088,"0.63928","0.46131","0.46131" +"GO:0046034","ATP metabolic process",39,29,22.44,49,"0.02192","0.05064","0.46150" +"GO:0015672","monovalent inorganic cation transport",50,33,28.77,183,"0.14030","0.19734","0.46287" +"GO:0060041","retina development in camera-type eye",27,13,15.53,1774,"0.88199","0.46414","0.46414" +"GO:0002263","cell activation involved in immune respo...",8,6,4.6,373,"0.26575","0.46489","0.46489" +"GO:0002366","leukocyte activation involved in immune ...",8,6,4.6,374,"0.26575","0.46489","0.46489" +"GO:0006892","post-Golgi vesicle-mediated transport",8,5,4.6,747,"0.53646","0.46489","0.46489" +"GO:0006636","unsaturated fatty acid biosynthetic proc...",3,2,1.73,947,"0.61223","0.46532","0.46532" +"GO:0032872","regulation of stress-activated MAPK casc...",7,4,4.03,1153,"0.66133","0.46604","0.46604" +"GO:0070302","regulation of stress-activated protein k...",7,4,4.03,1154,"0.66133","0.46604","0.46604" +"GO:0042572","retinol metabolic process",3,2,1.73,948,"0.61223","0.46749","0.46749" +"GO:0042574","retinal metabolic process",3,2,1.73,949,"0.61223","0.46749","0.46749" +"GO:0006820","anion transport",44,27,25.32,454,"0.36060","0.46813","0.46813" +"GO:0016054","organic acid catabolic process",21,13,12.08,526,"0.43118","0.47014","0.47014" +"GO:0046395","carboxylic acid catabolic process",21,13,12.08,527,"0.43118","0.47014","0.47014" +"GO:0010811","positive regulation of cell-substrate ad...",3,2,1.73,950,"0.61223","0.47112","0.47112" +"GO:0035337","fatty-acyl-CoA metabolic process",3,2,1.73,951,"0.61223","0.47112","0.47112" +"GO:0042446","hormone biosynthetic process",3,2,1.73,952,"0.61223","0.47112","0.47112" +"GO:0043583","ear development",6,3,3.45,1318,"0.78526","0.47160","0.47160" +"GO:0048839","inner ear development",6,3,3.45,1319,"0.78526","0.47160","0.47160" +"GO:0009611","response to wounding",32,18,18.41,1063,"0.63124","0.47247","0.47247" +"GO:0016125","sterol metabolic process",8,4,4.6,1379,"0.78620","0.47438","0.47438" +"GO:0051100","negative regulation of binding",12,6,6.9,1583,"0.79525","0.47505","0.47505" +"GO:0008284","positive regulation of cell proliferatio...",24,12,13.81,1641,"0.83102","0.47546","0.47546" +"GO:0008361","regulation of cell size",10,5,5.75,1397,"0.79006","0.47569","0.47569" +"GO:0000002","mitochondrial genome maintenance",4,3,2.3,596,"0.43303","0.47611","0.47611" +"GO:1901990","regulation of mitotic cell cycle phase t...",19,13,10.93,332,"0.23486","0.47737","0.47737" +"GO:0048524","positive regulation of viral process",6,2,3.45,2257,"0.94666","0.47881","0.47881" +"GO:1900029","positive regulation of ruffle assembly",3,2,1.73,953,"0.61223","0.48131","0.48131" +"GO:0007286","spermatid development",23,13,13.23,1059,"0.62522","0.48239","0.48239" +"GO:0048515","spermatid differentiation",23,13,13.23,1060,"0.62522","0.48239","0.48239" +"GO:0009109","coenzyme catabolic process",4,2,2.3,1444,"0.79143","0.48371","0.48371" +"GO:0051046","regulation of secretion",16,11,9.21,358,"0.25892","0.48387","0.48387" +"GO:0006865","amino acid transport",13,9,7.48,386,"0.28740","0.48390","0.48390" +"GO:0051187","cofactor catabolic process",8,4,4.6,1380,"0.78620","0.48392","0.48392" +"GO:1901800","positive regulation of proteasomal prote...",6,4,3.45,680,"0.49329","0.48398","0.48398" +"GO:1903052","positive regulation of proteolysis invol...",6,4,3.45,681,"0.49329","0.48398","0.48398" +"GO:1903364","positive regulation of cellular protein ...",6,4,3.45,682,"0.49329","0.48398","0.48398" +"GO:0042278","purine nucleoside metabolic process",7,5,4.03,485,"0.36726","0.48448","0.48448" +"GO:0090068","positive regulation of cell cycle proces...",11,7,6.33,640,"0.46496","0.48578","0.48578" +"GO:0015908","fatty acid transport",6,4,3.45,683,"0.49329","0.48605","0.48605" +"GO:0015909","long-chain fatty acid transport",6,4,3.45,684,"0.49329","0.48605","0.48605" +"GO:0007268","chemical synaptic transmission",23,14,13.23,627,"0.45938","0.48646","0.48646" +"GO:0098916","anterograde trans-synaptic signaling",23,14,13.23,628,"0.45938","0.48646","0.48646" +"GO:0099536","synaptic signaling",23,14,13.23,629,"0.45938","0.48646","0.48646" +"GO:0099537","trans-synaptic signaling",23,14,13.23,630,"0.45938","0.48646","0.48646" +"GO:0046677","response to antibiotic",14,9,8.06,509,"0.41040","0.48658","0.48658" +"GO:0006887","exocytosis",22,12,12.66,1225,"0.69433","0.48660","0.48660" +"GO:0000902","cell morphogenesis",67,39,38.55,721,"0.50731","0.48808","0.48808" +"GO:0042133","neurotransmitter metabolic process",12,8,6.9,496,"0.36965","0.48823","0.48823" +"GO:0000079","regulation of cyclin-dependent protein s...",8,5,4.6,748,"0.53646","0.49112","0.49112" +"GO:0009410","response to xenobiotic stimulus",7,3,4.03,1739,"0.87821","0.49137","0.49137" +"GO:0030534","adult behavior",7,4,4.03,1155,"0.66133","0.49137","0.49137" +"GO:0051924","regulation of calcium ion transport",7,4,4.03,1156,"0.66133","0.49137","0.49137" +"GO:0048871","multicellular organismal homeostasis",19,9,10.93,1701,"0.87092","0.49148","0.49148" +"GO:0030258","lipid modification",17,11,9.78,461,"0.36652","0.49220","0.49220" +"GO:0006623","protein targeting to vacuole",3,1,1.73,1933,"0.92354","0.49232","0.49232" +"GO:0006895","Golgi to endosome transport",3,1,1.73,1934,"0.92354","0.49232","0.49232" +"GO:0072524","pyridine-containing compound metabolic p...",18,10,10.36,1190,"0.66210","0.49286","0.49286" +"GO:0000413","protein peptidyl-prolyl isomerization",6,4,3.45,685,"0.49329","0.49437","0.49437" +"GO:0018208","peptidyl-proline modification",6,4,3.45,686,"0.49329","0.49437","0.49437" +"GO:0046165","alcohol biosynthetic process",9,5,5.18,1213,"0.68020","0.49453","0.49453" +"GO:0007600","sensory perception",33,17,18.99,1623,"0.81129","0.49500","0.49500" +"GO:0000288","nuclear-transcribed mRNA catabolic proce...",6,4,3.45,687,"0.49329","0.49541","0.49541" +"GO:0072528","pyrimidine-containing compound biosynthe...",7,5,4.03,486,"0.36726","0.49684","0.49684" +"GO:0006937","regulation of muscle contraction",10,6,5.75,787,"0.57035","0.49714","0.49714" +"GO:1901565","organonitrogen compound catabolic proces...",98,56,56.39,802,"0.57489","0.49793","0.49793" +"GO:0015849","organic acid transport",25,16,14.38,437,"0.32847","0.49848","0.49848" +"GO:0046942","carboxylic acid transport",25,16,14.38,438,"0.32847","0.49848","0.49848" +"GO:0060416","response to growth hormone",3,1,1.73,1935,"0.92354","0.49895","0.49895" +"GO:0031175","neuron projection development",64,35,36.82,1261,"0.72506","0.49995","0.49995" +"GO:0061025","membrane fusion",7,4,4.03,1157,"0.66133","0.50152","0.50152" +"GO:1901019","regulation of calcium ion transmembrane ...",3,2,1.73,954,"0.61223","0.50413","0.50413" +"GO:0009411","response to UV",6,3,3.45,1320,"0.78526","0.50588","0.50588" +"GO:0008356","asymmetric cell division",7,4,4.03,1158,"0.66133","0.50719","0.50719" +"GO:0019991","septate junction assembly",3,1,1.73,1936,"0.92354","0.50784","0.50784" +"GO:0006513","protein monoubiquitination",10,6,5.75,788,"0.57035","0.50797","0.50797" +"GO:0030509","BMP signaling pathway",6,4,3.45,688,"0.49329","0.51008","0.51008" +"GO:0061418","regulation of transcription from RNA pol...",6,4,3.45,689,"0.49329","0.51008","0.51008" +"GO:0098722","asymmetric stem cell division",6,4,3.45,690,"0.49329","0.51008","0.51008" +"GO:0031577","spindle checkpoint",4,2,2.3,1445,"0.79143","0.51184","0.51184" +"GO:0033002","muscle cell proliferation",4,2,2.3,1446,"0.79143","0.51184","0.51184" +"GO:0043549","regulation of kinase activity",34,17,19.56,1658,"0.85731","0.51476","0.51476" +"GO:0006164","purine nucleotide biosynthetic process",40,29,23.01,62,"0.03644","0.01034","0.51497" +"GO:0072522","purine-containing compound biosynthetic ...",40,29,23.01,63,"0.03644","0.01034","0.51497" +"GO:0042445","hormone metabolic process",15,9,8.63,731,"0.53237","0.51729","0.51729" +"GO:0001508","action potential",4,2,2.3,1447,"0.79143","0.51786","0.51786" +"GO:0002027","regulation of heart rate",4,2,2.3,1448,"0.79143","0.51786","0.51786" +"GO:0006942","regulation of striated muscle contractio...",4,2,2.3,1449,"0.79143","0.51786","0.51786" +"GO:0042711","maternal behavior",4,2,2.3,1450,"0.79143","0.51786","0.51786" +"GO:0055117","regulation of cardiac muscle contraction",4,2,2.3,1451,"0.79143","0.51786","0.51786" +"GO:0060746","parental behavior",4,2,2.3,1452,"0.79143","0.51786","0.51786" +"GO:0071242","cellular response to ammonium ion",4,2,2.3,1453,"0.79143","0.51786","0.51786" +"GO:0071384","cellular response to corticosteroid stim...",4,2,2.3,1454,"0.79143","0.51786","0.51786" +"GO:0086065","cell communication involved in cardiac c...",4,2,2.3,1455,"0.79143","0.51786","0.51786" +"GO:0098739","import across plasma membrane",4,1,2.3,2395,"0.96758","0.51786","0.51786" +"GO:0019068","virion assembly",3,1,1.73,1937,"0.92354","0.51826","0.51826" +"GO:0033363","secretory granule organization",3,2,1.73,955,"0.61223","0.51826","0.51826" +"GO:0072520","seminiferous tubule development",3,2,1.73,956,"0.61223","0.51826","0.51826" +"GO:0031330","negative regulation of cellular cataboli...",9,6,5.18,521,"0.42147","0.52026","0.52026" +"GO:0110053","regulation of actin filament organizatio...",21,10,12.08,1731,"0.87339","0.52298","0.52298" +"GO:0009895","negative regulation of catabolic process",11,7,6.33,641,"0.46496","0.52349","0.52349" +"GO:0006066","alcohol metabolic process",18,10,10.36,1191,"0.66210","0.52386","0.52386" +"GO:0006379","mRNA cleavage",4,2,2.3,1456,"0.79143","0.52390","0.52390" +"GO:0002791","regulation of peptide secretion",10,7,5.75,432,"0.32221","0.52432","0.52432" +"GO:0008645","hexose transmembrane transport",6,3,3.45,1321,"0.78526","0.52486","0.52486" +"GO:0015749","monosaccharide transmembrane transport",6,3,3.45,1322,"0.78526","0.52486","0.52486" +"GO:0048666","neuron development",87,45,50.06,1782,"0.88928","0.52618","0.52618" +"GO:0021761","limbic system development",4,2,2.3,1457,"0.79143","0.52650","0.52650" +"GO:0006469","negative regulation of protein kinase ac...",13,7,7.48,1248,"0.71172","0.52742","0.52742" +"GO:0022603","regulation of anatomical structure morph...",40,20,23.01,1703,"0.87097","0.52748","0.52748" +"GO:0010389","regulation of G2/M transition of mitotic...",10,7,5.75,433,"0.32221","0.52843","0.52843" +"GO:0002443","leukocyte mediated immunity",10,7,5.75,434,"0.32221","0.52980","0.52980" +"GO:0006206","pyrimidine nucleobase metabolic process",5,4,2.88,413,"0.29553","0.52981","0.52981" +"GO:0006207","'de novo' pyrimidine nucleobase biosynth...",5,4,2.88,414,"0.29553","0.52981","0.52981" +"GO:0019856","pyrimidine nucleobase biosynthetic proce...",5,4,2.88,415,"0.29553","0.52981","0.52981" +"GO:0045292","mRNA cis splicing, via spliceosome",6,3,3.45,1323,"0.78526","0.53016","0.53016" +"GO:0001816","cytokine production",16,7,9.21,1893,"0.91426","0.53109","0.53109" +"GO:0001817","regulation of cytokine production",16,7,9.21,1894,"0.91426","0.53109","0.53109" +"GO:0006595","polyamine metabolic process",3,2,1.73,957,"0.61223","0.53173","0.53173" +"GO:0006596","polyamine biosynthetic process",3,2,1.73,958,"0.61223","0.53173","0.53173" +"GO:0009309","amine biosynthetic process",3,2,1.73,959,"0.61223","0.53173","0.53173" +"GO:0042401","cellular biogenic amine biosynthetic pro...",3,2,1.73,960,"0.61223","0.53173","0.53173" +"GO:0043547","positive regulation of GTPase activity",15,9,8.63,732,"0.53237","0.53238","0.53238" +"GO:0002252","immune effector process",22,15,12.66,319,"0.21408","0.53284","0.53284" +"GO:0034599","cellular response to oxidative stress",13,7,7.48,1249,"0.71172","0.53428","0.53428" +"GO:0007052","mitotic spindle organization",5,3,2.88,1089,"0.63928","0.53465","0.53465" +"GO:0090307","mitotic spindle assembly",5,3,2.88,1090,"0.63928","0.53465","0.53465" +"GO:0014706","striated muscle tissue development",28,17,16.11,618,"0.44435","0.53548","0.53548" +"GO:1901068","guanosine-containing compound metabolic ...",3,2,1.73,961,"0.61223","0.53549","0.53549" +"GO:0070585","protein localization to mitochondrion",20,12,11.51,719,"0.50589","0.53672","0.53672" +"GO:0072655","establishment of protein localization to...",20,12,11.51,720,"0.50589","0.53672","0.53672" +"GO:0007611","learning or memory",13,8,7.48,715,"0.50125","0.53850","0.53850" +"GO:0031338","regulation of vesicle fusion",4,2,2.3,1458,"0.79143","0.53863","0.53863" +"GO:0090630","activation of GTPase activity",4,2,2.3,1459,"0.79143","0.53863","0.53863" +"GO:0006546","glycine catabolic process",3,2,1.73,962,"0.61223","0.54075","0.54075" +"GO:0009071","serine family amino acid catabolic proce...",3,2,1.73,963,"0.61223","0.54075","0.54075" +"GO:0045070","positive regulation of viral genome repl...",5,2,2.88,1789,"0.89286","0.54146","0.54146" +"GO:1903902","positive regulation of viral life cycle",5,2,2.88,1790,"0.89286","0.54146","0.54146" +"GO:0016571","histone methylation",11,7,6.33,642,"0.46496","0.54221","0.54221" +"GO:1901797","negative regulation of signal transducti...",4,3,2.3,597,"0.43303","0.54385","0.54385" +"GO:2001021","negative regulation of response to DNA d...",4,3,2.3,598,"0.43303","0.54385","0.54385" +"GO:0043043","peptide biosynthetic process",178,137,102.41,1,"1.7e-08","2.7e-09","0.54485" +"GO:0033046","negative regulation of sister chromatid ...",4,2,2.3,1460,"0.79143","0.54560","0.54560" +"GO:0051985","negative regulation of chromosome segreg...",4,2,2.3,1461,"0.79143","0.54560","0.54560" +"GO:0001890","placenta development",6,4,3.45,691,"0.49329","0.54719","0.54719" +"GO:0001892","embryonic placenta development",6,4,3.45,692,"0.49329","0.54719","0.54719" +"GO:1902850","microtubule cytoskeleton organization in...",6,3,3.45,1324,"0.78526","0.54719","0.54719" +"GO:0030163","protein catabolic process",70,42,40.28,503,"0.38427","0.54810","0.54810" +"GO:0032271","regulation of protein polymerization",23,11,13.23,1737,"0.87611","0.54860","0.54860" +"GO:0006637","acyl-CoA metabolic process",9,7,5.18,223,"0.18789","0.23667","0.55051" +"GO:0035383","thioester metabolic process",9,7,5.18,224,"0.18789","0.23667","0.55051" +"GO:0001505","regulation of neurotransmitter levels",23,13,13.23,1061,"0.62522","0.55070","0.55070" +"GO:0050770","regulation of axonogenesis",8,4,4.6,1381,"0.78620","0.55214","0.55214" +"GO:1990138","neuron projection extension",8,4,4.6,1382,"0.78620","0.55214","0.55214" +"GO:0019216","regulation of lipid metabolic process",13,6,7.48,1662,"0.86685","0.55265","0.55265" +"GO:0021551","central nervous system morphogenesis",3,1,1.73,1938,"0.92354","0.55358","0.55358" +"GO:0006457","protein folding",39,21,22.44,1274,"0.73784","0.55399","0.55399" +"GO:0016441","posttranscriptional gene silencing",6,2,3.45,2258,"0.94666","0.55467","0.55467" +"GO:0035194","posttranscriptional gene silencing by RN...",6,2,3.45,2259,"0.94666","0.55467","0.55467" +"GO:0007186","G protein-coupled receptor signaling pat...",55,26,31.64,2328,"0.95406","0.55469","0.55469" +"GO:0000054","ribosomal subunit export from nucleus",3,2,1.73,964,"0.61223","0.55509","0.55509" +"GO:0000055","ribosomal large subunit export from nucl...",3,2,1.73,965,"0.61223","0.55509","0.55509" +"GO:0033750","ribosome localization",3,2,1.73,966,"0.61223","0.55509","0.55509" +"GO:0071428","rRNA-containing ribonucleoprotein comple...",3,2,1.73,967,"0.61223","0.55509","0.55509" +"GO:0051186","cofactor metabolic process",66,40,37.97,451,"0.35232","0.21927","0.55516" +"GO:0009066","aspartate family amino acid metabolic pr...",3,2,1.73,968,"0.61223","0.55585","0.55585" +"GO:0009067","aspartate family amino acid biosynthetic...",3,2,1.73,969,"0.61223","0.55585","0.55585" +"GO:0009219","pyrimidine deoxyribonucleotide metabolic...",3,1,1.73,1939,"0.92354","0.55585","0.55585" +"GO:0009394","2'-deoxyribonucleotide metabolic process",3,1,1.73,1940,"0.92354","0.55585","0.55585" +"GO:0019692","deoxyribose phosphate metabolic process",3,1,1.73,1941,"0.92354","0.55585","0.55585" +"GO:0016569","covalent chromatin modification",55,28,31.64,1730,"0.87301","0.55647","0.55647" +"GO:0001755","neural crest cell migration",4,2,2.3,1462,"0.79143","0.55694","0.55694" +"GO:0006140","regulation of nucleotide metabolic proce...",4,2,2.3,1463,"0.79143","0.55694","0.55694" +"GO:0030879","mammary gland development",4,2,2.3,1464,"0.79143","0.55694","0.55694" +"GO:1900542","regulation of purine nucleotide metaboli...",4,2,2.3,1465,"0.79143","0.55694","0.55694" +"GO:1903578","regulation of ATP metabolic process",4,2,2.3,1466,"0.79143","0.55694","0.55694" +"GO:1901657","glycosyl compound metabolic process",12,7,6.9,818,"0.59839","0.55706","0.55706" +"GO:0048762","mesenchymal cell differentiation",10,5,5.75,1398,"0.79006","0.55873","0.55873" +"GO:1901796","regulation of signal transduction by p53...",9,6,5.18,522,"0.42147","0.56072","0.56072" +"GO:1903708","positive regulation of hemopoiesis",4,2,2.3,1467,"0.79143","0.56219","0.56219" +"GO:2001236","regulation of extrinsic apoptotic signal...",7,3,4.03,1740,"0.87821","0.56278","0.56278" +"GO:0034762","regulation of transmembrane transport",21,11,12.08,1290,"0.75978","0.56384","0.56384" +"GO:0000460","maturation of 5.8S rRNA",5,3,2.88,1091,"0.63928","0.56390","0.56390" +"GO:0000466","maturation of 5.8S rRNA from tricistroni...",5,3,2.88,1092,"0.63928","0.56390","0.56390" +"GO:0009395","phospholipid catabolic process",7,4,4.03,1159,"0.66133","0.56443","0.56443" +"GO:0009262","deoxyribonucleotide metabolic process",4,2,2.3,1468,"0.79143","0.56656","0.56656" +"GO:0065004","protein-DNA complex assembly",20,10,11.51,1633,"0.81929","0.56803","0.56803" +"GO:0043462","regulation of ATPase activity",5,4,2.88,416,"0.29553","0.56880","0.56880" +"GO:0050905","neuromuscular process",4,2,2.3,1469,"0.79143","0.56919","0.56919" +"GO:0055024","regulation of cardiac muscle tissue deve...",4,2,2.3,1470,"0.79143","0.56919","0.56919" +"GO:1901615","organic hydroxy compound metabolic proce...",35,21,20.14,623,"0.45383","0.56936","0.56936" +"GO:0035458","cellular response to interferon-beta",7,4,4.03,1160,"0.66133","0.57023","0.57023" +"GO:0015740","C4-dicarboxylate transport",3,1,1.73,1942,"0.92354","0.57025","0.57025" +"GO:0009914","hormone transport",8,5,4.6,749,"0.53646","0.57071","0.57071" +"GO:0030072","peptide hormone secretion",8,5,4.6,750,"0.53646","0.57071","0.57071" +"GO:0046879","hormone secretion",8,5,4.6,751,"0.53646","0.57071","0.57071" +"GO:0006897","endocytosis",29,17,16.69,724,"0.53158","0.57091","0.57091" +"GO:0030705","cytoskeleton-dependent intracellular tra...",11,6,6.33,1232,"0.69682","0.57175","0.57175" +"GO:0016126","sterol biosynthetic process",6,3,3.45,1325,"0.78526","0.57183","0.57183" +"GO:0036314","response to sterol",6,2,3.45,2260,"0.94666","0.57291","0.57291" +"GO:0036315","cellular response to sterol",6,2,3.45,2261,"0.94666","0.57291","0.57291" +"GO:0007584","response to nutrient",9,5,5.18,1214,"0.68020","0.57343","0.57343" +"GO:0014033","neural crest cell differentiation",7,3,4.03,1741,"0.87821","0.57404","0.57404" +"GO:0008585","female gonad development",3,2,1.73,970,"0.61223","0.57481","0.57481" +"GO:0031063","regulation of histone deacetylation",3,2,1.73,971,"0.61223","0.57556","0.57556" +"GO:0048831","regulation of shoot system development",3,2,1.73,972,"0.61223","0.57556","0.57556" +"GO:0090311","regulation of protein deacetylation",3,2,1.73,973,"0.61223","0.57556","0.57556" +"GO:0033673","negative regulation of kinase activity",14,7,8.06,1598,"0.80106","0.57598","0.57598" +"GO:0006625","protein targeting to peroxisome",6,4,3.45,693,"0.49329","0.57613","0.57613" +"GO:0043574","peroxisomal transport",6,4,3.45,694,"0.49329","0.57613","0.57613" +"GO:0072662","protein localization to peroxisome",6,4,3.45,695,"0.49329","0.57613","0.57613" +"GO:0072663","establishment of protein localization to...",6,4,3.45,696,"0.49329","0.57613","0.57613" +"GO:0060537","muscle tissue development",30,17,17.26,1053,"0.61423","0.57649","0.57649" +"GO:0009642","response to light intensity",4,2,2.3,1471,"0.79143","0.57708","0.57708" +"GO:0051301","cell division",29,17,16.69,725,"0.53158","0.57795","0.57795" +"GO:1901264","carbohydrate derivative transport",8,5,4.6,752,"0.53646","0.57940","0.57940" +"GO:0061013","regulation of mRNA catabolic process",7,4,4.03,1161,"0.66133","0.57952","0.57952" +"GO:0009111","vitamin catabolic process",3,2,1.73,974,"0.61223","0.58012","0.58012" +"GO:0008154","actin polymerization or depolymerization",22,10,12.66,1889,"0.91352","0.58029","0.58029" +"GO:0000478","endonucleolytic cleavage involved in rRN...",3,2,1.73,975,"0.61223","0.58089","0.58089" +"GO:0000479","endonucleolytic cleavage of tricistronic...",3,2,1.73,976,"0.61223","0.58089","0.58089" +"GO:0016973","poly(A)+ mRNA export from nucleus",3,2,1.73,977,"0.61223","0.58089","0.58089" +"GO:0032786","positive regulation of DNA-templated tra...",3,2,1.73,978,"0.61223","0.58089","0.58089" +"GO:0070555","response to interleukin-1",3,2,1.73,979,"0.61223","0.58089","0.58089" +"GO:0071347","cellular response to interleukin-1",3,2,1.73,980,"0.61223","0.58089","0.58089" +"GO:0090502","RNA phosphodiester bond hydrolysis, endo...",3,2,1.73,981,"0.61223","0.58089","0.58089" +"GO:0035967","cellular response to topologically incor...",9,6,5.18,523,"0.42147","0.58134","0.58134" +"GO:0017145","stem cell division",7,4,4.03,1162,"0.66133","0.58317","0.58317" +"GO:0050806","positive regulation of synaptic transmis...",6,3,3.45,1326,"0.78526","0.58366","0.58366" +"GO:0048646","anatomical structure formation involved ...",75,38,43.15,1875,"0.90914","0.58404","0.58404" +"GO:0010959","regulation of metal ion transport",11,7,6.33,643,"0.46496","0.58474","0.58474" +"GO:0001818","negative regulation of cytokine producti...",5,2,2.88,1791,"0.89286","0.58647","0.58647" +"GO:0071695","anatomical structure maturation",8,5,4.6,753,"0.53646","0.58686","0.58686" +"GO:0007517","muscle organ development",31,15,17.84,1781,"0.88808","0.58774","0.58774" +"GO:0008037","cell recognition",8,5,4.6,754,"0.53646","0.58811","0.58811" +"GO:0009451","RNA modification",38,21,21.86,1199,"0.67595","0.58831","0.58831" +"GO:0034220","ion transmembrane transport",85,55,48.91,132,"0.10554","0.21975","0.58839" +"GO:0031102","neuron projection regeneration",3,2,1.73,982,"0.61223","0.58925","0.58925" +"GO:0048678","response to axon injury",3,2,1.73,983,"0.61223","0.58925","0.58925" +"GO:0070570","regulation of neuron projection regenera...",3,2,1.73,984,"0.61223","0.58925","0.58925" +"GO:0006298","mismatch repair",4,2,2.3,1472,"0.79143","0.58938","0.58938" +"GO:0099402","plant organ development",8,4,4.6,1383,"0.78620","0.59184","0.59184" +"GO:0003333","amino acid transmembrane transport",12,8,6.9,497,"0.36965","0.59205","0.59205" +"GO:0007155","cell adhesion",80,47,46.03,625,"0.45914","0.59271","0.59271" +"GO:0022610","biological adhesion",80,47,46.03,626,"0.45914","0.59271","0.59271" +"GO:0009064","glutamine family amino acid metabolic pr...",8,5,4.6,755,"0.53646","0.59308","0.59308" +"GO:0035456","response to interferon-beta",8,5,4.6,756,"0.53646","0.59433","0.59433" +"GO:0034614","cellular response to reactive oxygen spe...",6,4,3.45,697,"0.49329","0.59551","0.59551" +"GO:0070301","cellular response to hydrogen peroxide",6,4,3.45,698,"0.49329","0.59551","0.59551" +"GO:0072321","chaperone-mediated protein transport",6,4,3.45,699,"0.49329","0.59551","0.59551" +"GO:2001023","regulation of response to drug",6,3,3.45,1327,"0.78526","0.59551","0.59551" +"GO:0099003","vesicle-mediated transport in synapse",8,4,4.6,1384,"0.78620","0.59557","0.59557" +"GO:0051223","regulation of protein transport",24,14,13.81,769,"0.55481","0.59672","0.59672" +"GO:0047496","vesicle transport along microtubule",3,2,1.73,985,"0.61223","0.59687","0.59687" +"GO:0099518","vesicle cytoskeletal trafficking",3,2,1.73,986,"0.61223","0.59687","0.59687" +"GO:0010001","glial cell differentiation",8,4,4.6,1385,"0.78620","0.59806","0.59806" +"GO:0000187","activation of MAPK activity",3,2,1.73,987,"0.61223","0.59839","0.59839" +"GO:0032436","positive regulation of proteasomal ubiqu...",3,2,1.73,988,"0.61223","0.59839","0.59839" +"GO:0042476","odontogenesis",3,2,1.73,989,"0.61223","0.59839","0.59839" +"GO:1903312","negative regulation of mRNA metabolic pr...",3,2,1.73,990,"0.61223","0.59839","0.59839" +"GO:2000060","positive regulation of ubiquitin-depende...",3,2,1.73,991,"0.61223","0.59839","0.59839" +"GO:0030030","cell projection organization",93,50,53.51,1612,"0.80419","0.59940","0.59940" +"GO:0042303","molting cycle",5,3,2.88,1093,"0.63928","0.60023","0.60023" +"GO:0048645","animal organ formation",5,3,2.88,1094,"0.63928","0.60023","0.60023" +"GO:0010720","positive regulation of cell development",22,11,12.66,1637,"0.82523","0.60248","0.60248" +"GO:0016570","histone modification",52,25,29.92,2224,"0.93685","0.60266","0.60266" +"GO:0031644","regulation of neurological system proces...",3,1,1.73,1943,"0.92354","0.60296","0.60296" +"GO:0000266","mitochondrial fission",3,2,1.73,992,"0.61223","0.60448","0.60448" +"GO:0007018","microtubule-based movement",16,9,9.21,1128,"0.64339","0.60476","0.60476" +"GO:1902017","regulation of cilium assembly",9,4,5.18,1704,"0.87099","0.60510","0.60510" +"GO:0048659","smooth muscle cell proliferation",3,1,1.73,1944,"0.92354","0.60524","0.60524" +"GO:0048660","regulation of smooth muscle cell prolife...",3,1,1.73,1945,"0.92354","0.60524","0.60524" +"GO:0072594","establishment of protein localization to...",46,27,26.47,711,"0.49895","0.60583","0.60583" +"GO:0002793","positive regulation of peptide secretion",6,4,3.45,700,"0.49329","0.60628","0.60628" +"GO:0009165","nucleotide biosynthetic process",51,34,29.34,148,"0.11657","0.01763","0.60733" +"GO:1901293","nucleoside phosphate biosynthetic proces...",51,34,29.34,149,"0.11657","0.01763","0.60733" +"GO:0015711","organic anion transport",31,18,17.84,766,"0.55231","0.60822","0.60822" +"GO:0045454","cell redox homeostasis",22,11,12.66,1638,"0.82523","0.60869","0.60869" +"GO:0009074","aromatic amino acid family catabolic pro...",7,4,4.03,1163,"0.66133","0.60878","0.60878" +"GO:0030865","cortical cytoskeleton organization",8,5,4.6,757,"0.53646","0.60926","0.60926" +"GO:0030866","cortical actin cytoskeleton organization",8,5,4.6,758,"0.53646","0.60926","0.60926" +"GO:0006626","protein targeting to mitochondrion",19,11,10.93,807,"0.58378","0.60942","0.60942" +"GO:0002224","toll-like receptor signaling pathway",5,3,2.88,1095,"0.63928","0.61007","0.61007" +"GO:0010107","potassium ion import",3,1,1.73,1946,"0.92354","0.61058","0.61058" +"GO:0035725","sodium ion transmembrane transport",3,1,1.73,1947,"0.92354","0.61058","0.61058" +"GO:0045176","apical protein localization",3,1,1.73,1948,"0.92354","0.61058","0.61058" +"GO:0045759","negative regulation of action potential",3,1,1.73,1949,"0.92354","0.61058","0.61058" +"GO:0045824","negative regulation of innate immune res...",3,1,1.73,1950,"0.92354","0.61058","0.61058" +"GO:0050777","negative regulation of immune response",3,1,1.73,1951,"0.92354","0.61058","0.61058" +"GO:0050830","defense response to Gram-positive bacter...",3,2,1.73,993,"0.61223","0.61058","0.61058" +"GO:0060081","membrane hyperpolarization",3,1,1.73,1952,"0.92354","0.61058","0.61058" +"GO:0070252","actin-mediated cell contraction",3,1,1.73,1953,"0.92354","0.61058","0.61058" +"GO:0070305","response to cGMP",3,1,1.73,1954,"0.92354","0.61058","0.61058" +"GO:0071320","cellular response to cAMP",3,1,1.73,1955,"0.92354","0.61058","0.61058" +"GO:0071321","cellular response to cGMP",3,1,1.73,1956,"0.92354","0.61058","0.61058" +"GO:0071389","cellular response to mineralocorticoid s...",3,1,1.73,1957,"0.92354","0.61058","0.61058" +"GO:0071867","response to monoamine",3,1,1.73,1958,"0.92354","0.61058","0.61058" +"GO:0071868","cellular response to monoamine stimulus",3,1,1.73,1959,"0.92354","0.61058","0.61058" +"GO:0071869","response to catecholamine",3,1,1.73,1960,"0.92354","0.61058","0.61058" +"GO:0071870","cellular response to catecholamine stimu...",3,1,1.73,1961,"0.92354","0.61058","0.61058" +"GO:0072718","response to cisplatin",3,1,1.73,1962,"0.92354","0.61058","0.61058" +"GO:0086001","cardiac muscle cell action potential",3,1,1.73,1963,"0.92354","0.61058","0.61058" +"GO:0086003","cardiac muscle cell contraction",3,1,1.73,1964,"0.92354","0.61058","0.61058" +"GO:0086004","regulation of cardiac muscle cell contra...",3,1,1.73,1965,"0.92354","0.61058","0.61058" +"GO:0086010","membrane depolarization during action po...",3,1,1.73,1966,"0.92354","0.61058","0.61058" +"GO:0086012","membrane depolarization during cardiac m...",3,1,1.73,1967,"0.92354","0.61058","0.61058" +"GO:0086015","SA node cell action potential",3,1,1.73,1968,"0.92354","0.61058","0.61058" +"GO:0086018","SA node cell to atrial cardiac muscle ce...",3,1,1.73,1969,"0.92354","0.61058","0.61058" +"GO:0086019","cell-cell signaling involved in cardiac ...",3,1,1.73,1970,"0.92354","0.61058","0.61058" +"GO:0086046","membrane depolarization during SA node c...",3,1,1.73,1971,"0.92354","0.61058","0.61058" +"GO:0086070","SA node cell to atrial cardiac muscle ce...",3,1,1.73,1972,"0.92354","0.61058","0.61058" +"GO:0086091","regulation of heart rate by cardiac cond...",3,1,1.73,1973,"0.92354","0.61058","0.61058" +"GO:0097327","response to antineoplastic agent",3,1,1.73,1974,"0.92354","0.61058","0.61058" +"GO:0098659","inorganic cation import across plasma me...",3,1,1.73,1975,"0.92354","0.61058","0.61058" +"GO:0098719","sodium ion import across plasma membrane",3,1,1.73,1976,"0.92354","0.61058","0.61058" +"GO:0098900","regulation of action potential",3,1,1.73,1977,"0.92354","0.61058","0.61058" +"GO:0098901","regulation of cardiac muscle cell action...",3,1,1.73,1978,"0.92354","0.61058","0.61058" +"GO:0098909","regulation of cardiac muscle cell action...",3,1,1.73,1979,"0.92354","0.61058","0.61058" +"GO:0099587","inorganic ion import across plasma membr...",3,1,1.73,1980,"0.92354","0.61058","0.61058" +"GO:1902630","regulation of membrane hyperpolarization",3,1,1.73,1981,"0.92354","0.61058","0.61058" +"GO:1903115","regulation of actin filament-based movem...",3,1,1.73,1982,"0.92354","0.61058","0.61058" +"GO:1903350","response to dopamine",3,1,1.73,1983,"0.92354","0.61058","0.61058" +"GO:1903351","cellular response to dopamine",3,1,1.73,1984,"0.92354","0.61058","0.61058" +"GO:1904044","response to aldosterone",3,1,1.73,1985,"0.92354","0.61058","0.61058" +"GO:1904045","cellular response to aldosterone",3,1,1.73,1986,"0.92354","0.61058","0.61058" +"GO:1990573","potassium ion import across plasma membr...",3,1,1.73,1987,"0.92354","0.61058","0.61058" +"GO:0030177","positive regulation of Wnt signaling pat...",5,1,2.88,2575,"0.98626","0.61105","0.61105" +"GO:0048663","neuron fate commitment",5,2,2.88,1792,"0.89286","0.61105","0.61105" +"GO:0030308","negative regulation of cell growth",10,5,5.75,1399,"0.79006","0.61155","0.61155" +"GO:0033365","protein localization to organelle",64,37,36.82,734,"0.53535","0.61183","0.61183" +"GO:0044283","small molecule biosynthetic process",65,43,37.4,131,"0.09665","0.11264","0.61197" +"GO:0030837","negative regulation of actin filament po...",6,2,3.45,2262,"0.94666","0.61275","0.61275" +"GO:0031167","rRNA methylation",5,3,2.88,1096,"0.63928","0.61400","0.61400" +"GO:0010906","regulation of glucose metabolic process",5,3,2.88,1097,"0.63928","0.61400","0.61400" +"GO:0032350","regulation of hormone metabolic process",4,2,2.3,1473,"0.79143","0.61489","0.61489" +"GO:0060563","neuroepithelial cell differentiation",3,2,1.73,994,"0.61223","0.61514","0.61514" +"GO:0006417","regulation of translation",25,12,14.38,1770,"0.87900","0.61657","0.61657" +"GO:0035108","limb morphogenesis",5,3,2.88,1098,"0.63928","0.61794","0.61794" +"GO:0060173","limb development",5,3,2.88,1099,"0.63928","0.61794","0.61794" +"GO:0002089","lens morphogenesis in camera-type eye",3,1,1.73,1988,"0.92354","0.61819","0.61819" +"GO:0021872","forebrain generation of neurons",3,1,1.73,1989,"0.92354","0.61819","0.61819" +"GO:0009896","positive regulation of catabolic process",16,9,9.21,1129,"0.64339","0.61975","0.61975" +"GO:0043648","dicarboxylic acid metabolic process",8,5,4.6,759,"0.53646","0.62047","0.62047" +"GO:0035148","tube formation",15,7,8.63,1677,"0.86739","0.62077","0.62077" +"GO:0043393","regulation of protein binding",15,10,8.63,442,"0.32909","0.62077","0.62077" +"GO:0008033","tRNA processing",35,17,20.14,1865,"0.89415","0.62165","0.62165" +"GO:0045859","regulation of protein kinase activity",31,16,17.84,1611,"0.80389","0.62203","0.62203" +"GO:0008610","lipid biosynthetic process",67,35,38.55,1652,"0.84450","0.62212","0.62212" +"GO:0021543","pallium development",11,6,6.33,1233,"0.69682","0.62257","0.62257" +"GO:0099175","regulation of postsynapse organization",3,1,1.73,1990,"0.92354","0.62428","0.62428" +"GO:0042737","drug catabolic process",6,4,3.45,701,"0.49329","0.62460","0.62460" +"GO:0000245","spliceosomal complex assembly",6,2,3.45,2263,"0.94666","0.62460","0.62460" +"GO:0002697","regulation of immune effector process",5,3,2.88,1100,"0.63928","0.62482","0.62482" +"GO:0031348","negative regulation of defense response",5,2,2.88,1793,"0.89286","0.62482","0.62482" +"GO:2001233","regulation of apoptotic signaling pathwa...",22,11,12.66,1639,"0.82523","0.62599","0.62599" +"GO:0045010","actin nucleation",12,6,6.9,1584,"0.79525","0.62713","0.62713" +"GO:0040014","regulation of multicellular organism gro...",6,4,3.45,702,"0.49329","0.62783","0.62783" +"GO:0044764","multi-organism cellular process",3,2,1.73,995,"0.61223","0.62961","0.62961" +"GO:0061178","regulation of insulin secretion involved...",3,2,1.73,996,"0.61223","0.62961","0.62961" +"GO:0001763","morphogenesis of a branching structure",9,6,5.18,524,"0.42147","0.63062","0.63062" +"GO:0018209","peptidyl-serine modification",9,6,5.18,525,"0.42147","0.63106","0.63106" +"GO:0042440","pigment metabolic process",10,5,5.75,1400,"0.79006","0.63242","0.63242" +"GO:0060135","maternal process involved in female preg...",4,2,2.3,1474,"0.79143","0.63246","0.63246" +"GO:0019751","polyol metabolic process",5,3,2.88,1101,"0.63928","0.63366","0.63366" +"GO:1902253","regulation of intrinsic apoptotic signal...",3,2,1.73,997,"0.61223","0.63417","0.63417" +"GO:1902254","negative regulation of intrinsic apoptot...",3,2,1.73,998,"0.61223","0.63417","0.63417" +"GO:0007007","inner mitochondrial membrane organizatio...",7,4,4.03,1164,"0.66133","0.63437","0.63437" +"GO:0051338","regulation of transferase activity",39,18,22.44,2247,"0.94567","0.63635","0.63635" +"GO:0007272","ensheathment of neurons",3,2,1.73,999,"0.61223","0.63797","0.63797" +"GO:0008366","axon ensheathment",3,2,1.73,1000,"0.61223","0.63797","0.63797" +"GO:0042552","myelination",3,2,1.73,1001,"0.61223","0.63797","0.63797" +"GO:0032273","positive regulation of protein polymeriz...",18,9,10.36,1626,"0.81323","0.63807","0.63807" +"GO:1902905","positive regulation of supramolecular fi...",18,9,10.36,1627,"0.81323","0.63807","0.63807" +"GO:0007215","glutamate receptor signaling pathway",5,1,2.88,2576,"0.98626","0.63856","0.63856" +"GO:0007006","mitochondrial membrane organization",11,6,6.33,1234,"0.69682","0.63901","0.63901" +"GO:0006289","nucleotide-excision repair",7,4,4.03,1165,"0.66133","0.63902","0.63902" +"GO:1902749","regulation of cell cycle G2/M phase tran...",11,7,6.33,644,"0.46496","0.63927","0.63927" +"GO:0042775","mitochondrial ATP synthesis coupled elec...",11,7,6.33,645,"0.46496","0.63993","0.63993" +"GO:0097191","extrinsic apoptotic signaling pathway",8,3,4.6,2205,"0.93342","0.64035","0.64035" +"GO:0061387","regulation of extent of cell growth",6,3,3.45,1328,"0.78526","0.64073","0.64073" +"GO:0018196","peptidyl-asparagine modification",3,1,1.73,1991,"0.92354","0.64252","0.64252" +"GO:0018279","protein N-linked glycosylation via aspar...",3,1,1.73,1992,"0.92354","0.64252","0.64252" +"GO:0051205","protein insertion into membrane",3,2,1.73,1002,"0.61223","0.64252","0.64252" +"GO:0043902","positive regulation of multi-organism pr...",14,7,8.06,1599,"0.80106","0.64280","0.64280" +"GO:0015980","energy derivation by oxidation of organi...",37,27,21.29,64,"0.03824","0.02990","0.64395" +"GO:0003279","cardiac septum development",4,2,2.3,1475,"0.79143","0.64474","0.64474" +"GO:0045596","negative regulation of cell differentiat...",37,18,21.29,1867,"0.89713","0.64567","0.64567" +"GO:0006606","protein import into nucleus",11,7,6.33,646,"0.46496","0.64575","0.64575" +"GO:0090559","regulation of membrane permeability",4,2,2.3,1476,"0.79143","0.64650","0.64650" +"GO:0007419","ventral cord development",4,2,2.3,1477,"0.79143","0.64737","0.64737" +"GO:0050795","regulation of behavior",4,2,2.3,1478,"0.79143","0.64737","0.64737" +"GO:0006753","nucleoside phosphate metabolic process",84,53,48.33,205,"0.17517","0.08896","0.64811" +"GO:0070076","histone lysine demethylation",5,3,2.88,1102,"0.63928","0.64836","0.64836" +"GO:0032456","endocytic recycling",8,4,4.6,1386,"0.78620","0.64903","0.64903" +"GO:0034248","regulation of cellular amide metabolic p...",27,12,15.53,2234,"0.94197","0.64917","0.64917" +"GO:0090066","regulation of anatomical structure size",35,19,20.14,1258,"0.71516","0.64924","0.64924" +"GO:0001578","microtubule bundle formation",4,2,2.3,1479,"0.79143","0.65087","0.65087" +"GO:1905477","positive regulation of protein localizat...",4,2,2.3,1480,"0.79143","0.65087","0.65087" +"GO:0120036","plasma membrane bounded cell projection ...",91,49,52.36,1593,"0.79769","0.65206","0.65206" +"GO:0002699","positive regulation of immune effector p...",4,2,2.3,1481,"0.79143","0.65350","0.65350" +"GO:0055086","nucleobase-containing small molecule met...",98,62,56.39,186,"0.14342","0.07982","0.65361" +"GO:0042176","regulation of protein catabolic process",19,11,10.93,808,"0.58378","0.65424","0.65424" +"GO:0008152","metabolic process",1878,1103,1080.53,58,"0.03493","0.04082","0.65446" +"GO:1903530","regulation of secretion by cell",13,8,7.48,716,"0.50125","0.65590","0.65590" +"GO:0048259","regulation of receptor-mediated endocyto...",4,3,2.3,599,"0.43303","0.65612","0.65612" +"GO:0140253","cell-cell fusion",4,3,2.3,600,"0.43303","0.65612","0.65612" +"GO:1901987","regulation of cell cycle phase transitio...",20,13,11.51,447,"0.33002","0.65663","0.65663" +"GO:1901654","response to ketone",12,5,6.9,1919,"0.91954","0.65753","0.65753" +"GO:0051262","protein tetramerization",8,3,4.6,2206,"0.93342","0.65769","0.65769" +"GO:0051568","histone H3-K4 methylation",4,3,2.3,601,"0.43303","0.65787","0.65787" +"GO:0009583","detection of light stimulus",6,2,3.45,2264,"0.94666","0.65789","0.65789" +"GO:0090305","nucleic acid phosphodiester bond hydroly...",14,7,8.06,1600,"0.80106","0.65803","0.65803" +"GO:0007269","neurotransmitter secretion",9,5,5.18,1215,"0.68020","0.65868","0.65868" +"GO:0090316","positive regulation of intracellular pro...",9,4,5.18,1705,"0.87099","0.65868","0.65868" +"GO:0099643","signal release from synapse",9,5,5.18,1216,"0.68020","0.65868","0.65868" +"GO:0010799","regulation of peptidyl-threonine phospho...",4,3,2.3,602,"0.43303","0.65874","0.65874" +"GO:0010800","positive regulation of peptidyl-threonin...",4,3,2.3,603,"0.43303","0.65874","0.65874" +"GO:0016226","iron-sulfur cluster assembly",4,1,2.3,2396,"0.96758","0.65874","0.65874" +"GO:0018107","peptidyl-threonine phosphorylation",4,3,2.3,604,"0.43303","0.65874","0.65874" +"GO:0031163","metallo-sulfur cluster assembly",4,1,2.3,2397,"0.96758","0.65874","0.65874" +"GO:0040019","positive regulation of embryonic develop...",4,3,2.3,605,"0.43303","0.65874","0.65874" +"GO:0006743","ubiquinone metabolic process",6,3,3.45,1329,"0.78526","0.65896","0.65896" +"GO:0006744","ubiquinone biosynthetic process",6,3,3.45,1330,"0.78526","0.65896","0.65896" +"GO:0042181","ketone biosynthetic process",6,3,3.45,1331,"0.78526","0.65896","0.65896" +"GO:1901663","quinone biosynthetic process",6,3,3.45,1332,"0.78526","0.65896","0.65896" +"GO:0040034","regulation of development, heterochronic",5,2,2.88,1794,"0.89286","0.65912","0.65912" +"GO:0048709","oligodendrocyte differentiation",5,2,2.88,1795,"0.89286","0.65912","0.65912" +"GO:0042180","cellular ketone metabolic process",13,7,7.48,1250,"0.71172","0.65990","0.65990" +"GO:0006342","chromatin silencing",12,7,6.9,819,"0.59839","0.66056","0.66056" +"GO:0007602","phototransduction",4,1,2.3,2398,"0.96758","0.66136","0.66136" +"GO:0010842","retina layer formation",4,2,2.3,1482,"0.79143","0.66136","0.66136" +"GO:0034308","primary alcohol metabolic process",4,2,2.3,1483,"0.79143","0.66136","0.66136" +"GO:0045494","photoreceptor cell maintenance",4,2,2.3,1484,"0.79143","0.66136","0.66136" +"GO:0051348","negative regulation of transferase activ...",16,7,9.21,1895,"0.91426","0.66191","0.66191" +"GO:0050848","regulation of calcium-mediated signaling",4,3,2.3,606,"0.43303","0.66397","0.66397" +"GO:0006836","neurotransmitter transport",20,11,11.51,1202,"0.67897","0.66446","0.66446" +"GO:0035418","protein localization to synapse",4,2,2.3,1485,"0.79143","0.66658","0.66658" +"GO:0051928","positive regulation of calcium ion trans...",4,1,2.3,2399,"0.96758","0.66658","0.66658" +"GO:0072347","response to anesthetic",4,2,2.3,1486,"0.79143","0.66658","0.66658" +"GO:0032387","negative regulation of intracellular tra...",4,2,2.3,1487,"0.79143","0.66746","0.66746" +"GO:1903573","negative regulation of response to endop...",4,2,2.3,1488,"0.79143","0.66746","0.66746" +"GO:1905897","regulation of response to endoplasmic re...",4,2,2.3,1489,"0.79143","0.66746","0.66746" +"GO:1990823","response to leukemia inhibitory factor",5,3,2.88,1103,"0.63928","0.66789","0.66789" +"GO:1990830","cellular response to leukemia inhibitory...",5,3,2.88,1104,"0.63928","0.66789","0.66789" +"GO:0044282","small molecule catabolic process",29,17,16.69,726,"0.53158","0.66853","0.66853" +"GO:0051093","negative regulation of developmental pro...",46,21,26.47,2368,"0.96293","0.66873","0.66873" +"GO:0043954","cellular component maintenance",4,2,2.3,1490,"0.79143","0.66920","0.66920" +"GO:0008544","epidermis development",8,5,4.6,760,"0.53646","0.67003","0.67003" +"GO:0009566","fertilization",8,2,4.6,2622,"0.98759","0.67003","0.67003" +"GO:0010812","negative regulation of cell-substrate ad...",3,2,1.73,1003,"0.61223","0.67125","0.67125" +"GO:1900024","regulation of substrate adhesion-depende...",3,2,1.73,1004,"0.61223","0.67125","0.67125" +"GO:0001764","neuron migration",4,1,2.3,2400,"0.96758","0.67441","0.67441" +"GO:0051148","negative regulation of muscle cell diffe...",4,2,2.3,1491,"0.79143","0.67441","0.67441" +"GO:0043934","sporulation",6,3,3.45,1333,"0.78526","0.67496","0.67496" +"GO:0048229","gametophyte development",6,2,3.45,2265,"0.94666","0.67496","0.67496" +"GO:0016246","RNA interference",4,2,2.3,1492,"0.79143","0.67528","0.67528" +"GO:0006839","mitochondrial transport",30,16,17.26,1278,"0.74481","0.67540","0.67540" +"GO:0072359","circulatory system development",62,34,35.67,1257,"0.71510","0.67607","0.67607" +"GO:0030728","ovulation",3,2,1.73,1005,"0.61223","0.67802","0.67802" +"GO:0042182","ketone catabolic process",3,2,1.73,1006,"0.61223","0.67802","0.67802" +"GO:0042373","vitamin K metabolic process",3,2,1.73,1007,"0.61223","0.67802","0.67802" +"GO:0018108","peptidyl-tyrosine phosphorylation",4,1,2.3,2401,"0.96758","0.67875","0.67875" +"GO:0018212","peptidyl-tyrosine modification",4,1,2.3,2402,"0.96758","0.67875","0.67875" +"GO:0016458","gene silencing",19,10,10.93,1286,"0.74913","0.67878","0.67878" +"GO:0043603","cellular amide metabolic process",211,153,121.4,5,"2.1e-06","2.5e-07","0.67905" +"GO:0030182","neuron differentiation",97,50,55.81,1872,"0.90605","0.67911","0.67911" +"GO:0018205","peptidyl-lysine modification",32,18,18.41,1064,"0.63124","0.68124","0.68124" +"GO:0006368","transcription elongation from RNA polyme...",10,7,5.75,435,"0.32221","0.68215","0.68215" +"GO:0036503","ERAD pathway",10,6,5.75,789,"0.57035","0.68215","0.68215" +"GO:0032496","response to lipopolysaccharide",8,5,4.6,761,"0.53646","0.68230","0.68230" +"GO:0007030","Golgi organization",13,6,7.48,1663,"0.86685","0.68235","0.68235" +"GO:0007029","endoplasmic reticulum organization",5,2,2.88,1796,"0.89286","0.68244","0.68244" +"GO:0015893","drug transport",10,4,5.75,2190,"0.92495","0.68352","0.68352" +"GO:0017004","cytochrome complex assembly",4,1,2.3,2403,"0.96758","0.68481","0.68481" +"GO:0034250","positive regulation of cellular amide me...",4,2,2.3,1493,"0.79143","0.68481","0.68481" +"GO:0045727","positive regulation of translation",4,2,2.3,1494,"0.79143","0.68481","0.68481" +"GO:0034754","cellular hormone metabolic process",7,4,4.03,1166,"0.66133","0.68500","0.68500" +"GO:0000394","RNA splicing, via endonucleolytic cleava...",3,0,1.73,2896,"1.00000","0.68551","0.68551" +"GO:0006388","tRNA splicing, via endonucleolytic cleav...",3,0,1.73,2897,"1.00000","0.68551","0.68551" +"GO:0006515","protein quality control for misfolded or...",3,2,1.73,1008,"0.61223","0.68626","0.68626" +"GO:0007204","positive regulation of cytosolic calcium...",4,3,2.3,607,"0.43303","0.68653","0.68653" +"GO:0051480","regulation of cytosolic calcium ion conc...",4,3,2.3,608,"0.43303","0.68653","0.68653" +"GO:0035303","regulation of dephosphorylation",6,3,3.45,1334,"0.78526","0.68663","0.68663" +"GO:0070265","necrotic cell death",3,2,1.73,1009,"0.61223","0.68701","0.68701" +"GO:0071599","otic vesicle development",3,2,1.73,1010,"0.61223","0.68701","0.68701" +"GO:0071600","otic vesicle morphogenesis",3,2,1.73,1011,"0.61223","0.68701","0.68701" +"GO:0097300","programmed necrotic cell death",3,2,1.73,1012,"0.61223","0.68701","0.68701" +"GO:0032956","regulation of actin cytoskeleton organiz...",24,11,13.81,1902,"0.91427","0.68705","0.68705" +"GO:0060026","convergent extension",3,2,1.73,1013,"0.61223","0.68850","0.68850" +"GO:0061041","regulation of wound healing",3,1,1.73,1993,"0.92354","0.68850","0.68850" +"GO:0070509","calcium ion import",3,1,1.73,1994,"0.92354","0.68850","0.68850" +"GO:0042594","response to starvation",15,7,8.63,1678,"0.86739","0.68852","0.68852" +"GO:0006575","cellular modified amino acid metabolic p...",12,7,6.9,820,"0.59839","0.68916","0.68916" +"GO:0042670","retinal cone cell differentiation",4,1,2.3,2404,"0.96758","0.68998","0.68998" +"GO:0046549","retinal cone cell development",4,1,2.3,2405,"0.96758","0.68998","0.68998" +"GO:0048863","stem cell differentiation",17,5,9.78,2729,"0.99537","0.69027","0.69027" +"GO:0010771","negative regulation of cell morphogenesi...",7,4,4.03,1167,"0.66133","0.69071","0.69071" +"GO:0006730","one-carbon metabolic process",4,2,2.3,1495,"0.79143","0.69085","0.69085" +"GO:0045944","positive regulation of transcription by ...",43,24,24.74,1137,"0.65234","0.69091","0.69091" +"GO:0044110","growth involved in symbiotic interaction",4,3,2.3,609,"0.43303","0.69171","0.69171" +"GO:0044116","growth of symbiont involved in interacti...",4,3,2.3,610,"0.43303","0.69171","0.69171" +"GO:0044117","growth of symbiont in host",4,3,2.3,611,"0.43303","0.69171","0.69171" +"GO:0044126","regulation of growth of symbiont in host",4,3,2.3,612,"0.43303","0.69171","0.69171" +"GO:0044144","modulation of growth of symbiont involve...",4,3,2.3,613,"0.43303","0.69171","0.69171" +"GO:0042542","response to hydrogen peroxide",8,5,4.6,762,"0.53646","0.69330","0.69330" +"GO:0072332","intrinsic apoptotic signaling pathway by...",4,2,2.3,1496,"0.79143","0.69429","0.69429" +"GO:0006998","nuclear envelope organization",3,2,1.73,1014,"0.61223","0.69447","0.69447" +"GO:0009908","flower development",3,1,1.73,1995,"0.92354","0.69447","0.69447" +"GO:0044314","protein K27-linked ubiquitination",3,1,1.73,1996,"0.92354","0.69447","0.69447" +"GO:0085020","protein K6-linked ubiquitination",3,1,1.73,1997,"0.92354","0.69447","0.69447" +"GO:0009117","nucleotide metabolic process",83,52,47.76,312,"0.19972","0.11685","0.69471" +"GO:0048367","shoot system development",6,2,3.45,2266,"0.94666","0.69507","0.69507" +"GO:0032940","secretion by cell",43,22,24.74,1648,"0.84319","0.69566","0.69566" +"GO:2000243","positive regulation of reproductive proc...",6,3,3.45,1335,"0.78526","0.69613","0.69613" +"GO:0070201","regulation of establishment of protein l...",25,14,14.38,1124,"0.64324","0.69666","0.69666" +"GO:0090087","regulation of peptide transport",25,14,14.38,1125,"0.64324","0.69666","0.69666" +"GO:0034219","carbohydrate transmembrane transport",7,4,4.03,1168,"0.66133","0.69786","0.69786" +"GO:0033013","tetrapyrrole metabolic process",10,5,5.75,1401,"0.79006","0.69852","0.69852" +"GO:0001941","postsynaptic membrane organization",4,1,2.3,2406,"0.96758","0.69859","0.69859" +"GO:0060996","dendritic spine development",4,1,2.3,2407,"0.96758","0.69859","0.69859" +"GO:0060998","regulation of dendritic spine developmen...",4,1,2.3,2408,"0.96758","0.69859","0.69859" +"GO:0071709","membrane assembly",4,1,2.3,2409,"0.96758","0.69859","0.69859" +"GO:0099172","presynapse organization",4,2,2.3,1497,"0.79143","0.69859","0.69859" +"GO:0001667","ameboidal-type cell migration",11,4,6.33,2336,"0.95763","0.69870","0.69870" +"GO:0001666","response to hypoxia",13,6,7.48,1664,"0.86685","0.70066","0.70066" +"GO:0036293","response to decreased oxygen levels",13,6,7.48,1665,"0.86685","0.70066","0.70066" +"GO:0070482","response to oxygen levels",13,6,7.48,1666,"0.86685","0.70066","0.70066" +"GO:0000041","transition metal ion transport",9,4,5.18,1706,"0.87099","0.70114","0.70114" +"GO:0007612","learning",10,6,5.75,790,"0.57035","0.70124","0.70124" +"GO:0009953","dorsal/ventral pattern formation",7,3,4.03,1742,"0.87821","0.70224","0.70224" +"GO:0098657","import into cell",34,18,19.56,1293,"0.76526","0.70386","0.70386" +"GO:0000291","nuclear-transcribed mRNA catabolic proce...",3,2,1.73,1015,"0.61223","0.70413","0.70413" +"GO:0043928","exonucleolytic nuclear-transcribed mRNA ...",3,2,1.73,1016,"0.61223","0.70413","0.70413" +"GO:0071103","DNA conformation change",23,12,13.23,1296,"0.76973","0.70416","0.70416" +"GO:0009605","response to external stimulus",114,65,65.59,810,"0.58524","0.22196","0.70512" +"GO:0051222","positive regulation of protein transport",15,8,8.63,1265,"0.72526","0.70519","0.70519" +"GO:1903829","positive regulation of cellular protein ...",15,7,8.63,1679,"0.86739","0.70519","0.70519" +"GO:1904951","positive regulation of establishment of ...",15,8,8.63,1266,"0.72526","0.70519","0.70519" +"GO:0010976","positive regulation of neuron projection...",10,5,5.75,1402,"0.79006","0.70665","0.70665" +"GO:0035690","cellular response to drug",12,7,6.9,821,"0.59839","0.70702","0.70702" +"GO:0036003","positive regulation of transcription fro...",3,1,1.73,1998,"0.92354","0.70709","0.70709" +"GO:0071824","protein-DNA complex subunit organization",23,12,13.23,1297,"0.76973","0.70827","0.70827" +"GO:1902903","regulation of supramolecular fiber organ...",25,12,14.38,1771,"0.87900","0.70955","0.70955" +"GO:0050679","positive regulation of epithelial cell p...",4,2,2.3,1498,"0.79143","0.70971","0.70971" +"GO:0022604","regulation of cell morphogenesis",18,8,10.36,1884,"0.91335","0.71059","0.71059" +"GO:0046475","glycerophospholipid catabolic process",4,2,2.3,1499,"0.79143","0.71226","0.71226" +"GO:0030100","regulation of endocytosis",13,7,7.48,1251,"0.71172","0.71229","0.71229" +"GO:0072089","stem cell proliferation",8,3,4.6,2207,"0.93342","0.71268","0.71268" +"GO:0006260","DNA replication",47,31,27.04,192,"0.15155","0.22513","0.71326" +"GO:0043624","cellular protein complex disassembly",18,11,10.36,653,"0.47759","0.71361","0.71361" +"GO:0051962","positive regulation of nervous system de...",23,11,13.23,1738,"0.87611","0.71442","0.71442" +"GO:0006399","tRNA metabolic process",58,33,33.37,812,"0.59472","0.71454","0.71454" +"GO:0007346","regulation of mitotic cell cycle",30,18,17.26,650,"0.46837","0.71559","0.71559" +"GO:0002376","immune system process",87,47,50.06,1307,"0.78395","0.71869","0.71869" +"GO:0003281","ventricular septum development",3,2,1.73,1017,"0.61223","0.71960","0.71960" +"GO:0021510","spinal cord development",3,0,1.73,2898,"1.00000","0.71960","0.71960" +"GO:0050821","protein stabilization",9,5,5.18,1217,"0.68020","0.72074","0.72074" +"GO:0035329","hippo signaling",5,2,2.88,1797,"0.89286","0.72075","0.72075" +"GO:0048489","synaptic vesicle transport",5,3,2.88,1105,"0.63928","0.72169","0.72169" +"GO:0097480","establishment of synaptic vesicle locali...",5,3,2.88,1106,"0.63928","0.72169","0.72169" +"GO:0032103","positive regulation of response to exter...",5,2,2.88,1798,"0.89286","0.72169","0.72169" +"GO:0031056","regulation of histone modification",11,4,6.33,2337,"0.95763","0.72198","0.72198" +"GO:0045039","protein import into mitochondrial inner ...",5,3,2.88,1107,"0.63928","0.72264","0.72264" +"GO:0048468","cell development",148,77,85.15,2200,"0.92999","0.72350","0.72350" +"GO:0006518","peptide metabolic process",190,142,109.32,4,"2.5e-07","3.6e-08","0.72363" +"GO:0042770","signal transduction in response to DNA d...",6,3,3.45,1336,"0.78526","0.72534","0.72534" +"GO:0031099","regeneration",13,6,7.48,1667,"0.86685","0.72593","0.72593" +"GO:0051050","positive regulation of transport",42,20,24.17,2199,"0.92814","0.72707","0.72707" +"GO:0007368","determination of left/right symmetry",10,6,5.75,791,"0.57035","0.72812","0.72812" +"GO:0009799","specification of symmetry",10,6,5.75,792,"0.57035","0.72812","0.72812" +"GO:0009855","determination of bilateral symmetry",10,6,5.75,793,"0.57035","0.72812","0.72812" +"GO:0046916","cellular transition metal ion homeostasi...",8,4,4.6,1387,"0.78620","0.72943","0.72943" +"GO:0007015","actin filament organization",35,15,20.14,2487,"0.97317","0.73007","0.73007" +"GO:0032594","protein transport within lipid bilayer",3,2,1.73,1018,"0.61223","0.73055","0.73055" +"GO:0046173","polyol biosynthetic process",4,2,2.3,1500,"0.79143","0.73170","0.73170" +"GO:0031297","replication fork processing",3,1,1.73,1999,"0.92354","0.73201","0.73201" +"GO:0045005","DNA-dependent DNA replication maintenanc...",3,1,1.73,2000,"0.92354","0.73201","0.73201" +"GO:0044843","cell cycle G1/S phase transition",13,8,7.48,717,"0.50125","0.73212","0.73212" +"GO:0003007","heart morphogenesis",17,10,9.78,773,"0.55960","0.73257","0.73257" +"GO:0032418","lysosome localization",5,2,2.88,1799,"0.89286","0.73299","0.73299" +"GO:0009653","anatomical structure morphogenesis",173,92,99.54,1868,"0.89887","0.73318","0.73318" +"GO:0072657","protein localization to membrane",38,19,21.86,1659,"0.86658","0.73331","0.73331" +"GO:0030510","regulation of BMP signaling pathway",4,3,2.3,614,"0.43303","0.73337","0.73337" +"GO:0040018","positive regulation of multicellular org...",4,2,2.3,1501,"0.79143","0.73337","0.73337" +"GO:0048024","regulation of mRNA splicing, via spliceo...",6,2,3.45,2267,"0.94666","0.73358","0.73358" +"GO:0019098","reproductive behavior",8,3,4.6,2208,"0.93342","0.73418","0.73418" +"GO:0043087","regulation of GTPase activity",25,13,14.38,1301,"0.77905","0.73499","0.73499" +"GO:0016239","positive regulation of macroautophagy",3,2,1.73,1019,"0.61223","0.73563","0.73563" +"GO:0007040","lysosome organization",5,3,2.88,1108,"0.63928","0.73766","0.73766" +"GO:0019221","cytokine-mediated signaling pathway",5,2,2.88,1800,"0.89286","0.73766","0.73766" +"GO:0032570","response to progesterone",5,3,2.88,1109,"0.63928","0.73766","0.73766" +"GO:0080171","lytic vacuole organization",5,3,2.88,1110,"0.63928","0.73766","0.73766" +"GO:0006835","dicarboxylic acid transport",8,3,4.6,2209,"0.93342","0.73773","0.73773" +"GO:0009063","cellular amino acid catabolic process",12,6,6.9,1585,"0.79525","0.73779","0.73779" +"GO:1901606","alpha-amino acid catabolic process",12,6,6.9,1586,"0.79525","0.73779","0.73779" +"GO:0002115","store-operated calcium entry",3,1,1.73,2001,"0.92354","0.73780","0.73780" +"GO:0035584","calcium-mediated signaling using intrace...",3,1,1.73,2002,"0.92354","0.73780","0.73780" +"GO:0048747","muscle fiber development",3,1,1.73,2003,"0.92354","0.73780","0.73780" +"GO:2001256","regulation of store-operated calcium ent...",3,1,1.73,2004,"0.92354","0.73780","0.73780" +"GO:0043279","response to alkaloid",6,3,3.45,1337,"0.78526","0.73870","0.73870" +"GO:0018200","peptidyl-glutamic acid modification",3,2,1.73,1020,"0.61223","0.73925","0.73925" +"GO:0045667","regulation of osteoblast differentiation",3,1,1.73,2005,"0.92354","0.73997","0.73997" +"GO:0045668","negative regulation of osteoblast differ...",3,1,1.73,2006,"0.92354","0.73997","0.73997" +"GO:0050773","regulation of dendrite development",9,4,5.18,1707,"0.87099","0.74048","0.74048" +"GO:0007338","single fertilization",6,2,3.45,2268,"0.94666","0.74074","0.74074" +"GO:0060249","anatomical structure homeostasis",27,12,15.53,2235,"0.94197","0.74260","0.74260" +"GO:0061061","muscle structure development",52,29,29.92,1138,"0.65804","0.74264","0.74264" +"GO:0001933","negative regulation of protein phosphory...",26,11,14.96,2359,"0.96152","0.74301","0.74301" +"GO:0000768","syncytium formation by plasma membrane f...",3,2,1.73,1021,"0.61223","0.74357","0.74357" +"GO:0006582","melanin metabolic process",3,2,1.73,1022,"0.61223","0.74357","0.74357" +"GO:0006949","syncytium formation",3,2,1.73,1023,"0.61223","0.74357","0.74357" +"GO:0007520","myoblast fusion",3,2,1.73,1024,"0.61223","0.74357","0.74357" +"GO:0018958","phenol-containing compound metabolic pro...",3,2,1.73,1025,"0.61223","0.74357","0.74357" +"GO:0019748","secondary metabolic process",3,2,1.73,1026,"0.61223","0.74357","0.74357" +"GO:0034113","heterotypic cell-cell adhesion",3,2,1.73,1027,"0.61223","0.74357","0.74357" +"GO:0034114","regulation of heterotypic cell-cell adhe...",3,2,1.73,1028,"0.61223","0.74357","0.74357" +"GO:0035006","melanization defense response",3,2,1.73,1029,"0.61223","0.74357","0.74357" +"GO:0035010","encapsulation of foreign target",3,2,1.73,1030,"0.61223","0.74357","0.74357" +"GO:0035011","melanotic encapsulation of foreign targe...",3,2,1.73,1031,"0.61223","0.74357","0.74357" +"GO:0044860","protein localization to plasma membrane ...",3,2,1.73,1032,"0.61223","0.74357","0.74357" +"GO:0045844","positive regulation of striated muscle t...",3,1,1.73,2007,"0.92354","0.74357","0.74357" +"GO:0048636","positive regulation of muscle organ deve...",3,1,1.73,2008,"0.92354","0.74357","0.74357" +"GO:0048641","regulation of skeletal muscle tissue dev...",3,1,1.73,2009,"0.92354","0.74357","0.74357" +"GO:0070528","protein kinase C signaling",3,2,1.73,1033,"0.61223","0.74357","0.74357" +"GO:1901863","positive regulation of muscle tissue dev...",3,1,1.73,2010,"0.92354","0.74357","0.74357" +"GO:1903044","protein localization to membrane raft",3,2,1.73,1034,"0.61223","0.74357","0.74357" +"GO:0048699","generation of neurons",105,55,60.41,1776,"0.88274","0.74404","0.74404" +"GO:0035601","protein deacylation",9,3,5.18,2372,"0.96464","0.74423","0.74423" +"GO:0098732","macromolecule deacylation",9,3,5.18,2373,"0.96464","0.74423","0.74423" +"GO:0008052","sensory organ boundary specification",3,1,1.73,2011,"0.92354","0.74429","0.74429" +"GO:0009649","entrainment of circadian clock",3,1,1.73,2012,"0.92354","0.74429","0.74429" +"GO:0010160","formation of animal organ boundary",3,1,1.73,2013,"0.92354","0.74429","0.74429" +"GO:0016360","sensory organ precursor cell fate determ...",3,1,1.73,2014,"0.92354","0.74429","0.74429" +"GO:0021536","diencephalon development",3,1,1.73,2015,"0.92354","0.74429","0.74429" +"GO:0045843","negative regulation of striated muscle t...",3,1,1.73,2016,"0.92354","0.74429","0.74429" +"GO:0048635","negative regulation of muscle organ deve...",3,1,1.73,2017,"0.92354","0.74429","0.74429" +"GO:0051154","negative regulation of striated muscle c...",3,1,1.73,2018,"0.92354","0.74429","0.74429" +"GO:0060581","cell fate commitment involved in pattern...",3,1,1.73,2019,"0.92354","0.74429","0.74429" +"GO:0060582","cell fate determination involved in patt...",3,1,1.73,2020,"0.92354","0.74429","0.74429" +"GO:0090263","positive regulation of canonical Wnt sig...",3,1,1.73,2021,"0.92354","0.74429","0.74429" +"GO:1901862","negative regulation of muscle tissue dev...",3,1,1.73,2022,"0.92354","0.74429","0.74429" +"GO:1905207","regulation of cardiocyte differentiation",3,1,1.73,2023,"0.92354","0.74429","0.74429" +"GO:2000725","regulation of cardiac muscle cell differ...",3,1,1.73,2024,"0.92354","0.74429","0.74429" +"GO:2001222","regulation of neuron migration",3,1,1.73,2025,"0.92354","0.74429","0.74429" +"GO:0035195","gene silencing by miRNA",3,0,1.73,2899,"1.00000","0.74500","0.74500" +"GO:0006605","protein targeting",40,22,23.01,1224,"0.68910","0.74554","0.74554" +"GO:0006665","sphingolipid metabolic process",11,5,6.33,1689,"0.86775","0.74561","0.74561" +"GO:0006383","transcription by RNA polymerase III",5,1,2.88,2577,"0.98626","0.74603","0.74603" +"GO:0001510","RNA methylation",12,6,6.9,1587,"0.79525","0.74644","0.74644" +"GO:0050769","positive regulation of neurogenesis",21,10,12.08,1732,"0.87339","0.74671","0.74671" +"GO:0051099","positive regulation of binding",11,5,6.33,1690,"0.86775","0.74723","0.74723" +"GO:1901617","organic hydroxy compound biosynthetic pr...",15,9,8.63,733,"0.53237","0.74766","0.74766" +"GO:1903034","regulation of response to wounding",6,2,3.45,2269,"0.94666","0.74785","0.74785" +"GO:0097120","receptor localization to synapse",3,2,1.73,1035,"0.61223","0.74787","0.74787" +"GO:0008631","intrinsic apoptotic signaling pathway in...",5,2,2.88,1801,"0.89286","0.74788","0.74788" +"GO:0010508","positive regulation of autophagy",5,3,2.88,1111,"0.63928","0.74788","0.74788" +"GO:0010632","regulation of epithelial cell migration",5,2,2.88,1802,"0.89286","0.74788","0.74788" +"GO:0043542","endothelial cell migration",5,2,2.88,1803,"0.89286","0.74788","0.74788" +"GO:0045766","positive regulation of angiogenesis",5,2,2.88,1804,"0.89286","0.74788","0.74788" +"GO:1904018","positive regulation of vasculature devel...",5,2,2.88,1805,"0.89286","0.74788","0.74788" +"GO:0006163","purine nucleotide metabolic process",63,43,36.25,71,"0.05199","0.08329","0.74916" +"GO:0007051","spindle organization",10,5,5.75,1403,"0.79006","0.74924","0.74924" +"GO:0001558","regulation of cell growth",17,7,9.78,2251,"0.94605","0.74946","0.74946" +"GO:0050877","nervous system process",54,30,31.07,1195,"0.67052","0.74946","0.74946" +"GO:0006629","lipid metabolic process",159,87,91.48,1582,"0.79519","0.74951","0.74951" +"GO:0097190","apoptotic signaling pathway",27,13,15.53,1775,"0.88199","0.75100","0.75100" +"GO:0009615","response to virus",7,4,4.03,1169,"0.66133","0.75202","0.75202" +"GO:0051607","defense response to virus",7,4,4.03,1170,"0.66133","0.75202","0.75202" +"GO:0022409","positive regulation of cell-cell adhesio...",7,3,4.03,1743,"0.87821","0.75233","0.75233" +"GO:0071453","cellular response to oxygen levels",9,5,5.18,1218,"0.68020","0.75332","0.75332" +"GO:0045619","regulation of lymphocyte differentiation",5,2,2.88,1806,"0.89286","0.75341","0.75341" +"GO:1902105","regulation of leukocyte differentiation",5,2,2.88,1807,"0.89286","0.75341","0.75341" +"GO:0006810","transport",549,316,315.87,722,"0.51497","0.58515","0.75371" +"GO:0019674","NAD metabolic process",7,2,4.03,2498,"0.97405","0.75668","0.75668" +"GO:0050776","regulation of immune response",30,15,17.26,1653,"0.84734","0.75695","0.75695" +"GO:0007259","JAK-STAT cascade",3,0,1.73,2900,"1.00000","0.75714","0.75714" +"GO:0097696","STAT cascade",3,0,1.73,2901,"1.00000","0.75714","0.75714" +"GO:0046148","pigment biosynthetic process",6,3,3.45,1338,"0.78526","0.75993","0.75993" +"GO:0001775","cell activation",38,22,21.86,765,"0.55093","0.76046","0.76046" +"GO:0042771","intrinsic apoptotic signaling pathway in...",3,2,1.73,1036,"0.61223","0.76067","0.76067" +"GO:1902230","negative regulation of intrinsic apoptot...",3,2,1.73,1037,"0.61223","0.76067","0.76067" +"GO:0030522","intracellular receptor signaling pathway",10,3,5.75,2549,"0.98165","0.76093","0.76093" +"GO:0010821","regulation of mitochondrion organization",8,3,4.6,2210,"0.93342","0.76109","0.76109" +"GO:0006547","histidine metabolic process",3,1,1.73,2026,"0.92354","0.76138","0.76138" +"GO:0006548","histidine catabolic process",3,1,1.73,2027,"0.92354","0.76138","0.76138" +"GO:0052803","imidazole-containing compound metabolic ...",3,1,1.73,2028,"0.92354","0.76138","0.76138" +"GO:0052805","imidazole-containing compound catabolic ...",3,1,1.73,2029,"0.92354","0.76138","0.76138" +"GO:0050906","detection of stimulus involved in sensor...",7,3,4.03,1744,"0.87821","0.76255","0.76255" +"GO:0009116","nucleoside metabolic process",11,6,6.33,1235,"0.69682","0.76419","0.76419" +"GO:0098693","regulation of synaptic vesicle cycle",3,1,1.73,2030,"0.92354","0.76420","0.76420" +"GO:0099601","regulation of neurotransmitter receptor ...",3,1,1.73,2031,"0.92354","0.76420","0.76420" +"GO:1900449","regulation of glutamate receptor signali...",3,1,1.73,2032,"0.92354","0.76420","0.76420" +"GO:0010950","positive regulation of endopeptidase act...",5,2,2.88,1808,"0.89286","0.76438","0.76438" +"GO:0010952","positive regulation of peptidase activit...",5,2,2.88,1809,"0.89286","0.76438","0.76438" +"GO:0031529","ruffle organization",5,3,2.88,1112,"0.63928","0.76438","0.76438" +"GO:0097178","ruffle assembly",5,3,2.88,1113,"0.63928","0.76438","0.76438" +"GO:1900027","regulation of ruffle assembly",5,3,2.88,1114,"0.63928","0.76438","0.76438" +"GO:2001056","positive regulation of cysteine-type end...",5,2,2.88,1810,"0.89286","0.76438","0.76438" +"GO:0060359","response to ammonium ion",8,3,4.6,2211,"0.93342","0.76455","0.76455" +"GO:0030330","DNA damage response, signal transduction...",5,3,2.88,1115,"0.63928","0.76529","0.76529" +"GO:0007519","skeletal muscle tissue development",13,6,7.48,1668,"0.86685","0.76583","0.76583" +"GO:0021700","developmental maturation",16,8,9.21,1615,"0.80712","0.76710","0.76710" +"GO:0006778","porphyrin-containing compound metabolic ...",7,3,4.03,1745,"0.87821","0.76823","0.76823" +"GO:1901135","carbohydrate derivative metabolic proces...",169,104,97.24,197,"0.15717","0.01361","0.76825" +"GO:0032835","glomerulus development",3,1,1.73,2033,"0.92354","0.76841","0.76841" +"GO:0006476","protein deacetylation",8,2,4.6,2623,"0.98759","0.76913","0.76913" +"GO:0016575","histone deacetylation",8,2,4.6,2624,"0.98759","0.76913","0.76913" +"GO:0007616","long-term memory",4,2,2.3,1502,"0.79143","0.76960","0.76960" +"GO:0022622","root system development",4,2,2.3,1503,"0.79143","0.76960","0.76960" +"GO:0048364","root development",4,2,2.3,1504,"0.79143","0.76960","0.76960" +"GO:0050778","positive regulation of immune response",23,13,13.23,1062,"0.62522","0.77034","0.77034" +"GO:0001889","liver development",5,2,2.88,1811,"0.89286","0.77072","0.77072" +"GO:0061008","hepaticobiliary system development",5,2,2.88,1812,"0.89286","0.77072","0.77072" +"GO:0006950","response to stress",258,136,148.44,2331,"0.95618","0.77128","0.77128" +"GO:0031344","regulation of cell projection organizati...",41,18,23.59,2484,"0.97307","0.77159","0.77159" +"GO:0120035","regulation of plasma membrane bounded ce...",41,18,23.59,2485,"0.97307","0.77159","0.77159" +"GO:0010608","posttranscriptional regulation of gene e...",38,19,21.86,1660,"0.86658","0.77184","0.77184" +"GO:0021537","telencephalon development",12,6,6.9,1588,"0.79525","0.77195","0.77195" +"GO:0060485","mesenchyme development",12,5,6.9,1920,"0.91954","0.77195","0.77195" +"GO:0072521","purine-containing compound metabolic pro...",67,46,38.55,66,"0.03952","0.07444","0.77251" +"GO:0051181","cofactor transport",3,1,1.73,2034,"0.92354","0.77330","0.77330" +"GO:0045893","positive regulation of transcription, DN...",59,32,33.95,1276,"0.74362","0.77363","0.77363" +"GO:1903508","positive regulation of nucleic acid-temp...",59,32,33.95,1277,"0.74362","0.77363","0.77363" +"GO:0045814","negative regulation of gene expression, ...",13,7,7.48,1252,"0.71172","0.77368","0.77368" +"GO:0051170","import into nucleus",12,7,6.9,822,"0.59839","0.77613","0.77613" +"GO:0016049","cell growth",23,10,13.23,2239,"0.94229","0.77614","0.77614" +"GO:1902680","positive regulation of RNA biosynthetic ...",60,33,34.52,1241,"0.70469","0.77755","0.77755" +"GO:0009628","response to abiotic stimulus",88,43,50.63,2365,"0.96203","0.82615","0.77799" +"GO:0022402","cell cycle process",103,59,59.26,775,"0.56332","0.77823","0.77823" +"GO:0006898","receptor-mediated endocytosis",7,4,4.03,1171,"0.66133","0.77872","0.77872" +"GO:1902806","regulation of cell cycle G1/S phase tran...",6,4,3.45,703,"0.49329","0.77874","0.77874" +"GO:2000045","regulation of G1/S transition of mitotic...",6,4,3.45,704,"0.49329","0.77874","0.77874" +"GO:0006400","tRNA modification",18,9,10.36,1628,"0.81323","0.77922","0.77922" +"GO:0007076","mitotic chromosome condensation",3,1,1.73,2035,"0.92354","0.77954","0.77954" +"GO:0043631","RNA polyadenylation",5,2,2.88,1813,"0.89286","0.77969","0.77969" +"GO:0009267","cellular response to starvation",10,4,5.75,2191,"0.92495","0.78009","0.78009" +"GO:0042742","defense response to bacterium",10,3,5.75,2550,"0.98165","0.78009","0.78009" +"GO:0022008","neurogenesis",110,56,63.29,2227,"0.93685","0.78029","0.78029" +"GO:1902882","regulation of response to oxidative stre...",8,5,4.6,763,"0.53646","0.78049","0.78049" +"GO:0019915","lipid storage",5,2,2.88,1814,"0.89286","0.78058","0.78058" +"GO:0051094","positive regulation of developmental pro...",61,27,35.1,2618,"0.98741","0.78136","0.78136" +"GO:0002684","positive regulation of immune system pro...",30,16,17.26,1279,"0.74481","0.78140","0.78140" +"GO:0050771","negative regulation of axonogenesis",5,2,2.88,1815,"0.89286","0.78147","0.78147" +"GO:0140013","meiotic nuclear division",7,4,4.03,1172,"0.66133","0.78264","0.78264" +"GO:0006814","sodium ion transport",16,4,9.21,2793,"0.99822","0.78318","0.78318" +"GO:0097164","ammonium ion metabolic process",13,7,7.48,1253,"0.71172","0.78345","0.78345" +"GO:0002696","positive regulation of leukocyte activat...",6,2,3.45,2270,"0.94666","0.78362","0.78362" +"GO:0050867","positive regulation of cell activation",6,2,3.45,2271,"0.94666","0.78362","0.78362" +"GO:0051251","positive regulation of lymphocyte activa...",6,2,3.45,2272,"0.94666","0.78362","0.78362" +"GO:0051101","regulation of DNA binding",6,0,3.45,2902,"1.00000","0.78362","0.78362" +"GO:0006954","inflammatory response",11,5,6.33,1691,"0.86775","0.78468","0.78468" +"GO:0090567","reproductive shoot system development",4,1,2.3,2410,"0.96758","0.78481","0.78481" +"GO:0045995","regulation of embryonic development",5,3,2.88,1116,"0.63928","0.78503","0.78503" +"GO:0006357","regulation of transcription by RNA polym...",101,48,58.11,2571,"0.98480","0.78543","0.78543" +"GO:0000578","embryonic axis specification",4,2,2.3,1505,"0.79143","0.78560","0.78560" +"GO:0032386","regulation of intracellular transport",22,9,12.66,2370,"0.96341","0.78634","0.78634" +"GO:0030097","hemopoiesis",24,10,13.81,2366,"0.96230","0.78723","0.78723" +"GO:0010243","response to organonitrogen compound",41,20,23.59,1869,"0.90293","0.78770","0.78770" +"GO:0002253","activation of immune response",13,8,7.48,718,"0.50125","0.78774","0.78774" +"GO:0009617","response to bacterium",18,8,10.36,1885,"0.91335","0.78822","0.78822" +"GO:0006879","cellular iron ion homeostasis",6,3,3.45,1339,"0.78526","0.78943","0.78943" +"GO:0055072","iron ion homeostasis",6,3,3.45,1340,"0.78526","0.78943","0.78943" +"GO:0048286","lung alveolus development",4,0,2.3,2903,"1.00000","0.78955","0.78955" +"GO:0071900","regulation of protein serine/threonine k...",16,9,9.21,1130,"0.64339","0.79031","0.79031" +"GO:0030834","regulation of actin filament depolymeriz...",6,3,3.45,1341,"0.78526","0.79039","0.79039" +"GO:0030835","negative regulation of actin filament de...",6,3,3.45,1342,"0.78526","0.79039","0.79039" +"GO:0043242","negative regulation of protein complex d...",6,3,3.45,1343,"0.78526","0.79039","0.79039" +"GO:1901879","regulation of protein depolymerization",6,3,3.45,1344,"0.78526","0.79039","0.79039" +"GO:1901880","negative regulation of protein depolymer...",6,3,3.45,1345,"0.78526","0.79039","0.79039" +"GO:0030162","regulation of proteolysis",24,13,13.81,1243,"0.70843","0.79110","0.79110" +"GO:0021549","cerebellum development",5,2,2.88,1816,"0.89286","0.79120","0.79120" +"GO:0022037","metencephalon development",5,2,2.88,1817,"0.89286","0.79120","0.79120" +"GO:0016032","viral process",15,7,8.63,1680,"0.86739","0.79150","0.79150" +"GO:0051254","positive regulation of RNA metabolic pro...",64,36,36.82,1067,"0.63444","0.79218","0.79218" +"GO:1903825","organic acid transmembrane transport",16,10,9.21,620,"0.44602","0.79267","0.79267" +"GO:1905039","carboxylic acid transmembrane transport",16,10,9.21,621,"0.44602","0.79267","0.79267" +"GO:0046777","protein autophosphorylation",5,1,2.88,2578,"0.98626","0.79295","0.79295" +"GO:0006338","chromatin remodeling",20,11,11.51,1203,"0.67897","0.79371","0.79371" +"GO:0045746","negative regulation of Notch signaling p...",3,1,1.73,2036,"0.92354","0.79391","0.79391" +"GO:0006360","transcription by RNA polymerase I",4,2,2.3,1506,"0.79143","0.79425","0.79425" +"GO:0002237","response to molecule of bacterial origin",9,5,5.18,1219,"0.68020","0.79431","0.79431" +"GO:0097479","synaptic vesicle localization",6,3,3.45,1346,"0.78526","0.79519","0.79519" +"GO:0007049","cell cycle",133,75,76.52,1127,"0.64325","0.79577","0.79577" +"GO:0002757","immune response-activating signal transd...",12,7,6.9,823,"0.59839","0.79670","0.79670" +"GO:0002764","immune response-regulating signaling pat...",12,7,6.9,824,"0.59839","0.79670","0.79670" +"GO:0048534","hematopoietic or lymphoid organ developm...",25,11,14.38,2236,"0.94197","0.79755","0.79755" +"GO:0050808","synapse organization",28,13,16.11,1916,"0.91658","0.79804","0.79804" +"GO:0032272","negative regulation of protein polymeriz...",8,3,4.6,2212,"0.93342","0.79832","0.79832" +"GO:0010639","negative regulation of organelle organiz...",25,13,14.38,1302,"0.77905","0.79833","0.79833" +"GO:0022407","regulation of cell-cell adhesion",9,4,5.18,1708,"0.87099","0.79860","0.79860" +"GO:0010557","positive regulation of macromolecule bio...",66,36,37.97,1272,"0.73461","0.79891","0.79891" +"GO:0022411","cellular component disassembly",33,18,18.99,1240,"0.70272","0.79893","0.79893" +"GO:0002097","tRNA wobble base modification",4,2,2.3,1507,"0.79143","0.79893","0.79893" +"GO:0002098","tRNA wobble uridine modification",4,2,2.3,1508,"0.79143","0.79893","0.79893" +"GO:0072001","renal system development",15,7,8.63,1681,"0.86739","0.79908","0.79908" +"GO:0048701","embryonic cranial skeleton morphogenesis",4,2,2.3,1509,"0.79143","0.80048","0.80048" +"GO:0048704","embryonic skeletal system morphogenesis",4,2,2.3,1510,"0.79143","0.80048","0.80048" +"GO:1904888","cranial skeletal system development",4,2,2.3,1511,"0.79143","0.80048","0.80048" +"GO:0061982","meiosis I cell cycle process",3,2,1.73,1038,"0.61223","0.80065","0.80065" +"GO:0120034","positive regulation of plasma membrane b...",5,2,2.88,1818,"0.89286","0.80079","0.80079" +"GO:0015804","neutral amino acid transport",3,2,1.73,1039,"0.61223","0.80266","0.80266" +"GO:0050792","regulation of viral process",9,3,5.18,2374,"0.96464","0.80286","0.80286" +"GO:0051704","multi-organism process",116,53,66.74,2743,"0.99670","0.80360","0.80360" +"GO:0009792","embryo development ending in birth or eg...",52,25,29.92,2225,"0.93685","0.80459","0.80459" +"GO:0051656","establishment of organelle localization",28,14,16.11,1646,"0.84209","0.80480","0.80480" +"GO:1902807","negative regulation of cell cycle G1/S p...",3,1,1.73,2037,"0.92354","0.80533","0.80533" +"GO:2000134","negative regulation of G1/S transition o...",3,1,1.73,2038,"0.92354","0.80533","0.80533" +"GO:0009416","response to light stimulus",21,8,12.08,2540,"0.97838","0.80604","0.80604" +"GO:0032501","multicellular organismal process",366,198,210.58,2201,"0.93100","0.80709","0.80709" +"GO:0002520","immune system development",26,11,14.96,2360,"0.96152","0.80718","0.80718" +"GO:0031328","positive regulation of cellular biosynth...",69,36,39.7,1655,"0.84982","0.80838","0.80838" +"GO:0051495","positive regulation of cytoskeleton orga...",20,9,11.51,1878,"0.91316","0.80931","0.80931" +"GO:0048639","positive regulation of developmental gro...",6,3,3.45,1347,"0.78526","0.80939","0.80939" +"GO:0018198","peptidyl-cysteine modification",5,3,2.88,1117,"0.63928","0.80939","0.80939" +"GO:0006354","DNA-templated transcription, elongation",14,9,8.06,510,"0.41040","0.81036","0.81036" +"GO:0006220","pyrimidine nucleotide metabolic process",7,4,4.03,1173,"0.66133","0.81090","0.81090" +"GO:0045935","positive regulation of nucleobase-contai...",70,39,40.28,1193,"0.66974","0.81137","0.81137" +"GO:0071363","cellular response to growth factor stimu...",19,11,10.93,809,"0.58378","0.81233","0.81233" +"GO:0009152","purine ribonucleotide biosynthetic proce...",37,27,21.29,65,"0.03824","0.02036","0.81251" +"GO:0040029","regulation of gene expression, epigeneti...",19,8,10.93,2243,"0.94420","0.81302","0.81302" +"GO:0042326","negative regulation of phosphorylation",29,12,16.69,2522,"0.97428","0.81369","0.81369" +"GO:0009150","purine ribonucleotide metabolic process",60,41,34.52,76,"0.05571","0.09657","0.81438" +"GO:0044419","interspecies interaction between organis...",20,10,11.51,1634,"0.81929","0.81442","0.81442" +"GO:0045639","positive regulation of myeloid cell diff...",3,1,1.73,2039,"0.92354","0.81457","0.81457" +"GO:0045648","positive regulation of erythrocyte diffe...",3,1,1.73,2040,"0.92354","0.81457","0.81457" +"GO:0032479","regulation of type I interferon producti...",3,0,1.73,2904,"1.00000","0.81457","0.81457" +"GO:0032606","type I interferon production",3,0,1.73,2905,"1.00000","0.81457","0.81457" +"GO:0032608","interferon-beta production",3,0,1.73,2906,"1.00000","0.81457","0.81457" +"GO:0032648","regulation of interferon-beta production",3,0,1.73,2907,"1.00000","0.81457","0.81457" +"GO:0043388","positive regulation of DNA binding",3,0,1.73,2908,"1.00000","0.81457","0.81457" +"GO:0010556","regulation of macromolecule biosynthetic...",347,172,199.65,2845,"0.99943","0.81464","0.81464" +"GO:0006119","oxidative phosphorylation",16,9,9.21,1131,"0.64339","0.81581","0.81581" +"GO:0009891","positive regulation of biosynthetic proc...",74,40,42.58,1294,"0.76907","0.81672","0.81672" +"GO:0036294","cellular response to decreased oxygen le...",8,4,4.6,1388,"0.78620","0.81674","0.81674" +"GO:0071456","cellular response to hypoxia",8,4,4.6,1389,"0.78620","0.81674","0.81674" +"GO:0042982","amyloid precursor protein metabolic proc...",4,2,2.3,1512,"0.79143","0.81729","0.81729" +"GO:0042987","amyloid precursor protein catabolic proc...",4,2,2.3,1513,"0.79143","0.81729","0.81729" +"GO:1902991","regulation of amyloid precursor protein ...",4,2,2.3,1514,"0.79143","0.81729","0.81729" +"GO:0051260","protein homooligomerization",13,5,7.48,2315,"0.95247","0.81805","0.81805" +"GO:0007050","cell cycle arrest",7,4,4.03,1174,"0.66133","0.81862","0.81862" +"GO:0008643","carbohydrate transport",11,5,6.33,1692,"0.86775","0.81872","0.81872" +"GO:0002682","regulation of immune system process",52,25,29.92,2226,"0.93685","0.81927","0.81927" +"GO:0051098","regulation of binding",21,11,12.08,1291,"0.75978","0.81950","0.81950" +"GO:0043628","ncRNA 3'-end processing",6,4,3.45,705,"0.49329","0.81958","0.81958" +"GO:0044093","positive regulation of molecular functio...",73,37,42,1873,"0.90611","0.81992","0.81992" +"GO:0030149","sphingolipid catabolic process",4,2,2.3,1515,"0.79143","0.82029","0.82029" +"GO:0046466","membrane lipid catabolic process",4,2,2.3,1516,"0.79143","0.82029","0.82029" +"GO:0043254","regulation of protein complex assembly",27,11,15.53,2524,"0.97497","0.82032","0.82032" +"GO:0007166","cell surface receptor signaling pathway",109,52,62.71,2610,"0.98630","0.82047","0.82047" +"GO:0019932","second-messenger-mediated signaling",18,9,10.36,1629,"0.81323","0.82146","0.82146" +"GO:0071840","cellular component organization or bioge...",547,308,314.72,1289,"0.75757","0.74297","0.82149" +"GO:0007635","chemosensory behavior",3,2,1.73,1040,"0.61223","0.82173","0.82173" +"GO:0008355","olfactory learning",3,2,1.73,1041,"0.61223","0.82173","0.82173" +"GO:0009553","embryo sac development",3,1,1.73,2041,"0.92354","0.82173","0.82173" +"GO:0042048","olfactory behavior",3,2,1.73,1042,"0.61223","0.82173","0.82173" +"GO:0042052","rhabdomere development",3,1,1.73,2042,"0.92354","0.82173","0.82173" +"GO:0009555","pollen development",3,0,1.73,2909,"1.00000","0.82173","0.82173" +"GO:0031326","regulation of cellular biosynthetic proc...",351,175,201.95,2836,"0.99921","0.82201","0.82201" +"GO:0002218","activation of innate immune response",7,4,4.03,1175,"0.66133","0.82371","0.82371" +"GO:0002221","pattern recognition receptor signaling p...",7,4,4.03,1176,"0.66133","0.82371","0.82371" +"GO:0002758","innate immune response-activating signal...",7,4,4.03,1177,"0.66133","0.82371","0.82371" +"GO:0051865","protein autoubiquitination",7,4,4.03,1178,"0.66133","0.82371","0.82371" +"GO:0071772","response to BMP",7,4,4.03,1179,"0.66133","0.82371","0.82371" +"GO:0071773","cellular response to BMP stimulus",7,4,4.03,1180,"0.66133","0.82371","0.82371" +"GO:0036473","cell death in response to oxidative stre...",9,4,5.18,1709,"0.87099","0.82373","0.82373" +"GO:0097237","cellular response to toxic substance",9,5,5.18,1220,"0.68020","0.82373","0.82373" +"GO:0010171","body morphogenesis",4,2,2.3,1517,"0.79143","0.82402","0.82402" +"GO:0010172","embryonic body morphogenesis",4,2,2.3,1518,"0.79143","0.82402","0.82402" +"GO:0034332","adherens junction organization",4,1,2.3,2411,"0.96758","0.82402","0.82402" +"GO:0034333","adherens junction assembly",4,1,2.3,2412,"0.96758","0.82402","0.82402" +"GO:1901888","regulation of cell junction assembly",4,2,2.3,1519,"0.79143","0.82402","0.82402" +"GO:0010563","negative regulation of phosphorus metabo...",31,14,17.84,2240,"0.94265","0.82407","0.82407" +"GO:0045936","negative regulation of phosphate metabol...",31,14,17.84,2241,"0.94265","0.82407","0.82407" +"GO:0051248","negative regulation of protein metabolic...",49,23,28.19,2313,"0.95080","0.82561","0.82561" +"GO:0042246","tissue regeneration",8,3,4.6,2213,"0.93342","0.82626","0.82626" +"GO:0031214","biomineral tissue development",6,3,3.45,1348,"0.78526","0.82688","0.82688" +"GO:0043487","regulation of RNA stability",6,3,3.45,1349,"0.78526","0.82688","0.82688" +"GO:0043488","regulation of mRNA stability",6,3,3.45,1350,"0.78526","0.82688","0.82688" +"GO:0006855","drug transmembrane transport",5,1,2.88,2579,"0.98626","0.82704","0.82704" +"GO:0015807","L-amino acid transport",5,2,2.88,1819,"0.89286","0.82704","0.82704" +"GO:0000380","alternative mRNA splicing, via spliceoso...",4,1,2.3,2413,"0.96758","0.82846","0.82846" +"GO:0000381","regulation of alternative mRNA splicing,...",4,1,2.3,2414,"0.96758","0.82846","0.82846" +"GO:0007140","male meiotic nuclear division",4,2,2.3,1520,"0.79143","0.82846","0.82846" +"GO:0006783","heme biosynthetic process",4,2,2.3,1521,"0.79143","0.82920","0.82920" +"GO:0042168","heme metabolic process",4,2,2.3,1522,"0.79143","0.82920","0.82920" +"GO:0009311","oligosaccharide metabolic process",5,2,2.88,1820,"0.89286","0.82951","0.82951" +"GO:0009312","oligosaccharide biosynthetic process",5,2,2.88,1821,"0.89286","0.82951","0.82951" +"GO:0018242","protein O-linked glycosylation via serin...",5,2,2.88,1822,"0.89286","0.82951","0.82951" +"GO:0018243","protein O-linked glycosylation via threo...",5,2,2.88,1823,"0.89286","0.82951","0.82951" +"GO:0000724","double-strand break repair via homologou...",5,3,2.88,1118,"0.63928","0.83033","0.83033" +"GO:0000725","recombinational repair",5,3,2.88,1119,"0.63928","0.83033","0.83033" +"GO:0010628","positive regulation of gene expression",77,41,44.3,1631,"0.81334","0.83040","0.83040" +"GO:0006366","transcription by RNA polymerase II",120,54,69.04,2797,"0.99823","0.83087","0.83087" +"GO:0007041","lysosomal transport",7,1,4.03,2766,"0.99754","0.83098","0.83098" +"GO:0032092","positive regulation of protein binding",7,4,4.03,1181,"0.66133","0.83098","0.83098" +"GO:0120192","tight junction assembly",5,2,2.88,1824,"0.89286","0.83115","0.83115" +"GO:0120193","tight junction organization",5,2,2.88,1825,"0.89286","0.83115","0.83115" +"GO:0007391","dorsal closure",3,1,1.73,2043,"0.92354","0.83134","0.83134" +"GO:0065009","regulation of molecular function",129,63,74.22,2563,"0.98334","0.83188","0.83188" +"GO:0070646","protein modification by small protein re...",18,7,10.36,2392,"0.96686","0.83195","0.83195" +"GO:0010977","negative regulation of neuron projection...",6,2,3.45,2273,"0.94666","0.83229","0.83229" +"GO:0006458","'de novo' protein folding",8,4,4.6,1390,"0.78620","0.83250","0.83250" +"GO:0060491","regulation of cell projection assembly",15,7,8.63,1682,"0.86739","0.83273","0.83273" +"GO:0120032","regulation of plasma membrane bounded ce...",15,7,8.63,1683,"0.86739","0.83273","0.83273" +"GO:0051668","localization within membrane",9,4,5.18,1710,"0.87099","0.83332","0.83332" +"GO:0006915","apoptotic process",76,37,43.73,2330,"0.95484","0.83333","0.83333" +"GO:0010822","positive regulation of mitochondrion org...",7,2,4.03,2499,"0.97405","0.83388","0.83388" +"GO:1903533","regulation of protein targeting",7,2,4.03,2500,"0.97405","0.83388","0.83388" +"GO:1903747","regulation of establishment of protein l...",7,1,4.03,2767,"0.99754","0.83388","0.83388" +"GO:0010629","negative regulation of gene expression",94,47,54.08,2250,"0.94570","0.83397","0.83397" +"GO:0031110","regulation of microtubule polymerization...",4,2,2.3,1523,"0.79143","0.83432","0.83432" +"GO:0031112","positive regulation of microtubule polym...",4,2,2.3,1524,"0.79143","0.83432","0.83432" +"GO:0031113","regulation of microtubule polymerization",4,2,2.3,1525,"0.79143","0.83432","0.83432" +"GO:0031116","positive regulation of microtubule polym...",4,2,2.3,1526,"0.79143","0.83432","0.83432" +"GO:0009889","regulation of biosynthetic process",358,181,205.98,2792,"0.99818","0.83447","0.83447" +"GO:1901698","response to nitrogen compound",45,21,25.89,2306,"0.94866","0.83548","0.83548" +"GO:0051347","positive regulation of transferase activ...",17,8,9.78,1697,"0.86885","0.83707","0.83707" +"GO:0010640","regulation of platelet-derived growth fa...",3,0,1.73,2910,"1.00000","0.83765","0.83765" +"GO:0010642","negative regulation of platelet-derived ...",3,0,1.73,2911,"1.00000","0.83765","0.83765" +"GO:0006259","DNA metabolic process",117,71,67.32,378,"0.27251","0.59956","0.83779" +"GO:0016051","carbohydrate biosynthetic process",16,6,9.21,2467,"0.96940","0.83875","0.83875" +"GO:0044262","cellular carbohydrate metabolic process",16,9,9.21,1132,"0.64339","0.83875","0.83875" +"GO:0010941","regulation of cell death",71,33,40.85,2539,"0.97833","0.83882","0.83882" +"GO:0044403","symbiont process",19,10,10.93,1287,"0.74913","0.83941","0.83941" +"GO:0061635","regulation of protein complex stability",3,1,1.73,2044,"0.92354","0.84014","0.84014" +"GO:0009058","biosynthetic process",814,477,468.34,348,"0.24566","0.12871","0.84089" +"GO:0046839","phospholipid dephosphorylation",6,4,3.45,706,"0.49329","0.84117","0.84117" +"GO:0046856","phosphatidylinositol dephosphorylation",6,4,3.45,707,"0.49329","0.84117","0.84117" +"GO:0050829","defense response to Gram-negative bacter...",6,2,3.45,2274,"0.94666","0.84117","0.84117" +"GO:0010921","regulation of phosphatase activity",4,2,2.3,1527,"0.79143","0.84155","0.84155" +"GO:0071702","organic substance transport",202,113,116.22,1244,"0.70973","0.84158","0.84158" +"GO:0045664","regulation of neuron differentiation",37,15,21.29,2643,"0.98809","0.84187","0.84187" +"GO:0045595","regulation of cell differentiation",82,41,47.18,2222,"0.93449","0.84221","0.84221" +"GO:0010631","epithelial cell migration",9,3,5.18,2375,"0.96464","0.84344","0.84344" +"GO:0032984","protein-containing complex disassembly",25,14,14.38,1126,"0.64324","0.84403","0.84403" +"GO:0018230","peptidyl-L-cysteine S-palmitoylation",4,2,2.3,1528,"0.79143","0.84441","0.84441" +"GO:0018231","peptidyl-S-diacylglycerol-L-cysteine bio...",4,2,2.3,1529,"0.79143","0.84441","0.84441" +"GO:0032543","mitochondrial translation",11,6,6.33,1236,"0.69682","0.84468","0.84468" +"GO:0033260","nuclear DNA replication",4,2,2.3,1530,"0.79143","0.84583","0.84583" +"GO:0044786","cell cycle DNA replication",4,2,2.3,1531,"0.79143","0.84583","0.84583" +"GO:0006913","nucleocytoplasmic transport",33,20,18.99,528,"0.43141","0.84732","0.84732" +"GO:0051169","nuclear transport",33,20,18.99,529,"0.43141","0.84732","0.84732" +"GO:0051259","protein complex oligomerization",18,6,10.36,2651,"0.98977","0.84826","0.84826" +"GO:0051302","regulation of cell division",4,1,2.3,2415,"0.96758","0.84937","0.84937" +"GO:0036474","cell death in response to hydrogen perox...",4,2,2.3,1532,"0.79143","0.85007","0.85007" +"GO:0046686","response to cadmium ion",4,2,2.3,1533,"0.79143","0.85007","0.85007" +"GO:0050870","positive regulation of T cell activation",4,2,2.3,1534,"0.79143","0.85007","0.85007" +"GO:1901031","regulation of response to reactive oxyge...",4,2,2.3,1535,"0.79143","0.85007","0.85007" +"GO:1903039","positive regulation of leukocyte cell-ce...",4,2,2.3,1536,"0.79143","0.85007","0.85007" +"GO:2001024","negative regulation of response to drug",4,1,2.3,2416,"0.96758","0.85007","0.85007" +"GO:0016043","cellular component organization",508,277,292.28,2229,"0.94138","0.85045","0.85045" +"GO:0034330","cell junction organization",13,5,7.48,2316,"0.95247","0.85127","0.85127" +"GO:0032502","developmental process",362,195,208.28,2231,"0.94173","0.85133","0.85133" +"GO:0002250","adaptive immune response",3,1,1.73,2045,"0.92354","0.85182","0.85182" +"GO:0002449","lymphocyte mediated immunity",3,1,1.73,2046,"0.92354","0.85182","0.85182" +"GO:0002460","adaptive immune response based on somati...",3,1,1.73,2047,"0.92354","0.85182","0.85182" +"GO:0002703","regulation of leukocyte mediated immunit...",3,1,1.73,2048,"0.92354","0.85182","0.85182" +"GO:0002705","positive regulation of leukocyte mediate...",3,1,1.73,2049,"0.92354","0.85182","0.85182" +"GO:0002706","regulation of lymphocyte mediated immuni...",3,1,1.73,2050,"0.92354","0.85182","0.85182" +"GO:0002708","positive regulation of lymphocyte mediat...",3,1,1.73,2051,"0.92354","0.85182","0.85182" +"GO:0002819","regulation of adaptive immune response",3,1,1.73,2052,"0.92354","0.85182","0.85182" +"GO:0002821","positive regulation of adaptive immune r...",3,1,1.73,2053,"0.92354","0.85182","0.85182" +"GO:0002822","regulation of adaptive immune response b...",3,1,1.73,2054,"0.92354","0.85182","0.85182" +"GO:0002824","positive regulation of adaptive immune r...",3,1,1.73,2055,"0.92354","0.85182","0.85182" +"GO:0031060","regulation of histone methylation",3,1,1.73,2056,"0.92354","0.85182","0.85182" +"GO:0035065","regulation of histone acetylation",3,1,1.73,2057,"0.92354","0.85182","0.85182" +"GO:1901983","regulation of protein acetylation",3,1,1.73,2058,"0.92354","0.85182","0.85182" +"GO:2000756","regulation of peptidyl-lysine acetylatio...",3,1,1.73,2059,"0.92354","0.85182","0.85182" +"GO:0032886","regulation of microtubule-based process",10,2,5.75,2753,"0.99727","0.85260","0.85260" +"GO:0009435","NAD biosynthetic process",4,1,2.3,2417,"0.96758","0.85287","0.85287" +"GO:0007631","feeding behavior",6,2,3.45,2275,"0.94666","0.85330","0.85330" +"GO:0032870","cellular response to hormone stimulus",35,15,20.14,2488,"0.97317","0.85357","0.85357" +"GO:0060284","regulation of cell development",53,26,30.49,1918,"0.91879","0.85400","0.85400" +"GO:0033674","positive regulation of kinase activity",15,7,8.63,1684,"0.86739","0.85487","0.85487" +"GO:0043154","negative regulation of cysteine-type end...",4,2,2.3,1537,"0.79143","0.85565","0.85565" +"GO:1903214","regulation of protein targeting to mitoc...",6,1,3.45,2693,"0.99418","0.85585","0.85585" +"GO:1903749","positive regulation of establishment of ...",6,1,3.45,2694,"0.99418","0.85585","0.85585" +"GO:1903955","positive regulation of protein targeting...",6,1,3.45,2695,"0.99418","0.85585","0.85585" +"GO:0019693","ribose phosphate metabolic process",63,42,36.25,122,"0.08674","0.14232","0.85603" +"GO:0001952","regulation of cell-matrix adhesion",3,1,1.73,2060,"0.92354","0.85604","0.85604" +"GO:0007045","cell-substrate adherens junction assembl...",3,1,1.73,2061,"0.92354","0.85604","0.85604" +"GO:0034260","negative regulation of GTPase activity",3,1,1.73,2062,"0.92354","0.85604","0.85604" +"GO:0048041","focal adhesion assembly",3,1,1.73,2063,"0.92354","0.85604","0.85604" +"GO:0072331","signal transduction by p53 class mediato...",12,6,6.9,1589,"0.79525","0.85680","0.85680" +"GO:0032008","positive regulation of TOR signaling",4,2,2.3,1538,"0.79143","0.85704","0.85704" +"GO:0051171","regulation of nitrogen compound metaboli...",431,212,247.98,2872,"0.99994","0.85747","0.85747" +"GO:0016236","macroautophagy",14,7,8.06,1601,"0.80106","0.85749","0.85749" +"GO:0000462","maturation of SSU-rRNA from tricistronic...",4,2,2.3,1539,"0.79143","0.85773","0.85773" +"GO:0030490","maturation of SSU-rRNA",4,2,2.3,1540,"0.79143","0.85773","0.85773" +"GO:0006413","translational initiation",12,5,6.9,1921,"0.91954","0.85800","0.85800" +"GO:1902475","L-alpha-amino acid transmembrane transpo...",4,1,2.3,2418,"0.96758","0.85910","0.85910" +"GO:0006955","immune response",47,25,27.04,1299,"0.77613","0.85948","0.85948" +"GO:0009950","dorsal/ventral axis specification",3,1,1.73,2064,"0.92354","0.85962","0.85962" +"GO:0061355","Wnt protein secretion",3,1,1.73,2065,"0.92354","0.85962","0.85962" +"GO:0007339","binding of sperm to zona pellucida",3,1,1.73,2066,"0.92354","0.86080","0.86080" +"GO:0009988","cell-cell recognition",3,1,1.73,2067,"0.92354","0.86080","0.86080" +"GO:0035036","sperm-egg recognition",3,1,1.73,2068,"0.92354","0.86080","0.86080" +"GO:0007159","leukocyte cell-cell adhesion",6,3,3.45,1351,"0.78526","0.86091","0.86091" +"GO:1903037","regulation of leukocyte cell-cell adhesi...",6,3,3.45,1352,"0.78526","0.86091","0.86091" +"GO:0019079","viral genome replication",8,3,4.6,2214,"0.93342","0.86153","0.86153" +"GO:0045069","regulation of viral genome replication",8,3,4.6,2215,"0.93342","0.86153","0.86153" +"GO:1903900","regulation of viral life cycle",8,3,4.6,2216,"0.93342","0.86153","0.86153" +"GO:0001101","response to acid chemical",14,5,8.06,2477,"0.97263","0.86153","0.86153" +"GO:0060538","skeletal muscle organ development",15,7,8.63,1685,"0.86739","0.86154","0.86154" +"GO:0006261","DNA-dependent DNA replication",21,15,12.08,185,"0.14153","0.07828","0.86156" +"GO:0031333","negative regulation of protein complex a...",9,3,5.18,2376,"0.96464","0.86195","0.86195" +"GO:0018342","protein prenylation",4,1,2.3,2419,"0.96758","0.86252","0.86252" +"GO:0097354","prenylation",4,1,2.3,2420,"0.96758","0.86252","0.86252" +"GO:0031397","negative regulation of protein ubiquitin...",3,1,1.73,2069,"0.92354","0.86257","0.86257" +"GO:0071569","protein ufmylation",3,1,1.73,2070,"0.92354","0.86257","0.86257" +"GO:1990564","protein polyufmylation",3,1,1.73,2071,"0.92354","0.86257","0.86257" +"GO:1990592","protein K69-linked ufmylation",3,1,1.73,2072,"0.92354","0.86257","0.86257" +"GO:0015800","acidic amino acid transport",3,1,1.73,2073,"0.92354","0.86257","0.86257" +"GO:0048469","cell maturation",15,7,8.63,1686,"0.86739","0.86286","0.86286" +"GO:0050767","regulation of neurogenesis",45,19,25.89,2614,"0.98726","0.86321","0.86321" +"GO:0006914","autophagy",32,18,18.41,1065,"0.63124","0.86427","0.86427" +"GO:0061919","process utilizing autophagic mechanism",32,18,18.41,1066,"0.63124","0.86427","0.86427" +"GO:0044319","wound healing, spreading of cells",3,1,1.73,2074,"0.92354","0.86492","0.86492" +"GO:0090504","epiboly",3,1,1.73,2075,"0.92354","0.86492","0.86492" +"GO:0090505","epiboly involved in wound healing",3,1,1.73,2076,"0.92354","0.86492","0.86492" +"GO:0043010","camera-type eye development",36,17,20.71,1926,"0.92288","0.86512","0.86512" +"GO:0007420","brain development",49,24,28.19,1891,"0.91378","0.86535","0.86535" +"GO:0060322","head development",49,24,28.19,1892,"0.91378","0.86535","0.86535" +"GO:0019722","calcium-mediated signaling",10,4,5.75,2192,"0.92495","0.86564","0.86564" +"GO:2000112","regulation of cellular macromolecule bio...",344,170,197.92,2848,"0.99951","0.86611","0.86611" +"GO:0070507","regulation of microtubule cytoskeleton o...",9,2,5.18,2683,"0.99414","0.86635","0.86635" +"GO:0031647","regulation of protein stability",14,7,8.06,1602,"0.80106","0.86715","0.86715" +"GO:0034613","cellular protein localization",158,84,90.91,1783,"0.88996","0.86734","0.86734" +"GO:0045089","positive regulation of innate immune res...",14,7,8.06,1603,"0.80106","0.86751","0.86751" +"GO:0048278","vesicle docking",7,2,4.03,2501,"0.97405","0.86753","0.86753" +"GO:0140056","organelle localization by membrane tethe...",7,2,4.03,2502,"0.97405","0.86753","0.86753" +"GO:0008219","cell death",95,46,54.66,2483,"0.97293","0.86757","0.86757" +"GO:0000122","negative regulation of transcription by ...",34,12,19.56,2760,"0.99746","0.86841","0.86841" +"GO:0000723","telomere maintenance",7,3,4.03,1746,"0.87821","0.86842","0.86842" +"GO:0032200","telomere organization",7,3,4.03,1747,"0.87821","0.86842","0.86842" +"GO:0070727","cellular macromolecule localization",159,85,91.48,1736,"0.87555","0.86842","0.86842" +"GO:0045666","positive regulation of neuron differenti...",13,6,7.48,1669,"0.86685","0.86858","0.86858" +"GO:0070848","response to growth factor",20,11,11.51,1204,"0.67897","0.86890","0.86890" +"GO:0033108","mitochondrial respiratory chain complex ...",14,7,8.06,1604,"0.80106","0.86912","0.86912" +"GO:0009260","ribonucleotide biosynthetic process",38,27,21.86,83,"0.06077","0.02969","0.86943" +"GO:0046390","ribose phosphate biosynthetic process",38,27,21.86,84,"0.06077","0.02969","0.86943" +"GO:0006282","regulation of DNA repair",3,2,1.73,1043,"0.61223","0.86957","0.86957" +"GO:0050678","regulation of epithelial cell proliferat...",7,3,4.03,1748,"0.87821","0.86968","0.86968" +"GO:0080090","regulation of primary metabolic process",439,217,252.58,2865,"0.99992","0.86997","0.86997" +"GO:0009987","cellular process",2093,1199,1204.23,1228,"0.69667","0.74644","0.87043" +"GO:0048731","system development",261,139,150.17,2228,"0.93733","0.87071","0.87071" +"GO:0035966","response to topologically incorrect prot...",14,8,8.06,1056,"0.62238","0.87072","0.87072" +"GO:0007417","central nervous system development",64,29,36.82,2559,"0.98289","0.87094","0.87094" +"GO:0050793","regulation of developmental process",123,59,70.77,2648,"0.98863","0.87163","0.87163" +"GO:0045444","fat cell differentiation",10,5,5.75,1404,"0.79006","0.87199","0.87199" +"GO:0033865","nucleoside bisphosphate metabolic proces...",11,7,6.33,647,"0.46496","0.48284","0.87296" +"GO:0033875","ribonucleoside bisphosphate metabolic pr...",11,7,6.33,648,"0.46496","0.48284","0.87296" +"GO:0034032","purine nucleoside bisphosphate metabolic...",11,7,6.33,649,"0.46496","0.48284","0.87296" +"GO:0045860","positive regulation of protein kinase ac...",13,6,7.48,1670,"0.86685","0.87301","0.87301" +"GO:0044238","primary metabolic process",1557,897,895.84,654,"0.47944","0.53935","0.87329" +"GO:0031589","cell-substrate adhesion",13,6,7.48,1671,"0.86685","0.87356","0.87356" +"GO:0001709","cell fate determination",7,2,4.03,2503,"0.97405","0.87431","0.87431" +"GO:0009247","glycolipid biosynthetic process",11,4,6.33,2338,"0.95763","0.87476","0.87476" +"GO:0016579","protein deubiquitination",16,6,9.21,2468,"0.96940","0.87536","0.87536" +"GO:0031123","RNA 3'-end processing",12,6,6.9,1590,"0.79525","0.87548","0.87548" +"GO:0006301","postreplication repair",4,2,2.3,1541,"0.79143","0.87586","0.87586" +"GO:1903046","meiotic cell cycle process",14,7,8.06,1605,"0.80106","0.87602","0.87602" +"GO:0009636","response to toxic substance",26,14,14.96,1259,"0.72145","0.87637","0.87637" +"GO:0010817","regulation of hormone levels",26,13,14.96,1642,"0.83665","0.87637","0.87637" +"GO:0006487","protein N-linked glycosylation",6,2,3.45,2276,"0.94666","0.87647","0.87647" +"GO:0031334","positive regulation of protein complex a...",21,9,12.08,2242,"0.94300","0.87655","0.87655" +"GO:0007264","small GTPase mediated signal transductio...",44,18,25.32,2667,"0.99154","0.87742","0.87742" +"GO:0044249","cellular biosynthetic process",773,449,444.76,499,"0.37437","0.27514","0.87751" +"GO:0051246","regulation of protein metabolic process",134,62,77.1,2752,"0.99727","0.87779","0.87779" +"GO:0008630","intrinsic apoptotic signaling pathway in...",6,4,3.45,708,"0.49329","0.87806","0.87806" +"GO:1902229","regulation of intrinsic apoptotic signal...",6,4,3.45,709,"0.49329","0.87806","0.87806" +"GO:0030155","regulation of cell adhesion",17,9,9.78,1273,"0.73767","0.87852","0.87852" +"GO:1903827","regulation of cellular protein localizat...",26,12,14.96,1907,"0.91531","0.87867","0.87867" +"GO:0042559","pteridine-containing compound biosynthet...",3,1,1.73,2077,"0.92354","0.87868","0.87868" +"GO:0007405","neuroblast proliferation",6,2,3.45,2277,"0.94666","0.87886","0.87886" +"GO:1900407","regulation of cellular response to oxida...",6,3,3.45,1353,"0.78526","0.87886","0.87886" +"GO:1900408","negative regulation of cellular response...",6,3,3.45,1354,"0.78526","0.87886","0.87886" +"GO:1902883","negative regulation of response to oxida...",6,3,3.45,1355,"0.78526","0.87886","0.87886" +"GO:1903201","regulation of oxidative stress-induced c...",6,3,3.45,1356,"0.78526","0.87886","0.87886" +"GO:1903202","negative regulation of oxidative stress-...",6,3,3.45,1357,"0.78526","0.87886","0.87886" +"GO:0030183","B cell differentiation",3,1,1.73,2078,"0.92354","0.87924","0.87924" +"GO:0016485","protein processing",8,3,4.6,2217,"0.93342","0.87940","0.87940" +"GO:0016266","O-glycan processing",6,2,3.45,2278,"0.94666","0.87965","0.87965" +"GO:0060548","negative regulation of cell death",42,19,24.17,2363,"0.96189","0.88028","0.88028" +"GO:0022406","membrane docking",8,2,4.6,2625,"0.98759","0.88031","0.88031" +"GO:0001707","mesoderm formation",4,2,2.3,1542,"0.79143","0.88105","0.88105" +"GO:0030282","bone mineralization",4,2,2.3,1543,"0.79143","0.88105","0.88105" +"GO:0048332","mesoderm morphogenesis",4,2,2.3,1544,"0.79143","0.88105","0.88105" +"GO:0032042","mitochondrial DNA metabolic process",3,2,1.73,1044,"0.61223","0.88147","0.88147" +"GO:0044271","cellular nitrogen compound biosynthetic ...",617,359,355,498,"0.37355","0.04240","0.88179" +"GO:0034329","cell junction assembly",12,4,6.9,2532,"0.97667","0.88222","0.88222" +"GO:0045732","positive regulation of protein catabolic...",10,5,5.75,1405,"0.79006","0.88230","0.88230" +"GO:0051234","establishment of localization",563,323,323.93,770,"0.55486","0.73624","0.88258" +"GO:0031349","positive regulation of defense response",16,8,9.21,1616,"0.80712","0.88314","0.88314" +"GO:0031323","regulation of cellular metabolic process",448,220,257.76,2877,"0.99997","0.88327","0.88327" +"GO:0032269","negative regulation of cellular protein ...",43,19,24.74,2491,"0.97319","0.88349","0.88349" +"GO:0007608","sensory perception of smell",4,2,2.3,1545,"0.79143","0.88361","0.88361" +"GO:0002009","morphogenesis of an epithelium",52,24,29.92,2388,"0.96477","0.88395","0.88395" +"GO:0043900","regulation of multi-organism process",21,10,12.08,1733,"0.87339","0.88438","0.88438" +"GO:0031396","regulation of protein ubiquitination",16,9,9.21,1133,"0.64339","0.88441","0.88441" +"GO:1903320","regulation of protein modification by sm...",16,9,9.21,1134,"0.64339","0.88441","0.88441" +"GO:1901032","negative regulation of response to react...",3,1,1.73,2079,"0.92354","0.88534","0.88534" +"GO:1903205","regulation of hydrogen peroxide-induced ...",3,1,1.73,2080,"0.92354","0.88534","0.88534" +"GO:1903206","negative regulation of hydrogen peroxide...",3,1,1.73,2081,"0.92354","0.88534","0.88534" +"GO:2001038","regulation of cellular response to drug",3,1,1.73,2082,"0.92354","0.88534","0.88534" +"GO:2001039","negative regulation of cellular response...",3,1,1.73,2083,"0.92354","0.88534","0.88534" +"GO:0043392","negative regulation of DNA binding",3,0,1.73,2912,"1.00000","0.88534","0.88534" +"GO:0042558","pteridine-containing compound metabolic ...",5,2,2.88,1826,"0.89286","0.88556","0.88556" +"GO:0010975","regulation of neuron projection developm...",25,10,14.38,2526,"0.97586","0.88597","0.88597" +"GO:0044782","cilium organization",20,9,11.51,1879,"0.91316","0.88639","0.88639" +"GO:0030261","chromosome condensation",6,2,3.45,2279,"0.94666","0.88669","0.88669" +"GO:0034470","ncRNA processing",72,41,41.43,811,"0.59056","0.88682","0.88682" +"GO:0043903","regulation of symbiosis, encompassing mu...",13,6,7.48,1672,"0.86685","0.88769","0.88769" +"GO:0009225","nucleotide-sugar metabolic process",4,2,2.3,1546,"0.79143","0.88804","0.88804" +"GO:0051258","protein polymerization",29,14,16.69,1778,"0.88503","0.88836","0.88836" +"GO:0006826","iron ion transport",3,1,1.73,2084,"0.92354","0.88861","0.88861" +"GO:0031398","positive regulation of protein ubiquitin...",12,7,6.9,825,"0.59839","0.88881","0.88881" +"GO:1903322","positive regulation of protein modificat...",12,7,6.9,826,"0.59839","0.88881","0.88881" +"GO:0032943","mononuclear cell proliferation",7,2,4.03,2504,"0.97405","0.88981","0.88981" +"GO:0046651","lymphocyte proliferation",7,2,4.03,2505,"0.97405","0.88981","0.88981" +"GO:0070661","leukocyte proliferation",7,2,4.03,2506,"0.97405","0.88981","0.88981" +"GO:0006281","DNA repair",62,35,35.67,1054,"0.62173","0.89050","0.89050" +"GO:0007017","microtubule-based process",58,27,33.37,2391,"0.96678","0.89050","0.89050" +"GO:0007525","somatic muscle development",4,2,2.3,1547,"0.79143","0.89054","0.89054" +"GO:0045862","positive regulation of proteolysis",13,7,7.48,1254,"0.71172","0.89064","0.89064" +"GO:0032252","secretory granule localization",3,1,1.73,2085,"0.92354","0.89077","0.89077" +"GO:0032253","dense core granule localization",3,1,1.73,2086,"0.92354","0.89077","0.89077" +"GO:1901950","dense core granule transport",3,1,1.73,2087,"0.92354","0.89077","0.89077" +"GO:0065008","regulation of biological quality",213,105,122.55,2725,"0.99523","0.89110","0.89110" +"GO:0045747","positive regulation of Notch signaling p...",6,1,3.45,2696,"0.99418","0.89129","0.89129" +"GO:0009259","ribonucleotide metabolic process",61,41,35.1,103,"0.07726","0.13206","0.89174" +"GO:0045088","regulation of innate immune response",20,9,11.51,1880,"0.91316","0.89199","0.89199" +"GO:0048584","positive regulation of response to stimu...",88,41,50.63,2611,"0.98639","0.89206","0.89206" +"GO:0043090","amino acid import",3,1,1.73,2088,"0.92354","0.89238","0.89238" +"GO:0055076","transition metal ion homeostasis",9,4,5.18,1711,"0.87099","0.89253","0.89253" +"GO:0030587","sorocarp development",6,2,3.45,2280,"0.94666","0.89280","0.89280" +"GO:0051703","intraspecies interaction between organis...",6,2,3.45,2281,"0.94666","0.89280","0.89280" +"GO:0090702","non-reproductive fruiting body developme...",6,2,3.45,2282,"0.94666","0.89280","0.89280" +"GO:0099120","socially cooperative development",6,2,3.45,2283,"0.94666","0.89280","0.89280" +"GO:0031929","TOR signaling",8,4,4.6,1391,"0.78620","0.89281","0.89281" +"GO:0032332","positive regulation of chondrocyte diffe...",3,1,1.73,2089,"0.92354","0.89292","0.89292" +"GO:0048708","astrocyte differentiation",3,1,1.73,2090,"0.92354","0.89292","0.89292" +"GO:0061036","positive regulation of cartilage develop...",3,1,1.73,2091,"0.92354","0.89292","0.89292" +"GO:0072497","mesenchymal stem cell differentiation",3,1,1.73,2092,"0.92354","0.89292","0.89292" +"GO:2000738","positive regulation of stem cell differe...",3,1,1.73,2093,"0.92354","0.89292","0.89292" +"GO:2000739","regulation of mesenchymal stem cell diff...",3,1,1.73,2094,"0.92354","0.89292","0.89292" +"GO:2000741","positive regulation of mesenchymal stem ...",3,1,1.73,2095,"0.92354","0.89292","0.89292" +"GO:0051693","actin filament capping",4,1,2.3,2421,"0.96758","0.89363","0.89363" +"GO:0006493","protein O-linked glycosylation",16,6,9.21,2469,"0.96940","0.89381","0.89381" +"GO:1901215","negative regulation of neuron death",8,3,4.6,2218,"0.93342","0.89455","0.89455" +"GO:0044706","multi-multicellular organism process",9,4,5.18,1712,"0.87099","0.89468","0.89468" +"GO:0060271","cilium assembly",19,8,10.93,2244,"0.94420","0.89581","0.89581" +"GO:0001501","skeletal system development",18,6,10.36,2652,"0.98977","0.89592","0.89592" +"GO:0007275","multicellular organism development",305,163,175.49,2245,"0.94429","0.89595","0.89595" +"GO:0043065","positive regulation of apoptotic process",22,12,12.66,1226,"0.69433","0.89622","0.89622" +"GO:0043068","positive regulation of programmed cell d...",22,12,12.66,1227,"0.69433","0.89622","0.89622" +"GO:0007568","aging",25,10,14.38,2527,"0.97586","0.89624","0.89624" +"GO:0009994","oocyte differentiation",6,2,3.45,2284,"0.94666","0.89655","0.89655" +"GO:0034660","ncRNA metabolic process",99,58,56.96,624,"0.45749","0.89750","0.89750" +"GO:0051241","negative regulation of multicellular org...",37,12,21.29,2846,"0.99946","0.89753","0.89753" +"GO:0043280","positive regulation of cysteine-type end...",3,1,1.73,2096,"0.92354","0.89768","0.89768" +"GO:1902231","positive regulation of intrinsic apoptot...",3,2,1.73,1045,"0.61223","0.89768","0.89768" +"GO:2001244","positive regulation of intrinsic apoptot...",3,2,1.73,1046,"0.61223","0.89768","0.89768" +"GO:0048729","tissue morphogenesis",58,28,33.37,2232,"0.94180","0.89798","0.89798" +"GO:0031345","negative regulation of cell projection o...",8,2,4.6,2626,"0.98759","0.89799","0.89799" +"GO:0048640","negative regulation of developmental gro...",8,2,4.6,2627,"0.98759","0.89799","0.89799" +"GO:0034698","response to gonadotropin",5,2,2.88,1827,"0.89286","0.89801","0.89801" +"GO:0016050","vesicle organization",17,7,9.78,2252,"0.94605","0.89816","0.89816" +"GO:0009888","tissue development",117,58,67.32,2466,"0.96916","0.89848","0.89848" +"GO:0009798","axis specification",13,5,7.48,2317,"0.95247","0.89964","0.89964" +"GO:0060255","regulation of macromolecule metabolic pr...",460,235,264.67,2832,"0.99905","0.89974","0.89974" +"GO:0031570","DNA integrity checkpoint",9,4,5.18,1713,"0.87099","0.89983","0.89983" +"GO:0006355","regulation of transcription, DNA-templat...",313,157,180.09,2785,"0.99783","0.89994","0.89994" +"GO:0080134","regulation of response to stress",66,30,37.97,2560,"0.98316","0.90032","0.90032" +"GO:0010468","regulation of gene expression",380,195,218.64,2742,"0.99640","0.90045","0.90045" +"GO:1903506","regulation of nucleic acid-templated tra...",314,157,180.66,2798,"0.99824","0.90071","0.90071" +"GO:0010257","NADH dehydrogenase complex assembly",10,6,5.75,794,"0.57035","0.90091","0.90091" +"GO:0032981","mitochondrial respiratory chain complex ...",10,6,5.75,795,"0.57035","0.90091","0.90091" +"GO:0043604","amide biosynthetic process",186,142,107.02,3,"2.4e-08","2.1e-09","0.90104" +"GO:2001141","regulation of RNA biosynthetic process",315,158,181.24,2788,"0.99790","0.90147","0.90147" +"GO:0006997","nucleus organization",9,5,5.18,1221,"0.68020","0.90163","0.90163" +"GO:0000375","RNA splicing, via transesterification re...",43,22,24.74,1649,"0.84319","0.90213","0.90213" +"GO:0000377","RNA splicing, via transesterification re...",43,22,24.74,1650,"0.84319","0.90213","0.90213" +"GO:0000398","mRNA splicing, via spliceosome",43,22,24.74,1651,"0.84319","0.90213","0.90213" +"GO:0003407","neural retina development",11,4,6.33,2339,"0.95763","0.90268","0.90268" +"GO:0048593","camera-type eye morphogenesis",20,7,11.51,2644,"0.98826","0.90285","0.90285" +"GO:0008104","protein localization",199,102,114.5,2486,"0.97309","0.90339","0.90339" +"GO:0098656","anion transmembrane transport",21,12,12.08,830,"0.60551","0.90370","0.90370" +"GO:0051321","meiotic cell cycle",16,7,9.21,1896,"0.91426","0.90465","0.90465" +"GO:0000077","DNA damage checkpoint",5,1,2.88,2580,"0.98626","0.90467","0.90467" +"GO:0009100","glycoprotein metabolic process",41,19,23.59,2254,"0.94662","0.90480","0.90480" +"GO:0032878","regulation of establishment or maintenan...",4,2,2.3,1548,"0.79143","0.90504","0.90504" +"GO:2000114","regulation of establishment of cell pola...",4,2,2.3,1549,"0.79143","0.90504","0.90504" +"GO:0018193","peptidyl-amino acid modification",73,40,42,1269,"0.72693","0.90556","0.90556" +"GO:0001819","positive regulation of cytokine producti...",10,4,5.75,2193,"0.92495","0.90559","0.90559" +"GO:0051272","positive regulation of cellular componen...",10,3,5.75,2551,"0.98165","0.90559","0.90559" +"GO:0006310","DNA recombination",18,10,10.36,1192,"0.66210","0.90566","0.90566" +"GO:0012501","programmed cell death",82,38,47.18,2572,"0.98549","0.90572","0.90572" +"GO:0005976","polysaccharide metabolic process",9,3,5.18,2377,"0.96464","0.90605","0.90605" +"GO:0018210","peptidyl-threonine modification",9,5,5.18,1222,"0.68020","0.90605","0.90605" +"GO:0001678","cellular glucose homeostasis",4,2,2.3,1550,"0.79143","0.90621","0.90621" +"GO:0006939","smooth muscle contraction",4,1,2.3,2422,"0.96758","0.90621","0.90621" +"GO:0035773","insulin secretion involved in cellular r...",4,2,2.3,1551,"0.79143","0.90621","0.90621" +"GO:0071326","cellular response to monosaccharide stim...",4,2,2.3,1552,"0.79143","0.90621","0.90621" +"GO:0071331","cellular response to hexose stimulus",4,2,2.3,1553,"0.79143","0.90621","0.90621" +"GO:0071333","cellular response to glucose stimulus",4,2,2.3,1554,"0.79143","0.90621","0.90621" +"GO:0030203","glycosaminoglycan metabolic process",5,2,2.88,1828,"0.89286","0.90663","0.90663" +"GO:0030154","cell differentiation",201,108,115.65,1780,"0.88614","0.90698","0.90698" +"GO:0001655","urogenital system development",16,7,9.21,1897,"0.91426","0.90699","0.90699" +"GO:0031058","positive regulation of histone modificat...",7,2,4.03,2507,"0.97405","0.90713","0.90713" +"GO:0043524","negative regulation of neuron apoptotic ...",7,2,4.03,2508,"0.97405","0.90713","0.90713" +"GO:0048706","embryonic skeletal system development",7,2,4.03,2509,"0.97405","0.90713","0.90713" +"GO:1905269","positive regulation of chromatin organiz...",7,2,4.03,2510,"0.97405","0.90713","0.90713" +"GO:0032268","regulation of cellular protein metabolic...",123,55,70.77,2814,"0.99872","0.90775","0.90775" +"GO:0043086","negative regulation of catalytic activit...",30,16,17.26,1280,"0.74481","0.90814","0.90814" +"GO:0051173","positive regulation of nitrogen compound...",126,63,72.5,2394,"0.96688","0.90817","0.90817" +"GO:1901576","organic substance biosynthetic process",789,459,453.96,448,"0.34972","0.18249","0.90855" +"GO:0009892","negative regulation of metabolic process",136,67,78.25,2545,"0.98128","0.90856","0.90856" +"GO:0007399","nervous system development",151,71,86.88,2750,"0.99709","0.90869","0.90869" +"GO:0048015","phosphatidylinositol-mediated signaling",4,2,2.3,1555,"0.79143","0.90911","0.90911" +"GO:0048017","inositol lipid-mediated signaling",4,2,2.3,1556,"0.79143","0.90911","0.90911" +"GO:0044255","cellular lipid metabolic process",110,58,63.29,1729,"0.87259","0.90915","0.90915" +"GO:0051640","organelle localization",42,19,24.17,2364,"0.96189","0.90931","0.90931" +"GO:2001243","negative regulation of intrinsic apoptot...",9,4,5.18,1714,"0.87099","0.90953","0.90953" +"GO:0050803","regulation of synapse structure or activ...",17,6,9.78,2555,"0.98214","0.90955","0.90955" +"GO:0050807","regulation of synapse organization",17,6,9.78,2556,"0.98214","0.90955","0.90955" +"GO:0032101","regulation of response to external stimu...",14,6,8.06,1910,"0.91619","0.90976","0.90976" +"GO:1903311","regulation of mRNA metabolic process",14,6,8.06,1911,"0.91619","0.90976","0.90976" +"GO:0051239","regulation of multicellular organismal p...",128,60,73.65,2724,"0.99500","0.91015","0.91015" +"GO:0010564","regulation of cell cycle process",44,22,25.32,1773,"0.87926","0.91069","0.91069" +"GO:0006779","porphyrin-containing compound biosynthet...",5,2,2.88,1829,"0.89286","0.91114","0.91114" +"GO:0051252","regulation of RNA metabolic process",329,165,189.29,2804,"0.99833","0.91159","0.91159" +"GO:0010604","positive regulation of macromolecule met...",130,66,74.8,2326,"0.95393","0.91207","0.91207" +"GO:0030433","ubiquitin-dependent ERAD pathway",7,3,4.03,1749,"0.87821","0.91223","0.91223" +"GO:0016197","endosomal transport",24,9,13.81,2574,"0.98579","0.91253","0.91253" +"GO:0031122","cytoplasmic microtubule organization",4,2,2.3,1557,"0.79143","0.91254","0.91254" +"GO:0006468","protein phosphorylation",172,84,98.96,2671,"0.99288","0.91285","0.91285" +"GO:0007308","oocyte construction",5,2,2.88,1830,"0.89286","0.91305","0.91305" +"GO:0007309","oocyte axis specification",5,2,2.88,1831,"0.89286","0.91305","0.91305" +"GO:0048599","oocyte development",5,2,2.88,1832,"0.89286","0.91305","0.91305" +"GO:0010972","negative regulation of G2/M transition o...",4,2,2.3,1558,"0.79143","0.91310","0.91310" +"GO:1902750","negative regulation of cell cycle G2/M p...",4,2,2.3,1559,"0.79143","0.91310","0.91310" +"GO:0031347","regulation of defense response",22,10,12.66,1890,"0.91352","0.91376","0.91376" +"GO:0031400","negative regulation of protein modificat...",35,15,20.14,2489,"0.97317","0.91378","0.91378" +"GO:0000082","G1/S transition of mitotic cell cycle",12,7,6.9,827,"0.59839","0.91456","0.91456" +"GO:0048513","animal organ development",195,101,112.2,2353,"0.96014","0.91470","0.91470" +"GO:0051216","cartilage development",9,4,5.18,1715,"0.87099","0.91492","0.91492" +"GO:1902532","negative regulation of intracellular sig...",29,12,16.69,2523,"0.97428","0.91494","0.91494" +"GO:0043984","histone H4-K16 acetylation",3,2,1.73,1047,"0.61223","0.91580","0.91580" +"GO:0051494","negative regulation of cytoskeleton orga...",13,5,7.48,2318,"0.95247","0.91595","0.91595" +"GO:1902904","negative regulation of supramolecular fi...",13,6,7.48,1673,"0.86685","0.91595","0.91595" +"GO:0001701","in utero embryonic development",23,12,13.23,1298,"0.76973","0.91605","0.91605" +"GO:0044264","cellular polysaccharide metabolic proces...",8,3,4.6,2219,"0.93342","0.91607","0.91607" +"GO:0043966","histone H3 acetylation",5,3,2.88,1120,"0.63928","0.91618","0.91618" +"GO:0048856","anatomical structure development",331,176,190.44,2358,"0.96142","0.91622","0.91622" +"GO:0016202","regulation of striated muscle tissue dev...",7,3,4.03,1750,"0.87821","0.91637","0.91637" +"GO:0048634","regulation of muscle organ development",7,3,4.03,1751,"0.87821","0.91637","0.91637" +"GO:1901861","regulation of muscle tissue development",7,3,4.03,1752,"0.87821","0.91637","0.91637" +"GO:0031325","positive regulation of cellular metaboli...",135,69,77.67,2310,"0.94874","0.91662","0.91662" +"GO:0048507","meristem development",7,2,4.03,2511,"0.97405","0.91669","0.91669" +"GO:0030518","intracellular steroid hormone receptor s...",8,2,4.6,2628,"0.98759","0.91685","0.91685" +"GO:0008380","RNA splicing",52,26,29.92,1864,"0.89414","0.91775","0.91775" +"GO:0032102","negative regulation of response to exter...",5,2,2.88,1833,"0.89286","0.91804","0.91804" +"GO:0010721","negative regulation of cell development",18,8,10.36,1886,"0.91335","0.91813","0.91813" +"GO:1901700","response to oxygen-containing compound",68,33,39.12,2311,"0.94939","0.91817","0.91817" +"GO:2000241","regulation of reproductive process",11,5,6.33,1693,"0.86775","0.91821","0.91821" +"GO:0019219","regulation of nucleobase-containing comp...",339,171,195.05,2789,"0.99793","0.91825","0.91825" +"GO:0050684","regulation of mRNA processing",7,2,4.03,2512,"0.97405","0.91836","0.91836" +"GO:0008283","cell proliferation",68,31,39.12,2564,"0.98343","0.91857","0.91857" +"GO:0050896","response to stimulus",655,329,376.86,2886,"0.99999","0.78352","0.91872" +"GO:0007610","behavior",46,21,26.47,2369,"0.96293","0.91887","0.91887" +"GO:0070374","positive regulation of ERK1 and ERK2 cas...",3,0,1.73,2913,"1.00000","0.91914","0.91914" +"GO:1901701","cellular response to oxygen-containing c...",43,21,24.74,1870,"0.90574","0.92056","0.92056" +"GO:0009101","glycoprotein biosynthetic process",38,18,21.86,2187,"0.92462","0.92071","0.92071" +"GO:0010605","negative regulation of macromolecule met...",132,64,75.95,2616,"0.98729","0.92130","0.92130" +"GO:0019438","aromatic compound biosynthetic process",430,218,247.41,2837,"0.99922","0.92969","0.92161" +"GO:0090130","tissue migration",10,4,5.75,2194,"0.92495","0.92162","0.92162" +"GO:0090132","epithelium migration",10,4,5.75,2195,"0.92495","0.92162","0.92162" +"GO:0007350","blastoderm segmentation",5,2,2.88,1834,"0.89286","0.92170","0.92170" +"GO:0006448","regulation of translational elongation",6,3,3.45,1358,"0.78526","0.92187","0.92187" +"GO:0044774","mitotic DNA integrity checkpoint",4,1,2.3,2423,"0.96758","0.92301","0.92301" +"GO:0007032","endosome organization",3,1,1.73,2097,"0.92354","0.92382","0.92382" +"GO:0008333","endosome to lysosome transport",3,0,1.73,2914,"1.00000","0.92382","0.92382" +"GO:0045137","development of primary sexual characteri...",13,5,7.48,2319,"0.95247","0.92383","0.92383" +"GO:0045927","positive regulation of growth",12,7,6.9,828,"0.59839","0.92404","0.92404" +"GO:0065007","biological regulation",981,500,564.43,2893,"1.00000","0.92435","0.92435" +"GO:0034103","regulation of tissue remodeling",4,2,2.3,1560,"0.79143","0.92461","0.92461" +"GO:0060429","epithelium development",74,36,42.58,2325,"0.95353","0.92476","0.92476" +"GO:0033036","macromolecule localization",235,126,135.21,1876,"0.90953","0.92509","0.92509" +"GO:0006885","regulation of pH",4,2,2.3,1561,"0.79143","0.92567","0.92567" +"GO:0055067","monovalent inorganic cation homeostasis",4,2,2.3,1562,"0.79143","0.92567","0.92567" +"GO:0044237","cellular metabolic process",1535,897,883.18,191,"0.15096","0.26987","0.92570" +"GO:2001020","regulation of response to DNA damage sti...",13,7,7.48,1255,"0.71172","0.92604","0.92604" +"GO:0000271","polysaccharide biosynthetic process",7,1,4.03,2768,"0.99754","0.92619","0.92619" +"GO:0034637","cellular carbohydrate biosynthetic proce...",7,1,4.03,2769,"0.99754","0.92619","0.92619" +"GO:0007601","visual perception",13,5,7.48,2320,"0.95247","0.92640","0.92640" +"GO:0043401","steroid hormone mediated signaling pathw...",19,6,10.93,2718,"0.99425","0.92652","0.92652" +"GO:1900037","regulation of cellular response to hypox...",3,1,1.73,2098,"0.92354","0.92702","0.92702" +"GO:0009893","positive regulation of metabolic process",148,76,85.15,2312,"0.95003","0.92707","0.92707" +"GO:0006974","cellular response to DNA damage stimulus",89,49,51.21,1260,"0.72347","0.92722","0.92722" +"GO:0018130","heterocycle biosynthetic process",441,227,253.73,2786,"0.99783","0.93509","0.92753" +"GO:0006351","transcription, DNA-templated",355,172,204.25,2862,"0.99991","0.92804","0.92804" +"GO:0051641","cellular localization",241,122,138.66,2654,"0.99014","0.92809","0.92809" +"GO:0045892","negative regulation of transcription, DN...",62,27,35.67,2664,"0.99108","0.92824","0.92824" +"GO:0097659","nucleic acid-templated transcription",356,172,204.83,2867,"0.99993","0.92862","0.92862" +"GO:0006986","response to unfolded protein",9,4,5.18,1716,"0.87099","0.92946","0.92946" +"GO:0001822","kidney development",12,5,6.9,1922,"0.91954","0.92950","0.92950" +"GO:0019222","regulation of metabolic process",485,248,279.05,2839,"0.99927","0.92957","0.92957" +"GO:0006760","folic acid-containing compound metabolic...",3,1,1.73,2099,"0.92354","0.92972","0.92972" +"GO:0007423","sensory organ development",70,36,40.28,1769,"0.87861","0.92977","0.92977" +"GO:0072665","protein localization to vacuole",5,1,2.88,2581,"0.98626","0.92995","0.92995" +"GO:0072666","establishment of protein localization to...",5,1,2.88,2582,"0.98626","0.92995","0.92995" +"GO:0097352","autophagosome maturation",5,1,2.88,2583,"0.98626","0.92995","0.92995" +"GO:0034720","histone H3-K4 demethylation",3,1,1.73,2100,"0.92354","0.93017","0.93017" +"GO:0032774","RNA biosynthetic process",359,175,206.56,2859,"0.99987","0.93033","0.93033" +"GO:0140053","mitochondrial gene expression",13,7,7.48,1256,"0.71172","0.93065","0.93065" +"GO:0034976","response to endoplasmic reticulum stress",19,9,10.93,1702,"0.87092","0.93075","0.93075" +"GO:0009887","animal organ morphogenesis",79,41,45.45,1734,"0.87343","0.93098","0.93098" +"GO:0050953","sensory perception of light stimulus",14,6,8.06,1912,"0.91619","0.93111","0.93111" +"GO:0060042","retina morphogenesis in camera-type eye",14,5,8.06,2478,"0.97263","0.93111","0.93111" +"GO:0006486","protein glycosylation",36,17,20.71,1927,"0.92288","0.93111","0.93111" +"GO:0043413","macromolecule glycosylation",36,17,20.71,1928,"0.92288","0.93111","0.93111" +"GO:0070085","glycosylation",36,17,20.71,1929,"0.92288","0.93111","0.93111" +"GO:0009755","hormone-mediated signaling pathway",20,7,11.51,2645,"0.98826","0.93130","0.93130" +"GO:0051084","'de novo' posttranslational protein fold...",7,3,4.03,1753,"0.87821","0.93138","0.93138" +"GO:0043244","regulation of protein complex disassembl...",10,6,5.75,796,"0.57035","0.93158","0.93158" +"GO:0110096","cellular response to aldehyde",4,1,2.3,2424,"0.96758","0.93188","0.93188" +"GO:0007179","transforming growth factor beta receptor...",6,3,3.45,1359,"0.78526","0.93213","0.93213" +"GO:0048518","positive regulation of biological proces...",309,153,177.79,2820,"0.99894","0.93249","0.93249" +"GO:0016574","histone ubiquitination",5,2,2.88,1835,"0.89286","0.93279","0.93279" +"GO:2001234","negative regulation of apoptotic signali...",14,5,8.06,2479,"0.97263","0.93301","0.93301" +"GO:0048588","developmental cell growth",11,4,6.33,2340,"0.95763","0.93301","0.93301" +"GO:0006022","aminoglycan metabolic process",38,29,21.86,41,"0.01233","6.3e-05","0.93310" +"GO:0045598","regulation of fat cell differentiation",5,3,2.88,1121,"0.63928","0.93392","0.93392" +"GO:0051049","regulation of transport",74,35,42.58,2476,"0.97231","0.93428","0.93428" +"GO:0032006","regulation of TOR signaling",7,3,4.03,1754,"0.87821","0.93433","0.93433" +"GO:1901362","organic cyclic compound biosynthetic pro...",456,238,262.37,2723,"0.99492","0.94195","0.93505" +"GO:0006367","transcription initiation from RNA polyme...",11,2,6.33,2815,"0.99874","0.93520","0.93520" +"GO:0008406","gonad development",11,4,6.33,2341,"0.95763","0.93520","0.93520" +"GO:0042462","eye photoreceptor cell development",14,6,8.06,1913,"0.91619","0.93568","0.93568" +"GO:0001751","compound eye photoreceptor cell differen...",9,4,5.18,1717,"0.87099","0.93578","0.93578" +"GO:0045087","innate immune response",30,13,17.26,2355,"0.96072","0.93619","0.93619" +"GO:1905515","non-motile cilium assembly",3,1,1.73,2101,"0.92354","0.93626","0.93626" +"GO:0030042","actin filament depolymerization",7,3,4.03,1755,"0.87821","0.93640","0.93640" +"GO:0005977","glycogen metabolic process",6,2,3.45,2285,"0.94666","0.93641","0.93641" +"GO:0006073","cellular glucan metabolic process",6,2,3.45,2286,"0.94666","0.93641","0.93641" +"GO:0006112","energy reserve metabolic process",6,2,3.45,2287,"0.94666","0.93641","0.93641" +"GO:0033692","cellular polysaccharide biosynthetic pro...",6,1,3.45,2697,"0.99418","0.93641","0.93641" +"GO:0044042","glucan metabolic process",6,2,3.45,2288,"0.94666","0.93641","0.93641" +"GO:0042325","regulation of phosphorylation",70,28,40.28,2833,"0.99906","0.93647","0.93647" +"GO:0050789","regulation of biological process",927,475,533.36,2891,"1.00000","0.93705","0.93705" +"GO:0002431","Fc receptor mediated stimulatory signali...",3,2,1.73,1048,"0.61223","0.93712","0.93712" +"GO:0002526","acute inflammatory response",3,2,1.73,1049,"0.61223","0.93712","0.93712" +"GO:0006953","acute-phase response",3,2,1.73,1050,"0.61223","0.93712","0.93712" +"GO:0045576","mast cell activation",3,2,1.73,1051,"0.61223","0.93712","0.93712" +"GO:0016310","phosphorylation",214,109,123.13,2554,"0.98206","0.93722","0.93722" +"GO:0050794","regulation of cellular process",869,437,499.99,2894,"1.00000","0.93743","0.93743" +"GO:0042493","response to drug",45,22,25.89,1874,"0.90848","0.93745","0.93745" +"GO:0001959","regulation of cytokine-mediated signalin...",3,1,1.73,2102,"0.92354","0.93754","0.93754" +"GO:0001961","positive regulation of cytokine-mediated...",3,1,1.73,2103,"0.92354","0.93754","0.93754" +"GO:0002052","positive regulation of neuroblast prolif...",3,1,1.73,2104,"0.92354","0.93754","0.93754" +"GO:0007632","visual behavior",3,1,1.73,2105,"0.92354","0.93754","0.93754" +"GO:0008542","visual learning",3,1,1.73,2106,"0.92354","0.93754","0.93754" +"GO:0010634","positive regulation of epithelial cell m...",3,1,1.73,2107,"0.92354","0.93754","0.93754" +"GO:0033962","cytoplasmic mRNA processing body assembl...",3,1,1.73,2108,"0.92354","0.93754","0.93754" +"GO:0035215","genital disc development",3,1,1.73,2109,"0.92354","0.93754","0.93754" +"GO:0060759","regulation of response to cytokine stimu...",3,1,1.73,2110,"0.92354","0.93754","0.93754" +"GO:0060760","positive regulation of response to cytok...",3,1,1.73,2111,"0.92354","0.93754","0.93754" +"GO:0071260","cellular response to mechanical stimulus",3,1,1.73,2112,"0.92354","0.93754","0.93754" +"GO:2000179","positive regulation of neural precursor ...",3,1,1.73,2113,"0.92354","0.93754","0.93754" +"GO:2000648","positive regulation of stem cell prolife...",3,1,1.73,2114,"0.92354","0.93754","0.93754" +"GO:0001654","eye development",61,29,35.1,2333,"0.95730","0.93757","0.93757" +"GO:0048880","sensory system development",61,29,35.1,2334,"0.95730","0.93757","0.93757" +"GO:0150063","visual system development",61,29,35.1,2335,"0.95730","0.93757","0.93757" +"GO:0006265","DNA topological change",4,1,2.3,2425,"0.96758","0.93785","0.93785" +"GO:1903828","negative regulation of cellular protein ...",8,4,4.6,1392,"0.78620","0.93821","0.93821" +"GO:0010824","regulation of centrosome duplication",4,0,2.3,2915,"1.00000","0.93834","0.93834" +"GO:0046605","regulation of centrosome cycle",4,0,2.3,2916,"1.00000","0.93834","0.93834" +"GO:0042981","regulation of apoptotic process",57,25,32.8,2613,"0.98722","0.93845","0.93845" +"GO:0007020","microtubule nucleation",6,3,3.45,1360,"0.78526","0.93880","0.93880" +"GO:0051179","localization",631,354,363.05,1622,"0.80958","0.82619","0.93937" +"GO:0045926","negative regulation of growth",16,6,9.21,2470,"0.96940","0.93953","0.93953" +"GO:0007389","pattern specification process",34,12,19.56,2761,"0.99746","0.93964","0.93964" +"GO:0048732","gland development",14,6,8.06,1914,"0.91619","0.93986","0.93986" +"GO:0042461","photoreceptor cell development",15,7,8.63,1687,"0.86739","0.94000","0.94000" +"GO:0070897","transcription preinitiation complex asse...",7,1,4.03,2770,"0.99754","0.94016","0.94016" +"GO:0046545","development of primary female sexual cha...",4,2,2.3,1563,"0.79143","0.94027","0.94027" +"GO:0046660","female sex differentiation",4,2,2.3,1564,"0.79143","0.94027","0.94027" +"GO:0045168","cell-cell signaling involved in cell fat...",6,2,3.45,2289,"0.94666","0.94057","0.94057" +"GO:0046331","lateral inhibition",6,2,3.45,2290,"0.94666","0.94057","0.94057" +"GO:0007283","spermatogenesis",28,13,16.11,1917,"0.91658","0.94071","0.94071" +"GO:0042127","regulation of cell proliferation",55,24,31.64,2612,"0.98716","0.94079","0.94079" +"GO:0001503","ossification",10,4,5.75,2196,"0.92495","0.94094","0.94094" +"GO:0007424","open tracheal system development",8,3,4.6,2220,"0.93342","0.94094","0.94094" +"GO:0009266","response to temperature stimulus",18,8,10.36,1887,"0.91335","0.94107","0.94107" +"GO:0051261","protein depolymerization",9,4,5.18,1718,"0.87099","0.94112","0.94112" +"GO:0071219","cellular response to molecule of bacteri...",6,3,3.45,1361,"0.78526","0.94115","0.94115" +"GO:0071222","cellular response to lipopolysaccharide",6,3,3.45,1362,"0.78526","0.94115","0.94115" +"GO:0044818","mitotic G2/M transition checkpoint",3,1,1.73,2115,"0.92354","0.94170","0.94170" +"GO:0045132","meiotic chromosome segregation",3,1,1.73,2116,"0.92354","0.94170","0.94170" +"GO:0044773","mitotic DNA damage checkpoint",3,0,1.73,2917,"1.00000","0.94170","0.94170" +"GO:2000026","regulation of multicellular organismal d...",90,38,51.78,2821,"0.99895","0.94229","0.94229" +"GO:0060341","regulation of cellular localization",45,20,25.89,2493,"0.97337","0.94285","0.94285" +"GO:0061138","morphogenesis of a branching epithelium",7,4,4.03,1182,"0.66133","0.94320","0.94320" +"GO:0009894","regulation of catabolic process",40,21,23.01,1579,"0.79173","0.94332","0.94332" +"GO:0043162","ubiquitin-dependent protein catabolic pr...",4,2,2.3,1565,"0.79143","0.94357","0.94357" +"GO:0007293","germarium-derived egg chamber formation",4,0,2.3,2918,"1.00000","0.94357","0.94357" +"GO:0071985","multivesicular body sorting pathway",4,0,2.3,2919,"1.00000","0.94357","0.94357" +"GO:0006023","aminoglycan biosynthetic process",5,2,2.88,1836,"0.89286","0.94365","0.94365" +"GO:0072006","nephron development",5,1,2.88,2584,"0.98626","0.94365","0.94365" +"GO:0009059","macromolecule biosynthetic process",635,358,365.36,1292,"0.76402","0.53262","0.94365" +"GO:0016482","cytosolic transport",17,5,9.78,2730,"0.99537","0.94427","0.94427" +"GO:2001242","regulation of intrinsic apoptotic signal...",13,6,7.48,1674,"0.86685","0.94434","0.94434" +"GO:0043085","positive regulation of catalytic activit...",43,21,24.74,1871,"0.90574","0.94440","0.94440" +"GO:0032388","positive regulation of intracellular tra...",14,5,8.06,2480,"0.97263","0.94441","0.94441" +"GO:0018991","oviposition",3,1,1.73,2117,"0.92354","0.94494","0.94494" +"GO:0030032","lamellipodium assembly",3,1,1.73,2118,"0.92354","0.94494","0.94494" +"GO:0030307","positive regulation of cell growth",3,1,1.73,2119,"0.92354","0.94494","0.94494" +"GO:0046847","filopodium assembly",3,1,1.73,2120,"0.92354","0.94494","0.94494" +"GO:0051489","regulation of filopodium assembly",3,1,1.73,2121,"0.92354","0.94494","0.94494" +"GO:0097581","lamellipodium organization",3,1,1.73,2122,"0.92354","0.94494","0.94494" +"GO:0046579","positive regulation of Ras protein signa...",3,0,1.73,2920,"1.00000","0.94494","0.94494" +"GO:0051057","positive regulation of small GTPase medi...",3,0,1.73,2921,"1.00000","0.94494","0.94494" +"GO:0048144","fibroblast proliferation",4,1,2.3,2426,"0.96758","0.94542","0.94542" +"GO:0048145","regulation of fibroblast proliferation",4,1,2.3,2427,"0.96758","0.94542","0.94542" +"GO:0001932","regulation of protein phosphorylation",60,24,34.52,2791,"0.99809","0.94549","0.94549" +"GO:0007031","peroxisome organization",11,5,6.33,1694,"0.86775","0.94552","0.94552" +"GO:0045886","negative regulation of synaptic growth a...",5,1,2.88,2585,"0.98626","0.94572","0.94572" +"GO:0051964","negative regulation of synapse assembly",5,1,2.88,2586,"0.98626","0.94572","0.94572" +"GO:1904397","negative regulation of neuromuscular jun...",5,1,2.88,2587,"0.98626","0.94572","0.94572" +"GO:1905809","negative regulation of synapse organizat...",5,1,2.88,2588,"0.98626","0.94572","0.94572" +"GO:0010390","histone monoubiquitination",4,1,2.3,2428,"0.96758","0.94588","0.94588" +"GO:0033522","histone H2A ubiquitination",4,1,2.3,2429,"0.96758","0.94588","0.94588" +"GO:0014070","response to organic cyclic compound",52,21,29.92,2740,"0.99599","0.94589","0.94589" +"GO:0043069","negative regulation of programmed cell d...",35,15,20.14,2490,"0.97317","0.94612","0.94612" +"GO:0007565","female pregnancy",7,3,4.03,1756,"0.87821","0.94643","0.94643" +"GO:0071383","cellular response to steroid hormone sti...",24,8,13.81,2731,"0.99546","0.94651","0.94651" +"GO:0016241","regulation of macroautophagy",5,2,2.88,1837,"0.89286","0.94674","0.94674" +"GO:0031101","fin regeneration",6,2,3.45,2291,"0.94666","0.94685","0.94685" +"GO:0032944","regulation of mononuclear cell prolifera...",6,1,3.45,2698,"0.99418","0.94685","0.94685" +"GO:0042098","T cell proliferation",6,2,3.45,2292,"0.94666","0.94685","0.94685" +"GO:0050670","regulation of lymphocyte proliferation",6,1,3.45,2699,"0.99418","0.94685","0.94685" +"GO:0070663","regulation of leukocyte proliferation",6,1,3.45,2700,"0.99418","0.94685","0.94685" +"GO:0035088","establishment or maintenance of apical/b...",3,1,1.73,2123,"0.92354","0.94692","0.94692" +"GO:0045197","establishment or maintenance of epitheli...",3,1,1.73,2124,"0.92354","0.94692","0.94692" +"GO:0061245","establishment or maintenance of bipolar ...",3,1,1.73,2125,"0.92354","0.94692","0.94692" +"GO:0048562","embryonic organ morphogenesis",17,8,9.78,1698,"0.86885","0.94711","0.94711" +"GO:0035265","organ growth",6,2,3.45,2293,"0.94666","0.94850","0.94850" +"GO:0043901","negative regulation of multi-organism pr...",6,3,3.45,1363,"0.78526","0.94850","0.94850" +"GO:0045934","negative regulation of nucleobase-contai...",67,29,38.55,2677,"0.99377","0.94868","0.94868" +"GO:0031669","cellular response to nutrient levels",11,4,6.33,2342,"0.95763","0.94873","0.94873" +"GO:0032147","activation of protein kinase activity",5,2,2.88,1838,"0.89286","0.94925","0.94925" +"GO:2000765","regulation of cytoplasmic translation",5,1,2.88,2589,"0.98626","0.94975","0.94975" +"GO:0061024","membrane organization",50,22,28.77,2547,"0.98153","0.95022","0.95022" +"GO:0050673","epithelial cell proliferation",11,4,6.33,2343,"0.95763","0.95080","0.95080" +"GO:0048232","male gamete generation",29,13,16.69,2237,"0.94221","0.95134","0.95134" +"GO:0006490","oligosaccharide-lipid intermediate biosy...",3,0,1.73,2922,"1.00000","0.95154","0.95154" +"GO:0019220","regulation of phosphate metabolic proces...",75,31,43.15,2806,"0.99855","0.95180","0.95180" +"GO:0051174","regulation of phosphorus metabolic proce...",75,31,43.15,2807,"0.99855","0.95180","0.95180" +"GO:0034654","nucleobase-containing compound biosynthe...",418,212,240.5,2831,"0.99904","0.95797","0.95184" +"GO:0031346","positive regulation of cell projection o...",16,7,9.21,1898,"0.91426","0.95191","0.95191" +"GO:0007365","periodic partitioning",3,1,1.73,2126,"0.92354","0.95229","0.95229" +"GO:0007367","segment polarity determination",3,1,1.73,2127,"0.92354","0.95229","0.95229" +"GO:0030323","respiratory tube development",8,2,4.6,2629,"0.98759","0.95250","0.95250" +"GO:0030324","lung development",8,2,4.6,2630,"0.98759","0.95250","0.95250" +"GO:0048705","skeletal system morphogenesis",8,3,4.6,2221,"0.93342","0.95250","0.95250" +"GO:0033500","carbohydrate homeostasis",7,4,4.03,1183,"0.66133","0.95263","0.95263" +"GO:0042593","glucose homeostasis",7,4,4.03,1184,"0.66133","0.95263","0.95263" +"GO:0048522","positive regulation of cellular process",261,129,150.17,2782,"0.99773","0.95272","0.95272" +"GO:0032879","regulation of localization",116,53,66.74,2744,"0.99670","0.95279","0.95279" +"GO:0007044","cell-substrate junction assembly",4,1,2.3,2430,"0.96758","0.95298","0.95298" +"GO:0034504","protein localization to nucleus",17,10,9.78,774,"0.55960","0.95300","0.95300" +"GO:0007281","germ cell development",40,19,23.01,2198,"0.92637","0.95329","0.95329" +"GO:0031109","microtubule polymerization or depolymeri...",9,4,5.18,1719,"0.87099","0.95332","0.95332" +"GO:0046785","microtubule polymerization",9,4,5.18,1720,"0.87099","0.95332","0.95332" +"GO:0007167","enzyme linked receptor protein signaling...",35,18,20.14,1632,"0.81831","0.95344","0.95344" +"GO:0048813","dendrite morphogenesis",5,1,2.88,2590,"0.98626","0.95363","0.95363" +"GO:0006473","protein acetylation",16,8,9.21,1617,"0.80712","0.95363","0.95363" +"GO:0006475","internal protein amino acid acetylation",16,8,9.21,1618,"0.80712","0.95363","0.95363" +"GO:0016573","histone acetylation",16,8,9.21,1619,"0.80712","0.95363","0.95363" +"GO:0018393","internal peptidyl-lysine acetylation",16,8,9.21,1620,"0.80712","0.95363","0.95363" +"GO:0018394","peptidyl-lysine acetylation",16,8,9.21,1621,"0.80712","0.95363","0.95363" +"GO:0045321","leukocyte activation",29,15,16.69,1592,"0.79608","0.95407","0.95407" +"GO:0000226","microtubule cytoskeleton organization",35,13,20.14,2733,"0.99554","0.95417","0.95417" +"GO:0006024","glycosaminoglycan biosynthetic process",4,1,2.3,2431,"0.96758","0.95468","0.95468" +"GO:0009890","negative regulation of biosynthetic proc...",70,31,40.28,2665,"0.99134","0.95599","0.95599" +"GO:0043067","regulation of programmed cell death",58,25,33.37,2663,"0.99104","0.95626","0.95626" +"GO:1990778","protein localization to cell periphery",14,7,8.06,1606,"0.80106","0.95628","0.95628" +"GO:0030048","actin filament-based movement",4,1,2.3,2432,"0.96758","0.95635","0.95635" +"GO:0048859","formation of anatomical boundary",4,1,2.3,2433,"0.96758","0.95635","0.95635" +"GO:0090596","sensory organ morphogenesis",38,17,21.86,2356,"0.96109","0.95642","0.95642" +"GO:0070997","neuron death",9,3,5.18,2378,"0.96464","0.95648","0.95648" +"GO:1901214","regulation of neuron death",9,3,5.18,2379,"0.96464","0.95648","0.95648" +"GO:0001754","eye photoreceptor cell differentiation",17,7,9.78,2253,"0.94605","0.95664","0.95664" +"GO:0033273","response to vitamin",3,1,1.73,2128,"0.92354","0.95668","0.95668" +"GO:0061351","neural precursor cell proliferation",7,2,4.03,2513,"0.97405","0.95693","0.95693" +"GO:0003002","regionalization",24,5,13.81,2874,"0.99995","0.95716","0.95716" +"GO:0071901","negative regulation of protein serine/th...",4,1,2.3,2434,"0.96758","0.95718","0.95718" +"GO:0005978","glycogen biosynthetic process",4,0,2.3,2923,"1.00000","0.95718","0.95718" +"GO:0009250","glucan biosynthetic process",4,0,2.3,2924,"1.00000","0.95718","0.95718" +"GO:0045861","negative regulation of proteolysis",9,4,5.18,1721,"0.87099","0.95730","0.95730" +"GO:0030713","ovarian follicle cell stalk formation",3,0,1.73,2925,"1.00000","0.95739","0.95739" +"GO:0032509","endosome transport via multivesicular bo...",3,0,1.73,2926,"1.00000","0.95739","0.95739" +"GO:0045324","late endosome to vacuole transport",3,0,1.73,2927,"1.00000","0.95739","0.95739" +"GO:1903321","negative regulation of protein modificat...",4,1,2.3,2435,"0.96758","0.95759","0.95759" +"GO:0019637","organophosphate metabolic process",142,83,81.7,622,"0.44620","0.26403","0.95795" +"GO:0043588","skin development",7,3,4.03,1757,"0.87821","0.95832","0.95832" +"GO:0046467","membrane lipid biosynthetic process",14,6,8.06,1915,"0.91619","0.95837","0.95837" +"GO:0061448","connective tissue development",11,4,6.33,2344,"0.95763","0.95844","0.95844" +"GO:0051493","regulation of cytoskeleton organization",32,14,18.41,2354,"0.96061","0.95863","0.95863" +"GO:0006996","organelle organization",366,199,210.58,1906,"0.91471","0.95872","0.95872" +"GO:0000726","non-recombinational repair",3,1,1.73,2129,"0.92354","0.95915","0.95915" +"GO:0006303","double-strand break repair via nonhomolo...",3,1,1.73,2130,"0.92354","0.95915","0.95915" +"GO:0048048","embryonic eye morphogenesis",3,1,1.73,2131,"0.92354","0.95915","0.95915" +"GO:0035518","histone H2A monoubiquitination",3,0,1.73,2928,"1.00000","0.95915","0.95915" +"GO:0007219","Notch signaling pathway",13,3,7.48,2778,"0.99769","0.95935","0.95935" +"GO:0072659","protein localization to plasma membrane",13,6,7.48,1675,"0.86685","0.95935","0.95935" +"GO:0044085","cellular component biogenesis",263,144,151.32,1654,"0.84745","0.89140","0.95953" +"GO:0048869","cellular developmental process",211,110,121.4,2332,"0.95728","0.95954","0.95954" +"GO:0002182","cytoplasmic translational elongation",4,1,2.3,2436,"0.96758","0.95961","0.95961" +"GO:0017182","peptidyl-diphthamide metabolic process",4,1,2.3,2437,"0.96758","0.95961","0.95961" +"GO:0017183","peptidyl-diphthamide biosynthetic proces...",4,1,2.3,2438,"0.96758","0.95961","0.95961" +"GO:0018202","peptidyl-histidine modification",4,1,2.3,2439,"0.96758","0.95961","0.95961" +"GO:1900247","regulation of cytoplasmic translational ...",4,1,2.3,2440,"0.96758","0.95961","0.95961" +"GO:0071496","cellular response to external stimulus",15,5,8.63,2567,"0.98458","0.95964","0.95964" +"GO:0051726","regulation of cell cycle",77,39,44.3,1877,"0.91206","0.95971","0.95971" +"GO:0001525","angiogenesis",11,4,6.33,2345,"0.95763","0.95983","0.95983" +"GO:0061077","chaperone-mediated protein folding",11,4,6.33,2346,"0.95763","0.95983","0.95983" +"GO:0000003","reproduction",97,44,55.81,2722,"0.99475","0.96065","0.96065" +"GO:0035266","meristem growth",4,0,2.3,2929,"1.00000","0.96080","0.96080" +"GO:0010562","positive regulation of phosphorus metabo...",37,13,21.29,2801,"0.99830","0.96119","0.96119" +"GO:0045937","positive regulation of phosphate metabol...",37,13,21.29,2802,"0.99830","0.96119","0.96119" +"GO:0043523","regulation of neuron apoptotic process",8,2,4.6,2631,"0.98759","0.96123","0.96123" +"GO:0051402","neuron apoptotic process",8,2,4.6,2632,"0.98759","0.96123","0.96123" +"GO:0030278","regulation of ossification",6,2,3.45,2294,"0.94666","0.96136","0.96136" +"GO:0048592","eye morphogenesis",35,14,20.14,2647,"0.98844","0.96144","0.96144" +"GO:0006396","RNA processing",166,91,95.51,1580,"0.79178","0.96147","0.96147" +"GO:0045665","negative regulation of neuron differenti...",12,3,6.9,2726,"0.99532","0.96176","0.96176" +"GO:0060560","developmental growth involved in morphog...",12,5,6.9,1923,"0.91954","0.96176","0.96176" +"GO:0046530","photoreceptor cell differentiation",18,8,10.36,1888,"0.91335","0.96193","0.96193" +"GO:0022607","cellular component assembly",218,108,125.43,2721,"0.99458","0.96196","0.96196" +"GO:0009952","anterior/posterior pattern specification",12,2,6.9,2843,"0.99942","0.96244","0.96244" +"GO:0035282","segmentation",12,2,6.9,2844,"0.99942","0.96244","0.96244" +"GO:0040011","locomotion",83,40,47.76,2464,"0.96804","0.96247","0.96247" +"GO:0097193","intrinsic apoptotic signaling pathway",17,8,9.78,1699,"0.86885","0.96289","0.96289" +"GO:0060627","regulation of vesicle-mediated transport",24,11,13.81,1903,"0.91427","0.96301","0.96301" +"GO:0006352","DNA-templated transcription, initiation",25,6,14.38,2858,"0.99986","0.96343","0.96343" +"GO:0022414","reproductive process",90,40,51.78,2739,"0.99593","0.96353","0.96353" +"GO:0042147","retrograde transport, endosome to Golgi",11,2,6.33,2816,"0.99874","0.96365","0.96365" +"GO:1903706","regulation of hemopoiesis",11,4,6.33,2347,"0.95763","0.96382","0.96382" +"GO:0048754","branching morphogenesis of an epithelial...",6,3,3.45,1364,"0.78526","0.96418","0.96418" +"GO:0061515","myeloid cell development",6,2,3.45,2295,"0.94666","0.96418","0.96418" +"GO:1901655","cellular response to ketone",6,1,3.45,2701,"0.99418","0.96418","0.96418" +"GO:0016180","snRNA processing",7,3,4.03,1758,"0.87821","0.96453","0.96453" +"GO:0045785","positive regulation of cell adhesion",10,5,5.75,1406,"0.79006","0.96457","0.96457" +"GO:0045216","cell-cell junction organization",7,3,4.03,1759,"0.87821","0.96531","0.96531" +"GO:0006275","regulation of DNA replication",4,2,2.3,1566,"0.79143","0.96539","0.96539" +"GO:0048523","negative regulation of cellular process",229,105,131.76,2864,"0.99992","0.96545","0.96545" +"GO:0008593","regulation of Notch signaling pathway",11,3,6.33,2655,"0.99066","0.96552","0.96552" +"GO:0021915","neural tube development",11,3,6.33,2656,"0.99066","0.96552","0.96552" +"GO:0051346","negative regulation of hydrolase activit...",11,6,6.33,1237,"0.69682","0.96552","0.96552" +"GO:0035239","tube morphogenesis",49,19,28.19,2764,"0.99752","0.96569","0.96569" +"GO:0006029","proteoglycan metabolic process",3,1,1.73,2132,"0.92354","0.96582","0.96582" +"GO:0015012","heparan sulfate proteoglycan biosyntheti...",3,1,1.73,2133,"0.92354","0.96582","0.96582" +"GO:0030166","proteoglycan biosynthetic process",3,1,1.73,2134,"0.92354","0.96582","0.96582" +"GO:0030201","heparan sulfate proteoglycan metabolic p...",3,1,1.73,2135,"0.92354","0.96582","0.96582" +"GO:1905475","regulation of protein localization to me...",7,3,4.03,1760,"0.87821","0.96601","0.96601" +"GO:0019058","viral life cycle",11,4,6.33,2348,"0.95763","0.96603","0.96603" +"GO:0034645","cellular macromolecule biosynthetic proc...",629,355,361.9,1288,"0.75183","0.55666","0.96611" +"GO:0051604","protein maturation",15,6,8.63,2307,"0.94872","0.96633","0.96633" +"GO:0010466","negative regulation of peptidase activit...",5,2,2.88,1839,"0.89286","0.96689","0.96689" +"GO:0010951","negative regulation of endopeptidase act...",5,2,2.88,1840,"0.89286","0.96689","0.96689" +"GO:2000117","negative regulation of cysteine-type end...",5,2,2.88,1841,"0.89286","0.96689","0.96689" +"GO:0022618","ribonucleoprotein complex assembly",30,16,17.26,1281,"0.74481","0.96692","0.96692" +"GO:0071826","ribonucleoprotein complex subunit organi...",30,16,17.26,1282,"0.74481","0.96692","0.96692" +"GO:0034341","response to interferon-gamma",3,0,1.73,2930,"1.00000","0.96709","0.96709" +"GO:0035262","gonad morphogenesis",3,0,1.73,2931,"1.00000","0.96709","0.96709" +"GO:0071346","cellular response to interferon-gamma",3,0,1.73,2932,"1.00000","0.96709","0.96709" +"GO:0051345","positive regulation of hydrolase activit...",25,13,14.38,1303,"0.77905","0.96716","0.96716" +"GO:0048545","response to steroid hormone",33,13,18.99,2649,"0.98886","0.96724","0.96724" +"GO:0007569","cell aging",3,1,1.73,2136,"0.92354","0.96772","0.96772" +"GO:0006793","phosphorus metabolic process",357,192,205.4,2246,"0.94439","0.88563","0.96785" +"GO:0018345","protein palmitoylation",7,4,4.03,1185,"0.66133","0.96793","0.96793" +"GO:0042327","positive regulation of phosphorylation",35,12,20.14,2805,"0.99847","0.96797","0.96797" +"GO:0007549","dosage compensation",3,1,1.73,2137,"0.92354","0.96803","0.96803" +"GO:0051649","establishment of localization in cell",184,91,105.87,2662,"0.99089","0.96817","0.96817" +"GO:0001649","osteoblast differentiation",5,2,2.88,1842,"0.89286","0.96850","0.96850" +"GO:0001838","embryonic epithelial tube formation",10,2,5.75,2754,"0.99727","0.96862","0.96862" +"GO:0072175","epithelial tube formation",10,2,5.75,2755,"0.99727","0.96862","0.96862" +"GO:0006796","phosphate-containing compound metabolic ...",354,190,203.68,2305,"0.94843","0.87061","0.96892" +"GO:0042110","T cell activation",13,5,7.48,2321,"0.95247","0.96909","0.96909" +"GO:0007379","segment specification",3,0,1.73,2933,"1.00000","0.96926","0.96926" +"GO:0032504","multicellular organism reproduction",62,26,35.67,2735,"0.99569","0.96968","0.96968" +"GO:0044703","multi-organism reproductive process",62,26,35.67,2736,"0.99569","0.96968","0.96968" +"GO:0006221","pyrimidine nucleotide biosynthetic proce...",4,2,2.3,1567,"0.79143","0.96971","0.96971" +"GO:0002062","chondrocyte differentiation",5,2,2.88,1843,"0.89286","0.97007","0.97007" +"GO:0008584","male gonad development",5,2,2.88,1844,"0.89286","0.97007","0.97007" +"GO:0030279","negative regulation of ossification",5,2,2.88,1845,"0.89286","0.97007","0.97007" +"GO:0032330","regulation of chondrocyte differentiatio...",5,2,2.88,1846,"0.89286","0.97007","0.97007" +"GO:0046546","development of primary male sexual chara...",5,2,2.88,1847,"0.89286","0.97007","0.97007" +"GO:0060219","camera-type eye photoreceptor cell diffe...",5,1,2.88,2591,"0.98626","0.97007","0.97007" +"GO:0060348","bone development",5,1,2.88,2592,"0.98626","0.97007","0.97007" +"GO:0061035","regulation of cartilage development",5,2,2.88,1848,"0.89286","0.97007","0.97007" +"GO:0072091","regulation of stem cell proliferation",5,1,2.88,2593,"0.98626","0.97007","0.97007" +"GO:2000177","regulation of neural precursor cell prol...",5,1,2.88,2594,"0.98626","0.97007","0.97007" +"GO:0032526","response to retinoic acid",5,0,2.88,2934,"1.00000","0.97007","0.97007" +"GO:0006684","sphingomyelin metabolic process",3,1,1.73,2138,"0.92354","0.97016","0.97016" +"GO:0071407","cellular response to organic cyclic comp...",35,13,20.14,2734,"0.99554","0.97036","0.97036" +"GO:2000113","negative regulation of cellular macromol...",65,27,37.4,2749,"0.99702","0.97051","0.97051" +"GO:0050768","negative regulation of neurogenesis",13,3,7.48,2779,"0.99769","0.97058","0.97058" +"GO:0043410","positive regulation of MAPK cascade",12,4,6.9,2533,"0.97667","0.97067","0.97067" +"GO:0030718","germ-line stem cell population maintenan...",3,1,1.73,2139,"0.92354","0.97106","0.97106" +"GO:0046532","regulation of photoreceptor cell differe...",3,1,1.73,2140,"0.92354","0.97106","0.97106" +"GO:0061326","renal tubule development",3,1,1.73,2141,"0.92354","0.97106","0.97106" +"GO:0051240","positive regulation of multicellular org...",59,24,33.95,2751,"0.99714","0.97116","0.97116" +"GO:0040012","regulation of locomotion",34,12,19.56,2762,"0.99746","0.97124","0.97124" +"GO:0019953","sexual reproduction",58,24,33.37,2737,"0.99577","0.97165","0.97165" +"GO:0048609","multicellular organismal reproductive pr...",58,24,33.37,2738,"0.99577","0.97165","0.97165" +"GO:0001841","neural tube formation",9,2,5.18,2684,"0.99414","0.97172","0.97172" +"GO:0009880","embryonic pattern specification",9,3,5.18,2380,"0.96464","0.97172","0.97172" +"GO:0014020","primary neural tube formation",9,2,5.18,2685,"0.99414","0.97172","0.97172" +"GO:0046503","glycerolipid catabolic process",6,3,3.45,1365,"0.78526","0.97205","0.97205" +"GO:0043009","chordate embryonic development",45,20,25.89,2494,"0.97337","0.97233","0.97233" +"GO:0035268","protein mannosylation",4,1,2.3,2441,"0.96758","0.97244","0.97244" +"GO:0035269","protein O-linked mannosylation",4,1,2.3,2442,"0.96758","0.97244","0.97244" +"GO:0097502","mannosylation",4,1,2.3,2443,"0.96758","0.97244","0.97244" +"GO:0003006","developmental process involved in reprod...",67,30,38.55,2642,"0.98780","0.97295","0.97295" +"GO:0010647","positive regulation of cell communicatio...",66,30,37.97,2561,"0.98316","0.97311","0.97311" +"GO:0023056","positive regulation of signaling",66,30,37.97,2562,"0.98316","0.97311","0.97311" +"GO:0042221","response to chemical",206,97,118.52,2841,"0.99933","0.97312","0.97312" +"GO:0071396","cellular response to lipid",37,13,21.29,2803,"0.99830","0.97313","0.97313" +"GO:1901566","organonitrogen compound biosynthetic pro...",323,221,185.84,10,"1.3e-05","3.4e-06","0.97317" +"GO:1902600","proton transmembrane transport",22,17,12.66,69,"0.04488","0.17212","0.97325" +"GO:0002088","lens development in camera-type eye",4,1,2.3,2444,"0.96758","0.97344","0.97344" +"GO:0015988","energy coupled proton transmembrane tran...",10,6,5.75,797,"0.57035","0.97348","0.97348" +"GO:0015991","ATP hydrolysis coupled proton transport",10,6,5.75,798,"0.57035","0.97348","0.97348" +"GO:0090662","ATP hydrolysis coupled transmembrane tra...",10,6,5.75,799,"0.57035","0.97348","0.97348" +"GO:0099131","ATP hydrolysis coupled ion transmembrane...",10,6,5.75,800,"0.57035","0.97348","0.97348" +"GO:0099132","ATP hydrolysis coupled cation transmembr...",10,6,5.75,801,"0.57035","0.97348","0.97348" +"GO:0048638","regulation of developmental growth",20,7,11.51,2646,"0.98826","0.97369","0.97369" +"GO:0001967","suckling behavior",3,0,1.73,2935,"1.00000","0.97394","0.97394" +"GO:0060425","lung morphogenesis",4,2,2.3,1568,"0.79143","0.97409","0.97409" +"GO:0006664","glycolipid metabolic process",15,6,8.63,2308,"0.94872","0.97435","0.97435" +"GO:1903509","liposaccharide metabolic process",15,6,8.63,2309,"0.94872","0.97435","0.97435" +"GO:0051270","regulation of cellular component movemen...",33,10,18.99,2852,"0.99961","0.97442","0.97442" +"GO:0001843","neural tube closure",8,1,4.6,2822,"0.99896","0.97483","0.97483" +"GO:0060606","tube closure",8,1,4.6,2823,"0.99896","0.97483","0.97483" +"GO:0034641","cellular nitrogen compound metabolic pro...",933,542,536.81,449,"0.35161","0.70528","0.97502" +"GO:0002695","negative regulation of leukocyte activat...",5,1,2.88,2595,"0.98626","0.97527","0.97527" +"GO:0042113","B cell activation",5,1,2.88,2596,"0.98626","0.97527","0.97527" +"GO:0050866","negative regulation of cell activation",5,1,2.88,2597,"0.98626","0.97527","0.97527" +"GO:0051250","negative regulation of lymphocyte activa...",5,1,2.88,2598,"0.98626","0.97527","0.97527" +"GO:0007276","gamete generation",50,22,28.77,2548,"0.98153","0.97558","0.97558" +"GO:0051960","regulation of nervous system development",50,20,28.77,2741,"0.99609","0.97558","0.97558" +"GO:0002790","peptide secretion",15,8,8.63,1267,"0.72526","0.97559","0.97559" +"GO:0009306","protein secretion",15,8,8.63,1268,"0.72526","0.97559","0.97559" +"GO:0071216","cellular response to biotic stimulus",7,3,4.03,1761,"0.87821","0.97563","0.97563" +"GO:0021781","glial cell fate commitment",4,1,2.3,2445,"0.96758","0.97599","0.97599" +"GO:0048546","digestive tract morphogenesis",4,1,2.3,2446,"0.96758","0.97599","0.97599" +"GO:0050680","negative regulation of epithelial cell p...",4,1,2.3,2447,"0.96758","0.97599","0.97599" +"GO:0071229","cellular response to acid chemical",4,2,2.3,1569,"0.79143","0.97599","0.97599" +"GO:1902692","regulation of neuroblast proliferation",4,1,2.3,2448,"0.96758","0.97599","0.97599" +"GO:0048519","negative regulation of biological proces...",272,129,156.5,2856,"0.99984","0.97619","0.97619" +"GO:0061083","regulation of protein refolding",3,1,1.73,2142,"0.92354","0.97641","0.97641" +"GO:0002683","negative regulation of immune system pro...",13,3,7.48,2780,"0.99769","0.97648","0.97648" +"GO:0030900","forebrain development",20,9,11.51,1881,"0.91316","0.97654","0.97654" +"GO:0051054","positive regulation of DNA metabolic pro...",8,4,4.6,1393,"0.78620","0.97661","0.97661" +"GO:0071495","cellular response to endogenous stimulus",50,23,28.77,2371,"0.96413","0.97669","0.97669" +"GO:0023061","signal release",18,9,10.36,1630,"0.81323","0.97696","0.97696" +"GO:0046907","intracellular transport",169,82,97.24,2681,"0.99404","0.97737","0.97737" +"GO:0010948","negative regulation of cell cycle proces...",16,6,9.21,2471,"0.96940","0.97743","0.97743" +"GO:0006397","mRNA processing",65,33,37.4,1784,"0.89280","0.97760","0.97760" +"GO:0006888","ER to Golgi vesicle-mediated transport",13,3,7.48,2781,"0.99769","0.97775","0.97775" +"GO:0003143","embryonic heart tube morphogenesis",7,3,4.03,1762,"0.87821","0.97795","0.97795" +"GO:0006900","vesicle budding from membrane",7,1,4.03,2771,"0.99754","0.97795","0.97795" +"GO:0035050","embryonic heart tube development",7,3,4.03,1763,"0.87821","0.97795","0.97795" +"GO:0061371","determination of heart left/right asymme...",7,3,4.03,1764,"0.87821","0.97795","0.97795" +"GO:0071322","cellular response to carbohydrate stimul...",5,3,2.88,1122,"0.63928","0.97835","0.97835" +"GO:0030968","endoplasmic reticulum unfolded protein r...",4,2,2.3,1570,"0.79143","0.97872","0.97872" +"GO:0034620","cellular response to unfolded protein",4,2,2.3,1571,"0.79143","0.97872","0.97872" +"GO:0051648","vesicle localization",16,5,9.21,2666,"0.99148","0.97893","0.97893" +"GO:0022412","cellular process involved in reproductio...",43,19,24.74,2492,"0.97319","0.97902","0.97902" +"GO:0034472","snRNA 3'-end processing",4,2,2.3,1572,"0.79143","0.97960","0.97960" +"GO:0002066","columnar/cuboidal epithelial cell develo...",13,4,7.48,2619,"0.98743","0.97971","0.97971" +"GO:0050790","regulation of catalytic activity",89,43,51.21,2475,"0.97057","0.97982","0.97982" +"GO:0008306","associative learning",7,4,4.03,1186,"0.66133","0.98000","0.98000" +"GO:0006446","regulation of translational initiation",3,1,1.73,2143,"0.92354","0.98002","0.98002" +"GO:0050920","regulation of chemotaxis",3,1,1.73,2144,"0.92354","0.98002","0.98002" +"GO:0060326","cell chemotaxis",3,0,1.73,2936,"1.00000","0.98002","0.98002" +"GO:0050864","regulation of B cell activation",4,0,2.3,2937,"1.00000","0.98017","0.98017" +"GO:0051650","establishment of vesicle localization",15,5,8.63,2568,"0.98458","0.98024","0.98024" +"GO:0031401","positive regulation of protein modificat...",49,19,28.19,2765,"0.99752","0.98028","0.98028" +"GO:1903076","regulation of protein localization to pl...",4,2,2.3,1573,"0.79143","0.98045","0.98045" +"GO:1904375","regulation of protein localization to ce...",4,2,2.3,1574,"0.79143","0.98045","0.98045" +"GO:2001237","negative regulation of extrinsic apoptot...",4,1,2.3,2449,"0.96758","0.98045","0.98045" +"GO:0001934","positive regulation of protein phosphory...",31,10,17.84,2819,"0.99881","0.98046","0.98046" +"GO:0035264","multicellular organism growth",10,5,5.75,1407,"0.79006","0.98070","0.98070" +"GO:0050863","regulation of T cell activation",12,4,6.9,2534,"0.97667","0.98093","0.98093" +"GO:0051172","negative regulation of nitrogen compound...",109,48,62.71,2809,"0.99860","0.98097","0.98097" +"GO:0009719","response to endogenous stimulus",64,30,36.82,2465,"0.96887","0.98102","0.98102" +"GO:0001756","somitogenesis",6,1,3.45,2702,"0.99418","0.98108","0.98108" +"GO:0001947","heart looping",6,3,3.45,1366,"0.78526","0.98108","0.98108" +"GO:0048194","Golgi vesicle budding",6,1,3.45,2703,"0.99418","0.98108","0.98108" +"GO:0061053","somite development",6,1,3.45,2704,"0.99418","0.98108","0.98108" +"GO:0090114","COPII-coated vesicle budding",6,1,3.45,2705,"0.99418","0.98108","0.98108" +"GO:0060541","respiratory system development",20,8,11.51,2389,"0.96490","0.98114","0.98114" +"GO:0031327","negative regulation of cellular biosynth...",69,30,39.7,2680,"0.99379","0.98115","0.98115" +"GO:0048749","compound eye development",17,6,9.78,2557,"0.98214","0.98120","0.98120" +"GO:0051145","smooth muscle cell differentiation",3,1,1.73,2145,"0.92354","0.98123","0.98123" +"GO:0006904","vesicle docking involved in exocytosis",5,2,2.88,1849,"0.89286","0.98124","0.98124" +"GO:0031668","cellular response to extracellular stimu...",12,4,6.9,2535,"0.97667","0.98141","0.98141" +"GO:0007163","establishment or maintenance of cell pol...",14,7,8.06,1607,"0.80106","0.98155","0.98155" +"GO:0016071","mRNA metabolic process",86,47,49.48,1283,"0.74645","0.98172","0.98172" +"GO:0006139","nucleobase-containing compound metabolic...",742,408,426.92,2327,"0.95401","0.97552","0.98179" +"GO:0048598","embryonic morphogenesis",45,19,25.89,2615,"0.98726","0.98190","0.98190" +"GO:0051336","regulation of hydrolase activity",49,23,28.19,2314,"0.95080","0.98192","0.98192" +"GO:0001942","hair follicle development",3,1,1.73,2146,"0.92354","0.98195","0.98195" +"GO:0022404","molting cycle process",3,1,1.73,2147,"0.92354","0.98195","0.98195" +"GO:0022405","hair cycle process",3,1,1.73,2148,"0.92354","0.98195","0.98195" +"GO:0030856","regulation of epithelial cell differenti...",3,1,1.73,2149,"0.92354","0.98195","0.98195" +"GO:0035019","somatic stem cell population maintenance",3,1,1.73,2150,"0.92354","0.98195","0.98195" +"GO:0042633","hair cycle",3,1,1.73,2151,"0.92354","0.98195","0.98195" +"GO:0060349","bone morphogenesis",3,1,1.73,2152,"0.92354","0.98195","0.98195" +"GO:0060350","endochondral bone morphogenesis",3,1,1.73,2153,"0.92354","0.98195","0.98195" +"GO:0060351","cartilage development involved in endoch...",3,1,1.73,2154,"0.92354","0.98195","0.98195" +"GO:0060441","epithelial tube branching involved in lu...",3,1,1.73,2155,"0.92354","0.98195","0.98195" +"GO:0060788","ectodermal placode formation",3,1,1.73,2156,"0.92354","0.98195","0.98195" +"GO:0071696","ectodermal placode development",3,1,1.73,2157,"0.92354","0.98195","0.98195" +"GO:0071697","ectodermal placode morphogenesis",3,1,1.73,2158,"0.92354","0.98195","0.98195" +"GO:0098773","skin epidermis development",3,1,1.73,2159,"0.92354","0.98195","0.98195" +"GO:0022612","gland morphogenesis",3,0,1.73,2938,"1.00000","0.98195","0.98195" +"GO:0030903","notochord development",3,0,1.73,2939,"1.00000","0.98195","0.98195" +"GO:0031128","developmental induction",3,0,1.73,2940,"1.00000","0.98195","0.98195" +"GO:0072009","nephron epithelium development",3,0,1.73,2941,"1.00000","0.98195","0.98195" +"GO:0072073","kidney epithelium development",3,0,1.73,2942,"1.00000","0.98195","0.98195" +"GO:0051129","negative regulation of cellular componen...",44,19,25.32,2546,"0.98139","0.98230","0.98230" +"GO:0060070","canonical Wnt signaling pathway",16,4,9.21,2794,"0.99822","0.98231","0.98231" +"GO:0001700","embryonic development via the syncytial ...",5,2,2.88,1850,"0.89286","0.98246","0.98246" +"GO:0031324","negative regulation of cellular metaboli...",108,47,62.14,2830,"0.99898","0.98283","0.98283" +"GO:0032880","regulation of protein localization",42,21,24.17,1735,"0.87519","0.98311","0.98311" +"GO:0033043","regulation of organelle organization",83,41,47.76,2304,"0.94841","0.98323","0.98323" +"GO:0044092","negative regulation of molecular functio...",41,19,23.59,2255,"0.94662","0.98329","0.98329" +"GO:0060562","epithelial tube morphogenesis",34,12,19.56,2763,"0.99746","0.98343","0.98343" +"GO:0031399","regulation of protein modification proce...",86,35,49.48,2849,"0.99951","0.98350","0.98350" +"GO:0006643","membrane lipid metabolic process",24,10,13.81,2367,"0.96230","0.98360","0.98360" +"GO:0010256","endomembrane system organization",29,14,16.69,1779,"0.88503","0.98385","0.98385" +"GO:0007416","synapse assembly",12,4,6.9,2536,"0.97667","0.98418","0.98418" +"GO:0048199","vesicle targeting, to, from or within Go...",5,1,2.88,2599,"0.98626","0.98421","0.98421" +"GO:0080135","regulation of cellular response to stres...",39,18,22.44,2248,"0.94567","0.98433","0.98433" +"GO:0040008","regulation of growth",38,17,21.86,2357,"0.96109","0.98473","0.98473" +"GO:0044260","cellular macromolecule metabolic process",1024,571,589.17,2202,"0.93160","0.91120","0.98502" +"GO:0065003","protein-containing complex assembly",135,64,77.67,2682,"0.99408","0.98504","0.98504" +"GO:0000959","mitochondrial RNA metabolic process",3,1,1.73,2160,"0.92354","0.98510","0.98510" +"GO:0032392","DNA geometric change",3,1,1.73,2161,"0.92354","0.98510","0.98510" +"GO:0050869","negative regulation of B cell activation",3,0,1.73,2943,"1.00000","0.98510","0.98510" +"GO:0010033","response to organic substance",130,57,74.8,2850,"0.99952","0.98512","0.98512" +"GO:0010942","positive regulation of cell death",25,13,14.38,1304,"0.77905","0.98523","0.98523" +"GO:0043933","protein-containing complex subunit organ...",157,77,90.33,2650,"0.98895","0.98528","0.98528" +"GO:0008625","extrinsic apoptotic signaling pathway vi...",3,1,1.73,2162,"0.92354","0.98531","0.98531" +"GO:0021680","cerebellar Purkinje cell layer developme...",3,1,1.73,2163,"0.92354","0.98531","0.98531" +"GO:0021695","cerebellar cortex development",3,1,1.73,2164,"0.92354","0.98531","0.98531" +"GO:0034105","positive regulation of tissue remodeling",3,1,1.73,2165,"0.92354","0.98531","0.98531" +"GO:1902041","regulation of extrinsic apoptotic signal...",3,1,1.73,2166,"0.92354","0.98531","0.98531" +"GO:1902042","negative regulation of extrinsic apoptot...",3,1,1.73,2167,"0.92354","0.98531","0.98531" +"GO:0001745","compound eye morphogenesis",13,5,7.48,2322,"0.95247","0.98562","0.98562" +"GO:0030198","extracellular matrix organization",16,6,9.21,2472,"0.96940","0.98564","0.98564" +"GO:1902533","positive regulation of intracellular sig...",29,13,16.69,2238,"0.94221","0.98587","0.98587" +"GO:0007265","Ras protein signal transduction",25,10,14.38,2528,"0.97586","0.98596","0.98596" +"GO:0009725","response to hormone",51,23,29.34,2521,"0.97418","0.98603","0.98603" +"GO:0033993","response to lipid",51,19,29.34,2829,"0.99898","0.98603","0.98603" +"GO:0051253","negative regulation of RNA metabolic pro...",63,27,36.25,2673,"0.99375","0.98614","0.98614" +"GO:1902679","negative regulation of RNA biosynthetic ...",63,27,36.25,2674,"0.99375","0.98614","0.98614" +"GO:1903507","negative regulation of nucleic acid-temp...",63,27,36.25,2675,"0.99375","0.98614","0.98614" +"GO:0006766","vitamin metabolic process",9,4,5.18,1722,"0.87099","0.98616","0.98616" +"GO:0043408","regulation of MAPK cascade",20,6,11.51,2745,"0.99681","0.98634","0.98634" +"GO:2000145","regulation of cell motility",28,7,16.11,2861,"0.99990","0.98636","0.98636" +"GO:0007098","centrosome cycle",10,2,5.75,2756,"0.99727","0.98643","0.98643" +"GO:0031023","microtubule organizing center organizati...",10,2,5.75,2757,"0.99727","0.98643","0.98643" +"GO:0034097","response to cytokine",24,11,13.81,1904,"0.91427","0.98664","0.98664" +"GO:0071345","cellular response to cytokine stimulus",24,11,13.81,1905,"0.91427","0.98664","0.98664" +"GO:0060828","regulation of canonical Wnt signaling pa...",12,3,6.9,2727,"0.99532","0.98672","0.98672" +"GO:1901360","organic cyclic compound metabolic proces...",797,445,458.56,1777,"0.88390","0.93839","0.98699" +"GO:0071704","organic substance metabolic process",1648,956,948.2,380,"0.28311","0.35055","0.98722" +"GO:0030031","cell projection assembly",26,11,14.96,2361,"0.96152","0.98734","0.98734" +"GO:0030334","regulation of cell migration",26,6,14.96,2866,"0.99993","0.98734","0.98734" +"GO:0030855","epithelial cell differentiation",26,12,14.96,1908,"0.91531","0.98734","0.98734" +"GO:0120031","plasma membrane bounded cell projection ...",26,11,14.96,2362,"0.96152","0.98734","0.98734" +"GO:0006890","retrograde vesicle-mediated transport, G...",4,1,2.3,2450,"0.96758","0.98735","0.98735" +"GO:0009948","anterior/posterior axis specification",4,1,2.3,2451,"0.96758","0.98735","0.98735" +"GO:0035459","cargo loading into vesicle",4,1,2.3,2452,"0.96758","0.98735","0.98735" +"GO:0071559","response to transforming growth factor b...",9,4,5.18,1723,"0.87099","0.98767","0.98767" +"GO:0071560","cellular response to transforming growth...",9,4,5.18,1724,"0.87099","0.98767","0.98767" +"GO:0009187","cyclic nucleotide metabolic process",5,1,2.88,2600,"0.98626","0.98770","0.98770" +"GO:0009190","cyclic nucleotide biosynthetic process",5,1,2.88,2601,"0.98626","0.98770","0.98770" +"GO:0007292","female gamete generation",25,10,14.38,2529,"0.97586","0.98783","0.98783" +"GO:0009791","post-embryonic development",25,10,14.38,2530,"0.97586","0.98783","0.98783" +"GO:0016567","protein ubiquitination",58,28,33.37,2233,"0.94180","0.98788","0.98788" +"GO:0061458","reproductive system development",30,11,17.26,2679,"0.99377","0.98796","0.98796" +"GO:0030010","establishment of cell polarity",9,4,5.18,1725,"0.87099","0.98812","0.98812" +"GO:0042051","compound eye photoreceptor development",7,3,4.03,1765,"0.87821","0.98836","0.98836" +"GO:0006120","mitochondrial electron transport, NADH t...",6,3,3.45,1367,"0.78526","0.98839","0.98839" +"GO:0042129","regulation of T cell proliferation",5,1,2.88,2602,"0.98626","0.98845","0.98845" +"GO:0045116","protein neddylation",4,2,2.3,1575,"0.79143","0.98847","0.98847" +"GO:0034389","lipid droplet organization",3,1,1.73,2168,"0.92354","0.98852","0.98852" +"GO:0060612","adipose tissue development",3,0,1.73,2944,"1.00000","0.98852","0.98852" +"GO:0009314","response to radiation",29,11,16.69,2653,"0.98994","0.98873","0.98873" +"GO:0048608","reproductive structure development",28,11,16.11,2565,"0.98400","0.98877","0.98877" +"GO:0048477","oogenesis",23,8,13.23,2668,"0.99224","0.98880","0.98880" +"GO:0051056","regulation of small GTPase mediated sign...",23,9,13.23,2538,"0.97698","0.98880","0.98880" +"GO:0007266","Rho protein signal transduction",16,7,9.21,1899,"0.91426","0.98886","0.98886" +"GO:0010506","regulation of autophagy",13,6,7.48,1676,"0.86685","0.98892","0.98892" +"GO:0043066","negative regulation of apoptotic process",33,14,18.99,2495,"0.97340","0.98915","0.98915" +"GO:0007606","sensory perception of chemical stimulus",6,2,3.45,2296,"0.94666","0.98918","0.98918" +"GO:0010467","gene expression",721,411,414.84,1135,"0.64839","0.98529","0.98924" +"GO:0048193","Golgi vesicle transport",28,10,16.11,2720,"0.99428","0.98933","0.98933" +"GO:0007528","neuromuscular junction development",8,2,4.6,2633,"0.98759","0.98944","0.98944" +"GO:0006886","intracellular protein transport",107,58,61.56,1578,"0.79163","0.98973","0.98973" +"GO:0045165","cell fate commitment",21,6,12.08,2799,"0.99826","0.98978","0.98978" +"GO:1901988","negative regulation of cell cycle phase ...",9,4,5.18,1726,"0.87099","0.99003","0.99003" +"GO:1901991","negative regulation of mitotic cell cycl...",9,4,5.18,1727,"0.87099","0.99003","0.99003" +"GO:0048872","homeostasis of number of cells",12,3,6.9,2728,"0.99532","0.99013","0.99013" +"GO:0002064","epithelial cell development",20,8,11.51,2390,"0.96490","0.99027","0.99027" +"GO:0007169","transmembrane receptor protein tyrosine ...",20,6,11.51,2746,"0.99681","0.99027","0.99027" +"GO:0046578","regulation of Ras protein signal transdu...",20,9,11.51,1882,"0.91316","0.99027","0.99027" +"GO:0008285","negative regulation of cell proliferatio...",24,8,13.81,2732,"0.99546","0.99038","0.99038" +"GO:0007034","vacuolar transport",18,3,10.36,2870,"0.99994","0.99041","0.99041" +"GO:0006508","proteolysis",162,89,93.21,1305,"0.78017","0.99042","0.99042" +"GO:0048583","regulation of response to stimulus",194,82,111.62,2888,"1.00000","0.99046","0.99046" +"GO:0006901","vesicle coating",3,0,1.73,2945,"1.00000","0.99050","0.99050" +"GO:0048207","vesicle targeting, rough ER to cis-Golgi",3,0,1.73,2946,"1.00000","0.99050","0.99050" +"GO:0048208","COPII vesicle coating",3,0,1.73,2947,"1.00000","0.99050","0.99050" +"GO:0002065","columnar/cuboidal epithelial cell differ...",15,5,8.63,2569,"0.98458","0.99054","0.99054" +"GO:0044091","membrane biogenesis",7,2,4.03,2514,"0.97405","0.99075","0.99075" +"GO:0051124","synaptic growth at neuromuscular junctio...",7,2,4.03,2515,"0.97405","0.99075","0.99075" +"GO:0051963","regulation of synapse assembly",7,2,4.03,2516,"0.97405","0.99075","0.99075" +"GO:0007548","sex differentiation",19,7,10.93,2541,"0.98008","0.99076","0.99076" +"GO:0051961","negative regulation of nervous system de...",17,3,9.78,2860,"0.99988","0.99159","0.99159" +"GO:0051298","centrosome duplication",6,0,3.45,2948,"1.00000","0.99185","0.99185" +"GO:0016070","RNA metabolic process",558,292,321.05,2777,"0.99764","0.99198","0.99198" +"GO:0007154","cell communication",407,194,234.17,2887,"0.99999","0.99201","0.99201" +"GO:0006903","vesicle targeting",6,1,3.45,2706,"0.99418","0.99207","0.99207" +"GO:0008582","regulation of synaptic growth at neuromu...",6,1,3.45,2707,"0.99418","0.99207","0.99207" +"GO:0140029","exocytic process",6,2,3.45,2297,"0.94666","0.99207","0.99207" +"GO:1904396","regulation of neuromuscular junction dev...",6,1,3.45,2708,"0.99418","0.99207","0.99207" +"GO:0071310","cellular response to organic substance",90,41,51.78,2669,"0.99249","0.99212","0.99212" +"GO:0010259","multicellular organism aging",9,3,5.18,2381,"0.96464","0.99215","0.99215" +"GO:0034622","cellular protein-containing complex asse...",112,56,64.44,2352,"0.95892","0.99218","0.99218" +"GO:0016331","morphogenesis of embryonic epithelium",16,4,9.21,2795,"0.99822","0.99222","0.99222" +"GO:0023052","signaling",395,186,227.27,2890,"1.00000","0.99228","0.99228" +"GO:1902531","regulation of intracellular signal trans...",87,38,50.06,2748,"0.99702","0.99239","0.99239" +"GO:0034446","substrate adhesion-dependent cell spread...",5,2,2.88,1851,"0.89286","0.99243","0.99243" +"GO:0009790","embryo development",86,41,49.48,2531,"0.97618","0.99248","0.99248" +"GO:0052652","cyclic purine nucleotide metabolic proce...",3,0,1.73,2949,"1.00000","0.99261","0.99261" +"GO:0035107","appendage morphogenesis",10,5,5.75,1408,"0.79006","0.99263","0.99263" +"GO:0043062","extracellular structure organization",18,7,10.36,2393,"0.96686","0.99267","0.99267" +"GO:1902115","regulation of organelle assembly",15,5,8.63,2570,"0.98458","0.99271","0.99271" +"GO:0016192","vesicle-mediated transport",131,60,75.37,2787,"0.99786","0.99288","0.99288" +"GO:0007165","signal transduction",367,169,211.16,2892,"1.00000","0.99291","0.99291" +"GO:0006725","cellular aromatic compound metabolic pro...",770,424,443.03,2324,"0.95306","0.99291","0.99307" +"GO:0033866","nucleoside bisphosphate biosynthetic pro...",6,5,3.45,309,"0.19664","0.03839","0.99311" +"GO:0034030","ribonucleoside bisphosphate biosynthetic...",6,5,3.45,310,"0.19664","0.03839","0.99311" +"GO:0034033","purine nucleoside bisphosphate biosynthe...",6,5,3.45,311,"0.19664","0.03839","0.99311" +"GO:0035023","regulation of Rho protein signal transdu...",14,7,8.06,1608,"0.80106","0.99319","0.99319" +"GO:0040017","positive regulation of locomotion",14,5,8.06,2481,"0.97263","0.99319","0.99319" +"GO:0023051","regulation of signaling",168,76,96.66,2853,"0.99965","0.99326","0.99326" +"GO:0046483","heterocycle metabolic process",772,425,444.18,2329,"0.95418","0.99177","0.99329" +"GO:0006807","nitrogen compound metabolic process",1459,832,839.45,1270,"0.73023","0.98455","0.99331" +"GO:0051085","chaperone cofactor-dependent protein ref...",6,2,3.45,2298,"0.94666","0.99335","0.99335" +"GO:0090090","negative regulation of canonical Wnt sig...",6,1,3.45,2709,"0.99418","0.99335","0.99335" +"GO:0010646","regulation of cell communication",165,74,94.93,2854,"0.99973","0.99339","0.99339" +"GO:0007476","imaginal disc-derived wing morphogenesis",5,2,2.88,1852,"0.89286","0.99339","0.99339" +"GO:0032506","cytokinetic process",5,2,2.88,1853,"0.89286","0.99339","0.99339" +"GO:0035114","imaginal disc-derived appendage morphoge...",5,2,2.88,1854,"0.89286","0.99339","0.99339" +"GO:0035120","post-embryonic appendage morphogenesis",5,2,2.88,1855,"0.89286","0.99339","0.99339" +"GO:0048737","imaginal disc-derived appendage developm...",5,2,2.88,1856,"0.89286","0.99339","0.99339" +"GO:0035556","intracellular signal transduction",161,71,92.63,2857,"0.99985","0.99356","0.99356" +"GO:0009408","response to heat",16,7,9.21,1900,"0.91426","0.99359","0.99359" +"GO:0022613","ribonucleoprotein complex biogenesis",73,52,42,34,"0.01028","0.00364","0.99362" +"GO:0015031","protein transport",139,72,79.98,2203,"0.93170","0.99367","0.99367" +"GO:0015833","peptide transport",139,72,79.98,2204,"0.93170","0.99367","0.99367" +"GO:0007369","gastrulation",13,5,7.48,2323,"0.95247","0.99368","0.99368" +"GO:0048569","post-embryonic animal organ development",13,4,7.48,2620,"0.98743","0.99368","0.99368" +"GO:0000075","cell cycle checkpoint",16,7,9.21,1901,"0.91426","0.99376","0.99376" +"GO:0042886","amide transport",140,73,80.55,1925,"0.92069","0.99376","0.99376" +"GO:0009966","regulation of signal transduction",148,62,85.15,2878,"0.99997","0.99410","0.99410" +"GO:0016358","dendrite development",12,4,6.9,2537,"0.97667","0.99417","0.99417" +"GO:0048736","appendage development",12,6,6.9,1591,"0.79525","0.99417","0.99417" +"GO:0042026","protein refolding",7,3,4.03,1766,"0.87821","0.99438","0.99438" +"GO:0033143","regulation of intracellular steroid horm...",5,1,2.88,2603,"0.98626","0.99446","0.99446" +"GO:0045786","negative regulation of cell cycle",31,13,17.84,2497,"0.97377","0.99448","0.99448" +"GO:0045184","establishment of protein localization",149,77,85.73,2230,"0.94159","0.99452","0.99452" +"GO:0040007","growth",63,28,36.25,2621,"0.98753","0.99453","0.99453" +"GO:0090304","nucleic acid metabolic process",643,343,369.96,2672,"0.99372","0.99150","0.99460" +"GO:0043170","macromolecule metabolic process",1317,742,757.75,1866,"0.89490","0.99407","0.99462" +"GO:0009967","positive regulation of signal transducti...",62,28,35.67,2558,"0.98264","0.99462","0.99462" +"GO:0019827","stem cell population maintenance",11,3,6.33,2657,"0.99066","0.99465","0.99465" +"GO:0030707","ovarian follicle cell development",11,2,6.33,2817,"0.99874","0.99465","0.99465" +"GO:0040013","negative regulation of locomotion",11,3,6.33,2658,"0.99066","0.99465","0.99465" +"GO:0051271","negative regulation of cellular componen...",11,3,6.33,2659,"0.99066","0.99465","0.99465" +"GO:0098727","maintenance of cell number",11,3,6.33,2660,"0.99066","0.99465","0.99465" +"GO:2000146","negative regulation of cell motility",11,3,6.33,2661,"0.99066","0.99465","0.99465" +"GO:0060628","regulation of ER to Golgi vesicle-mediat...",3,1,1.73,2169,"0.92354","0.99484","0.99484" +"GO:1902953","positive regulation of ER to Golgi vesic...",3,1,1.73,2170,"0.92354","0.99484","0.99484" +"GO:0007043","cell-cell junction assembly",6,2,3.45,2299,"0.94666","0.99488","0.99488" +"GO:0043297","apical junction assembly",6,2,3.45,2300,"0.94666","0.99488","0.99488" +"GO:0035295","tube development",58,22,33.37,2838,"0.99923","0.99497","0.99497" +"GO:0034502","protein localization to chromosome",4,2,2.3,1576,"0.79143","0.99501","0.99501" +"GO:0007444","imaginal disc development",10,3,5.75,2552,"0.98165","0.99514","0.99514" +"GO:0030336","negative regulation of cell migration",10,2,5.75,2758,"0.99727","0.99514","0.99514" +"GO:0043409","negative regulation of MAPK cascade",8,1,4.6,2824,"0.99896","0.99516","0.99516" +"GO:0048821","erythrocyte development",5,1,2.88,2604,"0.98626","0.99528","0.99528" +"GO:0009743","response to carbohydrate",7,4,4.03,1187,"0.66133","0.99538","0.99538" +"GO:0070887","cellular response to chemical stimulus",115,51,66.17,2810,"0.99865","0.99547","0.99547" +"GO:0002164","larval development",9,2,5.18,2686,"0.99414","0.99563","0.99563" +"GO:0002165","instar larval or pupal development",9,3,5.18,2382,"0.96464","0.99563","0.99563" +"GO:0007498","mesoderm development",9,3,5.18,2383,"0.96464","0.99563","0.99563" +"GO:0009886","post-embryonic animal morphogenesis",9,3,5.18,2384,"0.96464","0.99563","0.99563" +"GO:0030335","positive regulation of cell migration",9,2,5.18,2687,"0.99414","0.99563","0.99563" +"GO:0045807","positive regulation of endocytosis",9,4,5.18,1728,"0.87099","0.99563","0.99563" +"GO:0046661","male sex differentiation",9,3,5.18,2385,"0.96464","0.99563","0.99563" +"GO:2000147","positive regulation of cell motility",9,2,5.18,2688,"0.99414","0.99563","0.99563" +"GO:0071705","nitrogen compound transport",168,91,96.66,1643,"0.83949","0.99583","0.99583" +"GO:0048514","blood vessel morphogenesis",17,4,9.78,2834,"0.99910","0.99587","0.99587" +"GO:0044087","regulation of cellular component biogene...",59,23,33.95,2818,"0.99877","0.99596","0.99596" +"GO:0048589","developmental growth",46,17,26.47,2808,"0.99857","0.99603","0.99603" +"GO:0044837","actomyosin contractile ring organization",3,1,1.73,2171,"0.92354","0.99603","0.99603" +"GO:0001708","cell fate specification",8,1,4.6,2825,"0.99896","0.99611","0.99611" +"GO:0007173","epidermal growth factor receptor signali...",8,1,4.6,2826,"0.99896","0.99611","0.99611" +"GO:0007552","metamorphosis",8,2,4.6,2634,"0.98759","0.99611","0.99611" +"GO:0007560","imaginal disc morphogenesis",8,2,4.6,2635,"0.98759","0.99611","0.99611" +"GO:0038127","ERBB signaling pathway",8,1,4.6,2827,"0.99896","0.99611","0.99611" +"GO:0048563","post-embryonic animal organ morphogenesi...",8,2,4.6,2636,"0.98759","0.99611","0.99611" +"GO:0048565","digestive tract development",8,2,4.6,2637,"0.98759","0.99611","0.99611" +"GO:0048707","instar larval or pupal morphogenesis",8,2,4.6,2638,"0.98759","0.99611","0.99611" +"GO:0055123","digestive system development",8,2,4.6,2639,"0.98759","0.99611","0.99611" +"GO:0061572","actin filament bundle organization",8,2,4.6,2640,"0.98759","0.99611","0.99611" +"GO:0051247","positive regulation of protein metabolic...",67,29,38.55,2678,"0.99377","0.99626","0.99626" +"GO:0046488","phosphatidylinositol metabolic process",25,12,14.38,1772,"0.87900","0.99632","0.99632" +"GO:0010558","negative regulation of macromolecule bio...",67,28,38.55,2747,"0.99699","0.99647","0.99647" +"GO:0042058","regulation of epidermal growth factor re...",7,1,4.03,2772,"0.99754","0.99660","0.99660" +"GO:0042059","negative regulation of epidermal growth ...",7,1,4.03,2773,"0.99754","0.99660","0.99660" +"GO:0051017","actin filament bundle assembly",7,2,4.03,2517,"0.97405","0.99660","0.99660" +"GO:1901184","regulation of ERBB signaling pathway",7,1,4.03,2774,"0.99754","0.99660","0.99660" +"GO:1901185","negative regulation of ERBB signaling pa...",7,1,4.03,2775,"0.99754","0.99660","0.99660" +"GO:2001022","positive regulation of response to DNA d...",6,3,3.45,1368,"0.78526","0.99666","0.99666" +"GO:0051972","regulation of telomerase activity",3,1,1.73,2172,"0.92354","0.99667","0.99667" +"GO:0001776","leukocyte homeostasis",4,1,2.3,2453,"0.96758","0.99671","0.99671" +"GO:0002260","lymphocyte homeostasis",4,1,2.3,2454,"0.96758","0.99671","0.99671" +"GO:0061298","retina vasculature development in camera...",4,1,2.3,2455,"0.96758","0.99671","0.99671" +"GO:0070647","protein modification by small protein co...",82,38,47.18,2573,"0.98549","0.99681","0.99681" +"GO:0001704","formation of primary germ layer",6,2,3.45,2301,"0.94666","0.99709","0.99709" +"GO:0002119","nematode larval development",6,1,3.45,2710,"0.99418","0.99709","0.99709" +"GO:0007472","wing disc morphogenesis",6,2,3.45,2302,"0.94666","0.99709","0.99709" +"GO:0008340","determination of adult lifespan",6,1,3.45,2711,"0.99418","0.99709","0.99709" +"GO:0010669","epithelial structure maintenance",6,1,3.45,2712,"0.99418","0.99709","0.99709" +"GO:0030038","contractile actin filament bundle assemb...",6,1,3.45,2713,"0.99418","0.99709","0.99709" +"GO:0035220","wing disc development",6,2,3.45,2303,"0.94666","0.99709","0.99709" +"GO:0043112","receptor metabolic process",6,3,3.45,1369,"0.78526","0.99709","0.99709" +"GO:0043149","stress fiber assembly",6,1,3.45,2714,"0.99418","0.99709","0.99709" +"GO:0048568","embryonic organ development",33,14,18.99,2496,"0.97340","0.99716","0.99716" +"GO:0034605","cellular response to heat",7,3,4.03,1767,"0.87821","0.99720","0.99720" +"GO:0048585","negative regulation of response to stimu...",72,23,41.43,2889,"1.00000","0.99721","0.99721" +"GO:0007009","plasma membrane organization",5,2,2.88,1857,"0.89286","0.99722","0.99722" +"GO:0042398","cellular modified amino acid biosyntheti...",5,2,2.88,1858,"0.89286","0.99722","0.99722" +"GO:1901564","organonitrogen compound metabolic proces...",916,538,527.03,281,"0.19603","0.09009","0.99735" +"GO:0051716","cellular response to stimulus",508,238,292.28,2895,"1.00000","0.99739","0.99739" +"GO:0032446","protein modification by small protein co...",66,31,37.97,2473,"0.96957","0.99745","0.99745" +"GO:0007267","cell-cell signaling",65,26,37.4,2811,"0.99866","0.99749","0.99749" +"GO:0032270","positive regulation of cellular protein ...",65,28,37.4,2676,"0.99375","0.99749","0.99749" +"GO:0044089","positive regulation of cellular componen...",36,14,20.71,2670,"0.99254","0.99755","0.99755" +"GO:0002011","morphogenesis of an epithelial sheet",5,1,2.88,2605,"0.98626","0.99757","0.99757" +"GO:0040025","vulval development",5,1,2.88,2606,"0.98626","0.99757","0.99757" +"GO:0048580","regulation of post-embryonic development",5,1,2.88,2607,"0.98626","0.99757","0.99757" +"GO:0000387","spliceosomal snRNP assembly",7,3,4.03,1768,"0.87821","0.99761","0.99761" +"GO:0009968","negative regulation of signal transducti...",59,19,33.95,2880,"0.99998","0.99772","0.99772" +"GO:0010648","negative regulation of cell communicatio...",59,19,33.95,2881,"0.99998","0.99772","0.99772" +"GO:0023057","negative regulation of signaling",59,19,33.95,2882,"0.99998","0.99772","0.99772" +"GO:0000165","MAPK cascade",23,7,13.23,2783,"0.99782","0.99803","0.99803" +"GO:0023014","signal transduction by protein phosphory...",23,7,13.23,2784,"0.99782","0.99803","0.99803" +"GO:0072358","cardiovascular system development",23,6,13.23,2847,"0.99950","0.99803","0.99803" +"GO:0007297","ovarian follicle cell migration",4,1,2.3,2456,"0.96758","0.99806","0.99806" +"GO:0008360","regulation of cell shape",4,1,2.3,2457,"0.96758","0.99806","0.99806" +"GO:0010469","regulation of signaling receptor activit...",4,1,2.3,2458,"0.96758","0.99806","0.99806" +"GO:0031623","receptor internalization",4,2,2.3,1577,"0.79143","0.99806","0.99806" +"GO:0033627","cell adhesion mediated by integrin",4,1,2.3,2459,"0.96758","0.99806","0.99806" +"GO:0035272","exocrine system development",4,1,2.3,2460,"0.96758","0.99806","0.99806" +"GO:0048008","platelet-derived growth factor receptor ...",4,0,2.3,2950,"1.00000","0.99806","0.99806" +"GO:0048806","genitalia development",4,0,2.3,2951,"1.00000","0.99806","0.99806" +"GO:0110020","regulation of actomyosin structure organ...",4,0,2.3,2952,"1.00000","0.99806","0.99806" +"GO:1902117","positive regulation of organelle assembl...",4,0,2.3,2953,"1.00000","0.99806","0.99806" +"GO:0048870","cell motility",50,16,28.77,2868,"0.99993","0.99808","0.99808" +"GO:0051674","localization of cell",50,16,28.77,2869,"0.99993","0.99808","0.99808" +"GO:0019538","protein metabolic process",727,416,418.29,813,"0.59667","0.60880","0.99812" +"GO:0001944","vasculature development",21,6,12.08,2800,"0.99826","0.99820","0.99820" +"GO:0016477","cell migration",45,13,25.89,2879,"0.99998","0.99827","0.99827" +"GO:0001568","blood vessel development",20,5,11.51,2840,"0.99932","0.99829","0.99829" +"GO:0033554","cellular response to stress",148,73,85.15,2566,"0.98435","0.99829","0.99829" +"GO:0006658","phosphatidylserine metabolic process",3,1,1.73,2173,"0.92354","0.99833","0.99833" +"GO:0006659","phosphatidylserine biosynthetic process",3,1,1.73,2174,"0.92354","0.99833","0.99833" +"GO:0035455","response to interferon-alpha",3,1,1.73,2175,"0.92354","0.99833","0.99833" +"GO:0045071","negative regulation of viral genome repl...",3,1,1.73,2176,"0.92354","0.99833","0.99833" +"GO:0048525","negative regulation of viral process",3,1,1.73,2177,"0.92354","0.99833","0.99833" +"GO:0097194","execution phase of apoptosis",3,1,1.73,2178,"0.92354","0.99833","0.99833" +"GO:1903901","negative regulation of viral life cycle",3,1,1.73,2179,"0.92354","0.99833","0.99833" +"GO:0002694","regulation of leukocyte activation",19,5,10.93,2812,"0.99869","0.99837","0.99837" +"GO:0046649","lymphocyte activation",19,6,10.93,2719,"0.99425","0.99837","0.99837" +"GO:0050865","regulation of cell activation",19,5,10.93,2813,"0.99869","0.99837","0.99837" +"GO:1903332","regulation of protein folding",4,1,2.3,2461,"0.96758","0.99840","0.99840" +"GO:1900034","regulation of cellular response to heat",4,0,2.3,2954,"1.00000","0.99840","0.99840" +"GO:0007431","salivary gland development",3,1,1.73,2180,"0.92354","0.99854","0.99854" +"GO:0035152","regulation of tube architecture, open tr...",3,1,1.73,2181,"0.92354","0.99854","0.99854" +"GO:0035160","maintenance of epithelial integrity, ope...",3,1,1.73,2182,"0.92354","0.99854","0.99854" +"GO:0090598","male anatomical structure morphogenesis",3,1,1.73,2183,"0.92354","0.99854","0.99854" +"GO:0007229","integrin-mediated signaling pathway",3,0,1.73,2955,"1.00000","0.99854","0.99854" +"GO:0007298","border follicle cell migration",3,0,1.73,2956,"1.00000","0.99854","0.99854" +"GO:0008277","regulation of G protein-coupled receptor...",3,0,1.73,2957,"1.00000","0.99854","0.99854" +"GO:0008354","germ cell migration",3,0,1.73,2958,"1.00000","0.99854","0.99854" +"GO:0030539","male genitalia development",3,0,1.73,2959,"1.00000","0.99854","0.99854" +"GO:0032231","regulation of actin filament bundle asse...",3,0,1.73,2960,"1.00000","0.99854","0.99854" +"GO:0050730","regulation of peptidyl-tyrosine phosphor...",3,0,1.73,2961,"1.00000","0.99854","0.99854" +"GO:0050731","positive regulation of peptidyl-tyrosine...",3,0,1.73,2962,"1.00000","0.99854","0.99854" +"GO:0050900","leukocyte migration",3,0,1.73,2963,"1.00000","0.99854","0.99854" +"GO:0051492","regulation of stress fiber assembly",3,0,1.73,2964,"1.00000","0.99854","0.99854" +"GO:0061097","regulation of protein tyrosine kinase ac...",3,0,1.73,2965,"1.00000","0.99854","0.99854" +"GO:0071711","basement membrane organization",3,0,1.73,2966,"1.00000","0.99854","0.99854" +"GO:1903053","regulation of extracellular matrix organ...",3,0,1.73,2967,"1.00000","0.99854","0.99854" +"GO:0051249","regulation of lymphocyte activation",17,4,9.78,2835,"0.99910","0.99855","0.99855" +"GO:0044267","cellular protein metabolic process",621,360,357.3,512,"0.42010","0.37204","0.99855" +"GO:0043543","protein acylation",26,12,14.96,1909,"0.91531","0.99865","0.99865" +"GO:0043412","macromolecule modification",443,218,254.89,2873,"0.99995","0.99875","0.99875" +"GO:0060711","labyrinthine layer development",3,1,1.73,2184,"0.92354","0.99880","0.99880" +"GO:0030099","myeloid cell differentiation",14,5,8.06,2482,"0.97263","0.99880","0.99880" +"GO:0198738","cell-cell signaling by wnt",31,7,17.84,2884,"0.99999","0.99882","0.99882" +"GO:0009746","response to hexose",5,2,2.88,1859,"0.89286","0.99882","0.99882" +"GO:0009749","response to glucose",5,2,2.88,1860,"0.89286","0.99882","0.99882" +"GO:0034284","response to monosaccharide",5,2,2.88,1861,"0.89286","0.99882","0.99882" +"GO:0006464","cellular protein modification process",403,196,231.87,2875,"0.99996","0.99889","0.99889" +"GO:0036211","protein modification process",403,196,231.87,2876,"0.99996","0.99889","0.99889" +"GO:1905114","cell surface receptor signaling pathway ...",29,6,16.69,2885,"0.99999","0.99889","0.99889" +"GO:0016055","Wnt signaling pathway",28,6,16.11,2883,"0.99998","0.99893","0.99893" +"GO:0002262","myeloid cell homeostasis",9,2,5.18,2689,"0.99414","0.99923","0.99923" +"GO:0030218","erythrocyte differentiation",9,2,5.18,2690,"0.99414","0.99923","0.99923" +"GO:0034101","erythrocyte homeostasis",9,2,5.18,2691,"0.99414","0.99923","0.99923" +"GO:0030111","regulation of Wnt signaling pathway",18,3,10.36,2871,"0.99994","0.99932","0.99932" +"GO:0070371","ERK1 and ERK2 cascade",8,1,4.6,2828,"0.99896","0.99932","0.99932" +"GO:0051128","regulation of cellular component organiz...",137,63,78.82,2790,"0.99799","0.99939","0.99939" +"GO:0045637","regulation of myeloid cell differentiati...",7,2,4.03,2518,"0.97405","0.99940","0.99940" +"GO:0070372","regulation of ERK1 and ERK2 cascade",7,1,4.03,2776,"0.99754","0.99940","0.99940" +"GO:2000736","regulation of stem cell differentiation",7,2,4.03,2519,"0.97405","0.99940","0.99940" +"GO:0006928","movement of cell or subcellular componen...",85,38,48.91,2717,"0.99424","0.99942","0.99942" +"GO:0070373","negative regulation of ERK1 and ERK2 cas...",4,0,2.3,2968,"1.00000","0.99944","0.99944" +"GO:0035162","embryonic hemopoiesis",6,1,3.45,2715,"0.99418","0.99949","0.99949" +"GO:0006302","double-strand break repair",11,5,6.33,1695,"0.86775","0.99956","0.99956" +"GO:0001935","endothelial cell proliferation",5,1,2.88,2608,"0.98626","0.99957","0.99957" +"GO:0045646","regulation of erythrocyte differentiatio...",5,1,2.88,2609,"0.98626","0.99957","0.99957" +"GO:0030178","negative regulation of Wnt signaling pat...",11,1,6.33,2863,"0.99992","0.99958","0.99958" +"GO:0052547","regulation of peptidase activity",11,4,6.33,2349,"0.95763","0.99958","0.99958" +"GO:0052548","regulation of endopeptidase activity",11,4,6.33,2350,"0.95763","0.99958","0.99958" +"GO:2000116","regulation of cysteine-type endopeptidas...",11,4,6.33,2351,"0.95763","0.99958","0.99958" +"GO:0043281","regulation of cysteine-type endopeptidas...",9,3,5.18,2386,"0.96464","0.99966","0.99966" +"GO:0045638","negative regulation of myeloid cell diff...",4,0,2.3,2969,"1.00000","0.99966","0.99966" +"GO:1903707","negative regulation of hemopoiesis",4,0,2.3,2970,"1.00000","0.99966","0.99966" +"GO:0034314","Arp2/3 complex-mediated actin nucleation",5,2,2.88,1862,"0.89286","0.99966","0.99966" +"GO:0043967","histone H4 acetylation",6,3,3.45,1370,"0.78526","0.99969","0.99969" +"GO:0030902","hindbrain development",8,2,4.6,2641,"0.98759","0.99970","0.99970" +"GO:0051130","positive regulation of cellular componen...",69,27,39.7,2842,"0.99939","0.99970","0.99970" +"GO:0009299","mRNA transcription",3,1,1.73,2185,"0.92354","0.99974","0.99974" +"GO:0042789","mRNA transcription by RNA polymerase II",3,1,1.73,2186,"0.92354","0.99974","0.99974" +"GO:0001777","T cell homeostatic proliferation",3,0,1.73,2971,"1.00000","0.99974","0.99974" +"GO:0002244","hematopoietic progenitor cell differenti...",3,0,1.73,2972,"1.00000","0.99974","0.99974" +"GO:0031958","corticosteroid receptor signaling pathwa...",3,0,1.73,2973,"1.00000","0.99974","0.99974" +"GO:0042921","glucocorticoid receptor signaling pathwa...",3,0,1.73,2974,"1.00000","0.99974","0.99974" +"GO:0043029","T cell homeostasis",3,0,1.73,2975,"1.00000","0.99974","0.99974" +"GO:0046013","regulation of T cell homeostatic prolife...",3,0,1.73,2976,"1.00000","0.99974","0.99974" +"GO:0061299","retina vasculature morphogenesis in came...",3,0,1.73,2977,"1.00000","0.99974","0.99974" +"GO:0061304","retinal blood vessel morphogenesis",3,0,1.73,2978,"1.00000","0.99974","0.99974" +"GO:0006767","water-soluble vitamin metabolic process",4,0,2.3,2979,"1.00000","0.99976","0.99976" +"GO:0042551","neuron maturation",5,2,2.88,1863,"0.89286","0.99981","0.99981" +"GO:1901137","carbohydrate derivative biosynthetic pro...",92,52,52.93,1057,"0.62241","0.36806","0.99982" +"GO:0010638","positive regulation of organelle organiz...",43,18,24.74,2617,"0.98739","0.99982","0.99982" +"GO:0016322","neuron remodeling",4,1,2.3,2462,"0.96758","0.99985","0.99985" +"GO:0090407","organophosphate biosynthetic process",78,43,44.88,1245,"0.71093","0.43574","0.99985" +"GO:0006644","phospholipid metabolic process",50,24,28.77,2223,"0.93515","0.99988","0.99988" +"GO:0046486","glycerolipid metabolic process",39,18,22.44,2249,"0.94567","0.99991","0.99991" +"GO:0006650","glycerophospholipid metabolic process",36,17,20.71,1930,"0.92288","0.99991","0.99991" +"GO:0051052","regulation of DNA metabolic process",15,7,8.63,1688,"0.86739","0.99994","0.99994" +"GO:0008654","phospholipid biosynthetic process",22,5,12.66,2855,"0.99982","0.99995","0.99995" +"GO:0045930","negative regulation of mitotic cell cycl...",12,5,6.9,1924,"0.91954","0.99995","0.99995" +"GO:0016073","snRNA metabolic process",11,5,6.33,1696,"0.86775","0.99995","0.99995" +"GO:0006497","protein lipidation",19,7,10.93,2542,"0.98008","0.99995","0.99995" +"GO:0042157","lipoprotein metabolic process",19,7,10.93,2543,"0.98008","0.99995","0.99995" +"GO:0042158","lipoprotein biosynthetic process",19,7,10.93,2544,"0.98008","0.99995","0.99995" +"GO:0045017","glycerolipid biosynthetic process",18,4,10.36,2851,"0.99955","0.99996","0.99996" +"GO:0007093","mitotic cell cycle checkpoint",10,4,5.75,2197,"0.92495","0.99996","0.99996" +"GO:0046474","glycerophospholipid biosynthetic process",16,4,9.21,2796,"0.99822","0.99996","0.99996" +"GO:2001252","positive regulation of chromosome organi...",9,3,5.18,2387,"0.96464","0.99996","0.99996" +"GO:0010212","response to ionizing radiation",7,2,4.03,2520,"0.97405","0.99997","0.99997" +"GO:0071897","DNA biosynthetic process",6,1,3.45,2716,"0.99418","0.99997","0.99997" +"GO:0006505","GPI anchor metabolic process",10,3,5.75,2553,"0.98165","0.99998","0.99998" +"GO:0006661","phosphatidylinositol biosynthetic proces...",10,2,5.75,2759,"0.99727","0.99998","0.99998" +"GO:0006506","GPI anchor biosynthetic process",9,2,5.18,2692,"0.99414","0.99998","0.99998" +"GO:2000278","regulation of DNA biosynthetic process",4,1,2.3,2463,"0.96758","0.99998","0.99998" +"GO:0009301","snRNA transcription",4,0,2.3,2980,"1.00000","0.99998","0.99998" +"GO:0098781","ncRNA transcription",4,0,2.3,2981,"1.00000","0.99998","0.99998" +"GO:0042795","snRNA transcription by RNA polymerase II",3,0,1.73,2982,"1.00000","0.99999","0.99999" +"GO:0008150","biological_process",2760,1588,1588,2983,"1.00000","1.00000","1.00000" +"GO:0015985","energy coupled proton transport, down el...",12,11,6.9,44,"0.01282","0.00565","1.00000" +"GO:0016053","organic acid biosynthetic process",35,28,20.14,21,"0.00437","0.00814","1.00000" +"GO:0035384","thioester biosynthetic process",5,5,2.88,97,"0.06288","0.00880","1.00000" diff --git a/GO_enrichment_output/contrast_young_phoretic_downregulated.csv b/GO_enrichment_output/contrast_young_phoretic_downregulated.csv index 1729883..ea3892b 100644 --- a/GO_enrichment_output/contrast_young_phoretic_downregulated.csv +++ b/GO_enrichment_output/contrast_young_phoretic_downregulated.csv @@ -1,6 +1,1107 @@ "GO.ID","Term","Annotated","Significant","Expected","Rank in classicFisher","classicFisher","classicKS","elimKS" "GO:0055114","oxidation-reduction process",143,100,77.4,1,"5.3e-05","2.5e-08","2.5e-08" -"GO:0043094","cellular metabolic compound salvage",8,7,4.33,60,"0.0570","0.00037","0.00037" -"GO:0034754","cellular hormone metabolic process",6,5,3.25,148,"0.1527","0.00081","0.00081" -"GO:0000070","mitotic sister chromatid segregation",15,14,8.12,4,"0.0013","0.00250","0.00250" -"GO:0000097","sulfur amino acid biosynthetic process",4,4,2.16,83,"0.0856","0.00405","0.00405" +"GO:0000070","mitotic sister chromatid segregation",15,14,8.12,4,"0.00134","0.00250","0.0025" +"GO:0044281","small molecule metabolic process",238,149,128.82,6,"0.00344","0.00035","0.0033" +"GO:0042445","hormone metabolic process",10,9,5.41,19,"0.02026","0.00419","0.0042" +"GO:0006260","DNA replication",65,48,35.18,2,"0.00076","0.00423","0.0042" +"GO:1901607","alpha-amino acid biosynthetic process",14,11,7.58,41,"0.05504","0.00482","0.0048" +"GO:0006720","isoprenoid metabolic process",19,10,10.28,413,"0.64291","0.00763","0.0076" +"GO:0007088","regulation of mitotic nuclear division",11,10,5.95,14,"0.01191","0.00779","0.0078" +"GO:0044272","sulfur compound biosynthetic process",14,9,7.58,185,"0.31282","0.01029","0.0103" +"GO:0006081","cellular aldehyde metabolic process",12,10,6.49,28,"0.03670","0.01184","0.0118" +"GO:1901987","regulation of cell cycle phase transitio...",17,14,9.2,18,"0.01521","0.01292","0.0129" +"GO:0007093","mitotic cell cycle checkpoint",11,9,5.95,46,"0.05781","0.01597","0.0160" +"GO:0005975","carbohydrate metabolic process",75,49,40.59,26,"0.03059","0.02115","0.0212" +"GO:0032787","monocarboxylic acid metabolic process",34,23,18.4,59,"0.07663","0.02468","0.0247" +"GO:1901990","regulation of mitotic cell cycle phase t...",16,13,8.66,23,"0.02363","0.02521","0.0252" +"GO:0000075","cell cycle checkpoint",18,13,9.74,64,"0.09377","0.02644","0.0264" +"GO:0006082","organic acid metabolic process",108,71,58.45,11,"0.00827","0.00410","0.0285" +"GO:0043436","oxoacid metabolic process",108,71,58.45,12,"0.00827","0.00410","0.0285" +"GO:0051090","regulation of DNA-binding transcription ...",14,8,7.58,304,"0.51950","0.02964","0.0296" +"GO:0006694","steroid biosynthetic process",12,8,6.49,160,"0.28267","0.02998","0.0300" +"GO:0071383","cellular response to steroid hormone sti...",17,11,9.2,148,"0.26499","0.03211","0.0321" +"GO:0006631","fatty acid metabolic process",24,15,12.99,158,"0.26876","0.03237","0.0324" +"GO:0044772","mitotic cell cycle phase transition",25,18,13.53,39,"0.05280","0.03601","0.0360" +"GO:0044057","regulation of system process",12,7,6.49,289,"0.50210","0.03627","0.0363" +"GO:0009116","nucleoside metabolic process",17,11,9.2,149,"0.26499","0.03660","0.0366" +"GO:1901657","glycosyl compound metabolic process",17,11,9.2,150,"0.26499","0.03660","0.0366" +"GO:0019752","carboxylic acid metabolic process",107,70,57.91,13,"0.01032","0.00580","0.0366" +"GO:0000278","mitotic cell cycle",64,46,34.64,5,"0.00250","0.00172","0.0384" +"GO:0008202","steroid metabolic process",16,9,8.66,317,"0.53467","0.04300","0.0430" +"GO:0043401","steroid hormone mediated signaling pathw...",15,10,8.12,125,"0.23826","0.04473","0.0447" +"GO:0006066","alcohol metabolic process",22,15,11.91,79,"0.13215","0.04803","0.0480" +"GO:0044770","cell cycle phase transition",28,20,15.15,34,"0.04694","0.05078","0.0508" +"GO:1903047","mitotic cell cycle process",50,38,27.06,3,"0.00108","0.00124","0.0537" +"GO:0072522","purine-containing compound biosynthetic ...",27,20,14.61,24,"0.02694","0.05596","0.0560" +"GO:0046486","glycerolipid metabolic process",35,24,18.94,47,"0.05841","0.06114","0.0611" +"GO:0051606","detection of stimulus",11,7,5.95,206,"0.37410","0.06374","0.0637" +"GO:0034660","ncRNA metabolic process",132,68,71.44,534,"0.76062","0.06383","0.0638" +"GO:0006664","glycolipid metabolic process",10,9,5.41,20,"0.02026","0.06776","0.0678" +"GO:1903509","liposaccharide metabolic process",10,9,5.41,21,"0.02026","0.06776","0.0678" +"GO:0045930","negative regulation of mitotic cell cycl...",13,10,7.04,61,"0.08232","0.06789","0.0679" +"GO:0006790","sulfur compound metabolic process",31,17,16.78,326,"0.54207","0.07027","0.0703" +"GO:0071407","cellular response to organic cyclic comp...",22,12,11.91,341,"0.57147","0.07419","0.0742" +"GO:0006397","mRNA processing",68,41,36.8,103,"0.18123","0.07420","0.0742" +"GO:1901565","organonitrogen compound catabolic proces...",120,74,64.95,40,"0.05373","0.07755","0.0775" +"GO:0044282","small molecule catabolic process",23,17,12.45,32,"0.04211","0.07765","0.0776" +"GO:0006164","purine nucleotide biosynthetic process",26,19,14.07,29,"0.03793","0.07890","0.0789" +"GO:0046474","glycerophospholipid biosynthetic process",19,15,10.28,22,"0.02309","0.08196","0.0820" +"GO:0005996","monosaccharide metabolic process",21,13,11.37,183,"0.31123","0.08251","0.0825" +"GO:1903827","regulation of cellular protein localizat...",26,19,14.07,30,"0.03793","0.08324","0.0832" +"GO:0006650","glycerophospholipid metabolic process",32,23,17.32,25,"0.03049","0.08561","0.0856" +"GO:0030522","intracellular receptor signaling pathway",11,7,5.95,207,"0.37410","0.08629","0.0863" +"GO:0014070","response to organic cyclic compound",42,21,22.73,530,"0.75754","0.08851","0.0885" +"GO:0007346","regulation of mitotic cell cycle",29,22,15.7,16,"0.01319","0.00415","0.0932" +"GO:0006497","protein lipidation",15,10,8.12,126,"0.23826","0.09528","0.0953" +"GO:0042158","lipoprotein biosynthetic process",15,10,8.12,127,"0.23826","0.09528","0.0953" +"GO:0030163","protein catabolic process",100,61,54.12,66,"0.09549","0.09555","0.0955" +"GO:0032870","cellular response to hormone stimulus",26,16,14.07,176,"0.28784","0.09725","0.0973" +"GO:0000910","cytokinesis",11,8,5.95,93,"0.17498","0.09936","0.0994" +"GO:0044839","cell cycle G2/M phase transition",12,8,6.49,161,"0.28267","0.09962","0.0996" +"GO:0010564","regulation of cell cycle process",34,23,18.4,60,"0.07663","0.00703","0.1015" +"GO:0010821","regulation of mitochondrion organization",16,12,8.66,54,"0.07427","0.10322","0.1032" +"GO:1901615","organic hydroxy compound metabolic proce...",35,22,18.94,105,"0.19175","0.10441","0.1044" +"GO:1901575","organic substance catabolic process",186,110,100.67,63,"0.08839","0.10452","0.1045" +"GO:0033993","response to lipid",50,25,27.06,539,"0.76901","0.10858","0.1086" +"GO:0048593","camera-type eye morphogenesis",10,7,5.41,129,"0.24739","0.10893","0.1089" +"GO:1901605","alpha-amino acid metabolic process",26,19,14.07,31,"0.03793","0.00653","0.1102" +"GO:1901135","carbohydrate derivative metabolic proces...",148,89,80.1,58,"0.07642","0.11030","0.1103" +"GO:0090596","sensory organ morphogenesis",23,14,12.45,191,"0.33147","0.11114","0.1111" +"GO:0006261","DNA-dependent DNA replication",28,20,15.15,35,"0.04694","0.11271","0.1127" +"GO:0046434","organophosphate catabolic process",13,10,7.04,62,"0.08232","0.11395","0.1140" +"GO:0006022","aminoglycan metabolic process",14,9,7.58,186,"0.31282","0.11533","0.1153" +"GO:0006040","amino sugar metabolic process",14,10,7.58,81,"0.15050","0.11533","0.1153" +"GO:0009127","purine nucleoside monophosphate biosynth...",14,11,7.58,42,"0.05504","0.11928","0.1193" +"GO:0009168","purine ribonucleoside monophosphate bios...",14,11,7.58,43,"0.05504","0.11928","0.1193" +"GO:1903829","positive regulation of cellular protein ...",16,12,8.66,55,"0.07427","0.12310","0.1231" +"GO:0000375","RNA splicing, via transesterification re...",48,30,25.98,83,"0.15159","0.12400","0.1240" +"GO:0000377","RNA splicing, via transesterification re...",48,30,25.98,84,"0.15159","0.12400","0.1240" +"GO:0000398","mRNA splicing, via spliceosome",48,30,25.98,85,"0.15159","0.12400","0.1240" +"GO:0006030","chitin metabolic process",10,7,5.41,130,"0.24739","0.12822","0.1282" +"GO:0019637","organophosphate metabolic process",129,79,69.82,45,"0.05725","0.12912","0.1291" +"GO:0006508","proteolysis",188,112,101.75,52,"0.06884","0.12963","0.1296" +"GO:0043068","positive regulation of programmed cell d...",23,15,12.45,106,"0.19496","0.13046","0.1305" +"GO:0044242","cellular lipid catabolic process",16,11,8.66,99,"0.17777","0.13064","0.1306" +"GO:0016573","histone acetylation",16,11,8.66,100,"0.17777","0.13344","0.1334" +"GO:0000086","G2/M transition of mitotic cell cycle",11,7,5.95,208,"0.37410","0.13384","0.1338" +"GO:0031570","DNA integrity checkpoint",12,8,6.49,162,"0.28267","0.13387","0.1339" +"GO:0097164","ammonium ion metabolic process",16,12,8.66,56,"0.07427","0.13993","0.1399" +"GO:1901617","organic hydroxy compound biosynthetic pr...",17,9,9.2,403,"0.63564","0.14065","0.1407" +"GO:0009755","hormone-mediated signaling pathway",18,11,9.74,203,"0.36232","0.14210","0.1421" +"GO:0010822","positive regulation of mitochondrion org...",14,10,7.58,82,"0.15050","0.14781","0.1478" +"GO:0034470","ncRNA processing",100,53,54.12,401,"0.63105","0.14812","0.1481" +"GO:0042157","lipoprotein metabolic process",17,11,9.2,151,"0.26499","0.14868","0.1487" +"GO:0010970","transport along microtubule",13,9,7.04,110,"0.20847","0.14993","0.1499" +"GO:0099111","microtubule-based transport",13,9,7.04,111,"0.20847","0.14993","0.1499" +"GO:0045017","glycerolipid biosynthetic process",20,15,10.82,33,"0.04653","0.15206","0.1521" +"GO:0043543","protein acylation",26,15,14.07,250,"0.43513","0.15445","0.1545" +"GO:1901071","glucosamine-containing compound metaboli...",13,9,7.04,112,"0.20847","0.15740","0.1574" +"GO:0048545","response to steroid hormone",28,16,15.15,257,"0.44983","0.15839","0.1584" +"GO:0009156","ribonucleoside monophosphate biosyntheti...",16,12,8.66,57,"0.07427","0.15867","0.1587" +"GO:0019216","regulation of lipid metabolic process",14,9,7.58,187,"0.31282","0.16255","0.1625" +"GO:1902749","regulation of cell cycle G2/M phase tran...",10,7,5.41,131,"0.24739","0.16568","0.1657" +"GO:0046488","phosphatidylinositol metabolic process",18,13,9.74,65,"0.09377","0.16609","0.1661" +"GO:0022402","cell cycle process",96,61,51.96,27,"0.03656","0.01942","0.1663" +"GO:0097191","extrinsic apoptotic signaling pathway",10,6,5.41,269,"0.48160","0.16802","0.1680" +"GO:0033157","regulation of intracellular protein tran...",16,11,8.66,101,"0.17777","0.17201","0.1720" +"GO:0009124","nucleoside monophosphate biosynthetic pr...",17,12,9.2,77,"0.13020","0.17342","0.1734" +"GO:0007018","microtubule-based movement",33,19,17.86,232,"0.41311","0.17356","0.1736" +"GO:0009725","response to hormone",53,30,28.69,231,"0.41181","0.17371","0.1737" +"GO:0048562","embryonic organ morphogenesis",12,8,6.49,163,"0.28267","0.17912","0.1791" +"GO:0016042","lipid catabolic process",22,14,11.91,141,"0.24838","0.18033","0.1803" +"GO:0006979","response to oxidative stress",38,19,20.57,523,"0.75163","0.18054","0.1805" +"GO:0045786","negative regulation of cell cycle",33,20,17.86,174,"0.28365","0.18061","0.1806" +"GO:0006289","nucleotide-excision repair",13,8,7.04,222,"0.40140","0.18206","0.1821" +"GO:0006468","protein phosphorylation",137,77,74.15,198,"0.34016","0.18358","0.1836" +"GO:0016051","carbohydrate biosynthetic process",16,11,8.66,102,"0.17777","0.18388","0.1839" +"GO:0006913","nucleocytoplasmic transport",43,29,23.27,38,"0.05209","0.18625","0.1862" +"GO:0055086","nucleobase-containing small molecule met...",89,54,48.17,76,"0.12403","0.18851","0.1885" +"GO:0048592","eye morphogenesis",22,13,11.91,227,"0.40201","0.18870","0.1887" +"GO:1903214","regulation of protein targeting to mitoc...",11,8,5.95,94,"0.17498","0.19135","0.1914" +"GO:1903533","regulation of protein targeting",11,8,5.95,95,"0.17498","0.19135","0.1914" +"GO:1903749","positive regulation of establishment of ...",11,8,5.95,96,"0.17498","0.19135","0.1914" +"GO:1903955","positive regulation of protein targeting...",11,8,5.95,97,"0.17498","0.19135","0.1914" +"GO:0010638","positive regulation of organelle organiz...",41,25,22.19,122,"0.23368","0.19168","0.1917" +"GO:0009056","catabolic process",218,123,117.99,145,"0.26125","0.19564","0.1956" +"GO:0090407","organophosphate biosynthetic process",76,48,41.13,51,"0.06770","0.19641","0.1964" +"GO:0006364","rRNA processing",40,25,21.65,104,"0.18131","0.19809","0.1981" +"GO:0048736","appendage development",13,7,7.04,369,"0.61960","0.20166","0.2017" +"GO:0017144","drug metabolic process",59,38,31.93,53,"0.06972","0.20381","0.2038" +"GO:0009152","purine ribonucleotide biosynthetic proce...",23,16,12.45,67,"0.09865","0.20507","0.2051" +"GO:0000723","telomere maintenance",10,7,5.41,132,"0.24739","0.20592","0.2059" +"GO:0032200","telomere organization",10,7,5.41,133,"0.24739","0.20592","0.2059" +"GO:0010948","negative regulation of cell cycle proces...",13,9,7.04,113,"0.20847","0.21126","0.2113" +"GO:0006629","lipid metabolic process",149,87,80.65,89,"0.16068","0.06456","0.2153" +"GO:0006399","tRNA metabolic process",79,35,42.76,919,"0.97070","0.21876","0.2188" +"GO:0009605","response to external stimulus",93,45,50.34,720,"0.89180","0.21965","0.2196" +"GO:0071704","organic substance metabolic process",1614,873,873.57,322,"0.53479","0.14048","0.2216" +"GO:0044248","cellular catabolic process",191,105,103.38,249,"0.43346","0.22466","0.2247" +"GO:0035601","protein deacylation",12,9,6.49,73,"0.12113","0.23212","0.2321" +"GO:0098732","macromolecule deacylation",12,9,6.49,74,"0.12113","0.23212","0.2321" +"GO:0044257","cellular protein catabolic process",76,44,41.13,179,"0.29109","0.23824","0.2382" +"GO:0051603","proteolysis involved in cellular protein...",76,44,41.13,180,"0.29109","0.23824","0.2382" +"GO:0009416","response to light stimulus",16,8,8.66,485,"0.72113","0.23863","0.2386" +"GO:0030705","cytoskeleton-dependent intracellular tra...",14,9,7.58,188,"0.31282","0.23888","0.2389" +"GO:0006644","phospholipid metabolic process",50,32,27.06,70,"0.10106","0.23914","0.2391" +"GO:0032386","regulation of intracellular transport",26,17,14.07,90,"0.16866","0.24523","0.2452" +"GO:0016072","rRNA metabolic process",43,27,23.27,88,"0.15970","0.24608","0.2461" +"GO:0006281","DNA repair",88,51,47.63,157,"0.26671","0.25082","0.2508" +"GO:0070201","regulation of establishment of protein l...",25,15,13.53,199,"0.35016","0.25269","0.2527" +"GO:0030258","lipid modification",12,9,6.49,75,"0.12113","0.25535","0.2554" +"GO:0006396","RNA processing",205,110,110.96,345,"0.58479","0.25590","0.2559" +"GO:0071396","cellular response to lipid",27,12,14.61,704,"0.88649","0.25641","0.2564" +"GO:0006475","internal protein amino acid acetylation",17,11,9.2,152,"0.26499","0.25916","0.2592" +"GO:0018393","internal peptidyl-lysine acetylation",17,11,9.2,153,"0.26499","0.25916","0.2592" +"GO:0018394","peptidyl-lysine acetylation",17,11,9.2,154,"0.26499","0.25916","0.2592" +"GO:0051223","regulation of protein transport",23,14,12.45,192,"0.33147","0.26034","0.2603" +"GO:0044283","small molecule biosynthetic process",59,35,31.93,143,"0.24953","0.02119","0.2626" +"GO:0061077","chaperone-mediated protein folding",15,6,8.12,750,"0.91320","0.26302","0.2630" +"GO:0016073","snRNA metabolic process",13,7,7.04,370,"0.61960","0.26348","0.2635" +"GO:0006520","cellular amino acid metabolic process",62,40,33.56,48,"0.06170","0.05124","0.2639" +"GO:0048749","compound eye development",13,7,7.04,371,"0.61960","0.26441","0.2644" +"GO:0072657","protein localization to membrane",20,12,10.82,216,"0.38315","0.26720","0.2672" +"GO:0007049","cell cycle",137,84,74.15,36,"0.04918","0.04700","0.2713" +"GO:0006473","protein acetylation",19,12,10.28,177,"0.28918","0.27160","0.2716" +"GO:0051656","establishment of organelle localization",15,8,8.12,391,"0.62790","0.27310","0.2731" +"GO:0060341","regulation of cellular localization",39,25,21.11,80,"0.13577","0.27431","0.2743" +"GO:0060541","respiratory system development",10,7,5.41,134,"0.24739","0.27465","0.2746" +"GO:0009968","negative regulation of signal transducti...",46,25,24.9,331,"0.54869","0.27573","0.2757" +"GO:0010648","negative regulation of cell communicatio...",46,25,24.9,332,"0.54869","0.27573","0.2757" +"GO:0023057","negative regulation of signaling",46,25,24.9,333,"0.54869","0.27573","0.2757" +"GO:0009072","aromatic amino acid family metabolic pro...",10,7,5.41,135,"0.24739","0.27683","0.2768" +"GO:2001234","negative regulation of apoptotic signali...",11,5,5.95,604,"0.81094","0.27870","0.2787" +"GO:0051170","import into nucleus",18,12,9.74,107,"0.20306","0.27888","0.2789" +"GO:0072521","purine-containing compound metabolic pro...",48,30,25.98,86,"0.15159","0.27979","0.2798" +"GO:0045444","fat cell differentiation",10,7,5.41,136,"0.24739","0.28344","0.2834" +"GO:0043065","positive regulation of apoptotic process",21,13,11.37,184,"0.31123","0.28485","0.2849" +"GO:0008654","phospholipid biosynthetic process",28,19,15.15,69,"0.10005","0.28492","0.2849" +"GO:1901652","response to peptide",14,8,7.58,305,"0.51950","0.28588","0.2859" +"GO:0006733","oxidoreduction coenzyme metabolic proces...",18,10,9.74,327,"0.54816","0.28950","0.2895" +"GO:0060041","retina development in camera-type eye",13,7,7.04,372,"0.61960","0.29243","0.2924" +"GO:0046165","alcohol biosynthetic process",10,5,5.41,467,"0.71988","0.29467","0.2947" +"GO:0016054","organic acid catabolic process",17,11,9.2,155,"0.26499","0.29598","0.2960" +"GO:0046395","carboxylic acid catabolic process",17,11,9.2,156,"0.26499","0.29598","0.2960" +"GO:0008299","isoprenoid biosynthetic process",11,4,5.95,789,"0.93195","0.29642","0.2964" +"GO:0044255","cellular lipid metabolic process",103,60,55.75,121,"0.22487","0.17603","0.2970" +"GO:0043067","regulation of programmed cell death",60,34,32.47,221,"0.39541","0.30020","0.3002" +"GO:0001745","compound eye morphogenesis",11,6,5.95,355,"0.61061","0.30255","0.3025" +"GO:0006643","membrane lipid metabolic process",19,13,10.28,87,"0.15282","0.30288","0.3029" +"GO:0008152","metabolic process",1818,998,983.98,72,"0.11982","0.00408","0.3042" +"GO:0031400","negative regulation of protein modificat...",27,9,14.61,998,"0.99142","0.30781","0.3078" +"GO:0008610","lipid biosynthetic process",67,38,36.26,214,"0.38060","0.30811","0.3081" +"GO:0071900","regulation of protein serine/threonine k...",15,8,8.12,392,"0.62790","0.31766","0.3177" +"GO:0048524","positive regulation of viral process",10,7,5.41,137,"0.24739","0.31909","0.3191" +"GO:0006793","phosphorus metabolic process",303,168,164,194,"0.33402","0.32259","0.3226" +"GO:2001233","regulation of apoptotic signaling pathwa...",17,10,9.2,253,"0.44491","0.32327","0.3233" +"GO:0009108","coenzyme biosynthetic process",33,20,17.86,175,"0.28365","0.32507","0.3251" +"GO:0071495","cellular response to endogenous stimulus",46,23,24.9,535,"0.76334","0.32620","0.3262" +"GO:0030488","tRNA methylation",10,7,5.41,138,"0.24739","0.32747","0.3275" +"GO:0071214","cellular response to abiotic stimulus",10,5,5.41,468,"0.71988","0.32747","0.3275" +"GO:0104004","cellular response to environmental stimu...",10,5,5.41,469,"0.71988","0.32747","0.3275" +"GO:0071103","DNA conformation change",13,7,7.04,373,"0.61960","0.32985","0.3298" +"GO:0006796","phosphate-containing compound metabolic ...",300,166,162.37,202,"0.35039","0.33088","0.3309" +"GO:0007155","cell adhesion",38,23,20.57,146,"0.26423","0.33212","0.3321" +"GO:0022610","biological adhesion",38,23,20.57,147,"0.26423","0.33212","0.3321" +"GO:0090316","positive regulation of intracellular pro...",12,8,6.49,164,"0.28267","0.33499","0.3350" +"GO:1903747","regulation of establishment of protein l...",12,8,6.49,165,"0.28267","0.33499","0.3350" +"GO:0006405","RNA export from nucleus",18,10,9.74,328,"0.54816","0.33523","0.3352" +"GO:0019318","hexose metabolic process",17,10,9.2,254,"0.44491","0.33685","0.3369" +"GO:0009057","macromolecule catabolic process",135,74,73.07,263,"0.47034","0.33699","0.3370" +"GO:0008033","tRNA processing",52,22,28.14,901,"0.96899","0.33732","0.3373" +"GO:0046467","membrane lipid biosynthetic process",13,9,7.04,114,"0.20847","0.33755","0.3376" +"GO:0051169","nuclear transport",45,29,24.36,71,"0.10487","0.33915","0.3392" +"GO:0009126","purine nucleoside monophosphate metaboli...",26,17,14.07,91,"0.16866","0.34182","0.3418" +"GO:0009167","purine ribonucleoside monophosphate meta...",26,17,14.07,92,"0.16866","0.34182","0.3418" +"GO:0043434","response to peptide hormone",12,6,6.49,447,"0.71911","0.34217","0.3422" +"GO:0003013","circulatory system process",12,5,6.49,683,"0.87653","0.34240","0.3424" +"GO:0008015","blood circulation",12,5,6.49,684,"0.87653","0.34240","0.3424" +"GO:0090087","regulation of peptide transport",24,14,12.99,236,"0.41925","0.35236","0.3524" +"GO:0007034","vacuolar transport",20,11,10.82,336,"0.56034","0.35843","0.3584" +"GO:0009123","nucleoside monophosphate metabolic proce...",30,18,16.24,189,"0.32264","0.35867","0.3587" +"GO:0006575","cellular modified amino acid metabolic p...",11,8,5.95,98,"0.17498","0.35940","0.3594" +"GO:0006302","double-strand break repair",14,8,7.58,306,"0.51950","0.36022","0.3602" +"GO:0072524","pyridine-containing compound metabolic p...",16,9,8.66,318,"0.53467","0.36065","0.3606" +"GO:0010942","positive regulation of cell death",26,15,14.07,251,"0.43513","0.36115","0.3611" +"GO:0043903","regulation of symbiosis, encompassing mu...",12,8,6.49,166,"0.28267","0.36233","0.3623" +"GO:0006814","sodium ion transport",13,9,7.04,115,"0.20847","0.36234","0.3623" +"GO:0016071","mRNA metabolic process",96,51,51.96,384,"0.62053","0.36267","0.3627" +"GO:0030855","epithelial cell differentiation",27,15,14.61,312,"0.51965","0.36367","0.3637" +"GO:0006418","tRNA aminoacylation for protein translat...",25,13,13.53,426,"0.66249","0.36399","0.3640" +"GO:0043038","amino acid activation",25,13,13.53,427,"0.66249","0.36399","0.3640" +"GO:0043039","tRNA aminoacylation",25,13,13.53,428,"0.66249","0.36399","0.3640" +"GO:0009719","response to endogenous stimulus",70,36,37.89,466,"0.71979","0.36866","0.3687" +"GO:0009260","ribonucleotide biosynthetic process",25,16,13.53,117,"0.21450","0.36927","0.3693" +"GO:0046390","ribose phosphate biosynthetic process",25,16,13.53,118,"0.21450","0.36927","0.3693" +"GO:0006974","cellular response to DNA damage stimulus",120,66,64.95,259,"0.45981","0.36965","0.3697" +"GO:0048585","negative regulation of response to stimu...",63,34,34.1,338,"0.56210","0.37406","0.3741" +"GO:0098813","nuclear chromosome segregation",20,17,10.82,7,"0.00384","0.00812","0.3763" +"GO:1902532","negative regulation of intracellular sig...",23,13,12.45,285,"0.49373","0.37711","0.3771" +"GO:0009063","cellular amino acid catabolic process",11,7,5.95,209,"0.37410","0.37789","0.3779" +"GO:0009314","response to radiation",25,12,13.53,563,"0.79392","0.38201","0.3820" +"GO:0016311","dephosphorylation",37,15,20.03,898,"0.96678","0.38676","0.3868" +"GO:0006163","purine nucleotide metabolic process",44,27,23.81,108,"0.20681","0.38864","0.3886" +"GO:0006606","protein import into nucleus",16,10,8.66,195,"0.33908","0.38871","0.3887" +"GO:0009161","ribonucleoside monophosphate metabolic p...",29,18,15.7,144,"0.25075","0.39105","0.3911" +"GO:0042326","negative regulation of phosphorylation",18,5,9.74,1011,"0.99407","0.39170","0.3917" +"GO:0016310","phosphorylation",165,91,89.31,239,"0.42427","0.39360","0.3936" +"GO:0051052","regulation of DNA metabolic process",15,10,8.12,128,"0.23826","0.39375","0.3938" +"GO:0044262","cellular carbohydrate metabolic process",21,12,11.37,265,"0.47904","0.39806","0.3981" +"GO:0050657","nucleic acid transport",19,11,10.28,260,"0.46289","0.39994","0.3999" +"GO:0050658","RNA transport",19,11,10.28,261,"0.46289","0.39994","0.3999" +"GO:0051236","establishment of RNA localization",19,11,10.28,262,"0.46289","0.39994","0.3999" +"GO:0022618","ribonucleoprotein complex assembly",25,16,13.53,119,"0.21450","0.40342","0.4034" +"GO:0071826","ribonucleoprotein complex subunit organi...",25,16,13.53,120,"0.21450","0.40342","0.4034" +"GO:0006342","chromatin silencing",12,8,6.49,167,"0.28267","0.40487","0.4049" +"GO:0007051","spindle organization",12,8,6.49,168,"0.28267","0.40487","0.4049" +"GO:0006753","nucleoside phosphate metabolic process",71,41,38.43,182,"0.30940","0.40850","0.4085" +"GO:0022613","ribonucleoprotein complex biogenesis",83,49,44.92,116,"0.21198","0.40883","0.4088" +"GO:0016053","organic acid biosynthetic process",32,22,17.32,49,"0.06640","0.01618","0.4133" +"GO:0046394","carboxylic acid biosynthetic process",32,22,17.32,50,"0.06640","0.01618","0.4133" +"GO:0000154","rRNA modification",12,8,6.49,169,"0.28267","0.41548","0.4155" +"GO:0006511","ubiquitin-dependent protein catabolic pr...",66,37,35.72,237,"0.42416","0.41555","0.4156" +"GO:0019941","modification-dependent protein catabolic...",66,37,35.72,238,"0.42416","0.41555","0.4156" +"GO:0072331","signal transduction by p53 class mediato...",12,8,6.49,170,"0.28267","0.41722","0.4172" +"GO:0051168","nuclear export",19,10,10.28,414,"0.64291","0.42144","0.4214" +"GO:0009165","nucleotide biosynthetic process",41,25,22.19,123,"0.23368","0.42184","0.4218" +"GO:1901293","nucleoside phosphate biosynthetic proces...",41,25,22.19,124,"0.23368","0.42184","0.4218" +"GO:0006997","nucleus organization",13,8,7.04,223,"0.40140","0.42387","0.4239" +"GO:0001754","eye photoreceptor cell differentiation",12,5,6.49,685,"0.87653","0.42420","0.4242" +"GO:0048584","positive regulation of response to stimu...",80,39,43.3,673,"0.86296","0.42498","0.4250" +"GO:0051726","regulation of cell cycle",74,43,40.05,159,"0.28197","0.15797","0.4264" +"GO:0006259","DNA metabolic process",156,98,84.43,17,"0.01472","0.03193","0.4266" +"GO:0000226","microtubule cytoskeleton organization",33,19,17.86,233,"0.41311","0.42693","0.4269" +"GO:0022008","neurogenesis",60,29,32.47,655,"0.85126","0.43056","0.4306" +"GO:0032388","positive regulation of intracellular tra...",16,10,8.66,196,"0.33908","0.43318","0.4332" +"GO:0008154","actin polymerization or depolymerization",14,6,7.58,675,"0.86793","0.43415","0.4342" +"GO:0006874","cellular calcium ion homeostasis",12,5,6.49,686,"0.87653","0.43501","0.4350" +"GO:0055074","calcium ion homeostasis",12,5,6.49,687,"0.87653","0.43501","0.4350" +"GO:0072503","cellular divalent inorganic cation homeo...",12,5,6.49,688,"0.87653","0.43501","0.4350" +"GO:0051186","cofactor metabolic process",73,40,39.51,300,"0.50228","0.43606","0.4361" +"GO:0007601","visual perception",15,9,8.12,240,"0.42465","0.43927","0.4393" +"GO:0050953","sensory perception of light stimulus",15,9,8.12,241,"0.42465","0.43927","0.4393" +"GO:0006403","RNA localization",23,13,12.45,286,"0.49373","0.43985","0.4398" +"GO:0014706","striated muscle tissue development",15,9,8.12,242,"0.42465","0.44097","0.4410" +"GO:0060537","muscle tissue development",15,9,8.12,243,"0.42465","0.44097","0.4410" +"GO:1902115","regulation of organelle assembly",11,7,5.95,210,"0.37410","0.44297","0.4430" +"GO:0034330","cell junction organization",12,7,6.49,290,"0.50210","0.44313","0.4431" +"GO:0019362","pyridine nucleotide metabolic process",14,8,7.58,307,"0.51950","0.44733","0.4473" +"GO:0046496","nicotinamide nucleotide metabolic proces...",14,8,7.58,308,"0.51950","0.44733","0.4473" +"GO:0043087","regulation of GTPase activity",16,9,8.66,319,"0.53467","0.44815","0.4482" +"GO:0048699","generation of neurons",55,27,29.77,623,"0.81448","0.44961","0.4496" +"GO:0042254","ribosome biogenesis",64,36,34.64,234,"0.41484","0.45058","0.4506" +"GO:1901137","carbohydrate derivative biosynthetic pro...",90,53,48.71,109,"0.20767","0.45111","0.4511" +"GO:0002253","activation of immune response",16,10,8.66,197,"0.33908","0.45170","0.4517" +"GO:0043412","macromolecule modification",458,242,247.89,520,"0.74585","0.45206","0.4521" +"GO:0072330","monocarboxylic acid biosynthetic process",17,10,9.2,255,"0.44491","0.45316","0.4532" +"GO:0009117","nucleotide metabolic process",69,40,37.35,181,"0.29987","0.45399","0.4540" +"GO:0060627","regulation of vesicle-mediated transport",18,11,9.74,204,"0.36232","0.45540","0.4554" +"GO:0000819","sister chromatid segregation",19,16,10.28,8,"0.00613","0.01189","0.4577" +"GO:0009887","animal organ morphogenesis",49,25,26.52,490,"0.72137","0.45951","0.4595" +"GO:0010563","negative regulation of phosphorus metabo...",23,6,12.45,1063,"0.99846","0.45977","0.4598" +"GO:0045936","negative regulation of phosphate metabol...",23,6,12.45,1064,"0.99846","0.45977","0.4598" +"GO:0048731","system development",194,102,105,439,"0.70050","0.46095","0.4609" +"GO:0009880","embryonic pattern specification",11,4,5.95,790,"0.93195","0.46119","0.4612" +"GO:0035282","segmentation",11,4,5.95,791,"0.93195","0.46119","0.4612" +"GO:0006476","protein deacetylation",10,7,5.41,139,"0.24739","0.46201","0.4620" +"GO:0048666","neuron development",42,20,22.73,642,"0.84355","0.46480","0.4648" +"GO:0030182","neuron differentiation",50,24,27.06,647,"0.84635","0.46913","0.4691" +"GO:0002066","columnar/cuboidal epithelial cell develo...",15,8,8.12,393,"0.62790","0.46916","0.4692" +"GO:0090066","regulation of anatomical structure size",22,10,11.91,649,"0.84948","0.47064","0.4706" +"GO:0098542","defense response to other organism",19,8,10.28,726,"0.90072","0.47264","0.4726" +"GO:0007623","circadian rhythm",11,5,5.95,605,"0.81094","0.47325","0.4733" +"GO:0008285","negative regulation of cell proliferatio...",17,9,9.2,404,"0.63564","0.47340","0.4734" +"GO:0032101","regulation of response to external stimu...",17,7,9.2,737,"0.90634","0.47351","0.4735" +"GO:0007017","microtubule-based process",66,38,35.72,190,"0.32931","0.47373","0.4737" +"GO:0050776","regulation of immune response",34,18,18.4,385,"0.62406","0.47500","0.4750" +"GO:0006873","cellular ion homeostasis",20,8,10.82,809,"0.93289","0.47548","0.4755" +"GO:0030003","cellular cation homeostasis",20,8,10.82,810,"0.93289","0.47548","0.4755" +"GO:0009101","glycoprotein biosynthetic process",46,26,24.9,246,"0.43024","0.47760","0.4776" +"GO:0043632","modification-dependent macromolecule cat...",68,38,36.8,247,"0.43323","0.47997","0.4800" +"GO:0006732","coenzyme metabolic process",46,25,24.9,334,"0.54869","0.48016","0.4802" +"GO:0034404","nucleobase-containing small molecule bio...",12,7,6.49,291,"0.50210","0.48270","0.4827" +"GO:0008064","regulation of actin polymerization or de...",13,5,7.04,765,"0.92160","0.48393","0.4839" +"GO:0030832","regulation of actin filament length",13,5,7.04,766,"0.92160","0.48393","0.4839" +"GO:0072507","divalent inorganic cation homeostasis",13,5,7.04,767,"0.92160","0.48431","0.4843" +"GO:0055085","transmembrane transport",171,95,92.55,213,"0.37925","0.48527","0.4853" +"GO:0007610","behavior",27,13,14.61,565,"0.79432","0.48906","0.4891" +"GO:0050778","positive regulation of immune response",28,15,15.15,349,"0.60021","0.48943","0.4894" +"GO:0031347","regulation of defense response",24,13,12.99,344,"0.58174","0.49113","0.4911" +"GO:0042981","regulation of apoptotic process",56,31,30.31,268,"0.48089","0.49185","0.4918" +"GO:0007169","transmembrane receptor protein tyrosine ...",16,7,8.66,666,"0.86137","0.49209","0.4921" +"GO:0045787","positive regulation of cell cycle",10,5,5.41,470,"0.71988","0.49494","0.4949" +"GO:0003008","system process",53,24,28.69,780,"0.92548","0.49755","0.4975" +"GO:0035107","appendage morphogenesis",10,5,5.41,471,"0.71988","0.49929","0.4993" +"GO:0046530","photoreceptor cell differentiation",13,5,7.04,768,"0.92160","0.49965","0.4997" +"GO:0010941","regulation of cell death",71,39,38.43,288,"0.49437","0.49979","0.4998" +"GO:0009451","RNA modification",54,26,29.23,648,"0.84817","0.50105","0.5010" +"GO:0140014","mitotic nuclear division",22,18,11.91,9,"0.00649","0.00656","0.5012" +"GO:1901700","response to oxygen-containing compound",62,31,33.56,549,"0.78514","0.50251","0.5025" +"GO:0030155","regulation of cell adhesion",17,10,9.2,256,"0.44491","0.50541","0.5054" +"GO:0007600","sensory perception",26,14,14.07,346,"0.59128","0.50738","0.5074" +"GO:0048878","chemical homeostasis",38,18,20.57,636,"0.84279","0.50806","0.5081" +"GO:0050792","regulation of viral process",11,7,5.95,211,"0.37410","0.50877","0.5088" +"GO:0048608","reproductive structure development",25,14,13.53,301,"0.50720","0.50951","0.5095" +"GO:0061458","reproductive system development",25,14,13.53,302,"0.50720","0.50951","0.5095" +"GO:0002064","epithelial cell development",18,10,9.74,329,"0.54816","0.51070","0.5107" +"GO:0009308","amine metabolic process",12,8,6.49,171,"0.28267","0.51261","0.5126" +"GO:0044106","cellular amine metabolic process",12,8,6.49,172,"0.28267","0.51261","0.5126" +"GO:1903201","regulation of oxidative stress-induced c...",12,6,6.49,448,"0.71911","0.51261","0.5126" +"GO:0007411","axon guidance",12,7,6.49,292,"0.50210","0.51395","0.5139" +"GO:0097485","neuron projection guidance",12,7,6.49,293,"0.50210","0.51395","0.5139" +"GO:0007010","cytoskeleton organization",77,41,41.68,352,"0.60856","0.51682","0.5168" +"GO:0006400","tRNA modification",28,13,15.15,643,"0.84430","0.51698","0.5170" +"GO:0043086","negative regulation of catalytic activit...",27,11,14.61,833,"0.94480","0.51729","0.5173" +"GO:0009566","fertilization",10,7,5.41,140,"0.24739","0.51825","0.5182" +"GO:0098609","cell-cell adhesion",20,10,10.82,499,"0.72547","0.51962","0.5196" +"GO:0051222","positive regulation of protein transport",15,9,8.12,244,"0.42465","0.52418","0.5242" +"GO:1904951","positive regulation of establishment of ...",15,9,8.12,245,"0.42465","0.52418","0.5242" +"GO:0015672","monovalent inorganic cation transport",29,17,15.7,218,"0.38369","0.52553","0.5255" +"GO:0048667","cell morphogenesis involved in neuron di...",17,9,9.2,405,"0.63564","0.52733","0.5273" +"GO:0001933","negative regulation of protein phosphory...",14,3,7.58,1049,"0.99742","0.53263","0.5326" +"GO:0042180","cellular ketone metabolic process",15,8,8.12,394,"0.62790","0.53381","0.5338" +"GO:0031334","positive regulation of protein complex a...",15,8,8.12,395,"0.62790","0.53441","0.5344" +"GO:0044419","interspecies interaction between organis...",22,12,11.91,342,"0.57147","0.53443","0.5344" +"GO:0048523","negative regulation of cellular process",205,100,110.96,852,"0.95271","0.53721","0.5372" +"GO:0090092","regulation of transmembrane receptor pro...",11,5,5.95,606,"0.81094","0.53789","0.5379" +"GO:0030041","actin filament polymerization",12,4,6.49,869,"0.95966","0.53838","0.5384" +"GO:0030833","regulation of actin filament polymerizat...",12,4,6.49,870,"0.95966","0.53838","0.5384" +"GO:0019058","viral life cycle",13,8,7.04,224,"0.40140","0.53849","0.5385" +"GO:0044092","negative regulation of molecular functio...",38,16,20.57,849,"0.95159","0.53957","0.5396" +"GO:0032269","negative regulation of cellular protein ...",48,22,25.98,735,"0.90468","0.54071","0.5407" +"GO:0044265","cellular macromolecule catabolic process",110,58,59.54,421,"0.65550","0.54126","0.5413" +"GO:0007420","brain development",27,16,14.61,205,"0.36751","0.54274","0.5427" +"GO:0031349","positive regulation of defense response",17,8,9.2,574,"0.79713","0.54411","0.5441" +"GO:0007423","sensory organ development",41,21,22.19,440,"0.70421","0.54816","0.5482" +"GO:2001242","regulation of intrinsic apoptotic signal...",12,6,6.49,449,"0.71911","0.55136","0.5514" +"GO:0006950","response to stress",264,140,142.89,433,"0.67109","0.55140","0.5514" +"GO:0001522","pseudouridine synthesis",10,4,5.41,706,"0.88794","0.55218","0.5522" +"GO:0051188","cofactor biosynthetic process",44,25,23.81,235,"0.41886","0.55273","0.5527" +"GO:0051276","chromosome organization",141,80,76.32,178,"0.29051","0.54536","0.5558" +"GO:0030707","ovarian follicle cell development",14,7,7.58,460,"0.71970","0.55742","0.5574" +"GO:0044403","symbiont process",21,12,11.37,266,"0.47904","0.55869","0.5587" +"GO:0072527","pyrimidine-containing compound metabolic...",10,4,5.41,707,"0.88794","0.56109","0.5611" +"GO:0065004","protein-DNA complex assembly",12,5,6.49,689,"0.87653","0.56140","0.5614" +"GO:0006338","chromatin remodeling",13,8,7.04,225,"0.40140","0.56217","0.5622" +"GO:0007059","chromosome segregation",22,18,11.91,10,"0.00649","0.01438","0.5628" +"GO:0048469","cell maturation",12,7,6.49,294,"0.50210","0.56548","0.5655" +"GO:0045859","regulation of protein kinase activity",22,9,11.91,784,"0.92834","0.56670","0.5667" +"GO:0033044","regulation of chromosome organization",22,14,11.91,142,"0.24838","0.56811","0.5681" +"GO:0006807","nitrogen compound metabolic process",1445,768,782.1,694,"0.87799","0.35290","0.5707" +"GO:0048468","cell development",99,51,53.58,513,"0.73744","0.57077","0.5708" +"GO:0006952","defense response",50,25,27.06,540,"0.76901","0.57135","0.5713" +"GO:0055082","cellular chemical homeostasis",23,9,12.45,846,"0.95154","0.57197","0.5720" +"GO:1903202","negative regulation of oxidative stress-...",11,5,5.95,607,"0.81094","0.57244","0.5724" +"GO:0006928","movement of cell or subcellular componen...",75,39,40.59,436,"0.68944","0.57309","0.5731" +"GO:0031398","positive regulation of protein ubiquitin...",12,6,6.49,450,"0.71911","0.57419","0.5742" +"GO:1903322","positive regulation of protein modificat...",12,6,6.49,451,"0.71911","0.57419","0.5742" +"GO:0030900","forebrain development",10,6,5.41,270,"0.48160","0.57450","0.5745" +"GO:0050684","regulation of mRNA processing",10,6,5.41,271,"0.48160","0.57450","0.5745" +"GO:0000413","protein peptidyl-prolyl isomerization",13,5,7.04,769,"0.92160","0.57825","0.5783" +"GO:0018208","peptidyl-proline modification",13,5,7.04,770,"0.92160","0.57825","0.5783" +"GO:0062012","regulation of small molecule metabolic p...",14,6,7.58,676,"0.86793","0.57833","0.5783" +"GO:0006954","inflammatory response",11,6,5.95,356,"0.61061","0.57998","0.5800" +"GO:0008380","RNA splicing",59,33,31.93,252,"0.44191","0.58039","0.5804" +"GO:0044238","primary metabolic process",1544,828,835.68,519,"0.74578","0.42418","0.5811" +"GO:0007041","lysosomal transport",10,6,5.41,272,"0.48160","0.58196","0.5820" +"GO:0051130","positive regulation of cellular componen...",58,32,31.39,284,"0.48996","0.58505","0.5851" +"GO:0009100","glycoprotein metabolic process",50,27,27.06,339,"0.56538","0.58682","0.5868" +"GO:0045089","positive regulation of innate immune res...",12,7,6.49,295,"0.50210","0.58946","0.5895" +"GO:0009967","positive regulation of signal transducti...",50,23,27.06,732,"0.90429","0.58951","0.5895" +"GO:1901564","organonitrogen compound metabolic proces...",835,445,451.94,511,"0.73535","0.49733","0.5917" +"GO:0071824","protein-DNA complex subunit organization",15,7,8.12,577,"0.80002","0.59214","0.5921" +"GO:0001654","eye development",34,18,18.4,386,"0.62406","0.59293","0.5929" +"GO:0048880","sensory system development",34,18,18.4,387,"0.62406","0.59293","0.5929" +"GO:0150063","visual system development",34,18,18.4,388,"0.62406","0.59293","0.5929" +"GO:0061013","regulation of mRNA catabolic process",12,4,6.49,871,"0.95966","0.59546","0.5955" +"GO:0008088","axo-dendritic transport",10,6,5.41,273,"0.48160","0.59690","0.5969" +"GO:0070646","protein modification by small protein re...",25,15,13.53,200,"0.35016","0.59692","0.5969" +"GO:0031032","actomyosin structure organization",13,4,7.04,927,"0.97658","0.59700","0.5970" +"GO:0001501","skeletal system development",12,8,6.49,173,"0.28267","0.60147","0.6015" +"GO:0003012","muscle system process",11,4,5.95,792,"0.93195","0.60350","0.6035" +"GO:0019693","ribose phosphate metabolic process",45,25,24.36,281,"0.48431","0.60719","0.6072" +"GO:0009142","nucleoside triphosphate biosynthetic pro...",10,6,5.41,274,"0.48160","0.60887","0.6089" +"GO:0009201","ribonucleoside triphosphate biosynthetic...",10,6,5.41,275,"0.48160","0.60887","0.6089" +"GO:1903311","regulation of mRNA metabolic process",22,10,11.91,650,"0.84948","0.60889","0.6089" +"GO:0010639","negative regulation of organelle organiz...",18,9,9.74,493,"0.72312","0.60995","0.6100" +"GO:0072525","pyridine-containing compound biosyntheti...",11,6,5.95,357,"0.61061","0.61006","0.6101" +"GO:0048513","animal organ development",151,79,81.73,442,"0.70700","0.61177","0.6118" +"GO:0003002","regionalization",22,8,11.91,920,"0.97108","0.61293","0.6129" +"GO:0050877","nervous system process",35,16,18.94,697,"0.88008","0.61418","0.6142" +"GO:0060828","regulation of canonical Wnt signaling pa...",10,6,5.41,276,"0.48160","0.61634","0.6163" +"GO:0009611","response to wounding",18,6,9.74,936,"0.97843","0.61777","0.6178" +"GO:0009792","embryo development ending in birth or eg...",41,20,22.19,588,"0.80259","0.61806","0.6181" +"GO:0007033","vacuole organization",16,7,8.66,667,"0.86137","0.61884","0.6188" +"GO:0032880","regulation of protein localization",38,22,20.57,215,"0.38161","0.62030","0.6203" +"GO:0007031","peroxisome organization",11,6,5.95,358,"0.61061","0.62047","0.6205" +"GO:0009141","nucleoside triphosphate metabolic proces...",25,15,13.53,201,"0.35016","0.62063","0.6206" +"GO:0006368","transcription elongation from RNA polyme...",12,7,6.49,296,"0.50210","0.62441","0.6244" +"GO:0010876","lipid localization",31,14,16.78,700,"0.88261","0.62472","0.6247" +"GO:0031589","cell-substrate adhesion",11,7,5.95,212,"0.37410","0.62503","0.6250" +"GO:0034329","cell junction assembly",11,6,5.95,359,"0.61061","0.62503","0.6250" +"GO:0036473","cell death in response to oxidative stre...",13,6,7.04,590,"0.80440","0.62561","0.6256" +"GO:0061061","muscle structure development",34,17,18.4,516,"0.74564","0.62649","0.6265" +"GO:0007517","muscle organ development",19,9,10.28,567,"0.79531","0.62798","0.6280" +"GO:0055080","cation homeostasis",25,11,13.53,716,"0.88909","0.62916","0.6292" +"GO:0098771","inorganic ion homeostasis",25,11,13.53,717,"0.88909","0.62916","0.6292" +"GO:0042127","regulation of cell proliferation",36,17,19.48,632,"0.84264","0.63106","0.6311" +"GO:2001020","regulation of response to DNA damage sti...",11,6,5.95,360,"0.61061","0.63215","0.6321" +"GO:1901698","response to nitrogen compound",39,19,21.11,587,"0.80106","0.63231","0.6323" +"GO:0032446","protein modification by small protein co...",69,35,37.35,528,"0.75748","0.63369","0.6337" +"GO:0006354","DNA-templated transcription, elongation",16,9,8.66,320,"0.53467","0.63421","0.6342" +"GO:0009798","axis specification",10,4,5.41,708,"0.88794","0.63427","0.6343" +"GO:0090287","regulation of cellular response to growt...",12,6,6.49,452,"0.71911","0.63505","0.6350" +"GO:0006464","cellular protein modification process",401,215,217.04,353,"0.60946","0.63585","0.6358" +"GO:0036211","protein modification process",401,215,217.04,354,"0.60946","0.63585","0.6358" +"GO:0032271","regulation of protein polymerization",16,6,8.66,828,"0.94430","0.63586","0.6359" +"GO:0034599","cellular response to oxidative stress",19,8,10.28,727,"0.90072","0.63677","0.6368" +"GO:0002429","immune response-activating cell surface ...",10,6,5.41,277,"0.48160","0.63725","0.6373" +"GO:0043393","regulation of protein binding",10,3,5.41,903,"0.96911","0.63725","0.6373" +"GO:0070647","protein modification by small protein co...",88,47,47.63,348,"0.59806","0.63826","0.6383" +"GO:0016579","protein deubiquitination",23,14,12.45,193,"0.33147","0.63932","0.6393" +"GO:0000904","cell morphogenesis involved in different...",27,15,14.61,313,"0.51965","0.64046","0.6405" +"GO:0007179","transforming growth factor beta receptor...",10,5,5.41,472,"0.71988","0.64173","0.6417" +"GO:0001510","RNA methylation",22,13,11.91,228,"0.40201","0.64482","0.6448" +"GO:0045814","negative regulation of gene expression, ...",13,8,7.04,226,"0.40140","0.64499","0.6450" +"GO:0007399","nervous system development",97,50,52.5,510,"0.73390","0.64720","0.6472" +"GO:0010720","positive regulation of cell development",13,5,7.04,771,"0.92160","0.64812","0.6481" +"GO:1900408","negative regulation of cellular response...",13,6,7.04,591,"0.80440","0.64812","0.6481" +"GO:1902883","negative regulation of response to oxida...",13,6,7.04,592,"0.80440","0.64812","0.6481" +"GO:0060249","anatomical structure homeostasis",22,10,11.91,651,"0.84948","0.64884","0.6488" +"GO:0051301","cell division",25,13,13.53,429,"0.66249","0.64902","0.6490" +"GO:0006633","fatty acid biosynthetic process",11,5,5.95,608,"0.81094","0.64977","0.6498" +"GO:0050764","regulation of phagocytosis",10,6,5.41,278,"0.48160","0.65066","0.6507" +"GO:0060271","cilium assembly",11,6,5.95,361,"0.61061","0.65119","0.6512" +"GO:0030154","cell differentiation",150,77,81.19,551,"0.78583","0.65219","0.6522" +"GO:0001822","kidney development",13,7,7.04,374,"0.61960","0.65308","0.6531" +"GO:0072001","renal system development",13,7,7.04,375,"0.61960","0.65308","0.6531" +"GO:0007015","actin filament organization",21,10,11.37,564,"0.79429","0.65365","0.6536" +"GO:0006470","protein dephosphorylation",26,8,14.07,1032,"0.99557","0.65582","0.6558" +"GO:0002684","positive regulation of immune system pro...",34,18,18.4,389,"0.62406","0.65815","0.6582" +"GO:0031647","regulation of protein stability",18,10,9.74,330,"0.54816","0.65828","0.6583" +"GO:0016032","viral process",19,10,10.28,415,"0.64291","0.65851","0.6585" +"GO:0043010","camera-type eye development",21,11,11.37,418,"0.64977","0.66340","0.6634" +"GO:0060562","epithelial tube morphogenesis",20,10,10.82,500,"0.72547","0.66507","0.6651" +"GO:0045861","negative regulation of proteolysis",21,11,11.37,419,"0.64977","0.66555","0.6655" +"GO:0016055","Wnt signaling pathway",23,11,12.45,555,"0.79387","0.66615","0.6661" +"GO:0198738","cell-cell signaling by wnt",23,11,12.45,556,"0.79387","0.66615","0.6661" +"GO:1905114","cell surface receptor signaling pathway ...",23,11,12.45,557,"0.79387","0.66615","0.6661" +"GO:0070925","organelle assembly",46,22,24.9,644,"0.84477","0.66915","0.6691" +"GO:0015931","nucleobase-containing compound transport",25,14,13.53,303,"0.50720","0.66926","0.6693" +"GO:0002790","peptide secretion",12,3,6.49,990,"0.99083","0.66980","0.6698" +"GO:0009306","protein secretion",12,3,6.49,991,"0.99083","0.66980","0.6698" +"GO:0032273","positive regulation of protein polymeriz...",13,6,7.04,593,"0.80440","0.67090","0.6709" +"GO:0051028","mRNA transport",12,6,6.49,453,"0.71911","0.67196","0.6720" +"GO:0030335","positive regulation of cell migration",10,4,5.41,709,"0.88794","0.67290","0.6729" +"GO:0032103","positive regulation of response to exter...",10,2,5.41,1021,"0.99479","0.67290","0.6729" +"GO:0090150","establishment of protein localization to...",15,8,8.12,396,"0.62790","0.67435","0.6743" +"GO:0072593","reactive oxygen species metabolic proces...",10,5,5.41,473,"0.71988","0.67438","0.6744" +"GO:0001655","urogenital system development",14,8,7.58,309,"0.51950","0.67690","0.6769" +"GO:0006493","protein O-linked glycosylation",12,7,6.49,297,"0.50210","0.67842","0.6784" +"GO:0007006","mitochondrial membrane organization",12,5,6.49,690,"0.87653","0.67869","0.6787" +"GO:0051640","organelle localization",27,15,14.61,314,"0.51965","0.67975","0.6798" +"GO:0019079","viral genome replication",10,6,5.41,279,"0.48160","0.68027","0.6803" +"GO:0007389","pattern specification process",28,11,15.15,887,"0.96205","0.68151","0.6815" +"GO:0009653","anatomical structure morphogenesis",121,60,65.49,682,"0.86847","0.68252","0.6825" +"GO:0043161","proteasome-mediated ubiquitin-dependent ...",34,19,18.4,282,"0.48841","0.68296","0.6830" +"GO:0010647","positive regulation of cell communicatio...",56,25,30.31,823,"0.94218","0.68306","0.6831" +"GO:0023056","positive regulation of signaling",56,25,30.31,824,"0.94218","0.68306","0.6831" +"GO:0006875","cellular metal ion homeostasis",18,7,9.74,821,"0.93817","0.68343","0.6834" +"GO:0048568","embryonic organ development",27,14,14.61,431,"0.66843","0.68514","0.6851" +"GO:0042060","wound healing",16,5,8.66,954,"0.98245","0.68537","0.6854" +"GO:0051248","negative regulation of protein metabolic...",49,22,26.52,782,"0.92672","0.68597","0.6860" +"GO:0051338","regulation of transferase activity",34,16,18.4,633,"0.84268","0.68600","0.6860" +"GO:0006839","mitochondrial transport",33,18,17.86,335,"0.55225","0.68799","0.6880" +"GO:0031047","gene silencing by RNA",16,9,8.66,321,"0.53467","0.68862","0.6886" +"GO:0006486","protein glycosylation",44,24,23.81,323,"0.53980","0.69209","0.6921" +"GO:0043413","macromolecule glycosylation",44,24,23.81,324,"0.53980","0.69209","0.6921" +"GO:0070085","glycosylation",44,24,23.81,325,"0.53980","0.69209","0.6921" +"GO:1901654","response to ketone",16,8,8.66,486,"0.72113","0.69326","0.6933" +"GO:0002252","immune effector process",22,11,11.91,505,"0.72807","0.69336","0.6934" +"GO:0032501","multicellular organismal process",301,146,162.91,967,"0.98386","0.69365","0.6937" +"GO:0051239","regulation of multicellular organismal p...",84,37,45.46,934,"0.97686","0.69546","0.6955" +"GO:0045088","regulation of innate immune response",17,9,9.2,406,"0.63564","0.69552","0.6955" +"GO:0009259","ribonucleotide metabolic process",42,23,22.73,315,"0.53051","0.69785","0.6978" +"GO:0090305","nucleic acid phosphodiester bond hydroly...",19,9,10.28,568,"0.79531","0.69812","0.6981" +"GO:0010243","response to organonitrogen compound",37,18,20.03,576,"0.79961","0.69840","0.6984" +"GO:0010033","response to organic substance",131,62,70.9,855,"0.95450","0.69918","0.6992" +"GO:0007219","Notch signaling pathway",10,4,5.41,710,"0.88794","0.70078","0.7008" +"GO:0002757","immune response-activating signal transd...",14,8,7.58,310,"0.51950","0.70096","0.7010" +"GO:0002764","immune response-regulating signaling pat...",14,8,7.58,311,"0.51950","0.70096","0.7010" +"GO:1900407","regulation of cellular response to oxida...",14,7,7.58,461,"0.71970","0.70096","0.7010" +"GO:1902882","regulation of response to oxidative stre...",14,7,7.58,462,"0.71970","0.70096","0.7010" +"GO:0046034","ATP metabolic process",20,12,10.82,217,"0.38315","0.70152","0.7015" +"GO:0031399","regulation of protein modification proce...",75,31,40.59,996,"0.99114","0.70382","0.7038" +"GO:0050801","ion homeostasis",28,12,15.15,761,"0.91813","0.70450","0.7045" +"GO:0045165","cell fate commitment",19,9,10.28,569,"0.79531","0.70553","0.7055" +"GO:0048869","cellular developmental process",156,80,84.43,554,"0.79348","0.70613","0.7061" +"GO:0002065","columnar/cuboidal epithelial cell differ...",19,9,10.28,570,"0.79531","0.70679","0.7068" +"GO:0097237","cellular response to toxic substance",15,7,8.12,578,"0.80002","0.70727","0.7073" +"GO:0007409","axonogenesis",16,8,8.66,487,"0.72113","0.70757","0.7076" +"GO:0051240","positive regulation of multicellular org...",35,14,18.94,899,"0.96845","0.70991","0.7099" +"GO:0033865","nucleoside bisphosphate metabolic proces...",11,4,5.95,793,"0.93195","0.71217","0.7122" +"GO:0033875","ribonucleoside bisphosphate metabolic pr...",11,4,5.95,794,"0.93195","0.71217","0.7122" +"GO:0034032","purine nucleoside bisphosphate metabolic...",11,4,5.95,795,"0.93195","0.71217","0.7122" +"GO:0043487","regulation of RNA stability",10,4,5.41,711,"0.88794","0.71240","0.7124" +"GO:0043488","regulation of mRNA stability",10,4,5.41,712,"0.88794","0.71240","0.7124" +"GO:0071166","ribonucleoprotein complex localization",13,6,7.04,594,"0.80440","0.71290","0.7129" +"GO:0071426","ribonucleoprotein complex export from nu...",13,6,7.04,595,"0.80440","0.71290","0.7129" +"GO:0015980","energy derivation by oxidation of organi...",13,7,7.04,376,"0.61960","0.71354","0.7135" +"GO:0048856","anatomical structure development",266,131,143.97,880,"0.95983","0.71506","0.7151" +"GO:0032543","mitochondrial translation",13,2,7.04,1080,"0.99937","0.71531","0.7153" +"GO:0018193","peptidyl-amino acid modification",77,39,41.68,544,"0.76989","0.71557","0.7156" +"GO:0043281","regulation of cysteine-type endopeptidas...",12,6,6.49,454,"0.71911","0.71601","0.7160" +"GO:2000116","regulation of cysteine-type endopeptidas...",12,6,6.49,455,"0.71911","0.71601","0.7160" +"GO:0009150","purine ribonucleotide metabolic process",40,23,21.65,220,"0.39459","0.71609","0.7161" +"GO:0048511","rhythmic process",21,9,11.37,723,"0.89608","0.71756","0.7176" +"GO:0009966","regulation of signal transduction",110,53,59.54,759,"0.91542","0.71768","0.7177" +"GO:0043547","positive regulation of GTPase activity",12,6,6.49,456,"0.71911","0.72206","0.7221" +"GO:0071559","response to transforming growth factor b...",11,5,5.95,609,"0.81094","0.72221","0.7222" +"GO:0071560","cellular response to transforming growth...",11,5,5.95,610,"0.81094","0.72221","0.7222" +"GO:0018205","peptidyl-lysine modification",34,17,18.4,517,"0.74564","0.72259","0.7226" +"GO:0032502","developmental process",298,144,161.29,972,"0.98597","0.72441","0.7244" +"GO:0002697","regulation of immune effector process",11,6,5.95,362,"0.61061","0.72481","0.7248" +"GO:0006457","protein folding",61,27,33.02,856,"0.95470","0.72510","0.7251" +"GO:0016567","protein ubiquitination",63,32,34.1,521,"0.74748","0.72574","0.7257" +"GO:0009144","purine nucleoside triphosphate metabolic...",22,13,11.91,229,"0.40201","0.72741","0.7274" +"GO:0009205","purine ribonucleoside triphosphate metab...",22,13,11.91,230,"0.40201","0.72741","0.7274" +"GO:0043549","regulation of kinase activity",25,11,13.53,718,"0.88909","0.73023","0.7302" +"GO:0007507","heart development",18,8,9.74,660,"0.85634","0.73256","0.7326" +"GO:0021700","developmental maturation",13,7,7.04,377,"0.61960","0.73356","0.7336" +"GO:0002376","immune system process",76,36,41.13,736,"0.90583","0.73383","0.7338" +"GO:0044093","positive regulation of molecular functio...",69,35,37.35,529,"0.75748","0.73422","0.7342" +"GO:0001894","tissue homeostasis",11,3,5.95,956,"0.98304","0.73665","0.7366" +"GO:0090501","RNA phosphodiester bond hydrolysis",16,7,8.66,668,"0.86137","0.73779","0.7378" +"GO:0070848","response to growth factor",24,10,12.99,775,"0.92442","0.73783","0.7378" +"GO:0071897","DNA biosynthetic process",12,7,6.49,298,"0.50210","0.73823","0.7382" +"GO:0007167","enzyme linked receptor protein signaling...",34,14,18.4,858,"0.95518","0.73861","0.7386" +"GO:1901701","cellular response to oxygen-containing c...",38,17,20.57,746,"0.90870","0.74200","0.7420" +"GO:0055065","metal ion homeostasis",20,8,10.82,811,"0.93289","0.74322","0.7432" +"GO:0033043","regulation of organelle organization",69,39,37.35,219,"0.38998","0.40451","0.7434" +"GO:0006333","chromatin assembly or disassembly",10,5,5.41,474,"0.71988","0.74385","0.7439" +"GO:0043170","macromolecule metabolic process",1299,679,703.08,923,"0.97418","0.67235","0.7447" +"GO:0042273","ribosomal large subunit biogenesis",11,6,5.95,363,"0.61061","0.75011","0.7501" +"GO:0051258","protein polymerization",24,10,12.99,776,"0.92442","0.75079","0.7508" +"GO:0006310","DNA recombination",21,11,11.37,420,"0.64977","0.75120","0.7512" +"GO:0031324","negative regulation of cellular metaboli...",104,45,56.29,995,"0.99098","0.75155","0.7515" +"GO:0044782","cilium organization",13,7,7.04,378,"0.61960","0.75227","0.7523" +"GO:0048871","multicellular organismal homeostasis",12,4,6.49,872,"0.95966","0.75263","0.7526" +"GO:0043902","positive regulation of multi-organism pr...",15,8,8.12,397,"0.62790","0.75446","0.7545" +"GO:0051172","negative regulation of nitrogen compound...",103,44,55.75,1006,"0.99321","0.75479","0.7548" +"GO:0032535","regulation of cellular component size",19,8,10.28,728,"0.90072","0.75497","0.7550" +"GO:0043254","regulation of protein complex assembly",19,8,10.28,729,"0.90072","0.75497","0.7550" +"GO:0043207","response to external biotic stimulus",32,13,17.32,864,"0.95726","0.75686","0.7569" +"GO:0051707","response to other organism",32,13,17.32,865,"0.95726","0.75686","0.7569" +"GO:0097435","supramolecular fiber organization",41,21,22.19,441,"0.70421","0.75689","0.7569" +"GO:0016236","macroautophagy",20,10,10.82,501,"0.72547","0.75812","0.7581" +"GO:0006605","protein targeting",40,19,21.65,637,"0.84310","0.75818","0.7582" +"GO:0008284","positive regulation of cell proliferatio...",13,5,7.04,772,"0.92160","0.75827","0.7583" +"GO:0045860","positive regulation of protein kinase ac...",11,5,5.95,611,"0.81094","0.75930","0.7593" +"GO:1905897","regulation of response to endoplasmic re...",10,6,5.41,280,"0.48160","0.76064","0.7606" +"GO:0032956","regulation of actin cytoskeleton organiz...",17,6,9.2,895,"0.96501","0.76268","0.7627" +"GO:0006725","cellular aromatic compound metabolic pro...",826,436,447.07,630,"0.83661","0.54799","0.7648" +"GO:1903332","regulation of protein folding",10,5,5.41,475,"0.71988","0.76480","0.7648" +"GO:0060070","canonical Wnt signaling pathway",12,6,6.49,457,"0.71911","0.76558","0.7656" +"GO:0016570","histone modification",59,31,31.93,417,"0.64856","0.76713","0.7671" +"GO:0070997","neuron death",11,5,5.95,612,"0.81094","0.76747","0.7675" +"GO:1901214","regulation of neuron death",11,5,5.95,613,"0.81094","0.76747","0.7675" +"GO:0019439","aromatic compound catabolic process",50,26,27.06,434,"0.67373","0.76784","0.7678" +"GO:0002682","regulation of immune system process",49,22,26.52,783,"0.92672","0.76819","0.7682" +"GO:0006820","anion transport",32,14,17.32,756,"0.91347","0.76836","0.7684" +"GO:0035295","tube development",40,19,21.65,638,"0.84310","0.76862","0.7686" +"GO:0051098","regulation of binding",13,4,7.04,928,"0.97658","0.76955","0.7696" +"GO:0051495","positive regulation of cytoskeleton orga...",16,7,8.66,669,"0.86137","0.77072","0.7707" +"GO:0009892","negative regulation of metabolic process",131,57,70.9,1029,"0.99518","0.77159","0.7716" +"GO:0070585","protein localization to mitochondrion",23,12,12.45,422,"0.65629","0.77422","0.7742" +"GO:0072655","establishment of protein localization to...",23,12,12.45,423,"0.65629","0.77422","0.7742" +"GO:0052548","regulation of endopeptidase activity",13,6,7.04,596,"0.80440","0.77615","0.7762" +"GO:0051260","protein homooligomerization",13,7,7.04,379,"0.61960","0.77627","0.7763" +"GO:0006091","generation of precursor metabolites and ...",22,11,11.91,506,"0.72807","0.77656","0.7766" +"GO:0007050","cell cycle arrest",10,5,5.41,476,"0.71988","0.77985","0.7799" +"GO:0060322","head development",29,16,15.7,316,"0.53123","0.78076","0.7808" +"GO:1901699","cellular response to nitrogen compound",10,5,5.41,477,"0.71988","0.78121","0.7812" +"GO:0044267","cellular protein metabolic process",585,295,316.63,952,"0.98157","0.78160","0.7816" +"GO:0010498","proteasomal protein catabolic process",37,20,20.03,340,"0.57095","0.78220","0.7822" +"GO:0042692","muscle cell differentiation",14,4,7.58,975,"0.98664","0.78230","0.7823" +"GO:0031123","RNA 3'-end processing",13,7,7.04,380,"0.61960","0.78247","0.7825" +"GO:0010927","cellular component assembly involved in ...",11,3,5.95,957,"0.98304","0.78321","0.7832" +"GO:0009952","anterior/posterior pattern specification",11,4,5.95,796,"0.93195","0.78372","0.7837" +"GO:0007275","multicellular organism development",241,120,130.44,787,"0.93114","0.78461","0.7846" +"GO:0009888","tissue development",90,41,48.71,885,"0.96129","0.78557","0.7856" +"GO:0016482","cytosolic transport",12,5,6.49,691,"0.87653","0.78574","0.7857" +"GO:0097190","apoptotic signaling pathway",23,11,12.45,558,"0.79387","0.78631","0.7863" +"GO:0010605","negative regulation of macromolecule met...",125,53,67.66,1047,"0.99732","0.79045","0.7904" +"GO:0006417","regulation of translation",29,14,15.7,566,"0.79500","0.79185","0.7918" +"GO:0010646","regulation of cell communication",120,58,64.95,763,"0.91870","0.79224","0.7922" +"GO:0009607","response to biotic stimulus",34,15,18.4,748,"0.91162","0.79237","0.7924" +"GO:0044089","positive regulation of cellular componen...",24,12,12.99,508,"0.73083","0.79347","0.7935" +"GO:0051146","striated muscle cell differentiation",13,4,7.04,929,"0.97658","0.79621","0.7962" +"GO:0072594","establishment of protein localization to...",49,25,26.52,491,"0.72137","0.79678","0.7968" +"GO:0010506","regulation of autophagy",17,9,9.2,407,"0.63564","0.79835","0.7983" +"GO:0008283","cell proliferation",52,24,28.14,730,"0.90400","0.79880","0.7988" +"GO:0065009","regulation of molecular function",112,57,60.62,552,"0.78799","0.80372","0.8037" +"GO:0001101","response to acid chemical",16,7,8.66,670,"0.86137","0.80406","0.8041" +"GO:0043414","macromolecule methylation",43,23,23.27,347,"0.59569","0.80534","0.8053" +"GO:0048863","stem cell differentiation",15,5,8.12,915,"0.97053","0.80643","0.8064" +"GO:0110053","regulation of actin filament organizatio...",16,6,8.66,829,"0.94430","0.80696","0.8070" +"GO:0001666","response to hypoxia",11,5,5.95,614,"0.81094","0.80725","0.8073" +"GO:0036293","response to decreased oxygen levels",11,5,5.95,615,"0.81094","0.80725","0.8073" +"GO:0070482","response to oxygen levels",11,5,5.95,616,"0.81094","0.80725","0.8073" +"GO:0044237","cellular metabolic process",1490,791,806.46,725,"0.89968","0.78335","0.8073" +"GO:0006955","immune response",47,23,25.44,603,"0.80751","0.80943","0.8094" +"GO:0098657","import into cell",24,10,12.99,777,"0.92442","0.81014","0.8101" +"GO:0051261","protein depolymerization",13,6,7.04,597,"0.80440","0.81024","0.8102" +"GO:0006611","protein export from nucleus",14,6,7.58,677,"0.86793","0.81074","0.8107" +"GO:0045321","leukocyte activation",20,5,10.82,1055,"0.99810","0.81148","0.8115" +"GO:0042026","protein refolding",16,6,8.66,830,"0.94430","0.81189","0.8119" +"GO:0048812","neuron projection morphogenesis",17,9,9.2,408,"0.63564","0.81240","0.8124" +"GO:0048858","cell projection morphogenesis",17,9,9.2,409,"0.63564","0.81240","0.8124" +"GO:0097305","response to alcohol",17,9,9.2,410,"0.63564","0.81240","0.8124" +"GO:0120039","plasma membrane bounded cell projection ...",17,9,9.2,411,"0.63564","0.81240","0.8124" +"GO:0000165","MAPK cascade",15,7,8.12,579,"0.80002","0.81279","0.8128" +"GO:0023014","signal transduction by protein phosphory...",15,7,8.12,580,"0.80002","0.81279","0.8128" +"GO:0006626","protein targeting to mitochondrion",22,11,11.91,507,"0.72807","0.81401","0.8140" +"GO:0000209","protein polyubiquitination",22,12,11.91,343,"0.57147","0.81488","0.8149" +"GO:0030100","regulation of endocytosis",13,7,7.04,381,"0.61960","0.81545","0.8155" +"GO:0009199","ribonucleoside triphosphate metabolic pr...",23,13,12.45,287,"0.49373","0.81747","0.8175" +"GO:0016458","gene silencing",21,12,11.37,267,"0.47904","0.81767","0.8177" +"GO:0052547","regulation of peptidase activity",14,6,7.58,678,"0.86793","0.81814","0.8181" +"GO:0002768","immune response-regulating cell surface ...",11,6,5.95,364,"0.61061","0.81832","0.8183" +"GO:0007283","spermatogenesis",28,16,15.15,258,"0.44983","0.81911","0.8191" +"GO:0019538","protein metabolic process",682,353,369.13,788,"0.93193","0.81922","0.8192" +"GO:0006139","nucleobase-containing compound metabolic...",801,421,433.54,674,"0.86740","0.63114","0.8194" +"GO:0050790","regulation of catalytic activity",89,46,48.17,446,"0.71896","0.82034","0.8203" +"GO:0006869","lipid transport",23,9,12.45,847,"0.95154","0.82160","0.8216" +"GO:0071236","cellular response to antibiotic",13,6,7.04,598,"0.80440","0.82195","0.8220" +"GO:0032570","response to progesterone",10,5,5.41,478,"0.71988","0.82445","0.8244" +"GO:0045666","positive regulation of neuron differenti...",10,3,5.41,904,"0.96911","0.82445","0.8244" +"GO:0099003","vesicle-mediated transport in synapse",10,5,5.41,479,"0.71988","0.82445","0.8244" +"GO:0071310","cellular response to organic substance",82,37,44.38,886,"0.96187","0.82480","0.8248" +"GO:0042493","response to drug",44,17,23.81,979,"0.98720","0.82486","0.8249" +"GO:0033674","positive regulation of kinase activity",12,5,6.49,692,"0.87653","0.82645","0.8265" +"GO:0007186","G protein-coupled receptor signaling pat...",36,19,19.48,402,"0.63122","0.82678","0.8268" +"GO:0016441","posttranscriptional gene silencing",13,7,7.04,382,"0.61960","0.82881","0.8288" +"GO:0035194","posttranscriptional gene silencing by RN...",13,7,7.04,383,"0.61960","0.82881","0.8288" +"GO:0045935","positive regulation of nucleobase-contai...",68,38,36.8,248,"0.43323","0.82925","0.8292" +"GO:0048193","Golgi vesicle transport",30,10,16.24,1009,"0.99366","0.82938","0.8294" +"GO:0033365","protein localization to organelle",65,32,35.18,625,"0.82339","0.83044","0.8304" +"GO:0043408","regulation of MAPK cascade",11,4,5.95,797,"0.93195","0.83097","0.8310" +"GO:0031099","regeneration",12,4,6.49,873,"0.95966","0.83148","0.8315" +"GO:1901361","organic cyclic compound catabolic proces...",52,26,28.14,545,"0.77179","0.83172","0.8317" +"GO:0065002","intracellular protein transmembrane tran...",10,3,5.41,905,"0.96911","0.83321","0.8332" +"GO:0034614","cellular response to reactive oxygen spe...",15,6,8.12,751,"0.91320","0.83399","0.8340" +"GO:0097193","intrinsic apoptotic signaling pathway",15,7,8.12,581,"0.80002","0.83399","0.8340" +"GO:1902905","positive regulation of supramolecular fi...",15,7,8.12,582,"0.80002","0.83450","0.8345" +"GO:0048519","negative regulation of biological proces...",251,124,135.85,842,"0.95006","0.83463","0.8346" +"GO:0015711","organic anion transport",23,10,12.45,721,"0.89225","0.83723","0.8372" +"GO:0044270","cellular nitrogen compound catabolic pro...",48,24,25.98,537,"0.76619","0.83830","0.8383" +"GO:0046700","heterocycle catabolic process",48,24,25.98,538,"0.76619","0.83830","0.8383" +"GO:0044087","regulation of cellular component biogene...",43,18,23.27,889,"0.96248","0.83852","0.8385" +"GO:0051704","multi-organism process",113,58,61.16,532,"0.76046","0.83858","0.8386" +"GO:0051961","negative regulation of nervous system de...",10,2,5.41,1022,"0.99479","0.83938","0.8394" +"GO:0009267","cellular response to starvation",12,4,6.49,874,"0.95966","0.83960","0.8396" +"GO:0031668","cellular response to extracellular stimu...",12,4,6.49,875,"0.95966","0.83960","0.8396" +"GO:0031669","cellular response to nutrient levels",12,4,6.49,876,"0.95966","0.83960","0.8396" +"GO:0023051","regulation of signaling",123,59,66.57,808,"0.93259","0.84038","0.8404" +"GO:0072359","circulatory system development",29,9,15.7,1042,"0.99668","0.84045","0.8404" +"GO:0002443","leukocyte mediated immunity",10,5,5.41,480,"0.71988","0.84060","0.8406" +"GO:0009891","positive regulation of biosynthetic proc...",66,32,35.72,659,"0.85461","0.84062","0.8406" +"GO:0080134","regulation of response to stress",67,35,36.26,432,"0.67014","0.84108","0.8411" +"GO:0032970","regulation of actin filament-based proce...",21,8,11.37,860,"0.95554","0.84186","0.8419" +"GO:0048646","anatomical structure formation involved ...",46,18,24.9,973,"0.98639","0.84208","0.8421" +"GO:0045597","positive regulation of cell differentiat...",25,10,13.53,838,"0.94797","0.84352","0.8435" +"GO:0051346","negative regulation of hydrolase activit...",18,6,9.74,937,"0.97843","0.84419","0.8442" +"GO:0034248","regulation of cellular amide metabolic p...",31,15,16.78,573,"0.79592","0.84419","0.8442" +"GO:1902904","negative regulation of supramolecular fi...",14,6,7.58,679,"0.86793","0.84611","0.8461" +"GO:0035239","tube morphogenesis",27,11,14.61,834,"0.94480","0.84675","0.8468" +"GO:0031328","positive regulation of cellular biosynth...",63,30,34.1,698,"0.88029","0.84745","0.8475" +"GO:0043069","negative regulation of programmed cell d...",38,19,20.57,524,"0.75163","0.84793","0.8479" +"GO:0048232","male gamete generation",32,18,17.32,264,"0.47635","0.84801","0.8480" +"GO:0010817","regulation of hormone levels",17,12,9.2,78,"0.13020","0.02200","0.8492" +"GO:0048598","embryonic morphogenesis",37,19,20.03,437,"0.69484","0.84944","0.8494" +"GO:0071241","cellular response to inorganic substance",12,7,6.49,299,"0.50210","0.85021","0.8502" +"GO:0046483","heterocycle metabolic process",827,434,447.61,702,"0.88405","0.63872","0.8502" +"GO:0007548","sex differentiation",11,6,5.95,365,"0.61061","0.85041","0.8504" +"GO:0045944","positive regulation of transcription by ...",37,16,20.03,814,"0.93353","0.85063","0.8506" +"GO:0001775","cell activation",23,6,12.45,1065,"0.99846","0.85108","0.8511" +"GO:0034504","protein localization to nucleus",24,12,12.99,509,"0.73083","0.85279","0.8528" +"GO:0072358","cardiovascular system development",13,3,7.04,1024,"0.99511","0.85280","0.8528" +"GO:0001932","regulation of protein phosphorylation",40,13,21.65,1062,"0.99836","0.85342","0.8534" +"GO:0042592","homeostatic process",87,37,47.09,985,"0.98968","0.85343","0.8534" +"GO:0045926","negative regulation of growth",11,4,5.95,798,"0.93195","0.85426","0.8543" +"GO:0042110","T cell activation",11,3,5.95,958,"0.98304","0.85471","0.8547" +"GO:0019725","cellular homeostasis",48,16,25.98,1072,"0.99895","0.85535","0.8554" +"GO:0031503","protein-containing complex localization",16,7,8.66,671,"0.86137","0.85575","0.8558" +"GO:0010557","positive regulation of macromolecule bio...",59,29,31.93,624,"0.81804","0.85661","0.8566" +"GO:0015849","organic acid transport",20,9,10.82,657,"0.85246","0.85701","0.8570" +"GO:0046942","carboxylic acid transport",20,9,10.82,658,"0.85246","0.85701","0.8570" +"GO:0007005","mitochondrion organization",53,25,28.69,695,"0.87805","0.85835","0.8583" +"GO:0006665","sphingolipid metabolic process",10,5,5.41,481,"0.71988","0.85853","0.8585" +"GO:0016043","cellular component organization",438,231,237.07,527,"0.75542","0.83733","0.8614" +"GO:0007265","Ras protein signal transduction",14,5,7.58,843,"0.95142","0.86172","0.8617" +"GO:0071840","cellular component organization or bioge...",493,260,266.83,543,"0.76965","0.84063","0.8621" +"GO:0051179","localization",544,282,294.44,722,"0.89496","0.86569","0.8657" +"GO:0006996","organelle organization",321,166,173.74,631,"0.83809","0.75178","0.8659" +"GO:0016569","covalent chromatin modification",63,33,34.1,425,"0.65967","0.86695","0.8669" +"GO:0031329","regulation of cellular catabolic process",50,23,27.06,733,"0.90429","0.86839","0.8684" +"GO:0050769","positive regulation of neurogenesis",11,4,5.95,799,"0.93195","0.86853","0.8685" +"GO:0048583","regulation of response to stimulus",168,81,90.93,851,"0.95236","0.86977","0.8698" +"GO:0044085","cellular component biogenesis",228,117,123.4,628,"0.83180","0.86978","0.8698" +"GO:0017038","protein import",26,12,14.07,645,"0.84552","0.87214","0.8721" +"GO:0022607","cellular component assembly",168,84,90.93,701,"0.88283","0.87227","0.8723" +"GO:0009894","regulation of catabolic process",59,28,31.93,696,"0.87923","0.87229","0.8723" +"GO:0051347","positive regulation of transferase activ...",18,9,9.74,494,"0.72312","0.87329","0.8733" +"GO:0002520","immune system development",17,7,9.2,738,"0.90634","0.87354","0.8735" +"GO:0048534","hematopoietic or lymphoid organ developm...",17,7,9.2,739,"0.90634","0.87354","0.8735" +"GO:0042221","response to chemical",190,90,102.84,935,"0.97803","0.87363","0.8736" +"GO:0043900","regulation of multi-organism process",20,11,10.82,337,"0.56034","0.87486","0.8749" +"GO:1902680","positive regulation of RNA biosynthetic ...",51,26,27.6,497,"0.72537","0.87515","0.8752" +"GO:0042742","defense response to bacterium",12,4,6.49,877,"0.95966","0.87592","0.8759" +"GO:0035690","cellular response to drug",15,7,8.12,583,"0.80002","0.87631","0.8763" +"GO:0070301","cellular response to hydrogen peroxide",12,5,6.49,693,"0.87653","0.87693","0.8769" +"GO:0045893","positive regulation of transcription, DN...",50,25,27.06,541,"0.76901","0.87749","0.8775" +"GO:1903508","positive regulation of nucleic acid-temp...",50,25,27.06,542,"0.76901","0.87749","0.8775" +"GO:0046649","lymphocyte activation",13,3,7.04,1025,"0.99511","0.87882","0.8788" +"GO:0007166","cell surface receptor signaling pathway",97,41,52.5,1008,"0.99360","0.87911","0.8791" +"GO:0009890","negative regulation of biosynthetic proc...",66,26,35.72,1020,"0.99472","0.87967","0.8797" +"GO:0043933","protein-containing complex subunit organ...",127,66,68.74,496,"0.72330","0.87968","0.8797" +"GO:0009791","post-embryonic development",30,14,16.24,641,"0.84346","0.87987","0.8799" +"GO:0001505","regulation of neurotransmitter levels",19,10,10.28,416,"0.64291","0.88180","0.8818" +"GO:0006888","ER to Golgi vesicle-mediated transport",13,4,7.04,930,"0.97658","0.88189","0.8819" +"GO:0051128","regulation of cellular component organiz...",104,53,56.29,546,"0.77701","0.84008","0.8848" +"GO:0043009","chordate embryonic development",32,14,17.32,757,"0.91347","0.88601","0.8860" +"GO:0031327","negative regulation of cellular biosynth...",64,26,34.64,986,"0.98983","0.88654","0.8865" +"GO:0006413","translational initiation",16,8,8.66,488,"0.72113","0.88745","0.8874" +"GO:0000122","negative regulation of transcription by ...",28,9,15.15,1019,"0.99463","0.88749","0.8875" +"GO:0002009","morphogenesis of an epithelium",28,12,15.15,762,"0.91813","0.88749","0.8875" +"GO:0042176","regulation of protein catabolic process",23,12,12.45,424,"0.65629","0.88802","0.8880" +"GO:0000902","cell morphogenesis",34,19,18.4,283,"0.48841","0.88822","0.8882" +"GO:0060284","regulation of cell development",32,12,17.32,948,"0.98120","0.88829","0.8883" +"GO:0051345","positive regulation of hydrolase activit...",27,12,14.61,705,"0.88649","0.89003","0.8900" +"GO:0051604","protein maturation",16,8,8.66,489,"0.72113","0.89031","0.8903" +"GO:0030029","actin filament-based process",44,19,23.81,836,"0.94739","0.89231","0.8923" +"GO:0006812","cation transport",62,31,33.56,550,"0.78514","0.89288","0.8929" +"GO:0010558","negative regulation of macromolecule bio...",62,25,33.56,987,"0.99023","0.89339","0.8934" +"GO:0045934","negative regulation of nucleobase-contai...",62,22,33.56,1074,"0.99908","0.89339","0.8934" +"GO:0010629","negative regulation of gene expression",92,37,49.79,1051,"0.99768","0.89446","0.8945" +"GO:1902275","regulation of chromatin organization",12,6,6.49,458,"0.71911","0.89479","0.8948" +"GO:0006935","chemotaxis",18,8,9.74,661,"0.85634","0.89600","0.8960" +"GO:0032990","cell part morphogenesis",18,9,9.74,495,"0.72312","0.89600","0.8960" +"GO:0042330","taxis",18,8,9.74,662,"0.85634","0.89600","0.8960" +"GO:0061564","axon development",18,8,9.74,663,"0.85634","0.89600","0.8960" +"GO:0051493","regulation of cytoskeleton organization",25,10,13.53,839,"0.94797","0.89609","0.8961" +"GO:0030097","hemopoiesis",15,6,8.12,752,"0.91320","0.89689","0.8969" +"GO:0034976","response to endoplasmic reticulum stress",25,11,13.53,719,"0.88909","0.89903","0.8990" +"GO:2000113","negative regulation of cellular macromol...",60,25,32.47,953,"0.98162","0.90023","0.9002" +"GO:0043244","regulation of protein complex disassembl...",12,4,6.49,878,"0.95966","0.90098","0.9010" +"GO:0001568","blood vessel development",12,3,6.49,992,"0.99083","0.90246","0.9025" +"GO:0001944","vasculature development",12,3,6.49,993,"0.99083","0.90246","0.9025" +"GO:0030001","metal ion transport",40,20,21.65,526,"0.75460","0.90263","0.9026" +"GO:0022603","regulation of anatomical structure morph...",24,7,12.99,1039,"0.99648","0.90290","0.9029" +"GO:0050767","regulation of neurogenesis",24,8,12.99,980,"0.98835","0.90290","0.9029" +"GO:0032984","protein-containing complex disassembly",29,13,15.7,703,"0.88435","0.90391","0.9039" +"GO:0098656","anion transmembrane transport",13,6,7.04,599,"0.80440","0.90482","0.9048" +"GO:0051129","negative regulation of cellular componen...",35,15,18.94,817,"0.93527","0.90546","0.9055" +"GO:0036503","ERAD pathway",15,7,8.12,584,"0.80002","0.90599","0.9060" +"GO:1903362","regulation of cellular protein catabolic...",15,8,8.12,398,"0.62790","0.90599","0.9060" +"GO:0051259","protein complex oligomerization",17,9,9.2,412,"0.63564","0.90603","0.9060" +"GO:0016049","cell growth",23,11,12.45,559,"0.79387","0.90679","0.9068" +"GO:0006897","endocytosis",21,9,11.37,724,"0.89608","0.90681","0.9068" +"GO:0006414","translational elongation",11,3,5.95,959,"0.98304","0.90888","0.9089" +"GO:0051241","negative regulation of multicellular org...",28,10,15.15,971,"0.98464","0.90959","0.9096" +"GO:1902600","proton transmembrane transport",11,6,5.95,366,"0.61061","0.90991","0.9099" +"GO:0042327","positive regulation of phosphorylation",25,8,13.53,1003,"0.99277","0.91134","0.9113" +"GO:0030111","regulation of Wnt signaling pathway",15,7,8.12,585,"0.80002","0.91199","0.9120" +"GO:0061136","regulation of proteasomal protein catabo...",14,7,7.58,463,"0.71970","0.91201","0.9120" +"GO:1903050","regulation of proteolysis involved in ce...",14,7,7.58,464,"0.71970","0.91201","0.9120" +"GO:0051253","negative regulation of RNA metabolic pro...",56,21,30.31,1034,"0.99611","0.91381","0.9138" +"GO:1902679","negative regulation of RNA biosynthetic ...",56,21,30.31,1035,"0.99611","0.91381","0.9138" +"GO:1903507","negative regulation of nucleic acid-temp...",56,21,30.31,1036,"0.99611","0.91381","0.9138" +"GO:0001934","positive regulation of protein phosphory...",21,7,11.37,968,"0.98417","0.91440","0.9144" +"GO:0009617","response to bacterium",21,6,11.37,1030,"0.99540","0.91460","0.9146" +"GO:0071363","cellular response to growth factor stimu...",21,8,11.37,861,"0.95554","0.91460","0.9146" +"GO:0009628","response to abiotic stimulus",75,33,40.59,921,"0.97133","0.91488","0.9149" +"GO:1902533","positive regulation of intracellular sig...",22,9,11.91,785,"0.92834","0.91510","0.9151" +"GO:0006811","ion transport",113,58,61.16,533,"0.76046","0.91516","0.9152" +"GO:0051246","regulation of protein metabolic process",135,62,73.07,943,"0.97979","0.91673","0.9167" +"GO:0045892","negative regulation of transcription, DN...",55,21,29.77,1016,"0.99439","0.91718","0.9172" +"GO:0032879","regulation of localization",97,48,52.5,654,"0.85051","0.91783","0.9178" +"GO:0030433","ubiquitin-dependent ERAD pathway",13,6,7.04,600,"0.80440","0.91806","0.9181" +"GO:0016197","endosomal transport",18,6,9.74,938,"0.97843","0.91851","0.9185" +"GO:0007178","transmembrane receptor protein serine/th...",20,8,10.82,812,"0.93289","0.91852","0.9185" +"GO:0040029","regulation of gene expression, epigeneti...",25,13,13.53,430,"0.66249","0.91888","0.9189" +"GO:1903825","organic acid transmembrane transport",11,5,5.95,617,"0.81094","0.91891","0.9189" +"GO:1905039","carboxylic acid transmembrane transport",11,5,5.95,618,"0.81094","0.91891","0.9189" +"GO:0034641","cellular nitrogen compound metabolic pro...",945,483,511.48,997,"0.99130","0.87747","0.9191" +"GO:0007264","small GTPase mediated signal transductio...",23,8,12.45,951,"0.98151","0.91996","0.9200" +"GO:0009895","negative regulation of catabolic process",11,6,5.95,367,"0.61061","0.92103","0.9210" +"GO:0001817","regulation of cytokine production",19,5,10.28,1041,"0.99662","0.92213","0.9221" +"GO:0030031","cell projection assembly",19,7,10.28,881,"0.96002","0.92247","0.9225" +"GO:0031396","regulation of protein ubiquitination",19,9,10.28,571,"0.79531","0.92247","0.9225" +"GO:0120031","plasma membrane bounded cell projection ...",19,7,10.28,882,"0.96002","0.92247","0.9225" +"GO:1903320","regulation of protein modification by sm...",19,9,10.28,572,"0.79531","0.92247","0.9225" +"GO:0045087","innate immune response",23,11,12.45,560,"0.79387","0.92275","0.9228" +"GO:0032886","regulation of microtubule-based process",11,4,5.95,800,"0.93195","0.92286","0.9229" +"GO:0070507","regulation of microtubule cytoskeleton o...",11,4,5.95,801,"0.93195","0.92286","0.9229" +"GO:0060548","negative regulation of cell death",47,24,25.44,445,"0.71725","0.92322","0.9232" +"GO:0000956","nuclear-transcribed mRNA catabolic proce...",17,7,9.2,740,"0.90634","0.92341","0.9234" +"GO:0008219","cell death",90,43,48.71,747,"0.90930","0.92373","0.9237" +"GO:0045595","regulation of cell differentiation",63,30,34.1,699,"0.88029","0.92485","0.9248" +"GO:0022411","cellular component disassembly",32,14,17.32,758,"0.91347","0.92573","0.9257" +"GO:0031344","regulation of cell projection organizati...",18,5,9.74,1012,"0.99407","0.92642","0.9264" +"GO:0045664","regulation of neuron differentiation",18,5,9.74,1013,"0.99407","0.92642","0.9264" +"GO:0120035","regulation of plasma membrane bounded ce...",18,5,9.74,1014,"0.99407","0.92642","0.9264" +"GO:0051272","positive regulation of cellular componen...",11,4,5.95,802,"0.93195","0.92682","0.9268" +"GO:2000147","positive regulation of cell motility",11,4,5.95,803,"0.93195","0.92682","0.9268" +"GO:0065003","protein-containing complex assembly",106,55,57.37,444,"0.71673","0.92722","0.9272" +"GO:0051094","positive regulation of developmental pro...",38,13,20.57,1033,"0.99602","0.92725","0.9272" +"GO:0008104","protein localization",186,85,100.67,1005,"0.99318","0.92794","0.9279" +"GO:0032989","cellular component morphogenesis",46,23,24.9,536,"0.76334","0.92862","0.9286" +"GO:0034655","nucleobase-containing compound catabolic...",44,22,23.81,531,"0.76046","0.92888","0.9289" +"GO:0031401","positive regulation of protein modificat...",42,18,22.73,840,"0.94865","0.92891","0.9289" +"GO:0070887","cellular response to chemical stimulus",103,48,55.75,850,"0.95178","0.93019","0.9302" +"GO:0043484","regulation of RNA splicing",13,6,7.04,601,"0.80440","0.93020","0.9302" +"GO:0019827","stem cell population maintenance",11,4,5.95,804,"0.93195","0.93026","0.9303" +"GO:0098727","maintenance of cell number",11,4,5.95,805,"0.93195","0.93026","0.9303" +"GO:0051234","establishment of localization",486,254,263.05,629,"0.83272","0.93042","0.9304" +"GO:0001816","cytokine production",21,7,11.37,969,"0.98417","0.93128","0.9313" +"GO:0051254","positive regulation of RNA metabolic pro...",60,32,32.47,350,"0.60197","0.93170","0.9317" +"GO:0030036","actin cytoskeleton organization",42,18,22.73,841,"0.94865","0.93173","0.9317" +"GO:0006909","phagocytosis",13,6,7.04,602,"0.80440","0.93203","0.9320" +"GO:0051051","negative regulation of transport",13,5,7.04,773,"0.92160","0.93203","0.9320" +"GO:0051962","positive regulation of nervous system de...",13,4,7.04,931,"0.97658","0.93203","0.9320" +"GO:0040012","regulation of locomotion",21,7,11.37,970,"0.98417","0.93301","0.9330" +"GO:0051270","regulation of cellular component movemen...",21,8,11.37,862,"0.95554","0.93301","0.9330" +"GO:0009266","response to temperature stimulus",37,16,20.03,815,"0.93353","0.93394","0.9339" +"GO:0001558","regulation of cell growth",16,6,8.66,831,"0.94430","0.93437","0.9344" +"GO:0007267","cell-cell signaling",50,22,27.06,832,"0.94434","0.93533","0.9353" +"GO:0031331","positive regulation of cellular cataboli...",20,10,10.82,502,"0.72547","0.93612","0.9361" +"GO:0006513","protein monoubiquitination",10,5,5.41,482,"0.71988","0.93642","0.9364" +"GO:0140053","mitochondrial gene expression",15,2,8.12,1098,"0.99985","0.93667","0.9367" +"GO:0043066","negative regulation of apoptotic process",34,16,18.4,634,"0.84268","0.93687","0.9369" +"GO:0012501","programmed cell death",80,38,43.3,745,"0.90671","0.93734","0.9373" +"GO:0032268","regulation of cellular protein metabolic...",125,58,67.66,900,"0.96898","0.93737","0.9374" +"GO:0010628","positive regulation of gene expression",69,34,37.35,627,"0.82694","0.93766","0.9377" +"GO:1901360","organic cyclic compound metabolic proces...",846,446,457.89,656,"0.85176","0.72466","0.9382" +"GO:0030162","regulation of proteolysis",36,18,19.48,522,"0.74864","0.93875","0.9387" +"GO:2000145","regulation of cell motility",19,7,10.28,883,"0.96002","0.93923","0.9392" +"GO:0046785","microtubule polymerization",10,5,5.41,483,"0.71988","0.94054","0.9405" +"GO:0002165","instar larval or pupal development",14,5,7.58,844,"0.95142","0.94238","0.9424" +"GO:0007444","imaginal disc development",14,6,7.58,680,"0.86793","0.94238","0.9424" +"GO:0032259","methylation",51,27,27.6,390,"0.62407","0.94306","0.9431" +"GO:0009408","response to heat",35,15,18.94,818,"0.93527","0.94350","0.9435" +"GO:0030334","regulation of cell migration",17,6,9.2,896,"0.96501","0.94549","0.9455" +"GO:0048514","blood vessel morphogenesis",11,3,5.95,960,"0.98304","0.94608","0.9461" +"GO:0060491","regulation of cell projection assembly",13,4,7.04,932,"0.97658","0.94640","0.9464" +"GO:0120032","regulation of plasma membrane bounded ce...",13,4,7.04,933,"0.97658","0.94640","0.9464" +"GO:0018022","peptidyl-lysine methylation",12,3,6.49,994,"0.99083","0.94711","0.9471" +"GO:2000026","regulation of multicellular organismal d...",54,22,29.23,966,"0.98346","0.94824","0.9482" +"GO:0010562","positive regulation of phosphorus metabo...",27,8,14.61,1044,"0.99732","0.94882","0.9488" +"GO:0045937","positive regulation of phosphate metabol...",27,8,14.61,1045,"0.99732","0.94882","0.9488" +"GO:0051049","regulation of transport",60,30,32.47,548,"0.78254","0.94909","0.9491" +"GO:0007552","metamorphosis",10,3,5.41,906,"0.96911","0.94992","0.9499" +"GO:0007560","imaginal disc morphogenesis",10,3,5.41,907,"0.96911","0.94992","0.9499" +"GO:0048563","post-embryonic animal organ morphogenesi...",10,3,5.41,908,"0.96911","0.94992","0.9499" +"GO:0048707","instar larval or pupal morphogenesis",10,3,5.41,909,"0.96911","0.94992","0.9499" +"GO:0051641","cellular localization",224,109,121.24,892,"0.96291","0.95022","0.9502" +"GO:0040007","growth",52,24,28.14,731,"0.90400","0.95085","0.9509" +"GO:0023061","signal release",12,4,6.49,879,"0.95966","0.95112","0.9511" +"GO:0042542","response to hydrogen peroxide",15,5,8.12,916,"0.97053","0.95179","0.9518" +"GO:0030030","cell projection organization",44,19,23.81,837,"0.94739","0.95300","0.9530" +"GO:0042325","regulation of phosphorylation",49,17,26.52,1057,"0.99818","0.95361","0.9536" +"GO:0009790","embryo development",70,31,37.89,893,"0.96359","0.95439","0.9544" +"GO:0009886","post-embryonic animal morphogenesis",11,3,5.95,961,"0.98304","0.95449","0.9545" +"GO:0048569","post-embryonic animal organ development",11,3,5.95,962,"0.98304","0.95449","0.9545" +"GO:0040017","positive regulation of locomotion",14,4,7.58,976,"0.98664","0.95494","0.9549" +"GO:0060429","epithelium development",53,24,28.69,781,"0.92548","0.95501","0.9550" +"GO:0120036","plasma membrane bounded cell projection ...",43,18,23.27,890,"0.96248","0.95609","0.9561" +"GO:1901566","organonitrogen compound biosynthetic pro...",277,138,149.92,825,"0.94347","0.96107","0.9567" +"GO:0010608","posttranscriptional regulation of gene e...",51,26,27.6,498,"0.72537","0.95671","0.9567" +"GO:0007568","aging",30,15,16.24,514,"0.73963","0.95678","0.9568" +"GO:0006402","mRNA catabolic process",27,11,14.61,835,"0.94480","0.95727","0.9573" +"GO:0006810","transport",472,246,255.47,646,"0.84591","0.95736","0.9574" +"GO:0040011","locomotion",50,23,27.06,734,"0.90429","0.95755","0.9576" +"GO:0046777","protein autophosphorylation",10,5,5.41,484,"0.71988","0.95787","0.9579" +"GO:0010256","endomembrane system organization",22,10,11.91,652,"0.84948","0.95838","0.9584" +"GO:0051336","regulation of hydrolase activity",49,21,26.52,868,"0.95914","0.95840","0.9584" +"GO:0002237","response to molecule of bacterial origin",10,2,5.41,1023,"0.99479","0.95856","0.9586" +"GO:0048732","gland development",10,3,5.41,910,"0.96911","0.95856","0.9586" +"GO:0048872","homeostasis of number of cells",10,4,5.41,713,"0.88794","0.95856","0.9586" +"GO:0043085","positive regulation of catalytic activit...",51,25,27.6,621,"0.81096","0.95869","0.9587" +"GO:0048729","tissue morphogenesis",33,13,17.86,913,"0.97027","0.96058","0.9606" +"GO:0043604","amide biosynthetic process",144,56,77.94,1102,"0.99994","0.96150","0.9615" +"GO:0043603","cellular amide metabolic process",166,70,89.85,1085,"0.99947","0.96158","0.9616" +"GO:0034622","cellular protein-containing complex asse...",88,45,47.63,525,"0.75252","0.96176","0.9618" +"GO:0010038","response to metal ion",23,11,12.45,561,"0.79387","0.96350","0.9635" +"GO:0002694","regulation of leukocyte activation",11,1,5.95,1095,"0.99982","0.96447","0.9645" +"GO:0050865","regulation of cell activation",11,1,5.95,1096,"0.99982","0.96447","0.9645" +"GO:0090304","nucleic acid metabolic process",714,369,386.45,827,"0.94359","0.89294","0.9646" +"GO:0007417","central nervous system development",41,20,22.19,589,"0.80259","0.96518","0.9652" +"GO:0043043","peptide biosynthetic process",137,53,74.15,1100,"0.99993","0.96565","0.9657" +"GO:0006518","peptide metabolic process",149,61,80.65,1090,"0.99967","0.96569","0.9657" +"GO:0071806","protein transmembrane transport",16,7,8.66,672,"0.86137","0.96589","0.9659" +"GO:0046677","response to antibiotic",19,7,10.28,884,"0.96002","0.96626","0.9663" +"GO:0006412","translation",135,52,73.07,1101,"0.99993","0.96683","0.9668" +"GO:0048870","cell motility",35,15,18.94,819,"0.93527","0.96687","0.9669" +"GO:0051674","localization of cell",35,15,18.94,820,"0.93527","0.96687","0.9669" +"GO:0045596","negative regulation of cell differentiat...",26,9,14.07,974,"0.98647","0.96742","0.9674" +"GO:0051249","regulation of lymphocyte activation",10,1,5.41,1088,"0.99960","0.96766","0.9677" +"GO:0006325","chromatin organization",96,48,51.96,626,"0.82413","0.96825","0.9682" +"GO:0032940","secretion by cell",37,16,20.03,816,"0.93353","0.96920","0.9692" +"GO:0051235","maintenance of location",15,5,8.12,917,"0.97053","0.96950","0.9695" +"GO:0016477","cell migration",32,13,17.32,866,"0.95726","0.96970","0.9697" +"GO:0048589","developmental growth",32,13,17.32,867,"0.95726","0.96970","0.9697" +"GO:0034220","ion transmembrane transport",52,23,28.14,826,"0.94353","0.97072","0.9707" +"GO:0051050","positive regulation of transport",34,16,18.4,635,"0.84268","0.97112","0.9711" +"GO:0046907","intracellular transport",174,84,94.18,854,"0.95353","0.97229","0.9723" +"GO:0010604","positive regulation of macromolecule met...",119,56,64.41,853,"0.95311","0.97241","0.9724" +"GO:0046686","response to cadmium ion",11,5,5.95,619,"0.81094","0.97252","0.9725" +"GO:0040008","regulation of growth",29,12,15.7,822,"0.94198","0.97253","0.9725" +"GO:0071705","nitrogen compound transport",162,74,87.68,981,"0.98945","0.97312","0.9731" +"GO:0006479","protein methylation",20,10,10.82,503,"0.72547","0.97337","0.9734" +"GO:0008213","protein alkylation",20,10,10.82,504,"0.72547","0.97337","0.9734" +"GO:0048285","organelle fission",38,26,20.57,37,"0.05145","0.08519","0.9734" +"GO:0016192","vesicle-mediated transport",119,49,64.41,1068,"0.99862","0.97400","0.9740" +"GO:0046903","secretion",42,19,22.73,744,"0.90661","0.97416","0.9742" +"GO:0009636","response to toxic substance",27,10,14.61,925,"0.97657","0.97425","0.9743" +"GO:0051960","regulation of nervous system development",27,8,14.61,1046,"0.99732","0.97442","0.9744" +"GO:0006406","mRNA export from nucleus",10,4,5.41,714,"0.88794","0.97514","0.9751" +"GO:0071427","mRNA-containing ribonucleoprotein comple...",10,4,5.41,715,"0.88794","0.97514","0.9751" +"GO:0045862","positive regulation of proteolysis",14,7,7.58,465,"0.71970","0.97523","0.9752" +"GO:0032504","multicellular organism reproduction",60,32,32.47,351,"0.60197","0.97530","0.9753" +"GO:0080135","regulation of cellular response to stres...",45,23,24.36,443,"0.71303","0.97532","0.9753" +"GO:0044743","protein transmembrane import into intrac...",15,6,8.12,753,"0.91320","0.97551","0.9755" +"GO:0009896","positive regulation of catabolic process",23,11,12.45,562,"0.79387","0.97559","0.9756" +"GO:0006401","RNA catabolic process",34,15,18.4,749,"0.91162","0.97584","0.9758" +"GO:1901362","organic cyclic compound biosynthetic pro...",434,212,234.9,1007,"0.99323","0.97628","0.9763" +"GO:0010035","response to inorganic substance",34,14,18.4,859,"0.95518","0.97653","0.9765" +"GO:0001701","in utero embryonic development",17,7,9.2,741,"0.90634","0.97780","0.9778" +"GO:1902903","regulation of supramolecular fiber organ...",26,11,14.07,764,"0.92104","0.97791","0.9779" +"GO:0031175","neuron projection development",24,10,12.99,778,"0.92442","0.97960","0.9796" +"GO:0035966","response to topologically incorrect prot...",23,9,12.45,848,"0.95154","0.98045","0.9805" +"GO:0003006","developmental process involved in reprod...",56,28,30.31,547,"0.77724","0.98061","0.9806" +"GO:0006357","regulation of transcription by RNA polym...",100,40,54.12,1066,"0.99861","0.98111","0.9811" +"GO:0051173","positive regulation of nitrogen compound...",112,54,60.62,760,"0.91607","0.98116","0.9812" +"GO:0034097","response to cytokine",22,10,11.91,653,"0.84948","0.98130","0.9813" +"GO:0042594","response to starvation",22,9,11.91,786,"0.92834","0.98130","0.9813" +"GO:0048609","multicellular organismal reproductive pr...",56,29,30.31,435,"0.68895","0.98142","0.9814" +"GO:0071248","cellular response to metal ion",11,6,5.95,368,"0.61061","0.98158","0.9816" +"GO:0071496","cellular response to external stimulus",14,5,7.58,845,"0.95142","0.98168","0.9817" +"GO:0019953","sexual reproduction",57,29,30.85,512,"0.73682","0.98199","0.9820" +"GO:0007281","germ cell development",34,17,18.4,518,"0.74564","0.98202","0.9820" +"GO:0015031","protein transport",139,62,75.23,999,"0.99179","0.98240","0.9824" +"GO:0015833","peptide transport",139,62,75.23,1000,"0.99179","0.98240","0.9824" +"GO:0042886","amide transport",139,62,75.23,1001,"0.99179","0.98240","0.9824" +"GO:0043624","cellular protein complex disassembly",20,8,10.82,813,"0.93289","0.98300","0.9830" +"GO:0044703","multi-organism reproductive process",59,30,31.93,515,"0.74045","0.98307","0.9831" +"GO:0098655","cation transmembrane transport",30,11,16.24,955,"0.98288","0.98315","0.9831" +"GO:0009991","response to extracellular stimulus",32,12,17.32,949,"0.98120","0.98339","0.9834" +"GO:0031667","response to nutrient levels",32,12,17.32,950,"0.98120","0.98339","0.9834" +"GO:0009893","positive regulation of metabolic process",141,65,76.32,944,"0.97985","0.98367","0.9837" +"GO:0000302","response to reactive oxygen species",19,6,10.28,977,"0.98692","0.98385","0.9839" +"GO:0006887","exocytosis",17,8,9.2,575,"0.79713","0.98388","0.9839" +"GO:0071345","cellular response to cytokine stimulus",18,8,9.74,664,"0.85634","0.98470","0.9847" +"GO:0098660","inorganic ion transmembrane transport",27,10,14.61,926,"0.97657","0.98484","0.9848" +"GO:0033554","cellular response to stress",182,92,98.51,665,"0.86016","0.98493","0.9849" +"GO:0006352","DNA-templated transcription, initiation",24,6,12.99,1076,"0.99913","0.98504","0.9850" +"GO:0098662","inorganic cation transmembrane transport",26,10,14.07,894,"0.96481","0.98540","0.9854" +"GO:0045184","establishment of protein localization",150,68,81.19,983,"0.98948","0.98572","0.9857" +"GO:0033036","macromolecule localization",222,104,120.16,989,"0.99044","0.98606","0.9861" +"GO:0007286","spermatid development",15,8,8.12,399,"0.62790","0.98644","0.9864" +"GO:0048515","spermatid differentiation",15,8,8.12,400,"0.62790","0.98644","0.9864" +"GO:0065008","regulation of biological quality",170,78,92.01,984,"0.98948","0.65738","0.9868" +"GO:0006986","response to unfolded protein",15,5,8.12,918,"0.97053","0.98725","0.9872" +"GO:0035967","cellular response to topologically incor...",15,6,8.12,754,"0.91320","0.98725","0.9872" +"GO:0051321","meiotic cell cycle",15,7,8.12,586,"0.80002","0.98725","0.9872" +"GO:0048638","regulation of developmental growth",13,3,7.04,1026,"0.99511","0.98767","0.9877" +"GO:0070727","cellular macromolecule localization",151,70,81.73,947,"0.98006","0.98782","0.9878" +"GO:0000280","nuclear division",33,22,17.86,68,"0.09947","0.20164","0.9879" +"GO:0034605","cellular response to heat",14,6,7.58,681,"0.86793","0.98810","0.9881" +"GO:0031109","microtubule polymerization or depolymeri...",12,6,6.49,459,"0.71911","0.98848","0.9885" +"GO:0080090","regulation of primary metabolic process",422,200,228.41,1073,"0.99898","0.98863","0.9886" +"GO:0050896","response to stimulus",567,282,306.89,1002,"0.99226","0.98926","0.9893" +"GO:0035556","intracellular signal transduction",115,52,62.24,945,"0.98000","0.98952","0.9895" +"GO:0006836","neurotransmitter transport",17,7,9.2,742,"0.90634","0.98956","0.9896" +"GO:0001667","ameboidal-type cell migration",11,2,5.95,1048,"0.99740","0.98956","0.9896" +"GO:0045927","positive regulation of growth",11,5,5.95,620,"0.81094","0.98956","0.9896" +"GO:0034613","cellular protein localization",149,69,80.65,946,"0.98001","0.98997","0.9900" +"GO:0090130","tissue migration",10,3,5.41,911,"0.96911","0.99051","0.9905" +"GO:0032355","response to estradiol",11,4,5.95,806,"0.93195","0.99065","0.9906" +"GO:1903046","meiotic cell cycle process",11,3,5.95,963,"0.98304","0.99065","0.9906" +"GO:0065007","biological regulation",847,412,458.43,1103,"0.99996","0.99074","0.9912" +"GO:0016070","RNA metabolic process",589,285,318.79,1081,"0.99937","0.99139","0.9914" +"GO:0022412","cellular process involved in reproductio...",37,19,20.03,438,"0.69484","0.99150","0.9915" +"GO:0007369","gastrulation",17,6,9.2,897,"0.96501","0.99160","0.9916" +"GO:0051716","cellular response to stimulus",461,222,249.51,1054,"0.99805","0.99170","0.9917" +"GO:0006914","autophagy",40,19,21.65,639,"0.84310","0.99172","0.9917" +"GO:0061919","process utilizing autophagic mechanism",40,19,21.65,640,"0.84310","0.99172","0.9917" +"GO:0045454","cell redox homeostasis",21,5,11.37,1070,"0.99894","0.99173","0.9917" +"GO:0050793","regulation of developmental process",89,38,48.17,982,"0.98947","0.99196","0.9920" +"GO:0022414","reproductive process",86,43,46.55,622,"0.81360","0.99235","0.9923" +"GO:0071702","organic substance transport",193,88,104.46,1018,"0.99451","0.99245","0.9925" +"GO:0050789","regulation of biological process",800,389,433,1099,"0.99993","0.99267","0.9929" +"GO:0006886","intracellular protein transport",112,51,60.62,924,"0.97495","0.99313","0.9931" +"GO:0000003","reproduction",91,46,49.25,553,"0.78950","0.99339","0.9934" +"GO:0051171","regulation of nitrogen compound metaboli...",413,194,223.53,1082,"0.99939","0.99342","0.9934" +"GO:0051247","positive regulation of protein metabolic...",62,25,33.56,988,"0.99023","0.99379","0.9938" +"GO:0032270","positive regulation of cellular protein ...",59,24,31.93,978,"0.98704","0.99409","0.9941" +"GO:0051174","regulation of phosphorus metabolic proce...",58,20,31.39,1078,"0.99926","0.99420","0.9942" +"GO:0051093","negative regulation of developmental pro...",30,10,16.24,1010,"0.99366","0.99427","0.9943" +"GO:0019220","regulation of phosphate metabolic proces...",57,19,30.85,1086,"0.99957","0.99430","0.9943" +"GO:0060255","regulation of macromolecule metabolic pr...",431,202,233.28,1089,"0.99961","0.99430","0.9943" +"GO:0007154","cell communication",318,149,172.12,1052,"0.99770","0.99463","0.9946" +"GO:0046578","regulation of Ras protein signal transdu...",10,3,5.41,912,"0.96911","0.99465","0.9947" +"GO:0050794","regulation of cellular process",751,367,406.48,1091,"0.99975","0.99447","0.9947" +"GO:0023052","signaling",308,147,166.7,1004,"0.99303","0.99482","0.9948" +"GO:0010721","negative regulation of cell development",13,3,7.04,1027,"0.99511","0.99506","0.9951" +"GO:0031325","positive regulation of cellular metaboli...",127,59,68.74,902,"0.96906","0.99507","0.9951" +"GO:0007165","signal transduction",293,137,158.58,1043,"0.99699","0.99511","0.9951" +"GO:0048518","positive regulation of biological proces...",273,135,147.76,863,"0.95560","0.99512","0.9951" +"GO:0006487","protein N-linked glycosylation",17,7,9.2,743,"0.90634","0.99520","0.9952" +"GO:0048522","positive regulation of cellular process",239,116,129.36,914,"0.97038","0.99610","0.9961" +"GO:0019222","regulation of metabolic process",458,217,247.89,1083,"0.99941","0.99642","0.9964" +"GO:0010468","regulation of gene expression",360,166,194.85,1087,"0.99958","0.99701","0.9970" +"GO:0009889","regulation of biosynthetic process",339,159,183.48,1059,"0.99824","0.99769","0.9977" +"GO:0051056","regulation of small GTPase mediated sign...",11,3,5.95,964,"0.98304","0.99774","0.9977" +"GO:0031326","regulation of cellular biosynthetic proc...",335,157,181.32,1058,"0.99821","0.99782","0.9978" +"GO:0010556","regulation of macromolecule biosynthetic...",329,156,178.07,1038,"0.99621","0.99800","0.9980" +"GO:0006766","vitamin metabolic process",11,4,5.95,807,"0.93195","0.99803","0.9980" +"GO:0051649","establishment of localization in cell",183,87,99.05,922,"0.97311","0.99810","0.9981" +"GO:0019219","regulation of nucleobase-containing comp...",325,150,175.9,1077,"0.99915","0.99812","0.9981" +"GO:2000112","regulation of cellular macromolecule bio...",325,154,175.9,1037,"0.99614","0.99812","0.9981" +"GO:0006915","apoptotic process",73,34,39.51,774,"0.92374","0.99816","0.9982" +"GO:0051252","regulation of RNA metabolic process",311,142,168.33,1084,"0.99942","0.99851","0.9985" +"GO:0031323","regulation of cellular metabolic process",422,199,228.41,1079,"0.99929","0.99862","0.9986" +"GO:2001141","regulation of RNA biosynthetic process",290,134,156.96,1061,"0.99831","0.99903","0.9990" +"GO:1903506","regulation of nucleic acid-templated tra...",289,133,156.42,1067,"0.99861","0.99905","0.9990" +"GO:0006355","regulation of transcription, DNA-templat...",288,133,155.88,1060,"0.99830","0.99907","0.9991" +"GO:1902531","regulation of intracellular signal trans...",61,27,33.02,857,"0.95470","0.99907","0.9991" +"GO:0044249","cellular biosynthetic process",742,373,401.6,1017,"0.99446","0.99932","0.9991" +"GO:0009058","biosynthetic process",777,391,420.55,1028,"0.99517","0.99942","0.9992" +"GO:0007276","gamete generation",49,25,26.52,492,"0.72137","0.99926","0.9993" +"GO:0007268","chemical synaptic transmission",18,6,9.74,939,"0.97843","0.99934","0.9993" +"GO:0098916","anterograde trans-synaptic signaling",18,6,9.74,940,"0.97843","0.99934","0.9993" +"GO:0099536","synaptic signaling",18,6,9.74,941,"0.97843","0.99934","0.9993" +"GO:0099537","trans-synaptic signaling",18,6,9.74,942,"0.97843","0.99934","0.9993" +"GO:0031929","TOR signaling",11,3,5.95,965,"0.98304","0.99950","0.9995" +"GO:0007292","female gamete generation",28,11,15.15,888,"0.96205","0.99958","0.9996" +"GO:0048477","oogenesis",24,10,12.99,779,"0.92442","0.99964","0.9996" +"GO:0010467","gene expression",698,325,377.79,1105,"1.00000","0.99974","0.9997" +"GO:0061024","membrane organization",43,18,23.27,891,"0.96248","0.99995","0.9999" +"GO:0016050","vesicle organization",15,6,8.12,755,"0.91320","0.99998","1.0000" +"GO:0006351","transcription, DNA-templated",339,154,183.48,1092,"0.99977","1.00000","1.0000" +"GO:0006366","transcription by RNA polymerase II",122,50,66.03,1071,"0.99894","1.00000","1.0000" +"GO:0006367","transcription initiation from RNA polyme...",11,1,5.95,1097,"0.99982","1.00000","1.0000" +"GO:0008150","biological_process",2570,1391,1391,1106,"1.00000","1.00000","1.0000" +"GO:0008652","cellular amino acid biosynthetic process",14,11,7.58,44,"0.05504","0.00482","1.0000" +"GO:0009059","macromolecule biosynthetic process",608,296,329.08,1075,"0.99911","1.00000","1.0000" +"GO:0009987","cellular process",1974,1038,1068.42,1056,"0.99818","0.99949","1.0000" +"GO:0018130","heterocycle biosynthetic process",423,205,228.95,1031,"0.99542","1.00000","1.0000" +"GO:0019438","aromatic compound biosynthetic process",415,200,224.62,1040,"0.99651","1.00000","1.0000" +"GO:0032774","RNA biosynthetic process",345,157,186.73,1093,"0.99977","1.00000","1.0000" +"GO:0034645","cellular macromolecule biosynthetic proc...",601,293,325.29,1069,"0.99890","1.00000","1.0000" +"GO:0034654","nucleobase-containing compound biosynthe...",400,191,216.5,1053,"0.99771","1.00000","1.0000" +"GO:0044260","cellular macromolecule metabolic process",1009,512,546.12,1050,"0.99749","1.00000","1.0000" +"GO:0044271","cellular nitrogen compound biosynthetic ...",559,257,302.56,1104,"0.99999","1.00000","1.0000" +"GO:0051783","regulation of nuclear division",11,10,5.95,15,"0.01191","0.00779","1.0000" +"GO:0097659","nucleic acid-templated transcription",340,154,184.02,1094,"0.99981","1.00000","1.0000" +"GO:1901576","organic substance biosynthetic process",753,379,407.56,1015,"0.99422","1.00000","1.0000" diff --git a/GO_enrichment_output/contrast_young_phoretic_upregulated.csv b/GO_enrichment_output/contrast_young_phoretic_upregulated.csv index d50b093..de52571 100644 --- a/GO_enrichment_output/contrast_young_phoretic_upregulated.csv +++ b/GO_enrichment_output/contrast_young_phoretic_upregulated.csv @@ -4,3 +4,3019 @@ "GO:0001736","establishment of planar polarity",14,12,7.56,99,"0.01403","0.00086","0.00086" "GO:0008284","positive regulation of cell proliferatio...",29,22,15.67,85,"0.01284","0.00100","0.00100" "GO:0051127","positive regulation of actin nucleation",7,7,3.78,86,"0.01335","0.00128","0.00128" +"GO:0007163","establishment or maintenance of cell pol...",17,16,9.19,14,"0.00043","0.00173","0.00173" +"GO:0007476","imaginal disc-derived wing morphogenesis",7,7,3.78,87,"0.01335","0.00180","0.00180" +"GO:0001654","eye development",57,42,30.8,27,"0.00166","0.00181","0.00181" +"GO:0010769","regulation of cell morphogenesis involve...",19,16,10.27,52,"0.00599","0.00225","0.00225" +"GO:0048646","anatomical structure formation involved ...",80,55,43.23,46,"0.00462","0.00232","0.00232" +"GO:0042752","regulation of circadian rhythm",9,9,4.86,39,"0.00388","0.00241","0.00241" +"GO:0034446","substrate adhesion-dependent cell spread...",5,5,2.7,186,"0.04590","0.00293","0.00293" +"GO:0030036","actin cytoskeleton organization",76,53,41.06,37,"0.00336","0.00024","0.00324" +"GO:0045785","positive regulation of cell adhesion",8,8,4.32,62,"0.00720","0.00350","0.00350" +"GO:0007186","G protein-coupled receptor signaling pat...",88,58,47.55,103,"0.01444","0.00354","0.00354" +"GO:0007417","central nervous system development",76,56,41.06,9,"0.00028","0.00057","0.00375" +"GO:0033627","cell adhesion mediated by integrin",5,5,2.7,187,"0.04590","0.00397","0.00397" +"GO:1901016","regulation of potassium ion transmembran...",3,3,1.62,464,"0.15758","0.00487","0.00487" +"GO:0007411","axon guidance",23,19,12.43,40,"0.00407","0.00494","0.00494" +"GO:0061138","morphogenesis of a branching epithelium",9,8,4.86,151,"0.03374","0.00501","0.00501" +"GO:1903530","regulation of secretion by cell",22,19,11.89,26,"0.00143","0.00506","0.00506" +"GO:0042063","gliogenesis",12,10,6.48,169,"0.03618","0.00525","0.00525" +"GO:0009887","animal organ morphogenesis",85,60,45.93,24,"0.00113","0.00059","0.00530" +"GO:0070527","platelet aggregation",8,7,4.32,226,"0.05642","0.00632","0.00632" +"GO:0008544","epidermis development",14,12,7.56,100,"0.01403","0.00716","0.00716" +"GO:0005975","carbohydrate metabolic process",61,43,32.96,51,"0.00591","0.00724","0.00724" +"GO:0055085","transmembrane transport",261,163,141.02,34,"0.00229","0.00571","0.00858" +"GO:0007155","cell adhesion",104,77,56.19,1,"1.5e-05","9.6e-07","0.00862" +"GO:0032507","maintenance of protein location in cell",10,9,5.4,112,"0.01998","0.00887","0.00887" +"GO:0043062","extracellular structure organization",19,16,10.27,53,"0.00599","0.00070","0.00912" +"GO:0035152","regulation of tube architecture, open tr...",4,4,2.16,290,"0.08506","0.00943","0.00943" +"GO:0071711","basement membrane organization",4,4,2.16,291,"0.08506","0.00943","0.00943" +"GO:0050905","neuromuscular process",5,5,2.7,188,"0.04590","0.00948","0.00948" +"GO:0016319","mushroom body development",6,6,3.24,127,"0.02476","0.00969","0.00969" +"GO:0009060","aerobic respiration",17,15,9.19,36,"0.00316","0.00982","0.00982" +"GO:0072525","pyridine-containing compound biosyntheti...",12,10,6.48,170,"0.03618","0.01026","0.01026" +"GO:0003206","cardiac chamber morphogenesis",5,5,2.7,189,"0.04590","0.01117","0.01117" +"GO:0098742","cell-cell adhesion via plasma-membrane a...",27,23,14.59,17,"0.00064","0.00102","0.01120" +"GO:0097435","supramolecular fiber organization",68,45,36.74,139,"0.02687","0.00157","0.01132" +"GO:0010927","cellular component assembly involved in ...",19,14,10.27,257,"0.06545","0.01139","0.01139" +"GO:0007271","synaptic transmission, cholinergic",3,3,1.62,465,"0.15758","0.01185","0.01185" +"GO:0032222","regulation of synaptic transmission, cho...",3,3,1.62,466,"0.15758","0.01185","0.01185" +"GO:0060401","cytosolic calcium ion transport",7,7,3.78,88,"0.01335","0.01192","0.01192" +"GO:0048871","multicellular organismal homeostasis",20,16,10.81,106,"0.01495","0.01271","0.01271" +"GO:0046847","filopodium assembly",4,4,2.16,292,"0.08506","0.01305","0.01305" +"GO:0048749","compound eye development",13,11,7.02,120,"0.02265","0.01344","0.01344" +"GO:0045580","regulation of T cell differentiation",3,3,1.62,467,"0.15758","0.01392","0.01392" +"GO:0060322","head development",62,45,33.5,31,"0.00192","0.00183","0.01406" +"GO:0009612","response to mechanical stimulus",21,16,11.35,147,"0.03152","0.01422","0.01422" +"GO:0072524","pyridine-containing compound metabolic p...",14,11,7.56,218,"0.05426","0.01438","0.01438" +"GO:0048754","branching morphogenesis of an epithelial...",8,7,4.32,227,"0.05642","0.01446","0.01446" +"GO:0035151","regulation of tube size, open tracheal s...",3,3,1.62,468,"0.15758","0.01461","0.01461" +"GO:0016202","regulation of striated muscle tissue dev...",9,8,4.86,152,"0.03374","0.01568","0.01568" +"GO:0048634","regulation of muscle organ development",9,8,4.86,153,"0.03374","0.01568","0.01568" +"GO:1901861","regulation of muscle tissue development",9,8,4.86,154,"0.03374","0.01568","0.01568" +"GO:0006811","ion transport",209,133,112.93,32,"0.00214","0.00961","0.01570" +"GO:0072359","circulatory system development",70,47,37.82,109,"0.01656","0.01619","0.01619" +"GO:0002791","regulation of peptide secretion",14,12,7.56,101,"0.01403","0.01623","0.01623" +"GO:0050708","regulation of protein secretion",14,12,7.56,102,"0.01403","0.01623","0.01623" +"GO:0099173","postsynapse organization",16,14,8.65,49,"0.00524","0.01670","0.01670" +"GO:0035902","response to immobilization stress",5,5,2.7,190,"0.04590","0.01784","0.01784" +"GO:0098974","postsynaptic actin cytoskeleton organiza...",5,5,2.7,191,"0.04590","0.01784","0.01784" +"GO:0099188","postsynaptic cytoskeleton organization",5,5,2.7,192,"0.04590","0.01784","0.01784" +"GO:0051047","positive regulation of secretion",19,16,10.27,54,"0.00599","0.01815","0.01815" +"GO:0055082","cellular chemical homeostasis",25,19,13.51,116,"0.02004","0.01817","0.01817" +"GO:0048814","regulation of dendrite morphogenesis",6,6,3.24,128,"0.02476","0.01843","0.01843" +"GO:0048732","gland development",15,13,8.1,74,"0.00861","0.01850","0.01850" +"GO:0030010","establishment of cell polarity",12,11,6.48,59,"0.00684","0.01856","0.01856" +"GO:0043044","ATP-dependent chromatin remodeling",6,6,3.24,129,"0.02476","0.01898","0.01898" +"GO:0045682","regulation of epidermis development",3,3,1.62,469,"0.15758","0.01910","0.01910" +"GO:0098609","cell-cell adhesion",64,48,34.58,13,"0.00039","0.00041","0.01916" +"GO:0010001","glial cell differentiation",10,8,5.4,335,"0.08880","0.01924","0.01924" +"GO:0019359","nicotinamide nucleotide biosynthetic pro...",11,9,5.94,242,"0.05709","0.02006","0.02006" +"GO:0019363","pyridine nucleotide biosynthetic process",11,9,5.94,243,"0.05709","0.02006","0.02006" +"GO:0007420","brain development",61,44,32.96,35,"0.00264","0.00272","0.02033" +"GO:0002793","positive regulation of peptide secretion",9,8,4.86,155,"0.03374","0.02106","0.02106" +"GO:0050714","positive regulation of protein secretion",9,8,4.86,156,"0.03374","0.02106","0.02106" +"GO:0043406","positive regulation of MAP kinase activi...",8,8,4.32,63,"0.00720","0.02136","0.02136" +"GO:0071902","positive regulation of protein serine/th...",8,8,4.32,64,"0.00720","0.02136","0.02136" +"GO:0001894","tissue homeostasis",17,13,9.19,206,"0.05016","0.02149","0.02149" +"GO:0048813","dendrite morphogenesis",11,10,5.94,83,"0.01173","0.02201","0.02201" +"GO:0050885","neuromuscular process controlling balanc...",4,4,2.16,293,"0.08506","0.02245","0.02245" +"GO:0060997","dendritic spine morphogenesis",4,4,2.16,294,"0.08506","0.02245","0.02245" +"GO:0061001","regulation of dendritic spine morphogene...",4,4,2.16,295,"0.08506","0.02245","0.02245" +"GO:0050673","epithelial cell proliferation",17,12,9.19,389,"0.12855","0.02260","0.02260" +"GO:0016999","antibiotic metabolic process",18,15,9.73,80,"0.00949","0.02343","0.02343" +"GO:0071257","cellular response to electrical stimulus",6,6,3.24,130,"0.02476","0.02373","0.02373" +"GO:0006099","tricarboxylic acid cycle",15,13,8.1,75,"0.00861","0.02389","0.02389" +"GO:0006101","citrate metabolic process",15,13,8.1,76,"0.00861","0.02389","0.02389" +"GO:0072350","tricarboxylic acid metabolic process",15,13,8.1,77,"0.00861","0.02389","0.02389" +"GO:0036445","neuronal stem cell division",3,3,1.62,470,"0.15758","0.02410","0.02410" +"GO:0048103","somatic stem cell division",3,3,1.62,471,"0.15758","0.02410","0.02410" +"GO:0055057","neuroblast division",3,3,1.62,472,"0.15758","0.02410","0.02410" +"GO:0055059","asymmetric neuroblast division",3,3,1.62,473,"0.15758","0.02410","0.02410" +"GO:0007611","learning or memory",21,17,11.35,82,"0.00978","0.02431","0.02431" +"GO:0007016","cytoskeletal anchoring at plasma membran...",3,3,1.62,474,"0.15758","0.02466","0.02466" +"GO:0048589","developmental growth",50,33,27.02,241,"0.05688","0.02512","0.02512" +"GO:0006096","glycolytic process",8,7,4.32,228,"0.05642","0.02577","0.02577" +"GO:0006757","ATP generation from ADP",8,7,4.32,229,"0.05642","0.02577","0.02577" +"GO:0009135","purine nucleoside diphosphate metabolic ...",8,7,4.32,230,"0.05642","0.02577","0.02577" +"GO:0009179","purine ribonucleoside diphosphate metabo...",8,7,4.32,231,"0.05642","0.02577","0.02577" +"GO:0009185","ribonucleoside diphosphate metabolic pro...",8,7,4.32,232,"0.05642","0.02577","0.02577" +"GO:0042866","pyruvate biosynthetic process",8,7,4.32,233,"0.05642","0.02577","0.02577" +"GO:0046031","ADP metabolic process",8,7,4.32,234,"0.05642","0.02577","0.02577" +"GO:0060026","convergent extension",3,3,1.62,475,"0.15758","0.02600","0.02600" +"GO:0001745","compound eye morphogenesis",11,9,5.94,244,"0.05709","0.02616","0.02616" +"GO:0007507","heart development",53,34,28.64,334,"0.08697","0.02641","0.02641" +"GO:0019362","pyridine nucleotide metabolic process",13,10,7.02,280,"0.08129","0.02705","0.02705" +"GO:0046496","nicotinamide nucleotide metabolic proces...",13,10,7.02,281,"0.08129","0.02705","0.02705" +"GO:0006270","DNA replication initiation",4,3,2.16,895,"0.37516","0.02712","0.02712" +"GO:0035315","hair cell differentiation",4,4,2.16,296,"0.08506","0.02712","0.02712" +"GO:0055074","calcium ion homeostasis",18,14,9.73,162,"0.03391","0.02731","0.02731" +"GO:1903532","positive regulation of secretion by cell",18,15,9.73,81,"0.00949","0.02751","0.02751" +"GO:0010720","positive regulation of cell development",29,21,15.67,149,"0.03327","0.02809","0.02809" +"GO:0006874","cellular calcium ion homeostasis",16,13,8.65,122,"0.02321","0.02881","0.02881" +"GO:0048812","neuron projection morphogenesis",61,45,32.96,21,"0.00109","0.00059","0.02929" +"GO:0048858","cell projection morphogenesis",61,45,32.96,22,"0.00109","0.00059","0.02929" +"GO:0120039","plasma membrane bounded cell projection ...",61,45,32.96,23,"0.00109","0.00059","0.02929" +"GO:0001954","positive regulation of cell-matrix adhes...",3,3,1.62,476,"0.15758","0.03031","0.03031" +"GO:0007391","dorsal closure",3,3,1.62,477,"0.15758","0.03031","0.03031" +"GO:0010811","positive regulation of cell-substrate ad...",3,3,1.62,478,"0.15758","0.03031","0.03031" +"GO:0032231","regulation of actin filament bundle asse...",3,3,1.62,479,"0.15758","0.03031","0.03031" +"GO:0051492","regulation of stress fiber assembly",3,3,1.62,480,"0.15758","0.03031","0.03031" +"GO:0034220","ion transmembrane transport",109,73,58.9,38,"0.00345","0.01642","0.03063" +"GO:0034754","cellular hormone metabolic process",4,4,2.16,297,"0.08506","0.03085","0.03085" +"GO:2000026","regulation of multicellular organismal d...",110,70,59.44,124,"0.02381","0.03146","0.03146" +"GO:0030198","extracellular matrix organization",17,14,9.19,104,"0.01492","0.00259","0.03149" +"GO:0022603","regulation of anatomical structure morph...",52,40,28.1,16,"0.00049","0.00095","0.03267" +"GO:0050678","regulation of epithelial cell proliferat...",11,8,5.94,593,"0.17336","0.03379","0.03379" +"GO:0007349","cellularization",8,7,4.32,235,"0.05642","0.03405","0.03405" +"GO:1904029","regulation of cyclin-dependent protein k...",8,6,4.32,629,"0.20353","0.03405","0.03405" +"GO:0000902","cell morphogenesis",83,61,44.85,4,"0.00017","0.00012","0.03408" +"GO:0002118","aggressive behavior",6,6,3.24,131,"0.02476","0.03415","0.03415" +"GO:0002121","inter-male aggressive behavior",6,6,3.24,132,"0.02476","0.03415","0.03415" +"GO:0008356","asymmetric cell division",5,4,2.7,684,"0.24171","0.03475","0.03475" +"GO:0001952","regulation of cell-matrix adhesion",4,4,2.16,298,"0.08506","0.03487","0.03487" +"GO:0010810","regulation of cell-substrate adhesion",4,4,2.16,299,"0.08506","0.03487","0.03487" +"GO:0006875","cellular metal ion homeostasis",21,16,11.35,148,"0.03152","0.03505","0.03505" +"GO:0051093","negative regulation of developmental pro...",51,34,27.56,184,"0.04462","0.03521","0.03521" +"GO:0010770","positive regulation of cell morphogenesi...",5,5,2.7,193,"0.04590","0.03590","0.03590" +"GO:0071214","cellular response to abiotic stimulus",19,14,10.27,258,"0.06545","0.03611","0.03611" +"GO:0104004","cellular response to environmental stimu...",19,14,10.27,259,"0.06545","0.03611","0.03611" +"GO:0048598","embryonic morphogenesis",51,33,27.56,274,"0.07937","0.03683","0.03683" +"GO:0051489","regulation of filopodium assembly",3,3,1.62,481,"0.15758","0.03865","0.03865" +"GO:0030334","regulation of cell migration",32,21,17.29,385,"0.12543","0.03866","0.03866" +"GO:0045165","cell fate commitment",19,14,10.27,260,"0.06545","0.03952","0.03952" +"GO:0097090","presynaptic membrane organization",4,4,2.16,300,"0.08506","0.04014","0.04014" +"GO:0010172","embryonic body morphogenesis",4,4,2.16,301,"0.08506","0.04113","0.04113" +"GO:0051705","multi-organism behavior",14,11,7.56,219,"0.05426","0.04144","0.04144" +"GO:0009790","embryo development",92,54,49.71,653,"0.20987","0.04152","0.04152" +"GO:0051962","positive regulation of nervous system de...",28,20,15.13,203,"0.04596","0.04168","0.04168" +"GO:0007043","cell-cell junction assembly",5,4,2.7,685,"0.24171","0.04179","0.04179" +"GO:0045216","cell-cell junction organization",5,4,2.7,686,"0.24171","0.04179","0.04179" +"GO:0009605","response to external stimulus",120,78,64.84,73,"0.00830","0.01501","0.04198" +"GO:0001501","skeletal system development",22,16,11.89,250,"0.05828","0.04262","0.04262" +"GO:0050808","synapse organization",39,28,21.07,110,"0.01735","0.04281","0.04281" +"GO:0007623","circadian rhythm",18,17,9.73,8,"0.00024","0.00034","0.04401" +"GO:0051301","cell division",29,18,15.67,748,"0.24752","0.04434","0.04434" +"GO:0006873","cellular ion homeostasis",23,17,12.43,180,"0.04130","0.04495","0.04495" +"GO:0030003","cellular cation homeostasis",23,17,12.43,181,"0.04130","0.04495","0.04495" +"GO:0061351","neural precursor cell proliferation",9,8,4.86,157,"0.03374","0.04514","0.04514" +"GO:0007219","Notch signaling pathway",15,9,8.1,1021,"0.42178","0.04533","0.04533" +"GO:0000904","cell morphogenesis involved in different...",62,47,33.5,11,"0.00029","0.00014","0.04552" +"GO:0048663","neuron fate commitment",3,3,1.62,482,"0.15758","0.04576","0.04576" +"GO:0060856","establishment of blood-brain barrier",3,3,1.62,483,"0.15758","0.04576","0.04576" +"GO:0009913","epidermal cell differentiation",8,7,4.32,236,"0.05642","0.04684","0.04684" +"GO:0048667","cell morphogenesis involved in neuron di...",52,39,28.1,25,"0.00138","0.00094","0.04711" +"GO:0007291","sperm individualization",6,5,3.24,436,"0.15160","0.04911","0.04911" +"GO:0021762","substantia nigra development",6,5,3.24,437,"0.15160","0.04911","0.04911" +"GO:0048857","neural nucleus development",6,5,3.24,438,"0.15160","0.04911","0.04911" +"GO:1904030","negative regulation of cyclin-dependent ...",6,5,3.24,439,"0.15160","0.04911","0.04911" +"GO:0072089","stem cell proliferation",9,7,4.86,406,"0.13581","0.04941","0.04941" +"GO:0051602","response to electrical stimulus",10,9,5.4,113,"0.01998","0.04965","0.04965" +"GO:0007389","pattern specification process",43,30,23.23,137,"0.02522","0.05105","0.05105" +"GO:0007187","G protein-coupled receptor signaling pat...",3,3,1.62,484,"0.15758","0.05109","0.05109" +"GO:0007188","adenylate cyclase-modulating G protein-c...",3,3,1.62,485,"0.15758","0.05109","0.05109" +"GO:0048705","skeletal system morphogenesis",13,10,7.02,282,"0.08129","0.05122","0.05122" +"GO:0035148","tube formation",19,13,10.27,434,"0.15088","0.05162","0.05162" +"GO:0048568","embryonic organ development",39,25,21.07,405,"0.13318","0.05203","0.05203" +"GO:0055065","metal ion homeostasis",25,18,13.51,213,"0.05178","0.05231","0.05231" +"GO:0090596","sensory organ morphogenesis",34,24,18.37,167,"0.03616","0.05258","0.05258" +"GO:0065004","protein-DNA complex assembly",14,8,7.56,1194,"0.51668","0.05261","0.05261" +"GO:0071824","protein-DNA complex subunit organization",14,8,7.56,1195,"0.51668","0.05261","0.05261" +"GO:0002696","positive regulation of leukocyte activat...",5,5,2.7,194,"0.04590","0.05388","0.05388" +"GO:0050867","positive regulation of cell activation",5,5,2.7,195,"0.04590","0.05388","0.05388" +"GO:0051251","positive regulation of lymphocyte activa...",5,5,2.7,196,"0.04590","0.05388","0.05388" +"GO:0030239","myofibril assembly",15,11,8.1,364,"0.10528","0.05477","0.05477" +"GO:0044057","regulation of system process",35,22,18.91,617,"0.18869","0.05524","0.05524" +"GO:0001525","angiogenesis",13,11,7.02,121,"0.02265","0.05526","0.05526" +"GO:0046434","organophosphate catabolic process",24,16,12.97,431,"0.14852","0.05553","0.05553" +"GO:0060562","epithelial tube morphogenesis",37,28,19.99,50,"0.00536","0.00305","0.05594" +"GO:0007612","learning",16,13,8.65,123,"0.02321","0.05596","0.05596" +"GO:0007015","actin filament organization",41,29,22.15,119,"0.02112","0.00732","0.05639" +"GO:0006851","mitochondrial calcium ion transmembrane ...",3,3,1.62,486,"0.15758","0.05654","0.05654" +"GO:0036444","calcium import into the mitochondrion",3,3,1.62,487,"0.15758","0.05654","0.05654" +"GO:0051560","mitochondrial calcium ion homeostasis",3,3,1.62,488,"0.15758","0.05654","0.05654" +"GO:0007610","behavior",68,45,36.74,140,"0.02687","0.05681","0.05681" +"GO:0034329","cell junction assembly",12,10,6.48,171,"0.03618","0.05805","0.05805" +"GO:0034330","cell junction organization",12,10,6.48,172,"0.03618","0.05805","0.05805" +"GO:0032228","regulation of synaptic transmission, GAB...",3,3,1.62,489,"0.15758","0.05807","0.05807" +"GO:0035640","exploration behavior",3,3,1.62,490,"0.15758","0.05807","0.05807" +"GO:0050805","negative regulation of synaptic transmis...",3,3,1.62,491,"0.15758","0.05807","0.05807" +"GO:0051932","synaptic transmission, GABAergic",3,3,1.62,492,"0.15758","0.05807","0.05807" +"GO:0006816","calcium ion transport",31,20,16.75,576,"0.15935","0.05871","0.05871" +"GO:0048592","eye morphogenesis",31,22,16.75,177,"0.04077","0.05871","0.05871" +"GO:0003205","cardiac chamber development",8,6,4.32,630,"0.20353","0.05911","0.05911" +"GO:0021987","cerebral cortex development",8,6,4.32,631,"0.20353","0.05911","0.05911" +"GO:0035239","tube morphogenesis",54,39,29.18,45,"0.00442","0.00808","0.05915" +"GO:0051216","cartilage development",11,8,5.94,594,"0.17336","0.05934","0.05934" +"GO:0022409","positive regulation of cell-cell adhesio...",4,4,2.16,302,"0.08506","0.05943","0.05943" +"GO:0030217","T cell differentiation",4,3,2.16,896,"0.37516","0.05943","0.05943" +"GO:0045619","regulation of lymphocyte differentiation",4,3,2.16,897,"0.37516","0.05943","0.05943" +"GO:1901888","regulation of cell junction assembly",4,4,2.16,303,"0.08506","0.05943","0.05943" +"GO:0048729","tissue morphogenesis",58,45,31.34,3,"0.00015","6.8e-05","0.05988" +"GO:0032989","cellular component morphogenesis",102,72,55.11,12,"0.00036","0.00038","0.06037" +"GO:0050769","positive regulation of neurogenesis",27,19,14.59,255,"0.06278","0.06109","0.06109" +"GO:0001678","cellular glucose homeostasis",3,3,1.62,493,"0.15758","0.06124","0.06124" +"GO:0003208","cardiac ventricle morphogenesis",3,3,1.62,494,"0.15758","0.06124","0.06124" +"GO:0051960","regulation of nervous system development",57,37,30.8,252,"0.06168","0.06248","0.06248" +"GO:0072503","cellular divalent inorganic cation homeo...",17,13,9.19,207,"0.05016","0.06314","0.06314" +"GO:0007159","leukocyte cell-cell adhesion",5,5,2.7,197,"0.04590","0.06318","0.06318" +"GO:0055080","cation homeostasis",29,20,15.67,269,"0.07416","0.06329","0.06329" +"GO:0098771","inorganic ion homeostasis",29,20,15.67,270,"0.07416","0.06329","0.06329" +"GO:0050896","response to stimulus",720,419,389.03,44,"0.00440","0.00196","0.06370" +"GO:0050890","cognition",24,18,12.97,142,"0.02893","0.06618","0.06618" +"GO:0016477","cell migration",52,32,28.1,587,"0.16939","0.06629","0.06629" +"GO:0009166","nucleotide catabolic process",16,12,8.65,267,"0.07322","0.06673","0.06673" +"GO:0001737","establishment of imaginal disc-derived w...",3,3,1.62,495,"0.15758","0.06691","0.06691" +"GO:0035316","non-sensory hair organization",3,3,1.62,496,"0.15758","0.06691","0.06691" +"GO:0035317","imaginal disc-derived wing hair organiza...",3,3,1.62,497,"0.15758","0.06691","0.06691" +"GO:0015698","inorganic anion transport",10,9,5.4,114,"0.01998","0.06735","0.06735" +"GO:0061311","cell surface receptor signaling pathway ...",3,3,1.62,498,"0.15758","0.06756","0.06756" +"GO:0042692","muscle cell differentiation",29,19,15.67,428,"0.14416","0.06764","0.06764" +"GO:0000422","autophagy of mitochondrion",6,6,3.24,133,"0.02476","0.06970","0.06970" +"GO:0061726","mitochondrion disassembly",6,6,3.24,134,"0.02476","0.06970","0.06970" +"GO:1903008","organelle disassembly",6,6,3.24,135,"0.02476","0.06970","0.06970" +"GO:2000027","regulation of animal organ morphogenesis",15,10,8.1,673,"0.23600","0.06990","0.06990" +"GO:0070838","divalent metal ion transport",35,21,18.91,792,"0.29511","0.07074","0.07074" +"GO:0072511","divalent inorganic cation transport",35,21,18.91,793,"0.29511","0.07074","0.07074" +"GO:0055001","muscle cell development",22,15,11.89,394,"0.13026","0.07173","0.07173" +"GO:0072348","sulfur compound transport",6,6,3.24,136,"0.02476","0.07294","0.07294" +"GO:0032990","cell part morphogenesis",65,47,35.12,30,"0.00174","0.00225","0.07298" +"GO:0045859","regulation of protein kinase activity",28,19,15.13,362,"0.09830","0.07308","0.07308" +"GO:0006165","nucleoside diphosphate phosphorylation",9,7,4.86,407,"0.13581","0.07343","0.07343" +"GO:0009132","nucleoside diphosphate metabolic process",9,7,4.86,408,"0.13581","0.07343","0.07343" +"GO:0016052","carbohydrate catabolic process",9,7,4.86,409,"0.13581","0.07343","0.07343" +"GO:0046939","nucleotide phosphorylation",9,7,4.86,410,"0.13581","0.07343","0.07343" +"GO:0010171","body morphogenesis",6,5,3.24,440,"0.15160","0.07471","0.07471" +"GO:0051249","regulation of lymphocyte activation",13,10,7.02,283,"0.08129","0.07524","0.07524" +"GO:0001837","epithelial to mesenchymal transition",6,5,3.24,441,"0.15160","0.07539","0.07539" +"GO:0007272","ensheathment of neurons",6,5,3.24,442,"0.15160","0.07539","0.07539" +"GO:0007405","neuroblast proliferation",6,5,3.24,443,"0.15160","0.07539","0.07539" +"GO:0008366","axon ensheathment",6,5,3.24,444,"0.15160","0.07539","0.07539" +"GO:0060349","bone morphogenesis",6,5,3.24,445,"0.15160","0.07539","0.07539" +"GO:0060350","endochondral bone morphogenesis",6,5,3.24,446,"0.15160","0.07539","0.07539" +"GO:0060351","cartilage development involved in endoch...",6,5,3.24,447,"0.15160","0.07539","0.07539" +"GO:0051239","regulation of multicellular organismal p...",165,100,89.15,204,"0.04671","0.07546","0.07546" +"GO:0072593","reactive oxygen species metabolic proces...",5,4,2.7,687,"0.24171","0.07653","0.07653" +"GO:0046649","lymphocyte activation",17,13,9.19,208,"0.05016","0.07669","0.07669" +"GO:0050767","regulation of neurogenesis",54,35,29.18,262,"0.06994","0.07747","0.07747" +"GO:0042445","hormone metabolic process",12,8,6.48,770,"0.28045","0.07763","0.07763" +"GO:0007423","sensory organ development",68,50,36.74,18,"0.00066","0.00033","0.07780" +"GO:0021953","central nervous system neuron differenti...",9,8,4.86,158,"0.03374","0.07821","0.07821" +"GO:0034404","nucleobase-containing small molecule bio...",21,14,11.35,589,"0.17219","0.07846","0.07846" +"GO:0007160","cell-matrix adhesion",8,7,4.32,237,"0.05642","0.07949","0.07949" +"GO:0007204","positive regulation of cytosolic calcium...",4,4,2.16,304,"0.08506","0.07981","0.07981" +"GO:0051480","regulation of cytosolic calcium ion conc...",4,4,2.16,305,"0.08506","0.07981","0.07981" +"GO:0060402","calcium ion transport into cytosol",4,4,2.16,306,"0.08506","0.07981","0.07981" +"GO:0110053","regulation of actin filament organizatio...",25,18,13.51,214,"0.05178","0.00400","0.08009" +"GO:2001259","positive regulation of cation channel ac...",6,3,3.24,1777,"0.72874","0.08121","0.08121" +"GO:0048738","cardiac muscle tissue development",18,12,9.73,626,"0.20080","0.08156","0.08156" +"GO:0002790","peptide secretion",21,15,11.35,276,"0.08118","0.08180","0.08180" +"GO:0009306","protein secretion",21,15,11.35,277,"0.08118","0.08180","0.08180" +"GO:0043549","regulation of kinase activity",31,22,16.75,178,"0.04077","0.08281","0.08281" +"GO:0060560","developmental growth involved in morphog...",15,11,8.1,365,"0.10528","0.08329","0.08329" +"GO:0048645","animal organ formation",4,4,2.16,307,"0.08506","0.08335","0.08335" +"GO:0099174","regulation of presynapse organization",4,4,2.16,308,"0.08506","0.08335","0.08335" +"GO:0099172","presynapse organization",9,8,4.86,159,"0.03374","0.08393","0.08393" +"GO:0048699","generation of neurons",138,89,74.56,58,"0.00681","0.00650","0.08436" +"GO:0048878","chemical homeostasis",45,29,24.31,363,"0.10254","0.08549","0.08549" +"GO:0044860","protein localization to plasma membrane ...",4,4,2.16,309,"0.08506","0.08578","0.08578" +"GO:0051646","mitochondrion localization",4,4,2.16,310,"0.08506","0.08578","0.08578" +"GO:0072358","cardiovascular system development",27,19,14.59,256,"0.06278","0.08599","0.08599" +"GO:0000086","G2/M transition of mitotic cell cycle",5,3,2.7,1466,"0.57534","0.08674","0.08674" +"GO:0061061","muscle structure development",60,37,32.42,427,"0.14214","0.08675","0.08675" +"GO:0010562","positive regulation of phosphorus metabo...",34,22,18.37,422,"0.13887","0.08755","0.08755" +"GO:0045937","positive regulation of phosphate metabol...",34,22,18.37,423,"0.13887","0.08755","0.08755" +"GO:0007308","oocyte construction",5,5,2.7,198,"0.04590","0.08779","0.08779" +"GO:0007309","oocyte axis specification",5,5,2.7,199,"0.04590","0.08779","0.08779" +"GO:0030098","lymphocyte differentiation",7,5,3.78,795,"0.29758","0.08913","0.08913" +"GO:0001895","retina homeostasis",7,6,3.78,345,"0.09320","0.08931","0.08931" +"GO:0060078","regulation of postsynaptic membrane pote...",3,3,1.62,499,"0.15758","0.08976","0.08976" +"GO:0060079","excitatory postsynaptic potential",3,3,1.62,500,"0.15758","0.08976","0.08976" +"GO:0097105","presynaptic membrane assembly",3,3,1.62,501,"0.15758","0.08976","0.08976" +"GO:0098815","modulation of excitatory postsynaptic po...",3,3,1.62,502,"0.15758","0.08976","0.08976" +"GO:0099565","chemical synaptic transmission, postsyna...",3,3,1.62,503,"0.15758","0.08976","0.08976" +"GO:0007044","cell-substrate junction assembly",5,5,2.7,200,"0.04590","0.09026","0.09026" +"GO:0030182","neuron differentiation",123,81,66.46,43,"0.00429","0.00500","0.09166" +"GO:0001709","cell fate determination",6,5,3.24,448,"0.15160","0.09167","0.09167" +"GO:0097061","dendritic spine organization",5,4,2.7,688,"0.24171","0.09170","0.09170" +"GO:0099175","regulation of postsynapse organization",5,4,2.7,689,"0.24171","0.09170","0.09170" +"GO:0106027","neuron projection organization",5,4,2.7,690,"0.24171","0.09170","0.09170" +"GO:0010390","histone monoubiquitination",6,5,3.24,449,"0.15160","0.09180","0.09180" +"GO:0031644","regulation of neurological system proces...",7,5,3.78,796,"0.29758","0.09216","0.09216" +"GO:0070588","calcium ion transmembrane transport",20,13,10.81,666,"0.22399","0.09218","0.09218" +"GO:1900006","positive regulation of dendrite developm...",7,6,3.78,346,"0.09320","0.09358","0.09358" +"GO:0003002","regionalization",30,21,16.21,224,"0.05529","0.09430","0.09430" +"GO:0030865","cortical cytoskeleton organization",10,8,5.4,336,"0.08880","0.09452","0.09452" +"GO:0006813","potassium ion transport",24,14,12.97,1017,"0.41565","0.01506","0.09533" +"GO:0023052","signaling",510,295,275.56,145,"0.02936","0.00560","0.09572" +"GO:0007589","body fluid secretion",4,4,2.16,311,"0.08506","0.09639","0.09639" +"GO:0001523","retinoid metabolic process",5,4,2.7,691,"0.24171","0.09650","0.09650" +"GO:0006721","terpenoid metabolic process",5,4,2.7,692,"0.24171","0.09650","0.09650" +"GO:0016101","diterpenoid metabolic process",5,4,2.7,693,"0.24171","0.09650","0.09650" +"GO:0006333","chromatin assembly or disassembly",12,6,6.48,1702,"0.71690","0.09662","0.09662" +"GO:0009891","positive regulation of biosynthetic proc...",66,37,35.66,1020,"0.41814","0.09744","0.09744" +"GO:0006568","tryptophan metabolic process",3,3,1.62,504,"0.15758","0.09774","0.09774" +"GO:0006569","tryptophan catabolic process",3,3,1.62,505,"0.15758","0.09774","0.09774" +"GO:0006586","indolalkylamine metabolic process",3,3,1.62,506,"0.15758","0.09774","0.09774" +"GO:0009310","amine catabolic process",3,3,1.62,507,"0.15758","0.09774","0.09774" +"GO:0042402","cellular biogenic amine catabolic proces...",3,3,1.62,508,"0.15758","0.09774","0.09774" +"GO:0042430","indole-containing compound metabolic pro...",3,3,1.62,509,"0.15758","0.09774","0.09774" +"GO:0042436","indole-containing compound catabolic pro...",3,3,1.62,510,"0.15758","0.09774","0.09774" +"GO:0046218","indolalkylamine catabolic process",3,3,1.62,511,"0.15758","0.09774","0.09774" +"GO:0043583","ear development",8,6,4.32,632,"0.20353","0.09819","0.09819" +"GO:0048839","inner ear development",8,6,4.32,633,"0.20353","0.09819","0.09819" +"GO:0098722","asymmetric stem cell division",4,3,2.16,898,"0.37516","0.09877","0.09877" +"GO:0001751","compound eye photoreceptor cell differen...",7,5,3.78,797,"0.29758","0.09879","0.09879" +"GO:0018209","peptidyl-serine modification",7,6,3.78,347,"0.09320","0.09879","0.09879" +"GO:0042051","compound eye photoreceptor development",7,5,3.78,798,"0.29758","0.09879","0.09879" +"GO:0050801","ion homeostasis",33,22,17.83,361,"0.09757","0.09880","0.09880" +"GO:0003007","heart morphogenesis",23,15,12.43,620,"0.19247","0.09882","0.09882" +"GO:0046578","regulation of Ras protein signal transdu...",30,22,16.21,125,"0.02384","0.09925","0.09925" +"GO:0051146","striated muscle cell differentiation",26,17,14.05,583,"0.16623","0.10086","0.10086" +"GO:0035295","tube development",60,41,32.42,108,"0.01612","0.02794","0.10191" +"GO:0048167","regulation of synaptic plasticity",9,7,4.86,411,"0.13581","0.10266","0.10266" +"GO:0030901","midbrain development",8,7,4.32,238,"0.05642","0.10362","0.10362" +"GO:0048514","blood vessel morphogenesis",20,15,10.81,185,"0.04571","0.10444","0.10444" +"GO:0009311","oligosaccharide metabolic process",5,5,2.7,201,"0.04590","0.10467","0.10467" +"GO:0016197","endosomal transport",24,15,12.97,757,"0.26571","0.10718","0.10718" +"GO:0033674","positive regulation of kinase activity",14,11,7.56,220,"0.05426","0.10805","0.10805" +"GO:0060537","muscle tissue development",38,24,20.53,579,"0.16526","0.10839","0.10839" +"GO:0014013","regulation of gliogenesis",5,4,2.7,694,"0.24171","0.10874","0.10874" +"GO:0055024","regulation of cardiac muscle tissue deve...",3,2,1.62,1228,"0.56038","0.10902","0.10902" +"GO:0002376","immune system process",95,59,51.33,261,"0.06553","0.10927","0.10927" +"GO:0061640","cytoskeleton-dependent cytokinesis",13,8,7.02,1010,"0.39876","0.10980","0.10980" +"GO:0000187","activation of MAPK activity",4,4,2.16,312,"0.08506","0.10986","0.10986" +"GO:0001707","mesoderm formation",4,4,2.16,313,"0.08506","0.10986","0.10986" +"GO:0007419","ventral cord development",4,4,2.16,314,"0.08506","0.10986","0.10986" +"GO:0048332","mesoderm morphogenesis",4,4,2.16,315,"0.08506","0.10986","0.10986" +"GO:1903037","regulation of leukocyte cell-cell adhesi...",4,4,2.16,316,"0.08506","0.10986","0.10986" +"GO:0042327","positive regulation of phosphorylation",32,21,17.29,386,"0.12543","0.11062","0.11062" +"GO:0008582","regulation of synaptic growth at neuromu...",4,4,2.16,317,"0.08506","0.11211","0.11211" +"GO:0045886","negative regulation of synaptic growth a...",4,4,2.16,318,"0.08506","0.11211","0.11211" +"GO:0051964","negative regulation of synapse assembly",4,4,2.16,319,"0.08506","0.11211","0.11211" +"GO:1904396","regulation of neuromuscular junction dev...",4,4,2.16,320,"0.08506","0.11211","0.11211" +"GO:1904397","negative regulation of neuromuscular jun...",4,4,2.16,321,"0.08506","0.11211","0.11211" +"GO:0006733","oxidoreduction coenzyme metabolic proces...",15,10,8.1,674,"0.23600","0.11243","0.11243" +"GO:0008272","sulfate transport",5,5,2.7,202,"0.04590","0.11294","0.11294" +"GO:0003008","system process",106,66,57.27,205,"0.05001","0.04623","0.11332" +"GO:0055002","striated muscle cell development",21,14,11.35,590,"0.17219","0.11425","0.11425" +"GO:0006754","ATP biosynthetic process",21,15,11.35,278,"0.08118","0.11586","0.11586" +"GO:0050679","positive regulation of epithelial cell p...",7,5,3.78,799,"0.29758","0.11622","0.11622" +"GO:0001944","vasculature development",25,18,13.51,215,"0.05178","0.11655","0.11655" +"GO:0031497","chromatin assembly",11,6,5.94,1618,"0.60819","0.11750","0.11750" +"GO:2000241","regulation of reproductive process",18,13,9.73,342,"0.09243","0.11785","0.11785" +"GO:0090130","tissue migration",14,11,7.56,221,"0.05426","0.11847","0.11847" +"GO:0090132","epithelium migration",14,11,7.56,222,"0.05426","0.11847","0.11847" +"GO:0045664","regulation of neuron differentiation",48,31,25.94,341,"0.09017","0.11858","0.11858" +"GO:1901292","nucleoside phosphate catabolic process",17,12,9.19,390,"0.12855","0.11875","0.11875" +"GO:2000145","regulation of cell motility",35,22,18.91,618,"0.18869","0.11914","0.11914" +"GO:0090276","regulation of peptide hormone secretion",10,8,5.4,337,"0.08880","0.11928","0.11928" +"GO:0061448","connective tissue development",12,9,6.48,376,"0.11982","0.11931","0.11931" +"GO:1905330","regulation of morphogenesis of an epithe...",12,8,6.48,771,"0.28045","0.11931","0.11931" +"GO:0061564","axon development",51,37,27.56,47,"0.00489","0.00280","0.11984" +"GO:0032635","interleukin-6 production",3,3,1.62,512,"0.15758","0.12001","0.12001" +"GO:0000768","syncytium formation by plasma membrane f...",3,3,1.62,513,"0.15758","0.12047","0.12047" +"GO:0002090","regulation of receptor internalization",3,3,1.62,514,"0.15758","0.12047","0.12047" +"GO:0006949","syncytium formation",3,3,1.62,515,"0.15758","0.12047","0.12047" +"GO:0007520","myoblast fusion",3,3,1.62,516,"0.15758","0.12047","0.12047" +"GO:0034113","heterotypic cell-cell adhesion",3,3,1.62,517,"0.15758","0.12047","0.12047" +"GO:0034114","regulation of heterotypic cell-cell adhe...",3,3,1.62,518,"0.15758","0.12047","0.12047" +"GO:0048643","positive regulation of skeletal muscle t...",3,3,1.62,519,"0.15758","0.12047","0.12047" +"GO:0050870","positive regulation of T cell activation",3,3,1.62,520,"0.15758","0.12047","0.12047" +"GO:0140253","cell-cell fusion",3,3,1.62,521,"0.15758","0.12047","0.12047" +"GO:1901890","positive regulation of cell junction ass...",3,3,1.62,522,"0.15758","0.12047","0.12047" +"GO:1903039","positive regulation of leukocyte cell-ce...",3,3,1.62,523,"0.15758","0.12047","0.12047" +"GO:0043297","apical junction assembly",4,3,2.16,899,"0.37516","0.12149","0.12149" +"GO:0120192","tight junction assembly",4,3,2.16,900,"0.37516","0.12149","0.12149" +"GO:0120193","tight junction organization",4,3,2.16,901,"0.37516","0.12149","0.12149" +"GO:0048144","fibroblast proliferation",5,4,2.7,695,"0.24171","0.12170","0.12170" +"GO:0048145","regulation of fibroblast proliferation",5,4,2.7,696,"0.24171","0.12170","0.12170" +"GO:0034728","nucleosome organization",10,5,5.4,1730,"0.71786","0.12245","0.12245" +"GO:0018108","peptidyl-tyrosine phosphorylation",5,4,2.7,697,"0.24171","0.12261","0.12261" +"GO:0006749","glutathione metabolic process",4,3,2.16,902,"0.37516","0.12310","0.12310" +"GO:0061041","regulation of wound healing",3,2,1.62,1229,"0.56038","0.12350","0.12350" +"GO:0007613","memory",10,8,5.4,338,"0.08880","0.12374","0.12374" +"GO:0021537","telencephalon development",14,11,7.56,223,"0.05426","0.12374","0.12374" +"GO:0042391","regulation of membrane potential",17,13,9.19,209,"0.05016","0.12563","0.12563" +"GO:0003231","cardiac ventricle development",7,5,3.78,800,"0.29758","0.12610","0.12610" +"GO:0007584","response to nutrient",7,5,3.78,801,"0.29758","0.12610","0.12610" +"GO:0050657","nucleic acid transport",5,4,2.7,698,"0.24171","0.12628","0.12628" +"GO:0050658","RNA transport",5,4,2.7,699,"0.24171","0.12628","0.12628" +"GO:0051236","establishment of RNA localization",5,4,2.7,700,"0.24171","0.12628","0.12628" +"GO:0051494","negative regulation of cytoskeleton orga...",13,9,7.02,649,"0.20652","0.12659","0.12659" +"GO:0072507","divalent inorganic cation homeostasis",20,14,10.81,372,"0.11152","0.12701","0.12701" +"GO:0006368","transcription elongation from RNA polyme...",6,5,3.24,450,"0.15160","0.12709","0.12709" +"GO:0030282","bone mineralization",6,4,3.24,1033,"0.42194","0.12709","0.12709" +"GO:2000177","regulation of neural precursor cell prol...",6,5,3.24,451,"0.15160","0.12709","0.12709" +"GO:0010389","regulation of G2/M transition of mitotic...",3,2,1.62,1230,"0.56038","0.12816","0.12816" +"GO:0007605","sensory perception of sound",8,5,4.32,1091,"0.45434","0.12830","0.12830" +"GO:0031328","positive regulation of cellular biosynth...",63,35,34.04,1117,"0.45449","0.12847","0.12847" +"GO:0022407","regulation of cell-cell adhesion",7,6,3.78,348,"0.09320","0.12870","0.12870" +"GO:0045597","positive regulation of cell differentiat...",53,33,28.64,426,"0.14073","0.12890","0.12890" +"GO:0006354","DNA-templated transcription, elongation",10,7,5.4,737,"0.24549","0.12899","0.12899" +"GO:0048168","regulation of neuronal synaptic plastici...",4,3,2.16,903,"0.37516","0.12974","0.12974" +"GO:0001941","postsynaptic membrane organization",8,7,4.32,239,"0.05642","0.13009","0.13009" +"GO:0098693","regulation of synaptic vesicle cycle",8,7,4.32,240,"0.05642","0.13009","0.13009" +"GO:0000281","mitotic cytokinesis",12,8,6.48,772,"0.28045","0.13024","0.13024" +"GO:0043393","regulation of protein binding",12,9,6.48,377,"0.11982","0.13098","0.13098" +"GO:0051241","negative regulation of multicellular org...",49,32,26.48,266,"0.07192","0.13118","0.13118" +"GO:0006825","copper ion transport",3,3,1.62,524,"0.15758","0.13158","0.13158" +"GO:0035434","copper ion transmembrane transport",3,3,1.62,525,"0.15758","0.13158","0.13158" +"GO:0030866","cortical actin cytoskeleton organization",9,7,4.86,412,"0.13581","0.13349","0.13349" +"GO:0051052","regulation of DNA metabolic process",15,10,8.1,675,"0.23600","0.13370","0.13370" +"GO:0040012","regulation of locomotion",46,28,24.85,664,"0.21538","0.13506","0.13506" +"GO:0032024","positive regulation of insulin secretion",6,5,3.24,452,"0.15160","0.13671","0.13671" +"GO:0090277","positive regulation of peptide hormone s...",6,5,3.24,453,"0.15160","0.13671","0.13671" +"GO:0009308","amine metabolic process",7,5,3.78,802,"0.29758","0.13701","0.13701" +"GO:0044106","cellular amine metabolic process",7,5,3.78,803,"0.29758","0.13701","0.13701" +"GO:0050680","negative regulation of epithelial cell p...",6,4,3.24,1034,"0.42194","0.13707","0.13707" +"GO:1990138","neuron projection extension",9,7,4.86,413,"0.13581","0.13750","0.13750" +"GO:0060249","anatomical structure homeostasis",25,16,13.51,657,"0.21174","0.13898","0.13898" +"GO:0040034","regulation of development, heterochronic",5,3,2.7,1467,"0.57534","0.13927","0.13927" +"GO:0048709","oligodendrocyte differentiation",5,4,2.7,701,"0.24171","0.13927","0.13927" +"GO:1902105","regulation of leukocyte differentiation",5,4,2.7,702,"0.24171","0.13927","0.13927" +"GO:0007165","signal transduction",467,270,252.33,176,"0.03821","0.00721","0.13961" +"GO:0002009","morphogenesis of an epithelium",54,42,29.18,7,"0.00023","6.4e-05","0.14027" +"GO:0007297","ovarian follicle cell migration",4,3,2.16,904,"0.37516","0.14292","0.14292" +"GO:0009950","dorsal/ventral axis specification",4,4,2.16,322,"0.08506","0.14292","0.14292" +"GO:0031529","ruffle organization",4,3,2.16,905,"0.37516","0.14292","0.14292" +"GO:0061355","Wnt protein secretion",4,4,2.16,323,"0.08506","0.14292","0.14292" +"GO:0043009","chordate embryonic development",49,29,26.48,769,"0.27998","0.14396","0.14396" +"GO:0007265","Ras protein signal transduction",34,24,18.37,168,"0.03616","0.14427","0.14427" +"GO:0050807","regulation of synapse organization",22,16,11.89,251,"0.05828","0.14456","0.14456" +"GO:0007045","cell-substrate adherens junction assembl...",4,4,2.16,324,"0.08506","0.14613","0.14613" +"GO:0034332","adherens junction organization",4,4,2.16,325,"0.08506","0.14613","0.14613" +"GO:0034333","adherens junction assembly",4,4,2.16,326,"0.08506","0.14613","0.14613" +"GO:0048041","focal adhesion assembly",4,4,2.16,327,"0.08506","0.14613","0.14613" +"GO:0007154","cell communication",517,298,279.35,164,"0.03571","0.01034","0.14672" +"GO:0070509","calcium ion import",5,4,2.7,703,"0.24171","0.14691","0.14691" +"GO:0043244","regulation of protein complex disassembl...",8,6,4.32,634,"0.20353","0.14773","0.14773" +"GO:0098661","inorganic anion transmembrane transport",3,3,1.62,526,"0.15758","0.14905","0.14905" +"GO:0045766","positive regulation of angiogenesis",4,4,2.16,328,"0.08506","0.14986","0.14986" +"GO:1904018","positive regulation of vasculature devel...",4,4,2.16,329,"0.08506","0.14986","0.14986" +"GO:0010522","regulation of calcium ion transport into...",3,3,1.62,527,"0.15758","0.15027","0.15027" +"GO:1901615","organic hydroxy compound metabolic proce...",24,15,12.97,758,"0.26571","0.15036","0.15036" +"GO:0043112","receptor metabolic process",8,6,4.32,635,"0.20353","0.15039","0.15039" +"GO:0045596","negative regulation of cell differentiat...",38,24,20.53,580,"0.16526","0.15080","0.15080" +"GO:0006334","nucleosome assembly",9,5,4.86,1599,"0.59853","0.15118","0.15118" +"GO:0051240","positive regulation of multicellular org...",80,50,43.23,272,"0.07559","0.15141","0.15141" +"GO:0051656","establishment of organelle localization",32,19,17.29,848,"0.33467","0.15164","0.15164" +"GO:0010557","positive regulation of macromolecule bio...",61,34,32.96,1088,"0.44548","0.15380","0.15380" +"GO:0006826","iron ion transport",4,3,2.16,906,"0.37516","0.15415","0.15415" +"GO:0007111","meiosis II cytokinesis",3,3,1.62,528,"0.15758","0.15440","0.15440" +"GO:0033206","meiotic cytokinesis",3,3,1.62,529,"0.15758","0.15440","0.15440" +"GO:0061983","meiosis II cell cycle process",3,3,1.62,530,"0.15758","0.15440","0.15440" +"GO:0014706","striated muscle tissue development",35,22,18.91,619,"0.18869","0.15460","0.15460" +"GO:0044839","cell cycle G2/M phase transition",6,4,3.24,1035,"0.42194","0.15460","0.15460" +"GO:0008045","motor neuron axon guidance",3,3,1.62,531,"0.15758","0.15524","0.15524" +"GO:0072553","terminal button organization",3,3,1.62,532,"0.15758","0.15524","0.15524" +"GO:0006171","cAMP biosynthetic process",3,2,1.62,1231,"0.56038","0.15636","0.15636" +"GO:0046058","cAMP metabolic process",3,2,1.62,1232,"0.56038","0.15636","0.15636" +"GO:0001934","positive regulation of protein phosphory...",29,19,15.67,429,"0.14416","0.15639","0.15639" +"GO:0002062","chondrocyte differentiation",5,4,2.7,704,"0.24171","0.15648","0.15648" +"GO:0010634","positive regulation of epithelial cell m...",5,4,2.7,705,"0.24171","0.15648","0.15648" +"GO:0010669","epithelial structure maintenance",5,4,2.7,706,"0.24171","0.15648","0.15648" +"GO:0022404","molting cycle process",5,4,2.7,707,"0.24171","0.15648","0.15648" +"GO:0022405","hair cycle process",5,4,2.7,708,"0.24171","0.15648","0.15648" +"GO:0022612","gland morphogenesis",5,4,2.7,709,"0.24171","0.15648","0.15648" +"GO:0030879","mammary gland development",5,4,2.7,710,"0.24171","0.15648","0.15648" +"GO:0032330","regulation of chondrocyte differentiatio...",5,4,2.7,711,"0.24171","0.15648","0.15648" +"GO:0042552","myelination",5,4,2.7,712,"0.24171","0.15648","0.15648" +"GO:0042633","hair cycle",5,4,2.7,713,"0.24171","0.15648","0.15648" +"GO:0061035","regulation of cartilage development",5,4,2.7,714,"0.24171","0.15648","0.15648" +"GO:0000910","cytokinesis",17,10,9.19,1084,"0.44184","0.15674","0.15674" +"GO:0032956","regulation of actin cytoskeleton organiz...",31,22,16.75,179,"0.04077","0.00341","0.15685" +"GO:0008593","regulation of Notch signaling pathway",9,5,4.86,1600,"0.59853","0.15696","0.15696" +"GO:0031589","cell-substrate adhesion",12,11,6.48,60,"0.00684","0.00382","0.15761" +"GO:0003012","muscle system process",28,18,15.13,616,"0.18336","0.15788","0.15788" +"GO:0072091","regulation of stem cell proliferation",6,4,3.24,1036,"0.42194","0.15818","0.15818" +"GO:0006582","melanin metabolic process",3,3,1.62,533,"0.15758","0.15862","0.15862" +"GO:0019896","axonal transport of mitochondrion",3,3,1.62,534,"0.15758","0.15862","0.15862" +"GO:0034643","establishment of mitochondrion localizat...",3,3,1.62,535,"0.15758","0.15862","0.15862" +"GO:0035006","melanization defense response",3,3,1.62,536,"0.15758","0.15862","0.15862" +"GO:0035010","encapsulation of foreign target",3,3,1.62,537,"0.15758","0.15862","0.15862" +"GO:0035011","melanotic encapsulation of foreign targe...",3,3,1.62,538,"0.15758","0.15862","0.15862" +"GO:0047497","mitochondrion transport along microtubul...",3,3,1.62,539,"0.15758","0.15862","0.15862" +"GO:0051654","establishment of mitochondrion localizat...",3,3,1.62,540,"0.15758","0.15862","0.15862" +"GO:0090162","establishment of epithelial cell polarit...",3,3,1.62,541,"0.15758","0.15862","0.15862" +"GO:0098930","axonal transport",3,3,1.62,542,"0.15758","0.15862","0.15862" +"GO:0006090","pyruvate metabolic process",10,7,5.4,738,"0.24549","0.15937","0.15937" +"GO:0002224","toll-like receptor signaling pathway",3,3,1.62,543,"0.15758","0.15990","0.15990" +"GO:0061572","actin filament bundle organization",9,7,4.86,414,"0.13581","0.16007","0.16007" +"GO:0019233","sensory perception of pain",6,5,3.24,454,"0.15160","0.16019","0.16019" +"GO:0048468","cell development",171,99,92.4,582,"0.16585","0.04911","0.16055" +"GO:0032456","endocytic recycling",9,6,4.86,852,"0.33898","0.16231","0.16231" +"GO:0001503","ossification",15,10,8.1,676,"0.23600","0.16266","0.16266" +"GO:0030466","chromatin silencing at silent mating-typ...",3,2,1.62,1233,"0.56038","0.16320","0.16320" +"GO:0031938","regulation of chromatin silencing at tel...",3,2,1.62,1234,"0.56038","0.16320","0.16320" +"GO:0031939","negative regulation of chromatin silenci...",3,2,1.62,1235,"0.56038","0.16320","0.16320" +"GO:0061186","negative regulation of chromatin silenci...",3,2,1.62,1236,"0.56038","0.16320","0.16320" +"GO:0090054","regulation of chromatin silencing at sil...",3,2,1.62,1237,"0.56038","0.16320","0.16320" +"GO:0051606","detection of stimulus",18,12,9.73,627,"0.20080","0.16336","0.16336" +"GO:0009312","oligosaccharide biosynthetic process",4,4,2.16,330,"0.08506","0.16450","0.16450" +"GO:0016266","O-glycan processing",4,4,2.16,331,"0.08506","0.16450","0.16450" +"GO:0048666","neuron development",105,67,56.73,126,"0.02468","0.03234","0.16502" +"GO:0090175","regulation of establishment of planar po...",7,5,3.78,804,"0.29758","0.16568","0.16568" +"GO:0009798","axis specification",13,10,7.02,284,"0.08129","0.16633","0.16633" +"GO:0045214","sarcomere organization",9,7,4.86,415,"0.13581","0.16635","0.16635" +"GO:0032091","negative regulation of protein binding",8,5,4.32,1092,"0.45434","0.16708","0.16708" +"GO:0050804","modulation of chemical synaptic transmis...",24,17,12.97,263,"0.07136","0.16728","0.16728" +"GO:0099177","regulation of trans-synaptic signaling",24,17,12.97,264,"0.07136","0.16728","0.16728" +"GO:0006576","cellular biogenic amine metabolic proces...",5,4,2.7,715,"0.24171","0.16764","0.16764" +"GO:0021551","central nervous system morphogenesis",3,3,1.62,544,"0.15758","0.16774","0.16774" +"GO:0007369","gastrulation",11,8,5.94,595,"0.17336","0.16922","0.16922" +"GO:0023061","signal release",26,18,14.05,288,"0.08475","0.16930","0.16930" +"GO:0007164","establishment of tissue polarity",15,13,8.1,78,"0.00861","0.00039","0.16940" +"GO:0010631","epithelial cell migration",13,10,7.02,285,"0.08129","0.17025","0.17025" +"GO:0032411","positive regulation of transporter activ...",8,3,4.32,2219,"0.90250","0.17072","0.17072" +"GO:0032414","positive regulation of ion transmembrane...",8,3,4.32,2220,"0.90250","0.17072","0.17072" +"GO:0034767","positive regulation of ion transmembrane...",8,3,4.32,2221,"0.90250","0.17072","0.17072" +"GO:1904064","positive regulation of cation transmembr...",8,3,4.32,2222,"0.90250","0.17072","0.17072" +"GO:0001701","in utero embryonic development",25,16,13.51,658,"0.21174","0.17196","0.17196" +"GO:0000041","transition metal ion transport",8,6,4.32,636,"0.20353","0.17219","0.17219" +"GO:0018243","protein O-linked glycosylation via threo...",3,3,1.62,545,"0.15758","0.17251","0.17251" +"GO:0032092","positive regulation of protein binding",3,3,1.62,546,"0.15758","0.17311","0.17311" +"GO:0043405","regulation of MAP kinase activity",13,10,7.02,286,"0.08129","0.17380","0.17380" +"GO:0045860","positive regulation of protein kinase ac...",13,10,7.02,287,"0.08129","0.17380","0.17380" +"GO:0016358","dendrite development",24,17,12.97,265,"0.07136","0.17451","0.17451" +"GO:0050954","sensory perception of mechanical stimulu...",10,6,5.4,1132,"0.47921","0.17470","0.17470" +"GO:0007350","blastoderm segmentation",4,3,2.16,907,"0.37516","0.17481","0.17481" +"GO:0006939","smooth muscle contraction",4,3,2.16,908,"0.37516","0.17693","0.17693" +"GO:0006940","regulation of smooth muscle contraction",4,3,2.16,909,"0.37516","0.17693","0.17693" +"GO:0045933","positive regulation of muscle contractio...",4,3,2.16,910,"0.37516","0.17693","0.17693" +"GO:0051147","regulation of muscle cell differentiatio...",10,7,5.4,739,"0.24549","0.17722","0.17722" +"GO:0051153","regulation of striated muscle cell diffe...",10,7,5.4,740,"0.24549","0.17722","0.17722" +"GO:0019674","NAD metabolic process",3,2,1.62,1238,"0.56038","0.17846","0.17846" +"GO:0051881","regulation of mitochondrial membrane pot...",3,3,1.62,547,"0.15758","0.17861","0.17861" +"GO:0018991","oviposition",7,5,3.78,805,"0.29758","0.17909","0.17909" +"GO:0009994","oocyte differentiation",7,6,3.78,349,"0.09320","0.17930","0.17930" +"GO:0030856","regulation of epithelial cell differenti...",5,4,2.7,716,"0.24171","0.17936","0.17936" +"GO:0061326","renal tubule development",5,4,2.7,717,"0.24171","0.17936","0.17936" +"GO:0048588","developmental cell growth",12,8,6.48,773,"0.28045","0.17997","0.17997" +"GO:0051046","regulation of secretion",26,22,14.05,20,"0.00103","0.00200","0.18059" +"GO:0031646","positive regulation of neurological syst...",5,3,2.7,1468,"0.57534","0.18238","0.18238" +"GO:0009792","embryo development ending in birth or eg...",57,33,30.8,842,"0.32482","0.18498","0.18498" +"GO:0043542","endothelial cell migration",7,6,3.78,350,"0.09320","0.18504","0.18504" +"GO:0006275","regulation of DNA replication",4,3,2.16,911,"0.37516","0.18558","0.18558" +"GO:0051053","negative regulation of DNA metabolic pro...",4,3,2.16,912,"0.37516","0.18558","0.18558" +"GO:0042147","retrograde transport, endosome to Golgi",14,9,7.56,834,"0.31031","0.18597","0.18597" +"GO:0046887","positive regulation of hormone secretion",8,6,4.32,637,"0.20353","0.18662","0.18662" +"GO:0019932","second-messenger-mediated signaling",19,12,10.27,784,"0.28637","0.18717","0.18717" +"GO:0048515","spermatid differentiation",22,11,11.89,1774,"0.72516","0.18718","0.18718" +"GO:0030042","actin filament depolymerization",7,5,3.78,806,"0.29758","0.18775","0.18775" +"GO:0030431","sleep",4,2,2.16,1838,"0.74559","0.18779","0.18779" +"GO:0098660","inorganic ion transmembrane transport",57,38,30.8,163,"0.03470","0.09240","0.18808" +"GO:0050878","regulation of body fluid levels",17,14,9.19,105,"0.01492","0.01563","0.18818" +"GO:0001708","cell fate specification",7,5,3.78,807,"0.29758","0.18891","0.18891" +"GO:0060485","mesenchyme development",13,9,7.02,650,"0.20652","0.18967","0.18967" +"GO:0030073","insulin secretion",9,7,4.86,416,"0.13581","0.19003","0.19003" +"GO:0050796","regulation of insulin secretion",9,7,4.86,417,"0.13581","0.19003","0.19003" +"GO:0043951","negative regulation of cAMP-mediated sig...",6,4,3.24,1037,"0.42194","0.19010","0.19010" +"GO:0045765","regulation of angiogenesis",7,6,3.78,351,"0.09320","0.19017","0.19017" +"GO:1901342","regulation of vasculature development",7,6,3.78,352,"0.09320","0.19017","0.19017" +"GO:0072006","nephron development",9,6,4.86,853,"0.33898","0.19041","0.19041" +"GO:0050863","regulation of T cell activation",9,7,4.86,418,"0.13581","0.19087","0.19087" +"GO:0032878","regulation of establishment or maintenan...",3,3,1.62,548,"0.15758","0.19095","0.19095" +"GO:0070528","protein kinase C signaling",3,3,1.62,549,"0.15758","0.19095","0.19095" +"GO:0072375","medium-term memory",3,3,1.62,550,"0.15758","0.19095","0.19095" +"GO:2000114","regulation of establishment of cell pola...",3,3,1.62,551,"0.15758","0.19095","0.19095" +"GO:0009124","nucleoside monophosphate biosynthetic pr...",22,15,11.89,395,"0.13026","0.19100","0.19100" +"GO:0009127","purine nucleoside monophosphate biosynth...",22,15,11.89,396,"0.13026","0.19100","0.19100" +"GO:0009142","nucleoside triphosphate biosynthetic pro...",22,15,11.89,397,"0.13026","0.19100","0.19100" +"GO:0009145","purine nucleoside triphosphate biosynthe...",22,15,11.89,398,"0.13026","0.19100","0.19100" +"GO:0009156","ribonucleoside monophosphate biosyntheti...",22,15,11.89,399,"0.13026","0.19100","0.19100" +"GO:0009168","purine ribonucleoside monophosphate bios...",22,15,11.89,400,"0.13026","0.19100","0.19100" +"GO:0009201","ribonucleoside triphosphate biosynthetic...",22,15,11.89,401,"0.13026","0.19100","0.19100" +"GO:0009206","purine ribonucleoside triphosphate biosy...",22,15,11.89,402,"0.13026","0.19100","0.19100" +"GO:0017145","stem cell division",6,3,3.24,1778,"0.72874","0.19170","0.19170" +"GO:0030001","metal ion transport",86,48,46.47,1016,"0.41118","0.07639","0.19248" +"GO:0060563","neuroepithelial cell differentiation",4,3,2.16,913,"0.37516","0.19283","0.19283" +"GO:0008355","olfactory learning",3,3,1.62,552,"0.15758","0.19388","0.19388" +"GO:0042048","olfactory behavior",3,3,1.62,553,"0.15758","0.19388","0.19388" +"GO:0016482","cytosolic transport",21,14,11.35,591,"0.17219","0.19389","0.19389" +"GO:0051094","positive regulation of developmental pro...",74,46,39.98,355,"0.09519","0.19412","0.19412" +"GO:0001838","embryonic epithelial tube formation",14,8,7.56,1196,"0.51668","0.19589","0.19589" +"GO:0021915","neural tube development",14,9,7.56,835,"0.31031","0.19589","0.19589" +"GO:0072175","epithelial tube formation",14,8,7.56,1197,"0.51668","0.19589","0.19589" +"GO:0051963","regulation of synapse assembly",9,7,4.86,419,"0.13581","0.19597","0.19597" +"GO:0051347","positive regulation of transferase activ...",18,13,9.73,343,"0.09243","0.19676","0.19676" +"GO:0051588","regulation of neurotransmitter transport",3,3,1.62,554,"0.15758","0.19983","0.19983" +"GO:0099054","presynapse assembly",7,6,3.78,353,"0.09320","0.19997","0.19997" +"GO:0045893","positive regulation of transcription, DN...",58,34,31.34,779,"0.28320","0.19998","0.19998" +"GO:1902680","positive regulation of RNA biosynthetic ...",58,34,31.34,780,"0.28320","0.19998","0.19998" +"GO:1903508","positive regulation of nucleic acid-temp...",58,34,31.34,781,"0.28320","0.19998","0.19998" +"GO:0006720","isoprenoid metabolic process",10,6,5.4,1133,"0.47921","0.20009","0.20009" +"GO:2000243","positive regulation of reproductive proc...",9,6,4.86,854,"0.33898","0.20039","0.20039" +"GO:0072330","monocarboxylic acid biosynthetic process",20,12,10.81,998,"0.37993","0.20059","0.20059" +"GO:1902903","regulation of supramolecular fiber organ...",34,22,18.37,424,"0.13887","0.01463","0.20165" +"GO:0001667","ameboidal-type cell migration",15,11,8.1,366,"0.10528","0.20189","0.20189" +"GO:0071478","cellular response to radiation",10,7,5.4,741,"0.24549","0.20285","0.20285" +"GO:0071709","membrane assembly",10,8,5.4,339,"0.08880","0.20378","0.20378" +"GO:0007517","muscle organ development",38,22,20.53,995,"0.37717","0.20470","0.20470" +"GO:0019725","cellular homeostasis",47,26,25.4,1153,"0.48920","0.20471","0.20471" +"GO:0000003","reproduction",116,65,62.68,886,"0.36485","0.20482","0.20482" +"GO:0051224","negative regulation of protein transport",5,4,2.7,718,"0.24171","0.20517","0.20517" +"GO:1904950","negative regulation of establishment of ...",5,4,2.7,719,"0.24171","0.20517","0.20517" +"GO:0042330","taxis",36,27,19.45,70,"0.00768","0.00661","0.20606" +"GO:0035051","cardiocyte differentiation",13,8,7.02,1011,"0.39876","0.20661","0.20661" +"GO:0009953","dorsal/ventral pattern formation",9,7,4.86,420,"0.13581","0.20684","0.20684" +"GO:0050803","regulation of synapse structure or activ...",23,16,12.43,356,"0.09708","0.20710","0.20710" +"GO:0007409","axonogenesis",42,31,22.69,57,"0.00649","0.00475","0.20716" +"GO:0001892","embryonic placenta development",4,3,2.16,914,"0.37516","0.20790","0.20790" +"GO:0048762","mesenchymal cell differentiation",11,8,5.94,596,"0.17336","0.20790","0.20790" +"GO:0030336","negative regulation of cell migration",12,7,6.48,1165,"0.49949","0.20884","0.20884" +"GO:0051271","negative regulation of cellular componen...",12,7,6.48,1166,"0.49949","0.20884","0.20884" +"GO:2000146","negative regulation of cell motility",12,7,6.48,1167,"0.49949","0.20884","0.20884" +"GO:0003158","endothelium development",3,3,1.62,555,"0.15758","0.20934","0.20934" +"GO:0045446","endothelial cell differentiation",3,3,1.62,556,"0.15758","0.20934","0.20934" +"GO:1905207","regulation of cardiocyte differentiation",3,2,1.62,1239,"0.56038","0.20934","0.20934" +"GO:0035150","regulation of tube size",8,6,4.32,638,"0.20353","0.21025","0.21025" +"GO:0030278","regulation of ossification",10,6,5.4,1134,"0.47921","0.21035","0.21035" +"GO:0042303","molting cycle",8,6,4.32,639,"0.20353","0.21110","0.21110" +"GO:0043270","positive regulation of ion transport",13,7,7.02,1639,"0.61700","0.21126","0.21126" +"GO:0031623","receptor internalization",5,4,2.7,720,"0.24171","0.21184","0.21184" +"GO:0048259","regulation of receptor-mediated endocyto...",5,4,2.7,721,"0.24171","0.21184","0.21184" +"GO:0051188","cofactor biosynthetic process",23,13,12.43,1155,"0.49013","0.21255","0.21255" +"GO:0009952","anterior/posterior pattern specification",13,9,7.02,651,"0.20652","0.21276","0.21276" +"GO:0021543","pallium development",12,9,6.48,378,"0.11982","0.21335","0.21335" +"GO:0001568","blood vessel development",23,16,12.43,357,"0.09708","0.21356","0.21356" +"GO:0051056","regulation of small GTPase mediated sign...",35,24,18.91,249,"0.05709","0.21378","0.21378" +"GO:0051965","positive regulation of synapse assembly",4,3,2.16,915,"0.37516","0.21451","0.21451" +"GO:0071569","protein ufmylation",3,2,1.62,1240,"0.56038","0.21508","0.21508" +"GO:1990564","protein polyufmylation",3,2,1.62,1241,"0.56038","0.21508","0.21508" +"GO:1990592","protein K69-linked ufmylation",3,2,1.62,1242,"0.56038","0.21508","0.21508" +"GO:0042113","B cell activation",5,4,2.7,722,"0.24171","0.21522","0.21522" +"GO:0048489","synaptic vesicle transport",9,5,4.86,1601,"0.59853","0.21720","0.21720" +"GO:0097480","establishment of synaptic vesicle locali...",9,5,4.86,1602,"0.59853","0.21720","0.21720" +"GO:0034109","homotypic cell-cell adhesion",9,8,4.86,160,"0.03374","0.00188","0.21797" +"GO:0035023","regulation of Rho protein signal transdu...",21,15,11.35,279,"0.08118","0.21922","0.21922" +"GO:0051338","regulation of transferase activity",37,24,19.99,384,"0.12132","0.21935","0.21935" +"GO:0016310","phosphorylation",249,135,134.54,1180,"0.50273","0.21945","0.21945" +"GO:0002682","regulation of immune system process",51,31,27.56,628,"0.20210","0.22078","0.22078" +"GO:0009581","detection of external stimulus",15,10,8.1,677,"0.23600","0.22136","0.22136" +"GO:0009582","detection of abiotic stimulus",15,10,8.1,678,"0.23600","0.22136","0.22136" +"GO:0006360","transcription by RNA polymerase I",3,3,1.62,557,"0.15758","0.22165","0.22165" +"GO:0035518","histone H2A monoubiquitination",3,3,1.62,558,"0.15758","0.22165","0.22165" +"GO:0007498","mesoderm development",11,8,5.94,597,"0.17336","0.22167","0.22167" +"GO:0050773","regulation of dendrite development",18,13,9.73,344,"0.09243","0.22217","0.22217" +"GO:0048562","embryonic organ morphogenesis",23,14,12.43,845,"0.32819","0.22296","0.22296" +"GO:0043410","positive regulation of MAPK cascade",15,11,8.1,367,"0.10528","0.22337","0.22337" +"GO:0002521","leukocyte differentiation",9,6,4.86,855,"0.33898","0.22350","0.22350" +"GO:0048147","negative regulation of fibroblast prolif...",3,2,1.62,1243,"0.56038","0.22417","0.22417" +"GO:2000278","regulation of DNA biosynthetic process",3,2,1.62,1244,"0.56038","0.22417","0.22417" +"GO:0055072","iron ion homeostasis",4,3,2.16,916,"0.37516","0.22438","0.22438" +"GO:0032102","negative regulation of response to exter...",7,6,3.78,354,"0.09320","0.22447","0.22447" +"GO:0034243","regulation of transcription elongation f...",3,3,1.62,559,"0.15758","0.22543","0.22543" +"GO:0010721","negative regulation of cell development",17,11,9.19,756,"0.26244","0.22556","0.22556" +"GO:0048675","axon extension",8,6,4.32,640,"0.20353","0.22768","0.22768" +"GO:0045445","myoblast differentiation",12,8,6.48,774,"0.28045","0.22840","0.22840" +"GO:0045661","regulation of myoblast differentiation",12,8,6.48,775,"0.28045","0.22840","0.22840" +"GO:0007635","chemosensory behavior",6,4,3.24,1038,"0.42194","0.22911","0.22911" +"GO:0046662","regulation of oviposition",6,4,3.24,1039,"0.42194","0.22911","0.22911" +"GO:0006081","cellular aldehyde metabolic process",6,4,3.24,1040,"0.42194","0.22963","0.22963" +"GO:0010842","retina layer formation",4,3,2.16,917,"0.37516","0.23007","0.23007" +"GO:0006796","phosphate-containing compound metabolic ...",375,199,202.62,1688,"0.67877","0.23086","0.23086" +"GO:0008064","regulation of actin polymerization or de...",23,16,12.43,358,"0.09708","0.01646","0.23170" +"GO:0030832","regulation of actin filament length",23,16,12.43,359,"0.09708","0.01646","0.23170" +"GO:0033500","carbohydrate homeostasis",6,4,3.24,1041,"0.42194","0.23197","0.23197" +"GO:0042593","glucose homeostasis",6,4,3.24,1042,"0.42194","0.23197","0.23197" +"GO:0043534","blood vessel endothelial cell migration",6,5,3.24,455,"0.15160","0.23197","0.23197" +"GO:0007281","germ cell development",38,21,20.53,1184,"0.50594","0.23200","0.23200" +"GO:0007310","oocyte dorsal/ventral axis specification",3,3,1.62,560,"0.15758","0.23258","0.23258" +"GO:0042982","amyloid precursor protein metabolic proc...",3,3,1.62,561,"0.15758","0.23258","0.23258" +"GO:0042987","amyloid precursor protein catabolic proc...",3,3,1.62,562,"0.15758","0.23258","0.23258" +"GO:1902991","regulation of amyloid precursor protein ...",3,3,1.62,563,"0.15758","0.23258","0.23258" +"GO:0009165","nucleotide biosynthetic process",42,25,22.69,786,"0.28757","0.23270","0.23270" +"GO:1901293","nucleoside phosphate biosynthetic proces...",42,25,22.69,787,"0.28757","0.23270","0.23270" +"GO:0030168","platelet activation",9,8,4.86,161,"0.03374","0.00188","0.23277" +"GO:0040011","locomotion",106,64,57.27,371,"0.10712","0.09158","0.23537" +"GO:0006493","protein O-linked glycosylation",15,11,8.1,368,"0.10528","0.23612","0.23612" +"GO:0030032","lamellipodium assembly",3,3,1.62,564,"0.15758","0.23649","0.23649" +"GO:0097581","lamellipodium organization",3,3,1.62,565,"0.15758","0.23649","0.23649" +"GO:0018105","peptidyl-serine phosphorylation",3,3,1.62,566,"0.15758","0.23705","0.23705" +"GO:0033135","regulation of peptidyl-serine phosphoryl...",3,3,1.62,567,"0.15758","0.23705","0.23705" +"GO:0033138","positive regulation of peptidyl-serine p...",3,3,1.62,568,"0.15758","0.23705","0.23705" +"GO:0003013","circulatory system process",19,11,10.27,1119,"0.45962","0.23711","0.23711" +"GO:0008015","blood circulation",19,11,10.27,1120,"0.45962","0.23711","0.23711" +"GO:0030834","regulation of actin filament depolymeriz...",6,4,3.24,1043,"0.42194","0.23857","0.23857" +"GO:0030835","negative regulation of actin filament de...",6,4,3.24,1044,"0.42194","0.23857","0.23857" +"GO:0030837","negative regulation of actin filament po...",6,4,3.24,1045,"0.42194","0.23857","0.23857" +"GO:0043242","negative regulation of protein complex d...",6,4,3.24,1046,"0.42194","0.23857","0.23857" +"GO:1901879","regulation of protein depolymerization",6,4,3.24,1047,"0.42194","0.23857","0.23857" +"GO:1901880","negative regulation of protein depolymer...",6,4,3.24,1048,"0.42194","0.23857","0.23857" +"GO:0006812","cation transport",135,81,72.94,340,"0.08942","0.17009","0.23858" +"GO:1902369","negative regulation of RNA catabolic pro...",3,3,1.62,569,"0.15758","0.24100","0.24100" +"GO:1902373","negative regulation of mRNA catabolic pr...",3,3,1.62,570,"0.15758","0.24100","0.24100" +"GO:1903312","negative regulation of mRNA metabolic pr...",3,3,1.62,571,"0.15758","0.24100","0.24100" +"GO:2000178","negative regulation of neural precursor ...",3,3,1.62,572,"0.15758","0.24100","0.24100" +"GO:1903522","regulation of blood circulation",17,10,9.19,1085,"0.44184","0.24343","0.24343" +"GO:0048806","genitalia development",4,3,2.16,918,"0.37516","0.24369","0.24369" +"GO:0046883","regulation of hormone secretion",11,8,5.94,598,"0.17336","0.24394","0.24394" +"GO:0030534","adult behavior",11,8,5.94,599,"0.17336","0.24504","0.24504" +"GO:0042110","T cell activation",11,8,5.94,600,"0.17336","0.24504","0.24504" +"GO:0042471","ear morphogenesis",4,3,2.16,919,"0.37516","0.24634","0.24634" +"GO:0042472","inner ear morphogenesis",4,3,2.16,920,"0.37516","0.24634","0.24634" +"GO:1902749","regulation of cell cycle G2/M phase tran...",4,3,2.16,921,"0.37516","0.24634","0.24634" +"GO:0051100","negative regulation of binding",9,6,4.86,856,"0.33898","0.24676","0.24676" +"GO:0003015","heart process",15,9,8.1,1022,"0.42178","0.24805","0.24805" +"GO:0008016","regulation of heart contraction",15,9,8.1,1023,"0.42178","0.24805","0.24805" +"GO:0060047","heart contraction",15,9,8.1,1024,"0.42178","0.24805","0.24805" +"GO:0040007","growth",70,41,37.82,753,"0.25812","0.24835","0.24835" +"GO:0051668","localization within membrane",15,11,8.1,369,"0.10528","0.24848","0.24848" +"GO:0022414","reproductive process",108,58,58.35,1455,"0.56789","0.24884","0.24884" +"GO:0045944","positive regulation of transcription by ...",40,25,21.61,614,"0.17814","0.24961","0.24961" +"GO:0006260","DNA replication",16,9,8.65,1208,"0.53167","0.25070","0.25070" +"GO:0006261","DNA-dependent DNA replication",9,5,4.86,1603,"0.59853","0.25078","0.25078" +"GO:0006164","purine nucleotide biosynthetic process",33,20,17.83,763,"0.27998","0.25259","0.25259" +"GO:0009152","purine ribonucleotide biosynthetic proce...",33,20,17.83,764,"0.27998","0.25259","0.25259" +"GO:0009260","ribonucleotide biosynthetic process",33,20,17.83,765,"0.27998","0.25259","0.25259" +"GO:0046390","ribose phosphate biosynthetic process",33,20,17.83,766,"0.27998","0.25259","0.25259" +"GO:0043966","histone H3 acetylation",5,3,2.7,1469,"0.57534","0.25260","0.25260" +"GO:0035262","gonad morphogenesis",3,2,1.62,1245,"0.56038","0.25293","0.25293" +"GO:0001942","hair follicle development",4,3,2.16,922,"0.37516","0.25306","0.25306" +"GO:0003413","chondrocyte differentiation involved in ...",4,3,2.16,923,"0.37516","0.25306","0.25306" +"GO:0014015","positive regulation of gliogenesis",4,3,2.16,924,"0.37516","0.25306","0.25306" +"GO:0021782","glial cell development",4,3,2.16,925,"0.37516","0.25306","0.25306" +"GO:0030500","regulation of bone mineralization",4,2,2.16,1839,"0.74559","0.25306","0.25306" +"GO:0030903","notochord development",4,3,2.16,926,"0.37516","0.25306","0.25306" +"GO:0032332","positive regulation of chondrocyte diffe...",4,3,2.16,927,"0.37516","0.25306","0.25306" +"GO:0035019","somatic stem cell population maintenance",4,3,2.16,928,"0.37516","0.25306","0.25306" +"GO:0035272","exocrine system development",4,3,2.16,929,"0.37516","0.25306","0.25306" +"GO:0060425","lung morphogenesis",4,3,2.16,930,"0.37516","0.25306","0.25306" +"GO:0060993","kidney morphogenesis",4,3,2.16,931,"0.37516","0.25306","0.25306" +"GO:0061036","positive regulation of cartilage develop...",4,3,2.16,932,"0.37516","0.25306","0.25306" +"GO:0061614","pri-miRNA transcription by RNA polymeras...",4,3,2.16,933,"0.37516","0.25306","0.25306" +"GO:0070555","response to interleukin-1",4,3,2.16,934,"0.37516","0.25306","0.25306" +"GO:0071260","cellular response to mechanical stimulus",4,3,2.16,935,"0.37516","0.25306","0.25306" +"GO:0071347","cellular response to interleukin-1",4,3,2.16,936,"0.37516","0.25306","0.25306" +"GO:0072080","nephron tubule development",4,3,2.16,937,"0.37516","0.25306","0.25306" +"GO:0072497","mesenchymal stem cell differentiation",4,3,2.16,938,"0.37516","0.25306","0.25306" +"GO:0098773","skin epidermis development",4,3,2.16,939,"0.37516","0.25306","0.25306" +"GO:1902893","regulation of pri-miRNA transcription by...",4,3,2.16,940,"0.37516","0.25306","0.25306" +"GO:1903053","regulation of extracellular matrix organ...",4,3,2.16,941,"0.37516","0.25306","0.25306" +"GO:1905332","positive regulation of morphogenesis of ...",4,3,2.16,942,"0.37516","0.25306","0.25306" +"GO:2000738","positive regulation of stem cell differe...",4,3,2.16,943,"0.37516","0.25306","0.25306" +"GO:2000739","regulation of mesenchymal stem cell diff...",4,3,2.16,944,"0.37516","0.25306","0.25306" +"GO:2000741","positive regulation of mesenchymal stem ...",4,3,2.16,945,"0.37516","0.25306","0.25306" +"GO:1901659","glycosyl compound biosynthetic process",5,3,2.7,1470,"0.57534","0.25336","0.25336" +"GO:0016053","organic acid biosynthetic process",26,15,14.05,1078,"0.43135","0.25445","0.25445" +"GO:0046394","carboxylic acid biosynthetic process",26,15,14.05,1079,"0.43135","0.25445","0.25445" +"GO:0090066","regulation of anatomical structure size",43,29,23.23,211,"0.05076","0.02148","0.25536" +"GO:0051234","establishment of localization",586,343,316.63,61,"0.00698","0.02103","0.25580" +"GO:0019220","regulation of phosphate metabolic proces...",71,42,38.36,668,"0.22474","0.25812","0.25812" +"GO:0051174","regulation of phosphorus metabolic proce...",71,42,38.36,669,"0.22474","0.25812","0.25812" +"GO:0048706","embryonic skeletal system development",7,5,3.78,808,"0.29758","0.25861","0.25861" +"GO:0006465","signal peptide processing",4,3,2.16,946,"0.37516","0.25920","0.25920" +"GO:0090068","positive regulation of cell cycle proces...",11,6,5.94,1619,"0.60819","0.26035","0.26035" +"GO:0048608","reproductive structure development",31,17,16.75,1212,"0.53792","0.26051","0.26051" +"GO:0010632","regulation of epithelial cell migration",8,6,4.32,641,"0.20353","0.26140","0.26140" +"GO:0043588","skin development",8,6,4.32,642,"0.20353","0.26140","0.26140" +"GO:0055006","cardiac cell development",8,5,4.32,1093,"0.45434","0.26140","0.26140" +"GO:0048870","cell motility",61,35,32.96,867,"0.34553","0.26258","0.26258" +"GO:0051674","localization of cell",61,35,32.96,868,"0.34553","0.26258","0.26258" +"GO:0006793","phosphorus metabolic process",377,199,203.7,1751,"0.72052","0.26401","0.26401" +"GO:0050730","regulation of peptidyl-tyrosine phosphor...",4,3,2.16,947,"0.37516","0.26404","0.26404" +"GO:0010831","positive regulation of myotube different...",7,5,3.78,809,"0.29758","0.26437","0.26437" +"GO:0042592","homeostatic process",97,53,52.41,1159,"0.49368","0.26566","0.26566" +"GO:0050770","regulation of axonogenesis",10,7,5.4,742,"0.24549","0.26585","0.26585" +"GO:0042060","wound healing",25,19,13.51,117,"0.02004","0.04308","0.26635" +"GO:0002831","regulation of response to biotic stimulu...",4,3,2.16,948,"0.37516","0.26683","0.26683" +"GO:0018242","protein O-linked glycosylation via serin...",4,3,2.16,949,"0.37516","0.26683","0.26683" +"GO:0042052","rhabdomere development",4,3,2.16,950,"0.37516","0.26683","0.26683" +"GO:0032784","regulation of DNA-templated transcriptio...",6,5,3.24,456,"0.15160","0.26702","0.26702" +"GO:0048580","regulation of post-embryonic development",5,3,2.7,1471,"0.57534","0.26723","0.26723" +"GO:0110020","regulation of actomyosin structure organ...",5,4,2.7,723,"0.24171","0.26723","0.26723" +"GO:0051650","establishment of vesicle localization",19,10,10.27,1664,"0.63985","0.26790","0.26790" +"GO:0006066","alcohol metabolic process",10,6,5.4,1135,"0.47921","0.26807","0.26807" +"GO:0043934","sporulation",6,4,3.24,1049,"0.42194","0.27017","0.27017" +"GO:0051187","cofactor catabolic process",5,3,2.7,1472,"0.57534","0.27038","0.27038" +"GO:0010975","regulation of neuron projection developm...",36,23,19.45,459,"0.15216","0.27094","0.27094" +"GO:0050727","regulation of inflammatory response",3,3,1.62,573,"0.15758","0.27172","0.27172" +"GO:0050953","sensory perception of light stimulus",11,6,5.94,1620,"0.60819","0.27218","0.27218" +"GO:0032787","monocarboxylic acid metabolic process",35,16,18.91,2186,"0.87790","0.27254","0.27254" +"GO:0001649","osteoblast differentiation",9,5,4.86,1604,"0.59853","0.27448","0.27448" +"GO:0044091","membrane biogenesis",12,9,6.48,379,"0.11982","0.27474","0.27474" +"GO:0050806","positive regulation of synaptic transmis...",12,9,6.48,380,"0.11982","0.27474","0.27474" +"GO:0006979","response to oxidative stress",38,24,20.53,581,"0.16526","0.27559","0.27559" +"GO:0018210","peptidyl-threonine modification",7,5,3.78,810,"0.29758","0.27611","0.27611" +"GO:0031032","actomyosin structure organization",26,17,14.05,584,"0.16623","0.27770","0.27770" +"GO:0048599","oocyte development",6,5,3.24,457,"0.15160","0.27832","0.27832" +"GO:0051223","regulation of protein transport",27,16,14.59,882,"0.36382","0.27907","0.27907" +"GO:0070201","regulation of establishment of protein l...",27,16,14.59,883,"0.36382","0.27907","0.27907" +"GO:0090087","regulation of peptide transport",27,16,14.59,884,"0.36382","0.27907","0.27907" +"GO:0042177","negative regulation of protein catabolic...",5,4,2.7,724,"0.24171","0.27914","0.27914" +"GO:0018212","peptidyl-tyrosine modification",6,4,3.24,1050,"0.42194","0.28215","0.28215" +"GO:0009948","anterior/posterior axis specification",4,3,2.16,951,"0.37516","0.28251","0.28251" +"GO:0015985","energy coupled proton transport, down el...",11,8,5.94,601,"0.17336","0.28268","0.28268" +"GO:0015986","ATP synthesis coupled proton transport",11,8,5.94,602,"0.17336","0.28268","0.28268" +"GO:0090329","regulation of DNA-dependent DNA replicat...",3,2,1.62,1246,"0.56038","0.28289","0.28289" +"GO:0022412","cellular process involved in reproductio...",42,22,22.69,1672,"0.64639","0.28447","0.28447" +"GO:0060041","retina development in camera-type eye",25,15,13.51,869,"0.34666","0.28493","0.28493" +"GO:0050795","regulation of behavior",10,5,5.4,1731,"0.71786","0.28506","0.28506" +"GO:0006810","transport",572,335,309.06,67,"0.00740","0.01923","0.28561" +"GO:1903044","protein localization to membrane raft",5,4,2.7,725,"0.24171","0.28563","0.28563" +"GO:0051260","protein homooligomerization",14,10,7.56,433,"0.14885","0.28584","0.28584" +"GO:0001704","formation of primary germ layer",5,4,2.7,726,"0.24171","0.28891","0.28891" +"GO:0045747","positive regulation of Notch signaling p...",5,3,2.7,1473,"0.57534","0.28891","0.28891" +"GO:0051028","mRNA transport",3,2,1.62,1247,"0.56038","0.28922","0.28922" +"GO:0098662","inorganic cation transmembrane transport",55,36,29.72,225,"0.05580","0.15171","0.28923" +"GO:0051016","barbed-end actin filament capping",3,2,1.62,1248,"0.56038","0.29177","0.29177" +"GO:0008625","extrinsic apoptotic signaling pathway vi...",4,3,2.16,952,"0.37516","0.29277","0.29277" +"GO:0050830","defense response to Gram-positive bacter...",4,3,2.16,953,"0.37516","0.29277","0.29277" +"GO:1902041","regulation of extrinsic apoptotic signal...",4,3,2.16,954,"0.37516","0.29277","0.29277" +"GO:0043949","regulation of cAMP-mediated signaling",9,6,4.86,857,"0.33898","0.29378","0.29378" +"GO:0010628","positive regulation of gene expression",77,42,41.6,1191,"0.51088","0.29380","0.29380" +"GO:0040013","negative regulation of locomotion",13,7,7.02,1640,"0.61700","0.29414","0.29414" +"GO:0051149","positive regulation of muscle cell diffe...",9,6,4.86,858,"0.33898","0.29427","0.29427" +"GO:0051155","positive regulation of striated muscle c...",9,6,4.86,859,"0.33898","0.29427","0.29427" +"GO:0098655","cation transmembrane transport",70,45,37.82,212,"0.05126","0.16791","0.29614" +"GO:0010469","regulation of signaling receptor activit...",9,7,4.86,421,"0.13581","0.29701","0.29701" +"GO:0007098","centrosome cycle",8,5,4.32,1094,"0.45434","0.29703","0.29703" +"GO:0031023","microtubule organizing center organizati...",8,5,4.32,1095,"0.45434","0.29703","0.29703" +"GO:0035162","embryonic hemopoiesis",8,6,4.32,643,"0.20353","0.30021","0.30021" +"GO:0001824","blastocyst development",4,2,2.16,1840,"0.74559","0.30174","0.30174" +"GO:0001505","regulation of neurotransmitter levels",27,18,14.59,391,"0.12868","0.30187","0.30187" +"GO:0044703","multi-organism reproductive process",69,37,37.28,1539,"0.57709","0.30287","0.30287" +"GO:0033523","histone H2B ubiquitination",3,2,1.62,1249,"0.56038","0.30343","0.30343" +"GO:0055007","cardiac muscle cell differentiation",10,6,5.4,1136,"0.47921","0.30388","0.30388" +"GO:0007286","spermatid development",21,10,11.35,1986,"0.79186","0.30390","0.30390" +"GO:0051179","localization",665,391,359.31,33,"0.00224","0.00524","0.30405" +"GO:0031333","negative regulation of protein complex a...",11,6,5.94,1621,"0.60819","0.30417","0.30417" +"GO:0008360","regulation of cell shape",5,4,2.7,727,"0.24171","0.30817","0.30817" +"GO:0071482","cellular response to light stimulus",7,5,3.78,811,"0.29758","0.30884","0.30884" +"GO:0048731","system development",296,181,159.94,48,"0.00514","0.01023","0.30895" +"GO:0006348","chromatin silencing at telomere",4,2,2.16,1841,"0.74559","0.30934","0.30934" +"GO:0031935","regulation of chromatin silencing",4,3,2.16,955,"0.37516","0.30934","0.30934" +"GO:0031936","negative regulation of chromatin silenci...",4,3,2.16,956,"0.37516","0.30934","0.30934" +"GO:0045815","positive regulation of gene expression, ...",4,3,2.16,957,"0.37516","0.30934","0.30934" +"GO:0060969","negative regulation of gene silencing",4,3,2.16,958,"0.37516","0.30934","0.30934" +"GO:1902116","negative regulation of organelle assembl...",3,2,1.62,1250,"0.56038","0.30980","0.30980" +"GO:0007600","sensory perception",36,19,19.45,1655,"0.62699","0.31025","0.31025" +"GO:0050829","defense response to Gram-negative bacter...",6,3,3.24,1779,"0.72874","0.31078","0.31078" +"GO:0014902","myotube differentiation",11,7,5.94,888,"0.37172","0.31096","0.31096" +"GO:0031345","negative regulation of cell projection o...",10,6,5.4,1137,"0.47921","0.31112","0.31112" +"GO:0051186","cofactor metabolic process",38,19,20.53,1957,"0.74800","0.31130","0.31130" +"GO:0009880","embryonic pattern specification",7,4,3.78,1549,"0.58774","0.31218","0.31218" +"GO:0010558","negative regulation of macromolecule bio...",75,45,40.52,610,"0.17492","0.31270","0.31270" +"GO:0010508","positive regulation of autophagy",5,4,2.7,728,"0.24171","0.31332","0.31332" +"GO:0003300","cardiac muscle hypertrophy",6,4,3.24,1051,"0.42194","0.31424","0.31424" +"GO:0014896","muscle hypertrophy",6,4,3.24,1052,"0.42194","0.31424","0.31424" +"GO:0014897","striated muscle hypertrophy",6,4,3.24,1053,"0.42194","0.31424","0.31424" +"GO:0055013","cardiac muscle cell development",6,4,3.24,1054,"0.42194","0.31424","0.31424" +"GO:1903918","regulation of actin filament severing",6,4,3.24,1055,"0.42194","0.31424","0.31424" +"GO:0009653","anatomical structure morphogenesis",197,129,106.44,15,"0.00046","0.00036","0.31613" +"GO:0044089","positive regulation of cellular componen...",50,34,27.02,146,"0.03034","0.04624","0.31708" +"GO:0016331","morphogenesis of embryonic epithelium",19,11,10.27,1121,"0.45962","0.31813","0.31813" +"GO:0046916","cellular transition metal ion homeostasi...",4,3,2.16,959,"0.37516","0.31937","0.31937" +"GO:0032535","regulation of cellular component size",36,24,19.45,332,"0.08529","0.05018","0.32050" +"GO:0001841","neural tube formation",12,7,6.48,1168,"0.49949","0.32189","0.32189" +"GO:0050793","regulation of developmental process",143,88,77.27,174,"0.03792","0.06530","0.32261" +"GO:0006541","glutamine metabolic process",3,2,1.62,1251,"0.56038","0.32276","0.32276" +"GO:0006885","regulation of pH",4,2,2.16,1842,"0.74559","0.32328","0.32328" +"GO:0055067","monovalent inorganic cation homeostasis",4,2,2.16,1843,"0.74559","0.32328","0.32328" +"GO:0001974","blood vessel remodeling",7,5,3.78,812,"0.29758","0.32393","0.32393" +"GO:0006338","chromatin remodeling",15,9,8.1,1025,"0.42178","0.32536","0.32536" +"GO:0050768","negative regulation of neurogenesis",15,9,8.1,1026,"0.42178","0.32536","0.32536" +"GO:0022008","neurogenesis",140,89,75.65,84,"0.01198","0.01157","0.32628" +"GO:2000045","regulation of G1/S transition of mitotic...",4,3,2.16,960,"0.37516","0.32642","0.32642" +"GO:1902905","positive regulation of supramolecular fi...",27,18,14.59,392,"0.12868","0.01330","0.32679" +"GO:0006323","DNA packaging",16,8,8.65,1745,"0.71861","0.32702","0.32702" +"GO:0032506","cytokinetic process",5,3,2.7,1474,"0.57534","0.32728","0.32728" +"GO:0008202","steroid metabolic process",17,9,9.19,1656,"0.63273","0.32730","0.32730" +"GO:0007010","cytoskeleton organization",118,77,63.76,69,"0.00753","0.00111","0.32745" +"GO:0019637","organophosphate metabolic process",125,68,67.54,1182,"0.50385","0.32789","0.32789" +"GO:0051051","negative regulation of transport",13,9,7.02,652,"0.20652","0.32835","0.32835" +"GO:0035265","organ growth",9,6,4.86,860,"0.33898","0.32871","0.32871" +"GO:0009074","aromatic amino acid family catabolic pro...",4,3,2.16,961,"0.37516","0.32959","0.32959" +"GO:0051017","actin filament bundle assembly",8,6,4.32,644,"0.20353","0.32973","0.32973" +"GO:0002520","immune system development",34,21,18.37,671,"0.23126","0.32990","0.32990" +"GO:0002694","regulation of leukocyte activation",15,10,8.1,679,"0.23600","0.32996","0.32996" +"GO:0050865","regulation of cell activation",15,10,8.1,680,"0.23600","0.32996","0.32996" +"GO:0007298","border follicle cell migration",3,2,1.62,1252,"0.56038","0.33005","0.33005" +"GO:0031033","myosin filament organization",3,2,1.62,1253,"0.56038","0.33005","0.33005" +"GO:0040025","vulval development",3,2,1.62,1254,"0.56038","0.33005","0.33005" +"GO:0043277","apoptotic cell clearance",3,2,1.62,1255,"0.56038","0.33005","0.33005" +"GO:0045987","positive regulation of smooth muscle con...",3,2,1.62,1256,"0.56038","0.33005","0.33005" +"GO:0050731","positive regulation of peptidyl-tyrosine...",3,2,1.62,1257,"0.56038","0.33005","0.33005" +"GO:0061097","regulation of protein tyrosine kinase ac...",3,2,1.62,1258,"0.56038","0.33005","0.33005" +"GO:0008038","neuron recognition",8,5,4.32,1096,"0.45434","0.33086","0.33086" +"GO:0043010","camera-type eye development",33,21,17.83,606,"0.17420","0.33092","0.33092" +"GO:0030097","hemopoiesis",33,20,17.83,767,"0.27998","0.33196","0.33196" +"GO:0048534","hematopoietic or lymphoid organ developm...",33,20,17.83,768,"0.27998","0.33196","0.33196" +"GO:0016575","histone deacetylation",4,3,2.16,962,"0.37516","0.33276","0.33276" +"GO:0042219","cellular modified amino acid catabolic p...",3,2,1.62,1259,"0.56038","0.33280","0.33280" +"GO:0019933","cAMP-mediated signaling",12,8,6.48,776,"0.28045","0.33285","0.33285" +"GO:0019935","cyclic-nucleotide-mediated signaling",12,8,6.48,777,"0.28045","0.33285","0.33285" +"GO:0009163","nucleoside biosynthetic process",4,2,2.16,1844,"0.74559","0.33356","0.33356" +"GO:0042455","ribonucleoside biosynthetic process",4,2,2.16,1845,"0.74559","0.33356","0.33356" +"GO:0015837","amine transport",5,4,2.7,729,"0.24171","0.33438","0.33438" +"GO:0051952","regulation of amine transport",5,4,2.7,730,"0.24171","0.33438","0.33438" +"GO:0018345","protein palmitoylation",8,6,4.32,645,"0.20353","0.33764","0.33764" +"GO:0060491","regulation of cell projection assembly",18,10,9.73,1215,"0.54500","0.33786","0.33786" +"GO:0120032","regulation of plasma membrane bounded ce...",18,10,9.73,1216,"0.54500","0.33786","0.33786" +"GO:0051961","negative regulation of nervous system de...",19,12,10.27,785,"0.28637","0.33795","0.33795" +"GO:0043113","receptor clustering",5,4,2.7,731,"0.24171","0.33887","0.33887" +"GO:0031348","negative regulation of defense response",6,5,3.24,458,"0.15160","0.34101","0.34101" +"GO:0006468","protein phosphorylation",209,109,112.93,1835,"0.73988","0.34207","0.34207" +"GO:0044283","small molecule biosynthetic process",52,26,28.1,1966,"0.76774","0.34226","0.34226" +"GO:0060135","maternal process involved in female preg...",6,4,3.24,1056,"0.42194","0.34266","0.34266" +"GO:0090407","organophosphate biosynthetic process",63,33,34.04,1678,"0.65424","0.34326","0.34326" +"GO:0006935","chemotaxis",33,25,17.83,72,"0.00828","0.00772","0.34424" +"GO:0070897","transcription preinitiation complex asse...",5,3,2.7,1475,"0.57534","0.34429","0.34429" +"GO:0001578","microtubule bundle formation",8,5,4.32,1097,"0.45434","0.34450","0.34450" +"GO:0006952","defense response",52,32,28.1,588,"0.16939","0.34453","0.34453" +"GO:0006821","chloride transport",4,3,2.16,963,"0.37516","0.34646","0.34646" +"GO:0007268","chemical synaptic transmission",36,23,19.45,460,"0.15216","0.34713","0.34713" +"GO:0098916","anterograde trans-synaptic signaling",36,23,19.45,461,"0.15216","0.34713","0.34713" +"GO:0099536","synaptic signaling",36,23,19.45,462,"0.15216","0.34713","0.34713" +"GO:0099537","trans-synaptic signaling",36,23,19.45,463,"0.15216","0.34713","0.34713" +"GO:0051648","vesicle localization",22,12,11.89,1458,"0.56801","0.34722","0.34722" +"GO:0009416","response to light stimulus",22,13,11.89,1009,"0.39860","0.34984","0.34984" +"GO:0045892","negative regulation of transcription, DN...",67,39,36.2,783,"0.28483","0.35016","0.35016" +"GO:1903034","regulation of response to wounding",5,2,2.7,2102,"0.85910","0.35067","0.35067" +"GO:0009108","coenzyme biosynthetic process",20,11,10.81,1224,"0.55702","0.35211","0.35211" +"GO:1905809","negative regulation of synapse organizat...",5,4,2.7,732,"0.24171","0.35251","0.35251" +"GO:1903051","negative regulation of proteolysis invol...",4,3,2.16,964,"0.37516","0.35301","0.35301" +"GO:1903363","negative regulation of cellular protein ...",4,3,2.16,965,"0.37516","0.35301","0.35301" +"GO:0009314","response to radiation",29,17,15.67,996,"0.37982","0.35323","0.35323" +"GO:0055076","transition metal ion homeostasis",6,4,3.24,1057,"0.42194","0.35333","0.35333" +"GO:0060429","epithelium development",83,57,44.85,42,"0.00411","0.00313","0.35418" +"GO:0030072","peptide hormone secretion",12,8,6.48,778,"0.28045","0.35441","0.35441" +"GO:0097479","synaptic vesicle localization",12,7,6.48,1169,"0.49949","0.35441","0.35441" +"GO:0007173","epidermal growth factor receptor signali...",7,4,3.78,1550,"0.58774","0.35593","0.35593" +"GO:0030279","negative regulation of ossification",7,5,3.78,813,"0.29758","0.35593","0.35593" +"GO:0038127","ERBB signaling pathway",7,4,3.78,1551,"0.58774","0.35593","0.35593" +"GO:0045662","negative regulation of myoblast differen...",7,4,3.78,1552,"0.58774","0.35593","0.35593" +"GO:0048015","phosphatidylinositol-mediated signaling",7,4,3.78,1553,"0.58774","0.35593","0.35593" +"GO:0048017","inositol lipid-mediated signaling",7,4,3.78,1554,"0.58774","0.35593","0.35593" +"GO:0048546","digestive tract morphogenesis",7,5,3.78,814,"0.29758","0.35593","0.35593" +"GO:0061008","hepaticobiliary system development",7,5,3.78,815,"0.29758","0.35593","0.35593" +"GO:0071772","response to BMP",7,5,3.78,816,"0.29758","0.35593","0.35593" +"GO:0071773","cellular response to BMP stimulus",7,5,3.78,817,"0.29758","0.35593","0.35593" +"GO:0034764","positive regulation of transmembrane tra...",12,5,6.48,2171,"0.87520","0.35632","0.35632" +"GO:0009628","response to abiotic stimulus",88,51,47.55,755,"0.26079","0.35685","0.35685" +"GO:0010817","regulation of hormone levels",30,19,16.21,624,"0.19991","0.35692","0.35692" +"GO:0001656","metanephros development",3,2,1.62,1260,"0.56038","0.35694","0.35694" +"GO:0001657","ureteric bud development",3,2,1.62,1261,"0.56038","0.35694","0.35694" +"GO:0001658","branching involved in ureteric bud morph...",3,2,1.62,1262,"0.56038","0.35694","0.35694" +"GO:0001823","mesonephros development",3,2,1.62,1263,"0.56038","0.35694","0.35694" +"GO:0002052","positive regulation of neuroblast prolif...",3,2,1.62,1264,"0.56038","0.35694","0.35694" +"GO:0002063","chondrocyte development",3,2,1.62,1265,"0.56038","0.35694","0.35694" +"GO:0003170","heart valve development",3,2,1.62,1266,"0.56038","0.35694","0.35694" +"GO:0003179","heart valve morphogenesis",3,2,1.62,1267,"0.56038","0.35694","0.35694" +"GO:0003197","endocardial cushion development",3,2,1.62,1268,"0.56038","0.35694","0.35694" +"GO:0010463","mesenchymal cell proliferation",3,1,1.62,2244,"0.90301","0.35694","0.35694" +"GO:0010464","regulation of mesenchymal cell prolifera...",3,1,1.62,2245,"0.90301","0.35694","0.35694" +"GO:0014009","glial cell proliferation",3,2,1.62,1269,"0.56038","0.35694","0.35694" +"GO:0018992","germ-line sex determination",3,2,1.62,1270,"0.56038","0.35694","0.35694" +"GO:0021781","glial cell fate commitment",3,2,1.62,1271,"0.56038","0.35694","0.35694" +"GO:0022600","digestive system process",3,2,1.62,1272,"0.56038","0.35694","0.35694" +"GO:0030502","negative regulation of bone mineralizati...",3,2,1.62,1273,"0.56038","0.35694","0.35694" +"GO:0030850","prostate gland development",3,2,1.62,1274,"0.56038","0.35694","0.35694" +"GO:0030857","negative regulation of epithelial cell d...",3,2,1.62,1275,"0.56038","0.35694","0.35694" +"GO:0030858","positive regulation of epithelial cell d...",3,2,1.62,1276,"0.56038","0.35694","0.35694" +"GO:0031641","regulation of myelination",3,2,1.62,1277,"0.56038","0.35694","0.35694" +"GO:0033687","osteoblast proliferation",3,2,1.62,1278,"0.56038","0.35694","0.35694" +"GO:0033688","regulation of osteoblast proliferation",3,2,1.62,1279,"0.56038","0.35694","0.35694" +"GO:0033690","positive regulation of osteoblast prolif...",3,2,1.62,1280,"0.56038","0.35694","0.35694" +"GO:0043491","protein kinase B signaling",3,2,1.62,1281,"0.56038","0.35694","0.35694" +"GO:0048708","astrocyte differentiation",3,2,1.62,1282,"0.56038","0.35694","0.35694" +"GO:0048745","smooth muscle tissue development",3,2,1.62,1283,"0.56038","0.35694","0.35694" +"GO:0060251","regulation of glial cell proliferation",3,2,1.62,1284,"0.56038","0.35694","0.35694" +"GO:0060428","lung epithelium development",3,2,1.62,1285,"0.56038","0.35694","0.35694" +"GO:0060441","epithelial tube branching involved in lu...",3,2,1.62,1286,"0.56038","0.35694","0.35694" +"GO:0060479","lung cell differentiation",3,2,1.62,1287,"0.56038","0.35694","0.35694" +"GO:0060487","lung epithelial cell differentiation",3,2,1.62,1288,"0.56038","0.35694","0.35694" +"GO:0060612","adipose tissue development",3,2,1.62,1289,"0.56038","0.35694","0.35694" +"GO:0060675","ureteric bud morphogenesis",3,2,1.62,1290,"0.56038","0.35694","0.35694" +"GO:0060788","ectodermal placode formation",3,2,1.62,1291,"0.56038","0.35694","0.35694" +"GO:0061009","common bile duct development",3,2,1.62,1292,"0.56038","0.35694","0.35694" +"GO:0061213","positive regulation of mesonephros devel...",3,2,1.62,1293,"0.56038","0.35694","0.35694" +"GO:0061217","regulation of mesonephros development",3,2,1.62,1294,"0.56038","0.35694","0.35694" +"GO:0061333","renal tubule morphogenesis",3,2,1.62,1295,"0.56038","0.35694","0.35694" +"GO:0070168","negative regulation of biomineral tissue...",3,2,1.62,1296,"0.56038","0.35694","0.35694" +"GO:0071599","otic vesicle development",3,2,1.62,1297,"0.56038","0.35694","0.35694" +"GO:0071600","otic vesicle morphogenesis",3,2,1.62,1298,"0.56038","0.35694","0.35694" +"GO:0071696","ectodermal placode development",3,2,1.62,1299,"0.56038","0.35694","0.35694" +"GO:0071697","ectodermal placode morphogenesis",3,2,1.62,1300,"0.56038","0.35694","0.35694" +"GO:0072028","nephron morphogenesis",3,2,1.62,1301,"0.56038","0.35694","0.35694" +"GO:0072078","nephron tubule morphogenesis",3,2,1.62,1302,"0.56038","0.35694","0.35694" +"GO:0072088","nephron epithelium morphogenesis",3,2,1.62,1303,"0.56038","0.35694","0.35694" +"GO:0072163","mesonephric epithelium development",3,2,1.62,1304,"0.56038","0.35694","0.35694" +"GO:0072164","mesonephric tubule development",3,2,1.62,1305,"0.56038","0.35694","0.35694" +"GO:0072171","mesonephric tubule morphogenesis",3,2,1.62,1306,"0.56038","0.35694","0.35694" +"GO:0072210","metanephric nephron development",3,2,1.62,1307,"0.56038","0.35694","0.35694" +"GO:0090183","regulation of kidney development",3,2,1.62,1308,"0.56038","0.35694","0.35694" +"GO:0090184","positive regulation of kidney developmen...",3,2,1.62,1309,"0.56038","0.35694","0.35694" +"GO:0090189","regulation of branching involved in uret...",3,2,1.62,1310,"0.56038","0.35694","0.35694" +"GO:0090190","positive regulation of branching involve...",3,2,1.62,1311,"0.56038","0.35694","0.35694" +"GO:0097152","mesenchymal cell apoptotic process",3,2,1.62,1312,"0.56038","0.35694","0.35694" +"GO:1902692","regulation of neuroblast proliferation",3,2,1.62,1313,"0.56038","0.35694","0.35694" +"GO:1902894","negative regulation of pri-miRNA transcr...",3,2,1.62,1314,"0.56038","0.35694","0.35694" +"GO:1903055","positive regulation of extracellular mat...",3,2,1.62,1315,"0.56038","0.35694","0.35694" +"GO:1905939","regulation of gonad development",3,2,1.62,1316,"0.56038","0.35694","0.35694" +"GO:1905941","positive regulation of gonad development",3,2,1.62,1317,"0.56038","0.35694","0.35694" +"GO:2000018","regulation of male gonad development",3,2,1.62,1318,"0.56038","0.35694","0.35694" +"GO:2000020","positive regulation of male gonad develo...",3,2,1.62,1319,"0.56038","0.35694","0.35694" +"GO:2000179","positive regulation of neural precursor ...",3,2,1.62,1320,"0.56038","0.35694","0.35694" +"GO:2000648","positive regulation of stem cell prolife...",3,2,1.62,1321,"0.56038","0.35694","0.35694" +"GO:2001053","regulation of mesenchymal cell apoptotic...",3,2,1.62,1322,"0.56038","0.35694","0.35694" +"GO:2001054","negative regulation of mesenchymal cell ...",3,2,1.62,1323,"0.56038","0.35694","0.35694" +"GO:0006469","negative regulation of protein kinase ac...",14,8,7.56,1198,"0.51668","0.35793","0.35793" +"GO:0031401","positive regulation of protein modificat...",44,26,23.77,825,"0.30045","0.35979","0.35979" +"GO:0050982","detection of mechanical stimulus",7,4,3.78,1555,"0.58774","0.36141","0.36141" +"GO:0017156","calcium ion regulated exocytosis",6,3,3.24,1780,"0.72874","0.36178","0.36178" +"GO:0031175","neuron projection development",87,57,47.01,111,"0.01811","0.01755","0.36193" +"GO:0051099","positive regulation of binding",9,5,4.86,1605,"0.59853","0.36220","0.36220" +"GO:0097178","ruffle assembly",3,2,1.62,1324,"0.56038","0.36535","0.36535" +"GO:1900027","regulation of ruffle assembly",3,2,1.62,1325,"0.56038","0.36535","0.36535" +"GO:0006739","NADP metabolic process",4,2,2.16,1846,"0.74559","0.36545","0.36545" +"GO:0030855","epithelial cell differentiation",33,21,17.83,607,"0.17420","0.36557","0.36557" +"GO:0021700","developmental maturation",21,13,11.35,831,"0.30817","0.36595","0.36595" +"GO:0006633","fatty acid biosynthetic process",8,3,4.32,2223,"0.90250","0.36788","0.36788" +"GO:0048640","negative regulation of developmental gro...",8,5,4.32,1098,"0.45434","0.36788","0.36788" +"GO:0043087","regulation of GTPase activity",26,14,14.05,1545,"0.58757","0.36794","0.36794" +"GO:0006352","DNA-templated transcription, initiation",15,7,8.1,1999,"0.79799","0.36801","0.36801" +"GO:0006403","RNA localization",6,4,3.24,1058,"0.42194","0.36930","0.36930" +"GO:0051493","regulation of cytoskeleton organization",42,27,22.69,375,"0.11678","0.02171","0.36944" +"GO:0003382","epithelial cell morphogenesis",4,2,2.16,1847,"0.74559","0.36965","0.36965" +"GO:0072522","purine-containing compound biosynthetic ...",35,21,18.91,794,"0.29511","0.37011","0.37011" +"GO:0001890","placenta development",7,5,3.78,818,"0.29758","0.37108","0.37108" +"GO:0015718","monocarboxylic acid transport",10,6,5.4,1138,"0.47921","0.37111","0.37111" +"GO:1904888","cranial skeletal system development",6,4,3.24,1059,"0.42194","0.37240","0.37240" +"GO:1901796","regulation of signal transduction by p53...",7,3,3.78,2055,"0.83449","0.37460","0.37460" +"GO:0034502","protein localization to chromosome",4,3,2.16,966,"0.37516","0.37557","0.37557" +"GO:0009895","negative regulation of catabolic process",16,11,8.65,611,"0.17581","0.37633","0.37633" +"GO:0019751","polyol metabolic process",3,2,1.62,1326,"0.56038","0.37728","0.37728" +"GO:0046173","polyol biosynthetic process",3,2,1.62,1327,"0.56038","0.37728","0.37728" +"GO:0009890","negative regulation of biosynthetic proc...",76,45,41.06,655,"0.21135","0.37770","0.37770" +"GO:0031327","negative regulation of cellular biosynth...",76,45,41.06,656,"0.21135","0.37770","0.37770" +"GO:0000578","embryonic axis specification",3,2,1.62,1328,"0.56038","0.37777","0.37777" +"GO:0001775","cell activation",35,25,18.91,138,"0.02656","0.09598","0.37796" +"GO:0043523","regulation of neuron apoptotic process",11,6,5.94,1622,"0.60819","0.37837","0.37837" +"GO:1901214","regulation of neuron death",11,6,5.94,1623,"0.60819","0.37837","0.37837" +"GO:0051568","histone H3-K4 methylation",5,3,2.7,1476,"0.57534","0.37871","0.37871" +"GO:0009888","tissue development",128,80,69.16,144,"0.02928","0.01894","0.37931" +"GO:2000113","negative regulation of cellular macromol...",73,43,39.44,672,"0.23368","0.37968","0.37968" +"GO:0032970","regulation of actin filament-based proce...",39,26,21.07,271,"0.07470","0.02076","0.38039" +"GO:0006611","protein export from nucleus",3,1,1.62,2246,"0.90301","0.38097","0.38097" +"GO:0046822","regulation of nucleocytoplasmic transpor...",3,1,1.62,2247,"0.90301","0.38097","0.38097" +"GO:0007626","locomotory behavior",16,10,8.65,849,"0.33631","0.38145","0.38145" +"GO:0032387","negative regulation of intracellular tra...",3,2,1.62,1329,"0.56038","0.38146","0.38146" +"GO:0090317","negative regulation of intracellular pro...",3,2,1.62,1330,"0.56038","0.38146","0.38146" +"GO:0018198","peptidyl-cysteine modification",5,4,2.7,733,"0.24171","0.38158","0.38158" +"GO:0060996","dendritic spine development",11,8,5.94,603,"0.17336","0.38185","0.38185" +"GO:0060998","regulation of dendritic spine developmen...",11,8,5.94,604,"0.17336","0.38185","0.38185" +"GO:0042246","tissue regeneration",5,3,2.7,1477,"0.57534","0.38253","0.38253" +"GO:0071526","semaphorin-plexin signaling pathway",3,2,1.62,1331,"0.56038","0.38319","0.38319" +"GO:1902679","negative regulation of RNA biosynthetic ...",68,40,36.74,750,"0.24877","0.38421","0.38421" +"GO:1903507","negative regulation of nucleic acid-temp...",68,40,36.74,751,"0.24877","0.38421","0.38421" +"GO:0051693","actin filament capping",4,2,2.16,1848,"0.74559","0.38495","0.38495" +"GO:0033014","tetrapyrrole biosynthetic process",6,3,3.24,1781,"0.72874","0.38563","0.38563" +"GO:0060541","respiratory system development",23,15,12.43,621,"0.19247","0.05876","0.38642" +"GO:0035459","cargo loading into vesicle",3,2,1.62,1332,"0.56038","0.38765","0.38765" +"GO:0035964","COPI-coated vesicle budding",3,2,1.62,1333,"0.56038","0.38765","0.38765" +"GO:0048200","Golgi transport vesicle coating",3,2,1.62,1334,"0.56038","0.38765","0.38765" +"GO:0048205","COPI coating of Golgi vesicle",3,2,1.62,1335,"0.56038","0.38765","0.38765" +"GO:0120034","positive regulation of plasma membrane b...",7,4,3.78,1556,"0.58774","0.38785","0.38785" +"GO:0045665","negative regulation of neuron differenti...",14,8,7.56,1199,"0.51668","0.38804","0.38804" +"GO:0002683","negative regulation of immune system pro...",16,9,8.65,1209,"0.53167","0.38834","0.38834" +"GO:0045844","positive regulation of striated muscle t...",4,3,2.16,967,"0.37516","0.38840","0.38840" +"GO:0048636","positive regulation of muscle organ deve...",4,3,2.16,968,"0.37516","0.38840","0.38840" +"GO:0048641","regulation of skeletal muscle tissue dev...",4,3,2.16,969,"0.37516","0.38840","0.38840" +"GO:0090263","positive regulation of canonical Wnt sig...",4,2,2.16,1849,"0.74559","0.38840","0.38840" +"GO:1901863","positive regulation of muscle tissue dev...",4,3,2.16,970,"0.37516","0.38840","0.38840" +"GO:0019953","sexual reproduction",62,32,33.5,1694,"0.69780","0.39135","0.39135" +"GO:0007213","G protein-coupled acetylcholine receptor...",3,2,1.62,1336,"0.56038","0.39214","0.39214" +"GO:0095500","acetylcholine receptor signaling pathway",3,2,1.62,1337,"0.56038","0.39214","0.39214" +"GO:1903831","signal transduction involved in cellular...",3,2,1.62,1338,"0.56038","0.39214","0.39214" +"GO:1905144","response to acetylcholine",3,2,1.62,1339,"0.56038","0.39214","0.39214" +"GO:1905145","cellular response to acetylcholine",3,2,1.62,1340,"0.56038","0.39214","0.39214" +"GO:0009914","hormone transport",14,9,7.56,836,"0.31031","0.39406","0.39406" +"GO:0046879","hormone secretion",14,9,7.56,837,"0.31031","0.39406","0.39406" +"GO:0042133","neurotransmitter metabolic process",10,7,5.4,743,"0.24549","0.39415","0.39415" +"GO:0030833","regulation of actin filament polymerizat...",22,15,11.89,403,"0.13026","0.03109","0.39437" +"GO:0051259","protein complex oligomerization",21,14,11.35,592,"0.17219","0.39483","0.39483" +"GO:0045137","development of primary sexual characteri...",17,9,9.19,1657,"0.63273","0.39538","0.39538" +"GO:0042325","regulation of phosphorylation",65,39,35.12,623,"0.19738","0.39644","0.39644" +"GO:0035329","hippo signaling",8,6,4.32,646,"0.20353","0.39694","0.39694" +"GO:0030520","intracellular estrogen receptor signalin...",4,2,2.16,1850,"0.74559","0.39793","0.39793" +"GO:0033146","regulation of intracellular estrogen rec...",4,2,2.16,1851,"0.74559","0.39793","0.39793" +"GO:1901568","fatty acid derivative metabolic process",4,2,2.16,1852,"0.74559","0.39793","0.39793" +"GO:0001936","regulation of endothelial cell prolifera...",3,2,1.62,1341,"0.56038","0.39816","0.39816" +"GO:0002695","negative regulation of leukocyte activat...",3,2,1.62,1342,"0.56038","0.39816","0.39816" +"GO:0030183","B cell differentiation",3,2,1.62,1343,"0.56038","0.39816","0.39816" +"GO:0050864","regulation of B cell activation",3,2,1.62,1344,"0.56038","0.39816","0.39816" +"GO:0050866","negative regulation of cell activation",3,2,1.62,1345,"0.56038","0.39816","0.39816" +"GO:0051250","negative regulation of lymphocyte activa...",3,2,1.62,1346,"0.56038","0.39816","0.39816" +"GO:1902042","negative regulation of extrinsic apoptot...",3,2,1.62,1347,"0.56038","0.39816","0.39816" +"GO:0010639","negative regulation of organelle organiz...",29,18,15.67,749,"0.24752","0.39924","0.39924" +"GO:0051181","cofactor transport",4,3,2.16,971,"0.37516","0.40055","0.40055" +"GO:0032835","glomerulus development",5,3,2.7,1478,"0.57534","0.40190","0.40190" +"GO:0006900","vesicle budding from membrane",7,5,3.78,819,"0.29758","0.40330","0.40330" +"GO:0033522","histone H2A ubiquitination",5,4,2.7,734,"0.24171","0.40387","0.40387" +"GO:0051050","positive regulation of transport",53,32,28.64,660,"0.21306","0.40427","0.40427" +"GO:0050906","detection of stimulus involved in sensor...",9,6,4.86,861,"0.33898","0.40552","0.40552" +"GO:0034103","regulation of tissue remodeling",6,3,3.24,1782,"0.72874","0.40587","0.40587" +"GO:0016574","histone ubiquitination",9,6,4.86,862,"0.33898","0.40611","0.40611" +"GO:0071103","DNA conformation change",19,10,10.27,1665,"0.63985","0.40614","0.40614" +"GO:0051270","regulation of cellular component movemen...",40,24,21.61,762,"0.27423","0.40633","0.40633" +"GO:0016236","macroautophagy",15,10,8.1,681,"0.23600","0.40642","0.40642" +"GO:0014020","primary neural tube formation",11,7,5.94,889,"0.37172","0.40715","0.40715" +"GO:0006959","humoral immune response",4,2,2.16,1853,"0.74559","0.41200","0.41200" +"GO:0033045","regulation of sister chromatid segregati...",5,3,2.7,1479,"0.57534","0.41274","0.41274" +"GO:0051983","regulation of chromosome segregation",5,3,2.7,1480,"0.57534","0.41274","0.41274" +"GO:0006298","mismatch repair",3,2,1.62,1348,"0.56038","0.41391","0.41391" +"GO:0010800","positive regulation of peptidyl-threonin...",3,2,1.62,1349,"0.56038","0.41391","0.41391" +"GO:0045599","negative regulation of fat cell differen...",3,2,1.62,1350,"0.56038","0.41391","0.41391" +"GO:0030301","cholesterol transport",4,3,2.16,972,"0.37516","0.41644","0.41644" +"GO:0008291","acetylcholine metabolic process",5,3,2.7,1481,"0.57534","0.41672","0.41672" +"GO:1900619","acetate ester metabolic process",5,3,2.7,1482,"0.57534","0.41672","0.41672" +"GO:0048771","tissue remodeling",12,7,6.48,1170,"0.49949","0.41694","0.41694" +"GO:0010771","negative regulation of cell morphogenesi...",7,4,3.78,1557,"0.58774","0.41701","0.41701" +"GO:0061387","regulation of extent of cell growth",7,4,3.78,1558,"0.58774","0.41701","0.41701" +"GO:0030838","positive regulation of actin filament po...",16,12,8.65,268,"0.07322","0.01048","0.41705" +"GO:0006836","neurotransmitter transport",25,16,13.51,659,"0.21174","0.41734","0.41734" +"GO:0019827","stem cell population maintenance",10,6,5.4,1139,"0.47921","0.41782","0.41782" +"GO:0098727","maintenance of cell number",10,6,5.4,1140,"0.47921","0.41782","0.41782" +"GO:0030435","sporulation resulting in formation of a ...",4,3,2.16,973,"0.37516","0.41822","0.41822" +"GO:0001935","endothelial cell proliferation",7,4,3.78,1559,"0.58774","0.41971","0.41971" +"GO:0060284","regulation of cell development",59,40,31.88,118,"0.02096","0.01700","0.41973" +"GO:0045778","positive regulation of ossification",3,1,1.62,2248,"0.90301","0.42265","0.42265" +"GO:0099601","regulation of neurotransmitter receptor ...",8,6,4.32,647,"0.20353","0.42321","0.42321" +"GO:1900449","regulation of glutamate receptor signali...",8,6,4.32,648,"0.20353","0.42321","0.42321" +"GO:0051254","positive regulation of RNA metabolic pro...",64,35,34.58,1190,"0.50947","0.42367","0.42367" +"GO:0090114","COPII-coated vesicle budding",5,3,2.7,1483,"0.57534","0.42371","0.42371" +"GO:0001817","regulation of cytokine production",20,12,10.81,999,"0.37993","0.42753","0.42753" +"GO:0031346","positive regulation of cell projection o...",21,13,11.35,832,"0.30817","0.42756","0.42756" +"GO:0006890","retrograde vesicle-mediated transport, G...",6,2,3.24,2437,"0.92428","0.42768","0.42768" +"GO:0007059","chromosome segregation",22,10,11.89,2088,"0.84744","0.42814","0.42814" +"GO:1902600","proton transmembrane transport",19,13,10.27,435,"0.15088","0.42868","0.42868" +"GO:0016079","synaptic vesicle exocytosis",5,2,2.7,2103,"0.85910","0.42873","0.42873" +"GO:0017157","regulation of exocytosis",5,3,2.7,1484,"0.57534","0.42873","0.42873" +"GO:0009262","deoxyribonucleotide metabolic process",3,2,1.62,1351,"0.56038","0.42888","0.42888" +"GO:0017144","drug metabolic process",108,71,58.35,71,"0.00780","0.00740","0.43055" +"GO:1901992","positive regulation of mitotic cell cycl...",3,2,1.62,1352,"0.56038","0.43200","0.43200" +"GO:0042135","neurotransmitter catabolic process",7,5,3.78,820,"0.29758","0.43381","0.43381" +"GO:0065003","protein-containing complex assembly",116,57,62.68,2188,"0.88063","0.36327","0.43458" +"GO:0007585","respiratory gaseous exchange",5,3,2.7,1485,"0.57534","0.43479","0.43479" +"GO:0043207","response to external biotic stimulus",29,15,15.67,1681,"0.67049","0.43487","0.43487" +"GO:0051707","response to other organism",29,15,15.67,1682,"0.67049","0.43487","0.43487" +"GO:0051098","regulation of binding",18,11,9.73,873,"0.35932","0.43535","0.43535" +"GO:0001700","embryonic development via the syncytial ...",6,3,3.24,1783,"0.72874","0.43543","0.43543" +"GO:0007032","endosome organization",3,2,1.62,1353,"0.56038","0.43644","0.43644" +"GO:0007586","digestion",4,2,2.16,1854,"0.74559","0.43711","0.43711" +"GO:0051785","positive regulation of nuclear division",5,3,2.7,1486,"0.57534","0.43784","0.43784" +"GO:0042771","intrinsic apoptotic signaling pathway in...",3,2,1.62,1354,"0.56038","0.43828","0.43828" +"GO:0072332","intrinsic apoptotic signaling pathway by...",3,2,1.62,1355,"0.56038","0.43828","0.43828" +"GO:1902230","negative regulation of intrinsic apoptot...",3,2,1.62,1356,"0.56038","0.43828","0.43828" +"GO:2001021","negative regulation of response to DNA d...",3,2,1.62,1357,"0.56038","0.43828","0.43828" +"GO:0030509","BMP signaling pathway",5,4,2.7,735,"0.24171","0.43885","0.43885" +"GO:0042451","purine nucleoside biosynthetic process",3,1,1.62,2249,"0.90301","0.43906","0.43906" +"GO:0046129","purine ribonucleoside biosynthetic proce...",3,1,1.62,2250,"0.90301","0.43906","0.43906" +"GO:0007530","sex determination",4,2,2.16,1855,"0.74559","0.43984","0.43984" +"GO:0017148","negative regulation of translation",4,2,2.16,1856,"0.74559","0.43984","0.43984" +"GO:0034249","negative regulation of cellular amide me...",4,2,2.16,1857,"0.74559","0.43984","0.43984" +"GO:0061013","regulation of mRNA catabolic process",4,3,2.16,974,"0.37516","0.43984","0.43984" +"GO:0042775","mitochondrial ATP synthesis coupled elec...",9,5,4.86,1606,"0.59853","0.44443","0.44443" +"GO:0009268","response to pH",3,2,1.62,1358,"0.56038","0.44459","0.44459" +"GO:0045663","positive regulation of myoblast differen...",6,4,3.24,1060,"0.42194","0.44472","0.44472" +"GO:0007062","sister chromatid cohesion",8,5,4.32,1099,"0.45434","0.44499","0.44499" +"GO:0007264","small GTPase mediated signal transductio...",60,34,32.42,1004,"0.38977","0.44584","0.44584" +"GO:0030335","positive regulation of cell migration",15,10,8.1,682,"0.23600","0.44593","0.44593" +"GO:0009743","response to carbohydrate",4,3,2.16,975,"0.37516","0.44622","0.44622" +"GO:0007267","cell-cell signaling",85,50,45.93,663,"0.21480","0.44659","0.44659" +"GO:0009187","cyclic nucleotide metabolic process",11,6,5.94,1624,"0.60819","0.44802","0.44802" +"GO:0009190","cyclic nucleotide biosynthetic process",11,6,5.94,1625,"0.60819","0.44802","0.44802" +"GO:0008406","gonad development",14,7,7.56,1718,"0.71733","0.44812","0.44812" +"GO:0030154","cell differentiation",232,136,125.35,275,"0.07992","0.08201","0.44829" +"GO:0051704","multi-organism process",125,71,67.54,790,"0.29347","0.44969","0.44969" +"GO:0003006","developmental process involved in reprod...",71,37,38.36,1685,"0.67442","0.44992","0.44992" +"GO:0007416","synapse assembly",20,13,10.81,667,"0.22399","0.44996","0.44996" +"GO:0002066","columnar/cuboidal epithelial cell develo...",12,7,6.48,1171,"0.49949","0.45042","0.45042" +"GO:0003018","vascular process in circulatory system",5,3,2.7,1487,"0.57534","0.45112","0.45112" +"GO:0071804","cellular potassium ion transport",11,7,5.94,890,"0.37172","0.05876","0.45125" +"GO:0071805","potassium ion transmembrane transport",11,7,5.94,891,"0.37172","0.05876","0.45125" +"GO:0008154","actin polymerization or depolymerization",26,18,14.05,289,"0.08475","0.06108","0.45202" +"GO:0007283","spermatogenesis",33,17,17.83,1691,"0.68104","0.45264","0.45264" +"GO:0007601","visual perception",10,5,5.4,1732,"0.71786","0.45369","0.45369" +"GO:0051124","synaptic growth at neuromuscular junctio...",7,5,3.78,821,"0.29758","0.45489","0.45489" +"GO:0006732","coenzyme metabolic process",26,13,14.05,1826,"0.73058","0.45492","0.45492" +"GO:0045321","leukocyte activation",26,17,14.05,585,"0.16623","0.45565","0.45565" +"GO:0008203","cholesterol metabolic process",3,2,1.62,1359,"0.56038","0.45572","0.45572" +"GO:0007131","reciprocal meiotic recombination",4,2,2.16,1858,"0.74559","0.45633","0.45633" +"GO:0035825","homologous recombination",4,2,2.16,1859,"0.74559","0.45633","0.45633" +"GO:0009584","detection of visible light",4,3,2.16,976,"0.37516","0.45633","0.45633" +"GO:0039528","cytoplasmic pattern recognition receptor...",3,2,1.62,1360,"0.56038","0.45731","0.45731" +"GO:0039529","RIG-I signaling pathway",3,2,1.62,1361,"0.56038","0.45731","0.45731" +"GO:0098586","cellular response to virus",3,2,1.62,1362,"0.56038","0.45731","0.45731" +"GO:0042157","lipoprotein metabolic process",15,9,8.1,1027,"0.42178","0.45783","0.45783" +"GO:0000070","mitotic sister chromatid segregation",10,3,5.4,2639,"0.96870","0.45807","0.45807" +"GO:0001947","heart looping",10,6,5.4,1141,"0.47921","0.45807","0.45807" +"GO:0032272","negative regulation of protein polymeriz...",8,5,4.32,1100,"0.45434","0.45930","0.45930" +"GO:0035266","meristem growth",3,2,1.62,1363,"0.56038","0.46052","0.46052" +"GO:1902410","mitotic cytokinetic process",3,2,1.62,1364,"0.56038","0.46052","0.46052" +"GO:0008037","cell recognition",12,6,6.48,1703,"0.71690","0.46109","0.46109" +"GO:0046834","lipid phosphorylation",6,4,3.24,1061,"0.42194","0.46163","0.46163" +"GO:0046854","phosphatidylinositol phosphorylation",6,4,3.24,1062,"0.42194","0.46163","0.46163" +"GO:0051172","negative regulation of nitrogen compound...",111,63,59.98,839,"0.31214","0.46231","0.46231" +"GO:0010976","positive regulation of neuron projection...",14,9,7.56,838,"0.31031","0.46269","0.46269" +"GO:0045934","negative regulation of nucleobase-contai...",72,42,38.9,761,"0.26734","0.46269","0.46269" +"GO:1902473","regulation of protein localization to sy...",3,2,1.62,1365,"0.56038","0.46292","0.46292" +"GO:0010830","regulation of myotube differentiation",8,5,4.32,1101,"0.45434","0.46455","0.46455" +"GO:0019068","virion assembly",4,2,2.16,1860,"0.74559","0.46466","0.46466" +"GO:0051253","negative regulation of RNA metabolic pro...",69,40,37.28,791,"0.29437","0.46500","0.46500" +"GO:0034248","regulation of cellular amide metabolic p...",15,9,8.1,1028,"0.42178","0.46502","0.46502" +"GO:0032147","activation of protein kinase activity",6,4,3.24,1063,"0.42194","0.46694","0.46694" +"GO:0051604","protein maturation",13,6,7.02,2009,"0.80253","0.46969","0.46969" +"GO:0050877","nervous system process",68,39,36.74,847,"0.33331","0.34860","0.47051" +"GO:0000122","negative regulation of transcription by ...",36,20,19.45,1160,"0.49529","0.47188","0.47188" +"GO:0007266","Rho protein signal transduction",23,15,12.43,622,"0.19247","0.47193","0.47193" +"GO:0032365","intracellular lipid transport",4,2,2.16,1861,"0.74559","0.47211","0.47211" +"GO:0043467","regulation of generation of precursor me...",4,1,2.16,2540,"0.95548","0.47211","0.47211" +"GO:0046323","glucose import",4,2,2.16,1862,"0.74559","0.47211","0.47211" +"GO:0046324","regulation of glucose import",4,2,2.16,1863,"0.74559","0.47211","0.47211" +"GO:0030516","regulation of axon extension",6,4,3.24,1064,"0.42194","0.47265","0.47265" +"GO:0050771","negative regulation of axonogenesis",6,3,3.24,1784,"0.72874","0.47265","0.47265" +"GO:0032273","positive regulation of protein polymeriz...",24,16,12.97,432,"0.14852","0.02768","0.47368" +"GO:0009063","cellular amino acid catabolic process",11,7,5.94,892,"0.37172","0.47374","0.47374" +"GO:0006637","acyl-CoA metabolic process",5,2,2.7,2104,"0.85910","0.47392","0.47392" +"GO:0035383","thioester metabolic process",5,2,2.7,2105,"0.85910","0.47392","0.47392" +"GO:0032880","regulation of protein localization",52,30,28.1,871,"0.34790","0.47420","0.47420" +"GO:0030324","lung development",8,4,4.32,1752,"0.72114","0.47510","0.47510" +"GO:1903169","regulation of calcium ion transmembrane ...",7,4,3.78,1560,"0.58774","0.47526","0.47526" +"GO:0034622","cellular protein-containing complex asse...",89,39,48.09,2718,"0.98096","0.36965","0.47543" +"GO:0018958","phenol-containing compound metabolic pro...",4,3,2.16,977,"0.37516","0.47773","0.47773" +"GO:0019748","secondary metabolic process",4,3,2.16,978,"0.37516","0.47773","0.47773" +"GO:0043524","negative regulation of neuron apoptotic ...",10,5,5.4,1733,"0.71786","0.47871","0.47871" +"GO:1901215","negative regulation of neuron death",10,5,5.4,1734,"0.71786","0.47871","0.47871" +"GO:0001889","liver development",6,4,3.24,1065,"0.42194","0.47877","0.47877" +"GO:0045806","negative regulation of endocytosis",3,2,1.62,1366,"0.56038","0.47908","0.47908" +"GO:0001932","regulation of protein phosphorylation",57,33,30.8,843,"0.32482","0.48097","0.48097" +"GO:0008219","cell death",94,54,50.79,782,"0.28447","0.48144","0.48144" +"GO:0015696","ammonium transport",10,6,5.4,1142,"0.47921","0.48168","0.48168" +"GO:0030041","actin filament polymerization",23,16,12.43,360,"0.09708","0.05010","0.48178" +"GO:0007632","visual behavior",3,2,1.62,1367,"0.56038","0.48206","0.48206" +"GO:0008542","visual learning",3,2,1.62,1368,"0.56038","0.48206","0.48206" +"GO:0032352","positive regulation of hormone metabolic...",3,2,1.62,1369,"0.56038","0.48206","0.48206" +"GO:0042446","hormone biosynthetic process",3,2,1.62,1370,"0.56038","0.48206","0.48206" +"GO:0097755","positive regulation of blood vessel diam...",3,2,1.62,1371,"0.56038","0.48206","0.48206" +"GO:0006497","protein lipidation",14,8,7.56,1200,"0.51668","0.48245","0.48245" +"GO:0042158","lipoprotein biosynthetic process",14,8,7.56,1201,"0.51668","0.48245","0.48245" +"GO:0070848","response to growth factor",26,15,14.05,1080,"0.43135","0.48299","0.48299" +"GO:0071363","cellular response to growth factor stimu...",26,15,14.05,1081,"0.43135","0.48299","0.48299" +"GO:0044706","multi-multicellular organism process",13,8,7.02,1012,"0.39876","0.48492","0.48492" +"GO:0042773","ATP synthesis coupled electron transport",11,6,5.94,1626,"0.60819","0.48536","0.48536" +"GO:0051495","positive regulation of cytoskeleton orga...",29,19,15.67,430,"0.14416","0.03362","0.48601" +"GO:0000819","sister chromatid segregation",16,7,8.65,2154,"0.85972","0.48637","0.48637" +"GO:0045935","positive regulation of nucleobase-contai...",69,37,37.28,1540,"0.57709","0.48670","0.48670" +"GO:0044270","cellular nitrogen compound catabolic pro...",48,24,25.94,1963,"0.76225","0.48791","0.48791" +"GO:0010564","regulation of cell cycle process",37,20,19.99,1454,"0.56647","0.48944","0.48944" +"GO:0006417","regulation of translation",14,8,7.56,1202,"0.51668","0.48951","0.48951" +"GO:0048469","cell maturation",15,9,8.1,1029,"0.42178","0.48987","0.48987" +"GO:0040020","regulation of meiotic nuclear division",4,3,2.16,979,"0.37516","0.48996","0.48996" +"GO:0050000","chromosome localization",4,2,2.16,1864,"0.74559","0.48996","0.48996" +"GO:0051303","establishment of chromosome localization",4,2,2.16,1865,"0.74559","0.48996","0.48996" +"GO:0051445","regulation of meiotic cell cycle",4,3,2.16,980,"0.37516","0.48996","0.48996" +"GO:0031330","negative regulation of cellular cataboli...",15,10,8.1,683,"0.23600","0.49171","0.49171" +"GO:1901606","alpha-amino acid catabolic process",10,6,5.4,1143,"0.47921","0.49213","0.49213" +"GO:0032271","regulation of protein polymerization",30,19,16.21,625,"0.19991","0.05007","0.49309" +"GO:0030900","forebrain development",24,15,12.97,759,"0.26571","0.49356","0.49356" +"GO:0045931","positive regulation of mitotic cell cycl...",10,5,5.4,1735,"0.71786","0.49513","0.49513" +"GO:0061458","reproductive system development",34,18,18.37,1647,"0.61992","0.49612","0.49612" +"GO:0007292","female gamete generation",22,14,11.89,746,"0.24557","0.49629","0.49629" +"GO:0035282","segmentation",12,7,6.48,1172,"0.49949","0.49908","0.49908" +"GO:0006644","phospholipid metabolic process",46,24,24.85,1679,"0.65809","0.49942","0.49942" +"GO:0033559","unsaturated fatty acid metabolic process",3,1,1.62,2251,"0.90301","0.50116","0.50116" +"GO:0043933","protein-containing complex subunit organ...",129,65,69.7,2052,"0.82742","0.42660","0.50119" +"GO:0033673","negative regulation of kinase activity",16,10,8.65,850,"0.33631","0.50156","0.50156" +"GO:0072384","organelle transport along microtubule",6,4,3.24,1066,"0.42194","0.50387","0.50387" +"GO:0051640","organelle localization",47,26,25.4,1154,"0.48920","0.50503","0.50503" +"GO:0003279","cardiac septum development",3,2,1.62,1372,"0.56038","0.50666","0.50666" +"GO:0021872","forebrain generation of neurons",3,2,1.62,1373,"0.56038","0.50666","0.50666" +"GO:0032368","regulation of lipid transport",3,2,1.62,1374,"0.56038","0.50666","0.50666" +"GO:0032370","positive regulation of lipid transport",3,2,1.62,1375,"0.56038","0.50666","0.50666" +"GO:0035904","aorta development",3,2,1.62,1376,"0.56038","0.50666","0.50666" +"GO:0048844","artery morphogenesis",3,2,1.62,1377,"0.56038","0.50666","0.50666" +"GO:0071542","dopaminergic neuron differentiation",3,2,1.62,1378,"0.56038","0.50666","0.50666" +"GO:1905952","regulation of lipid localization",3,2,1.62,1379,"0.56038","0.50666","0.50666" +"GO:1905954","positive regulation of lipid localizatio...",3,2,1.62,1380,"0.56038","0.50666","0.50666" +"GO:0098542","defense response to other organism",24,12,12.97,1776,"0.72781","0.50759","0.50759" +"GO:0032011","ARF protein signal transduction",5,3,2.7,1488,"0.57534","0.50774","0.50774" +"GO:0032012","regulation of ARF protein signal transdu...",5,3,2.7,1489,"0.57534","0.50774","0.50774" +"GO:0007274","neuromuscular synaptic transmission",4,2,2.16,1866,"0.74559","0.50800","0.50800" +"GO:0007616","long-term memory",4,3,2.16,981,"0.37516","0.50800","0.50800" +"GO:0001843","neural tube closure",10,6,5.4,1144,"0.47921","0.50868","0.50868" +"GO:0060606","tube closure",10,6,5.4,1145,"0.47921","0.50868","0.50868" +"GO:0016239","positive regulation of macroautophagy",4,3,2.16,982,"0.37516","0.50896","0.50896" +"GO:2000058","regulation of ubiquitin-dependent protei...",9,5,4.86,1607,"0.59853","0.50970","0.50970" +"GO:0016458","gene silencing",15,7,8.1,2000,"0.79799","0.51016","0.51016" +"GO:0046545","development of primary female sexual cha...",5,3,2.7,1490,"0.57534","0.51094","0.51094" +"GO:0046660","female sex differentiation",5,3,2.7,1491,"0.57534","0.51094","0.51094" +"GO:0060341","regulation of cellular localization",49,28,26.48,1002,"0.38491","0.51185","0.51185" +"GO:0044837","actomyosin contractile ring organization",3,1,1.62,2252,"0.90301","0.51190","0.51190" +"GO:0047496","vesicle transport along microtubule",3,2,1.62,1381,"0.56038","0.51190","0.51190" +"GO:0099518","vesicle cytoskeletal trafficking",3,2,1.62,1382,"0.56038","0.51190","0.51190" +"GO:0006040","amino sugar metabolic process",33,28,17.83,5,"0.00018","6.2e-07","0.51248" +"GO:1901071","glucosamine-containing compound metaboli...",33,28,17.83,6,"0.00018","6.2e-07","0.51248" +"GO:0009395","phospholipid catabolic process",6,3,3.24,1785,"0.72874","0.51322","0.51322" +"GO:0046503","glycerolipid catabolic process",6,3,3.24,1786,"0.72874","0.51322","0.51322" +"GO:0060348","bone development",9,5,4.86,1608,"0.59853","0.51417","0.51417" +"GO:0090090","negative regulation of canonical Wnt sig...",9,6,4.86,863,"0.33898","0.51417","0.51417" +"GO:0042180","cellular ketone metabolic process",6,2,3.24,2438,"0.92428","0.51440","0.51440" +"GO:0008643","carbohydrate transport",8,5,4.32,1102,"0.45434","0.51533","0.51533" +"GO:0007215","glutamate receptor signaling pathway",10,7,5.4,744,"0.24549","0.51625","0.51625" +"GO:0030258","lipid modification",19,8,10.27,2214,"0.89930","0.51708","0.51708" +"GO:0052652","cyclic purine nucleotide metabolic proce...",7,4,3.78,1561,"0.58774","0.51757","0.51757" +"GO:0015695","organic cation transport",5,3,2.7,1492,"0.57534","0.51844","0.51844" +"GO:0014046","dopamine secretion",3,2,1.62,1383,"0.56038","0.51853","0.51853" +"GO:0014059","regulation of dopamine secretion",3,2,1.62,1384,"0.56038","0.51853","0.51853" +"GO:0015844","monoamine transport",3,2,1.62,1385,"0.56038","0.51853","0.51853" +"GO:0015872","dopamine transport",3,2,1.62,1386,"0.56038","0.51853","0.51853" +"GO:0031338","regulation of vesicle fusion",3,1,1.62,2253,"0.90301","0.51853","0.51853" +"GO:0045921","positive regulation of exocytosis",3,2,1.62,1387,"0.56038","0.51853","0.51853" +"GO:0050432","catecholamine secretion",3,2,1.62,1388,"0.56038","0.51853","0.51853" +"GO:0050433","regulation of catecholamine secretion",3,2,1.62,1389,"0.56038","0.51853","0.51853" +"GO:0051048","negative regulation of secretion",3,2,1.62,1390,"0.56038","0.51853","0.51853" +"GO:0051937","catecholamine transport",3,2,1.62,1391,"0.56038","0.51853","0.51853" +"GO:1903531","negative regulation of secretion by cell",3,2,1.62,1392,"0.56038","0.51853","0.51853" +"GO:0060828","regulation of canonical Wnt signaling pa...",15,9,8.1,1030,"0.42178","0.51883","0.51883" +"GO:0055114","oxidation-reduction process",139,82,75.1,404,"0.13116","0.25353","0.51981" +"GO:0061515","myeloid cell development",9,4,4.86,2028,"0.81923","0.52024","0.52024" +"GO:0045667","regulation of osteoblast differentiation",6,3,3.24,1787,"0.72874","0.52027","0.52027" +"GO:0061418","regulation of transcription from RNA pol...",6,4,3.24,1067,"0.42194","0.52027","0.52027" +"GO:0019439","aromatic compound catabolic process",47,23,25.4,2015,"0.80404","0.52080","0.52080" +"GO:0048232","male gamete generation",34,17,18.37,1837,"0.74216","0.52082","0.52082" +"GO:0051302","regulation of cell division",6,3,3.24,1788,"0.72874","0.52145","0.52145" +"GO:0002026","regulation of the force of heart contrac...",7,4,3.78,1562,"0.58774","0.52265","0.52265" +"GO:0051014","actin filament severing",7,4,3.78,1563,"0.58774","0.52265","0.52265" +"GO:0045666","positive regulation of neuron differenti...",18,11,9.73,874,"0.35932","0.52301","0.52301" +"GO:0009886","post-embryonic animal morphogenesis",8,8,4.32,65,"0.00720","0.00575","0.52375" +"GO:0097164","ammonium ion metabolic process",13,8,7.02,1013,"0.39876","0.52461","0.52461" +"GO:0045787","positive regulation of cell cycle",12,6,6.48,1704,"0.71690","0.52507","0.52507" +"GO:0048701","embryonic cranial skeleton morphogenesis",5,3,2.7,1493,"0.57534","0.52596","0.52596" +"GO:0048704","embryonic skeletal system morphogenesis",5,3,2.7,1494,"0.57534","0.52596","0.52596" +"GO:0046488","phosphatidylinositol metabolic process",23,13,12.43,1156,"0.49013","0.52727","0.52727" +"GO:0002832","negative regulation of response to bioti...",3,2,1.62,1393,"0.56038","0.52769","0.52769" +"GO:0007379","segment specification",3,2,1.62,1394,"0.56038","0.52769","0.52769" +"GO:0051123","RNA polymerase II preinitiation complex ...",3,1,1.62,2254,"0.90301","0.52769","0.52769" +"GO:0048194","Golgi vesicle budding",6,4,3.24,1068,"0.42194","0.52773","0.52773" +"GO:0016579","protein deubiquitination",17,8,9.19,1996,"0.79495","0.52852","0.52852" +"GO:0070646","protein modification by small protein re...",17,8,9.19,1997,"0.79495","0.52852","0.52852" +"GO:0008585","female gonad development",3,2,1.62,1395,"0.56038","0.52908","0.52908" +"GO:0031334","positive regulation of protein complex a...",27,18,14.59,393,"0.12868","0.03849","0.52945" +"GO:0009583","detection of light stimulus",6,4,3.24,1069,"0.42194","0.53049","0.53049" +"GO:0051054","positive regulation of DNA metabolic pro...",9,5,4.86,1609,"0.59853","0.53068","0.53068" +"GO:1901361","organic cyclic compound catabolic proces...",50,25,27.02,1965,"0.76501","0.53276","0.53276" +"GO:0051716","cellular response to stimulus",574,321,310.15,577,"0.16128","0.10580","0.53419" +"GO:0043457","regulation of cellular respiration",3,1,1.62,2255,"0.90301","0.53437","0.53437" +"GO:0098813","nuclear chromosome segregation",20,9,10.81,2090,"0.85054","0.53471","0.53471" +"GO:1901990","regulation of mitotic cell cycle phase t...",9,4,4.86,2029,"0.81923","0.53502","0.53502" +"GO:0008361","regulation of cell size",11,7,5.94,893,"0.37172","0.53524","0.53524" +"GO:0048229","gametophyte development",5,3,2.7,1495,"0.57534","0.53567","0.53567" +"GO:0007525","somatic muscle development",4,3,2.16,983,"0.37516","0.53586","0.53586" +"GO:0032252","secretory granule localization",3,2,1.62,1396,"0.56038","0.53772","0.53772" +"GO:0032253","dense core granule localization",3,2,1.62,1397,"0.56038","0.53772","0.53772" +"GO:1901950","dense core granule transport",3,2,1.62,1398,"0.56038","0.53772","0.53772" +"GO:0033013","tetrapyrrole metabolic process",7,3,3.78,2056,"0.83449","0.53833","0.53833" +"GO:0001933","negative regulation of protein phosphory...",26,13,14.05,1827,"0.73058","0.53868","0.53868" +"GO:0001738","morphogenesis of a polarized epithelium",15,13,8.1,79,"0.00861","0.00264","0.53879" +"GO:0050777","negative regulation of immune response",3,1,1.62,2256,"0.90301","0.53883","0.53883" +"GO:0043487","regulation of RNA stability",3,2,1.62,1399,"0.56038","0.54023","0.54023" +"GO:0043488","regulation of mRNA stability",3,2,1.62,1400,"0.56038","0.54023","0.54023" +"GO:1902904","negative regulation of supramolecular fi...",15,8,8.1,1649,"0.62514","0.54065","0.54065" +"GO:0019722","calcium-mediated signaling",7,4,3.78,1564,"0.58774","0.54126","0.54126" +"GO:0035418","protein localization to synapse",7,4,3.78,1565,"0.58774","0.54181","0.54181" +"GO:1902806","regulation of cell cycle G1/S phase tran...",5,3,2.7,1496,"0.57534","0.54324","0.54324" +"GO:0051298","centrosome duplication",4,2,2.16,1867,"0.74559","0.54554","0.54554" +"GO:0034655","nucleobase-containing compound catabolic...",41,20,22.15,2005,"0.79930","0.54664","0.54664" +"GO:0009607","response to biotic stimulus",31,16,16.75,1687,"0.67586","0.54728","0.54728" +"GO:0032594","protein transport within lipid bilayer",5,3,2.7,1497,"0.57534","0.54758","0.54758" +"GO:0051346","negative regulation of hydrolase activit...",13,3,7.02,2781,"0.99502","0.54837","0.54837" +"GO:0046849","bone remodeling",4,1,2.16,2541,"0.95548","0.54845","0.54845" +"GO:0046850","regulation of bone remodeling",4,1,2.16,2542,"0.95548","0.54845","0.54845" +"GO:0032434","regulation of proteasomal ubiquitin-depe...",8,4,4.32,1753,"0.72114","0.54946","0.54946" +"GO:0031347","regulation of defense response",18,11,9.73,875,"0.35932","0.54996","0.54996" +"GO:1901987","regulation of cell cycle phase transitio...",11,5,5.94,2017,"0.80924","0.55147","0.55147" +"GO:0065008","regulation of biological quality",227,136,122.65,166,"0.03595","0.07308","0.55169" +"GO:0035994","response to muscle stretch",5,3,2.7,1498,"0.57534","0.55192","0.55192" +"GO:0035995","detection of muscle stretch",5,3,2.7,1499,"0.57534","0.55192","0.55192" +"GO:0055003","cardiac myofibril assembly",5,3,2.7,1500,"0.57534","0.55192","0.55192" +"GO:1903919","negative regulation of actin filament se...",5,3,2.7,1501,"0.57534","0.55192","0.55192" +"GO:1903920","positive regulation of actin filament se...",5,3,2.7,1502,"0.57534","0.55192","0.55192" +"GO:0030177","positive regulation of Wnt signaling pat...",5,3,2.7,1503,"0.57534","0.55192","0.55192" +"GO:0048865","stem cell fate commitment",5,3,2.7,1504,"0.57534","0.55192","0.55192" +"GO:0015908","fatty acid transport",6,3,3.24,1789,"0.72874","0.55223","0.55223" +"GO:0015909","long-chain fatty acid transport",6,3,3.24,1790,"0.72874","0.55223","0.55223" +"GO:0046717","acid secretion",6,3,3.24,1791,"0.72874","0.55223","0.55223" +"GO:0032007","negative regulation of TOR signaling",3,2,1.62,1401,"0.56038","0.55282","0.55282" +"GO:0007017","microtubule-based process",66,36,35.66,1206,"0.51736","0.55338","0.55338" +"GO:0021692","cerebellar Purkinje cell layer morphogen...",3,2,1.62,1402,"0.56038","0.55338","0.55338" +"GO:0021696","cerebellar cortex morphogenesis",3,2,1.62,1403,"0.56038","0.55338","0.55338" +"GO:0031648","protein destabilization",3,2,1.62,1404,"0.56038","0.55507","0.55507" +"GO:0006687","glycosphingolipid metabolic process",3,1,1.62,2257,"0.90301","0.55647","0.55647" +"GO:0006414","translational elongation",9,4,4.86,2030,"0.81923","0.55751","0.55751" +"GO:0046661","male sex differentiation",10,4,5.4,2190,"0.88681","0.55755","0.55755" +"GO:0007276","gamete generation",53,27,28.64,1772,"0.72480","0.55782","0.55782" +"GO:0030038","contractile actin filament bundle assemb...",7,5,3.78,822,"0.29758","0.55814","0.55814" +"GO:0043149","stress fiber assembly",7,5,3.78,823,"0.29758","0.55814","0.55814" +"GO:0008306","associative learning",9,6,4.86,864,"0.33898","0.55832","0.55832" +"GO:0031123","RNA 3'-end processing",6,2,3.24,2439,"0.92428","0.55858","0.55858" +"GO:0006517","protein deglycosylation",3,1,1.62,2258,"0.90301","0.55872","0.55872" +"GO:0051569","regulation of histone H3-K4 methylation",3,2,1.62,1405,"0.56038","0.55872","0.55872" +"GO:0034654","nucleobase-containing compound biosynthe...",387,196,209.1,2493,"0.93442","0.55885","0.55885" +"GO:0032501","multicellular organismal process",403,234,217.75,183,"0.04247","0.04979","0.55898" +"GO:0034219","carbohydrate transmembrane transport",7,4,3.78,1566,"0.58774","0.55998","0.55998" +"GO:0006909","phagocytosis",20,12,10.81,1000,"0.37993","0.56083","0.56083" +"GO:0031324","negative regulation of cellular metaboli...",119,65,64.3,1152,"0.48577","0.56109","0.56109" +"GO:0001816","cytokine production",21,13,11.35,833,"0.30817","0.56226","0.56226" +"GO:0006936","muscle contraction",23,13,12.43,1157,"0.49013","0.56287","0.56287" +"GO:2001235","positive regulation of apoptotic signali...",9,4,4.86,2031,"0.81923","0.56303","0.56303" +"GO:0009894","regulation of catabolic process",42,25,22.69,788,"0.28757","0.56350","0.56350" +"GO:0046700","heterocycle catabolic process",49,24,26.48,2016,"0.80570","0.56396","0.56396" +"GO:0000045","autophagosome assembly",7,4,3.78,1567,"0.58774","0.56440","0.56440" +"GO:1905037","autophagosome organization",7,4,3.78,1568,"0.58774","0.56440","0.56440" +"GO:0071229","cellular response to acid chemical",7,4,3.78,1569,"0.58774","0.56496","0.56496" +"GO:0021761","limbic system development",5,3,2.7,1505,"0.57534","0.56497","0.56497" +"GO:0021766","hippocampus development",5,3,2.7,1506,"0.57534","0.56497","0.56497" +"GO:0040017","positive regulation of locomotion",23,13,12.43,1158,"0.49013","0.56593","0.56593" +"GO:0015031","protein transport",115,64,62.14,1006,"0.39790","0.56831","0.56831" +"GO:0035220","wing disc development",8,8,4.32,66,"0.00720","0.00836","0.56843" +"GO:0002164","larval development",6,4,3.24,1070,"0.42194","0.56893","0.56893" +"GO:0035914","skeletal muscle cell differentiation",5,2,2.7,2106,"0.85910","0.56934","0.56934" +"GO:0043388","positive regulation of DNA binding",5,1,2.7,2672,"0.97957","0.56934","0.56934" +"GO:0048008","platelet-derived growth factor receptor ...",5,2,2.7,2107,"0.85910","0.56934","0.56934" +"GO:0051101","regulation of DNA binding",5,1,2.7,2673,"0.97957","0.56934","0.56934" +"GO:0006140","regulation of nucleotide metabolic proce...",3,1,1.62,2259,"0.90301","0.56968","0.56968" +"GO:1900542","regulation of purine nucleotide metaboli...",3,1,1.62,2260,"0.90301","0.56968","0.56968" +"GO:1903578","regulation of ATP metabolic process",3,1,1.62,2261,"0.90301","0.56968","0.56968" +"GO:0032543","mitochondrial translation",4,1,2.16,2543,"0.95548","0.56986","0.56986" +"GO:0140053","mitochondrial gene expression",4,1,2.16,2544,"0.95548","0.56986","0.56986" +"GO:0060968","regulation of gene silencing",6,4,3.24,1071,"0.42194","0.57052","0.57052" +"GO:0048513","animal organ development",207,127,111.85,107,"0.01605","0.00872","0.57074" +"GO:0035556","intracellular signal transduction",197,107,106.44,1164,"0.49732","0.57234","0.57234" +"GO:0006638","neutral lipid metabolic process",5,2,2.7,2108,"0.85910","0.57370","0.57370" +"GO:0006639","acylglycerol metabolic process",5,2,2.7,2109,"0.85910","0.57370","0.57370" +"GO:0002119","nematode larval development",4,2,2.16,1868,"0.74559","0.57474","0.57474" +"GO:0072009","nephron epithelium development",5,3,2.7,1507,"0.57534","0.57479","0.57479" +"GO:0072073","kidney epithelium development",5,3,2.7,1508,"0.57534","0.57479","0.57479" +"GO:0060627","regulation of vesicle-mediated transport",35,20,18.91,1075,"0.42219","0.57483","0.57483" +"GO:2001257","regulation of cation channel activity",18,11,9.73,876,"0.35932","0.57506","0.57506" +"GO:0010506","regulation of autophagy",16,10,8.65,851,"0.33631","0.57515","0.57515" +"GO:0001763","morphogenesis of a branching structure",11,9,5.94,245,"0.05709","0.00486","0.57584" +"GO:0010948","negative regulation of cell cycle proces...",10,7,5.4,745,"0.24549","0.57607","0.57607" +"GO:0006694","steroid biosynthetic process",12,6,6.48,1705,"0.71690","0.57614","0.57614" +"GO:0018130","heterocycle biosynthetic process",400,202,216.13,2524,"0.94536","0.57643","0.57643" +"GO:0071900","regulation of protein serine/threonine k...",17,10,9.19,1086,"0.44184","0.57728","0.57728" +"GO:0048477","oogenesis",20,12,10.81,1001,"0.37993","0.57833","0.57833" +"GO:0007548","sex differentiation",23,11,12.43,1982,"0.79133","0.57890","0.57890" +"GO:0007399","nervous system development",188,118,101.58,68,"0.00741","0.01121","0.57893" +"GO:0001510","RNA methylation",3,1,1.62,2262,"0.90301","0.57898","0.57898" +"GO:0030155","regulation of cell adhesion",15,12,8.1,165,"0.03571","0.03975","0.57953" +"GO:0030323","respiratory tube development",9,4,4.86,2032,"0.81923","0.57996","0.57996" +"GO:1905268","negative regulation of chromatin organiz...",9,5,4.86,1610,"0.59853","0.57996","0.57996" +"GO:0018230","peptidyl-L-cysteine S-palmitoylation",4,3,2.16,984,"0.37516","0.58158","0.58158" +"GO:0018231","peptidyl-S-diacylglycerol-L-cysteine bio...",4,3,2.16,985,"0.37516","0.58158","0.58158" +"GO:0140029","exocytic process",6,3,3.24,1792,"0.72874","0.58209","0.58209" +"GO:0001666","response to hypoxia",12,7,6.48,1173,"0.49949","0.58235","0.58235" +"GO:0036293","response to decreased oxygen levels",12,7,6.48,1174,"0.49949","0.58235","0.58235" +"GO:0070482","response to oxygen levels",12,7,6.48,1175,"0.49949","0.58235","0.58235" +"GO:0005976","polysaccharide metabolic process",5,2,2.7,2110,"0.85910","0.58244","0.58244" +"GO:0071897","DNA biosynthetic process",5,2,2.7,2111,"0.85910","0.58244","0.58244" +"GO:0031057","negative regulation of histone modificat...",6,3,3.24,1793,"0.72874","0.58449","0.58449" +"GO:0033962","cytoplasmic mRNA processing body assembl...",5,2,2.7,2112,"0.85910","0.58463","0.58463" +"GO:0016054","organic acid catabolic process",17,7,9.19,2409,"0.90506","0.58548","0.58548" +"GO:0046395","carboxylic acid catabolic process",17,7,9.19,2410,"0.90506","0.58548","0.58548" +"GO:0000018","regulation of DNA recombination",3,2,1.62,1406,"0.56038","0.58575","0.58575" +"GO:0045911","positive regulation of DNA recombination",3,2,1.62,1407,"0.56038","0.58575","0.58575" +"GO:0060688","regulation of morphogenesis of a branchi...",5,3,2.7,1509,"0.57534","0.58791","0.58791" +"GO:0110110","positive regulation of animal organ morp...",5,3,2.7,1510,"0.57534","0.58791","0.58791" +"GO:0014074","response to purine-containing compound",8,4,4.32,1754,"0.72114","0.58810","0.58810" +"GO:0032388","positive regulation of intracellular tra...",9,3,4.86,2505,"0.94413","0.58812","0.58812" +"GO:0033047","regulation of mitotic sister chromatid s...",3,1,1.62,2263,"0.90301","0.58829","0.58829" +"GO:0051784","negative regulation of nuclear division",3,2,1.62,1408,"0.56038","0.58829","0.58829" +"GO:0051304","chromosome separation",3,0,1.62,2869,"1.00000","0.58829","0.58829" +"GO:0051306","mitotic sister chromatid separation",3,0,1.62,2870,"1.00000","0.58829","0.58829" +"GO:0007618","mating",4,2,2.16,1869,"0.74559","0.58842","0.58842" +"GO:0007169","transmembrane receptor protein tyrosine ...",23,10,12.43,2209,"0.89061","0.58965","0.58965" +"GO:0000226","microtubule cytoskeleton organization",35,19,18.91,1227,"0.55748","0.59021","0.59021" +"GO:0009072","aromatic amino acid family metabolic pro...",7,5,3.78,824,"0.29758","0.59082","0.59082" +"GO:0019438","aromatic compound biosynthetic process",396,200,213.97,2504,"0.94411","0.59152","0.59152" +"GO:0071559","response to transforming growth factor b...",17,9,9.19,1658,"0.63273","0.59155","0.59155" +"GO:0071560","cellular response to transforming growth...",17,9,9.19,1659,"0.63273","0.59155","0.59155" +"GO:0007565","female pregnancy",12,7,6.48,1176,"0.49949","0.59310","0.59310" +"GO:0043408","regulation of MAPK cascade",29,17,15.67,997,"0.37982","0.59387","0.59387" +"GO:0016051","carbohydrate biosynthetic process",13,7,7.02,1641,"0.61700","0.59553","0.59553" +"GO:0072331","signal transduction by p53 class mediato...",9,5,4.86,1611,"0.59853","0.59612","0.59612" +"GO:0002064","epithelial cell development",21,12,11.35,1126,"0.47560","0.59659","0.59659" +"GO:0048869","cellular developmental process",241,142,130.22,254,"0.06210","0.10543","0.59695" +"GO:0007229","integrin-mediated signaling pathway",7,4,3.78,1570,"0.58774","0.59766","0.59766" +"GO:0006892","post-Golgi vesicle-mediated transport",6,4,3.24,1072,"0.42194","0.59887","0.59887" +"GO:0044272","sulfur compound biosynthetic process",6,2,3.24,2440,"0.92428","0.59927","0.59927" +"GO:0045184","establishment of protein localization",121,67,65.38,1019,"0.41787","0.59997","0.59997" +"GO:1903828","negative regulation of cellular protein ...",6,4,3.24,1073,"0.42194","0.60007","0.60007" +"GO:1990778","protein localization to cell periphery",18,10,9.73,1217,"0.54500","0.60025","0.60025" +"GO:0030252","growth hormone secretion",3,2,1.62,1409,"0.56038","0.60185","0.60185" +"GO:0048791","calcium ion-regulated exocytosis of neur...",3,1,1.62,2264,"0.90301","0.60185","0.60185" +"GO:1990926","short-term synaptic potentiation",3,1,1.62,2265,"0.90301","0.60185","0.60185" +"GO:0051130","positive regulation of cellular componen...",88,53,47.55,425,"0.14029","0.23648","0.60308" +"GO:0002218","activation of innate immune response",8,5,4.32,1103,"0.45434","0.60334","0.60334" +"GO:0002221","pattern recognition receptor signaling p...",8,5,4.32,1104,"0.45434","0.60334","0.60334" +"GO:0002758","innate immune response-activating signal...",8,5,4.32,1105,"0.45434","0.60334","0.60334" +"GO:0048048","embryonic eye morphogenesis",4,3,2.16,986,"0.37516","0.60408","0.60408" +"GO:1901362","organic cyclic compound biosynthetic pro...",410,207,221.53,2529,"0.94837","0.60465","0.60465" +"GO:0120036","plasma membrane bounded cell projection ...",126,76,68.08,333,"0.08630","0.16336","0.60493" +"GO:0030517","negative regulation of axon extension",4,2,2.16,1870,"0.74559","0.60702","0.60702" +"GO:0032350","regulation of hormone metabolic process",4,2,2.16,1871,"0.74559","0.60702","0.60702" +"GO:0008645","hexose transmembrane transport",6,3,3.24,1794,"0.72874","0.60847","0.60847" +"GO:0010827","regulation of glucose transmembrane tran...",6,3,3.24,1795,"0.72874","0.60847","0.60847" +"GO:0015749","monosaccharide transmembrane transport",6,3,3.24,1796,"0.72874","0.60847","0.60847" +"GO:1904659","glucose transmembrane transport",6,3,3.24,1797,"0.72874","0.60847","0.60847" +"GO:0042755","eating behavior",3,1,1.62,2266,"0.90301","0.60948","0.60948" +"GO:0045840","positive regulation of mitotic nuclear d...",3,2,1.62,1410,"0.56038","0.60948","0.60948" +"GO:0006612","protein targeting to membrane",7,4,3.78,1571,"0.58774","0.60951","0.60951" +"GO:0010629","negative regulation of gene expression",98,55,52.95,994,"0.37536","0.60978","0.60978" +"GO:0032309","icosanoid secretion",5,3,2.7,1511,"0.57534","0.60980","0.60980" +"GO:0050482","arachidonic acid secretion",5,3,2.7,1512,"0.57534","0.60980","0.60980" +"GO:0071715","icosanoid transport",5,3,2.7,1513,"0.57534","0.60980","0.60980" +"GO:1901571","fatty acid derivative transport",5,3,2.7,1514,"0.57534","0.60980","0.60980" +"GO:1903963","arachidonate transport",5,3,2.7,1515,"0.57534","0.60980","0.60980" +"GO:0043543","protein acylation",21,11,11.35,1673,"0.64659","0.61021","0.61021" +"GO:0010941","regulation of cell death",67,38,36.2,894,"0.37469","0.61143","0.61143" +"GO:0051899","membrane depolarization",6,4,3.24,1074,"0.42194","0.61167","0.61167" +"GO:0045087","innate immune response",23,12,12.43,1677,"0.65298","0.61321","0.61321" +"GO:1901989","positive regulation of cell cycle phase ...",4,2,2.16,1872,"0.74559","0.61387","0.61387" +"GO:0022607","cellular component assembly",212,115,114.55,1181,"0.50342","0.54567","0.61459" +"GO:0051222","positive regulation of protein transport",18,10,9.73,1218,"0.54500","0.61460","0.61460" +"GO:1904951","positive regulation of establishment of ...",18,10,9.73,1219,"0.54500","0.61460","0.61460" +"GO:0048511","rhythmic process",24,18,12.97,143,"0.02893","0.02559","0.61499" +"GO:0051173","positive regulation of nitrogen compound...",118,66,63.76,887,"0.37166","0.61620","0.61620" +"GO:0051402","neuron apoptotic process",12,6,6.48,1706,"0.71690","0.61687","0.61687" +"GO:0070997","neuron death",12,6,6.48,1707,"0.71690","0.61687","0.61687" +"GO:0042886","amide transport",117,65,63.22,1014,"0.40464","0.61734","0.61734" +"GO:0043254","regulation of protein complex assembly",36,22,19.45,747,"0.24610","0.07414","0.61776" +"GO:0050909","sensory perception of taste",4,1,2.16,2545,"0.95548","0.61779","0.61779" +"GO:0009893","positive regulation of metabolic process",136,76,73.48,879,"0.36138","0.61803","0.61803" +"GO:0072520","seminiferous tubule development",3,1,1.62,2267,"0.90301","0.61909","0.61909" +"GO:0072329","monocarboxylic acid catabolic process",7,1,3.78,2783,"0.99571","0.62210","0.62210" +"GO:0044242","cellular lipid catabolic process",16,6,8.65,2498,"0.94347","0.62223","0.62223" +"GO:0072659","protein localization to plasma membrane",15,9,8.1,1031,"0.42178","0.62274","0.62274" +"GO:0006486","protein glycosylation",38,21,20.53,1185,"0.50594","0.62277","0.62277" +"GO:0043413","macromolecule glycosylation",38,21,20.53,1186,"0.50594","0.62277","0.62277" +"GO:0070085","glycosylation",38,21,20.53,1187,"0.50594","0.62277","0.62277" +"GO:0010950","positive regulation of endopeptidase act...",4,2,2.16,1873,"0.74559","0.62366","0.62366" +"GO:2001056","positive regulation of cysteine-type end...",4,2,2.16,1874,"0.74559","0.62366","0.62366" +"GO:0006897","endocytosis",53,29,28.64,1193,"0.51665","0.62400","0.62400" +"GO:0006672","ceramide metabolic process",4,3,2.16,987,"0.37516","0.62464","0.62464" +"GO:0048565","digestive tract development",10,6,5.4,1146,"0.47921","0.62873","0.62873" +"GO:0055123","digestive system development",10,6,5.4,1147,"0.47921","0.62873","0.62873" +"GO:0007076","mitotic chromosome condensation",3,1,1.62,2268,"0.90301","0.62925","0.62925" +"GO:0015672","monovalent inorganic cation transport",61,36,32.96,752,"0.25514","0.52047","0.62943" +"GO:0043086","negative regulation of catalytic activit...",32,15,17.29,2085,"0.84042","0.62959","0.62959" +"GO:1901799","negative regulation of proteasomal prote...",3,2,1.62,1411,"0.56038","0.63038","0.63038" +"GO:0042058","regulation of epidermal growth factor re...",5,3,2.7,1516,"0.57534","0.63059","0.63059" +"GO:0042059","negative regulation of epidermal growth ...",5,3,2.7,1517,"0.57534","0.63059","0.63059" +"GO:1901184","regulation of ERBB signaling pathway",5,3,2.7,1518,"0.57534","0.63059","0.63059" +"GO:1901185","negative regulation of ERBB signaling pa...",5,3,2.7,1519,"0.57534","0.63059","0.63059" +"GO:0002011","morphogenesis of an epithelial sheet",4,3,2.16,988,"0.37516","0.63148","0.63148" +"GO:0008631","intrinsic apoptotic signaling pathway in...",4,3,2.16,989,"0.37516","0.63148","0.63148" +"GO:0010594","regulation of endothelial cell migration",4,3,2.16,990,"0.37516","0.63148","0.63148" +"GO:0043535","regulation of blood vessel endothelial c...",4,3,2.16,991,"0.37516","0.63148","0.63148" +"GO:2000147","positive regulation of cell motility",17,10,9.19,1087,"0.44184","0.63165","0.63165" +"GO:0070167","regulation of biomineral tissue developm...",5,2,2.7,2113,"0.85910","0.63168","0.63168" +"GO:0001818","negative regulation of cytokine producti...",4,2,2.16,1875,"0.74559","0.63344","0.63344" +"GO:0048638","regulation of developmental growth",17,9,9.19,1660,"0.63273","0.63378","0.63378" +"GO:0001819","positive regulation of cytokine producti...",13,7,7.02,1642,"0.61700","0.63414","0.63414" +"GO:0030521","androgen receptor signaling pathway",3,1,1.62,2269,"0.90301","0.63517","0.63517" +"GO:0051348","negative regulation of transferase activ...",18,10,9.73,1220,"0.54500","0.63633","0.63633" +"GO:0006904","vesicle docking involved in exocytosis",5,2,2.7,2114,"0.85910","0.63714","0.63714" +"GO:0048747","muscle fiber development",3,2,1.62,1412,"0.56038","0.63715","0.63715" +"GO:0030511","positive regulation of transforming grow...",4,2,2.16,1876,"0.74559","0.63734","0.63734" +"GO:0033002","muscle cell proliferation",4,2,2.16,1877,"0.74559","0.63734","0.63734" +"GO:1903846","positive regulation of cellular response...",4,2,2.16,1878,"0.74559","0.63734","0.63734" +"GO:0010466","negative regulation of peptidase activit...",4,0,2.16,2871,"1.00000","0.63734","0.63734" +"GO:0034105","positive regulation of tissue remodeling",3,2,1.62,1413,"0.56038","0.63743","0.63743" +"GO:0031109","microtubule polymerization or depolymeri...",9,4,4.86,2033,"0.81923","0.63807","0.63807" +"GO:0046785","microtubule polymerization",9,4,4.86,2034,"0.81923","0.63807","0.63807" +"GO:0045668","negative regulation of osteoblast differ...",4,3,2.16,992,"0.37516","0.63832","0.63832" +"GO:0032436","positive regulation of proteasomal ubiqu...",6,2,3.24,2441,"0.92428","0.63843","0.63843" +"GO:2000060","positive regulation of ubiquitin-depende...",6,2,3.24,2442,"0.92428","0.63843","0.63843" +"GO:0031344","regulation of cell projection organizati...",53,31,28.64,827,"0.30300","0.63865","0.63865" +"GO:0120035","regulation of plasma membrane bounded ce...",53,31,28.64,828,"0.30300","0.63865","0.63865" +"GO:0044282","small molecule catabolic process",23,10,12.43,2210,"0.89061","0.63869","0.63869" +"GO:0035107","appendage morphogenesis",16,11,8.65,612,"0.17581","0.12267","0.64036" +"GO:0048736","appendage development",16,11,8.65,613,"0.17581","0.12267","0.64036" +"GO:0006213","pyrimidine nucleoside metabolic process",3,1,1.62,2270,"0.90301","0.64081","0.64081" +"GO:0046131","pyrimidine ribonucleoside metabolic proc...",3,1,1.62,2271,"0.90301","0.64081","0.64081" +"GO:0007029","endoplasmic reticulum organization",9,4,4.86,2035,"0.81923","0.64116","0.64116" +"GO:0046461","neutral lipid catabolic process",4,2,2.16,1879,"0.74559","0.64125","0.64125" +"GO:0046464","acylglycerol catabolic process",4,2,2.16,1880,"0.74559","0.64125","0.64125" +"GO:0046475","glycerophospholipid catabolic process",4,2,2.16,1881,"0.74559","0.64125","0.64125" +"GO:0051703","intraspecies interaction between organis...",9,6,4.86,865,"0.33898","0.64279","0.64279" +"GO:0006699","bile acid biosynthetic process",4,2,2.16,1882,"0.74559","0.64320","0.64320" +"GO:0008206","bile acid metabolic process",4,2,2.16,1883,"0.74559","0.64320","0.64320" +"GO:0035108","limb morphogenesis",9,4,4.86,2036,"0.81923","0.64425","0.64425" +"GO:0060173","limb development",9,4,4.86,2037,"0.81923","0.64425","0.64425" +"GO:0007444","imaginal disc development",11,9,5.94,246,"0.05709","0.03006","0.64550" +"GO:0031111","negative regulation of microtubule polym...",3,2,1.62,1414,"0.56038","0.64785","0.64785" +"GO:0032596","protein transport into membrane raft",3,2,1.62,1415,"0.56038","0.64785","0.64785" +"GO:0031325","positive regulation of cellular metaboli...",126,70,68.08,1007,"0.39813","0.64801","0.64801" +"GO:0032465","regulation of cytokinesis",4,2,2.16,1884,"0.74559","0.64807","0.64807" +"GO:0031214","biomineral tissue development",8,4,4.32,1755,"0.72114","0.64900","0.64900" +"GO:0000271","polysaccharide biosynthetic process",4,1,2.16,2546,"0.95548","0.64905","0.64905" +"GO:0044264","cellular polysaccharide metabolic proces...",4,2,2.16,1885,"0.74559","0.64905","0.64905" +"GO:0015833","peptide transport",116,64,62.68,1083,"0.43857","0.65051","0.65051" +"GO:0031099","regeneration",9,4,4.86,2038,"0.81923","0.65108","0.65108" +"GO:0007528","neuromuscular junction development",8,5,4.32,1106,"0.45434","0.65176","0.65176" +"GO:0023051","regulation of signaling",200,112,108.06,830,"0.30608","0.65456","0.65456" +"GO:0010563","negative regulation of phosphorus metabo...",32,16,17.29,1833,"0.73923","0.65456","0.65456" +"GO:0045936","negative regulation of phosphate metabol...",32,16,17.29,1834,"0.73923","0.65456","0.65456" +"GO:0006508","proteolysis",165,86,89.15,1771,"0.72298","0.65683","0.65683" +"GO:0030149","sphingolipid catabolic process",4,2,2.16,1886,"0.74559","0.65683","0.65683" +"GO:0046466","membrane lipid catabolic process",4,2,2.16,1887,"0.74559","0.65683","0.65683" +"GO:0002097","tRNA wobble base modification",3,2,1.62,1416,"0.56038","0.65740","0.65740" +"GO:0002098","tRNA wobble uridine modification",3,2,1.62,1417,"0.56038","0.65740","0.65740" +"GO:0001570","vasculogenesis",5,3,2.7,1520,"0.57534","0.65893","0.65893" +"GO:0040019","positive regulation of embryonic develop...",5,2,2.7,2115,"0.85910","0.65893","0.65893" +"GO:1901137","carbohydrate derivative biosynthetic pro...",85,48,45.93,885,"0.36485","0.65955","0.65955" +"GO:1901019","regulation of calcium ion transmembrane ...",4,1,2.16,2547,"0.95548","0.65975","0.65975" +"GO:1901021","positive regulation of calcium ion trans...",4,1,2.16,2548,"0.95548","0.65975","0.65975" +"GO:1904427","positive regulation of calcium ion trans...",4,1,2.16,2549,"0.95548","0.65975","0.65975" +"GO:0046467","membrane lipid biosynthetic process",8,4,4.32,1756,"0.72114","0.66001","0.66001" +"GO:0030707","ovarian follicle cell development",10,5,5.4,1736,"0.71786","0.66421","0.66421" +"GO:0007275","multicellular organism development",343,201,185.33,175,"0.03806","0.05619","0.66493" +"GO:0001754","eye photoreceptor cell differentiation",14,7,7.56,1719,"0.71733","0.66515","0.66515" +"GO:0001765","membrane raft assembly",3,2,1.62,1418,"0.56038","0.66580","0.66580" +"GO:0001963","synaptic transmission, dopaminergic",3,2,1.62,1419,"0.56038","0.66580","0.66580" +"GO:0031579","membrane raft organization",3,2,1.62,1420,"0.56038","0.66580","0.66580" +"GO:0009062","fatty acid catabolic process",6,0,3.24,2872,"1.00000","0.66585","0.66585" +"GO:0019395","fatty acid oxidation",6,0,3.24,2873,"1.00000","0.66585","0.66585" +"GO:0034440","lipid oxidation",6,0,3.24,2874,"1.00000","0.66585","0.66585" +"GO:0006937","regulation of muscle contraction",11,6,5.94,1627,"0.60819","0.66861","0.66861" +"GO:0009791","post-embryonic development",25,18,13.51,216,"0.05178","0.03388","0.66953" +"GO:0015893","drug transport",14,8,7.56,1203,"0.51668","0.66982","0.66982" +"GO:0009411","response to UV",7,3,3.78,2057,"0.83449","0.67164","0.67164" +"GO:0006778","porphyrin-containing compound metabolic ...",4,1,2.16,2550,"0.95548","0.67235","0.67235" +"GO:0030030","cell projection organization",129,78,69.7,273,"0.07809","0.20247","0.67265" +"GO:0032943","mononuclear cell proliferation",5,3,2.7,1521,"0.57534","0.67302","0.67302" +"GO:0032944","regulation of mononuclear cell prolifera...",5,3,2.7,1522,"0.57534","0.67302","0.67302" +"GO:0046651","lymphocyte proliferation",5,3,2.7,1523,"0.57534","0.67302","0.67302" +"GO:0050670","regulation of lymphocyte proliferation",5,3,2.7,1524,"0.57534","0.67302","0.67302" +"GO:0070661","leukocyte proliferation",5,3,2.7,1525,"0.57534","0.67302","0.67302" +"GO:0070663","regulation of leukocyte proliferation",5,3,2.7,1526,"0.57534","0.67302","0.67302" +"GO:0016485","protein processing",11,6,5.94,1628,"0.60819","0.67357","0.67357" +"GO:0043547","positive regulation of GTPase activity",16,8,8.65,1746,"0.71861","0.67493","0.67493" +"GO:0009892","negative regulation of metabolic process",146,80,78.89,1118,"0.45904","0.67505","0.67505" +"GO:0006357","regulation of transcription by RNA polym...",90,51,48.63,866,"0.34438","0.67546","0.67546" +"GO:0048518","positive regulation of biological proces...",320,180,172.9,662,"0.21407","0.36778","0.67662" +"GO:0009141","nucleoside triphosphate metabolic proces...",41,22,22.15,1542,"0.58316","0.67714","0.67714" +"GO:0051258","protein polymerization",34,20,18.37,872,"0.34957","0.16124","0.67719" +"GO:0043648","dicarboxylic acid metabolic process",7,4,3.78,1572,"0.58774","0.67731","0.67731" +"GO:0001756","somitogenesis",5,2,2.7,2116,"0.85910","0.67734","0.67734" +"GO:0006901","vesicle coating",5,3,2.7,1527,"0.57534","0.67734","0.67734" +"GO:0061053","somite development",5,2,2.7,2117,"0.85910","0.67734","0.67734" +"GO:1905114","cell surface receptor signaling pathway ...",35,20,18.91,1076,"0.42219","0.67772","0.67772" +"GO:0030518","intracellular steroid hormone receptor s...",10,4,5.4,2191,"0.88681","0.67800","0.67800" +"GO:0030970","retrograde protein transport, ER to cyto...",3,1,1.62,2272,"0.90301","0.67808","0.67808" +"GO:1903513","endoplasmic reticulum to cytosol transpo...",3,1,1.62,2273,"0.90301","0.67808","0.67808" +"GO:0090257","regulation of muscle system process",13,7,7.02,1643,"0.61700","0.67869","0.67869" +"GO:0008283","cell proliferation",78,46,42.15,665,"0.21977","0.10239","0.68319" +"GO:0006941","striated muscle contraction",10,5,5.4,1737,"0.71786","0.68410","0.68410" +"GO:0010605","negative regulation of macromolecule met...",137,76,74.02,1008,"0.39813","0.68515","0.68515" +"GO:0007338","single fertilization",3,2,1.62,1421,"0.56038","0.68531","0.68531" +"GO:0007167","enzyme linked receptor protein signaling...",42,21,22.69,1961,"0.75378","0.68597","0.68597" +"GO:0010799","regulation of peptidyl-threonine phospho...",4,2,2.16,1888,"0.74559","0.68681","0.68681" +"GO:0018107","peptidyl-threonine phosphorylation",4,2,2.16,1889,"0.74559","0.68681","0.68681" +"GO:0015740","C4-dicarboxylate transport",4,3,2.16,993,"0.37516","0.68681","0.68681" +"GO:0098657","import into cell",57,31,30.8,1211,"0.53330","0.68696","0.68696" +"GO:0009555","pollen development",3,1,1.62,2274,"0.90301","0.68781","0.68781" +"GO:0044088","regulation of vacuole organization",3,1,1.62,2275,"0.90301","0.68809","0.68809" +"GO:2000785","regulation of autophagosome assembly",3,1,1.62,2276,"0.90301","0.68809","0.68809" +"GO:0007269","neurotransmitter secretion",12,7,6.48,1177,"0.49949","0.68993","0.68993" +"GO:0099643","signal release from synapse",12,7,6.48,1178,"0.49949","0.68993","0.68993" +"GO:0032502","developmental process",394,229,212.89,182,"0.04241","0.05623","0.69074" +"GO:0045638","negative regulation of myeloid cell diff...",5,2,2.7,2118,"0.85910","0.69240","0.69240" +"GO:1903707","negative regulation of hemopoiesis",5,2,2.7,2119,"0.85910","0.69240","0.69240" +"GO:0090382","phagosome maturation",4,2,2.16,1890,"0.74559","0.69257","0.69257" +"GO:0051272","positive regulation of cellular componen...",18,11,9.73,877,"0.35932","0.69267","0.69267" +"GO:0044087","regulation of cellular component biogene...",80,49,43.23,374,"0.11418","0.24122","0.69296" +"GO:1902808","positive regulation of cell cycle G1/S p...",3,1,1.62,2277,"0.90301","0.69362","0.69362" +"GO:0051235","maintenance of location",17,13,9.19,210,"0.05016","0.03384","0.69416" +"GO:0006888","ER to Golgi vesicle-mediated transport",14,7,7.56,1720,"0.71733","0.69483","0.69483" +"GO:0045010","actin nucleation",15,11,8.1,370,"0.10528","0.02211","0.69493" +"GO:0006505","GPI anchor metabolic process",7,3,3.78,2058,"0.83449","0.69530","0.69530" +"GO:0006661","phosphatidylinositol biosynthetic proces...",7,3,3.78,2059,"0.83449","0.69530","0.69530" +"GO:0009247","glycolipid biosynthetic process",7,3,3.78,2060,"0.83449","0.69530","0.69530" +"GO:0009410","response to xenobiotic stimulus",8,5,4.32,1107,"0.45434","0.69686","0.69686" +"GO:0071786","endoplasmic reticulum tubular network or...",3,1,1.62,2278,"0.90301","0.69694","0.69694" +"GO:0051205","protein insertion into membrane",3,0,1.62,2875,"1.00000","0.69694","0.69694" +"GO:0010604","positive regulation of macromolecule met...",124,70,67,841,"0.32269","0.69820","0.69820" +"GO:0031329","regulation of cellular catabolic process",36,21,19.45,880,"0.36372","0.69888","0.69888" +"GO:0035065","regulation of histone acetylation",4,2,2.16,1891,"0.74559","0.69926","0.69926" +"GO:0043967","histone H4 acetylation",4,1,2.16,2551,"0.95548","0.69926","0.69926" +"GO:1901983","regulation of protein acetylation",4,2,2.16,1892,"0.74559","0.69926","0.69926" +"GO:2000756","regulation of peptidyl-lysine acetylatio...",4,2,2.16,1893,"0.74559","0.69926","0.69926" +"GO:0007050","cell cycle arrest",4,1,2.16,2552,"0.95548","0.70022","0.70022" +"GO:0044772","mitotic cell cycle phase transition",20,8,10.81,2486,"0.93182","0.70051","0.70051" +"GO:0010821","regulation of mitochondrion organization",9,4,4.86,2039,"0.81923","0.70051","0.70051" +"GO:0022613","ribonucleoprotein complex biogenesis",29,5,15.67,2843,"0.99999","0.70088","0.70088" +"GO:2000736","regulation of stem cell differentiation",8,4,4.32,1757,"0.72114","0.70092","0.70092" +"GO:0033865","nucleoside bisphosphate metabolic proces...",7,2,3.78,2605,"0.96019","0.70216","0.70216" +"GO:0033875","ribonucleoside bisphosphate metabolic pr...",7,2,3.78,2606,"0.96019","0.70216","0.70216" +"GO:0034032","purine nucleoside bisphosphate metabolic...",7,2,3.78,2607,"0.96019","0.70216","0.70216" +"GO:0031101","fin regeneration",4,2,2.16,1894,"0.74559","0.70308","0.70308" +"GO:0048863","stem cell differentiation",17,9,9.19,1661,"0.63273","0.70606","0.70606" +"GO:0006753","nucleoside phosphate metabolic process",73,39,39.44,1596,"0.59001","0.70613","0.70613" +"GO:0009119","ribonucleoside metabolic process",8,3,4.32,2224,"0.90250","0.70631","0.70631" +"GO:0042742","defense response to bacterium",11,5,5.94,2018,"0.80924","0.70673","0.70673" +"GO:0006766","vitamin metabolic process",4,1,2.16,2553,"0.95548","0.70689","0.70689" +"GO:0006730","one-carbon metabolic process",5,2,2.7,2120,"0.85910","0.70734","0.70734" +"GO:0042326","negative regulation of phosphorylation",29,15,15.67,1683,"0.67049","0.70825","0.70825" +"GO:0051321","meiotic cell cycle",19,11,10.27,1122,"0.45962","0.70871","0.70871" +"GO:1903046","meiotic cell cycle process",19,11,10.27,1123,"0.45962","0.70871","0.70871" +"GO:0051168","nuclear export",4,1,2.16,2554,"0.95548","0.70879","0.70879" +"GO:0045471","response to ethanol",10,4,5.4,2192,"0.88681","0.70982","0.70982" +"GO:0007422","peripheral nervous system development",3,1,1.62,2279,"0.90301","0.71013","0.71013" +"GO:0003143","embryonic heart tube morphogenesis",11,6,5.94,1629,"0.60819","0.71017","0.71017" +"GO:0035050","embryonic heart tube development",11,6,5.94,1630,"0.60819","0.71017","0.71017" +"GO:0061371","determination of heart left/right asymme...",11,6,5.94,1631,"0.60819","0.71017","0.71017" +"GO:0045995","regulation of embryonic development",9,3,4.86,2506,"0.94413","0.71114","0.71114" +"GO:0018095","protein polyglutamylation",3,2,1.62,1422,"0.56038","0.71150","0.71150" +"GO:0045088","regulation of innate immune response",15,8,8.1,1650,"0.62514","0.71156","0.71156" +"GO:0022622","root system development",4,2,2.16,1895,"0.74559","0.71163","0.71163" +"GO:0048364","root development",4,2,2.16,1896,"0.74559","0.71163","0.71163" +"GO:0032868","response to insulin",7,4,3.78,1573,"0.58774","0.71205","0.71205" +"GO:0032869","cellular response to insulin stimulus",7,4,3.78,1574,"0.58774","0.71205","0.71205" +"GO:0006119","oxidative phosphorylation",12,6,6.48,1708,"0.71690","0.71253","0.71253" +"GO:0006635","fatty acid beta-oxidation",5,0,2.7,2876,"1.00000","0.71265","0.71265" +"GO:0048659","smooth muscle cell proliferation",3,1,1.62,2280,"0.90301","0.71341","0.71341" +"GO:0048660","regulation of smooth muscle cell prolife...",3,1,1.62,2281,"0.90301","0.71341","0.71341" +"GO:0051145","smooth muscle cell differentiation",3,1,1.62,2282,"0.90301","0.71341","0.71341" +"GO:0010640","regulation of platelet-derived growth fa...",3,0,1.62,2877,"1.00000","0.71341","0.71341" +"GO:0010642","negative regulation of platelet-derived ...",3,0,1.62,2878,"1.00000","0.71341","0.71341" +"GO:0010951","negative regulation of endopeptidase act...",3,0,1.62,2879,"1.00000","0.71341","0.71341" +"GO:0043154","negative regulation of cysteine-type end...",3,0,1.62,2880,"1.00000","0.71341","0.71341" +"GO:2000117","negative regulation of cysteine-type end...",3,0,1.62,2881,"1.00000","0.71341","0.71341" +"GO:0006869","lipid transport",26,13,14.05,1828,"0.73058","0.71405","0.71405" +"GO:0072527","pyrimidine-containing compound metabolic...",7,4,3.78,1575,"0.58774","0.71545","0.71545" +"GO:1905475","regulation of protein localization to me...",8,5,4.32,1108,"0.45434","0.71570","0.71570" +"GO:0009144","purine nucleoside triphosphate metabolic...",40,22,21.61,1192,"0.51605","0.71589","0.71589" +"GO:0006182","cGMP biosynthetic process",4,2,2.16,1897,"0.74559","0.71636","0.71636" +"GO:0046068","cGMP metabolic process",4,2,2.16,1898,"0.74559","0.71636","0.71636" +"GO:0048881","mechanosensory lateral line system devel...",3,2,1.62,1423,"0.56038","0.71668","0.71668" +"GO:0048882","lateral line development",3,2,1.62,1424,"0.56038","0.71668","0.71668" +"GO:0048925","lateral line system development",3,2,1.62,1425,"0.56038","0.71668","0.71668" +"GO:0016042","lipid catabolic process",21,8,11.35,2539,"0.95475","0.71694","0.71694" +"GO:0072657","protein localization to membrane",39,22,21.07,1089,"0.44672","0.71713","0.71713" +"GO:0046903","secretion",68,45,36.74,141,"0.02687","0.05681","0.71737" +"GO:0010828","positive regulation of glucose transmemb...",4,2,2.16,1899,"0.74559","0.71825","0.71825" +"GO:0060048","cardiac muscle contraction",8,4,4.32,1758,"0.72114","0.71837","0.71837" +"GO:0035735","intraciliary transport involved in ciliu...",3,1,1.62,2283,"0.90301","0.71914","0.71914" +"GO:0006893","Golgi to plasma membrane transport",4,2,2.16,1900,"0.74559","0.71919","0.71919" +"GO:0098876","vesicle-mediated transport to the plasma...",4,2,2.16,1901,"0.74559","0.71919","0.71919" +"GO:0002684","positive regulation of immune system pro...",26,14,14.05,1546,"0.58757","0.71963","0.71963" +"GO:0045595","regulation of cell differentiation",91,55,49.17,388,"0.12641","0.18830","0.72059" +"GO:0000132","establishment of mitotic spindle orienta...",3,2,1.62,1426,"0.56038","0.72158","0.72158" +"GO:0034341","response to interferon-gamma",3,2,1.62,1427,"0.56038","0.72158","0.72158" +"GO:0035195","gene silencing by miRNA",3,1,1.62,2284,"0.90301","0.72158","0.72158" +"GO:0035330","regulation of hippo signaling",3,2,1.62,1428,"0.56038","0.72158","0.72158" +"GO:0040001","establishment of mitotic spindle localiz...",3,2,1.62,1429,"0.56038","0.72158","0.72158" +"GO:0051293","establishment of spindle localization",3,2,1.62,1430,"0.56038","0.72158","0.72158" +"GO:0051294","establishment of spindle orientation",3,2,1.62,1431,"0.56038","0.72158","0.72158" +"GO:0051653","spindle localization",3,2,1.62,1432,"0.56038","0.72158","0.72158" +"GO:0060039","pericardium development",3,2,1.62,1433,"0.56038","0.72158","0.72158" +"GO:0071346","cellular response to interferon-gamma",3,2,1.62,1434,"0.56038","0.72158","0.72158" +"GO:0099558","maintenance of synapse structure",3,2,1.62,1435,"0.56038","0.72158","0.72158" +"GO:0000165","MAPK cascade",33,18,17.83,1221,"0.54799","0.72192","0.72192" +"GO:0023014","signal transduction by protein phosphory...",33,18,17.83,1222,"0.54799","0.72192","0.72192" +"GO:0032103","positive regulation of response to exter...",4,1,2.16,2555,"0.95548","0.72202","0.72202" +"GO:0005977","glycogen metabolic process",3,1,1.62,2285,"0.90301","0.72321","0.72321" +"GO:0006073","cellular glucan metabolic process",3,1,1.62,2286,"0.90301","0.72321","0.72321" +"GO:0006112","energy reserve metabolic process",3,1,1.62,2287,"0.90301","0.72321","0.72321" +"GO:0033692","cellular polysaccharide biosynthetic pro...",3,1,1.62,2288,"0.90301","0.72321","0.72321" +"GO:0034637","cellular carbohydrate biosynthetic proce...",3,1,1.62,2289,"0.90301","0.72321","0.72321" +"GO:0044042","glucan metabolic process",3,1,1.62,2290,"0.90301","0.72321","0.72321" +"GO:0007178","transmembrane receptor protein serine/th...",21,12,11.35,1127,"0.47560","0.72344","0.72344" +"GO:0015804","neutral amino acid transport",3,1,1.62,2291,"0.90301","0.72402","0.72402" +"GO:0043090","amino acid import",3,1,1.62,2292,"0.90301","0.72402","0.72402" +"GO:0001508","action potential",3,1,1.62,2293,"0.90301","0.72430","0.72430" +"GO:0035637","multicellular organismal signaling",3,1,1.62,2294,"0.90301","0.72430","0.72430" +"GO:0050908","detection of light stimulus involved in ...",3,2,1.62,1436,"0.56038","0.72430","0.72430" +"GO:0050962","detection of light stimulus involved in ...",3,2,1.62,1437,"0.56038","0.72430","0.72430" +"GO:0061337","cardiac conduction",3,1,1.62,2295,"0.90301","0.72430","0.72430" +"GO:0086001","cardiac muscle cell action potential",3,1,1.62,2296,"0.90301","0.72430","0.72430" +"GO:0006631","fatty acid metabolic process",19,5,10.27,2796,"0.99654","0.72468","0.72468" +"GO:0000288","nuclear-transcribed mRNA catabolic proce...",3,1,1.62,2297,"0.90301","0.72484","0.72484" +"GO:0006643","membrane lipid metabolic process",16,7,8.65,2155,"0.85972","0.72652","0.72652" +"GO:0042176","regulation of protein catabolic process",21,11,11.35,1674,"0.64659","0.72744","0.72744" +"GO:0032386","regulation of intracellular transport",20,7,10.81,2650,"0.97414","0.72809","0.72809" +"GO:0009117","nucleotide metabolic process",72,39,38.9,1213,"0.53970","0.72874","0.72874" +"GO:1903706","regulation of hemopoiesis",14,7,7.56,1721,"0.71733","0.72931","0.72931" +"GO:0006091","generation of precursor metabolites and ...",42,29,22.69,150,"0.03353","0.06285","0.72984" +"GO:0006506","GPI anchor biosynthetic process",6,2,3.24,2443,"0.92428","0.73244","0.73244" +"GO:0035601","protein deacylation",8,4,4.32,1759,"0.72114","0.73430","0.73430" +"GO:0098732","macromolecule deacylation",8,4,4.32,1760,"0.72114","0.73430","0.73430" +"GO:0048519","negative regulation of biological proces...",271,146,146.43,1223,"0.54819","0.73433","0.73433" +"GO:1903047","mitotic cell cycle process",54,25,29.18,2217,"0.90151","0.73449","0.73449" +"GO:0010646","regulation of cell communication",197,110,106.44,844,"0.32494","0.73461","0.73461" +"GO:0046486","glycerolipid metabolic process",38,20,20.53,1663,"0.63374","0.73485","0.73485" +"GO:0044092","negative regulation of molecular functio...",38,17,20.53,2416,"0.90684","0.73546","0.73546" +"GO:0006835","dicarboxylic acid transport",7,4,3.78,1576,"0.58774","0.73567","0.73567" +"GO:0061025","membrane fusion",7,3,3.78,2061,"0.83449","0.73567","0.73567" +"GO:0048593","camera-type eye morphogenesis",15,9,8.1,1032,"0.42178","0.73586","0.73586" +"GO:0019915","lipid storage",4,2,2.16,1902,"0.74559","0.73605","0.73605" +"GO:0045926","negative regulation of growth",20,11,10.81,1225,"0.55702","0.73646","0.73646" +"GO:0009611","response to wounding",32,21,17.29,387,"0.12543","0.22978","0.73733" +"GO:0022604","regulation of cell morphogenesis",25,20,13.51,56,"0.00640","0.01433","0.73736" +"GO:0022411","cellular component disassembly",26,14,14.05,1547,"0.58757","0.73861","0.73861" +"GO:0048523","negative regulation of cellular process",238,127,128.6,1638,"0.61337","0.73984","0.73984" +"GO:0050920","regulation of chemotaxis",3,2,1.62,1438,"0.56038","0.74072","0.74072" +"GO:0022618","ribonucleoprotein complex assembly",19,4,10.27,2823,"0.99932","0.74089","0.74089" +"GO:0071826","ribonucleoprotein complex subunit organi...",19,4,10.27,2824,"0.99932","0.74089","0.74089" +"GO:0043900","regulation of multi-organism process",24,11,12.97,2087,"0.84507","0.74107","0.74107" +"GO:0031400","negative regulation of protein modificat...",39,17,21.07,2480,"0.93049","0.74164","0.74164" +"GO:0036065","fucosylation",3,2,1.62,1439,"0.56038","0.74312","0.74312" +"GO:0016049","cell growth",29,16,15.67,1207,"0.52721","0.74471","0.74471" +"GO:1901988","negative regulation of cell cycle phase ...",4,2,2.16,1903,"0.74559","0.74531","0.74531" +"GO:1901991","negative regulation of mitotic cell cycl...",4,2,2.16,1904,"0.74559","0.74531","0.74531" +"GO:0009615","response to virus",6,3,3.24,1798,"0.72874","0.74608","0.74608" +"GO:0046165","alcohol biosynthetic process",6,3,3.24,1799,"0.72874","0.74608","0.74608" +"GO:0051607","defense response to virus",6,3,3.24,1800,"0.72874","0.74608","0.74608" +"GO:0051299","centrosome separation",3,2,1.62,1440,"0.56038","0.74712","0.74712" +"GO:0048569","post-embryonic animal organ development",11,9,5.94,247,"0.05709","0.03006","0.74754" +"GO:0006814","sodium ion transport",23,11,12.43,1983,"0.79133","0.74874","0.74874" +"GO:0014823","response to activity",9,4,4.86,2040,"0.81923","0.74963","0.74963" +"GO:0198738","cell-cell signaling by wnt",36,21,19.45,881,"0.36372","0.74987","0.74987" +"GO:0032504","multicellular organism reproduction",73,38,39.44,1689,"0.67914","0.75044","0.75044" +"GO:0006560","proline metabolic process",3,1,1.62,2298,"0.90301","0.75057","0.75057" +"GO:0048821","erythrocyte development",7,3,3.78,2062,"0.83449","0.75174","0.75174" +"GO:0022402","cell cycle process",91,44,49.17,2205,"0.88767","0.75315","0.75315" +"GO:0006342","chromatin silencing",8,3,4.32,2225,"0.90250","0.75390","0.75390" +"GO:0071453","cellular response to oxygen levels",8,5,4.32,1109,"0.45434","0.75390","0.75390" +"GO:2001251","negative regulation of chromosome organi...",11,6,5.94,1632,"0.60819","0.75396","0.75396" +"GO:0060070","canonical Wnt signaling pathway",19,10,10.27,1666,"0.63985","0.75444","0.75444" +"GO:0009123","nucleoside monophosphate metabolic proce...",39,21,21.07,1462,"0.57502","0.75447","0.75447" +"GO:0009126","purine nucleoside monophosphate metaboli...",39,21,21.07,1463,"0.57502","0.75447","0.75447" +"GO:0009161","ribonucleoside monophosphate metabolic p...",39,21,21.07,1464,"0.57502","0.75447","0.75447" +"GO:0009167","purine ribonucleoside monophosphate meta...",39,21,21.07,1465,"0.57502","0.75447","0.75447" +"GO:0016180","snRNA processing",3,1,1.62,2299,"0.90301","0.75532","0.75532" +"GO:0007288","sperm axoneme assembly",3,1,1.62,2300,"0.90301","0.75559","0.75559" +"GO:0043516","regulation of DNA damage response, signa...",3,1,1.62,2301,"0.90301","0.75559","0.75559" +"GO:0070192","chromosome organization involved in meio...",3,1,1.62,2302,"0.90301","0.75559","0.75559" +"GO:0006351","transcription, DNA-templated",336,167,181.55,2625,"0.96163","0.75726","0.75726" +"GO:0032774","RNA biosynthetic process",336,167,181.55,2626,"0.96163","0.75726","0.75726" +"GO:0097659","nucleic acid-templated transcription",336,167,181.55,2627,"0.96163","0.75726","0.75726" +"GO:0015931","nucleobase-containing compound transport",9,5,4.86,1612,"0.59853","0.75970","0.75970" +"GO:0048522","positive regulation of cellular process",273,153,147.51,754,"0.26052","0.43808","0.76152" +"GO:0003407","neural retina development",9,5,4.86,1613,"0.59853","0.76257","0.76257" +"GO:1901617","organic hydroxy compound biosynthetic pr...",11,5,5.94,2019,"0.80924","0.76317","0.76317" +"GO:0008104","protein localization",185,105,99.96,736,"0.24346","0.55486","0.76382" +"GO:0009642","response to light intensity",4,2,2.16,1905,"0.74559","0.76450","0.76450" +"GO:0033866","nucleoside bisphosphate biosynthetic pro...",3,1,1.62,2303,"0.90301","0.76555","0.76555" +"GO:0034030","ribonucleoside bisphosphate biosynthetic...",3,1,1.62,2304,"0.90301","0.76555","0.76555" +"GO:0034033","purine nucleoside bisphosphate biosynthe...",3,1,1.62,2305,"0.90301","0.76555","0.76555" +"GO:0001776","leukocyte homeostasis",4,2,2.16,1906,"0.74559","0.76721","0.76721" +"GO:0002260","lymphocyte homeostasis",4,2,2.16,1907,"0.74559","0.76721","0.76721" +"GO:0035296","regulation of tube diameter",4,2,2.16,1908,"0.74559","0.76721","0.76721" +"GO:0050880","regulation of blood vessel size",4,2,2.16,1909,"0.74559","0.76721","0.76721" +"GO:0061298","retina vasculature development in camera...",4,2,2.16,1910,"0.74559","0.76721","0.76721" +"GO:0097746","regulation of blood vessel diameter",4,2,2.16,1911,"0.74559","0.76721","0.76721" +"GO:0000077","DNA damage checkpoint",4,2,2.16,1912,"0.74559","0.76901","0.76901" +"GO:0019236","response to pheromone",3,2,1.62,1441,"0.56038","0.76945","0.76945" +"GO:0009896","positive regulation of catabolic process",22,12,11.89,1459,"0.56801","0.77003","0.77003" +"GO:0043902","positive regulation of multi-organism pr...",14,5,7.56,2534,"0.95073","0.77036","0.77036" +"GO:0071695","anatomical structure maturation",9,5,4.86,1614,"0.59853","0.77130","0.77130" +"GO:0060548","negative regulation of cell death",41,20,22.15,2006,"0.79930","0.77422","0.77422" +"GO:0006084","acetyl-CoA metabolic process",3,1,1.62,2306,"0.90301","0.77437","0.77437" +"GO:0090316","positive regulation of intracellular pro...",8,2,4.32,2663,"0.97942","0.77438","0.77438" +"GO:0010923","negative regulation of phosphatase activ...",4,1,2.16,2556,"0.95548","0.77707","0.77707" +"GO:0035305","negative regulation of dephosphorylation",4,1,2.16,2557,"0.95548","0.77707","0.77707" +"GO:1902065","response to L-glutamate",3,1,1.62,2307,"0.90301","0.77746","0.77746" +"GO:0002115","store-operated calcium entry",6,2,3.24,2444,"0.92428","0.77792","0.77792" +"GO:2001256","regulation of store-operated calcium ent...",6,2,3.24,2445,"0.92428","0.77792","0.77792" +"GO:0090287","regulation of cellular response to growt...",14,7,7.56,1722,"0.71733","0.77874","0.77874" +"GO:0007413","axonal fasciculation",3,1,1.62,2308,"0.90301","0.77900","0.77900" +"GO:0031102","neuron projection regeneration",3,1,1.62,2309,"0.90301","0.77900","0.77900" +"GO:0106030","neuron projection fasciculation",3,1,1.62,2310,"0.90301","0.77900","0.77900" +"GO:0010977","negative regulation of neuron projection...",8,4,4.32,1761,"0.72114","0.77943","0.77943" +"GO:0034968","histone lysine methylation",10,6,5.4,1148,"0.47921","0.77980","0.77980" +"GO:0002252","immune effector process",25,15,13.51,870,"0.34666","0.78031","0.78031" +"GO:0010556","regulation of macromolecule biosynthetic...",330,170,178.31,2096,"0.85190","0.78039","0.78039" +"GO:0008344","adult locomotory behavior",5,3,2.7,1528,"0.57534","0.78151","0.78151" +"GO:0030308","negative regulation of cell growth",16,7,8.65,2156,"0.85972","0.78323","0.78323" +"GO:0007224","smoothened signaling pathway",4,2,2.16,1913,"0.74559","0.78416","0.78416" +"GO:0007602","phototransduction",4,2,2.16,1914,"0.74559","0.78416","0.78416" +"GO:2000112","regulation of cellular macromolecule bio...",329,169,177.77,2160,"0.86443","0.78421","0.78421" +"GO:0055086","nucleobase-containing small molecule met...",85,44,45.93,1696,"0.70513","0.78437","0.78437" +"GO:2001252","positive regulation of chromosome organi...",8,5,4.32,1110,"0.45434","0.78444","0.78444" +"GO:0032879","regulation of localization",147,83,79.43,826,"0.30062","0.39341","0.78477" +"GO:0010876","lipid localization",29,14,15.67,1991,"0.79216","0.78550","0.78550" +"GO:0019098","reproductive behavior",12,6,6.48,1709,"0.71690","0.78571","0.78571" +"GO:1901657","glycosyl compound metabolic process",13,5,7.02,2424,"0.92062","0.78606","0.78606" +"GO:0070371","ERK1 and ERK2 cascade",9,4,4.86,2041,"0.81923","0.78657","0.78657" +"GO:0006664","glycolipid metabolic process",12,5,6.48,2172,"0.87520","0.78724","0.78724" +"GO:1903509","liposaccharide metabolic process",12,5,6.48,2173,"0.87520","0.78724","0.78724" +"GO:0007179","transforming growth factor beta receptor...",12,5,6.48,2174,"0.87520","0.78825","0.78825" +"GO:0043161","proteasome-mediated ubiquitin-dependent ...",24,10,12.97,2433,"0.92314","0.78845","0.78845" +"GO:0044764","multi-organism cellular process",4,2,2.16,1915,"0.74559","0.78856","0.78856" +"GO:0097120","receptor localization to synapse",3,1,1.62,2311,"0.90301","0.78944","0.78944" +"GO:1903214","regulation of protein targeting to mitoc...",6,1,3.24,2741,"0.99063","0.78982","0.78982" +"GO:1903747","regulation of establishment of protein l...",6,1,3.24,2742,"0.99063","0.78982","0.78982" +"GO:1903749","positive regulation of establishment of ...",6,1,3.24,2743,"0.99063","0.78982","0.78982" +"GO:1903955","positive regulation of protein targeting...",6,1,3.24,2744,"0.99063","0.78982","0.78982" +"GO:0048583","regulation of response to stimulus",210,116,113.47,1003,"0.38493","0.79045","0.79045" +"GO:0009101","glycoprotein biosynthetic process",40,21,21.61,1670,"0.64020","0.79147","0.79147" +"GO:0008584","male gonad development",8,3,4.32,2226,"0.90250","0.79190","0.79190" +"GO:0046546","development of primary male sexual chara...",8,3,4.32,2227,"0.90250","0.79190","0.79190" +"GO:0009199","ribonucleoside triphosphate metabolic pr...",38,21,20.53,1188,"0.50594","0.79243","0.79243" +"GO:0009205","purine ribonucleoside triphosphate metab...",38,21,20.53,1189,"0.50594","0.79243","0.79243" +"GO:0014033","neural crest cell differentiation",7,4,3.78,1577,"0.58774","0.79337","0.79337" +"GO:0006476","protein deacetylation",6,3,3.24,1801,"0.72874","0.79339","0.79339" +"GO:0060840","artery development",4,2,2.16,1916,"0.74559","0.79381","0.79381" +"GO:0060976","coronary vasculature development",4,2,2.16,1917,"0.74559","0.79381","0.79381" +"GO:0032526","response to retinoic acid",4,2,2.16,1918,"0.74559","0.79901","0.79901" +"GO:0071300","cellular response to retinoic acid",4,2,2.16,1919,"0.74559","0.79901","0.79901" +"GO:0010822","positive regulation of mitochondrion org...",7,2,3.78,2608,"0.96019","0.79961","0.79961" +"GO:1903533","regulation of protein targeting",7,1,3.78,2784,"0.99571","0.79961","0.79961" +"GO:0008299","isoprenoid biosynthetic process",5,2,2.7,2121,"0.85910","0.80009","0.80009" +"GO:0035821","modification of morphology or physiology...",5,1,2.7,2674,"0.97957","0.80009","0.80009" +"GO:0044788","modulation by host of viral process",5,1,2.7,2675,"0.97957","0.80009","0.80009" +"GO:0044794","positive regulation by host of viral pro...",5,1,2.7,2676,"0.97957","0.80009","0.80009" +"GO:0044827","modulation by host of viral genome repli...",5,1,2.7,2677,"0.97957","0.80009","0.80009" +"GO:0044829","positive regulation by host of viral gen...",5,1,2.7,2678,"0.97957","0.80009","0.80009" +"GO:0045070","positive regulation of viral genome repl...",5,1,2.7,2679,"0.97957","0.80009","0.80009" +"GO:0051702","interaction with symbiont",5,1,2.7,2680,"0.97957","0.80009","0.80009" +"GO:0051817","modification of morphology or physiology...",5,1,2.7,2681,"0.97957","0.80009","0.80009" +"GO:0051851","modification by host of symbiont morphol...",5,1,2.7,2682,"0.97957","0.80009","0.80009" +"GO:0043279","response to alkaloid",8,5,4.32,1111,"0.45434","0.80049","0.80049" +"GO:0009116","nucleoside metabolic process",12,4,6.48,2599,"0.95911","0.80083","0.80083" +"GO:0048268","clathrin coat assembly",3,1,1.62,2312,"0.90301","0.80147","0.80147" +"GO:0072583","clathrin-dependent endocytosis",3,1,1.62,2313,"0.90301","0.80147","0.80147" +"GO:0016242","negative regulation of macroautophagy",4,2,2.16,1920,"0.74559","0.80160","0.80160" +"GO:0042737","drug catabolic process",4,2,2.16,1921,"0.74559","0.80246","0.80246" +"GO:0030111","regulation of Wnt signaling pathway",19,10,10.27,1667,"0.63985","0.80277","0.80277" +"GO:0044085","cellular component biogenesis",225,118,121.57,1701,"0.71642","0.78487","0.80325" +"GO:0007009","plasma membrane organization",10,4,5.4,2193,"0.88681","0.80331","0.80331" +"GO:0033143","regulation of intracellular steroid horm...",7,2,3.78,2609,"0.96019","0.80351","0.80351" +"GO:0006984","ER-nucleus signaling pathway",4,2,2.16,1922,"0.74559","0.80417","0.80417" +"GO:0044271","cellular nitrogen compound biosynthetic ...",505,225,272.86,2855,"1.00000","0.80529","0.80529" +"GO:0051225","spindle assembly",6,3,3.24,1802,"0.72874","0.80573","0.80573" +"GO:0007424","open tracheal system development",11,8,5.94,605,"0.17336","0.10670","0.80586" +"GO:0001755","neural crest cell migration",4,2,2.16,1923,"0.74559","0.80589","0.80589" +"GO:0048866","stem cell fate specification",4,2,2.16,1924,"0.74559","0.80589","0.80589" +"GO:2000826","regulation of heart morphogenesis",4,2,2.16,1925,"0.74559","0.80589","0.80589" +"GO:0045132","meiotic chromosome segregation",4,2,2.16,1926,"0.74559","0.80589","0.80589" +"GO:0008088","axo-dendritic transport",9,5,4.86,1615,"0.59853","0.80625","0.80625" +"GO:0046128","purine ribonucleoside metabolic process",5,1,2.7,2683,"0.97957","0.80680","0.80680" +"GO:0045444","fat cell differentiation",10,5,5.4,1738,"0.71786","0.80737","0.80737" +"GO:0044770","cell cycle phase transition",23,9,12.43,2532,"0.95065","0.80748","0.80748" +"GO:0048507","meristem development",4,2,2.16,1927,"0.74559","0.80759","0.80759" +"GO:0031503","protein-containing complex localization",15,5,8.1,2646,"0.97005","0.80761","0.80761" +"GO:1990542","mitochondrial transmembrane transport",13,5,7.02,2425,"0.92062","0.80762","0.80762" +"GO:0045168","cell-cell signaling involved in cell fat...",4,1,2.16,2558,"0.95548","0.80930","0.80930" +"GO:0046331","lateral inhibition",4,1,2.16,2559,"0.95548","0.80930","0.80930" +"GO:0006898","receptor-mediated endocytosis",12,6,6.48,1710,"0.71690","0.80973","0.80973" +"GO:0048520","positive regulation of behavior",4,2,2.16,1928,"0.74559","0.81014","0.81014" +"GO:0046683","response to organophosphorus",6,2,3.24,2446,"0.92428","0.81059","0.81059" +"GO:0030261","chromosome condensation",5,2,2.7,2122,"0.85910","0.81155","0.81155" +"GO:0070979","protein K11-linked ubiquitination",6,3,3.24,1803,"0.72874","0.81163","0.81163" +"GO:0006665","sphingolipid metabolic process",7,3,3.78,2063,"0.83449","0.81173","0.81173" +"GO:0031960","response to corticosteroid",7,3,3.78,2064,"0.83449","0.81205","0.81205" +"GO:2001243","negative regulation of intrinsic apoptot...",8,4,4.32,1762,"0.72114","0.81257","0.81257" +"GO:0042254","ribosome biogenesis",17,1,9.19,2853,"1.00000","0.81275","0.81275" +"GO:0010633","negative regulation of epithelial cell m...",3,2,1.62,1442,"0.56038","0.81280","0.81280" +"GO:0030048","actin filament-based movement",3,1,1.62,2314,"0.90301","0.81280","0.81280" +"GO:0061136","regulation of proteasomal protein catabo...",14,6,7.56,2161,"0.86643","0.81334","0.81334" +"GO:0006629","lipid metabolic process",127,65,68.62,1972,"0.77459","0.81444","0.81444" +"GO:0051928","positive regulation of calcium ion trans...",7,3,3.78,2065,"0.83449","0.81508","0.81508" +"GO:0015813","L-glutamate transmembrane transport",3,2,1.62,1443,"0.56038","0.81523","0.81523" +"GO:0010952","positive regulation of peptidase activit...",5,2,2.7,2123,"0.85910","0.81533","0.81533" +"GO:0042733","embryonic digit morphogenesis",5,2,2.7,2124,"0.85910","0.81533","0.81533" +"GO:0006367","transcription initiation from RNA polyme...",9,4,4.86,2042,"0.81923","0.81614","0.81614" +"GO:0001822","kidney development",20,11,10.81,1226,"0.55702","0.81620","0.81620" +"GO:0046034","ATP metabolic process",37,21,19.99,1082,"0.43478","0.81725","0.81725" +"GO:0017015","regulation of transforming growth factor...",8,3,4.32,2228,"0.90250","0.81734","0.81734" +"GO:1903844","regulation of cellular response to trans...",8,3,4.32,2229,"0.90250","0.81734","0.81734" +"GO:0030100","regulation of endocytosis",22,12,11.89,1460,"0.56801","0.81802","0.81802" +"GO:0003254","regulation of membrane depolarization",5,3,2.7,1529,"0.57534","0.81814","0.81814" +"GO:0009617","response to bacterium",18,8,9.73,2098,"0.85455","0.81924","0.81924" +"GO:0007630","jump response",3,1,1.62,2315,"0.90301","0.81934","0.81934" +"GO:0001967","suckling behavior",4,1,2.16,2560,"0.95548","0.81940","0.81940" +"GO:0006482","protein demethylation",9,3,4.86,2507,"0.94413","0.81977","0.81977" +"GO:0008214","protein dealkylation",9,3,4.86,2508,"0.94413","0.81977","0.81977" +"GO:0045814","negative regulation of gene expression, ...",9,4,4.86,2043,"0.81923","0.81977","0.81977" +"GO:0070988","demethylation",9,3,4.86,2509,"0.94413","0.81977","0.81977" +"GO:0019752","carboxylic acid metabolic process",92,47,49.71,1960,"0.75345","0.82021","0.82021" +"GO:0009889","regulation of biosynthetic process",336,173,181.55,2101,"0.85660","0.82084","0.82084" +"GO:0002065","columnar/cuboidal epithelial cell differ...",16,9,8.65,1210,"0.53167","0.82112","0.82112" +"GO:0010212","response to ionizing radiation",5,3,2.7,1530,"0.57534","0.82187","0.82187" +"GO:0008277","regulation of G protein-coupled receptor...",7,4,3.78,1578,"0.58774","0.82188","0.82188" +"GO:0051649","establishment of localization in cell",172,92,92.94,1597,"0.59069","0.82249","0.82249" +"GO:0009651","response to salt stress",6,3,3.24,1804,"0.72874","0.82259","0.82259" +"GO:0006725","cellular aromatic compound metabolic pro...",573,266,309.6,2837,"0.99999","0.82275","0.82275" +"GO:2000765","regulation of cytoplasmic translation",3,1,1.62,2316,"0.90301","0.82342","0.82342" +"GO:0006366","transcription by RNA polymerase II",99,54,53.49,1179,"0.50036","0.82354","0.82354" +"GO:0046483","heterocycle metabolic process",571,263,308.52,2845,"0.99999","0.82484","0.82484" +"GO:0042127","regulation of cell proliferation",66,40,35.66,586,"0.16837","0.08727","0.82512" +"GO:0006220","pyrimidine nucleotide metabolic process",4,2,2.16,1929,"0.74559","0.82604","0.82604" +"GO:0072528","pyrimidine-containing compound biosynthe...",4,2,2.16,1930,"0.74559","0.82604","0.82604" +"GO:0007030","Golgi organization",12,6,6.48,1711,"0.71690","0.82666","0.82666" +"GO:0000188","inactivation of MAPK activity",3,1,1.62,2317,"0.90301","0.82771","0.82771" +"GO:0002042","cell migration involved in sprouting ang...",3,2,1.62,1444,"0.56038","0.82771","0.82771" +"GO:0016525","negative regulation of angiogenesis",3,2,1.62,1445,"0.56038","0.82771","0.82771" +"GO:0043407","negative regulation of MAP kinase activi...",3,1,1.62,2318,"0.90301","0.82771","0.82771" +"GO:1901343","negative regulation of vasculature devel...",3,2,1.62,1446,"0.56038","0.82771","0.82771" +"GO:2000181","negative regulation of blood vessel morp...",3,2,1.62,1447,"0.56038","0.82771","0.82771" +"GO:0071901","negative regulation of protein serine/th...",7,2,3.78,2610,"0.96019","0.82859","0.82859" +"GO:0009299","mRNA transcription",3,1,1.62,2319,"0.90301","0.82866","0.82866" +"GO:0021532","neural tube patterning",3,2,1.62,1448,"0.56038","0.82866","0.82866" +"GO:0042789","mRNA transcription by RNA polymerase II",3,1,1.62,2320,"0.90301","0.82866","0.82866" +"GO:0045927","positive regulation of growth",8,3,4.32,2230,"0.90250","0.82907","0.82907" +"GO:0045834","positive regulation of lipid metabolic p...",3,2,1.62,1449,"0.56038","0.82913","0.82913" +"GO:0070584","mitochondrion morphogenesis",3,1,1.62,2321,"0.90301","0.82913","0.82913" +"GO:0040008","regulation of growth",40,20,21.61,1959,"0.75090","0.82926","0.82926" +"GO:0016072","rRNA metabolic process",11,0,5.94,2882,"1.00000","0.82963","0.82963" +"GO:0006950","response to stress",218,117,117.79,1461,"0.57342","0.56688","0.83075" +"GO:0000082","G1/S transition of mitotic cell cycle",12,6,6.48,1712,"0.71690","0.83093","0.83093" +"GO:0006906","vesicle fusion",6,2,3.24,2447,"0.92428","0.83099","0.83099" +"GO:0048284","organelle fusion",6,2,3.24,2448,"0.92428","0.83099","0.83099" +"GO:0090174","organelle membrane fusion",6,2,3.24,2449,"0.92428","0.83099","0.83099" +"GO:0030178","negative regulation of Wnt signaling pat...",13,7,7.02,1644,"0.61700","0.83217","0.83217" +"GO:0002697","regulation of immune effector process",9,5,4.86,1616,"0.59853","0.83323","0.83323" +"GO:1901605","alpha-amino acid metabolic process",17,8,9.19,1998,"0.79495","0.83330","0.83330" +"GO:0021510","spinal cord development",3,1,1.62,2322,"0.90301","0.83337","0.83337" +"GO:0060433","bronchus development",3,1,1.62,2323,"0.90301","0.83337","0.83337" +"GO:0048207","vesicle targeting, rough ER to cis-Golgi",4,2,2.16,1931,"0.74559","0.83341","0.83341" +"GO:0048208","COPII vesicle coating",4,2,2.16,1932,"0.74559","0.83341","0.83341" +"GO:0036294","cellular response to decreased oxygen le...",7,4,3.78,1579,"0.58774","0.83399","0.83399" +"GO:0071456","cellular response to hypoxia",7,4,3.78,1580,"0.58774","0.83399","0.83399" +"GO:0099402","plant organ development",6,3,3.24,1805,"0.72874","0.83431","0.83431" +"GO:0031326","regulation of cellular biosynthetic proc...",332,170,179.39,2187,"0.87891","0.83518","0.83518" +"GO:0033043","regulation of organelle organization",96,55,51.87,789,"0.29219","0.31541","0.83544" +"GO:1903050","regulation of proteolysis involved in ce...",15,7,8.1,2001,"0.79799","0.83556","0.83556" +"GO:1903362","regulation of cellular protein catabolic...",15,7,8.1,2002,"0.79799","0.83556","0.83556" +"GO:0034198","cellular response to amino acid starvati...",3,2,1.62,1450,"0.56038","0.83594","0.83594" +"GO:1990928","response to amino acid starvation",3,2,1.62,1451,"0.56038","0.83594","0.83594" +"GO:0048856","anatomical structure development",366,214,197.76,173,"0.03662","0.04214","0.83634" +"GO:0010256","endomembrane system organization",37,16,19.99,2491,"0.93209","0.83652","0.83652" +"GO:0098743","cell aggregation",3,1,1.62,2324,"0.90301","0.83687","0.83687" +"GO:0002244","hematopoietic progenitor cell differenti...",4,2,2.16,1933,"0.74559","0.83745","0.83745" +"GO:0042098","T cell proliferation",4,2,2.16,1934,"0.74559","0.83745","0.83745" +"GO:0042129","regulation of T cell proliferation",4,2,2.16,1935,"0.74559","0.83745","0.83745" +"GO:0015918","sterol transport",8,4,4.32,1763,"0.72114","0.83826","0.83826" +"GO:1901136","carbohydrate derivative catabolic proces...",9,4,4.86,2044,"0.81923","0.83836","0.83836" +"GO:0042398","cellular modified amino acid biosyntheti...",6,2,3.24,2450,"0.92428","0.84023","0.84023" +"GO:0021575","hindbrain morphogenesis",4,2,2.16,1936,"0.74559","0.84066","0.84066" +"GO:0021587","cerebellum morphogenesis",4,2,2.16,1937,"0.74559","0.84066","0.84066" +"GO:0098656","anion transmembrane transport",24,14,12.97,1018,"0.41565","0.84277","0.84277" +"GO:0051783","regulation of nuclear division",12,5,6.48,2175,"0.87520","0.84305","0.84305" +"GO:0006139","nucleobase-containing compound metabolic...",552,254,298.26,2844,"0.99999","0.84447","0.84447" +"GO:0044255","cellular lipid metabolic process",92,43,49.71,2495,"0.93763","0.84456","0.84456" +"GO:0033209","tumor necrosis factor-mediated signaling...",4,1,2.16,2561,"0.95548","0.84543","0.84543" +"GO:0034612","response to tumor necrosis factor",4,1,2.16,2562,"0.95548","0.84543","0.84543" +"GO:0071356","cellular response to tumor necrosis fact...",4,1,2.16,2563,"0.95548","0.84543","0.84543" +"GO:0008652","cellular amino acid biosynthetic process",5,2,2.7,2125,"0.85910","0.84546","0.84546" +"GO:1901607","alpha-amino acid biosynthetic process",5,2,2.7,2126,"0.85910","0.84546","0.84546" +"GO:0071705","nitrogen compound transport",141,77,76.19,1131,"0.47902","0.84586","0.84586" +"GO:2001233","regulation of apoptotic signaling pathwa...",21,10,11.35,1987,"0.79186","0.84612","0.84612" +"GO:0032874","positive regulation of stress-activated ...",7,4,3.78,1581,"0.58774","0.84700","0.84700" +"GO:0070304","positive regulation of stress-activated ...",7,4,3.78,1582,"0.58774","0.84700","0.84700" +"GO:0006355","regulation of transcription, DNA-templat...",312,159,168.58,2206,"0.88958","0.84704","0.84704" +"GO:1903506","regulation of nucleic acid-templated tra...",312,159,168.58,2207,"0.88958","0.84704","0.84704" +"GO:2001141","regulation of RNA biosynthetic process",312,159,168.58,2208,"0.88958","0.84704","0.84704" +"GO:0033260","nuclear DNA replication",3,1,1.62,2325,"0.90301","0.84813","0.84813" +"GO:0044786","cell cycle DNA replication",3,1,1.62,2326,"0.90301","0.84813","0.84813" +"GO:0046839","phospholipid dephosphorylation",7,4,3.78,1583,"0.58774","0.84967","0.84967" +"GO:0046856","phosphatidylinositol dephosphorylation",7,4,3.78,1584,"0.58774","0.84967","0.84967" +"GO:0000280","nuclear division",28,11,15.13,2624,"0.96126","0.84968","0.84968" +"GO:0006413","translational initiation",9,4,4.86,2045,"0.81923","0.84974","0.84974" +"GO:0036503","ERAD pathway",14,5,7.56,2535,"0.95073","0.84997","0.84997" +"GO:0006282","regulation of DNA repair",4,2,2.16,1938,"0.74559","0.85015","0.85015" +"GO:0019216","regulation of lipid metabolic process",11,6,5.94,1633,"0.60819","0.85017","0.85017" +"GO:0006998","nuclear envelope organization",3,0,1.62,2883,"1.00000","0.85062","0.85062" +"GO:0048367","shoot system development",3,1,1.62,2327,"0.90301","0.85084","0.85084" +"GO:1903902","positive regulation of viral life cycle",6,1,3.24,2745,"0.99063","0.85089","0.85089" +"GO:0006022","aminoglycan metabolic process",36,29,19.45,19,"0.00080","3.0e-06","0.85129" +"GO:1901360","organic cyclic compound metabolic proces...",591,275,319.33,2840,"0.99999","0.85159","0.85159" +"GO:0032479","regulation of type I interferon producti...",4,2,2.16,1939,"0.74559","0.85171","0.85171" +"GO:0032606","type I interferon production",4,2,2.16,1940,"0.74559","0.85171","0.85171" +"GO:0140013","meiotic nuclear division",12,6,6.48,1713,"0.71690","0.85214","0.85214" +"GO:0051865","protein autoubiquitination",7,3,3.78,2066,"0.83449","0.85218","0.85218" +"GO:0051384","response to glucocorticoid",5,3,2.7,1531,"0.57534","0.85248","0.85248" +"GO:0045185","maintenance of protein location",11,9,5.94,248,"0.05709","0.01974","0.85350" +"GO:0051248","negative regulation of protein metabolic...",53,27,28.64,1773,"0.72480","0.85386","0.85386" +"GO:0006023","aminoglycan biosynthetic process",4,2,2.16,1941,"0.74559","0.85481","0.85481" +"GO:0006650","glycerophospholipid metabolic process",34,18,18.37,1648,"0.61992","0.85482","0.85482" +"GO:0006383","transcription by RNA polymerase III",7,2,3.78,2611,"0.96019","0.85496","0.85496" +"GO:0072001","renal system development",24,13,12.97,1541,"0.57815","0.85498","0.85498" +"GO:0007049","cell cycle",115,53,62.14,2635,"0.96740","0.85587","0.85587" +"GO:0022900","electron transport chain",15,8,8.1,1651,"0.62514","0.85600","0.85600" +"GO:0090311","regulation of protein deacetylation",4,1,2.16,2564,"0.95548","0.85712","0.85712" +"GO:0042558","pteridine-containing compound metabolic ...",3,1,1.62,2328,"0.90301","0.85754","0.85754" +"GO:0045732","positive regulation of protein catabolic...",14,6,7.56,2162,"0.86643","0.85826","0.85826" +"GO:0006364","rRNA processing",9,0,4.86,2884,"1.00000","0.85839","0.85839" +"GO:0006790","sulfur compound metabolic process",18,6,9.73,2660,"0.97803","0.85900","0.85900" +"GO:0006120","mitochondrial electron transport, NADH t...",5,2,2.7,2127,"0.85910","0.85937","0.85937" +"GO:0051726","regulation of cell cycle",64,32,34.58,1974,"0.78340","0.86084","0.86084" +"GO:0032269","negative regulation of cellular protein ...",48,22,25.94,2243,"0.90253","0.86180","0.86180" +"GO:0051262","protein tetramerization",5,1,2.7,2684,"0.97957","0.86192","0.86192" +"GO:0071242","cellular response to ammonium ion",5,2,2.7,2128,"0.85910","0.86192","0.86192" +"GO:1901655","cellular response to ketone",5,2,2.7,2129,"0.85910","0.86192","0.86192" +"GO:0032527","protein exit from endoplasmic reticulum",5,2,2.7,2130,"0.85910","0.86362","0.86362" +"GO:0035458","cellular response to interferon-beta",5,1,2.7,2685,"0.97957","0.86362","0.86362" +"GO:1903573","negative regulation of response to endop...",5,2,2.7,2131,"0.85910","0.86362","0.86362" +"GO:0016032","viral process",15,4,8.1,2773,"0.99235","0.86389","0.86389" +"GO:0033157","regulation of intracellular protein tran...",13,4,7.02,2655,"0.97621","0.86391","0.86391" +"GO:0044843","cell cycle G1/S phase transition",13,6,7.02,2010,"0.80253","0.86391","0.86391" +"GO:0072665","protein localization to vacuole",6,2,3.24,2451,"0.92428","0.86559","0.86559" +"GO:0072666","establishment of protein localization to...",6,2,3.24,2452,"0.92428","0.86559","0.86559" +"GO:0015850","organic hydroxy compound transport",11,6,5.94,1634,"0.60819","0.86591","0.86591" +"GO:0019219","regulation of nucleobase-containing comp...",323,164,174.52,2415,"0.90643","0.86631","0.86631" +"GO:0006221","pyrimidine nucleotide biosynthetic proce...",3,1,1.62,2329,"0.90301","0.86652","0.86652" +"GO:0021680","cerebellar Purkinje cell layer developme...",5,3,2.7,1532,"0.57534","0.86698","0.86698" +"GO:0021695","cerebellar cortex development",5,3,2.7,1533,"0.57534","0.86698","0.86698" +"GO:1903076","regulation of protein localization to pl...",5,3,2.7,1534,"0.57534","0.86698","0.86698" +"GO:1904375","regulation of protein localization to ce...",5,3,2.7,1535,"0.57534","0.86698","0.86698" +"GO:0051129","negative regulation of cellular componen...",52,28,28.1,1456,"0.56793","0.86736","0.86736" +"GO:0009566","fertilization",7,3,3.78,2067,"0.83449","0.86746","0.86746" +"GO:0030510","regulation of BMP signaling pathway",3,2,1.62,1452,"0.56038","0.86824","0.86824" +"GO:0006970","response to osmotic stress",10,4,5.4,2194,"0.88681","0.86827","0.86827" +"GO:0035082","axoneme assembly",4,2,2.16,1942,"0.74559","0.86847","0.86847" +"GO:0070193","synaptonemal complex organization",4,1,2.16,2565,"0.95548","0.86847","0.86847" +"GO:1990823","response to leukemia inhibitory factor",8,4,4.32,1764,"0.72114","0.86895","0.86895" +"GO:1990830","cellular response to leukemia inhibitory...",8,4,4.32,1765,"0.72114","0.86895","0.86895" +"GO:0032101","regulation of response to external stimu...",14,8,7.56,1204,"0.51668","0.87017","0.87017" +"GO:0030587","sorocarp development",7,4,3.78,1585,"0.58774","0.87098","0.87098" +"GO:0090702","non-reproductive fruiting body developme...",7,4,3.78,1586,"0.58774","0.87098","0.87098" +"GO:0099120","socially cooperative development",7,4,3.78,1587,"0.58774","0.87098","0.87098" +"GO:0001558","regulation of cell growth",23,11,12.43,1984,"0.79133","0.87123","0.87123" +"GO:0031331","positive regulation of cellular cataboli...",17,9,9.19,1662,"0.63273","0.87161","0.87161" +"GO:1902531","regulation of intracellular signal trans...",102,57,55.11,1005,"0.39015","0.87201","0.87201" +"GO:0007051","spindle organization",8,4,4.32,1766,"0.72114","0.87209","0.87209" +"GO:0043473","pigmentation",3,1,1.62,2330,"0.90301","0.87230","0.87230" +"GO:0007127","meiosis I",7,2,3.78,2612,"0.96019","0.87237","0.87237" +"GO:0061982","meiosis I cell cycle process",7,2,3.78,2613,"0.96019","0.87237","0.87237" +"GO:0016070","RNA metabolic process",430,193,232.34,2839,"0.99999","0.87250","0.87250" +"GO:0045598","regulation of fat cell differentiation",5,2,2.7,2132,"0.85910","0.87278","0.87278" +"GO:0046330","positive regulation of JNK cascade",5,2,2.7,2133,"0.85910","0.87278","0.87278" +"GO:0090100","positive regulation of transmembrane rec...",5,2,2.7,2134,"0.85910","0.87278","0.87278" +"GO:0043434","response to peptide hormone",11,6,5.94,1635,"0.60819","0.87352","0.87352" +"GO:1901652","response to peptide",11,6,5.94,1636,"0.60819","0.87352","0.87352" +"GO:0009084","glutamine family amino acid biosynthetic...",4,2,2.16,1943,"0.74559","0.87438","0.87438" +"GO:0042278","purine nucleoside metabolic process",6,1,3.24,2746,"0.99063","0.87467","0.87467" +"GO:0043066","negative regulation of apoptotic process",39,18,21.07,2181,"0.87623","0.87519","0.87519" +"GO:0043069","negative regulation of programmed cell d...",39,18,21.07,2182,"0.87623","0.87519","0.87519" +"GO:0006955","immune response",44,22,23.77,1962,"0.75663","0.87681","0.87681" +"GO:0043901","negative regulation of multi-organism pr...",7,3,3.78,2068,"0.83449","0.87707","0.87707" +"GO:0031399","regulation of protein modification proce...",84,43,45.39,1836,"0.74033","0.87745","0.87745" +"GO:0033108","mitochondrial respiratory chain complex ...",11,4,5.94,2482,"0.93114","0.87890","0.87890" +"GO:0015988","energy coupled proton transmembrane tran...",8,5,4.32,1112,"0.45434","0.87930","0.87930" +"GO:0015991","ATP hydrolysis coupled proton transport",8,5,4.32,1113,"0.45434","0.87930","0.87930" +"GO:0090662","ATP hydrolysis coupled transmembrane tra...",8,5,4.32,1114,"0.45434","0.87930","0.87930" +"GO:0099131","ATP hydrolysis coupled ion transmembrane...",8,5,4.32,1115,"0.45434","0.87930","0.87930" +"GO:0099132","ATP hydrolysis coupled cation transmembr...",8,5,4.32,1116,"0.45434","0.87930","0.87930" +"GO:0031349","positive regulation of defense response",12,6,6.48,1714,"0.71690","0.87986","0.87986" +"GO:0045089","positive regulation of innate immune res...",12,6,6.48,1715,"0.71690","0.87986","0.87986" +"GO:0042462","eye photoreceptor cell development",12,6,6.48,1716,"0.71690","0.88028","0.88028" +"GO:0090304","nucleic acid metabolic process",469,211,253.41,2846,"0.99999","0.88074","0.88074" +"GO:0032872","regulation of stress-activated MAPK casc...",11,5,5.94,2020,"0.80924","0.88085","0.88085" +"GO:0070302","regulation of stress-activated protein k...",11,5,5.94,2021,"0.80924","0.88085","0.88085" +"GO:0010324","membrane invagination",3,1,1.62,2331,"0.90301","0.88131","0.88131" +"GO:0002699","positive regulation of immune effector p...",7,3,3.78,2069,"0.83449","0.88223","0.88223" +"GO:0006082","organic acid metabolic process",93,47,50.25,1976,"0.78700","0.88276","0.88276" +"GO:0043436","oxoacid metabolic process",93,47,50.25,1977,"0.78700","0.88276","0.88276" +"GO:0050794","regulation of cellular process",932,515,503.58,615,"0.18185","0.08536","0.88297" +"GO:0007368","determination of left/right symmetry",15,8,8.1,1652,"0.62514","0.88424","0.88424" +"GO:0009799","specification of symmetry",15,8,8.1,1653,"0.62514","0.88424","0.88424" +"GO:0009855","determination of bilateral symmetry",15,8,8.1,1654,"0.62514","0.88424","0.88424" +"GO:0071375","cellular response to peptide hormone sti...",10,5,5.4,1739,"0.71786","0.88437","0.88437" +"GO:1901653","cellular response to peptide",10,5,5.4,1740,"0.71786","0.88437","0.88437" +"GO:0048609","multicellular organismal reproductive pr...",70,35,37.82,1978,"0.79077","0.88437","0.88437" +"GO:0048872","homeostasis of number of cells",18,9,9.73,1748,"0.72046","0.88442","0.88442" +"GO:0022406","membrane docking",8,3,4.32,2231,"0.90250","0.88536","0.88536" +"GO:0140056","organelle localization by membrane tethe...",8,3,4.32,2232,"0.90250","0.88536","0.88536" +"GO:0072521","purine-containing compound metabolic pro...",60,30,32.42,1973,"0.77832","0.88546","0.88546" +"GO:0045861","negative regulation of proteolysis",9,3,4.86,2510,"0.94413","0.88553","0.88553" +"GO:0034765","regulation of ion transmembrane transpor...",24,15,12.97,760,"0.26571","0.56698","0.88597" +"GO:0051252","regulation of RNA metabolic process",317,160,171.28,2432,"0.92232","0.88599","0.88599" +"GO:0009636","response to toxic substance",21,10,11.35,1988,"0.79186","0.88661","0.88661" +"GO:0030326","embryonic limb morphogenesis",7,3,3.78,2070,"0.83449","0.88678","0.88678" +"GO:0035113","embryonic appendage morphogenesis",7,3,3.78,2071,"0.83449","0.88678","0.88678" +"GO:2001023","regulation of response to drug",9,4,4.86,2046,"0.81923","0.88693","0.88693" +"GO:0006613","cotranslational protein targeting to mem...",4,2,2.16,1944,"0.74559","0.88727","0.88727" +"GO:0006614","SRP-dependent cotranslational protein ta...",4,2,2.16,1945,"0.74559","0.88727","0.88727" +"GO:0045047","protein targeting to ER",4,2,2.16,1946,"0.74559","0.88727","0.88727" +"GO:0072599","establishment of protein localization to...",4,2,2.16,1947,"0.74559","0.88727","0.88727" +"GO:0015980","energy derivation by oxidation of organi...",33,21,17.83,608,"0.17420","0.40257","0.88731" +"GO:0031047","gene silencing by RNA",8,3,4.32,2233,"0.90250","0.88734","0.88734" +"GO:0019079","viral genome replication",7,1,3.78,2785,"0.99571","0.88784","0.88784" +"GO:0045069","regulation of viral genome replication",7,1,3.78,2786,"0.99571","0.88784","0.88784" +"GO:0048524","positive regulation of viral process",7,1,3.78,2787,"0.99571","0.88784","0.88784" +"GO:0051289","protein homotetramerization",4,1,2.16,2566,"0.95548","0.88796","0.88796" +"GO:0051385","response to mineralocorticoid",4,1,2.16,2567,"0.95548","0.88796","0.88796" +"GO:0060219","camera-type eye photoreceptor cell diffe...",4,1,2.16,2568,"0.95548","0.88796","0.88796" +"GO:0071384","cellular response to corticosteroid stim...",4,1,2.16,2569,"0.95548","0.88796","0.88796" +"GO:0097237","cellular response to toxic substance",8,4,4.32,1767,"0.72114","0.88833","0.88833" +"GO:0031397","negative regulation of protein ubiquitin...",4,1,2.16,2570,"0.95548","0.88866","0.88866" +"GO:0043200","response to amino acid",4,1,2.16,2571,"0.95548","0.88866","0.88866" +"GO:0006029","proteoglycan metabolic process",3,0,1.62,2885,"1.00000","0.88905","0.88905" +"GO:0030166","proteoglycan biosynthetic process",3,0,1.62,2886,"1.00000","0.88905","0.88905" +"GO:0044093","positive regulation of molecular functio...",70,36,37.82,1700,"0.71455","0.88989","0.88989" +"GO:0009058","biosynthetic process",635,295,343.1,2848,"1.00000","0.88994","0.88994" +"GO:0042073","intraciliary transport",7,1,3.78,2788,"0.99571","0.89021","0.89021" +"GO:0031323","regulation of cellular metabolic process",420,219,226.94,2027,"0.81762","0.89040","0.89040" +"GO:0000209","protein polyubiquitination",21,9,11.35,2212,"0.89455","0.89111","0.89111" +"GO:0006914","autophagy",36,20,19.45,1161,"0.49529","0.89126","0.89126" +"GO:0061919","process utilizing autophagic mechanism",36,20,19.45,1162,"0.49529","0.89126","0.89126" +"GO:0010647","positive regulation of cell communicatio...",78,43,42.15,1124,"0.46855","0.89471","0.89471" +"GO:0023056","positive regulation of signaling",78,43,42.15,1125,"0.46855","0.89471","0.89471" +"GO:0099504","synaptic vesicle cycle",19,10,10.27,1668,"0.63985","0.89571","0.89571" +"GO:0008333","endosome to lysosome transport",5,2,2.7,2135,"0.85910","0.89571","0.89571" +"GO:0033044","regulation of chromosome organization",19,9,10.27,1993,"0.79300","0.89657","0.89657" +"GO:0034976","response to endoplasmic reticulum stress",24,10,12.97,2434,"0.92314","0.89663","0.89663" +"GO:0048193","Golgi vesicle transport",28,14,15.13,1831,"0.73342","0.89764","0.89764" +"GO:0009966","regulation of signal transduction",175,95,94.56,1183,"0.50427","0.89775","0.89775" +"GO:0051924","regulation of calcium ion transport",14,7,7.56,1723,"0.71733","0.89837","0.89837" +"GO:0009100","glycoprotein metabolic process",45,22,24.31,2008,"0.80241","0.89842","0.89842" +"GO:0001655","urogenital system development",26,14,14.05,1548,"0.58757","0.89876","0.89876" +"GO:0006886","intracellular protein transport",80,39,43.23,2153,"0.85935","0.89880","0.89880" +"GO:0010468","regulation of gene expression",362,182,195.6,2525,"0.94602","0.89933","0.89933" +"GO:0048584","positive regulation of response to stimu...",93,51,50.25,1150,"0.47993","0.89970","0.89970" +"GO:0070372","regulation of ERK1 and ERK2 cascade",7,3,3.78,2072,"0.83449","0.90024","0.90024" +"GO:0016571","histone methylation",14,7,7.56,1724,"0.71733","0.90034","0.90034" +"GO:0050821","protein stabilization",14,8,7.56,1205,"0.51668","0.90069","0.90069" +"GO:0051247","positive regulation of protein metabolic...",65,35,35.12,1453,"0.56339","0.90078","0.90078" +"GO:0032984","protein-containing complex disassembly",18,8,9.73,2099,"0.85455","0.90096","0.90096" +"GO:0016050","vesicle organization",20,10,10.81,1769,"0.72268","0.90114","0.90114" +"GO:0060538","skeletal muscle organ development",22,11,11.89,1775,"0.72516","0.90241","0.90241" +"GO:0031058","positive regulation of histone modificat...",7,4,3.78,1588,"0.58774","0.90386","0.90386" +"GO:1905269","positive regulation of chromatin organiz...",7,4,3.78,1589,"0.58774","0.90386","0.90386" +"GO:0019222","regulation of metabolic process",453,236,244.77,2054,"0.83306","0.90390","0.90390" +"GO:0080090","regulation of primary metabolic process",405,208,218.83,2211,"0.89152","0.90445","0.90445" +"GO:0032870","cellular response to hormone stimulus",40,18,21.61,2414,"0.90564","0.90478","0.90478" +"GO:0006265","DNA topological change",3,1,1.62,2332,"0.90301","0.90482","0.90482" +"GO:0006473","protein acetylation",13,5,7.02,2426,"0.92062","0.90504","0.90504" +"GO:0006475","internal protein amino acid acetylation",13,5,7.02,2427,"0.92062","0.90504","0.90504" +"GO:0016573","histone acetylation",13,5,7.02,2428,"0.92062","0.90504","0.90504" +"GO:0018393","internal peptidyl-lysine acetylation",13,5,7.02,2429,"0.92062","0.90504","0.90504" +"GO:0018394","peptidyl-lysine acetylation",13,5,7.02,2430,"0.92062","0.90504","0.90504" +"GO:1902117","positive regulation of organelle assembl...",4,1,2.16,2572,"0.95548","0.90617","0.90617" +"GO:0006163","purine nucleotide metabolic process",56,28,30.26,1970,"0.77310","0.90619","0.90619" +"GO:0019693","ribose phosphate metabolic process",56,28,30.26,1971,"0.77310","0.90619","0.90619" +"GO:0099003","vesicle-mediated transport in synapse",17,7,9.19,2411,"0.90506","0.90623","0.90623" +"GO:0140014","mitotic nuclear division",17,5,9.19,2740,"0.98952","0.90623","0.90623" +"GO:0009056","catabolic process",173,82,93.48,2648,"0.97072","0.90660","0.90660" +"GO:0006513","protein monoubiquitination",13,7,7.02,1645,"0.61700","0.90747","0.90747" +"GO:0006094","gluconeogenesis",5,2,2.7,2136,"0.85910","0.90756","0.90756" +"GO:0019319","hexose biosynthetic process",5,2,2.7,2137,"0.85910","0.90756","0.90756" +"GO:0046364","monosaccharide biosynthetic process",5,2,2.7,2138,"0.85910","0.90756","0.90756" +"GO:0032020","ISG15-protein conjugation",3,1,1.62,2333,"0.90301","0.90875","0.90875" +"GO:0043401","steroid hormone mediated signaling pathw...",19,8,10.27,2215,"0.89930","0.90996","0.90996" +"GO:0000278","mitotic cell cycle",61,27,32.96,2538,"0.95335","0.91058","0.91058" +"GO:0097306","cellular response to alcohol",9,5,4.86,1617,"0.59853","0.91060","0.91060" +"GO:0048639","positive regulation of developmental gro...",4,1,2.16,2573,"0.95548","0.91067","0.91067" +"GO:0051171","regulation of nitrogen compound metaboli...",398,204,215.05,2213,"0.89746","0.91084","0.91084" +"GO:0002263","cell activation involved in immune respo...",7,4,3.78,1590,"0.58774","0.91094","0.91094" +"GO:0002366","leukocyte activation involved in immune ...",7,4,3.78,1591,"0.58774","0.91094","0.91094" +"GO:0035456","response to interferon-beta",6,1,3.24,2747,"0.99063","0.91176","0.91176" +"GO:1905897","regulation of response to endoplasmic re...",6,2,3.24,2453,"0.92428","0.91176","0.91176" +"GO:0051049","regulation of transport",94,53,50.79,878,"0.36011","0.44673","0.91183" +"GO:0070936","protein K48-linked ubiquitination",11,3,5.94,2723,"0.98279","0.91222","0.91222" +"GO:1901135","carbohydrate derivative metabolic proces...",159,91,85.91,670,"0.22548","0.04718","0.91255" +"GO:0006626","protein targeting to mitochondrion",11,2,5.94,2799,"0.99735","0.91270","0.91270" +"GO:0070585","protein localization to mitochondrion",11,2,5.94,2800,"0.99735","0.91270","0.91270" +"GO:0072655","establishment of protein localization to...",11,2,5.94,2801,"0.99735","0.91270","0.91270" +"GO:0010257","NADH dehydrogenase complex assembly",10,4,5.4,2195,"0.88681","0.91297","0.91297" +"GO:0032981","mitochondrial respiratory chain complex ...",10,4,5.4,2196,"0.88681","0.91297","0.91297" +"GO:0052547","regulation of peptidase activity",10,3,5.4,2640,"0.96870","0.91297","0.91297" +"GO:0000723","telomere maintenance",4,1,2.16,2574,"0.95548","0.91320","0.91320" +"GO:0032200","telomere organization",4,1,2.16,2575,"0.95548","0.91320","0.91320" +"GO:0009150","purine ribonucleotide metabolic process",54,27,29.18,1968,"0.77044","0.91331","0.91331" +"GO:0009259","ribonucleotide metabolic process",54,27,29.18,1969,"0.77044","0.91331","0.91331" +"GO:0030029","actin filament-based process",79,54,42.69,55,"0.00603","0.00067","0.91351" +"GO:0060042","retina morphogenesis in camera-type eye",10,5,5.4,1741,"0.71786","0.91396","0.91396" +"GO:0044110","growth involved in symbiotic interaction",3,1,1.62,2334,"0.90301","0.91423","0.91423" +"GO:0044116","growth of symbiont involved in interacti...",3,1,1.62,2335,"0.90301","0.91423","0.91423" +"GO:0044117","growth of symbiont in host",3,1,1.62,2336,"0.90301","0.91423","0.91423" +"GO:0044126","regulation of growth of symbiont in host",3,1,1.62,2337,"0.90301","0.91423","0.91423" +"GO:0044128","positive regulation of growth of symbion...",3,1,1.62,2338,"0.90301","0.91423","0.91423" +"GO:0044144","modulation of growth of symbiont involve...",3,1,1.62,2339,"0.90301","0.91423","0.91423" +"GO:0044148","positive regulation of growth of symbion...",3,1,1.62,2340,"0.90301","0.91423","0.91423" +"GO:0034613","cellular protein localization",142,76,76.73,1543,"0.58490","0.88063","0.91424" +"GO:0070727","cellular macromolecule localization",142,76,76.73,1544,"0.58490","0.88063","0.91424" +"GO:0006400","tRNA modification",5,3,2.7,1536,"0.57534","0.91466","0.91466" +"GO:1903708","positive regulation of hemopoiesis",5,2,2.7,2139,"0.85910","0.91466","0.91466" +"GO:0006839","mitochondrial transport",24,10,12.97,2435,"0.92314","0.91475","0.91475" +"GO:0006942","regulation of striated muscle contractio...",3,1,1.62,2341,"0.90301","0.91477","0.91477" +"GO:0042711","maternal behavior",3,1,1.62,2342,"0.90301","0.91477","0.91477" +"GO:0055117","regulation of cardiac muscle contraction",3,1,1.62,2343,"0.90301","0.91477","0.91477" +"GO:0060746","parental behavior",3,1,1.62,2344,"0.90301","0.91477","0.91477" +"GO:0098739","import across plasma membrane",3,1,1.62,2345,"0.90301","0.91477","0.91477" +"GO:0035725","sodium ion transmembrane transport",3,0,1.62,2887,"1.00000","0.91477","0.91477" +"GO:0097327","response to antineoplastic agent",3,0,1.62,2888,"1.00000","0.91477","0.91477" +"GO:0006605","protein targeting",25,10,13.51,2526,"0.94700","0.91501","0.91501" +"GO:0051403","stress-activated MAPK cascade",12,5,6.48,2176,"0.87520","0.91519","0.91519" +"GO:0031570","DNA integrity checkpoint",6,2,3.24,2454,"0.92428","0.91560","0.91560" +"GO:0061024","membrane organization",54,28,29.18,1690,"0.67916","0.91665","0.91665" +"GO:0043624","cellular protein complex disassembly",15,5,8.1,2647,"0.97005","0.91685","0.91685" +"GO:0010154","fruit development",3,1,1.62,2346,"0.90301","0.91692","0.91692" +"GO:0048316","seed development",3,1,1.62,2347,"0.90301","0.91692","0.91692" +"GO:0031110","regulation of microtubule polymerization...",7,3,3.78,2073,"0.83449","0.91744","0.91744" +"GO:0031112","positive regulation of microtubule polym...",7,3,3.78,2074,"0.83449","0.91744","0.91744" +"GO:0031113","regulation of microtubule polymerization",7,3,3.78,2075,"0.83449","0.91744","0.91744" +"GO:0031116","positive regulation of microtubule polym...",7,3,3.78,2076,"0.83449","0.91744","0.91744" +"GO:0007596","blood coagulation",12,9,6.48,381,"0.11982","0.02321","0.91765" +"GO:0007599","hemostasis",12,9,6.48,382,"0.11982","0.02321","0.91765" +"GO:0050817","coagulation",12,9,6.48,383,"0.11982","0.02321","0.91765" +"GO:0009064","glutamine family amino acid metabolic pr...",8,3,4.32,2234,"0.90250","0.91805","0.91805" +"GO:0007346","regulation of mitotic cell cycle",26,9,14.05,2730,"0.98615","0.91811","0.91811" +"GO:0090101","negative regulation of transmembrane rec...",6,3,3.24,1806,"0.72874","0.91837","0.91837" +"GO:0090288","negative regulation of cellular response...",6,3,3.24,1807,"0.72874","0.91837","0.91837" +"GO:1901576","organic substance biosynthetic process",623,288,336.62,2849,"1.00000","0.91862","0.91862" +"GO:1902275","regulation of chromatin organization",14,6,7.56,2163,"0.86643","0.91946","0.91946" +"GO:0045786","negative regulation of cell cycle",25,11,13.51,2204,"0.88734","0.91964","0.91964" +"GO:0046907","intracellular transport",152,77,82.13,2053,"0.82786","0.92042","0.92042" +"GO:0042476","odontogenesis",4,1,2.16,2576,"0.95548","0.92060","0.92060" +"GO:0046890","regulation of lipid biosynthetic process",6,3,3.24,1808,"0.72874","0.92060","0.92060" +"GO:0035264","multicellular organism growth",9,4,4.86,2047,"0.81923","0.92145","0.92145" +"GO:0006913","nucleocytoplasmic transport",14,3,7.56,2805,"0.99737","0.92221","0.92221" +"GO:0045807","positive regulation of endocytosis",14,6,7.56,2164,"0.86643","0.92221","0.92221" +"GO:0051169","nuclear transport",14,3,7.56,2806,"0.99737","0.92221","0.92221" +"GO:0050776","regulation of immune response",27,13,14.59,1985,"0.79157","0.92301","0.92301" +"GO:0051090","regulation of DNA-binding transcription ...",16,6,8.65,2499,"0.94347","0.92383","0.92383" +"GO:1903829","positive regulation of cellular protein ...",16,5,8.65,2719,"0.98214","0.92383","0.92383" +"GO:0009967","positive regulation of signal transducti...",73,40,39.44,1163,"0.49585","0.92386","0.92386" +"GO:0014031","mesenchymal cell development",6,3,3.24,1809,"0.72874","0.92451","0.92451" +"GO:0014032","neural crest cell development",6,3,3.24,1810,"0.72874","0.92451","0.92451" +"GO:0048864","stem cell development",6,3,3.24,1811,"0.72874","0.92451","0.92451" +"GO:0072523","purine-containing compound catabolic pro...",4,0,2.16,2889,"1.00000","0.92478","0.92478" +"GO:0002931","response to ischemia",3,1,1.62,2348,"0.90301","0.92527","0.92527" +"GO:0070059","intrinsic apoptotic signaling pathway in...",3,1,1.62,2349,"0.90301","0.92527","0.92527" +"GO:1902235","regulation of endoplasmic reticulum stre...",3,1,1.62,2350,"0.90301","0.92527","0.92527" +"GO:1902236","negative regulation of endoplasmic retic...",3,1,1.62,2351,"0.90301","0.92527","0.92527" +"GO:1905515","non-motile cilium assembly",5,1,2.7,2686,"0.97957","0.92550","0.92550" +"GO:0060255","regulation of macromolecule metabolic pr...",428,222,231.26,2095,"0.85092","0.92560","0.92560" +"GO:0048545","response to steroid hormone",34,13,18.37,2662,"0.97909","0.92568","0.92568" +"GO:0034762","regulation of transmembrane transport",30,18,16.21,840,"0.31893","0.64874","0.92576" +"GO:0007519","skeletal muscle tissue development",20,10,10.81,1770,"0.72268","0.92638","0.92638" +"GO:0006986","response to unfolded protein",10,4,5.4,2197,"0.88681","0.92642","0.92642" +"GO:0006820","anion transport",45,25,24.31,1149,"0.47928","0.92653","0.92653" +"GO:0006111","regulation of gluconeogenesis",4,1,2.16,2577,"0.95548","0.92654","0.92654" +"GO:0043255","regulation of carbohydrate biosynthetic ...",4,1,2.16,2578,"0.95548","0.92654","0.92654" +"GO:0007631","feeding behavior",9,3,4.86,2511,"0.94413","0.92679","0.92679" +"GO:0031532","actin cytoskeleton reorganization",3,1,1.62,2352,"0.90301","0.92696","0.92696" +"GO:0034504","protein localization to nucleus",13,4,7.02,2656,"0.97621","0.92758","0.92758" +"GO:2001234","negative regulation of apoptotic signali...",13,6,7.02,2011,"0.80253","0.92758","0.92758" +"GO:0071236","cellular response to antibiotic",10,5,5.4,1742,"0.71786","0.92826","0.92826" +"GO:0007033","vacuole organization",15,6,8.1,2419,"0.91207","0.92882","0.92882" +"GO:0002181","cytoplasmic translation",6,1,3.24,2748,"0.99063","0.92974","0.92974" +"GO:0042255","ribosome assembly",6,0,3.24,2890,"1.00000","0.92974","0.92974" +"GO:0006013","mannose metabolic process",3,1,1.62,2353,"0.90301","0.93029","0.93029" +"GO:1901565","organonitrogen compound catabolic proces...",92,37,49.71,2809,"0.99755","0.93092","0.93092" +"GO:0045930","negative regulation of mitotic cell cycl...",8,3,4.32,2235,"0.90250","0.93141","0.93141" +"GO:0010824","regulation of centrosome duplication",3,1,1.62,2354,"0.90301","0.93193","0.93193" +"GO:0046605","regulation of centrosome cycle",3,1,1.62,2355,"0.90301","0.93193","0.93193" +"GO:0018205","peptidyl-lysine modification",31,10,16.75,2795,"0.99589","0.93209","0.93209" +"GO:0015693","magnesium ion transport",3,0,1.62,2891,"1.00000","0.93225","0.93225" +"GO:0042274","ribosomal small subunit biogenesis",4,0,2.16,2892,"1.00000","0.93228","0.93228" +"GO:0002275","myeloid cell activation involved in immu...",6,3,3.24,1812,"0.72874","0.93275","0.93275" +"GO:0002283","neutrophil activation involved in immune...",6,3,3.24,1813,"0.72874","0.93275","0.93275" +"GO:0034314","Arp2/3 complex-mediated actin nucleation",6,3,3.24,1814,"0.72874","0.93275","0.93275" +"GO:0043299","leukocyte degranulation",6,3,3.24,1815,"0.72874","0.93275","0.93275" +"GO:0043312","neutrophil degranulation",6,3,3.24,1816,"0.72874","0.93275","0.93275" +"GO:0033036","macromolecule localization",214,117,115.63,1090,"0.45091","0.84260","0.93280" +"GO:0030099","myeloid cell differentiation",20,9,10.81,2091,"0.85054","0.93281","0.93281" +"GO:0009755","hormone-mediated signaling pathway",20,9,10.81,2092,"0.85054","0.93281","0.93281" +"GO:0015807","L-amino acid transport",8,3,4.32,2236,"0.90250","0.93301","0.93301" +"GO:0030317","flagellated sperm motility",5,1,2.7,2687,"0.97957","0.93382","0.93382" +"GO:0030330","DNA damage response, signal transduction...",5,2,2.7,2140,"0.85910","0.93382","0.93382" +"GO:1902229","regulation of intrinsic apoptotic signal...",5,2,2.7,2141,"0.85910","0.93382","0.93382" +"GO:0006289","nucleotide-excision repair",3,0,1.62,2893,"1.00000","0.93467","0.93467" +"GO:0090092","regulation of transmembrane receptor pro...",11,5,5.94,2022,"0.80924","0.93470","0.93470" +"GO:0048278","vesicle docking",7,2,3.78,2614,"0.96019","0.93491","0.93491" +"GO:0009991","response to extracellular stimulus",23,9,12.43,2533,"0.95065","0.93547","0.93547" +"GO:0006281","DNA repair",35,11,18.91,2811,"0.99807","0.93549","0.93549" +"GO:0045454","cell redox homeostasis",17,6,9.19,2631,"0.96442","0.93567","0.93567" +"GO:0015748","organophosphate ester transport",8,4,4.32,1768,"0.72114","0.93615","0.93615" +"GO:0007005","mitochondrion organization",38,19,20.53,1958,"0.74800","0.93666","0.93666" +"GO:0051641","cellular localization",228,124,123.19,1151,"0.48357","0.83833","0.93718" +"GO:0080134","regulation of response to stress",59,30,31.88,1832,"0.73583","0.93750","0.93750" +"GO:0002237","response to molecule of bacterial origin",6,3,3.24,1817,"0.72874","0.93816","0.93816" +"GO:0008630","intrinsic apoptotic signaling pathway in...",6,3,3.24,1818,"0.72874","0.93816","0.93816" +"GO:0031667","response to nutrient levels",22,9,11.89,2478,"0.92716","0.93821","0.93821" +"GO:0051261","protein depolymerization",11,5,5.94,2023,"0.80924","0.93842","0.93842" +"GO:1901654","response to ketone",11,3,5.94,2724,"0.98279","0.93842","0.93842" +"GO:0050778","positive regulation of immune response",21,10,11.35,1989,"0.79186","0.93974","0.93974" +"GO:0034505","tooth mineralization",3,0,1.62,2894,"1.00000","0.93986","0.93986" +"GO:0042475","odontogenesis of dentin-containing tooth",3,0,1.62,2895,"1.00000","0.93986","0.93986" +"GO:0070166","enamel mineralization",3,0,1.62,2896,"1.00000","0.93986","0.93986" +"GO:0097186","amelogenesis",3,0,1.62,2897,"1.00000","0.93986","0.93986" +"GO:0000184","nuclear-transcribed mRNA catabolic proce...",5,3,2.7,1537,"0.57534","0.93993","0.93993" +"GO:0035304","regulation of protein dephosphorylation",5,1,2.7,2688,"0.97957","0.93993","0.93993" +"GO:0003333","amino acid transmembrane transport",14,6,7.56,2165,"0.86643","0.94011","0.94011" +"GO:0009725","response to hormone",59,24,31.88,2732,"0.98658","0.94023","0.94023" +"GO:0016073","snRNA metabolic process",4,1,2.16,2579,"0.95548","0.94049","0.94049" +"GO:0045637","regulation of myeloid cell differentiati...",9,3,4.86,2512,"0.94413","0.94064","0.94064" +"GO:0010608","posttranscriptional regulation of gene e...",21,11,11.35,1675,"0.64659","0.94096","0.94096" +"GO:0044248","cellular catabolic process",156,73,84.29,2652,"0.97464","0.94110","0.94110" +"GO:0042273","ribosomal large subunit biogenesis",5,0,2.7,2898,"1.00000","0.94112","0.94112" +"GO:0006259","DNA metabolic process",63,30,34.04,2185,"0.87739","0.94149","0.94149" +"GO:0031098","stress-activated protein kinase signalin...",13,6,7.02,2012,"0.80253","0.94203","0.94203" +"GO:0071702","organic substance transport",166,89,89.69,1538,"0.57698","0.94227","0.94227" +"GO:0006520","cellular amino acid metabolic process",40,17,21.61,2530,"0.94886","0.94238","0.94238" +"GO:0002443","leukocyte mediated immunity",12,6,6.48,1717,"0.71690","0.94240","0.94240" +"GO:0009164","nucleoside catabolic process",3,1,1.62,2356,"0.90301","0.94306","0.94306" +"GO:0034656","nucleobase-containing small molecule cat...",3,1,1.62,2357,"0.90301","0.94306","0.94306" +"GO:0042454","ribonucleoside catabolic process",3,1,1.62,2358,"0.90301","0.94306","0.94306" +"GO:1901658","glycosyl compound catabolic process",3,1,1.62,2359,"0.90301","0.94306","0.94306" +"GO:0006195","purine nucleotide catabolic process",3,0,1.62,2899,"1.00000","0.94306","0.94306" +"GO:1901068","guanosine-containing compound metabolic ...",3,0,1.62,2900,"1.00000","0.94306","0.94306" +"GO:0007606","sensory perception of chemical stimulus",10,3,5.4,2641,"0.96870","0.94388","0.94388" +"GO:0051170","import into nucleus",10,2,5.4,2778,"0.99470","0.94388","0.94388" +"GO:0090150","establishment of protein localization to...",16,6,8.65,2500,"0.94347","0.94390","0.94390" +"GO:0010638","positive regulation of organelle organiz...",53,30,28.64,1015,"0.40646","0.36129","0.94433" +"GO:0062014","negative regulation of small molecule me...",3,0,1.62,2901,"1.00000","0.94440","0.94440" +"GO:0071383","cellular response to steroid hormone sti...",25,10,13.51,2527,"0.94700","0.94500","0.94500" +"GO:0045333","cellular respiration",30,20,16.21,373,"0.11189","0.28407","0.94504" +"GO:0043085","positive regulation of catalytic activit...",46,21,24.85,2406,"0.90309","0.94578","0.94578" +"GO:0008340","determination of adult lifespan",3,1,1.62,2360,"0.90301","0.94588","0.94588" +"GO:0008354","germ cell migration",3,1,1.62,2361,"0.90301","0.94588","0.94588" +"GO:0022904","respiratory electron transport chain",13,6,7.02,2013,"0.80253","0.94606","0.94606" +"GO:0009112","nucleobase metabolic process",3,1,1.62,2362,"0.90301","0.94618","0.94618" +"GO:0046112","nucleobase biosynthetic process",3,1,1.62,2363,"0.90301","0.94618","0.94618" +"GO:0070373","negative regulation of ERK1 and ERK2 cas...",5,1,2.7,2689,"0.97957","0.94690","0.94690" +"GO:0070925","organelle assembly",76,36,41.06,2407,"0.90315","0.94701","0.94701" +"GO:0044249","cellular biosynthetic process",608,277,328.52,2856,"1.00000","0.94717","0.94717" +"GO:0052548","regulation of endopeptidase activity",8,3,4.32,2237,"0.90250","0.94732","0.94732" +"GO:2000116","regulation of cysteine-type endopeptidas...",8,3,4.32,2238,"0.90250","0.94732","0.94732" +"GO:0006865","amino acid transport",15,6,8.1,2420,"0.91207","0.94798","0.94798" +"GO:0010959","regulation of metal ion transport",19,10,10.27,1669,"0.63985","0.36812","0.94805" +"GO:0007140","male meiotic nuclear division",4,0,2.16,2902,"1.00000","0.94823","0.94823" +"GO:0044403","symbiont process",20,5,10.81,2810,"0.99805","0.94828","0.94828" +"GO:0043954","cellular component maintenance",6,2,3.24,2455,"0.92428","0.94835","0.94835" +"GO:0006606","protein import into nucleus",9,2,4.86,2736,"0.98950","0.94937","0.94937" +"GO:0043618","regulation of transcription from RNA pol...",9,4,4.86,2048,"0.81923","0.94937","0.94937" +"GO:0043620","regulation of DNA-templated transcriptio...",9,4,4.86,2049,"0.81923","0.94937","0.94937" +"GO:0050764","regulation of phagocytosis",9,3,4.86,2513,"0.94413","0.94937","0.94937" +"GO:1902850","microtubule cytoskeleton organization in...",9,4,4.86,2050,"0.81923","0.94937","0.94937" +"GO:0016241","regulation of macroautophagy",10,5,5.4,1743,"0.71786","0.94949","0.94949" +"GO:0042981","regulation of apoptotic process",57,29,30.8,1829,"0.73224","0.94999","0.94999" +"GO:0043067","regulation of programmed cell death",57,29,30.8,1830,"0.73224","0.94999","0.94999" +"GO:0050790","regulation of catalytic activity",91,43,49.17,2436,"0.92333","0.95028","0.95028" +"GO:0008610","lipid biosynthetic process",47,22,25.4,2169,"0.87501","0.95046","0.95046" +"GO:0000460","maturation of 5.8S rRNA",3,0,1.62,2903,"1.00000","0.95049","0.95049" +"GO:0000466","maturation of 5.8S rRNA from tricistroni...",3,0,1.62,2904,"1.00000","0.95049","0.95049" +"GO:0006974","cellular response to DNA damage stimulus",56,22,30.26,2771,"0.99122","0.95087","0.95087" +"GO:0006401","RNA catabolic process",20,7,10.81,2651,"0.97414","0.95158","0.95158" +"GO:0017038","protein import",14,3,7.56,2807,"0.99737","0.95169","0.95169" +"GO:0030163","protein catabolic process",64,22,34.58,2829,"0.99957","0.95197","0.95197" +"GO:1903320","regulation of protein modification by sm...",17,6,9.19,2632,"0.96442","0.95201","0.95201" +"GO:0006310","DNA recombination",15,7,8.1,2003,"0.79799","0.95211","0.95211" +"GO:0006903","vesicle targeting",6,3,3.24,1819,"0.72874","0.95215","0.95215" +"GO:0048199","vesicle targeting, to, from or within Go...",6,3,3.24,1820,"0.72874","0.95215","0.95215" +"GO:0010507","negative regulation of autophagy",7,3,3.78,2077,"0.83449","0.95232","0.95232" +"GO:0010498","proteasomal protein catabolic process",30,11,16.21,2721,"0.98246","0.95232","0.95232" +"GO:1903900","regulation of viral life cycle",10,2,5.4,2779,"0.99470","0.95257","0.95257" +"GO:0012501","programmed cell death",83,44,44.85,1646,"0.61944","0.95260","0.95260" +"GO:0031647","regulation of protein stability",19,9,10.27,1994,"0.79300","0.95293","0.95293" +"GO:0031056","regulation of histone modification",12,5,6.48,2177,"0.87520","0.95311","0.95311" +"GO:0070507","regulation of microtubule cytoskeleton o...",10,4,5.4,2198,"0.88681","0.95332","0.95332" +"GO:0015849","organic acid transport",25,12,13.51,1979,"0.79126","0.95343","0.95343" +"GO:0046942","carboxylic acid transport",25,12,13.51,1980,"0.79126","0.95343","0.95343" +"GO:0006402","mRNA catabolic process",19,7,10.27,2603,"0.95933","0.95397","0.95397" +"GO:1901575","organic substance catabolic process",144,63,77.81,2794,"0.99577","0.95400","0.95400" +"GO:0071310","cellular response to organic substance",101,46,54.57,2636,"0.96761","0.95421","0.95421" +"GO:0031396","regulation of protein ubiquitination",16,6,8.65,2501,"0.94347","0.95478","0.95478" +"GO:0035690","cellular response to drug",16,7,8.65,2157,"0.85972","0.95478","0.95478" +"GO:0010970","transport along microtubule",20,8,10.81,2487,"0.93182","0.95479","0.95479" +"GO:0030705","cytoskeleton-dependent intracellular tra...",20,8,10.81,2488,"0.93182","0.95479","0.95479" +"GO:0099111","microtubule-based transport",20,8,10.81,2489,"0.93182","0.95479","0.95479" +"GO:0030522","intracellular receptor signaling pathway",15,6,8.1,2421,"0.91207","0.95488","0.95488" +"GO:0007088","regulation of mitotic nuclear division",8,2,4.32,2664,"0.97942","0.95488","0.95488" +"GO:0036465","synaptic vesicle recycling",8,2,4.32,2665,"0.97942","0.95488","0.95488" +"GO:0036473","cell death in response to oxidative stre...",8,3,4.32,2239,"0.90250","0.95488","0.95488" +"GO:0097191","extrinsic apoptotic signaling pathway",8,3,4.32,2240,"0.90250","0.95488","0.95488" +"GO:0043632","modification-dependent macromolecule cat...",46,17,24.85,2775,"0.99375","0.95494","0.95494" +"GO:0051091","positive regulation of DNA-binding trans...",14,5,7.56,2536,"0.95073","0.95525","0.95525" +"GO:0019221","cytokine-mediated signaling pathway",6,2,3.24,2456,"0.92428","0.95563","0.95563" +"GO:0007568","aging",20,9,10.81,2093,"0.85054","0.95584","0.95584" +"GO:0031128","developmental induction",3,1,1.62,2364,"0.90301","0.95585","0.95585" +"GO:0006511","ubiquitin-dependent protein catabolic pr...",45,17,24.31,2769,"0.99087","0.95592","0.95592" +"GO:0019941","modification-dependent protein catabolic...",45,17,24.31,2770,"0.99087","0.95592","0.95592" +"GO:0006415","translational termination",4,0,2.16,2905,"1.00000","0.95593","0.95593" +"GO:1901800","positive regulation of proteasomal prote...",9,3,4.86,2514,"0.94413","0.95607","0.95607" +"GO:1903052","positive regulation of proteolysis invol...",9,3,4.86,2515,"0.94413","0.95607","0.95607" +"GO:1903364","positive regulation of cellular protein ...",9,3,4.86,2516,"0.94413","0.95607","0.95607" +"GO:0002253","activation of immune response",15,7,8.1,2004,"0.79799","0.95668","0.95668" +"GO:0002764","immune response-regulating signaling pat...",15,6,8.1,2422,"0.91207","0.95668","0.95668" +"GO:0090501","RNA phosphodiester bond hydrolysis",4,0,2.16,2906,"1.00000","0.95685","0.95685" +"GO:0035303","regulation of dephosphorylation",8,3,4.32,2241,"0.90250","0.95685","0.95685" +"GO:0006575","cellular modified amino acid metabolic p...",11,4,5.94,2483,"0.93114","0.95711","0.95711" +"GO:0016055","Wnt signaling pathway",32,17,17.29,1637,"0.61250","0.95774","0.95774" +"GO:1902532","negative regulation of intracellular sig...",33,17,17.83,1692,"0.68104","0.95775","0.95775" +"GO:0042221","response to chemical",220,123,118.87,829,"0.30398","0.70501","0.95821" +"GO:0044419","interspecies interaction between organis...",21,5,11.35,2820,"0.99891","0.95877","0.95877" +"GO:0006887","exocytosis",28,15,15.13,1598,"0.59638","0.95882","0.95882" +"GO:1904062","regulation of cation transmembrane trans...",23,14,12.43,846,"0.32819","0.53666","0.95946" +"GO:0002757","immune response-activating signal transd...",14,6,7.56,2166,"0.86643","0.95952","0.95952" +"GO:0043903","regulation of symbiosis, encompassing mu...",14,3,7.56,2808,"0.99737","0.95952","0.95952" +"GO:0097193","intrinsic apoptotic signaling pathway",14,7,7.56,1725,"0.71733","0.95952","0.95952" +"GO:0022898","regulation of transmembrane transporter ...",21,12,11.35,1128,"0.47560","0.47800","0.95952" +"GO:0032409","regulation of transporter activity",21,12,11.35,1129,"0.47560","0.47800","0.95952" +"GO:0032412","regulation of ion transmembrane transpor...",21,12,11.35,1130,"0.47560","0.47800","0.95952" +"GO:0018200","peptidyl-glutamic acid modification",4,2,2.16,1948,"0.74559","0.96001","0.96001" +"GO:1902533","positive regulation of intracellular sig...",37,19,19.99,1693,"0.69087","0.96004","0.96004" +"GO:0043281","regulation of cysteine-type endopeptidas...",6,1,3.24,2749,"0.99063","0.96026","0.96026" +"GO:0042594","response to starvation",14,4,7.56,2731,"0.98640","0.96035","0.96035" +"GO:0034614","cellular response to reactive oxygen spe...",7,3,3.78,2078,"0.83449","0.96043","0.96043" +"GO:0042542","response to hydrogen peroxide",7,3,3.78,2079,"0.83449","0.96043","0.96043" +"GO:0045646","regulation of erythrocyte differentiatio...",7,2,3.78,2615,"0.96019","0.96043","0.96043" +"GO:0046777","protein autophosphorylation",7,1,3.78,2789,"0.99571","0.96043","0.96043" +"GO:0070301","cellular response to hydrogen peroxide",7,3,3.78,2080,"0.83449","0.96043","0.96043" +"GO:2001236","regulation of extrinsic apoptotic signal...",7,3,3.78,2081,"0.83449","0.96043","0.96043" +"GO:1903825","organic acid transmembrane transport",17,7,9.19,2412,"0.90506","0.96069","0.96069" +"GO:1905039","carboxylic acid transmembrane transport",17,7,9.19,2413,"0.90506","0.96069","0.96069" +"GO:0007141","male meiosis I",3,0,1.62,2907,"1.00000","0.96093","0.96093" +"GO:0009409","response to cold",3,0,1.62,2908,"1.00000","0.96093","0.96093" +"GO:0033993","response to lipid",52,21,28.1,2726,"0.98363","0.96099","0.96099" +"GO:0044257","cellular protein catabolic process",52,18,28.1,2817,"0.99860","0.96099","0.96099" +"GO:0051603","proteolysis involved in cellular protein...",52,18,28.1,2818,"0.99860","0.96099","0.96099" +"GO:0051128","regulation of cellular component organiz...",169,98,91.31,578,"0.16134","0.36457","0.96125" +"GO:0048483","autonomic nervous system development",3,1,1.62,2365,"0.90301","0.96156","0.96156" +"GO:0048484","enteric nervous system development",3,1,1.62,2366,"0.90301","0.96156","0.96156" +"GO:0071806","protein transmembrane transport",11,2,5.94,2802,"0.99735","0.96188","0.96188" +"GO:0018022","peptidyl-lysine methylation",17,6,9.19,2633,"0.96442","0.96238","0.96238" +"GO:0071495","cellular response to endogenous stimulus",62,30,33.5,2089,"0.84901","0.96249","0.96249" +"GO:0007034","vacuolar transport",19,6,10.27,2733,"0.98666","0.96283","0.96283" +"GO:0071496","cellular response to external stimulus",13,5,7.02,2431,"0.92062","0.96315","0.96315" +"GO:0009408","response to heat",13,4,7.02,2657,"0.97621","0.96332","0.96332" +"GO:0016226","iron-sulfur cluster assembly",4,1,2.16,2580,"0.95548","0.96390","0.96390" +"GO:0031163","metallo-sulfur cluster assembly",4,1,2.16,2581,"0.95548","0.96390","0.96390" +"GO:0000075","cell cycle checkpoint",11,2,5.94,2803,"0.99735","0.96401","0.96401" +"GO:0000027","ribosomal large subunit assembly",3,0,1.62,2909,"1.00000","0.96427","0.96427" +"GO:0009719","response to endogenous stimulus",79,35,42.69,2645,"0.96963","0.96433","0.96433" +"GO:0033554","cellular response to stress",115,47,62.14,2819,"0.99862","0.96433","0.96433" +"GO:0050792","regulation of viral process",11,2,5.94,2804,"0.99735","0.96509","0.96509" +"GO:1902017","regulation of cilium assembly",11,5,5.94,2024,"0.80924","0.96509","0.96509" +"GO:0097194","execution phase of apoptosis",5,1,2.7,2690,"0.97957","0.96541","0.96541" +"GO:0002431","Fc receptor mediated stimulatory signali...",3,1,1.62,2367,"0.90301","0.96583","0.96583" +"GO:0005996","monosaccharide metabolic process",12,4,6.48,2600,"0.95911","0.96595","0.96595" +"GO:0030902","hindbrain development",12,5,6.48,2178,"0.87520","0.96595","0.96595" +"GO:0031398","positive regulation of protein ubiquitin...",12,5,6.48,2179,"0.87520","0.96595","0.96595" +"GO:1903322","positive regulation of protein modificat...",12,5,6.48,2180,"0.87520","0.96595","0.96595" +"GO:0001906","cell killing",6,2,3.24,2457,"0.92428","0.96600","0.96600" +"GO:0002449","lymphocyte mediated immunity",6,2,3.24,2458,"0.92428","0.96600","0.96600" +"GO:0002703","regulation of leukocyte mediated immunit...",6,2,3.24,2459,"0.92428","0.96600","0.96600" +"GO:0002705","positive regulation of leukocyte mediate...",6,2,3.24,2460,"0.92428","0.96600","0.96600" +"GO:0002706","regulation of lymphocyte mediated immuni...",6,2,3.24,2461,"0.92428","0.96600","0.96600" +"GO:0002708","positive regulation of lymphocyte mediat...",6,2,3.24,2462,"0.92428","0.96600","0.96600" +"GO:0007052","mitotic spindle organization",6,2,3.24,2463,"0.92428","0.96600","0.96600" +"GO:0007608","sensory perception of smell",6,2,3.24,2464,"0.92428","0.96600","0.96600" +"GO:0010656","negative regulation of muscle cell apopt...",6,1,3.24,2750,"0.99063","0.96600","0.96600" +"GO:0010657","muscle cell apoptotic process",6,1,3.24,2751,"0.99063","0.96600","0.96600" +"GO:0010658","striated muscle cell apoptotic process",6,1,3.24,2752,"0.99063","0.96600","0.96600" +"GO:0010659","cardiac muscle cell apoptotic process",6,1,3.24,2753,"0.99063","0.96600","0.96600" +"GO:0010660","regulation of muscle cell apoptotic proc...",6,1,3.24,2754,"0.99063","0.96600","0.96600" +"GO:0010662","regulation of striated muscle cell apopt...",6,1,3.24,2755,"0.99063","0.96600","0.96600" +"GO:0010664","negative regulation of striated muscle c...",6,1,3.24,2756,"0.99063","0.96600","0.96600" +"GO:0010665","regulation of cardiac muscle cell apopto...",6,1,3.24,2757,"0.99063","0.96600","0.96600" +"GO:0010667","negative regulation of cardiac muscle ce...",6,1,3.24,2758,"0.99063","0.96600","0.96600" +"GO:0031341","regulation of cell killing",6,2,3.24,2465,"0.92428","0.96600","0.96600" +"GO:0031343","positive regulation of cell killing",6,2,3.24,2466,"0.92428","0.96600","0.96600" +"GO:0032355","response to estradiol",6,1,3.24,2759,"0.99063","0.96600","0.96600" +"GO:0032570","response to progesterone",6,1,3.24,2760,"0.99063","0.96600","0.96600" +"GO:0034605","cellular response to heat",6,1,3.24,2761,"0.99063","0.96600","0.96600" +"GO:0042440","pigment metabolic process",6,3,3.24,1821,"0.72874","0.96600","0.96600" +"GO:0061635","regulation of protein complex stability",6,2,3.24,2467,"0.92428","0.96600","0.96600" +"GO:1900407","regulation of cellular response to oxida...",6,1,3.24,2762,"0.99063","0.96600","0.96600" +"GO:1902883","negative regulation of response to oxida...",6,2,3.24,2468,"0.92428","0.96600","0.96600" +"GO:1903313","positive regulation of mRNA metabolic pr...",6,1,3.24,2763,"0.99063","0.96600","0.96600" +"GO:1903321","negative regulation of protein modificat...",6,1,3.24,2764,"0.99063","0.96600","0.96600" +"GO:1905477","positive regulation of protein localizat...",6,3,3.24,1822,"0.72874","0.96600","0.96600" +"GO:0051701","interaction with host",6,0,3.24,2910,"1.00000","0.96600","0.96600" +"GO:0002444","myeloid leukocyte mediated immunity",7,4,3.78,1592,"0.58774","0.96605","0.96605" +"GO:0002446","neutrophil mediated immunity",7,4,3.78,1593,"0.58774","0.96605","0.96605" +"GO:0036230","granulocyte activation",7,4,3.78,1594,"0.58774","0.96605","0.96605" +"GO:0042119","neutrophil activation",7,4,3.78,1595,"0.58774","0.96605","0.96605" +"GO:0006928","movement of cell or subcellular componen...",110,64,59.44,661,"0.21350","0.48016","0.96645" +"GO:1903827","regulation of cellular protein localizat...",26,10,14.05,2628,"0.96408","0.96666","0.96666" +"GO:0002262","myeloid cell homeostasis",14,7,7.56,1726,"0.71733","0.96671","0.96671" +"GO:0030218","erythrocyte differentiation",14,7,7.56,1727,"0.71733","0.96671","0.96671" +"GO:0034101","erythrocyte homeostasis",14,7,7.56,1728,"0.71733","0.96671","0.96671" +"GO:0009266","response to temperature stimulus",16,6,8.65,2502,"0.94347","0.96704","0.96704" +"GO:0042493","response to drug",52,28,28.1,1457,"0.56793","0.96712","0.96712" +"GO:0080135","regulation of cellular response to stres...",37,15,19.99,2634,"0.96596","0.96751","0.96751" +"GO:0001777","T cell homeostatic proliferation",3,1,1.62,2368,"0.90301","0.96782","0.96782" +"GO:0043029","T cell homeostasis",3,1,1.62,2369,"0.90301","0.96782","0.96782" +"GO:0045647","negative regulation of erythrocyte diffe...",3,1,1.62,2370,"0.90301","0.96782","0.96782" +"GO:0046013","regulation of T cell homeostatic prolife...",3,1,1.62,2371,"0.90301","0.96782","0.96782" +"GO:0060218","hematopoietic stem cell differentiation",3,1,1.62,2372,"0.90301","0.96782","0.96782" +"GO:0061299","retina vasculature morphogenesis in came...",3,1,1.62,2373,"0.90301","0.96782","0.96782" +"GO:0061304","retinal blood vessel morphogenesis",3,1,1.62,2374,"0.90301","0.96782","0.96782" +"GO:1901532","regulation of hematopoietic progenitor c...",3,1,1.62,2375,"0.90301","0.96782","0.96782" +"GO:1902036","regulation of hematopoietic stem cell di...",3,1,1.62,2376,"0.90301","0.96782","0.96782" +"GO:0051246","regulation of protein metabolic process",123,65,66.46,1671,"0.64261","0.96791","0.96791" +"GO:2001242","regulation of intrinsic apoptotic signal...",11,5,5.94,2025,"0.80924","0.96809","0.96809" +"GO:0006855","drug transmembrane transport",7,2,3.78,2616,"0.96019","0.96834","0.96834" +"GO:1902475","L-alpha-amino acid transmembrane transpo...",7,2,3.78,2617,"0.96019","0.96834","0.96834" +"GO:0006536","glutamate metabolic process",3,0,1.62,2911,"1.00000","0.96851","0.96851" +"GO:0044743","protein transmembrane import into intrac...",9,1,4.86,2822,"0.99910","0.96873","0.96873" +"GO:0019318","hexose metabolic process",11,4,5.94,2484,"0.93114","0.96875","0.96875" +"GO:0070723","response to cholesterol",3,1,1.62,2377,"0.90301","0.96896","0.96896" +"GO:0071397","cellular response to cholesterol",3,1,1.62,2378,"0.90301","0.96896","0.96896" +"GO:0002753","cytoplasmic pattern recognition receptor...",5,2,2.7,2142,"0.85910","0.96901","0.96901" +"GO:1902652","secondary alcohol metabolic process",5,2,2.7,2143,"0.85910","0.96901","0.96901" +"GO:1901700","response to oxygen-containing compound",68,33,36.74,2097,"0.85232","0.96935","0.96935" +"GO:0046530","photoreceptor cell differentiation",16,7,8.65,2158,"0.85972","0.96943","0.96943" +"GO:0006515","protein quality control for misfolded or...",4,1,2.16,2582,"0.95548","0.97035","0.97035" +"GO:0071396","cellular response to lipid",39,17,21.07,2481,"0.93049","0.97075","0.97075" +"GO:0000956","nuclear-transcribed mRNA catabolic proce...",12,4,6.48,2601,"0.95911","0.97076","0.97076" +"GO:0016125","sterol metabolic process",6,2,3.24,2469,"0.92428","0.97084","0.97084" +"GO:0006954","inflammatory response",10,4,5.4,2199,"0.88681","0.97096","0.97096" +"GO:0006301","postreplication repair",6,1,3.24,2765,"0.99063","0.97115","0.97115" +"GO:0031060","regulation of histone methylation",6,3,3.24,1823,"0.72874","0.97115","0.97115" +"GO:0042770","signal transduction in response to DNA d...",6,3,3.24,1824,"0.72874","0.97115","0.97115" +"GO:0097722","sperm motility",6,2,3.24,2470,"0.92428","0.97115","0.97115" +"GO:0043409","negative regulation of MAPK cascade",12,4,6.48,2602,"0.95911","0.97142","0.97142" +"GO:0031668","cellular response to extracellular stimu...",10,3,5.4,2642,"0.96870","0.97156","0.97156" +"GO:0044262","cellular carbohydrate metabolic process",10,4,5.4,2200,"0.88681","0.97156","0.97156" +"GO:0001909","leukocyte mediated cytotoxicity",5,1,2.7,2691,"0.97957","0.97159","0.97159" +"GO:0001910","regulation of leukocyte mediated cytotox...",5,1,2.7,2692,"0.97957","0.97159","0.97159" +"GO:0001912","positive regulation of leukocyte mediate...",5,1,2.7,2693,"0.97957","0.97159","0.97159" +"GO:0001959","regulation of cytokine-mediated signalin...",5,1,2.7,2694,"0.97957","0.97159","0.97159" +"GO:0001961","positive regulation of cytokine-mediated...",5,1,2.7,2695,"0.97957","0.97159","0.97159" +"GO:0002250","adaptive immune response",5,1,2.7,2696,"0.97957","0.97159","0.97159" +"GO:0002460","adaptive immune response based on somati...",5,1,2.7,2697,"0.97957","0.97159","0.97159" +"GO:0002819","regulation of adaptive immune response",5,1,2.7,2698,"0.97957","0.97159","0.97159" +"GO:0002821","positive regulation of adaptive immune r...",5,1,2.7,2699,"0.97957","0.97159","0.97159" +"GO:0002822","regulation of adaptive immune response b...",5,1,2.7,2700,"0.97957","0.97159","0.97159" +"GO:0002824","positive regulation of adaptive immune r...",5,1,2.7,2701,"0.97957","0.97159","0.97159" +"GO:0006623","protein targeting to vacuole",5,1,2.7,2702,"0.97957","0.97159","0.97159" +"GO:0036474","cell death in response to hydrogen perox...",5,1,2.7,2703,"0.97957","0.97159","0.97159" +"GO:0042698","ovulation cycle",5,1,2.7,2704,"0.97957","0.97159","0.97159" +"GO:0060759","regulation of response to cytokine stimu...",5,1,2.7,2705,"0.97957","0.97159","0.97159" +"GO:0060760","positive regulation of response to cytok...",5,1,2.7,2706,"0.97957","0.97159","0.97159" +"GO:0090307","mitotic spindle assembly",5,2,2.7,2144,"0.85910","0.97159","0.97159" +"GO:1900408","negative regulation of cellular response...",5,1,2.7,2707,"0.97957","0.97159","0.97159" +"GO:1903201","regulation of oxidative stress-induced c...",5,1,2.7,2708,"0.97957","0.97159","0.97159" +"GO:1903202","negative regulation of oxidative stress-...",5,1,2.7,2709,"0.97957","0.97159","0.97159" +"GO:2001024","negative regulation of response to drug",5,1,2.7,2710,"0.97957","0.97159","0.97159" +"GO:2001237","negative regulation of extrinsic apoptot...",5,2,2.7,2145,"0.85910","0.97159","0.97159" +"GO:0042026","protein refolding",5,0,2.7,2912,"1.00000","0.97159","0.97159" +"GO:0048488","synaptic vesicle endocytosis",5,0,2.7,2913,"1.00000","0.97159","0.97159" +"GO:0050766","positive regulation of phagocytosis",5,0,2.7,2914,"1.00000","0.97159","0.97159" +"GO:0070841","inclusion body assembly",5,0,2.7,2915,"1.00000","0.97159","0.97159" +"GO:0090083","regulation of inclusion body assembly",5,0,2.7,2916,"1.00000","0.97159","0.97159" +"GO:0090084","negative regulation of inclusion body as...",5,0,2.7,2917,"1.00000","0.97159","0.97159" +"GO:0140238","presynaptic endocytosis",5,0,2.7,2918,"1.00000","0.97159","0.97159" +"GO:1903332","regulation of protein folding",5,0,2.7,2919,"1.00000","0.97159","0.97159" +"GO:0048285","organelle fission",31,11,16.75,2734,"0.98845","0.97173","0.97173" +"GO:0033365","protein localization to organelle",48,17,25.94,2798,"0.99716","0.97188","0.97188" +"GO:0043162","ubiquitin-dependent protein catabolic pr...",4,2,2.16,1949,"0.74559","0.97224","0.97224" +"GO:0050789","regulation of biological process",986,543,532.76,654,"0.21129","0.14968","0.97314" +"GO:2001244","positive regulation of intrinsic apoptot...",3,1,1.62,2379,"0.90301","0.97323","0.97323" +"GO:0032268","regulation of cellular protein metabolic...",114,57,61.6,2084,"0.83663","0.97359","0.97359" +"GO:0071407","cellular response to organic cyclic comp...",35,15,18.91,2492,"0.93390","0.97375","0.97375" +"GO:0044281","small molecule metabolic process",201,96,108.6,2649,"0.97333","0.97383","0.97383" +"GO:0021549","cerebellum development",9,3,4.86,2517,"0.94413","0.97438","0.97438" +"GO:0022037","metencephalon development",9,3,4.86,2518,"0.94413","0.97438","0.97438" +"GO:0031669","cellular response to nutrient levels",9,3,4.86,2519,"0.94413","0.97438","0.97438" +"GO:0062012","regulation of small molecule metabolic p...",9,2,4.86,2737,"0.98950","0.97438","0.97438" +"GO:0014070","response to organic cyclic compound",54,25,29.18,2218,"0.90151","0.97451","0.97451" +"GO:0008285","negative regulation of cell proliferatio...",29,13,15.67,2189,"0.88242","0.97453","0.97453" +"GO:0065009","regulation of molecular function",133,70,71.86,1680,"0.66428","0.97249","0.97468" +"GO:0031124","mRNA 3'-end processing",3,0,1.62,2920,"1.00000","0.97469","0.97469" +"GO:0019058","viral life cycle",12,3,6.48,2768,"0.99068","0.97481","0.97481" +"GO:0016071","mRNA metabolic process",52,17,28.1,2828,"0.99947","0.97497","0.97497" +"GO:0045005","DNA-dependent DNA replication maintenanc...",3,1,1.62,2380,"0.90301","0.97500","0.97500" +"GO:0070828","heterochromatin organization",3,0,1.62,2921,"1.00000","0.97500","0.97500" +"GO:0065002","intracellular protein transmembrane tran...",7,2,3.78,2618,"0.96019","0.97561","0.97561" +"GO:0072321","chaperone-mediated protein transport",7,1,3.78,2790,"0.99571","0.97561","0.97561" +"GO:0016569","covalent chromatin modification",42,18,22.69,2528,"0.94741","0.97579","0.97579" +"GO:0006915","apoptotic process",78,41,42.15,1676,"0.64876","0.97579","0.97579" +"GO:0002274","myeloid leukocyte activation",10,4,5.4,2201,"0.88681","0.97614","0.97614" +"GO:1903311","regulation of mRNA metabolic process",10,4,5.4,2202,"0.88681","0.97614","0.97614" +"GO:0015711","organic anion transport",33,16,17.83,1995,"0.79400","0.97626","0.97626" +"GO:0034097","response to cytokine",27,10,14.59,2653,"0.97605","0.97628","0.97628" +"GO:0071345","cellular response to cytokine stimulus",27,10,14.59,2654,"0.97605","0.97628","0.97628" +"GO:0016570","histone modification",40,17,21.61,2531,"0.94886","0.97695","0.97695" +"GO:0009059","macromolecule biosynthetic process",502,222,271.24,2857,"1.00000","0.97695","0.97695" +"GO:0042461","photoreceptor cell development",14,6,7.56,2167,"0.86643","0.97718","0.97718" +"GO:0009267","cellular response to starvation",8,2,4.32,2666,"0.97942","0.97720","0.97720" +"GO:0045639","positive regulation of myeloid cell diff...",4,1,2.16,2583,"0.95548","0.97722","0.97722" +"GO:0045648","positive regulation of erythrocyte diffe...",4,1,2.16,2584,"0.95548","0.97722","0.97722" +"GO:0001913","T cell mediated cytotoxicity",4,0,2.16,2922,"1.00000","0.97722","0.97722" +"GO:0001914","regulation of T cell mediated cytotoxici...",4,0,2.16,2923,"1.00000","0.97722","0.97722" +"GO:0001916","positive regulation of T cell mediated c...",4,0,2.16,2924,"1.00000","0.97722","0.97722" +"GO:0002456","T cell mediated immunity",4,0,2.16,2925,"1.00000","0.97722","0.97722" +"GO:0002709","regulation of T cell mediated immunity",4,0,2.16,2926,"1.00000","0.97722","0.97722" +"GO:0002711","positive regulation of T cell mediated i...",4,0,2.16,2927,"1.00000","0.97722","0.97722" +"GO:0006622","protein targeting to lysosome",4,0,2.16,2928,"1.00000","0.97722","0.97722" +"GO:0007020","microtubule nucleation",4,0,2.16,2929,"1.00000","0.97722","0.97722" +"GO:0010045","response to nickel cation",4,0,2.16,2930,"1.00000","0.97722","0.97722" +"GO:0016191","synaptic vesicle uncoating",4,0,2.16,2931,"1.00000","0.97722","0.97722" +"GO:0030260","entry into host cell",4,0,2.16,2932,"1.00000","0.97722","0.97722" +"GO:0032069","regulation of nuclease activity",4,0,2.16,2933,"1.00000","0.97722","0.97722" +"GO:0032075","positive regulation of nuclease activity",4,0,2.16,2934,"1.00000","0.97722","0.97722" +"GO:0033120","positive regulation of RNA splicing",4,0,2.16,2935,"1.00000","0.97722","0.97722" +"GO:0044409","entry into host",4,0,2.16,2936,"1.00000","0.97722","0.97722" +"GO:0044849","estrous cycle",4,0,2.16,2937,"1.00000","0.97722","0.97722" +"GO:0048026","positive regulation of mRNA splicing, vi...",4,0,2.16,2938,"1.00000","0.97722","0.97722" +"GO:0050685","positive regulation of mRNA processing",4,0,2.16,2939,"1.00000","0.97722","0.97722" +"GO:0051806","entry into cell of other organism involv...",4,0,2.16,2940,"1.00000","0.97722","0.97722" +"GO:0051828","entry into other organism involved in sy...",4,0,2.16,2941,"1.00000","0.97722","0.97722" +"GO:0061083","regulation of protein refolding",4,0,2.16,2942,"1.00000","0.97722","0.97722" +"GO:0061462","protein localization to lysosome",4,0,2.16,2943,"1.00000","0.97722","0.97722" +"GO:0061684","chaperone-mediated autophagy",4,0,2.16,2944,"1.00000","0.97722","0.97722" +"GO:0061738","late endosomal microautophagy",4,0,2.16,2945,"1.00000","0.97722","0.97722" +"GO:0061740","protein targeting to lysosome involved i...",4,0,2.16,2946,"1.00000","0.97722","0.97722" +"GO:0061741","chaperone-mediated protein transport inv...",4,0,2.16,2947,"1.00000","0.97722","0.97722" +"GO:0071211","protein targeting to vacuole involved in...",4,0,2.16,2948,"1.00000","0.97722","0.97722" +"GO:0071276","cellular response to cadmium ion",4,0,2.16,2949,"1.00000","0.97722","0.97722" +"GO:0072318","clathrin coat disassembly",4,0,2.16,2950,"1.00000","0.97722","0.97722" +"GO:0072319","vesicle uncoating",4,0,2.16,2951,"1.00000","0.97722","0.97722" +"GO:0090559","regulation of membrane permeability",4,0,2.16,2952,"1.00000","0.97722","0.97722" +"GO:0097212","lysosomal membrane organization",4,0,2.16,2953,"1.00000","0.97722","0.97722" +"GO:0097213","regulation of lysosomal membrane permeab...",4,0,2.16,2954,"1.00000","0.97722","0.97722" +"GO:0097214","positive regulation of lysosomal membran...",4,0,2.16,2955,"1.00000","0.97722","0.97722" +"GO:1901032","negative regulation of response to react...",4,0,2.16,2956,"1.00000","0.97722","0.97722" +"GO:1903205","regulation of hydrogen peroxide-induced ...",4,0,2.16,2957,"1.00000","0.97722","0.97722" +"GO:1903206","negative regulation of hydrogen peroxide...",4,0,2.16,2958,"1.00000","0.97722","0.97722" +"GO:1903334","positive regulation of protein folding",4,0,2.16,2959,"1.00000","0.97722","0.97722" +"GO:1904592","positive regulation of protein refolding",4,0,2.16,2960,"1.00000","0.97722","0.97722" +"GO:1904764","chaperone-mediated autophagy translocati...",4,0,2.16,2961,"1.00000","0.97722","0.97722" +"GO:1905710","positive regulation of membrane permeabi...",4,0,2.16,2962,"1.00000","0.97722","0.97722" +"GO:1990832","slow axonal transport",4,0,2.16,2963,"1.00000","0.97722","0.97722" +"GO:1990834","response to odorant",4,0,2.16,2964,"1.00000","0.97722","0.97722" +"GO:2001038","regulation of cellular response to drug",4,0,2.16,2965,"1.00000","0.97722","0.97722" +"GO:2001039","negative regulation of cellular response...",4,0,2.16,2966,"1.00000","0.97722","0.97722" +"GO:0034599","cellular response to oxidative stress",15,6,8.1,2423,"0.91207","0.97735","0.97735" +"GO:0043269","regulation of ion transport",35,20,18.91,1077,"0.42219","0.65381","0.97795" +"GO:0048678","response to axon injury",3,1,1.62,2381,"0.90301","0.97798","0.97798" +"GO:0097190","apoptotic signaling pathway",25,12,13.51,1981,"0.79126","0.97804","0.97804" +"GO:0007249","I-kappaB kinase/NF-kappaB signaling",5,2,2.7,2146,"0.85910","0.97832","0.97832" +"GO:0043122","regulation of I-kappaB kinase/NF-kappaB ...",5,2,2.7,2147,"0.85910","0.97832","0.97832" +"GO:0007041","lysosomal transport",11,3,5.94,2725,"0.98279","0.97838","0.97838" +"GO:0007254","JNK cascade",9,2,4.86,2738,"0.98950","0.97851","0.97851" +"GO:0042310","vasoconstriction",3,1,1.62,2382,"0.90301","0.97883","0.97883" +"GO:0097756","negative regulation of blood vessel diam...",3,1,1.62,2383,"0.90301","0.97883","0.97883" +"GO:1902115","regulation of organelle assembly",20,8,10.81,2490,"0.93182","0.97892","0.97892" +"GO:0045055","regulated exocytosis",14,7,7.56,1729,"0.71733","0.97905","0.97905" +"GO:0016311","dephosphorylation",49,23,26.48,2170,"0.87502","0.97915","0.97915" +"GO:0000726","non-recombinational repair",3,1,1.62,2384,"0.90301","0.97930","0.97930" +"GO:0006303","double-strand break repair via nonhomolo...",3,1,1.62,2385,"0.90301","0.97930","0.97930" +"GO:0045739","positive regulation of DNA repair",3,1,1.62,2386,"0.90301","0.97930","0.97930" +"GO:0002768","immune response-regulating cell surface ...",7,2,3.78,2619,"0.96019","0.97961","0.97961" +"GO:0043462","regulation of ATPase activity",7,0,3.78,2967,"1.00000","0.97961","0.97961" +"GO:0008637","apoptotic mitochondrial changes",3,1,1.62,2387,"0.90301","0.97995","0.97995" +"GO:0043687","post-translational protein modification",3,0,1.62,2968,"1.00000","0.97995","0.97995" +"GO:0006006","glucose metabolic process",7,2,3.78,2620,"0.96019","0.98003","0.98003" +"GO:0070972","protein localization to endoplasmic reti...",7,3,3.78,2082,"0.83449","0.98003","0.98003" +"GO:0071216","cellular response to biotic stimulus",7,3,3.78,2083,"0.83449","0.98003","0.98003" +"GO:0071241","cellular response to inorganic substance",7,2,3.78,2621,"0.96019","0.98003","0.98003" +"GO:0071248","cellular response to metal ion",7,2,3.78,2622,"0.96019","0.98003","0.98003" +"GO:0006302","double-strand break repair",6,2,3.24,2471,"0.92428","0.98012","0.98012" +"GO:0016126","sterol biosynthetic process",4,1,2.16,2585,"0.95548","0.98048","0.98048" +"GO:0034645","cellular macromolecule biosynthetic proc...",499,220,269.62,2858,"1.00000","0.98052","0.98052" +"GO:1901264","carbohydrate derivative transport",6,3,3.24,1825,"0.72874","0.98063","0.98063" +"GO:0046686","response to cadmium ion",6,0,3.24,2969,"1.00000","0.98063","0.98063" +"GO:1901701","cellular response to oxygen-containing c...",43,21,23.23,2007,"0.80083","0.98071","0.98071" +"GO:0051438","regulation of ubiquitin-protein transfer...",4,2,2.16,1950,"0.74559","0.98080","0.98080" +"GO:0051443","positive regulation of ubiquitin-protein...",4,2,2.16,1951,"0.74559","0.98080","0.98080" +"GO:0046328","regulation of JNK cascade",8,2,4.32,2667,"0.97942","0.98088","0.98088" +"GO:0070647","protein modification by small protein co...",78,37,42.15,2408,"0.90356","0.98109","0.98109" +"GO:0006418","tRNA aminoacylation for protein translat...",13,2,7.02,2825,"0.99935","0.98110","0.98110" +"GO:0043038","amino acid activation",13,2,7.02,2826,"0.99935","0.98110","0.98110" +"GO:0043039","tRNA aminoacylation",13,2,7.02,2827,"0.99935","0.98110","0.98110" +"GO:0001522","pseudouridine synthesis",3,0,1.62,2970,"1.00000","0.98131","0.98131" +"GO:0010942","positive regulation of cell death",21,10,11.35,1990,"0.79186","0.98155","0.98155" +"GO:0007166","cell surface receptor signaling pathway",129,67,69.7,1747,"0.71977","0.98161","0.98161" +"GO:0006325","chromatin organization",70,32,37.82,2496,"0.93777","0.98180","0.98180" +"GO:0040029","regulation of gene expression, epigeneti...",14,5,7.56,2537,"0.95073","0.98183","0.98183" +"GO:0032418","lysosome localization",3,0,1.62,2971,"1.00000","0.98210","0.98210" +"GO:0002429","immune response-activating cell surface ...",6,2,3.24,2472,"0.92428","0.98250","0.98250" +"GO:0016441","posttranscriptional gene silencing",6,1,3.24,2766,"0.99063","0.98287","0.98287" +"GO:0030968","endoplasmic reticulum unfolded protein r...",6,2,3.24,2473,"0.92428","0.98287","0.98287" +"GO:0034620","cellular response to unfolded protein",6,2,3.24,2474,"0.92428","0.98287","0.98287" +"GO:0035194","posttranscriptional gene silencing by RN...",6,1,3.24,2767,"0.99063","0.98287","0.98287" +"GO:0010286","heat acclimation",3,0,1.62,2972,"1.00000","0.98287","0.98287" +"GO:0010803","regulation of tumor necrosis factor-medi...",3,0,1.62,2973,"1.00000","0.98287","0.98287" +"GO:0010968","regulation of microtubule nucleation",3,0,1.62,2974,"1.00000","0.98287","0.98287" +"GO:0032637","interleukin-8 production",3,0,1.62,2975,"1.00000","0.98287","0.98287" +"GO:0032677","regulation of interleukin-8 production",3,0,1.62,2976,"1.00000","0.98287","0.98287" +"GO:0032757","positive regulation of interleukin-8 pro...",3,0,1.62,2977,"1.00000","0.98287","0.98287" +"GO:0046718","viral entry into host cell",3,0,1.62,2978,"1.00000","0.98287","0.98287" +"GO:0060236","regulation of mitotic spindle organizati...",3,0,1.62,2979,"1.00000","0.98287","0.98287" +"GO:0060699","regulation of endoribonuclease activity",3,0,1.62,2980,"1.00000","0.98287","0.98287" +"GO:0060700","regulation of ribonuclease activity",3,0,1.62,2981,"1.00000","0.98287","0.98287" +"GO:0070370","cellular heat acclimation",3,0,1.62,2982,"1.00000","0.98287","0.98287" +"GO:0090063","positive regulation of microtubule nucle...",3,0,1.62,2983,"1.00000","0.98287","0.98287" +"GO:0090169","regulation of spindle assembly",3,0,1.62,2984,"1.00000","0.98287","0.98287" +"GO:0090224","regulation of spindle organization",3,0,1.62,2985,"1.00000","0.98287","0.98287" +"GO:0097201","negative regulation of transcription fro...",3,0,1.62,2986,"1.00000","0.98287","0.98287" +"GO:1900034","regulation of cellular response to heat",3,0,1.62,2987,"1.00000","0.98287","0.98287" +"GO:1901673","regulation of mitotic spindle assembly",3,0,1.62,2988,"1.00000","0.98287","0.98287" +"GO:1902380","positive regulation of endoribonuclease ...",3,0,1.62,2989,"1.00000","0.98287","0.98287" +"GO:1903265","positive regulation of tumor necrosis fa...",3,0,1.62,2990,"1.00000","0.98287","0.98287" +"GO:0032259","methylation",34,12,18.37,2772,"0.99149","0.98309","0.98309" +"GO:0010033","response to organic substance",137,67,74.02,2417,"0.90758","0.98312","0.98312" +"GO:0043484","regulation of RNA splicing",7,1,3.78,2791,"0.99571","0.98326","0.98326" +"GO:0048024","regulation of mRNA splicing, via spliceo...",7,1,3.78,2792,"0.99571","0.98326","0.98326" +"GO:0050684","regulation of mRNA processing",7,1,3.78,2793,"0.99571","0.98326","0.98326" +"GO:0097305","response to alcohol",22,9,11.89,2479,"0.92716","0.98351","0.98351" +"GO:0007093","mitotic cell cycle checkpoint",5,0,2.7,2991,"1.00000","0.98352","0.98352" +"GO:0035966","response to topologically incorrect prot...",16,5,8.65,2720,"0.98214","0.98371","0.98371" +"GO:0010039","response to iron ion",5,2,2.7,2148,"0.85910","0.98384","0.98384" +"GO:0051788","response to misfolded protein",5,1,2.7,2711,"0.97957","0.98384","0.98384" +"GO:0071218","cellular response to misfolded protein",5,1,2.7,2712,"0.97957","0.98384","0.98384" +"GO:0051092","positive regulation of NF-kappaB transcr...",5,0,2.7,2992,"1.00000","0.98384","0.98384" +"GO:0043065","positive regulation of apoptotic process",18,9,9.73,1749,"0.72046","0.98418","0.98418" +"GO:0043068","positive regulation of programmed cell d...",18,9,9.73,1750,"0.72046","0.98418","0.98418" +"GO:0007040","lysosome organization",8,2,4.32,2668,"0.97942","0.98425","0.98425" +"GO:0080171","lytic vacuole organization",8,2,4.32,2669,"0.97942","0.98425","0.98425" +"GO:0010035","response to inorganic substance",26,6,14.05,2831,"0.99972","0.98433","0.98433" +"GO:0032496","response to lipopolysaccharide",5,2,2.7,2149,"0.85910","0.98447","0.98447" +"GO:0071219","cellular response to molecule of bacteri...",5,2,2.7,2150,"0.85910","0.98447","0.98447" +"GO:0071222","cellular response to lipopolysaccharide",5,2,2.7,2151,"0.85910","0.98447","0.98447" +"GO:0006470","protein dephosphorylation",32,14,17.29,2418,"0.91183","0.98450","0.98450" +"GO:1902882","regulation of response to oxidative stre...",9,3,4.86,2520,"0.94413","0.98466","0.98466" +"GO:0032446","protein modification by small protein co...",62,29,33.5,2216,"0.90135","0.98504","0.98504" +"GO:0070887","cellular response to chemical stimulus",122,58,65.92,2497,"0.94141","0.98505","0.98505" +"GO:0043414","macromolecule methylation",30,12,16.21,2598,"0.95867","0.98509","0.98509" +"GO:1902653","secondary alcohol biosynthetic process",3,1,1.62,2388,"0.90301","0.98533","0.98533" +"GO:1903078","positive regulation of protein localizat...",3,1,1.62,2389,"0.90301","0.98533","0.98533" +"GO:1904377","positive regulation of protein localizat...",3,1,1.62,2390,"0.90301","0.98533","0.98533" +"GO:0048585","negative regulation of response to stimu...",77,39,41.6,1964,"0.76495","0.98548","0.98548" +"GO:0006109","regulation of carbohydrate metabolic pro...",5,1,2.7,2713,"0.97957","0.98571","0.98571" +"GO:0010675","regulation of cellular carbohydrate meta...",5,1,2.7,2714,"0.97957","0.98571","0.98571" +"GO:0010906","regulation of glucose metabolic process",5,1,2.7,2715,"0.97957","0.98571","0.98571" +"GO:0051591","response to cAMP",5,1,2.7,2716,"0.97957","0.98571","0.98571" +"GO:0007006","mitochondrial membrane organization",4,1,2.16,2586,"0.95548","0.98601","0.98601" +"GO:0040014","regulation of multicellular organism gro...",4,0,2.16,2993,"1.00000","0.98601","0.98601" +"GO:0016567","protein ubiquitination",57,28,30.8,2026,"0.81255","0.98627","0.98627" +"GO:0006997","nucleus organization",6,0,3.24,2994,"1.00000","0.98662","0.98662" +"GO:0035967","cellular response to topologically incor...",13,3,7.02,2782,"0.99502","0.98676","0.98676" +"GO:0015800","acidic amino acid transport",4,2,2.16,1952,"0.74559","0.98680","0.98680" +"GO:0001101","response to acid chemical",18,7,9.73,2494,"0.93721","0.98682","0.98682" +"GO:0006396","RNA processing",78,23,42.15,2850,"1.00000","0.98693","0.98693" +"GO:0065007","biological regulation",1042,575,563.02,609,"0.17427","0.20889","0.98704" +"GO:0000724","double-strand break repair via homologou...",4,1,2.16,2587,"0.95548","0.98706","0.98706" +"GO:0000725","recombinational repair",4,1,2.16,2588,"0.95548","0.98706","0.98706" +"GO:0043123","positive regulation of I-kappaB kinase/N...",4,1,2.16,2589,"0.95548","0.98706","0.98706" +"GO:0006479","protein methylation",26,10,14.05,2629,"0.96408","0.98709","0.98709" +"GO:0008213","protein alkylation",26,10,14.05,2630,"0.96408","0.98709","0.98709" +"GO:0010038","response to metal ion",21,5,11.35,2821,"0.99891","0.98735","0.98735" +"GO:0031061","negative regulation of histone methylati...",3,1,1.62,2391,"0.90301","0.98811","0.98811" +"GO:0002526","acute inflammatory response",4,2,2.16,1953,"0.74559","0.98831","0.98831" +"GO:0017121","phospholipid scrambling",4,0,2.16,2995,"1.00000","0.98831","0.98831" +"GO:0032781","positive regulation of ATPase activity",4,0,2.16,2996,"1.00000","0.98831","0.98831" +"GO:0097035","regulation of membrane lipid distributio...",4,0,2.16,2997,"1.00000","0.98831","0.98831" +"GO:0071704","organic substance metabolic process",1371,698,740.78,2832,"0.99978","0.97750","0.98849" +"GO:0030512","negative regulation of transforming grow...",4,1,2.16,2590,"0.95548","0.98855","0.98855" +"GO:1903845","negative regulation of cellular response...",4,1,2.16,2591,"0.95548","0.98855","0.98855" +"GO:2001020","regulation of response to DNA damage sti...",13,6,7.02,2014,"0.80253","0.98857","0.98857" +"GO:0010259","multicellular organism aging",5,2,2.7,2152,"0.85910","0.98884","0.98884" +"GO:0007007","inner mitochondrial membrane organizatio...",3,1,1.62,2392,"0.90301","0.98949","0.98949" +"GO:0040039","inductive cell migration",3,0,1.62,2998,"1.00000","0.98949","0.98949" +"GO:0006487","protein N-linked glycosylation",8,2,4.32,2670,"0.97942","0.98969","0.98969" +"GO:0030433","ubiquitin-dependent ERAD pathway",10,3,5.4,2643,"0.96870","0.99017","0.99017" +"GO:0061077","chaperone-mediated protein folding",10,2,5.4,2780,"0.99470","0.99017","0.99017" +"GO:0046677","response to antibiotic",18,8,9.73,2100,"0.85455","0.99024","0.99024" +"GO:0050851","antigen receptor-mediated signaling path...",3,1,1.62,2393,"0.90301","0.99028","0.99028" +"GO:0050852","T cell receptor signaling pathway",3,1,1.62,2394,"0.90301","0.99028","0.99028" +"GO:1902914","regulation of protein polyubiquitination",3,1,1.62,2395,"0.90301","0.99028","0.99028" +"GO:1902916","positive regulation of protein polyubiqu...",3,1,1.62,2396,"0.90301","0.99028","0.99028" +"GO:0009057","macromolecule catabolic process",84,29,45.39,2834,"0.99992","0.99039","0.99039" +"GO:0002040","sprouting angiogenesis",4,2,2.16,1954,"0.74559","0.99041","0.99041" +"GO:0070534","protein K63-linked ubiquitination",9,3,4.86,2521,"0.94413","0.99083","0.99083" +"GO:0046474","glycerophospholipid biosynthetic process",14,6,7.56,2168,"0.86643","0.99089","0.99089" +"GO:0070076","histone lysine demethylation",7,2,3.78,2623,"0.96019","0.99090","0.99090" +"GO:0010921","regulation of phosphatase activity",6,2,3.24,2475,"0.92428","0.99100","0.99100" +"GO:1901699","cellular response to nitrogen compound",20,9,10.81,2094,"0.85054","0.99106","0.99106" +"GO:0034660","ncRNA metabolic process",40,8,21.61,2852,"1.00000","0.99110","0.99110" +"GO:0006953","acute-phase response",3,1,1.62,2397,"0.90301","0.99122","0.99122" +"GO:0055088","lipid homeostasis",3,1,1.62,2398,"0.90301","0.99122","0.99122" +"GO:0045576","mast cell activation",3,0,1.62,2999,"1.00000","0.99122","0.99122" +"GO:0048525","negative regulation of viral process",3,0,1.62,3000,"1.00000","0.99122","0.99122" +"GO:1903901","negative regulation of viral life cycle",3,0,1.62,3001,"1.00000","0.99122","0.99122" +"GO:0010648","negative regulation of cell communicatio...",68,35,36.74,1698,"0.71052","0.99137","0.99137" +"GO:0023057","negative regulation of signaling",68,35,36.74,1699,"0.71052","0.99137","0.99137" +"GO:0016246","RNA interference",3,0,1.62,3002,"1.00000","0.99141","0.99141" +"GO:0071320","cellular response to cAMP",3,0,1.62,3003,"1.00000","0.99141","0.99141" +"GO:0051276","chromosome organization",95,42,51.33,2717,"0.98033","0.99181","0.99181" +"GO:0043412","macromolecule modification",424,211,229.1,2659,"0.97661","0.99188","0.99188" +"GO:0015914","phospholipid transport",6,2,3.24,2476,"0.92428","0.99202","0.99202" +"GO:2001022","positive regulation of response to DNA d...",9,3,4.86,2522,"0.94413","0.99209","0.99209" +"GO:0006464","cellular protein modification process",412,206,222.61,2637,"0.96790","0.99216","0.99216" +"GO:0036211","protein modification process",412,206,222.61,2638,"0.96790","0.99216","0.99216" +"GO:0071840","cellular component organization or bioge...",481,256,259.9,1684,"0.67311","0.84569","0.99249" +"GO:0009968","negative regulation of signal transducti...",66,33,35.66,1975,"0.78589","0.99254","0.99254" +"GO:0016043","cellular component organization",471,254,254.49,1214,"0.54091","0.73287","0.99274" +"GO:0032873","negative regulation of stress-activated ...",3,0,1.62,3004,"1.00000","0.99280","0.99280" +"GO:0046329","negative regulation of JNK cascade",3,0,1.62,3005,"1.00000","0.99280","0.99280" +"GO:0070303","negative regulation of stress-activated ...",3,0,1.62,3006,"1.00000","0.99280","0.99280" +"GO:0071417","cellular response to organonitrogen comp...",16,6,8.65,2503,"0.94347","0.99286","0.99286" +"GO:0051336","regulation of hydrolase activity",52,19,28.1,2797,"0.99656","0.99290","0.99290" +"GO:0000302","response to reactive oxygen species",9,4,4.86,2051,"0.81923","0.99297","0.99297" +"GO:0006458","'de novo' protein folding",7,0,3.78,3007,"1.00000","0.99312","0.99312" +"GO:0051084","'de novo' posttranslational protein fold...",7,0,3.78,3008,"1.00000","0.99312","0.99312" +"GO:0007289","spermatid nucleus differentiation",3,0,1.62,3009,"1.00000","0.99329","0.99329" +"GO:1901698","response to nitrogen compound",52,26,28.1,1967,"0.76774","0.99378","0.99378" +"GO:0009737","response to abscisic acid",6,2,3.24,2477,"0.92428","0.99389","0.99389" +"GO:0060359","response to ammonium ion",10,4,5.4,2203,"0.88681","0.99398","0.99398" +"GO:0051085","chaperone cofactor-dependent protein ref...",6,0,3.24,3010,"1.00000","0.99410","0.99410" +"GO:0010243","response to organonitrogen compound",48,23,25.94,2086,"0.84248","0.99427","0.99427" +"GO:0051592","response to calcium ion",9,3,4.86,2523,"0.94413","0.99458","0.99458" +"GO:0043603","cellular amide metabolic process",132,34,71.32,2864,"1.00000","0.99474","0.99474" +"GO:0032940","secretion by cell",57,37,30.8,253,"0.06168","0.13678","0.99477" +"GO:0018196","peptidyl-asparagine modification",4,1,2.16,2592,"0.95548","0.99484","0.99484" +"GO:0018279","protein N-linked glycosylation via aspar...",4,1,2.16,2593,"0.95548","0.99484","0.99484" +"GO:0006399","tRNA metabolic process",23,7,12.43,2776,"0.99396","0.99491","0.99491" +"GO:0034470","ncRNA processing",23,6,12.43,2813,"0.99842","0.99491","0.99491" +"GO:0072347","response to anesthetic",8,3,4.32,2242,"0.90250","0.99519","0.99519" +"GO:0044265","cellular macromolecule catabolic process",73,24,39.44,2835,"0.99993","0.99520","0.99520" +"GO:0006996","organelle organization",326,172,176.15,1697,"0.71044","0.93854","0.99528" +"GO:0072594","establishment of protein localization to...",28,9,15.13,2777,"0.99448","0.99532","0.99532" +"GO:0032270","positive regulation of cellular protein ...",62,32,33.5,1695,"0.69780","0.99536","0.99536" +"GO:0016577","histone demethylation",8,2,4.32,2671,"0.97942","0.99541","0.99541" +"GO:0031076","embryonic camera-type eye development",3,1,1.62,2399,"0.90301","0.99549","0.99549" +"GO:0043666","regulation of phosphoprotein phosphatase...",3,0,1.62,3011,"1.00000","0.99549","0.99549" +"GO:0031929","TOR signaling",10,3,5.4,2644,"0.96870","0.99554","0.99554" +"GO:0034641","cellular nitrogen compound metabolic pro...",671,291,362.56,2863,"1.00000","0.99554","0.99554" +"GO:0007018","microtubule-based movement",31,15,16.75,1992,"0.79299","0.99593","0.99593" +"GO:0032886","regulation of microtubule-based process",13,4,7.02,2658,"0.97621","0.99598","0.99598" +"GO:0032006","regulation of TOR signaling",9,2,4.86,2739,"0.98950","0.99599","0.99599" +"GO:0044260","cellular macromolecule metabolic process",869,407,469.54,2861,"1.00000","0.99609","0.99609" +"GO:1901031","regulation of response to reactive oxyge...",5,0,2.7,3012,"1.00000","0.99610","0.99610" +"GO:0008654","phospholipid biosynthetic process",19,7,10.27,2604,"0.95933","0.99612","0.99612" +"GO:0007566","embryo implantation",4,1,2.16,2594,"0.95548","0.99635","0.99635" +"GO:0006397","mRNA processing",36,10,19.45,2830,"0.99965","0.99653","0.99653" +"GO:0045017","glycerolipid biosynthetic process",16,7,8.65,2159,"0.85972","0.99673","0.99673" +"GO:0030031","cell projection assembly",39,18,21.07,2183,"0.87623","0.99684","0.99684" +"GO:0120031","plasma membrane bounded cell projection ...",39,18,21.07,2184,"0.87623","0.99684","0.99684" +"GO:0009414","response to water deprivation",3,0,1.62,3013,"1.00000","0.99694","0.99694" +"GO:0009415","response to water",3,0,1.62,3014,"1.00000","0.99694","0.99694" +"GO:0036314","response to sterol",4,2,2.16,1955,"0.74559","0.99700","0.99700" +"GO:0036315","cellular response to sterol",4,2,2.16,1956,"0.74559","0.99700","0.99700" +"GO:0016192","vesicle-mediated transport",154,81,83.21,1686,"0.67501","0.99739","0.99739" +"GO:0009451","RNA modification",11,4,5.94,2485,"0.93114","0.99757","0.99757" +"GO:0042220","response to cocaine",4,1,2.16,2595,"0.95548","0.99759","0.99759" +"GO:0008380","RNA splicing",30,10,16.21,2774,"0.99349","0.99778","0.99778" +"GO:0008033","tRNA processing",10,5,5.4,1744,"0.71786","0.99780","0.99780" +"GO:1901564","organonitrogen compound metabolic proces...",816,407,440.9,2812,"0.99840","0.92622","0.99785" +"GO:0008152","metabolic process",1554,798,839.66,2833,"0.99978","0.99392","0.99786" +"GO:0044267","cellular protein metabolic process",542,239,292.85,2860,"1.00000","0.99797","0.99797" +"GO:0032008","positive regulation of TOR signaling",4,0,2.16,3015,"1.00000","0.99822","0.99822" +"GO:0000375","RNA splicing, via transesterification re...",23,6,12.43,2814,"0.99842","0.99830","0.99830" +"GO:0000377","RNA splicing, via transesterification re...",23,6,12.43,2815,"0.99842","0.99830","0.99830" +"GO:0000398","mRNA splicing, via spliceosome",23,6,12.43,2816,"0.99842","0.99830","0.99830" +"GO:0060259","regulation of feeding behavior",3,1,1.62,2400,"0.90301","0.99833","0.99833" +"GO:0009987","cellular process",1851,955,1000.14,2841,"0.99999","0.99754","0.99851" +"GO:0018195","peptidyl-arginine modification",3,0,1.62,3016,"1.00000","0.99852","0.99852" +"GO:0018193","peptidyl-amino acid modification",69,29,37.28,2727,"0.98419","0.99852","0.99852" +"GO:0035268","protein mannosylation",3,1,1.62,2401,"0.90301","0.99894","0.99894" +"GO:0035269","protein O-linked mannosylation",3,1,1.62,2402,"0.90301","0.99894","0.99894" +"GO:0097502","mannosylation",3,1,1.62,2403,"0.90301","0.99894","0.99894" +"GO:0006807","nitrogen compound metabolic process",1208,596,652.71,2851,"1.00000","0.99661","0.99912" +"GO:0044237","cellular metabolic process",1255,614,678.1,2859,"1.00000","0.99686","0.99916" +"GO:0006658","phosphatidylserine metabolic process",4,1,2.16,2596,"0.95548","0.99919","0.99919" +"GO:0006659","phosphatidylserine biosynthetic process",4,1,2.16,2597,"0.95548","0.99919","0.99919" +"GO:1901566","organonitrogen compound biosynthetic pro...",224,90,121.03,2847,"1.00000","0.99928","0.99928" +"GO:0044238","primary metabolic process",1291,645,697.56,2842,"0.99999","0.99659","0.99941" +"GO:0044782","cilium organization",31,11,16.75,2735,"0.98845","0.99950","0.99950" +"GO:0060271","cilium assembly",30,11,16.21,2722,"0.98246","0.99952","0.99952" +"GO:0015858","nucleoside transport",3,0,1.62,3017,"1.00000","0.99953","0.99953" +"GO:1901642","nucleoside transmembrane transport",3,0,1.62,3018,"1.00000","0.99953","0.99953" +"GO:0006457","protein folding",22,3,11.89,2838,"0.99999","0.99954","0.99954" +"GO:0030162","regulation of proteolysis",28,10,15.13,2728,"0.98427","0.99955","0.99955" +"GO:0051345","positive regulation of hydrolase activit...",28,10,15.13,2729,"0.98427","0.99955","0.99955" +"GO:0090305","nucleic acid phosphodiester bond hydroly...",8,0,4.32,3019,"1.00000","0.99962","0.99962" +"GO:0006518","peptide metabolic process",117,28,63.22,2865,"1.00000","0.99964","0.99964" +"GO:0043604","amide biosynthetic process",108,24,58.35,2867,"1.00000","0.99967","0.99967" +"GO:0043043","peptide biosynthetic process",102,22,55.11,2866,"1.00000","0.99969","0.99969" +"GO:0006412","translation",101,21,54.57,2868,"1.00000","0.99969","0.99969" +"GO:0045862","positive regulation of proteolysis",18,6,9.73,2661,"0.97803","0.99971","0.99971" +"GO:0043170","macromolecule metabolic process",1086,530,586.79,2854,"1.00000","0.99897","0.99972" +"GO:0007031","peroxisome organization",3,0,1.62,3020,"1.00000","0.99972","0.99972" +"GO:0000413","protein peptidyl-prolyl isomerization",3,1,1.62,2404,"0.90301","0.99994","0.99994" +"GO:0018208","peptidyl-proline modification",3,1,1.62,2405,"0.90301","0.99994","0.99994" +"GO:0002165","instar larval or pupal development",7,7,3.78,89,"0.01335","0.00180","1.00000" +"GO:0007472","wing disc morphogenesis",7,7,3.78,90,"0.01335","0.00180","1.00000" +"GO:0007552","metamorphosis",7,7,3.78,91,"0.01335","0.00180","1.00000" +"GO:0007560","imaginal disc morphogenesis",7,7,3.78,92,"0.01335","0.00180","1.00000" +"GO:0008150","biological_process",2480,1340,1340,3021,"1.00000","1.00000","1.00000" +"GO:0010467","gene expression",540,227,291.77,2862,"1.00000","1.00000","1.00000" +"GO:0019538","protein metabolic process",652,309,352.29,2836,"0.99997","1.00000","1.00000" +"GO:0022610","biological adhesion",104,77,56.19,2,"1.5e-05","9.6e-07","1.00000" +"GO:0035114","imaginal disc-derived appendage morphoge...",7,7,3.78,93,"0.01335","0.00180","1.00000" +"GO:0035120","post-embryonic appendage morphogenesis",7,7,3.78,94,"0.01335","0.00180","1.00000" +"GO:0043266","regulation of potassium ion transport",3,3,1.62,574,"0.15758","0.00487","1.00000" +"GO:0048563","post-embryonic animal organ morphogenesi...",7,7,3.78,95,"0.01335","0.00180","1.00000" +"GO:0048707","instar larval or pupal morphogenesis",7,7,3.78,96,"0.01335","0.00180","1.00000" +"GO:0048737","imaginal disc-derived appendage developm...",7,7,3.78,97,"0.01335","0.00180","1.00000" +"GO:0048880","sensory system development",57,42,30.8,28,"0.00166","0.00181","1.00000" +"GO:0051125","regulation of actin nucleation",7,7,3.78,98,"0.01335","0.00128","1.00000" +"GO:0051651","maintenance of location in cell",10,9,5.4,115,"0.01998","0.00887","1.00000" +"GO:0097485","neuron projection guidance",23,19,12.43,41,"0.00407","0.00494","1.00000" +"GO:0150063","visual system development",57,42,30.8,29,"0.00166","0.00181","1.00000" +"GO:1901379","regulation of potassium ion transmembran...",3,3,1.62,575,"0.15758","0.00487","1.00000"