Difference between revisions of "BIO project GO-term table"

From "A B C"
Jump to navigation Jump to search
(Created page with "<div id="BIO"> <div class="b1"> GO term Table </div> {{dev}} <section begin=contents_summary /> Table of selected GO terms as a starting point for function definition and ...")
 
 
(36 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
<div id="BIO">
 
<div id="BIO">
 
<div class="b1">
 
<div class="b1">
GO term Table
+
Constructing the GO term table
 
</div>
 
</div>
  
  
{{dev}}
 
  
 +
__TOC__
 +
 +
 +
&nbsp;
 +
==Extracting gene functions from GO and GOA==
 +
 +
The [http://steipe.biochemistry.utoronto.ca/abc/students/index.php/BCH441_2016_project_GO_term_table table of selected biological process GO terms] a starting point for system definition and gene selection.
 +
 +
{{Vspace}}
 +
 +
The objective of selecting GO terms from the ontology is to find nodes that have a small number of genes associated to them (or their children). If the number of annotated genes is too small, not enough may be known about the system to usefully model it. If the number is too large, modelling the system will be too time consuming for the scope of a class project. It is also highly likely that the system should actually be broken down into subsystems, which ought to be modelled individually. I have chosen GO terms with from three to five annotated genes as a cutoff that seems workable.
 +
 +
Roughly, this selection works as follows:
 +
 +
1. Retrieve the ontology terms, and the list of annotated human genes from the database.<br />
 +
2. Remove all terms that are not in the ''biological process'' ontology.<br />
 +
3. Associate all human genes with their respective terms.<br />
 +
4. Remove all terms that are leafs (no children) AND have no genes annotated.<br />
 +
5. For each term, find all descendants.<br />
 +
6. Of all descendants, collect all annotated genes.<br />
 +
7. Make the list of genes unique. This is important since there may be more than one path to a gene and we don't want to double count it.<br />
 +
8. Store the number of genes associated to a term and its descendants.<br />
 +
9. Select terms that have 3 to 5 associated genes.<br />
 +
10. Remove terms that contain certain keywords that may make the process less suitable for our purposes, such as "development", "morphogenesis", "behavior".<br />
 +
11. Write the remaining terms into a Wiki table format, with links to GO terms and genes.<br />
 +
 +
Details below.
 +
 +
{{Vspace}}
 +
 +
===Creation of the Process Table===
 +
 +
The Process Table was created in the following steps:
 +
:'''1.''' I downloaded the most recent version of <code>goa_human.gaf</code> from the [ftp://ftp.ebi.ac.uk/pub/databases/GO/goa/HUMAN/ '''GOA''' repository at the EBI], released on November 22. 2016. The file contains gene names and GO terms - here is one line of the contents (selected columns):
 +
UniProtID  GeneSymbol  GOtermID    Reference      EvidenceCode  Description                taxID
 +
Q14209    E2F2        GO:0051726  GO_REF:0000019  IEA           Transcription factor E2F2  taxon:9606
 +
 +
:'''2.''' I downloaded the GO term file <code>go-basic.obo</code> from its repository [http://geneontology.org/page/download-ontology at '''GO''' - the Gene Ontology Consortium]. It contains the actual ontology terms (45,896 terms), they look like this (some information omitted).
 +
 +
[Term]
 +
id: GO:0051726
 +
name: regulation of cell cycle
 +
namespace: biological_process
 +
def: "Any process that modulates the rate or extent of progression through the cell cycle." [GOC:ai, GOC:dph, GOC:tb]
 +
is_a: GO:0050794 ! regulation of cellular process
 +
relationship: regulates GO:0007049 ! cell cycle
 +
 +
: Note the <code>is_a</code> relationship that points to the '''parent''' term, <tt>GO:0050794</tt>, of which  <tt>GO:0051726</tt> is a specialization. This means: the terms have parent-associations listed with them, but don't list child terms. This means we can go up to the root from each term, but we can't descend. We need to record the child terms for each node, to be able to navigate both up and down through the ontology.
 +
 +
:'''3.''' Open this file in '''R''' and read all the terms that are labelled as <tt>namespace: biological_process</tt> into a data frame storing ID, name, definition, and parent term IDs. These are 29,309 terms. Then add each term ID to its parent terms as a child term.
 +
 +
:'''4.''' Open the human GOA file and read all gene annotations into a data frame. These are 392,942. That's a lot - we expect at least three annotations for each of the 19,225 genes that GOA currently contains, one for each ontology, but we find on average 20 annotations. Next, add each gene symbol to the term data frame, if the annotation's GO ID is in our set.
 +
 +
:'''5.''' Next, remove all terms that are leaves (i.e. they don't have children), AND have no annotated genes. These are terms that might be specific to fungi, prokaryotes, viruses or similar. Since our goal is to count the number of genes associated with each term, those can't contribute since their own count is zero. Deleting those nodes obviously creates new leaves in the ontology, so this process has to be iterated, until no more nodes can be removed. This deletes 11,733 terms from the ontology.
 +
 +
:'''6.''' We need a function that finds all descendants of a term. In order to find and visit all descendants, start from a term and put its child(ren) into a queue. While the queue is not empty, remove the first ID from the queue, and add those of its children to the queue that we haven't visited before.
 +
 +
:'''7.''' For each term, count all genes that are associated to it or to any of its descendants. The root term, <tt>GO:0008150</tt> has 17,030 associated genes.
 +
 +
:'''8.''' Next, select all terms that have from three to five associated genes AND contain none of a list of keywords. These keywords include: "proliferation", "development", "morphogenesis", "regression", "induction", "maturation", "formation", "growth", "*bolic process", "biosynthetic process", and "behavior". I feel that even though the GO terms may be manageable, the actual '''system''' would likely contain an unwieldy number of genes. I also removed all "positive regulation of ...", and "negative regulation of ..." terms. These always have a parent term:  "regulation of ..." and that term would be the right one to consider.
 +
 +
:'''9.''' Finally, the 1,224 selected terms were written into a [http://steipe.biochemistry.utoronto.ca/abc/students/index.php/BCH441_2016_project_GO_term_table table in an editable Wiki code format], including links to GO and UniProt.
 +
 +
{{Vspace}}
 +
 +
===How to use the table to adopt a function and define a "system" for the project===
  
<section begin=contents_summary />
+
{{Vspace}}
Table of selected GO terms as a starting point for function definition and gene selection.
 
<section end=contents_summary />
 
  
 +
I have randomly chosen a term – <tt>[http://www.ebi.ac.uk/QuickGO/GTerm?id=GO:0001845 GO:0001845] (phagolysosome assembly)</tt> – to illustrate the process:
  
__TOC__
+
{{Vspace}}
 +
:'''1.''' Browse the table and find a function that interests you. It's very diverse and will give you a good first sense of the complexity of functions in the cell and our state of knowledge about them. Have a look at the [http://www.ebi.ac.uk/QuickGO/GTerm?id=GO:0001845 term information]. There is probably a link to an [http://gowiki.tamu.edu/wiki/index.php/Category:GO:0001845_!_phagolysosome_assembly associated "GONUTS" page] with more information.
 +
 
 +
:'''2.''' Look at the function information available when you follow the links of the annotated genes to UniProt. Most of these genes have more than one GO term annotated to them, and taken together, these GO terms shed more light on how the "system" is more and different than its annotated GO terms. For example from the genes in <tt>[http://www.ebi.ac.uk/QuickGO/GTerm?id=GO:0001845 GO:0001845]</tt> let's look at [http://www.uniprot.org/uniprot/?query=gene:SRPX+AND+taxonomy:9606+AND+reviewed:yes "SRPX"]. This gene codes for [http://www.uniprot.org/uniprot/P78539 P78539 (SRPX)]. Here are the annotated processes in which this protein participates:
 +
<div class="reference-box">
 +
*[http://www.ebi.ac.uk/QuickGO/GTerm?id=GO:0006914 autophagy]
 +
*[http://www.ebi.ac.uk/QuickGO/GTerm?id=GO:0007155 cell adhesion]
 +
*[http://www.ebi.ac.uk/QuickGO/GTerm?id=GO:0060244 negative regulation of cell proliferation involved in contact inhibition]
 +
*[http://www.ebi.ac.uk/QuickGO/GTerm?id=GO:0001845 '''phagolysosome assembly''']
 +
*[http://www.ebi.ac.uk/QuickGO/GTerm?id=GO:2001241 positive regulation of extrinsic apoptotic signaling pathway in absence of ligand]
 +
*[http://www.ebi.ac.uk/QuickGO/GTerm?id=GO:0034976 response to endoplasmic reticulum stress]
 +
 
 +
[http://www.ebi.ac.uk/QuickGO/GProtein?ac=P78539 <small>Complete GO annotation...</small>]
 +
</div>
 +
 
 +
:Just looking at these processes tells me a lot. The annotation is for '''one protein''', but it is implied in several aspects of biology. Some of them are '''causal to others''', and some of them are '''generalizations'''. Here, the ''phagolysosome'' needs to be assembled in order to function. Once it has been made, this enables stress response, and contact inhibition, likely via apoptotic pathways and autophagy. This '''phagolysosome assembly''' sounds like a good system to work on. But is the term too broad, or too narrow? Could I find a better name for it?
  
 +
:'''3.''' Follow the link to the [http://www.ebi.ac.uk/QuickGO/GTerm?id=GO:0001845 '''phagolysosome assembly'''] GOterm page at QuickGO, and explore the tabs that contain the Ancestor Chart and the Child Terms:
  
&nbsp;
+
<div class="reference-box">
==Table==
 
  
 
<table>
 
<table>
<tr class="sh">
+
<tr class="sh">
<td><b>Depth</b></td>
+
  <td>[http://www.geneontology.org/GO.ontology.relations.shtml Relationship]<br /><small>to GO:0001845</small></td>
<td><b>GO Term</b></td>
+
  <td>Child Term</td>
<td><b>Text</b></td>
+
  <td>Child Term Name</td>
<td><b>Genes</b></td>
+
</tr>
</tr>
+
<tr class="s1">
<tr><td colspan="4" class="sp"></td></tr>
+
  <td><code>Part of</code></td>
<tr class="s1"><td>3</td><td>GO:0016445</td><td>somatic diversification of immunoglobulins</td><td>[http://www.uniprot.org/uniprot/?query=gene:AICDA+AND+taxonomy:9606+AND+reviewed:yes AICDA], [http://www.uniprot.org/uniprot/?query=gene:CTNNBL1+AND+taxonomy:9606+AND+reviewed:yes CTNNBL1], [http://www.uniprot.org/uniprot/?query=gene:RAG2+AND+taxonomy:9606+AND+reviewed:yes RAG2]</td></tr>
+
  <td style="white-space:nowrap">[http://www.ebi.ac.uk/QuickGO/GTerm?id=GO:0090384 GO:0090384]</td>
<tr class="s2"><td>4</td><td>GO:0002679</td><td>respiratory burst involved in defense response</td><td>[http://www.uniprot.org/uniprot/?query=gene:NCF1+AND+taxonomy:9606+AND+reviewed:yes NCF1], [http://www.uniprot.org/uniprot/?query=gene:MPO+AND+taxonomy:9606+AND+reviewed:yes MPO], [http://www.uniprot.org/uniprot/?query=gene:PIK3CG+AND+taxonomy:9606+AND+reviewed:yes PIK3CG], [http://www.uniprot.org/uniprot/?query=gene:PIK3CD+AND+taxonomy:9606+AND+reviewed:yes PIK3CD]</td></tr>
+
  <td>phagosome-lysosome docking</td>
<tr class="s1"><td>3</td><td>GO:0008228</td><td>opsonization</td><td>[http://www.uniprot.org/uniprot/?query=gene:FCN2+AND+taxonomy:9606+AND+reviewed:yes FCN2], [http://www.uniprot.org/uniprot/?query=gene:FCN1+AND+taxonomy:9606+AND+reviewed:yes FCN1], [http://www.uniprot.org/uniprot/?query=gene:CRP+AND+taxonomy:9606+AND+reviewed:yes CRP], [http://www.uniprot.org/uniprot/?query=gene:LBP+AND+taxonomy:9606+AND+reviewed:yes LBP], [http://www.uniprot.org/uniprot/?query=gene:PTX3+AND+taxonomy:9606+AND+reviewed:yes PTX3], [http://www.uniprot.org/uniprot/?query=gene:MBL2+AND+taxonomy:9606+AND+reviewed:yes MBL2], [http://www.uniprot.org/uniprot/?query=gene:CD47+AND+taxonomy:9606+AND+reviewed:yes CD47]</td></tr>
+
</tr>
<tr class="s2"><td>3</td><td>GO:0002352</td><td>B cell negative selection</td><td>[http://www.uniprot.org/uniprot/?query=gene:BAX+AND+taxonomy:9606+AND+reviewed:yes BAX], [http://www.uniprot.org/uniprot/?query=gene:BAK1+AND+taxonomy:9606+AND+reviewed:yes BAK1]</td></tr>
+
<tr class="s2">
<tr class="s1"><td>4</td><td>GO:0002367</td><td>cytokine production involved in immune response</td><td>[http://www.uniprot.org/uniprot/?query=gene:MR1+AND+taxonomy:9606+AND+reviewed:yes MR1], [http://www.uniprot.org/uniprot/?query=gene:NOD2+AND+taxonomy:9606+AND+reviewed:yes NOD2]</td></tr>
+
  <td><code>Part of</code></td>
<tr class="s2"><td>3</td><td>GO:0002377</td><td>immunoglobulin production</td><td>[http://www.uniprot.org/uniprot/?query=gene:FAS+AND+taxonomy:9606+AND+reviewed:yes FAS], [http://www.uniprot.org/uniprot/?query=gene:IL7R+AND+taxonomy:9606+AND+reviewed:yes IL7R]</td></tr>
+
  <td style="white-space:nowrap">[http://www.ebi.ac.uk/QuickGO/GTerm?id=GO:0090385 GO:0090385]</td>
<tr class="s1"><td>4</td><td>GO:0002381</td><td>immunoglobulin production involved in immunoglobulin mediated immune response</td><td>[http://www.uniprot.org/uniprot/?query=gene:HLA-DQB1+AND+taxonomy:9606+AND+reviewed:yes HLA-DQB1], [http://www.uniprot.org/uniprot/?query=gene:HLA-DRB1+AND+taxonomy:9606+AND+reviewed:yes HLA-DRB1], [http://www.uniprot.org/uniprot/?query=gene:NOD2+AND+taxonomy:9606+AND+reviewed:yes NOD2]</td></tr>
+
  <td>phagosome-lysosome fusion</td>
<tr class="s2"><td>3</td><td>GO:0002513</td><td>tolerance induction to self antigen</td><td>[http://www.uniprot.org/uniprot/?query=gene:LYN+AND+taxonomy:9606+AND+reviewed:yes LYN], [http://www.uniprot.org/uniprot/?query=gene:FOXP3+AND+taxonomy:9606+AND+reviewed:yes FOXP3], [http://www.uniprot.org/uniprot/?query=gene:TGFB1+AND+taxonomy:9606+AND+reviewed:yes TGFB1]</td></tr>
+
</tr>
<tr class="s1"><td>4</td><td>GO:0002520</td><td>immune system development</td><td>[http://www.uniprot.org/uniprot/?query=gene:SPEF2+AND+taxonomy:9606+AND+reviewed:yes SPEF2], [http://www.uniprot.org/uniprot/?query=gene:SMAD3+AND+taxonomy:9606+AND+reviewed:yes SMAD3]</td></tr>
+
<tr class="s1">
<tr class="s2"><td>4</td><td>GO:0002384</td><td>hepatic immune response</td><td>[http://www.uniprot.org/uniprot/?query=gene:IL6+AND+taxonomy:9606+AND+reviewed:yes IL6], [http://www.uniprot.org/uniprot/?query=gene:IL6R+AND+taxonomy:9606+AND+reviewed:yes IL6R]</td></tr>
+
  <td><code>Is a</code></td>
<tr class="s1"><td>4</td><td>GO:0002418</td><td>immune response to tumor cell</td><td>[http://www.uniprot.org/uniprot/?query=gene:PRF1+AND+taxonomy:9606+AND+reviewed:yes PRF1], [http://www.uniprot.org/uniprot/?query=gene:MICA+AND+taxonomy:9606+AND+reviewed:yes MICA]</td></tr>
+
  <td style="white-space:nowrap">[http://www.ebi.ac.uk/QuickGO/GTerm?id=GO:0090387 GO:0090387]</td>
<tr class="s2"><td>3</td><td>GO:0042092</td><td>type 2 immune response</td><td>[http://www.uniprot.org/uniprot/?query=gene:IL4+AND+taxonomy:9606+AND+reviewed:yes IL4], [http://www.uniprot.org/uniprot/?query=gene:BCL6+AND+taxonomy:9606+AND+reviewed:yes BCL6], [http://www.uniprot.org/uniprot/?query=gene:IL18+AND+taxonomy:9606+AND+reviewed:yes IL18], [http://www.uniprot.org/uniprot/?query=gene:IL10+AND+taxonomy:9606+AND+reviewed:yes IL10]</td></tr>
+
  <td>phagolysosome assembly involved in apoptotic cell clearance</td>
<tr class="s1"><td>4</td><td>GO:0002495</td><td>antigen processing and presentation of peptide antigen via MHC class II</td><td>[http://www.uniprot.org/uniprot/?query=gene:MARCH1+AND+taxonomy:9606+AND+reviewed:yes MARCH1], [http://www.uniprot.org/uniprot/?query=gene:MARCH8+AND+taxonomy:9606+AND+reviewed:yes MARCH8]</td></tr>
+
</tr>
<tr class="s2"><td>2</td><td>GO:0045058</td><td>T cell selection</td><td>[http://www.uniprot.org/uniprot/?query=gene:CD1D+AND+taxonomy:9606+AND+reviewed:yes CD1D], [http://www.uniprot.org/uniprot/?query=gene:CD4+AND+taxonomy:9606+AND+reviewed:yes CD4], [http://www.uniprot.org/uniprot/?query=gene:CD74+AND+taxonomy:9606+AND+reviewed:yes CD74]</td></tr>
+
</table>
<tr class="s1"><td>3</td><td>GO:0043366</td><td>beta selection</td><td>[http://www.uniprot.org/uniprot/?query=gene:ZAP70+AND+taxonomy:9606+AND+reviewed:yes ZAP70], [http://www.uniprot.org/uniprot/?query=gene:SYK+AND+taxonomy:9606+AND+reviewed:yes SYK]</td></tr>
+
</div>
<tr class="s2"><td>3</td><td>GO:0043368</td><td>positive T cell selection</td><td>[http://www.uniprot.org/uniprot/?query=gene:THEMIS+AND+taxonomy:9606+AND+reviewed:yes THEMIS], [http://www.uniprot.org/uniprot/?query=gene:BCL11B+AND+taxonomy:9606+AND+reviewed:yes BCL11B]</td></tr>
+
 
<tr class="s1"><td>3</td><td>GO:0045061</td><td>thymic T cell selection</td><td>[http://www.uniprot.org/uniprot/?query=gene:CARD11+AND+taxonomy:9606+AND+reviewed:yes CARD11], [http://www.uniprot.org/uniprot/?query=gene:JAG2+AND+taxonomy:9606+AND+reviewed:yes JAG2], [http://www.uniprot.org/uniprot/?query=gene:GATA3+AND+taxonomy:9606+AND+reviewed:yes GATA3]</td></tr>
+
{{Vspace}}
<tr class="s2"><td>4</td><td>GO:0045321</td><td>leukocyte activation</td><td>[http://www.uniprot.org/uniprot/?query=gene:EDN1+AND+taxonomy:9606+AND+reviewed:yes EDN1], [http://www.uniprot.org/uniprot/?query=gene:ZNF3+AND+taxonomy:9606+AND+reviewed:yes ZNF3], [http://www.uniprot.org/uniprot/?query=gene:TMX1+AND+taxonomy:9606+AND+reviewed:yes TMX1], [http://www.uniprot.org/uniprot/?query=gene:ITIH1+AND+taxonomy:9606+AND+reviewed:yes ITIH1], [http://www.uniprot.org/uniprot/?query=gene:TOLLIP+AND+taxonomy:9606+AND+reviewed:yes TOLLIP]</td></tr>
+
 
<tr class="s1"><td>4</td><td>GO:0051410</td><td>detoxification of nitrogen compound</td><td>[http://www.uniprot.org/uniprot/?query=gene:MARC1+AND+taxonomy:9606+AND+reviewed:yes MARC1], [http://www.uniprot.org/uniprot/?query=gene:MARC2+AND+taxonomy:9606+AND+reviewed:yes MARC2]</td></tr>
+
Explore how many proteins are annotated to this term. There are probably '''VERY''' many - so set a taxon filter on this table (taxon: <tt>9606</tt>) to view only human proteins.
<tr class="s2"><td>4</td><td>GO:0009820</td><td>alkaloid metabolic process</td><td>[http://www.uniprot.org/uniprot/?query=gene:CYP2D6+AND+taxonomy:9606+AND+reviewed:yes CYP2D6], [http://www.uniprot.org/uniprot/?query=gene:CYP1A2+AND+taxonomy:9606+AND+reviewed:yes CYP1A2]</td></tr>
+
 
<tr class="s1"><td>4</td><td>GO:0019530</td><td>taurine metabolic process</td><td>[http://www.uniprot.org/uniprot/?query=gene:STAT5B+AND+taxonomy:9606+AND+reviewed:yes STAT5B], [http://www.uniprot.org/uniprot/?query=gene:STAT5A+AND+taxonomy:9606+AND+reviewed:yes STAT5A], [http://www.uniprot.org/uniprot/?query=gene:PHGDH+AND+taxonomy:9606+AND+reviewed:yes PHGDH], [http://www.uniprot.org/uniprot/?query=gene:GHR+AND+taxonomy:9606+AND+reviewed:yes GHR], [http://www.uniprot.org/uniprot/?query=gene:BAAT+AND+taxonomy:9606+AND+reviewed:yes BAAT]</td></tr>
+
{{Vspace}}
<tr class="s2"><td>2</td><td>GO:0009056</td><td>catabolic process</td><td>[http://www.uniprot.org/uniprot/?query=gene:TMEM150A+AND+taxonomy:9606+AND+reviewed:yes TMEM150A], [http://www.uniprot.org/uniprot/?query=gene:CES2+AND+taxonomy:9606+AND+reviewed:yes CES2], [http://www.uniprot.org/uniprot/?query=gene:PTER+AND+taxonomy:9606+AND+reviewed:yes PTER]</td></tr>
+
 
<tr class="s1"><td>4</td><td>GO:0042737</td><td>drug catabolic process</td><td>[http://www.uniprot.org/uniprot/?query=gene:CYP2D6+AND+taxonomy:9606+AND+reviewed:yes CYP2D6], [http://www.uniprot.org/uniprot/?query=gene:CYP1A2+AND+taxonomy:9606+AND+reviewed:yes CYP1A2], [http://www.uniprot.org/uniprot/?query=gene:CYP3A4+AND+taxonomy:9606+AND+reviewed:yes CYP3A4], [http://www.uniprot.org/uniprot/?query=gene:CYP3A5+AND+taxonomy:9606+AND+reviewed:yes CYP3A5], [http://www.uniprot.org/uniprot/?query=gene:CYP2C9+AND+taxonomy:9606+AND+reviewed:yes CYP2C9]</td></tr>
+
As a result of my first exploration I see:
<tr class="s2"><td>4</td><td>GO:0046185</td><td>aldehyde catabolic process</td><td>[http://www.uniprot.org/uniprot/?query=gene:ALDH3B1+AND+taxonomy:9606+AND+reviewed:yes ALDH3B1], [http://www.uniprot.org/uniprot/?query=gene:GPI+AND+taxonomy:9606+AND+reviewed:yes GPI], [http://www.uniprot.org/uniprot/?query=gene:AKR1A1+AND+taxonomy:9606+AND+reviewed:yes AKR1A1]</td></tr>
+
* There are probably around 20 proteins that I'll need to cnsider as system components;
<tr class="s1"><td>4</td><td>GO:0016052</td><td>carbohydrate catabolic process</td><td>[http://www.uniprot.org/uniprot/?query=gene:PGM2+AND+taxonomy:9606+AND+reviewed:yes PGM2], [http://www.uniprot.org/uniprot/?query=gene:PGM2L1+AND+taxonomy:9606+AND+reviewed:yes PGM2L1], [http://www.uniprot.org/uniprot/?query=gene:NAGA+AND+taxonomy:9606+AND+reviewed:yes NAGA], [http://www.uniprot.org/uniprot/?query=gene:AMY2A+AND+taxonomy:9606+AND+reviewed:yes AMY2A]</td></tr>
+
* most of them are RAB genes which have a reasonably well understood function. It will be interesting to find out how this function enables the process;
<tr class="s2"><td>3</td><td>GO:0010025</td><td>wax biosynthetic process</td><td>[http://www.uniprot.org/uniprot/?query=gene:FAR1+AND+taxonomy:9606+AND+reviewed:yes FAR1], [http://www.uniprot.org/uniprot/?query=gene:AWAT2+AND+taxonomy:9606+AND+reviewed:yes AWAT2]</td></tr>
+
* The mechanism of this system will likely include proteins that are specific to this process, and others that are involved in membrane fusion in a general sense and are recruited to this specific task.
<tr class="s1"><td>4</td><td>GO:0006082</td><td>organic acid metabolic process</td><td>[http://www.uniprot.org/uniprot/?query=gene:CYP2C8+AND+taxonomy:9606+AND+reviewed:yes CYP2C8], [http://www.uniprot.org/uniprot/?query=gene:FMO2+AND+taxonomy:9606+AND+reviewed:yes FMO2], [http://www.uniprot.org/uniprot/?query=gene:FMO1+AND+taxonomy:9606+AND+reviewed:yes FMO1]</td></tr>
+
 
<tr class="s2"><td>4</td><td>GO:0015980</td><td>energy derivation by oxidation of organic compounds</td><td>[http://www.uniprot.org/uniprot/?query=gene:ACSM1+AND+taxonomy:9606+AND+reviewed:yes ACSM1], [http://www.uniprot.org/uniprot/?query=gene:ACADVL+AND+taxonomy:9606+AND+reviewed:yes ACADVL]</td></tr>
+
This looks like an good starting point to define the components of a system. For now, I would be oK with calling it the "Phagosome / Lysosome Fusion System".
<tr class="s1"><td>4</td><td>GO:0018894</td><td>dibenzo-p-dioxin metabolic process</td><td>[http://www.uniprot.org/uniprot/?query=gene:CYP1A2+AND+taxonomy:9606+AND+reviewed:yes CYP1A2], [http://www.uniprot.org/uniprot/?query=gene:CYP17A1+AND+taxonomy:9606+AND+reviewed:yes CYP17A1], [http://www.uniprot.org/uniprot/?query=gene:STAR+AND+taxonomy:9606+AND+reviewed:yes STAR], [http://www.uniprot.org/uniprot/?query=gene:CYP11A1+AND+taxonomy:9606+AND+reviewed:yes CYP11A1]</td></tr>
+
 
<tr class="s2"><td>4</td><td>GO:0000103</td><td>sulfate assimilation</td><td>[http://www.uniprot.org/uniprot/?query=gene:SULT2B1+AND+taxonomy:9606+AND+reviewed:yes SULT2B1], [http://www.uniprot.org/uniprot/?query=gene:PAPSS1+AND+taxonomy:9606+AND+reviewed:yes PAPSS1], [http://www.uniprot.org/uniprot/?query=gene:PAPSS2+AND+taxonomy:9606+AND+reviewed:yes PAPSS2]</td></tr>
+
{{Vspace}}
<tr class="s1"><td>4</td><td>GO:0019417</td><td>sulfur oxidation</td><td>[http://www.uniprot.org/uniprot/?query=gene:MICAL1+AND+taxonomy:9606+AND+reviewed:yes MICAL1], [http://www.uniprot.org/uniprot/?query=gene:MICAL2+AND+taxonomy:9606+AND+reviewed:yes MICAL2]</td></tr>
+
===Considerations for choosing a system===
<tr class="s2"><td>4</td><td>GO:0051923</td><td>sulfation</td><td>[http://www.uniprot.org/uniprot/?query=gene:SULT1E1+AND+taxonomy:9606+AND+reviewed:yes SULT1E1], [http://www.uniprot.org/uniprot/?query=gene:SULT2A1+AND+taxonomy:9606+AND+reviewed:yes SULT2A1], [http://www.uniprot.org/uniprot/?query=gene:SULT1C2+AND+taxonomy:9606+AND+reviewed:yes SULT1C2], [http://www.uniprot.org/uniprot/?query=gene:SULT1C4+AND+taxonomy:9606+AND+reviewed:yes SULT1C4], [http://www.uniprot.org/uniprot/?query=gene:SULT1A1+AND+taxonomy:9606+AND+reviewed:yes SULT1A1], [http://www.uniprot.org/uniprot/?query=gene:SULT1A3+AND+taxonomy:9606+AND+reviewed:yes SULT1A3], [http://www.uniprot.org/uniprot/?query=gene:SULT1A2+AND+taxonomy:9606+AND+reviewed:yes SULT1A2], [http://www.uniprot.org/uniprot/?query=gene:SULT1B1+AND+taxonomy:9606+AND+reviewed:yes SULT1B1]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0016999</td><td>antibiotic metabolic process</td><td>[http://www.uniprot.org/uniprot/?query=gene:TXN+AND+taxonomy:9606+AND+reviewed:yes TXN], [http://www.uniprot.org/uniprot/?query=gene:DPEP1+AND+taxonomy:9606+AND+reviewed:yes DPEP1]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0042133</td><td>neurotransmitter metabolic process</td><td>[http://www.uniprot.org/uniprot/?query=gene:GCHFR+AND+taxonomy:9606+AND+reviewed:yes GCHFR], [http://www.uniprot.org/uniprot/?query=gene:CLN3+AND+taxonomy:9606+AND+reviewed:yes CLN3], [http://www.uniprot.org/uniprot/?query=gene:CACNA1A+AND+taxonomy:9606+AND+reviewed:yes CACNA1A], [http://www.uniprot.org/uniprot/?query=gene:AGTPBP1+AND+taxonomy:9606+AND+reviewed:yes AGTPBP1]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0042180</td><td>cellular ketone metabolic process</td><td>[http://www.uniprot.org/uniprot/?query=gene:CYP2B6+AND+taxonomy:9606+AND+reviewed:yes CYP2B6], [http://www.uniprot.org/uniprot/?query=gene:DHRS4+AND+taxonomy:9606+AND+reviewed:yes DHRS4]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0046950</td><td>cellular ketone body metabolic process</td><td>[http://www.uniprot.org/uniprot/?query=gene:HMGCS2+AND+taxonomy:9606+AND+reviewed:yes HMGCS2], [http://www.uniprot.org/uniprot/?query=gene:BDH1+AND+taxonomy:9606+AND+reviewed:yes BDH1], [http://www.uniprot.org/uniprot/?query=gene:ACAT1+AND+taxonomy:9606+AND+reviewed:yes ACAT1], [http://www.uniprot.org/uniprot/?query=gene:OXCT1+AND+taxonomy:9606+AND+reviewed:yes OXCT1], [http://www.uniprot.org/uniprot/?query=gene:HMGCL+AND+taxonomy:9606+AND+reviewed:yes HMGCL]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0072592</td><td>oxygen metabolic process</td><td>[http://www.uniprot.org/uniprot/?query=gene:NOX1+AND+taxonomy:9606+AND+reviewed:yes NOX1], [http://www.uniprot.org/uniprot/?query=gene:ME3+AND+taxonomy:9606+AND+reviewed:yes ME3], [http://www.uniprot.org/uniprot/?query=gene:FMO2+AND+taxonomy:9606+AND+reviewed:yes FMO2]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0042743</td><td>hydrogen peroxide metabolic process</td><td>[http://www.uniprot.org/uniprot/?query=gene:NOX1+AND+taxonomy:9606+AND+reviewed:yes NOX1], [http://www.uniprot.org/uniprot/?query=gene:PARK7+AND+taxonomy:9606+AND+reviewed:yes PARK7]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0005976</td><td>polysaccharide metabolic process</td><td>[http://www.uniprot.org/uniprot/?query=gene:CHST1+AND+taxonomy:9606+AND+reviewed:yes CHST1], [http://www.uniprot.org/uniprot/?query=gene:CHST7+AND+taxonomy:9606+AND+reviewed:yes CHST7], [http://www.uniprot.org/uniprot/?query=gene:TYMS+AND+taxonomy:9606+AND+reviewed:yes TYMS]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0051552</td><td>flavone metabolic process</td><td>[http://www.uniprot.org/uniprot/?query=gene:UGT1A8+AND+taxonomy:9606+AND+reviewed:yes UGT1A8], [http://www.uniprot.org/uniprot/?query=gene:UGT1A9+AND+taxonomy:9606+AND+reviewed:yes UGT1A9], [http://www.uniprot.org/uniprot/?query=gene:UGT1A7+AND+taxonomy:9606+AND+reviewed:yes UGT1A7], [http://www.uniprot.org/uniprot/?query=gene:UGT1A1+AND+taxonomy:9606+AND+reviewed:yes UGT1A1], [http://www.uniprot.org/uniprot/?query=gene:UGT1A10+AND+taxonomy:9606+AND+reviewed:yes UGT1A10]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0044236</td><td>multicellular organismal metabolic process</td><td>[http://www.uniprot.org/uniprot/?query=gene:GHR+AND+taxonomy:9606+AND+reviewed:yes GHR], [http://www.uniprot.org/uniprot/?query=gene:TIPARP+AND+taxonomy:9606+AND+reviewed:yes TIPARP], [http://www.uniprot.org/uniprot/?query=gene:MNAT1+AND+taxonomy:9606+AND+reviewed:yes MNAT1]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0044259</td><td>multicellular organismal macromolecule metabolic process</td><td>[http://www.uniprot.org/uniprot/?query=gene:TUB+AND+taxonomy:9606+AND+reviewed:yes TUB], [http://www.uniprot.org/uniprot/?query=gene:AKR1C3+AND+taxonomy:9606+AND+reviewed:yes AKR1C3]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0014719</td><td>satellite cell activation</td><td>[http://www.uniprot.org/uniprot/?query=gene:WNT7A+AND+taxonomy:9606+AND+reviewed:yes WNT7A], [http://www.uniprot.org/uniprot/?query=gene:MEGF10+AND+taxonomy:9606+AND+reviewed:yes MEGF10]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0048143</td><td>astrocyte activation</td><td>[http://www.uniprot.org/uniprot/?query=gene:AGT+AND+taxonomy:9606+AND+reviewed:yes AGT], [http://www.uniprot.org/uniprot/?query=gene:ADORA2A+AND+taxonomy:9606+AND+reviewed:yes ADORA2A]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0072537</td><td>fibroblast activation</td><td>[http://www.uniprot.org/uniprot/?query=gene:RGCC+AND+taxonomy:9606+AND+reviewed:yes RGCC], [http://www.uniprot.org/uniprot/?query=gene:IL17A+AND+taxonomy:9606+AND+reviewed:yes IL17A], [http://www.uniprot.org/uniprot/?query=gene:IL17RA+AND+taxonomy:9606+AND+reviewed:yes IL17RA]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0006903</td><td>vesicle targeting</td><td>[http://www.uniprot.org/uniprot/?query=gene:LRMP+AND+taxonomy:9606+AND+reviewed:yes LRMP], [http://www.uniprot.org/uniprot/?query=gene:STX5+AND+taxonomy:9606+AND+reviewed:yes STX5], [http://www.uniprot.org/uniprot/?query=gene:YKT6+AND+taxonomy:9606+AND+reviewed:yes YKT6], [http://www.uniprot.org/uniprot/?query=gene:MAP4K2+AND+taxonomy:9606+AND+reviewed:yes MAP4K2], [http://www.uniprot.org/uniprot/?query=gene:SNAP23+AND+taxonomy:9606+AND+reviewed:yes SNAP23], [http://www.uniprot.org/uniprot/?query=gene:SNAP29+AND+taxonomy:9606+AND+reviewed:yes SNAP29], [http://www.uniprot.org/uniprot/?query=gene:AP1M2+AND+taxonomy:9606+AND+reviewed:yes AP1M2]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0016080</td><td>synaptic vesicle targeting</td><td>[http://www.uniprot.org/uniprot/?query=gene:NLGN1+AND+taxonomy:9606+AND+reviewed:yes NLGN1], [http://www.uniprot.org/uniprot/?query=gene:SCRIB+AND+taxonomy:9606+AND+reviewed:yes SCRIB], [http://www.uniprot.org/uniprot/?query=gene:PSEN1+AND+taxonomy:9606+AND+reviewed:yes PSEN1], [http://www.uniprot.org/uniprot/?query=gene:SEPT5+AND+taxonomy:9606+AND+reviewed:yes SEPT5]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0006949</td><td>syncytium formation</td><td>[http://www.uniprot.org/uniprot/?query=gene:ERCC1+AND+taxonomy:9606+AND+reviewed:yes ERCC1], [http://www.uniprot.org/uniprot/?query=gene:CCNG1+AND+taxonomy:9606+AND+reviewed:yes CCNG1], [http://www.uniprot.org/uniprot/?query=gene:ERVW-1+AND+taxonomy:9606+AND+reviewed:yes ERVW-1]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0007033</td><td>vacuole organization</td><td>[http://www.uniprot.org/uniprot/?query=gene:MAN2A1+AND+taxonomy:9606+AND+reviewed:yes MAN2A1], [http://www.uniprot.org/uniprot/?query=gene:FIG4+AND+taxonomy:9606+AND+reviewed:yes FIG4], [http://www.uniprot.org/uniprot/?query=gene:NDP+AND+taxonomy:9606+AND+reviewed:yes NDP]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0031023</td><td>microtubule organizing center organization</td><td>[http://www.uniprot.org/uniprot/?query=gene:PAFAH1B1+AND+taxonomy:9606+AND+reviewed:yes PAFAH1B1], [http://www.uniprot.org/uniprot/?query=gene:CLASP2+AND+taxonomy:9606+AND+reviewed:yes CLASP2], [http://www.uniprot.org/uniprot/?query=gene:CLASP1+AND+taxonomy:9606+AND+reviewed:yes CLASP1], [http://www.uniprot.org/uniprot/?query=gene:GCC2+AND+taxonomy:9606+AND+reviewed:yes GCC2]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0007028</td><td>cytoplasm organization</td><td>[http://www.uniprot.org/uniprot/?query=gene:TFCP2L1+AND+taxonomy:9606+AND+reviewed:yes TFCP2L1], [http://www.uniprot.org/uniprot/?query=gene:RRN3+AND+taxonomy:9606+AND+reviewed:yes RRN3], [http://www.uniprot.org/uniprot/?query=gene:KIF5B+AND+taxonomy:9606+AND+reviewed:yes KIF5B]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0007296</td><td>vitellogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:ZMIZ1+AND+taxonomy:9606+AND+reviewed:yes ZMIZ1], [http://www.uniprot.org/uniprot/?query=gene:FOSL1+AND+taxonomy:9606+AND+reviewed:yes FOSL1]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0007412</td><td>axon target recognition</td><td>[http://www.uniprot.org/uniprot/?query=gene:UCHL1+AND+taxonomy:9606+AND+reviewed:yes UCHL1], [http://www.uniprot.org/uniprot/?query=gene:BDNF+AND+taxonomy:9606+AND+reviewed:yes BDNF], [http://www.uniprot.org/uniprot/?query=gene:FOXB1+AND+taxonomy:9606+AND+reviewed:yes FOXB1], [http://www.uniprot.org/uniprot/?query=gene:STXBP1+AND+taxonomy:9606+AND+reviewed:yes STXBP1]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0010643</td><td>cell communication by chemical coupling</td><td>[http://www.uniprot.org/uniprot/?query=gene:DBN1+AND+taxonomy:9606+AND+reviewed:yes DBN1], [http://www.uniprot.org/uniprot/?query=gene:GJA1+AND+taxonomy:9606+AND+reviewed:yes GJA1]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0010644</td><td>cell communication by electrical coupling</td><td>[http://www.uniprot.org/uniprot/?query=gene:DBN1+AND+taxonomy:9606+AND+reviewed:yes DBN1], [http://www.uniprot.org/uniprot/?query=gene:GJA1+AND+taxonomy:9606+AND+reviewed:yes GJA1]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0035426</td><td>extracellular matrix-cell signaling</td><td>[http://www.uniprot.org/uniprot/?query=gene:FZD4+AND+taxonomy:9606+AND+reviewed:yes FZD4], [http://www.uniprot.org/uniprot/?query=gene:FER+AND+taxonomy:9606+AND+reviewed:yes FER], [http://www.uniprot.org/uniprot/?query=gene:NDP+AND+taxonomy:9606+AND+reviewed:yes NDP]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0033627</td><td>cell adhesion mediated by integrin</td><td>[http://www.uniprot.org/uniprot/?query=gene:ITGA6+AND+taxonomy:9606+AND+reviewed:yes ITGA6], [http://www.uniprot.org/uniprot/?query=gene:ADAM17+AND+taxonomy:9606+AND+reviewed:yes ADAM17], [http://www.uniprot.org/uniprot/?query=gene:ADAM9+AND+taxonomy:9606+AND+reviewed:yes ADAM9], [http://www.uniprot.org/uniprot/?query=gene:ICAM1+AND+taxonomy:9606+AND+reviewed:yes ICAM1], [http://www.uniprot.org/uniprot/?query=gene:VTN+AND+taxonomy:9606+AND+reviewed:yes VTN]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0030011</td><td>maintenance of cell polarity</td><td>[http://www.uniprot.org/uniprot/?query=gene:DST+AND+taxonomy:9606+AND+reviewed:yes DST], [http://www.uniprot.org/uniprot/?query=gene:NCKAP1L+AND+taxonomy:9606+AND+reviewed:yes NCKAP1L], [http://www.uniprot.org/uniprot/?query=gene:ATN1+AND+taxonomy:9606+AND+reviewed:yes ATN1]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0008366</td><td>axon ensheathment</td><td>[http://www.uniprot.org/uniprot/?query=gene:MBP+AND+taxonomy:9606+AND+reviewed:yes MBP], [http://www.uniprot.org/uniprot/?query=gene:POU3F1+AND+taxonomy:9606+AND+reviewed:yes POU3F1], [http://www.uniprot.org/uniprot/?query=gene:PLP1+AND+taxonomy:9606+AND+reviewed:yes PLP1], [http://www.uniprot.org/uniprot/?query=gene:PRX+AND+taxonomy:9606+AND+reviewed:yes PRX], [http://www.uniprot.org/uniprot/?query=gene:PPARD+AND+taxonomy:9606+AND+reviewed:yes PPARD], [http://www.uniprot.org/uniprot/?query=gene:CLDN11+AND+taxonomy:9606+AND+reviewed:yes CLDN11]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0008038</td><td>neuron recognition</td><td>[http://www.uniprot.org/uniprot/?query=gene:PCDH12+AND+taxonomy:9606+AND+reviewed:yes PCDH12], [http://www.uniprot.org/uniprot/?query=gene:BDNF+AND+taxonomy:9606+AND+reviewed:yes BDNF], [http://www.uniprot.org/uniprot/?query=gene:CNTNAP2+AND+taxonomy:9606+AND+reviewed:yes CNTNAP2], [http://www.uniprot.org/uniprot/?query=gene:OPCML+AND+taxonomy:9606+AND+reviewed:yes OPCML], [http://www.uniprot.org/uniprot/?query=gene:NTM+AND+taxonomy:9606+AND+reviewed:yes NTM]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0009988</td><td>cell-cell recognition</td><td>[http://www.uniprot.org/uniprot/?query=gene:CLEC4M+AND+taxonomy:9606+AND+reviewed:yes CLEC4M], [http://www.uniprot.org/uniprot/?query=gene:FUT3+AND+taxonomy:9606+AND+reviewed:yes FUT3], [http://www.uniprot.org/uniprot/?query=gene:CD209+AND+taxonomy:9606+AND+reviewed:yes CD209], [http://www.uniprot.org/uniprot/?query=gene:ST6GALNAC6+AND+taxonomy:9606+AND+reviewed:yes ST6GALNAC6]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0070265</td><td>necrotic cell death</td><td>[http://www.uniprot.org/uniprot/?query=gene:FADD+AND+taxonomy:9606+AND+reviewed:yes FADD], [http://www.uniprot.org/uniprot/?query=gene:TNF+AND+taxonomy:9606+AND+reviewed:yes TNF], [http://www.uniprot.org/uniprot/?query=gene:MGEA5+AND+taxonomy:9606+AND+reviewed:yes MGEA5], [http://www.uniprot.org/uniprot/?query=gene:ALKBH7+AND+taxonomy:9606+AND+reviewed:yes ALKBH7], [http://www.uniprot.org/uniprot/?query=gene:FASLG+AND+taxonomy:9606+AND+reviewed:yes FASLG]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0048588</td><td>developmental cell growth</td><td>[http://www.uniprot.org/uniprot/?query=gene:PRMT2+AND+taxonomy:9606+AND+reviewed:yes PRMT2], [http://www.uniprot.org/uniprot/?query=gene:ARIH2+AND+taxonomy:9606+AND+reviewed:yes ARIH2]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0000320</td><td>re-entry into mitotic cell cycle</td><td>[http://www.uniprot.org/uniprot/?query=gene:GSK3B+AND+taxonomy:9606+AND+reviewed:yes GSK3B], [http://www.uniprot.org/uniprot/?query=gene:CCNF+AND+taxonomy:9606+AND+reviewed:yes CCNF], [http://www.uniprot.org/uniprot/?query=gene:CCND1+AND+taxonomy:9606+AND+reviewed:yes CCND1]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0007127</td><td>meiosis I</td><td>[http://www.uniprot.org/uniprot/?query=gene:PSMD13+AND+taxonomy:9606+AND+reviewed:yes PSMD13], [http://www.uniprot.org/uniprot/?query=gene:CKS2+AND+taxonomy:9606+AND+reviewed:yes CKS2]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0044770</td><td>cell cycle phase transition</td><td>[http://www.uniprot.org/uniprot/?query=gene:TIPIN+AND+taxonomy:9606+AND+reviewed:yes TIPIN], [http://www.uniprot.org/uniprot/?query=gene:TIMELESS+AND+taxonomy:9606+AND+reviewed:yes TIMELESS], [http://www.uniprot.org/uniprot/?query=gene:CDC7+AND+taxonomy:9606+AND+reviewed:yes CDC7], [http://www.uniprot.org/uniprot/?query=gene:PTPRC+AND+taxonomy:9606+AND+reviewed:yes PTPRC]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0045023</td><td>G0 to G1 transition</td><td>[http://www.uniprot.org/uniprot/?query=gene:MDM4+AND+taxonomy:9606+AND+reviewed:yes MDM4], [http://www.uniprot.org/uniprot/?query=gene:CDK3+AND+taxonomy:9606+AND+reviewed:yes CDK3]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0051026</td><td>chiasma assembly</td><td>[http://www.uniprot.org/uniprot/?query=gene:TEX11+AND+taxonomy:9606+AND+reviewed:yes TEX11], [http://www.uniprot.org/uniprot/?query=gene:CCNB1IP1+AND+taxonomy:9606+AND+reviewed:yes CCNB1IP1], [http://www.uniprot.org/uniprot/?query=gene:UBE2B+AND+taxonomy:9606+AND+reviewed:yes UBE2B], [http://www.uniprot.org/uniprot/?query=gene:MSH4+AND+taxonomy:9606+AND+reviewed:yes MSH4], [http://www.uniprot.org/uniprot/?query=gene:MSH5+AND+taxonomy:9606+AND+reviewed:yes MSH5]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0051304</td><td>chromosome separation</td><td>[http://www.uniprot.org/uniprot/?query=gene:SMARCAD1+AND+taxonomy:9606+AND+reviewed:yes SMARCAD1], [http://www.uniprot.org/uniprot/?query=gene:RECQL5+AND+taxonomy:9606+AND+reviewed:yes RECQL5]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0070314</td><td>G1 to G0 transition</td><td>[http://www.uniprot.org/uniprot/?query=gene:EZH2+AND+taxonomy:9606+AND+reviewed:yes EZH2], [http://www.uniprot.org/uniprot/?query=gene:CYP27B1+AND+taxonomy:9606+AND+reviewed:yes CYP27B1], [http://www.uniprot.org/uniprot/?query=gene:C2orf40+AND+taxonomy:9606+AND+reviewed:yes C2orf40]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0022614</td><td>membrane to membrane docking</td><td>[http://www.uniprot.org/uniprot/?query=gene:EZR+AND+taxonomy:9606+AND+reviewed:yes EZR], [http://www.uniprot.org/uniprot/?query=gene:VCAM1+AND+taxonomy:9606+AND+reviewed:yes VCAM1], [http://www.uniprot.org/uniprot/?query=gene:ICAM1+AND+taxonomy:9606+AND+reviewed:yes ICAM1], [http://www.uniprot.org/uniprot/?query=gene:ROCK1+AND+taxonomy:9606+AND+reviewed:yes ROCK1], [http://www.uniprot.org/uniprot/?query=gene:MSN+AND+taxonomy:9606+AND+reviewed:yes MSN]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0048278</td><td>vesicle docking</td><td>[http://www.uniprot.org/uniprot/?query=gene:EXOC5+AND+taxonomy:9606+AND+reviewed:yes EXOC5], [http://www.uniprot.org/uniprot/?query=gene:CAV2+AND+taxonomy:9606+AND+reviewed:yes CAV2], [http://www.uniprot.org/uniprot/?query=gene:CCDC41+AND+taxonomy:9606+AND+reviewed:yes CCDC41]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0030029</td><td>actin filament-based process</td><td>[http://www.uniprot.org/uniprot/?query=gene:ELMO1+AND+taxonomy:9606+AND+reviewed:yes ELMO1], [http://www.uniprot.org/uniprot/?query=gene:SELE+AND+taxonomy:9606+AND+reviewed:yes SELE]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0051014</td><td>actin filament severing</td><td>[http://www.uniprot.org/uniprot/?query=gene:VIL1+AND+taxonomy:9606+AND+reviewed:yes VIL1], [http://www.uniprot.org/uniprot/?query=gene:SCIN+AND+taxonomy:9606+AND+reviewed:yes SCIN], [http://www.uniprot.org/uniprot/?query=gene:FMNL1+AND+taxonomy:9606+AND+reviewed:yes FMNL1], [http://www.uniprot.org/uniprot/?query=gene:GSN+AND+taxonomy:9606+AND+reviewed:yes GSN], [http://www.uniprot.org/uniprot/?query=gene:SRGAP2+AND+taxonomy:9606+AND+reviewed:yes SRGAP2], [http://www.uniprot.org/uniprot/?query=gene:DSTN+AND+taxonomy:9606+AND+reviewed:yes DSTN]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0032796</td><td>uropod organization</td><td>[http://www.uniprot.org/uniprot/?query=gene:CORO1A+AND+taxonomy:9606+AND+reviewed:yes CORO1A], [http://www.uniprot.org/uniprot/?query=gene:MYH9+AND+taxonomy:9606+AND+reviewed:yes MYH9]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0060122</td><td>inner ear receptor stereocilium organization</td><td>[http://www.uniprot.org/uniprot/?query=gene:VANGL2+AND+taxonomy:9606+AND+reviewed:yes VANGL2], [http://www.uniprot.org/uniprot/?query=gene:GPR98+AND+taxonomy:9606+AND+reviewed:yes GPR98], [http://www.uniprot.org/uniprot/?query=gene:CECR2+AND+taxonomy:9606+AND+reviewed:yes CECR2], [http://www.uniprot.org/uniprot/?query=gene:CTHRC1+AND+taxonomy:9606+AND+reviewed:yes CTHRC1], [http://www.uniprot.org/uniprot/?query=gene:DFNB31+AND+taxonomy:9606+AND+reviewed:yes DFNB31], [http://www.uniprot.org/uniprot/?query=gene:GRXCR1+AND+taxonomy:9606+AND+reviewed:yes GRXCR1]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0043482</td><td>cellular pigment accumulation</td><td>[http://www.uniprot.org/uniprot/?query=gene:SHROOM3+AND+taxonomy:9606+AND+reviewed:yes SHROOM3], [http://www.uniprot.org/uniprot/?query=gene:SHROOM2+AND+taxonomy:9606+AND+reviewed:yes SHROOM2]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0035845</td><td>photoreceptor cell outer segment organization</td><td>[http://www.uniprot.org/uniprot/?query=gene:AHI1+AND+taxonomy:9606+AND+reviewed:yes AHI1], [http://www.uniprot.org/uniprot/?query=gene:RP1+AND+taxonomy:9606+AND+reviewed:yes RP1], [http://www.uniprot.org/uniprot/?query=gene:TOPORS+AND+taxonomy:9606+AND+reviewed:yes TOPORS], [http://www.uniprot.org/uniprot/?query=gene:NPHP1+AND+taxonomy:9606+AND+reviewed:yes NPHP1]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0097062</td><td>dendritic spine maintenance</td><td>[http://www.uniprot.org/uniprot/?query=gene:PICK1+AND+taxonomy:9606+AND+reviewed:yes PICK1], [http://www.uniprot.org/uniprot/?query=gene:TANC1+AND+taxonomy:9606+AND+reviewed:yes TANC1], [http://www.uniprot.org/uniprot/?query=gene:MTMR2+AND+taxonomy:9606+AND+reviewed:yes MTMR2]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0007529</td><td>establishment of synaptic specificity at neuromuscular junction</td><td>[http://www.uniprot.org/uniprot/?query=gene:CHAT+AND+taxonomy:9606+AND+reviewed:yes CHAT], [http://www.uniprot.org/uniprot/?query=gene:GPHN+AND+taxonomy:9606+AND+reviewed:yes GPHN], [http://www.uniprot.org/uniprot/?query=gene:F2R+AND+taxonomy:9606+AND+reviewed:yes F2R]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0060074</td><td>synapse maturation</td><td>[http://www.uniprot.org/uniprot/?query=gene:SHANK1+AND+taxonomy:9606+AND+reviewed:yes SHANK1], [http://www.uniprot.org/uniprot/?query=gene:PALM+AND+taxonomy:9606+AND+reviewed:yes PALM], [http://www.uniprot.org/uniprot/?query=gene:PTEN+AND+taxonomy:9606+AND+reviewed:yes PTEN]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0008356</td><td>asymmetric cell division</td><td>[http://www.uniprot.org/uniprot/?query=gene:PARD3+AND+taxonomy:9606+AND+reviewed:yes PARD3], [http://www.uniprot.org/uniprot/?query=gene:ACTR3+AND+taxonomy:9606+AND+reviewed:yes ACTR3], [http://www.uniprot.org/uniprot/?query=gene:ACTR2+AND+taxonomy:9606+AND+reviewed:yes ACTR2]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0017145</td><td>stem cell division</td><td>[http://www.uniprot.org/uniprot/?query=gene:TIAL1+AND+taxonomy:9606+AND+reviewed:yes TIAL1], [http://www.uniprot.org/uniprot/?query=gene:NANOG+AND+taxonomy:9606+AND+reviewed:yes NANOG], [http://www.uniprot.org/uniprot/?query=gene:PAFAH1B1+AND+taxonomy:9606+AND+reviewed:yes PAFAH1B1], [http://www.uniprot.org/uniprot/?query=gene:WWTR1+AND+taxonomy:9606+AND+reviewed:yes WWTR1], [http://www.uniprot.org/uniprot/?query=gene:CUL3+AND+taxonomy:9606+AND+reviewed:yes CUL3]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0021869</td><td>forebrain ventricular zone progenitor cell division</td><td>[http://www.uniprot.org/uniprot/?query=gene:POU3F3+AND+taxonomy:9606+AND+reviewed:yes POU3F3], [http://www.uniprot.org/uniprot/?query=gene:POU3F2+AND+taxonomy:9606+AND+reviewed:yes POU3F2], [http://www.uniprot.org/uniprot/?query=gene:DIXDC1+AND+taxonomy:9606+AND+reviewed:yes DIXDC1]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0051668</td><td>localization within membrane</td><td>[http://www.uniprot.org/uniprot/?query=gene:CDH13+AND+taxonomy:9606+AND+reviewed:yes CDH13], [http://www.uniprot.org/uniprot/?query=gene:RAC1+AND+taxonomy:9606+AND+reviewed:yes RAC1], [http://www.uniprot.org/uniprot/?query=gene:CNIH2+AND+taxonomy:9606+AND+reviewed:yes CNIH2]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0043503</td><td>skeletal muscle fiber adaptation</td><td>[http://www.uniprot.org/uniprot/?query=gene:MYOD1+AND+taxonomy:9606+AND+reviewed:yes MYOD1], [http://www.uniprot.org/uniprot/?query=gene:ACTA1+AND+taxonomy:9606+AND+reviewed:yes ACTA1]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0060011</td><td>Sertoli cell proliferation</td><td>[http://www.uniprot.org/uniprot/?query=gene:FSHB+AND+taxonomy:9606+AND+reviewed:yes FSHB], [http://www.uniprot.org/uniprot/?query=gene:FSHR+AND+taxonomy:9606+AND+reviewed:yes FSHR], [http://www.uniprot.org/uniprot/?query=gene:BCL2L2+AND+taxonomy:9606+AND+reviewed:yes BCL2L2], [http://www.uniprot.org/uniprot/?query=gene:BAX+AND+taxonomy:9606+AND+reviewed:yes BAX], [http://www.uniprot.org/uniprot/?query=gene:ACVR2A+AND+taxonomy:9606+AND+reviewed:yes ACVR2A]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0060242</td><td>contact inhibition</td><td>[http://www.uniprot.org/uniprot/?query=gene:PTPRJ+AND+taxonomy:9606+AND+reviewed:yes PTPRJ], [http://www.uniprot.org/uniprot/?query=gene:TSPO+AND+taxonomy:9606+AND+reviewed:yes TSPO], [http://www.uniprot.org/uniprot/?query=gene:YAP1+AND+taxonomy:9606+AND+reviewed:yes YAP1]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0060352</td><td>cell adhesion molecule production</td><td>[http://www.uniprot.org/uniprot/?query=gene:GCNT1+AND+taxonomy:9606+AND+reviewed:yes GCNT1], [http://www.uniprot.org/uniprot/?query=gene:GOLPH3+AND+taxonomy:9606+AND+reviewed:yes GOLPH3]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0072553</td><td>terminal button organization</td><td>[http://www.uniprot.org/uniprot/?query=gene:NLGN2+AND+taxonomy:9606+AND+reviewed:yes NLGN2], [http://www.uniprot.org/uniprot/?query=gene:NLGN1+AND+taxonomy:9606+AND+reviewed:yes NLGN1], [http://www.uniprot.org/uniprot/?query=gene:SNAPIN+AND+taxonomy:9606+AND+reviewed:yes SNAPIN]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0097061</td><td>dendritic spine organization</td><td>[http://www.uniprot.org/uniprot/?query=gene:PICK1+AND+taxonomy:9606+AND+reviewed:yes PICK1], [http://www.uniprot.org/uniprot/?query=gene:ARF1+AND+taxonomy:9606+AND+reviewed:yes ARF1]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0043163</td><td>cell envelope organization</td><td>[http://www.uniprot.org/uniprot/?query=gene:TGM1+AND+taxonomy:9606+AND+reviewed:yes TGM1], [http://www.uniprot.org/uniprot/?query=gene:TGM3+AND+taxonomy:9606+AND+reviewed:yes TGM3]</td></tr>
 
<tr class="s1"><td>1</td><td>GO:0022414</td><td>reproductive process</td><td>[http://www.uniprot.org/uniprot/?query=gene:ANTXR1+AND+taxonomy:9606+AND+reviewed:yes ANTXR1], [http://www.uniprot.org/uniprot/?query=gene:ANTXR2+AND+taxonomy:9606+AND+reviewed:yes ANTXR2]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0001547</td><td>antral ovarian follicle growth</td><td>[http://www.uniprot.org/uniprot/?query=gene:GPR149+AND+taxonomy:9606+AND+reviewed:yes GPR149], [http://www.uniprot.org/uniprot/?query=gene:estrogen receptor+AND+taxonomy:9606+AND+reviewed:yes estrogen receptor], [http://www.uniprot.org/uniprot/?query=gene:FOXO3+AND+taxonomy:9606+AND+reviewed:yes FOXO3], [http://www.uniprot.org/uniprot/?query=gene:ESR1+AND+taxonomy:9606+AND+reviewed:yes ESR1]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0001880</td><td>Mullerian duct regression</td><td>[http://www.uniprot.org/uniprot/?query=gene:SMAD9+AND+taxonomy:9606+AND+reviewed:yes SMAD9], [http://www.uniprot.org/uniprot/?query=gene:SMAD5+AND+taxonomy:9606+AND+reviewed:yes SMAD5], [http://www.uniprot.org/uniprot/?query=gene:AMH+AND+taxonomy:9606+AND+reviewed:yes AMH], [http://www.uniprot.org/uniprot/?query=gene:AMHR2+AND+taxonomy:9606+AND+reviewed:yes AMHR2], [http://www.uniprot.org/uniprot/?query=gene:BMPR1A+AND+taxonomy:9606+AND+reviewed:yes BMPR1A]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0046661</td><td>male sex differentiation</td><td>[http://www.uniprot.org/uniprot/?query=gene:DMRT1+AND+taxonomy:9606+AND+reviewed:yes DMRT1], [http://www.uniprot.org/uniprot/?query=gene:FKBP4+AND+taxonomy:9606+AND+reviewed:yes FKBP4]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0022601</td><td>menstrual cycle phase</td><td>[http://www.uniprot.org/uniprot/?query=gene:SFRP1+AND+taxonomy:9606+AND+reviewed:yes SFRP1], [http://www.uniprot.org/uniprot/?query=gene:SFRP4+AND+taxonomy:9606+AND+reviewed:yes SFRP4], [http://www.uniprot.org/uniprot/?query=gene:TGFB2+AND+taxonomy:9606+AND+reviewed:yes TGFB2], [http://www.uniprot.org/uniprot/?query=gene:TGFB3+AND+taxonomy:9606+AND+reviewed:yes TGFB3]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0045136</td><td>development of secondary sexual characteristics</td><td>[http://www.uniprot.org/uniprot/?query=gene:B4GALT1+AND+taxonomy:9606+AND+reviewed:yes B4GALT1], [http://www.uniprot.org/uniprot/?query=gene:BAX+AND+taxonomy:9606+AND+reviewed:yes BAX]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0046543</td><td>development of secondary female sexual characteristics</td><td>[http://www.uniprot.org/uniprot/?query=gene:STAT5B+AND+taxonomy:9606+AND+reviewed:yes STAT5B], [http://www.uniprot.org/uniprot/?query=gene:STAT5A+AND+taxonomy:9606+AND+reviewed:yes STAT5A]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0046544</td><td>development of secondary male sexual characteristics</td><td>[http://www.uniprot.org/uniprot/?query=gene:STAT5B+AND+taxonomy:9606+AND+reviewed:yes STAT5B], [http://www.uniprot.org/uniprot/?query=gene:STAT5A+AND+taxonomy:9606+AND+reviewed:yes STAT5A], [http://www.uniprot.org/uniprot/?query=gene:LHCGR+AND+taxonomy:9606+AND+reviewed:yes LHCGR]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0046545</td><td>development of primary female sexual characteristics</td><td>[http://www.uniprot.org/uniprot/?query=gene:ACVR1B+AND+taxonomy:9606+AND+reviewed:yes ACVR1B], [http://www.uniprot.org/uniprot/?query=gene:DACH1+AND+taxonomy:9606+AND+reviewed:yes DACH1], [http://www.uniprot.org/uniprot/?query=gene:DACH2+AND+taxonomy:9606+AND+reviewed:yes DACH2], [http://www.uniprot.org/uniprot/?query=gene:ADCYAP1R1+AND+taxonomy:9606+AND+reviewed:yes ADCYAP1R1]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0048806</td><td>genitalia development</td><td>[http://www.uniprot.org/uniprot/?query=gene:PTPN11+AND+taxonomy:9606+AND+reviewed:yes PTPN11], [http://www.uniprot.org/uniprot/?query=gene:FOXF2+AND+taxonomy:9606+AND+reviewed:yes FOXF2], [http://www.uniprot.org/uniprot/?query=gene:DNAJC19+AND+taxonomy:9606+AND+reviewed:yes DNAJC19], [http://www.uniprot.org/uniprot/?query=gene:PKD1+AND+taxonomy:9606+AND+reviewed:yes PKD1], [http://www.uniprot.org/uniprot/?query=gene:WNT5A+AND+taxonomy:9606+AND+reviewed:yes WNT5A], [http://www.uniprot.org/uniprot/?query=gene:CHD7+AND+taxonomy:9606+AND+reviewed:yes CHD7], [http://www.uniprot.org/uniprot/?query=gene:HNF1B+AND+taxonomy:9606+AND+reviewed:yes HNF1B]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0060066</td><td>oviduct development</td><td>[http://www.uniprot.org/uniprot/?query=gene:WNT7A+AND+taxonomy:9606+AND+reviewed:yes WNT7A], [http://www.uniprot.org/uniprot/?query=gene:LHX1+AND+taxonomy:9606+AND+reviewed:yes LHX1], [http://www.uniprot.org/uniprot/?query=gene:CTNNB1+AND+taxonomy:9606+AND+reviewed:yes CTNNB1]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0060067</td><td>cervix development</td><td>[http://www.uniprot.org/uniprot/?query=gene:WNT5A+AND+taxonomy:9606+AND+reviewed:yes WNT5A], [http://www.uniprot.org/uniprot/?query=gene:LHX1+AND+taxonomy:9606+AND+reviewed:yes LHX1]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0060512</td><td>prostate gland morphogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:SERPINB5+AND+taxonomy:9606+AND+reviewed:yes SERPINB5], [http://www.uniprot.org/uniprot/?query=gene:FGFR2+AND+taxonomy:9606+AND+reviewed:yes FGFR2]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0060741</td><td>prostate gland stromal morphogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:IGF1+AND+taxonomy:9606+AND+reviewed:yes IGF1], [http://www.uniprot.org/uniprot/?query=gene:CRIP1+AND+taxonomy:9606+AND+reviewed:yes CRIP1], [http://www.uniprot.org/uniprot/?query=gene:FOXA1+AND+taxonomy:9606+AND+reviewed:yes FOXA1]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0061038</td><td>uterus morphogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:STRA6+AND+taxonomy:9606+AND+reviewed:yes STRA6], [http://www.uniprot.org/uniprot/?query=gene:WNT7A+AND+taxonomy:9606+AND+reviewed:yes WNT7A], [http://www.uniprot.org/uniprot/?query=gene:NIPBL+AND+taxonomy:9606+AND+reviewed:yes NIPBL], [http://www.uniprot.org/uniprot/?query=gene:WNT9B+AND+taxonomy:9606+AND+reviewed:yes WNT9B]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0061205</td><td>paramesonephric duct development</td><td>[http://www.uniprot.org/uniprot/?query=gene:WNT4+AND+taxonomy:9606+AND+reviewed:yes WNT4], [http://www.uniprot.org/uniprot/?query=gene:STRA6+AND+taxonomy:9606+AND+reviewed:yes STRA6], [http://www.uniprot.org/uniprot/?query=gene:LHX1+AND+taxonomy:9606+AND+reviewed:yes LHX1], [http://www.uniprot.org/uniprot/?query=gene:PAX2+AND+taxonomy:9606+AND+reviewed:yes PAX2]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0042713</td><td>sperm ejaculation</td><td>[http://www.uniprot.org/uniprot/?query=gene:OXT+AND+taxonomy:9606+AND+reviewed:yes OXT], [http://www.uniprot.org/uniprot/?query=gene:OXTR+AND+taxonomy:9606+AND+reviewed:yes OXTR], [http://www.uniprot.org/uniprot/?query=gene:SLC6A4+AND+taxonomy:9606+AND+reviewed:yes SLC6A4], [http://www.uniprot.org/uniprot/?query=gene:ACVR2A+AND+taxonomy:9606+AND+reviewed:yes ACVR2A], [http://www.uniprot.org/uniprot/?query=gene:TACR1+AND+taxonomy:9606+AND+reviewed:yes TACR1], [http://www.uniprot.org/uniprot/?query=gene:AVPR1A+AND+taxonomy:9606+AND+reviewed:yes AVPR1A]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0043084</td><td>penile erection</td><td>[http://www.uniprot.org/uniprot/?query=gene:EDNRA+AND+taxonomy:9606+AND+reviewed:yes EDNRA], [http://www.uniprot.org/uniprot/?query=gene:AVP+AND+taxonomy:9606+AND+reviewed:yes AVP], [http://www.uniprot.org/uniprot/?query=gene:ACVR2A+AND+taxonomy:9606+AND+reviewed:yes ACVR2A], [http://www.uniprot.org/uniprot/?query=gene:AVPR1A+AND+taxonomy:9606+AND+reviewed:yes AVPR1A]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0060137</td><td>maternal process involved in parturition</td><td>[http://www.uniprot.org/uniprot/?query=gene:CD55+AND+taxonomy:9606+AND+reviewed:yes CD55], [http://www.uniprot.org/uniprot/?query=gene:CYP1A1+AND+taxonomy:9606+AND+reviewed:yes CYP1A1], [http://www.uniprot.org/uniprot/?query=gene:EDN1+AND+taxonomy:9606+AND+reviewed:yes EDN1], [http://www.uniprot.org/uniprot/?query=gene:EDNRA+AND+taxonomy:9606+AND+reviewed:yes EDNRA], [http://www.uniprot.org/uniprot/?query=gene:OXTR+AND+taxonomy:9606+AND+reviewed:yes OXTR], [http://www.uniprot.org/uniprot/?query=gene:CCL2+AND+taxonomy:9606+AND+reviewed:yes CCL2]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0007320</td><td>insemination</td><td>[http://www.uniprot.org/uniprot/?query=gene:P2RX1+AND+taxonomy:9606+AND+reviewed:yes P2RX1], [http://www.uniprot.org/uniprot/?query=gene:TAC1+AND+taxonomy:9606+AND+reviewed:yes TAC1], [http://www.uniprot.org/uniprot/?query=gene:SEMG1+AND+taxonomy:9606+AND+reviewed:yes SEMG1], [http://www.uniprot.org/uniprot/?query=gene:DDO+AND+taxonomy:9606+AND+reviewed:yes DDO]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0007341</td><td>penetration of zona pellucida</td><td>[http://www.uniprot.org/uniprot/?query=gene:TNP2+AND+taxonomy:9606+AND+reviewed:yes TNP2], [http://www.uniprot.org/uniprot/?query=gene:ACR+AND+taxonomy:9606+AND+reviewed:yes ACR], [http://www.uniprot.org/uniprot/?query=gene:B4GALT1+AND+taxonomy:9606+AND+reviewed:yes B4GALT1], [http://www.uniprot.org/uniprot/?query=gene:T+AND+taxonomy:9606+AND+reviewed:yes T], [http://www.uniprot.org/uniprot/?query=gene:HEXB+AND+taxonomy:9606+AND+reviewed:yes HEXB], [http://www.uniprot.org/uniprot/?query=gene:SMCP+AND+taxonomy:9606+AND+reviewed:yes SMCP]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0007620</td><td>copulation</td><td>[http://www.uniprot.org/uniprot/?query=gene:ABAT+AND+taxonomy:9606+AND+reviewed:yes ABAT], [http://www.uniprot.org/uniprot/?query=gene:PI3+AND+taxonomy:9606+AND+reviewed:yes PI3]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0051856</td><td>adhesion to symbiont</td><td>[http://www.uniprot.org/uniprot/?query=gene:ICAM1+AND+taxonomy:9606+AND+reviewed:yes ICAM1], [http://www.uniprot.org/uniprot/?query=gene:SCARB1+AND+taxonomy:9606+AND+reviewed:yes SCARB1], [http://www.uniprot.org/uniprot/?query=gene:PVRL2+AND+taxonomy:9606+AND+reviewed:yes PVRL2]</td></tr>
 
<tr class="s2"><td>1</td><td>GO:0023052</td><td>signaling</td><td>[http://www.uniprot.org/uniprot/?query=gene:CCR5+AND+taxonomy:9606+AND+reviewed:yes CCR5], [http://www.uniprot.org/uniprot/?query=gene:CCL3+AND+taxonomy:9606+AND+reviewed:yes CCL3]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0043932</td><td>ossification involved in bone remodeling</td><td>[http://www.uniprot.org/uniprot/?query=gene:TGFB1+AND+taxonomy:9606+AND+reviewed:yes TGFB1], [http://www.uniprot.org/uniprot/?query=gene:TGFB3+AND+taxonomy:9606+AND+reviewed:yes TGFB3], [http://www.uniprot.org/uniprot/?query=gene:CTHRC1+AND+taxonomy:9606+AND+reviewed:yes CTHRC1]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0048755</td><td>branching morphogenesis of a nerve</td><td>[http://www.uniprot.org/uniprot/?query=gene:DLX2+AND+taxonomy:9606+AND+reviewed:yes DLX2], [http://www.uniprot.org/uniprot/?query=gene:EPHA7+AND+taxonomy:9606+AND+reviewed:yes EPHA7], [http://www.uniprot.org/uniprot/?query=gene:DRD2+AND+taxonomy:9606+AND+reviewed:yes DRD2], [http://www.uniprot.org/uniprot/?query=gene:FGFR2+AND+taxonomy:9606+AND+reviewed:yes FGFR2]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0010573</td><td>vascular endothelial growth factor production</td><td>[http://www.uniprot.org/uniprot/?query=gene:GPR56+AND+taxonomy:9606+AND+reviewed:yes GPR56], [http://www.uniprot.org/uniprot/?query=gene:HIF1A+AND+taxonomy:9606+AND+reviewed:yes HIF1A]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0032602</td><td>chemokine production</td><td>[http://www.uniprot.org/uniprot/?query=gene:S100A9+AND+taxonomy:9606+AND+reviewed:yes S100A9], [http://www.uniprot.org/uniprot/?query=gene:S100A8+AND+taxonomy:9606+AND+reviewed:yes S100A8]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0032609</td><td>interferon-gamma production</td><td>[http://www.uniprot.org/uniprot/?query=gene:EOMES+AND+taxonomy:9606+AND+reviewed:yes EOMES], [http://www.uniprot.org/uniprot/?query=gene:AVPR2+AND+taxonomy:9606+AND+reviewed:yes AVPR2], [http://www.uniprot.org/uniprot/?query=gene:TXK+AND+taxonomy:9606+AND+reviewed:yes TXK], [http://www.uniprot.org/uniprot/?query=gene:LILRB1+AND+taxonomy:9606+AND+reviewed:yes LILRB1], [http://www.uniprot.org/uniprot/?query=gene:IL12RB2+AND+taxonomy:9606+AND+reviewed:yes IL12RB2], [http://www.uniprot.org/uniprot/?query=gene:ITK+AND+taxonomy:9606+AND+reviewed:yes ITK], [http://www.uniprot.org/uniprot/?query=gene:TLR4+AND+taxonomy:9606+AND+reviewed:yes TLR4], [http://www.uniprot.org/uniprot/?query=gene:RUNX3+AND+taxonomy:9606+AND+reviewed:yes RUNX3]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0032623</td><td>interleukin-2 production</td><td>[http://www.uniprot.org/uniprot/?query=gene:SLC11A1+AND+taxonomy:9606+AND+reviewed:yes SLC11A1], [http://www.uniprot.org/uniprot/?query=gene:STOML2+AND+taxonomy:9606+AND+reviewed:yes STOML2]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0032633</td><td>interleukin-4 production</td><td>[http://www.uniprot.org/uniprot/?query=gene:TXK+AND+taxonomy:9606+AND+reviewed:yes TXK], [http://www.uniprot.org/uniprot/?query=gene:ITK+AND+taxonomy:9606+AND+reviewed:yes ITK]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0002021</td><td>response to dietary excess</td><td>[http://www.uniprot.org/uniprot/?query=gene:VGF+AND+taxonomy:9606+AND+reviewed:yes VGF], [http://www.uniprot.org/uniprot/?query=gene:APOE+AND+taxonomy:9606+AND+reviewed:yes APOE], [http://www.uniprot.org/uniprot/?query=gene:SGIP1+AND+taxonomy:9606+AND+reviewed:yes SGIP1], [http://www.uniprot.org/uniprot/?query=gene:LEP+AND+taxonomy:9606+AND+reviewed:yes LEP], [http://www.uniprot.org/uniprot/?query=gene:ACVR1C+AND+taxonomy:9606+AND+reviewed:yes ACVR1C], [http://www.uniprot.org/uniprot/?query=gene:GDF3+AND+taxonomy:9606+AND+reviewed:yes GDF3], [http://www.uniprot.org/uniprot/?query=gene:PCSK1N+AND+taxonomy:9606+AND+reviewed:yes PCSK1N]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0002532</td><td>production of molecular mediator involved in inflammatory response</td><td>[http://www.uniprot.org/uniprot/?query=gene:IL4R+AND+taxonomy:9606+AND+reviewed:yes IL4R], [http://www.uniprot.org/uniprot/?query=gene:CHIA+AND+taxonomy:9606+AND+reviewed:yes CHIA]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0002537</td><td>nitric oxide production involved in inflammatory response</td><td>[http://www.uniprot.org/uniprot/?query=gene:SLC7A2+AND+taxonomy:9606+AND+reviewed:yes SLC7A2], [http://www.uniprot.org/uniprot/?query=gene:TLR4+AND+taxonomy:9606+AND+reviewed:yes TLR4]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0003012</td><td>muscle system process</td><td>[http://www.uniprot.org/uniprot/?query=gene:TRIM72+AND+taxonomy:9606+AND+reviewed:yes TRIM72], [http://www.uniprot.org/uniprot/?query=gene:SCO2+AND+taxonomy:9606+AND+reviewed:yes SCO2]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0007379</td><td>segment specification</td><td>[http://www.uniprot.org/uniprot/?query=gene:HOXA2+AND+taxonomy:9606+AND+reviewed:yes HOXA2], [http://www.uniprot.org/uniprot/?query=gene:MAFB+AND+taxonomy:9606+AND+reviewed:yes MAFB], [http://www.uniprot.org/uniprot/?query=gene:MSGN1+AND+taxonomy:9606+AND+reviewed:yes MSGN1], [http://www.uniprot.org/uniprot/?query=gene:MLLT3+AND+taxonomy:9606+AND+reviewed:yes MLLT3], [http://www.uniprot.org/uniprot/?query=gene:BMI1+AND+taxonomy:9606+AND+reviewed:yes BMI1], [http://www.uniprot.org/uniprot/?query=gene:DVL2+AND+taxonomy:9606+AND+reviewed:yes DVL2], [http://www.uniprot.org/uniprot/?query=gene:MTF2+AND+taxonomy:9606+AND+reviewed:yes MTF2]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0009798</td><td>axis specification</td><td>[http://www.uniprot.org/uniprot/?query=gene:WNT6+AND+taxonomy:9606+AND+reviewed:yes WNT6], [http://www.uniprot.org/uniprot/?query=gene:APC+AND+taxonomy:9606+AND+reviewed:yes APC]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0065001</td><td>specification of axis polarity</td><td>[http://www.uniprot.org/uniprot/?query=gene:AHI1+AND+taxonomy:9606+AND+reviewed:yes AHI1], [http://www.uniprot.org/uniprot/?query=gene:BCOR+AND+taxonomy:9606+AND+reviewed:yes BCOR]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0044241</td><td>lipid digestion</td><td>[http://www.uniprot.org/uniprot/?query=gene:PNLIP+AND+taxonomy:9606+AND+reviewed:yes PNLIP], [http://www.uniprot.org/uniprot/?query=gene:CEL+AND+taxonomy:9606+AND+reviewed:yes CEL], [http://www.uniprot.org/uniprot/?query=gene:CLPS+AND+taxonomy:9606+AND+reviewed:yes CLPS], [http://www.uniprot.org/uniprot/?query=gene:PNLIPRP2+AND+taxonomy:9606+AND+reviewed:yes PNLIPRP2]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0044245</td><td>polysaccharide digestion</td><td>[http://www.uniprot.org/uniprot/?query=gene:SI+AND+taxonomy:9606+AND+reviewed:yes SI], [http://www.uniprot.org/uniprot/?query=gene:TREH+AND+taxonomy:9606+AND+reviewed:yes TREH], [http://www.uniprot.org/uniprot/?query=gene:LCT+AND+taxonomy:9606+AND+reviewed:yes LCT], [http://www.uniprot.org/uniprot/?query=gene:AMY2A+AND+taxonomy:9606+AND+reviewed:yes AMY2A], [http://www.uniprot.org/uniprot/?query=gene:MGAM+AND+taxonomy:9606+AND+reviewed:yes MGAM]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0032902</td><td>nerve growth factor production</td><td>[http://www.uniprot.org/uniprot/?query=gene:PCSK6+AND+taxonomy:9606+AND+reviewed:yes PCSK6], [http://www.uniprot.org/uniprot/?query=gene:FURIN+AND+taxonomy:9606+AND+reviewed:yes FURIN]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0042596</td><td>fear response</td><td>[http://www.uniprot.org/uniprot/?query=gene:ADRA2A+AND+taxonomy:9606+AND+reviewed:yes ADRA2A], [http://www.uniprot.org/uniprot/?query=gene:DRD4+AND+taxonomy:9606+AND+reviewed:yes DRD4], [http://www.uniprot.org/uniprot/?query=gene:DBH+AND+taxonomy:9606+AND+reviewed:yes DBH], [http://www.uniprot.org/uniprot/?query=gene:ADRB1+AND+taxonomy:9606+AND+reviewed:yes ADRB1]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0034381</td><td>plasma lipoprotein particle clearance</td><td>[http://www.uniprot.org/uniprot/?query=gene:MSR1+AND+taxonomy:9606+AND+reviewed:yes MSR1], [http://www.uniprot.org/uniprot/?query=gene:CD36+AND+taxonomy:9606+AND+reviewed:yes CD36]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0034384</td><td>high-density lipoprotein particle clearance</td><td>[http://www.uniprot.org/uniprot/?query=gene:APOC2+AND+taxonomy:9606+AND+reviewed:yes APOC2], [http://www.uniprot.org/uniprot/?query=gene:APOE+AND+taxonomy:9606+AND+reviewed:yes APOE], [http://www.uniprot.org/uniprot/?query=gene:APOM+AND+taxonomy:9606+AND+reviewed:yes APOM], [http://www.uniprot.org/uniprot/?query=gene:APOA1+AND+taxonomy:9606+AND+reviewed:yes APOA1], [http://www.uniprot.org/uniprot/?query=gene:APOA2+AND+taxonomy:9606+AND+reviewed:yes APOA2], [http://www.uniprot.org/uniprot/?query=gene:SCARB1+AND+taxonomy:9606+AND+reviewed:yes SCARB1]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0034447</td><td>very-low-density lipoprotein particle clearance</td><td>[http://www.uniprot.org/uniprot/?query=gene:APOC1+AND+taxonomy:9606+AND+reviewed:yes APOC1], [http://www.uniprot.org/uniprot/?query=gene:APOE+AND+taxonomy:9606+AND+reviewed:yes APOE], [http://www.uniprot.org/uniprot/?query=gene:VLDLR+AND+taxonomy:9606+AND+reviewed:yes VLDLR]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0060437</td><td>lung growth</td><td>[http://www.uniprot.org/uniprot/?query=gene:RSPO2+AND+taxonomy:9606+AND+reviewed:yes RSPO2], [http://www.uniprot.org/uniprot/?query=gene:SPRY2+AND+taxonomy:9606+AND+reviewed:yes SPRY2]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0042633</td><td>hair cycle</td><td>[http://www.uniprot.org/uniprot/?query=gene:PTCH2+AND+taxonomy:9606+AND+reviewed:yes PTCH2], [http://www.uniprot.org/uniprot/?query=gene:PPP1R13L+AND+taxonomy:9606+AND+reviewed:yes PPP1R13L], [http://www.uniprot.org/uniprot/?query=gene:MPZL3+AND+taxonomy:9606+AND+reviewed:yes MPZL3], [http://www.uniprot.org/uniprot/?query=gene:SNRPE+AND+taxonomy:9606+AND+reviewed:yes SNRPE]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0002248</td><td>connective tissue replacement involved in inflammatory response wound healing</td><td>[http://www.uniprot.org/uniprot/?query=gene:TGFB1+AND+taxonomy:9606+AND+reviewed:yes TGFB1], [http://www.uniprot.org/uniprot/?query=gene:HIF1A+AND+taxonomy:9606+AND+reviewed:yes HIF1A], [http://www.uniprot.org/uniprot/?query=gene:F2R+AND+taxonomy:9606+AND+reviewed:yes F2R]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0003294</td><td>atrial ventricular junction remodeling</td><td>[http://www.uniprot.org/uniprot/?query=gene:GJA1+AND+taxonomy:9606+AND+reviewed:yes GJA1], [http://www.uniprot.org/uniprot/?query=gene:GJA5+AND+taxonomy:9606+AND+reviewed:yes GJA5]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0060056</td><td>mammary gland involution</td><td>[http://www.uniprot.org/uniprot/?query=gene:SFRP4+AND+taxonomy:9606+AND+reviewed:yes SFRP4], [http://www.uniprot.org/uniprot/?query=gene:ARG1+AND+taxonomy:9606+AND+reviewed:yes ARG1], [http://www.uniprot.org/uniprot/?query=gene:IGFBP5+AND+taxonomy:9606+AND+reviewed:yes IGFBP5], [http://www.uniprot.org/uniprot/?query=gene:CAV1+AND+taxonomy:9606+AND+reviewed:yes CAV1], [http://www.uniprot.org/uniprot/?query=gene:BSX+AND+taxonomy:9606+AND+reviewed:yes BSX], [http://www.uniprot.org/uniprot/?query=gene:FRZB+AND+taxonomy:9606+AND+reviewed:yes FRZB], [http://www.uniprot.org/uniprot/?query=gene:ELF3+AND+taxonomy:9606+AND+reviewed:yes ELF3]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0048871</td><td>multicellular organismal homeostasis</td><td>[http://www.uniprot.org/uniprot/?query=gene:PPP1R13L+AND+taxonomy:9606+AND+reviewed:yes PPP1R13L], [http://www.uniprot.org/uniprot/?query=gene:TENC1+AND+taxonomy:9606+AND+reviewed:yes TENC1], [http://www.uniprot.org/uniprot/?query=gene:NDN+AND+taxonomy:9606+AND+reviewed:yes NDN]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0050878</td><td>regulation of body fluid levels</td><td>[http://www.uniprot.org/uniprot/?query=gene:PDSS2+AND+taxonomy:9606+AND+reviewed:yes PDSS2], [http://www.uniprot.org/uniprot/?query=gene:HEG1+AND+taxonomy:9606+AND+reviewed:yes HEG1], [http://www.uniprot.org/uniprot/?query=gene:EPHB2+AND+taxonomy:9606+AND+reviewed:yes EPHB2]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0007509</td><td>mesoderm migration involved in gastrulation</td><td>[http://www.uniprot.org/uniprot/?query=gene:EPB41L5+AND+taxonomy:9606+AND+reviewed:yes EPB41L5], [http://www.uniprot.org/uniprot/?query=gene:T+AND+taxonomy:9606+AND+reviewed:yes T]</td></tr>
 
<tr class="s2"><td>1</td><td>GO:0032502</td><td>developmental process</td><td>[http://www.uniprot.org/uniprot/?query=gene:NSRP1+AND+taxonomy:9606+AND+reviewed:yes NSRP1], [http://www.uniprot.org/uniprot/?query=gene:COLEC11+AND+taxonomy:9606+AND+reviewed:yes COLEC11], [http://www.uniprot.org/uniprot/?query=gene:IL11RA+AND+taxonomy:9606+AND+reviewed:yes IL11RA]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0003149</td><td>membranous septum morphogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:WHSC1+AND+taxonomy:9606+AND+reviewed:yes WHSC1], [http://www.uniprot.org/uniprot/?query=gene:VANGL2+AND+taxonomy:9606+AND+reviewed:yes VANGL2], [http://www.uniprot.org/uniprot/?query=gene:FZD1+AND+taxonomy:9606+AND+reviewed:yes FZD1], [http://www.uniprot.org/uniprot/?query=gene:FZD2+AND+taxonomy:9606+AND+reviewed:yes FZD2], [http://www.uniprot.org/uniprot/?query=gene:FGFR2+AND+taxonomy:9606+AND+reviewed:yes FGFR2], [http://www.uniprot.org/uniprot/?query=gene:ID2+AND+taxonomy:9606+AND+reviewed:yes ID2]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0003150</td><td>muscular septum morphogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:VANGL2+AND+taxonomy:9606+AND+reviewed:yes VANGL2], [http://www.uniprot.org/uniprot/?query=gene:FZD1+AND+taxonomy:9606+AND+reviewed:yes FZD1], [http://www.uniprot.org/uniprot/?query=gene:FZD2+AND+taxonomy:9606+AND+reviewed:yes FZD2], [http://www.uniprot.org/uniprot/?query=gene:HEY2+AND+taxonomy:9606+AND+reviewed:yes HEY2]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0003160</td><td>endocardium morphogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:NOTCH1+AND+taxonomy:9606+AND+reviewed:yes NOTCH1], [http://www.uniprot.org/uniprot/?query=gene:RBPJ+AND+taxonomy:9606+AND+reviewed:yes RBPJ]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0003180</td><td>aortic valve morphogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:NOTCH1+AND+taxonomy:9606+AND+reviewed:yes NOTCH1], [http://www.uniprot.org/uniprot/?query=gene:EFNA1+AND+taxonomy:9606+AND+reviewed:yes EFNA1], [http://www.uniprot.org/uniprot/?query=gene:TBX20+AND+taxonomy:9606+AND+reviewed:yes TBX20], [http://www.uniprot.org/uniprot/?query=gene:TWIST1+AND+taxonomy:9606+AND+reviewed:yes TWIST1], [http://www.uniprot.org/uniprot/?query=gene:GATA3+AND+taxonomy:9606+AND+reviewed:yes GATA3]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0003183</td><td>mitral valve morphogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:ACVR1+AND+taxonomy:9606+AND+reviewed:yes ACVR1], [http://www.uniprot.org/uniprot/?query=gene:EFNA1+AND+taxonomy:9606+AND+reviewed:yes EFNA1], [http://www.uniprot.org/uniprot/?query=gene:SOX4+AND+taxonomy:9606+AND+reviewed:yes SOX4], [http://www.uniprot.org/uniprot/?query=gene:TWIST1+AND+taxonomy:9606+AND+reviewed:yes TWIST1]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0003184</td><td>pulmonary valve morphogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:NOTCH1+AND+taxonomy:9606+AND+reviewed:yes NOTCH1], [http://www.uniprot.org/uniprot/?query=gene:NOTCH2+AND+taxonomy:9606+AND+reviewed:yes NOTCH2], [http://www.uniprot.org/uniprot/?query=gene:STRA6+AND+taxonomy:9606+AND+reviewed:yes STRA6], [http://www.uniprot.org/uniprot/?query=gene:JAG1+AND+taxonomy:9606+AND+reviewed:yes JAG1], [http://www.uniprot.org/uniprot/?query=gene:HEYL+AND+taxonomy:9606+AND+reviewed:yes HEYL], [http://www.uniprot.org/uniprot/?query=gene:HEY2+AND+taxonomy:9606+AND+reviewed:yes HEY2], [http://www.uniprot.org/uniprot/?query=gene:HEY1+AND+taxonomy:9606+AND+reviewed:yes HEY1]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0003185</td><td>sinoatrial valve morphogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:MEF2C+AND+taxonomy:9606+AND+reviewed:yes MEF2C], [http://www.uniprot.org/uniprot/?query=gene:MEF2A+AND+taxonomy:9606+AND+reviewed:yes MEF2A]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0003209</td><td>cardiac atrium morphogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:NOTCH1+AND+taxonomy:9606+AND+reviewed:yes NOTCH1], [http://www.uniprot.org/uniprot/?query=gene:HEG1+AND+taxonomy:9606+AND+reviewed:yes HEG1], [http://www.uniprot.org/uniprot/?query=gene:DLL4+AND+taxonomy:9606+AND+reviewed:yes DLL4], [http://www.uniprot.org/uniprot/?query=gene:SHOX2+AND+taxonomy:9606+AND+reviewed:yes SHOX2]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0007442</td><td>hindgut morphogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:GLI3+AND+taxonomy:9606+AND+reviewed:yes GLI3], [http://www.uniprot.org/uniprot/?query=gene:WNT5A+AND+taxonomy:9606+AND+reviewed:yes WNT5A], [http://www.uniprot.org/uniprot/?query=gene:SHH+AND+taxonomy:9606+AND+reviewed:yes SHH], [http://www.uniprot.org/uniprot/?query=gene:GLI2+AND+taxonomy:9606+AND+reviewed:yes GLI2]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0048563</td><td>post-embryonic organ morphogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:BCL2L11+AND+taxonomy:9606+AND+reviewed:yes BCL2L11], [http://www.uniprot.org/uniprot/?query=gene:MYO7A+AND+taxonomy:9606+AND+reviewed:yes MYO7A], [http://www.uniprot.org/uniprot/?query=gene:GRXCR1+AND+taxonomy:9606+AND+reviewed:yes GRXCR1]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0060060</td><td>post-embryonic retina morphogenesis in camera-type eye</td><td>[http://www.uniprot.org/uniprot/?query=gene:GRK1+AND+taxonomy:9606+AND+reviewed:yes GRK1], [http://www.uniprot.org/uniprot/?query=gene:DSCAM+AND+taxonomy:9606+AND+reviewed:yes DSCAM], [http://www.uniprot.org/uniprot/?query=gene:CCDC66+AND+taxonomy:9606+AND+reviewed:yes CCDC66]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0043585</td><td>nose morphogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:STRA6+AND+taxonomy:9606+AND+reviewed:yes STRA6], [http://www.uniprot.org/uniprot/?query=gene:SKI+AND+taxonomy:9606+AND+reviewed:yes SKI], [http://www.uniprot.org/uniprot/?query=gene:GLI3+AND+taxonomy:9606+AND+reviewed:yes GLI3]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0043587</td><td>tongue morphogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:TBX1+AND+taxonomy:9606+AND+reviewed:yes TBX1], [http://www.uniprot.org/uniprot/?query=gene:CYP26B1+AND+taxonomy:9606+AND+reviewed:yes CYP26B1], [http://www.uniprot.org/uniprot/?query=gene:KRT13+AND+taxonomy:9606+AND+reviewed:yes KRT13], [http://www.uniprot.org/uniprot/?query=gene:CTNNB1+AND+taxonomy:9606+AND+reviewed:yes CTNNB1], [http://www.uniprot.org/uniprot/?query=gene:GAA+AND+taxonomy:9606+AND+reviewed:yes GAA], [http://www.uniprot.org/uniprot/?query=gene:HOXC13+AND+taxonomy:9606+AND+reviewed:yes HOXC13]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0048592</td><td>eye morphogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:NIPBL+AND+taxonomy:9606+AND+reviewed:yes NIPBL], [http://www.uniprot.org/uniprot/?query=gene:COL5A2+AND+taxonomy:9606+AND+reviewed:yes COL5A2], [http://www.uniprot.org/uniprot/?query=gene:COL5A1+AND+taxonomy:9606+AND+reviewed:yes COL5A1], [http://www.uniprot.org/uniprot/?query=gene:GAS1+AND+taxonomy:9606+AND+reviewed:yes GAS1]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0048644</td><td>muscle organ morphogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:LIF+AND+taxonomy:9606+AND+reviewed:yes LIF], [http://www.uniprot.org/uniprot/?query=gene:TBX1+AND+taxonomy:9606+AND+reviewed:yes TBX1], [http://www.uniprot.org/uniprot/?query=gene:GSC+AND+taxonomy:9606+AND+reviewed:yes GSC], [http://www.uniprot.org/uniprot/?query=gene:CNTF+AND+taxonomy:9606+AND+reviewed:yes CNTF], [http://www.uniprot.org/uniprot/?query=gene:TCF15+AND+taxonomy:9606+AND+reviewed:yes TCF15], [http://www.uniprot.org/uniprot/?query=gene:ARID5B+AND+taxonomy:9606+AND+reviewed:yes ARID5B], [http://www.uniprot.org/uniprot/?query=gene:SERP1+AND+taxonomy:9606+AND+reviewed:yes SERP1], [http://www.uniprot.org/uniprot/?query=gene:SMTNL1+AND+taxonomy:9606+AND+reviewed:yes SMTNL1]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0060434</td><td>bronchus morphogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:TULP3+AND+taxonomy:9606+AND+reviewed:yes TULP3], [http://www.uniprot.org/uniprot/?query=gene:TGFBR2+AND+taxonomy:9606+AND+reviewed:yes TGFBR2]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0061113</td><td>pancreas morphogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:SMO+AND+taxonomy:9606+AND+reviewed:yes SMO], [http://www.uniprot.org/uniprot/?query=gene:CELA1+AND+taxonomy:9606+AND+reviewed:yes CELA1]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0072197</td><td>ureter morphogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:PAX2+AND+taxonomy:9606+AND+reviewed:yes PAX2], [http://www.uniprot.org/uniprot/?query=gene:SOX8+AND+taxonomy:9606+AND+reviewed:yes SOX8], [http://www.uniprot.org/uniprot/?query=gene:SOX9+AND+taxonomy:9606+AND+reviewed:yes SOX9]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0021551</td><td>central nervous system morphogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:WNT1+AND+taxonomy:9606+AND+reviewed:yes WNT1], [http://www.uniprot.org/uniprot/?query=gene:ERBB4+AND+taxonomy:9606+AND+reviewed:yes ERBB4]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0021575</td><td>hindbrain morphogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:GSX2+AND+taxonomy:9606+AND+reviewed:yes GSX2], [http://www.uniprot.org/uniprot/?query=gene:HES1+AND+taxonomy:9606+AND+reviewed:yes HES1], [http://www.uniprot.org/uniprot/?query=gene:HES3+AND+taxonomy:9606+AND+reviewed:yes HES3], [http://www.uniprot.org/uniprot/?query=gene:DLC1+AND+taxonomy:9606+AND+reviewed:yes DLC1]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0021587</td><td>cerebellum morphogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:LMX1B+AND+taxonomy:9606+AND+reviewed:yes LMX1B], [http://www.uniprot.org/uniprot/?query=gene:LRP6+AND+taxonomy:9606+AND+reviewed:yes LRP6], [http://www.uniprot.org/uniprot/?query=gene:GNPAT+AND+taxonomy:9606+AND+reviewed:yes GNPAT], [http://www.uniprot.org/uniprot/?query=gene:CBS+AND+taxonomy:9606+AND+reviewed:yes CBS], [http://www.uniprot.org/uniprot/?query=gene:GAS1+AND+taxonomy:9606+AND+reviewed:yes GAS1]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0021610</td><td>facial nerve morphogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:PLXNA4+AND+taxonomy:9606+AND+reviewed:yes PLXNA4], [http://www.uniprot.org/uniprot/?query=gene:SIX1+AND+taxonomy:9606+AND+reviewed:yes SIX1]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0021615</td><td>glossopharyngeal nerve morphogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:HOXA3+AND+taxonomy:9606+AND+reviewed:yes HOXA3], [http://www.uniprot.org/uniprot/?query=gene:HOXD3+AND+taxonomy:9606+AND+reviewed:yes HOXD3], [http://www.uniprot.org/uniprot/?query=gene:HOXB3+AND+taxonomy:9606+AND+reviewed:yes HOXB3], [http://www.uniprot.org/uniprot/?query=gene:PLXNA4+AND+taxonomy:9606+AND+reviewed:yes PLXNA4]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0021636</td><td>trigeminal nerve morphogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:NRP1+AND+taxonomy:9606+AND+reviewed:yes NRP1], [http://www.uniprot.org/uniprot/?query=gene:PLXNA4+AND+taxonomy:9606+AND+reviewed:yes PLXNA4]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0021644</td><td>vagus nerve morphogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:TBX1+AND+taxonomy:9606+AND+reviewed:yes TBX1], [http://www.uniprot.org/uniprot/?query=gene:PLXNA4+AND+taxonomy:9606+AND+reviewed:yes PLXNA4]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0022612</td><td>gland morphogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:BCL2+AND+taxonomy:9606+AND+reviewed:yes BCL2], [http://www.uniprot.org/uniprot/?query=gene:PLAG1+AND+taxonomy:9606+AND+reviewed:yes PLAG1], [http://www.uniprot.org/uniprot/?query=gene:FGFR2+AND+taxonomy:9606+AND+reviewed:yes FGFR2], [http://www.uniprot.org/uniprot/?query=gene:NKX2-3+AND+taxonomy:9606+AND+reviewed:yes NKX2-3], [http://www.uniprot.org/uniprot/?query=gene:GDF7+AND+taxonomy:9606+AND+reviewed:yes GDF7]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0060197</td><td>cloacal septation</td><td>[http://www.uniprot.org/uniprot/?query=gene:TP63+AND+taxonomy:9606+AND+reviewed:yes TP63], [http://www.uniprot.org/uniprot/?query=gene:BMP4+AND+taxonomy:9606+AND+reviewed:yes BMP4], [http://www.uniprot.org/uniprot/?query=gene:WNT11+AND+taxonomy:9606+AND+reviewed:yes WNT11]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0035910</td><td>ascending aorta morphogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:HES1+AND+taxonomy:9606+AND+reviewed:yes HES1], [http://www.uniprot.org/uniprot/?query=gene:SOX4+AND+taxonomy:9606+AND+reviewed:yes SOX4], [http://www.uniprot.org/uniprot/?query=gene:HEY2+AND+taxonomy:9606+AND+reviewed:yes HEY2]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0035922</td><td>foramen ovale closure</td><td>[http://www.uniprot.org/uniprot/?query=gene:TBX20+AND+taxonomy:9606+AND+reviewed:yes TBX20], [http://www.uniprot.org/uniprot/?query=gene:GJA5+AND+taxonomy:9606+AND+reviewed:yes GJA5]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0036304</td><td>umbilical cord morphogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:HEY2+AND+taxonomy:9606+AND+reviewed:yes HEY2], [http://www.uniprot.org/uniprot/?query=gene:HEY1+AND+taxonomy:9606+AND+reviewed:yes HEY1]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0048845</td><td>venous blood vessel morphogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:HEG1+AND+taxonomy:9606+AND+reviewed:yes HEG1], [http://www.uniprot.org/uniprot/?query=gene:CCM2+AND+taxonomy:9606+AND+reviewed:yes CCM2], [http://www.uniprot.org/uniprot/?query=gene:ENG+AND+taxonomy:9606+AND+reviewed:yes ENG], [http://www.uniprot.org/uniprot/?query=gene:CCBE1+AND+taxonomy:9606+AND+reviewed:yes CCBE1], [http://www.uniprot.org/uniprot/?query=gene:PROX1+AND+taxonomy:9606+AND+reviewed:yes PROX1]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0060977</td><td>coronary vasculature morphogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:SETD2+AND+taxonomy:9606+AND+reviewed:yes SETD2], [http://www.uniprot.org/uniprot/?query=gene:HEY2+AND+taxonomy:9606+AND+reviewed:yes HEY2]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0061304</td><td>retinal blood vessel morphogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:LRP5+AND+taxonomy:9606+AND+reviewed:yes LRP5], [http://www.uniprot.org/uniprot/?query=gene:FZD4+AND+taxonomy:9606+AND+reviewed:yes FZD4], [http://www.uniprot.org/uniprot/?query=gene:LAMA1+AND+taxonomy:9606+AND+reviewed:yes LAMA1]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0061031</td><td>endodermal digestive tract morphogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:PITX2+AND+taxonomy:9606+AND+reviewed:yes PITX2], [http://www.uniprot.org/uniprot/?query=gene:FGFR2+AND+taxonomy:9606+AND+reviewed:yes FGFR2], [http://www.uniprot.org/uniprot/?query=gene:SOX17+AND+taxonomy:9606+AND+reviewed:yes SOX17], [http://www.uniprot.org/uniprot/?query=gene:ID2+AND+taxonomy:9606+AND+reviewed:yes ID2]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0021555</td><td>midbrain-hindbrain boundary morphogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:GBX2+AND+taxonomy:9606+AND+reviewed:yes GBX2], [http://www.uniprot.org/uniprot/?query=gene:KDM2B+AND+taxonomy:9606+AND+reviewed:yes KDM2B], [http://www.uniprot.org/uniprot/?query=gene:HES1+AND+taxonomy:9606+AND+reviewed:yes HES1], [http://www.uniprot.org/uniprot/?query=gene:HES3+AND+taxonomy:9606+AND+reviewed:yes HES3]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0032474</td><td>otolith morphogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:BLOC1S5+AND+taxonomy:9606+AND+reviewed:yes BLOC1S5], [http://www.uniprot.org/uniprot/?query=gene:SMO+AND+taxonomy:9606+AND+reviewed:yes SMO]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0035880</td><td>embryonic nail plate morphogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:MSX1+AND+taxonomy:9606+AND+reviewed:yes MSX1], [http://www.uniprot.org/uniprot/?query=gene:MSX2+AND+taxonomy:9606+AND+reviewed:yes MSX2]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0048619</td><td>embryonic hindgut morphogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:DACT1+AND+taxonomy:9606+AND+reviewed:yes DACT1], [http://www.uniprot.org/uniprot/?query=gene:HOXD13+AND+taxonomy:9606+AND+reviewed:yes HOXD13], [http://www.uniprot.org/uniprot/?query=gene:TCF7+AND+taxonomy:9606+AND+reviewed:yes TCF7], [http://www.uniprot.org/uniprot/?query=gene:TCF7L2+AND+taxonomy:9606+AND+reviewed:yes TCF7L2]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0060669</td><td>embryonic placenta morphogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:WNT7B+AND+taxonomy:9606+AND+reviewed:yes WNT7B], [http://www.uniprot.org/uniprot/?query=gene:TRIM28+AND+taxonomy:9606+AND+reviewed:yes TRIM28], [http://www.uniprot.org/uniprot/?query=gene:SETD2+AND+taxonomy:9606+AND+reviewed:yes SETD2], [http://www.uniprot.org/uniprot/?query=gene:ZNF527+AND+taxonomy:9606+AND+reviewed:yes ZNF527]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0060713</td><td>labyrinthine layer morphogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:ESX1+AND+taxonomy:9606+AND+reviewed:yes ESX1], [http://www.uniprot.org/uniprot/?query=gene:GJB5+AND+taxonomy:9606+AND+reviewed:yes GJB5]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0048332</td><td>mesoderm morphogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:SETD2+AND+taxonomy:9606+AND+reviewed:yes SETD2], [http://www.uniprot.org/uniprot/?query=gene:TBX3+AND+taxonomy:9606+AND+reviewed:yes TBX3]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0060415</td><td>muscle tissue morphogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:TBX1+AND+taxonomy:9606+AND+reviewed:yes TBX1], [http://www.uniprot.org/uniprot/?query=gene:SHOX2+AND+taxonomy:9606+AND+reviewed:yes SHOX2], [http://www.uniprot.org/uniprot/?query=gene:MYF5+AND+taxonomy:9606+AND+reviewed:yes MYF5], [http://www.uniprot.org/uniprot/?query=gene:MYF6+AND+taxonomy:9606+AND+reviewed:yes MYF6], [http://www.uniprot.org/uniprot/?query=gene:PAX7+AND+taxonomy:9606+AND+reviewed:yes PAX7]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0060536</td><td>cartilage morphogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:HAND1+AND+taxonomy:9606+AND+reviewed:yes HAND1], [http://www.uniprot.org/uniprot/?query=gene:HAND2+AND+taxonomy:9606+AND+reviewed:yes HAND2], [http://www.uniprot.org/uniprot/?query=gene:SNAI2+AND+taxonomy:9606+AND+reviewed:yes SNAI2], [http://www.uniprot.org/uniprot/?query=gene:SNAI1+AND+taxonomy:9606+AND+reviewed:yes SNAI1], [http://www.uniprot.org/uniprot/?query=gene:MEF2C+AND+taxonomy:9606+AND+reviewed:yes MEF2C], [http://www.uniprot.org/uniprot/?query=gene:MEF2A+AND+taxonomy:9606+AND+reviewed:yes MEF2A]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0048850</td><td>hypophysis morphogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:WNT5A+AND+taxonomy:9606+AND+reviewed:yes WNT5A], [http://www.uniprot.org/uniprot/?query=gene:PROP1+AND+taxonomy:9606+AND+reviewed:yes PROP1]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0048852</td><td>diencephalon morphogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:OTX1+AND+taxonomy:9606+AND+reviewed:yes OTX1], [http://www.uniprot.org/uniprot/?query=gene:OTX2+AND+taxonomy:9606+AND+reviewed:yes OTX2], [http://www.uniprot.org/uniprot/?query=gene:SOX2+AND+taxonomy:9606+AND+reviewed:yes SOX2]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0060042</td><td>retina morphogenesis in camera-type eye</td><td>[http://www.uniprot.org/uniprot/?query=gene:LRP5+AND+taxonomy:9606+AND+reviewed:yes LRP5], [http://www.uniprot.org/uniprot/?query=gene:PTF1A+AND+taxonomy:9606+AND+reviewed:yes PTF1A], [http://www.uniprot.org/uniprot/?query=gene:PVRL3+AND+taxonomy:9606+AND+reviewed:yes PVRL3], [http://www.uniprot.org/uniprot/?query=gene:SOX2+AND+taxonomy:9606+AND+reviewed:yes SOX2], [http://www.uniprot.org/uniprot/?query=gene:PROM1+AND+taxonomy:9606+AND+reviewed:yes PROM1], [http://www.uniprot.org/uniprot/?query=gene:RPE65+AND+taxonomy:9606+AND+reviewed:yes RPE65], [http://www.uniprot.org/uniprot/?query=gene:PROX1+AND+taxonomy:9606+AND+reviewed:yes PROX1]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0060323</td><td>head morphogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:WNT3+AND+taxonomy:9606+AND+reviewed:yes WNT3], [http://www.uniprot.org/uniprot/?query=gene:STRA6+AND+taxonomy:9606+AND+reviewed:yes STRA6], [http://www.uniprot.org/uniprot/?query=gene:FLVCR1+AND+taxonomy:9606+AND+reviewed:yes FLVCR1], [http://www.uniprot.org/uniprot/?query=gene:IHH+AND+taxonomy:9606+AND+reviewed:yes IHH], [http://www.uniprot.org/uniprot/?query=gene:SSBP3+AND+taxonomy:9606+AND+reviewed:yes SSBP3]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0060463</td><td>lung lobe morphogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:LIF+AND+taxonomy:9606+AND+reviewed:yes LIF], [http://www.uniprot.org/uniprot/?query=gene:FOXF1+AND+taxonomy:9606+AND+reviewed:yes FOXF1], [http://www.uniprot.org/uniprot/?query=gene:IGF1+AND+taxonomy:9606+AND+reviewed:yes IGF1], [http://www.uniprot.org/uniprot/?query=gene:SHH+AND+taxonomy:9606+AND+reviewed:yes SHH], [http://www.uniprot.org/uniprot/?query=gene:TGFBR2+AND+taxonomy:9606+AND+reviewed:yes TGFBR2], [http://www.uniprot.org/uniprot/?query=gene:FGFR2+AND+taxonomy:9606+AND+reviewed:yes FGFR2]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0061072</td><td>iris morphogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:WNT2+AND+taxonomy:9606+AND+reviewed:yes WNT2], [http://www.uniprot.org/uniprot/?query=gene:PITX2+AND+taxonomy:9606+AND+reviewed:yes PITX2], [http://www.uniprot.org/uniprot/?query=gene:HIPK2+AND+taxonomy:9606+AND+reviewed:yes HIPK2], [http://www.uniprot.org/uniprot/?query=gene:HIPK1+AND+taxonomy:9606+AND+reviewed:yes HIPK1], [http://www.uniprot.org/uniprot/?query=gene:PAX6+AND+taxonomy:9606+AND+reviewed:yes PAX6], [http://www.uniprot.org/uniprot/?query=gene:WNT2B+AND+taxonomy:9606+AND+reviewed:yes WNT2B], [http://www.uniprot.org/uniprot/?query=gene:WNT9A+AND+taxonomy:9606+AND+reviewed:yes WNT9A]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0061146</td><td>Peyer's patch morphogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:ARTN+AND+taxonomy:9606+AND+reviewed:yes ARTN], [http://www.uniprot.org/uniprot/?query=gene:RET+AND+taxonomy:9606+AND+reviewed:yes RET], [http://www.uniprot.org/uniprot/?query=gene:FOXL1+AND+taxonomy:9606+AND+reviewed:yes FOXL1]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0061299</td><td>retina vasculature morphogenesis in camera-type eye</td><td>[http://www.uniprot.org/uniprot/?query=gene:SLC4A7+AND+taxonomy:9606+AND+reviewed:yes SLC4A7], [http://www.uniprot.org/uniprot/?query=gene:CLIC4+AND+taxonomy:9606+AND+reviewed:yes CLIC4], [http://www.uniprot.org/uniprot/?query=gene:FZD4+AND+taxonomy:9606+AND+reviewed:yes FZD4], [http://www.uniprot.org/uniprot/?query=gene:RHOJ+AND+taxonomy:9606+AND+reviewed:yes RHOJ], [http://www.uniprot.org/uniprot/?query=gene:ARHGEF15+AND+taxonomy:9606+AND+reviewed:yes ARHGEF15], [http://www.uniprot.org/uniprot/?query=gene:NDP+AND+taxonomy:9606+AND+reviewed:yes NDP]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0061384</td><td>heart trabecula morphogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:NOTCH1+AND+taxonomy:9606+AND+reviewed:yes NOTCH1], [http://www.uniprot.org/uniprot/?query=gene:NACA+AND+taxonomy:9606+AND+reviewed:yes NACA], [http://www.uniprot.org/uniprot/?query=gene:S1PR1+AND+taxonomy:9606+AND+reviewed:yes S1PR1]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0072049</td><td>comma-shaped body morphogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:LHX1+AND+taxonomy:9606+AND+reviewed:yes LHX1], [http://www.uniprot.org/uniprot/?query=gene:HES1+AND+taxonomy:9606+AND+reviewed:yes HES1], [http://www.uniprot.org/uniprot/?query=gene:HES5+AND+taxonomy:9606+AND+reviewed:yes HES5]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0072278</td><td>metanephric comma-shaped body morphogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:PDGFRB+AND+taxonomy:9606+AND+reviewed:yes PDGFRB], [http://www.uniprot.org/uniprot/?query=gene:LHX1+AND+taxonomy:9606+AND+reviewed:yes LHX1], [http://www.uniprot.org/uniprot/?query=gene:PAX8+AND+taxonomy:9606+AND+reviewed:yes PAX8]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0072050</td><td>S-shaped body morphogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:LHX1+AND+taxonomy:9606+AND+reviewed:yes LHX1], [http://www.uniprot.org/uniprot/?query=gene:HES1+AND+taxonomy:9606+AND+reviewed:yes HES1], [http://www.uniprot.org/uniprot/?query=gene:HES5+AND+taxonomy:9606+AND+reviewed:yes HES5]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0072284</td><td>metanephric S-shaped body morphogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:PKD2+AND+taxonomy:9606+AND+reviewed:yes PKD2], [http://www.uniprot.org/uniprot/?query=gene:PDGFRB+AND+taxonomy:9606+AND+reviewed:yes PDGFRB], [http://www.uniprot.org/uniprot/?query=gene:LHX1+AND+taxonomy:9606+AND+reviewed:yes LHX1], [http://www.uniprot.org/uniprot/?query=gene:PAX8+AND+taxonomy:9606+AND+reviewed:yes PAX8], [http://www.uniprot.org/uniprot/?query=gene:WT1+AND+taxonomy:9606+AND+reviewed:yes WT1]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0072102</td><td>glomerulus morphogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:MEF2C+AND+taxonomy:9606+AND+reviewed:yes MEF2C], [http://www.uniprot.org/uniprot/?query=gene:MEF2A+AND+taxonomy:9606+AND+reviewed:yes MEF2A], [http://www.uniprot.org/uniprot/?query=gene:MTSS1+AND+taxonomy:9606+AND+reviewed:yes MTSS1]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0072178</td><td>nephric duct morphogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:LHX1+AND+taxonomy:9606+AND+reviewed:yes LHX1], [http://www.uniprot.org/uniprot/?query=gene:GATA3+AND+taxonomy:9606+AND+reviewed:yes GATA3]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0097094</td><td>craniofacial suture morphogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:RAB23+AND+taxonomy:9606+AND+reviewed:yes RAB23], [http://www.uniprot.org/uniprot/?query=gene:FREM1+AND+taxonomy:9606+AND+reviewed:yes FREM1]</td></tr>
 
<tr class="s2"><td>2</td><td>GO:0009838</td><td>abscission</td><td>[http://www.uniprot.org/uniprot/?query=gene:SPG20+AND+taxonomy:9606+AND+reviewed:yes SPG20], [http://www.uniprot.org/uniprot/?query=gene:IST1+AND+taxonomy:9606+AND+reviewed:yes IST1]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0060841</td><td>venous blood vessel development</td><td>[http://www.uniprot.org/uniprot/?query=gene:FOXF1+AND+taxonomy:9606+AND+reviewed:yes FOXF1], [http://www.uniprot.org/uniprot/?query=gene:ACVRL1+AND+taxonomy:9606+AND+reviewed:yes ACVRL1], [http://www.uniprot.org/uniprot/?query=gene:ACVR2B+AND+taxonomy:9606+AND+reviewed:yes ACVR2B], [http://www.uniprot.org/uniprot/?query=gene:BMPR2+AND+taxonomy:9606+AND+reviewed:yes BMPR2]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0060976</td><td>coronary vasculature development</td><td>[http://www.uniprot.org/uniprot/?query=gene:GPC3+AND+taxonomy:9606+AND+reviewed:yes GPC3], [http://www.uniprot.org/uniprot/?query=gene:VEGFB+AND+taxonomy:9606+AND+reviewed:yes VEGFB]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0072012</td><td>glomerulus vasculature development</td><td>[http://www.uniprot.org/uniprot/?query=gene:HES1+AND+taxonomy:9606+AND+reviewed:yes HES1], [http://www.uniprot.org/uniprot/?query=gene:ANGPT2+AND+taxonomy:9606+AND+reviewed:yes ANGPT2], [http://www.uniprot.org/uniprot/?query=gene:ANGPT1+AND+taxonomy:9606+AND+reviewed:yes ANGPT1]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0001705</td><td>ectoderm formation</td><td>[http://www.uniprot.org/uniprot/?query=gene:LHX1+AND+taxonomy:9606+AND+reviewed:yes LHX1], [http://www.uniprot.org/uniprot/?query=gene:FOXA2+AND+taxonomy:9606+AND+reviewed:yes FOXA2]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0003157</td><td>endocardium development</td><td>[http://www.uniprot.org/uniprot/?query=gene:NOTCH1+AND+taxonomy:9606+AND+reviewed:yes NOTCH1], [http://www.uniprot.org/uniprot/?query=gene:STK3+AND+taxonomy:9606+AND+reviewed:yes STK3], [http://www.uniprot.org/uniprot/?query=gene:STK4+AND+taxonomy:9606+AND+reviewed:yes STK4]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0003161</td><td>cardiac conduction system development</td><td>[http://www.uniprot.org/uniprot/?query=gene:NRG1+AND+taxonomy:9606+AND+reviewed:yes NRG1], [http://www.uniprot.org/uniprot/?query=gene:CDC42+AND+taxonomy:9606+AND+reviewed:yes CDC42], [http://www.uniprot.org/uniprot/?query=gene:GJA5+AND+taxonomy:9606+AND+reviewed:yes GJA5], [http://www.uniprot.org/uniprot/?query=gene:NKX2-5+AND+taxonomy:9606+AND+reviewed:yes NKX2-5]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0003162</td><td>atrioventricular node development</td><td>[http://www.uniprot.org/uniprot/?query=gene:NOTCH1+AND+taxonomy:9606+AND+reviewed:yes NOTCH1], [http://www.uniprot.org/uniprot/?query=gene:MAML1+AND+taxonomy:9606+AND+reviewed:yes MAML1]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0003166</td><td>bundle of His development</td><td>[http://www.uniprot.org/uniprot/?query=gene:NKX2-5+AND+taxonomy:9606+AND+reviewed:yes NKX2-5], [http://www.uniprot.org/uniprot/?query=gene:TBX5+AND+taxonomy:9606+AND+reviewed:yes TBX5], [http://www.uniprot.org/uniprot/?query=gene:ID2+AND+taxonomy:9606+AND+reviewed:yes ID2]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0003170</td><td>heart valve development</td><td>[http://www.uniprot.org/uniprot/?query=gene:SHOX2+AND+taxonomy:9606+AND+reviewed:yes SHOX2], [http://www.uniprot.org/uniprot/?query=gene:SOX9+AND+taxonomy:9606+AND+reviewed:yes SOX9]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0003171</td><td>atrioventricular valve development</td><td>[http://www.uniprot.org/uniprot/?query=gene:PITX2+AND+taxonomy:9606+AND+reviewed:yes PITX2], [http://www.uniprot.org/uniprot/?query=gene:HEY2+AND+taxonomy:9606+AND+reviewed:yes HEY2]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0003188</td><td>heart valve formation</td><td>[http://www.uniprot.org/uniprot/?query=gene:SOX9+AND+taxonomy:9606+AND+reviewed:yes SOX9], [http://www.uniprot.org/uniprot/?query=gene:SCXA+AND+taxonomy:9606+AND+reviewed:yes SCXA]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0003190</td><td>atrioventricular valve formation</td><td>[http://www.uniprot.org/uniprot/?query=gene:SMAD4+AND+taxonomy:9606+AND+reviewed:yes SMAD4], [http://www.uniprot.org/uniprot/?query=gene:HEY1+AND+taxonomy:9606+AND+reviewed:yes HEY1]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0003192</td><td>mitral valve formation</td><td>[http://www.uniprot.org/uniprot/?query=gene:NOTCH1+AND+taxonomy:9606+AND+reviewed:yes NOTCH1], [http://www.uniprot.org/uniprot/?query=gene:ZFPM1+AND+taxonomy:9606+AND+reviewed:yes ZFPM1]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0003193</td><td>pulmonary valve formation</td><td>[http://www.uniprot.org/uniprot/?query=gene:TBX20+AND+taxonomy:9606+AND+reviewed:yes TBX20], [http://www.uniprot.org/uniprot/?query=gene:GJA5+AND+taxonomy:9606+AND+reviewed:yes GJA5]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0003195</td><td>tricuspid valve formation</td><td>[http://www.uniprot.org/uniprot/?query=gene:ZFPM1+AND+taxonomy:9606+AND+reviewed:yes ZFPM1], [http://www.uniprot.org/uniprot/?query=gene:HEY2+AND+taxonomy:9606+AND+reviewed:yes HEY2]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0003231</td><td>cardiac ventricle development</td><td>[http://www.uniprot.org/uniprot/?query=gene:NACA+AND+taxonomy:9606+AND+reviewed:yes NACA], [http://www.uniprot.org/uniprot/?query=gene:SCN5A+AND+taxonomy:9606+AND+reviewed:yes SCN5A], [http://www.uniprot.org/uniprot/?query=gene:MYOCD+AND+taxonomy:9606+AND+reviewed:yes MYOCD]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0003207</td><td>cardiac chamber formation</td><td>[http://www.uniprot.org/uniprot/?query=gene:NOTCH1+AND+taxonomy:9606+AND+reviewed:yes NOTCH1], [http://www.uniprot.org/uniprot/?query=gene:TBX20+AND+taxonomy:9606+AND+reviewed:yes TBX20]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0003272</td><td>endocardial cushion formation</td><td>[http://www.uniprot.org/uniprot/?query=gene:TBX20+AND+taxonomy:9606+AND+reviewed:yes TBX20], [http://www.uniprot.org/uniprot/?query=gene:BMPR1A+AND+taxonomy:9606+AND+reviewed:yes BMPR1A]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0003283</td><td>atrial septum development</td><td>[http://www.uniprot.org/uniprot/?query=gene:DAND5+AND+taxonomy:9606+AND+reviewed:yes DAND5], [http://www.uniprot.org/uniprot/?query=gene:ANK2+AND+taxonomy:9606+AND+reviewed:yes ANK2], [http://www.uniprot.org/uniprot/?query=gene:GJA5+AND+taxonomy:9606+AND+reviewed:yes GJA5], [http://www.uniprot.org/uniprot/?query=gene:NPHP3+AND+taxonomy:9606+AND+reviewed:yes NPHP3], [http://www.uniprot.org/uniprot/?query=gene:TBX5+AND+taxonomy:9606+AND+reviewed:yes TBX5]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0003408</td><td>optic cup formation involved in camera-type eye development</td><td>[http://www.uniprot.org/uniprot/?query=gene:WNT5A+AND+taxonomy:9606+AND+reviewed:yes WNT5A], [http://www.uniprot.org/uniprot/?query=gene:WNT16+AND+taxonomy:9606+AND+reviewed:yes WNT16]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0007423</td><td>sensory organ development</td><td>[http://www.uniprot.org/uniprot/?query=gene:MAFB+AND+taxonomy:9606+AND+reviewed:yes MAFB], [http://www.uniprot.org/uniprot/?query=gene:GRIN2B+AND+taxonomy:9606+AND+reviewed:yes GRIN2B], [http://www.uniprot.org/uniprot/?query=gene:SOX3+AND+taxonomy:9606+AND+reviewed:yes SOX3]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0010260</td><td>organ senescence</td><td>[http://www.uniprot.org/uniprot/?query=gene:PDX1+AND+taxonomy:9606+AND+reviewed:yes PDX1], [http://www.uniprot.org/uniprot/?query=gene:CTGF+AND+taxonomy:9606+AND+reviewed:yes CTGF]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0009792</td><td>embryo development ending in birth or egg hatching</td><td>[http://www.uniprot.org/uniprot/?query=gene:FXN+AND+taxonomy:9606+AND+reviewed:yes FXN], [http://www.uniprot.org/uniprot/?query=gene:SEBOX+AND+taxonomy:9606+AND+reviewed:yes SEBOX], [http://www.uniprot.org/uniprot/?query=gene:EVX1+AND+taxonomy:9606+AND+reviewed:yes EVX1], [http://www.uniprot.org/uniprot/?query=gene:CYP1A1+AND+taxonomy:9606+AND+reviewed:yes CYP1A1], [http://www.uniprot.org/uniprot/?query=gene:TP53BP2+AND+taxonomy:9606+AND+reviewed:yes TP53BP2]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0014028</td><td>notochord formation</td><td>[http://www.uniprot.org/uniprot/?query=gene:EPHA2+AND+taxonomy:9606+AND+reviewed:yes EPHA2], [http://www.uniprot.org/uniprot/?query=gene:T+AND+taxonomy:9606+AND+reviewed:yes T], [http://www.uniprot.org/uniprot/?query=gene:EFNA1+AND+taxonomy:9606+AND+reviewed:yes EFNA1]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0021508</td><td>floor plate formation</td><td>[http://www.uniprot.org/uniprot/?query=gene:SMO+AND+taxonomy:9606+AND+reviewed:yes SMO], [http://www.uniprot.org/uniprot/?query=gene:FOXH1+AND+taxonomy:9606+AND+reviewed:yes FOXH1], [http://www.uniprot.org/uniprot/?query=gene:GLI2+AND+taxonomy:9606+AND+reviewed:yes GLI2]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0021536</td><td>diencephalon development</td><td>[http://www.uniprot.org/uniprot/?query=gene:WNT1+AND+taxonomy:9606+AND+reviewed:yes WNT1], [http://www.uniprot.org/uniprot/?query=gene:SEMA5A+AND+taxonomy:9606+AND+reviewed:yes SEMA5A], [http://www.uniprot.org/uniprot/?query=gene:SIX3+AND+taxonomy:9606+AND+reviewed:yes SIX3]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0021592</td><td>fourth ventricle development</td><td>[http://www.uniprot.org/uniprot/?query=gene:KDM2B+AND+taxonomy:9606+AND+reviewed:yes KDM2B], [http://www.uniprot.org/uniprot/?query=gene:MYH10+AND+taxonomy:9606+AND+reviewed:yes MYH10]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0021623</td><td>oculomotor nerve formation</td><td>[http://www.uniprot.org/uniprot/?query=gene:PHOX2A+AND+taxonomy:9606+AND+reviewed:yes PHOX2A], [http://www.uniprot.org/uniprot/?query=gene:TFAP2A+AND+taxonomy:9606+AND+reviewed:yes TFAP2A]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0021681</td><td>cerebellar granular layer development</td><td>[http://www.uniprot.org/uniprot/?query=gene:FAIM2+AND+taxonomy:9606+AND+reviewed:yes FAIM2], [http://www.uniprot.org/uniprot/?query=gene:MDK+AND+taxonomy:9606+AND+reviewed:yes MDK]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0021695</td><td>cerebellar cortex development</td><td>[http://www.uniprot.org/uniprot/?query=gene:OGDH+AND+taxonomy:9606+AND+reviewed:yes OGDH], [http://www.uniprot.org/uniprot/?query=gene:NEUROD2+AND+taxonomy:9606+AND+reviewed:yes NEUROD2], [http://www.uniprot.org/uniprot/?query=gene:EZH2+AND+taxonomy:9606+AND+reviewed:yes EZH2], [http://www.uniprot.org/uniprot/?query=gene:DIXDC1+AND+taxonomy:9606+AND+reviewed:yes DIXDC1], [http://www.uniprot.org/uniprot/?query=gene:AGTR2+AND+taxonomy:9606+AND+reviewed:yes AGTR2]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0021759</td><td>globus pallidus development</td><td>[http://www.uniprot.org/uniprot/?query=gene:NKX2-1+AND+taxonomy:9606+AND+reviewed:yes NKX2-1], [http://www.uniprot.org/uniprot/?query=gene:ARX+AND+taxonomy:9606+AND+reviewed:yes ARX]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0021984</td><td>adenohypophysis development</td><td>[http://www.uniprot.org/uniprot/?query=gene:DRD2+AND+taxonomy:9606+AND+reviewed:yes DRD2], [http://www.uniprot.org/uniprot/?query=gene:SMO+AND+taxonomy:9606+AND+reviewed:yes SMO], [http://www.uniprot.org/uniprot/?query=gene:GHRH+AND+taxonomy:9606+AND+reviewed:yes GHRH], [http://www.uniprot.org/uniprot/?query=gene:GSX1+AND+taxonomy:9606+AND+reviewed:yes GSX1], [http://www.uniprot.org/uniprot/?query=gene:HES1+AND+taxonomy:9606+AND+reviewed:yes HES1], [http://www.uniprot.org/uniprot/?query=gene:SLC6A3+AND+taxonomy:9606+AND+reviewed:yes SLC6A3], [http://www.uniprot.org/uniprot/?query=gene:SOX2+AND+taxonomy:9606+AND+reviewed:yes SOX2]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0021985</td><td>neurohypophysis development</td><td>[http://www.uniprot.org/uniprot/?query=gene:OTP+AND+taxonomy:9606+AND+reviewed:yes OTP], [http://www.uniprot.org/uniprot/?query=gene:POU3F2+AND+taxonomy:9606+AND+reviewed:yes POU3F2]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0021986</td><td>habenula development</td><td>[http://www.uniprot.org/uniprot/?query=gene:POU4F1+AND+taxonomy:9606+AND+reviewed:yes POU4F1], [http://www.uniprot.org/uniprot/?query=gene:NR4A2+AND+taxonomy:9606+AND+reviewed:yes NR4A2]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0022037</td><td>metencephalon development</td><td>[http://www.uniprot.org/uniprot/?query=gene:OTX1+AND+taxonomy:9606+AND+reviewed:yes OTX1], [http://www.uniprot.org/uniprot/?query=gene:OTX2+AND+taxonomy:9606+AND+reviewed:yes OTX2], [http://www.uniprot.org/uniprot/?query=gene:KAT2A+AND+taxonomy:9606+AND+reviewed:yes KAT2A]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0030323</td><td>respiratory tube development</td><td>[http://www.uniprot.org/uniprot/?query=gene:PCSK5+AND+taxonomy:9606+AND+reviewed:yes PCSK5], [http://www.uniprot.org/uniprot/?query=gene:FOXF1+AND+taxonomy:9606+AND+reviewed:yes FOXF1], [http://www.uniprot.org/uniprot/?query=gene:TRAF4+AND+taxonomy:9606+AND+reviewed:yes TRAF4], [http://www.uniprot.org/uniprot/?query=gene:HECA+AND+taxonomy:9606+AND+reviewed:yes HECA]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0030916</td><td>otic vesicle formation</td><td>[http://www.uniprot.org/uniprot/?query=gene:TCAP+AND+taxonomy:9606+AND+reviewed:yes TCAP], [http://www.uniprot.org/uniprot/?query=gene:HESX1+AND+taxonomy:9606+AND+reviewed:yes HESX1], [http://www.uniprot.org/uniprot/?query=gene:FGF10+AND+taxonomy:9606+AND+reviewed:yes FGF10], [http://www.uniprot.org/uniprot/?query=gene:FGF8+AND+taxonomy:9606+AND+reviewed:yes FGF8], [http://www.uniprot.org/uniprot/?query=gene:FGF3+AND+taxonomy:9606+AND+reviewed:yes FGF3], [http://www.uniprot.org/uniprot/?query=gene:FGFR2+AND+taxonomy:9606+AND+reviewed:yes FGFR2], [http://www.uniprot.org/uniprot/?query=gene:CEP290+AND+taxonomy:9606+AND+reviewed:yes CEP290], [http://www.uniprot.org/uniprot/?query=gene:SOX9+AND+taxonomy:9606+AND+reviewed:yes SOX9]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0030917</td><td>midbrain-hindbrain boundary development</td><td>[http://www.uniprot.org/uniprot/?query=gene:LRP6+AND+taxonomy:9606+AND+reviewed:yes LRP6], [http://www.uniprot.org/uniprot/?query=gene:EN1+AND+taxonomy:9606+AND+reviewed:yes EN1], [http://www.uniprot.org/uniprot/?query=gene:FGF8+AND+taxonomy:9606+AND+reviewed:yes FGF8]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0031017</td><td>exocrine pancreas development</td><td>[http://www.uniprot.org/uniprot/?query=gene:PDX1+AND+taxonomy:9606+AND+reviewed:yes PDX1], [http://www.uniprot.org/uniprot/?query=gene:XBP1+AND+taxonomy:9606+AND+reviewed:yes XBP1], [http://www.uniprot.org/uniprot/?query=gene:IGF1+AND+taxonomy:9606+AND+reviewed:yes IGF1], [http://www.uniprot.org/uniprot/?query=gene:PTF1A+AND+taxonomy:9606+AND+reviewed:yes PTF1A], [http://www.uniprot.org/uniprot/?query=gene:INSR+AND+taxonomy:9606+AND+reviewed:yes INSR], [http://www.uniprot.org/uniprot/?query=gene:SMO+AND+taxonomy:9606+AND+reviewed:yes SMO], [http://www.uniprot.org/uniprot/?query=gene:CELA1+AND+taxonomy:9606+AND+reviewed:yes CELA1], [http://www.uniprot.org/uniprot/?query=gene:IGF1R+AND+taxonomy:9606+AND+reviewed:yes IGF1R]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0072224</td><td>metanephric glomerulus development</td><td>[http://www.uniprot.org/uniprot/?query=gene:LHX1+AND+taxonomy:9606+AND+reviewed:yes LHX1], [http://www.uniprot.org/uniprot/?query=gene:LGR4+AND+taxonomy:9606+AND+reviewed:yes LGR4]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0033504</td><td>floor plate development</td><td>[http://www.uniprot.org/uniprot/?query=gene:FOXB1+AND+taxonomy:9606+AND+reviewed:yes FOXB1], [http://www.uniprot.org/uniprot/?query=gene:COBL+AND+taxonomy:9606+AND+reviewed:yes COBL], [http://www.uniprot.org/uniprot/?query=gene:CHRD+AND+taxonomy:9606+AND+reviewed:yes CHRD], [http://www.uniprot.org/uniprot/?query=gene:STIL+AND+taxonomy:9606+AND+reviewed:yes STIL]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0035502</td><td>metanephric part of ureteric bud development</td><td>[http://www.uniprot.org/uniprot/?query=gene:CALB1+AND+taxonomy:9606+AND+reviewed:yes CALB1], [http://www.uniprot.org/uniprot/?query=gene:PKD2+AND+taxonomy:9606+AND+reviewed:yes PKD2], [http://www.uniprot.org/uniprot/?query=gene:LHX1+AND+taxonomy:9606+AND+reviewed:yes LHX1], [http://www.uniprot.org/uniprot/?query=gene:FOXJ1+AND+taxonomy:9606+AND+reviewed:yes FOXJ1]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0035802</td><td>adrenal cortex formation</td><td>[http://www.uniprot.org/uniprot/?query=gene:CITED2+AND+taxonomy:9606+AND+reviewed:yes CITED2], [http://www.uniprot.org/uniprot/?query=gene:WT1+AND+taxonomy:9606+AND+reviewed:yes WT1]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0035878</td><td>nail development</td><td>[http://www.uniprot.org/uniprot/?query=gene:FOXN1+AND+taxonomy:9606+AND+reviewed:yes FOXN1], [http://www.uniprot.org/uniprot/?query=gene:KRT84+AND+taxonomy:9606+AND+reviewed:yes KRT84], [http://www.uniprot.org/uniprot/?query=gene:HOXC13+AND+taxonomy:9606+AND+reviewed:yes HOXC13]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0035993</td><td>deltoid tuberosity development</td><td>[http://www.uniprot.org/uniprot/?query=gene:PITX2+AND+taxonomy:9606+AND+reviewed:yes PITX2], [http://www.uniprot.org/uniprot/?query=gene:BMP4+AND+taxonomy:9606+AND+reviewed:yes BMP4], [http://www.uniprot.org/uniprot/?query=gene:SCXA+AND+taxonomy:9606+AND+reviewed:yes SCXA]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0042335</td><td>cuticle development</td><td>[http://www.uniprot.org/uniprot/?query=gene:DUOX1+AND+taxonomy:9606+AND+reviewed:yes DUOX1], [http://www.uniprot.org/uniprot/?query=gene:DUOX2+AND+taxonomy:9606+AND+reviewed:yes DUOX2]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0048069</td><td>eye pigmentation</td><td>[http://www.uniprot.org/uniprot/?query=gene:LEF1+AND+taxonomy:9606+AND+reviewed:yes LEF1], [http://www.uniprot.org/uniprot/?query=gene:HPS1+AND+taxonomy:9606+AND+reviewed:yes HPS1]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0048382</td><td>mesendoderm development</td><td>[http://www.uniprot.org/uniprot/?query=gene:NODAL+AND+taxonomy:9606+AND+reviewed:yes NODAL], [http://www.uniprot.org/uniprot/?query=gene:BMPR1A+AND+taxonomy:9606+AND+reviewed:yes BMPR1A]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0021589</td><td>cerebellum structural organization</td><td>[http://www.uniprot.org/uniprot/?query=gene:DAB1+AND+taxonomy:9606+AND+reviewed:yes DAB1], [http://www.uniprot.org/uniprot/?query=gene:HSPA5+AND+taxonomy:9606+AND+reviewed:yes HSPA5]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0001832</td><td>blastocyst growth</td><td>[http://www.uniprot.org/uniprot/?query=gene:ZNF830+AND+taxonomy:9606+AND+reviewed:yes ZNF830], [http://www.uniprot.org/uniprot/?query=gene:UBTF+AND+taxonomy:9606+AND+reviewed:yes UBTF], [http://www.uniprot.org/uniprot/?query=gene:NBN+AND+taxonomy:9606+AND+reviewed:yes NBN], [http://www.uniprot.org/uniprot/?query=gene:SMARCA4+AND+taxonomy:9606+AND+reviewed:yes SMARCA4]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0048630</td><td>skeletal muscle tissue growth</td><td>[http://www.uniprot.org/uniprot/?query=gene:CHRNA1+AND+taxonomy:9606+AND+reviewed:yes CHRNA1], [http://www.uniprot.org/uniprot/?query=gene:IGFBP5+AND+taxonomy:9606+AND+reviewed:yes IGFBP5], [http://www.uniprot.org/uniprot/?query=gene:CHRND+AND+taxonomy:9606+AND+reviewed:yes CHRND]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0060440</td><td>trachea formation</td><td>[http://www.uniprot.org/uniprot/?query=gene:BMP4+AND+taxonomy:9606+AND+reviewed:yes BMP4], [http://www.uniprot.org/uniprot/?query=gene:TGFBR2+AND+taxonomy:9606+AND+reviewed:yes TGFBR2], [http://www.uniprot.org/uniprot/?query=gene:CTNNB1+AND+taxonomy:9606+AND+reviewed:yes CTNNB1]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0060914</td><td>heart formation</td><td>[http://www.uniprot.org/uniprot/?query=gene:SOX17+AND+taxonomy:9606+AND+reviewed:yes SOX17], [http://www.uniprot.org/uniprot/?query=gene:BMPR1A+AND+taxonomy:9606+AND+reviewed:yes BMPR1A]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0048840</td><td>otolith development</td><td>[http://www.uniprot.org/uniprot/?query=gene:NOX3+AND+taxonomy:9606+AND+reviewed:yes NOX3], [http://www.uniprot.org/uniprot/?query=gene:ATG5+AND+taxonomy:9606+AND+reviewed:yes ATG5]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0021740</td><td>principal sensory nucleus of trigeminal nerve development</td><td>[http://www.uniprot.org/uniprot/?query=gene:KIRREL3+AND+taxonomy:9606+AND+reviewed:yes KIRREL3], [http://www.uniprot.org/uniprot/?query=gene:NFIB+AND+taxonomy:9606+AND+reviewed:yes NFIB]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0021747</td><td>cochlear nucleus development</td><td>[http://www.uniprot.org/uniprot/?query=gene:BCL2+AND+taxonomy:9606+AND+reviewed:yes BCL2], [http://www.uniprot.org/uniprot/?query=gene:SLC4A7+AND+taxonomy:9606+AND+reviewed:yes SLC4A7]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0021750</td><td>vestibular nucleus development</td><td>[http://www.uniprot.org/uniprot/?query=gene:ASCL1+AND+taxonomy:9606+AND+reviewed:yes ASCL1], [http://www.uniprot.org/uniprot/?query=gene:CACNA1A+AND+taxonomy:9606+AND+reviewed:yes CACNA1A]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0021754</td><td>facial nucleus development</td><td>[http://www.uniprot.org/uniprot/?query=gene:HOXA1+AND+taxonomy:9606+AND+reviewed:yes HOXA1], [http://www.uniprot.org/uniprot/?query=gene:FZD3+AND+taxonomy:9606+AND+reviewed:yes FZD3], [http://www.uniprot.org/uniprot/?query=gene:HOXB1+AND+taxonomy:9606+AND+reviewed:yes HOXB1]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0048859</td><td>formation of anatomical boundary</td><td>[http://www.uniprot.org/uniprot/?query=gene:NODAL+AND+taxonomy:9606+AND+reviewed:yes NODAL], [http://www.uniprot.org/uniprot/?query=gene:SMAD4+AND+taxonomy:9606+AND+reviewed:yes SMAD4], [http://www.uniprot.org/uniprot/?query=gene:SHH+AND+taxonomy:9606+AND+reviewed:yes SHH], [http://www.uniprot.org/uniprot/?query=gene:GDF3+AND+taxonomy:9606+AND+reviewed:yes GDF3]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0060033</td><td>anatomical structure regression</td><td>[http://www.uniprot.org/uniprot/?query=gene:WNT7B+AND+taxonomy:9606+AND+reviewed:yes WNT7B], [http://www.uniprot.org/uniprot/?query=gene:CD248+AND+taxonomy:9606+AND+reviewed:yes CD248], [http://www.uniprot.org/uniprot/?query=gene:LEF1+AND+taxonomy:9606+AND+reviewed:yes LEF1], [http://www.uniprot.org/uniprot/?query=gene:SPI1+AND+taxonomy:9606+AND+reviewed:yes SPI1]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0060032</td><td>notochord regression</td><td>[http://www.uniprot.org/uniprot/?query=gene:GLI2+AND+taxonomy:9606+AND+reviewed:yes GLI2], [http://www.uniprot.org/uniprot/?query=gene:GLI1+AND+taxonomy:9606+AND+reviewed:yes GLI1]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0060061</td><td>Spemann organizer formation</td><td>[http://www.uniprot.org/uniprot/?query=gene:WNT1+AND+taxonomy:9606+AND+reviewed:yes WNT1], [http://www.uniprot.org/uniprot/?query=gene:FZD5+AND+taxonomy:9606+AND+reviewed:yes FZD5]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0060157</td><td>urinary bladder development</td><td>[http://www.uniprot.org/uniprot/?query=gene:TP63+AND+taxonomy:9606+AND+reviewed:yes TP63], [http://www.uniprot.org/uniprot/?query=gene:WNT5A+AND+taxonomy:9606+AND+reviewed:yes WNT5A], [http://www.uniprot.org/uniprot/?query=gene:RBP4+AND+taxonomy:9606+AND+reviewed:yes RBP4], [http://www.uniprot.org/uniprot/?query=gene:UPK3A+AND+taxonomy:9606+AND+reviewed:yes UPK3A], [http://www.uniprot.org/uniprot/?query=gene:MYOCD+AND+taxonomy:9606+AND+reviewed:yes MYOCD]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0060166</td><td>olfactory pit development</td><td>[http://www.uniprot.org/uniprot/?query=gene:DLX5+AND+taxonomy:9606+AND+reviewed:yes DLX5], [http://www.uniprot.org/uniprot/?query=gene:ASCL1+AND+taxonomy:9606+AND+reviewed:yes ASCL1], [http://www.uniprot.org/uniprot/?query=gene:ALDH1A3+AND+taxonomy:9606+AND+reviewed:yes ALDH1A3]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0060214</td><td>endocardium formation</td><td>[http://www.uniprot.org/uniprot/?query=gene:OVOL2+AND+taxonomy:9606+AND+reviewed:yes OVOL2], [http://www.uniprot.org/uniprot/?query=gene:SOX18+AND+taxonomy:9606+AND+reviewed:yes SOX18], [http://www.uniprot.org/uniprot/?query=gene:SOX17+AND+taxonomy:9606+AND+reviewed:yes SOX17], [http://www.uniprot.org/uniprot/?query=gene:PROX1+AND+taxonomy:9606+AND+reviewed:yes PROX1]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0060435</td><td>bronchiole development</td><td>[http://www.uniprot.org/uniprot/?query=gene:HOXA5+AND+taxonomy:9606+AND+reviewed:yes HOXA5], [http://www.uniprot.org/uniprot/?query=gene:TCF21+AND+taxonomy:9606+AND+reviewed:yes TCF21]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0060438</td><td>trachea development</td><td>[http://www.uniprot.org/uniprot/?query=gene:FOXF1+AND+taxonomy:9606+AND+reviewed:yes FOXF1], [http://www.uniprot.org/uniprot/?query=gene:BMP4+AND+taxonomy:9606+AND+reviewed:yes BMP4]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0060661</td><td>submandibular salivary gland formation</td><td>[http://www.uniprot.org/uniprot/?query=gene:FGF10+AND+taxonomy:9606+AND+reviewed:yes FGF10], [http://www.uniprot.org/uniprot/?query=gene:CDC42+AND+taxonomy:9606+AND+reviewed:yes CDC42]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0030910</td><td>olfactory placode formation</td><td>[http://www.uniprot.org/uniprot/?query=gene:AXIN1+AND+taxonomy:9606+AND+reviewed:yes AXIN1], [http://www.uniprot.org/uniprot/?query=gene:SOX2+AND+taxonomy:9606+AND+reviewed:yes SOX2], [http://www.uniprot.org/uniprot/?query=gene:POU2F1+AND+taxonomy:9606+AND+reviewed:yes POU2F1], [http://www.uniprot.org/uniprot/?query=gene:PROX1+AND+taxonomy:9606+AND+reviewed:yes PROX1]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0060596</td><td>mammary placode formation</td><td>[http://www.uniprot.org/uniprot/?query=gene:LRP6+AND+taxonomy:9606+AND+reviewed:yes LRP6], [http://www.uniprot.org/uniprot/?query=gene:TBX2+AND+taxonomy:9606+AND+reviewed:yes TBX2], [http://www.uniprot.org/uniprot/?query=gene:NRG3+AND+taxonomy:9606+AND+reviewed:yes NRG3], [http://www.uniprot.org/uniprot/?query=gene:TBX3+AND+taxonomy:9606+AND+reviewed:yes TBX3]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0060900</td><td>embryonic camera-type eye formation</td><td>[http://www.uniprot.org/uniprot/?query=gene:STRA6+AND+taxonomy:9606+AND+reviewed:yes STRA6], [http://www.uniprot.org/uniprot/?query=gene:TWIST1+AND+taxonomy:9606+AND+reviewed:yes TWIST1]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0060996</td><td>dendritic spine development</td><td>[http://www.uniprot.org/uniprot/?query=gene:EPHB2+AND+taxonomy:9606+AND+reviewed:yes EPHB2], [http://www.uniprot.org/uniprot/?query=gene:EPHB3+AND+taxonomy:9606+AND+reviewed:yes EPHB3], [http://www.uniprot.org/uniprot/?query=gene:EPHB1+AND+taxonomy:9606+AND+reviewed:yes EPHB1], [http://www.uniprot.org/uniprot/?query=gene:SRGAP2+AND+taxonomy:9606+AND+reviewed:yes SRGAP2], [http://www.uniprot.org/uniprot/?query=gene:ACSL4+AND+taxonomy:9606+AND+reviewed:yes ACSL4]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0061009</td><td>common bile duct development</td><td>[http://www.uniprot.org/uniprot/?query=gene:SOX17+AND+taxonomy:9606+AND+reviewed:yes SOX17], [http://www.uniprot.org/uniprot/?query=gene:HES1+AND+taxonomy:9606+AND+reviewed:yes HES1], [http://www.uniprot.org/uniprot/?query=gene:HHEX+AND+taxonomy:9606+AND+reviewed:yes HHEX]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0061010</td><td>gall bladder development</td><td>[http://www.uniprot.org/uniprot/?query=gene:NIPBL+AND+taxonomy:9606+AND+reviewed:yes NIPBL], [http://www.uniprot.org/uniprot/?query=gene:SOX17+AND+taxonomy:9606+AND+reviewed:yes SOX17], [http://www.uniprot.org/uniprot/?query=gene:HHEX+AND+taxonomy:9606+AND+reviewed:yes HHEX]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0061034</td><td>olfactory bulb mitral cell layer development</td><td>[http://www.uniprot.org/uniprot/?query=gene:SALL1+AND+taxonomy:9606+AND+reviewed:yes SALL1], [http://www.uniprot.org/uniprot/?query=gene:OGDH+AND+taxonomy:9606+AND+reviewed:yes OGDH]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0007525</td><td>somatic muscle development</td><td>[http://www.uniprot.org/uniprot/?query=gene:Q9NRT5+AND+taxonomy:9606+AND+reviewed:yes Q9NRT5], [http://www.uniprot.org/uniprot/?query=gene:HSPB2+AND+taxonomy:9606+AND+reviewed:yes HSPB2], [http://www.uniprot.org/uniprot/?query=gene:NKD1+AND+taxonomy:9606+AND+reviewed:yes NKD1], [http://www.uniprot.org/uniprot/?query=gene:NEB+AND+taxonomy:9606+AND+reviewed:yes NEB], [http://www.uniprot.org/uniprot/?query=gene:PPP2R3A+AND+taxonomy:9606+AND+reviewed:yes PPP2R3A]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0061379</td><td>inferior colliculus development</td><td>[http://www.uniprot.org/uniprot/?query=gene:TFAP2D+AND+taxonomy:9606+AND+reviewed:yes TFAP2D], [http://www.uniprot.org/uniprot/?query=gene:FOXB1+AND+taxonomy:9606+AND+reviewed:yes FOXB1]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0072210</td><td>metanephric nephron development</td><td>[http://www.uniprot.org/uniprot/?query=gene:TFAP2A+AND+taxonomy:9606+AND+reviewed:yes TFAP2A], [http://www.uniprot.org/uniprot/?query=gene:TFAP2B+AND+taxonomy:9606+AND+reviewed:yes TFAP2B]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0072218</td><td>metanephric ascending thin limb development</td><td>[http://www.uniprot.org/uniprot/?query=gene:PKD2+AND+taxonomy:9606+AND+reviewed:yes PKD2], [http://www.uniprot.org/uniprot/?query=gene:PKD1+AND+taxonomy:9606+AND+reviewed:yes PKD1], [http://www.uniprot.org/uniprot/?query=gene:POU3F3+AND+taxonomy:9606+AND+reviewed:yes POU3F3], [http://www.uniprot.org/uniprot/?query=gene:UMOD+AND+taxonomy:9606+AND+reviewed:yes UMOD]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0072033</td><td>renal vesicle formation</td><td>[http://www.uniprot.org/uniprot/?query=gene:WNT4+AND+taxonomy:9606+AND+reviewed:yes WNT4], [http://www.uniprot.org/uniprot/?query=gene:CTNNB1+AND+taxonomy:9606+AND+reviewed:yes CTNNB1]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0072044</td><td>collecting duct development</td><td>[http://www.uniprot.org/uniprot/?query=gene:NOTCH1+AND+taxonomy:9606+AND+reviewed:yes NOTCH1], [http://www.uniprot.org/uniprot/?query=gene:TFAP2B+AND+taxonomy:9606+AND+reviewed:yes TFAP2B], [http://www.uniprot.org/uniprot/?query=gene:WNT9B+AND+taxonomy:9606+AND+reviewed:yes WNT9B]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0072061</td><td>inner medullary collecting duct development</td><td>[http://www.uniprot.org/uniprot/?query=gene:WNT7B+AND+taxonomy:9606+AND+reviewed:yes WNT7B], [http://www.uniprot.org/uniprot/?query=gene:DACT2+AND+taxonomy:9606+AND+reviewed:yes DACT2]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0072104</td><td>glomerular capillary formation</td><td>[http://www.uniprot.org/uniprot/?query=gene:NOTCH3+AND+taxonomy:9606+AND+reviewed:yes NOTCH3], [http://www.uniprot.org/uniprot/?query=gene:BMP4+AND+taxonomy:9606+AND+reviewed:yes BMP4]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0072277</td><td>metanephric glomerular capillary formation</td><td>[http://www.uniprot.org/uniprot/?query=gene:TCF21+AND+taxonomy:9606+AND+reviewed:yes TCF21], [http://www.uniprot.org/uniprot/?query=gene:PDGFRB+AND+taxonomy:9606+AND+reviewed:yes PDGFRB], [http://www.uniprot.org/uniprot/?query=gene:PDGFRA+AND+taxonomy:9606+AND+reviewed:yes PDGFRA]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0072179</td><td>nephric duct formation</td><td>[http://www.uniprot.org/uniprot/?query=gene:PAX2+AND+taxonomy:9606+AND+reviewed:yes PAX2], [http://www.uniprot.org/uniprot/?query=gene:GATA3+AND+taxonomy:9606+AND+reviewed:yes GATA3]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0072189</td><td>ureter development</td><td>[http://www.uniprot.org/uniprot/?query=gene:FOXF1+AND+taxonomy:9606+AND+reviewed:yes FOXF1], [http://www.uniprot.org/uniprot/?query=gene:PAX2+AND+taxonomy:9606+AND+reviewed:yes PAX2], [http://www.uniprot.org/uniprot/?query=gene:NPHP3+AND+taxonomy:9606+AND+reviewed:yes NPHP3]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0007418</td><td>ventral midline development</td><td>[http://www.uniprot.org/uniprot/?query=gene:SHH+AND+taxonomy:9606+AND+reviewed:yes SHH], [http://www.uniprot.org/uniprot/?query=gene:GLI2+AND+taxonomy:9606+AND+reviewed:yes GLI2], [http://www.uniprot.org/uniprot/?query=gene:GLI1+AND+taxonomy:9606+AND+reviewed:yes GLI1]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0007497</td><td>posterior midgut development</td><td>[http://www.uniprot.org/uniprot/?query=gene:EDNRB+AND+taxonomy:9606+AND+reviewed:yes EDNRB], [http://www.uniprot.org/uniprot/?query=gene:RET+AND+taxonomy:9606+AND+reviewed:yes RET]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0003158</td><td>endothelium development</td><td>[http://www.uniprot.org/uniprot/?query=gene:SLC40A1+AND+taxonomy:9606+AND+reviewed:yes SLC40A1], [http://www.uniprot.org/uniprot/?query=gene:CD34+AND+taxonomy:9606+AND+reviewed:yes CD34], [http://www.uniprot.org/uniprot/?query=gene:KDR+AND+taxonomy:9606+AND+reviewed:yes KDR]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0060485</td><td>mesenchyme development</td><td>[http://www.uniprot.org/uniprot/?query=gene:HAND1+AND+taxonomy:9606+AND+reviewed:yes HAND1], [http://www.uniprot.org/uniprot/?query=gene:BMP7+AND+taxonomy:9606+AND+reviewed:yes BMP7], [http://www.uniprot.org/uniprot/?query=gene:BMP2+AND+taxonomy:9606+AND+reviewed:yes BMP2]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0021517</td><td>ventral spinal cord development</td><td>[http://www.uniprot.org/uniprot/?query=gene:RELN+AND+taxonomy:9606+AND+reviewed:yes RELN], [http://www.uniprot.org/uniprot/?query=gene:DAB1+AND+taxonomy:9606+AND+reviewed:yes DAB1], [http://www.uniprot.org/uniprot/?query=gene:FOXP1+AND+taxonomy:9606+AND+reviewed:yes FOXP1], [http://www.uniprot.org/uniprot/?query=gene:LHX1+AND+taxonomy:9606+AND+reviewed:yes LHX1], [http://www.uniprot.org/uniprot/?query=gene:VLDLR+AND+taxonomy:9606+AND+reviewed:yes VLDLR], [http://www.uniprot.org/uniprot/?query=gene:GLI2+AND+taxonomy:9606+AND+reviewed:yes GLI2]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0021568</td><td>rhombomere 2 development</td><td>[http://www.uniprot.org/uniprot/?query=gene:GBX2+AND+taxonomy:9606+AND+reviewed:yes GBX2], [http://www.uniprot.org/uniprot/?query=gene:HOXA2+AND+taxonomy:9606+AND+reviewed:yes HOXA2]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0021569</td><td>rhombomere 3 development</td><td>[http://www.uniprot.org/uniprot/?query=gene:HOXA1+AND+taxonomy:9606+AND+reviewed:yes HOXA1], [http://www.uniprot.org/uniprot/?query=gene:HOXB2+AND+taxonomy:9606+AND+reviewed:yes HOXB2]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0021570</td><td>rhombomere 4 development</td><td>[http://www.uniprot.org/uniprot/?query=gene:HOXA1+AND+taxonomy:9606+AND+reviewed:yes HOXA1], [http://www.uniprot.org/uniprot/?query=gene:HOXB2+AND+taxonomy:9606+AND+reviewed:yes HOXB2], [http://www.uniprot.org/uniprot/?query=gene:HOXB1+AND+taxonomy:9606+AND+reviewed:yes HOXB1]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0021571</td><td>rhombomere 5 development</td><td>[http://www.uniprot.org/uniprot/?query=gene:HOXA1+AND+taxonomy:9606+AND+reviewed:yes HOXA1], [http://www.uniprot.org/uniprot/?query=gene:MAFB+AND+taxonomy:9606+AND+reviewed:yes MAFB], [http://www.uniprot.org/uniprot/?query=gene:HOXB1+AND+taxonomy:9606+AND+reviewed:yes HOXB1]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0021678</td><td>third ventricle development</td><td>[http://www.uniprot.org/uniprot/?query=gene:KDM2B+AND+taxonomy:9606+AND+reviewed:yes KDM2B], [http://www.uniprot.org/uniprot/?query=gene:MYH10+AND+taxonomy:9606+AND+reviewed:yes MYH10], [http://www.uniprot.org/uniprot/?query=gene:DPCD+AND+taxonomy:9606+AND+reviewed:yes DPCD]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0021762</td><td>substantia nigra development</td><td>[http://www.uniprot.org/uniprot/?query=gene:FGF2+AND+taxonomy:9606+AND+reviewed:yes FGF2], [http://www.uniprot.org/uniprot/?query=gene:FGFR3+AND+taxonomy:9606+AND+reviewed:yes FGFR3]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0061326</td><td>renal tubule development</td><td>[http://www.uniprot.org/uniprot/?query=gene:TTC8+AND+taxonomy:9606+AND+reviewed:yes TTC8], [http://www.uniprot.org/uniprot/?query=gene:STAT1+AND+taxonomy:9606+AND+reviewed:yes STAT1]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0021761</td><td>limbic system development</td><td>[http://www.uniprot.org/uniprot/?query=gene:CNTNAP2+AND+taxonomy:9606+AND+reviewed:yes CNTNAP2], [http://www.uniprot.org/uniprot/?query=gene:TBX3+AND+taxonomy:9606+AND+reviewed:yes TBX3]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0021784</td><td>postganglionic parasympathetic nervous system development</td><td>[http://www.uniprot.org/uniprot/?query=gene:PLXNA4+AND+taxonomy:9606+AND+reviewed:yes PLXNA4], [http://www.uniprot.org/uniprot/?query=gene:GDNF+AND+taxonomy:9606+AND+reviewed:yes GDNF]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0048483</td><td>autonomic nervous system development</td><td>[http://www.uniprot.org/uniprot/?query=gene:PHOX2B+AND+taxonomy:9606+AND+reviewed:yes PHOX2B], [http://www.uniprot.org/uniprot/?query=gene:GBX2+AND+taxonomy:9606+AND+reviewed:yes GBX2], [http://www.uniprot.org/uniprot/?query=gene:PRLH+AND+taxonomy:9606+AND+reviewed:yes PRLH]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0048880</td><td>sensory system development</td><td>[http://www.uniprot.org/uniprot/?query=gene:POU4F1+AND+taxonomy:9606+AND+reviewed:yes POU4F1], [http://www.uniprot.org/uniprot/?query=gene:ISL1+AND+taxonomy:9606+AND+reviewed:yes ISL1], [http://www.uniprot.org/uniprot/?query=gene:SEMA3A+AND+taxonomy:9606+AND+reviewed:yes SEMA3A]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0055123</td><td>digestive system development</td><td>[http://www.uniprot.org/uniprot/?query=gene:WDR19+AND+taxonomy:9606+AND+reviewed:yes WDR19], [http://www.uniprot.org/uniprot/?query=gene:GIP+AND+taxonomy:9606+AND+reviewed:yes GIP], [http://www.uniprot.org/uniprot/?query=gene:BARX1+AND+taxonomy:9606+AND+reviewed:yes BARX1]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0060541</td><td>respiratory system development</td><td>[http://www.uniprot.org/uniprot/?query=gene:PHOX2B+AND+taxonomy:9606+AND+reviewed:yes PHOX2B], [http://www.uniprot.org/uniprot/?query=gene:SPEF2+AND+taxonomy:9606+AND+reviewed:yes SPEF2], [http://www.uniprot.org/uniprot/?query=gene:TCF21+AND+taxonomy:9606+AND+reviewed:yes TCF21], [http://www.uniprot.org/uniprot/?query=gene:SPEG+AND+taxonomy:9606+AND+reviewed:yes SPEG]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0061458</td><td>reproductive system development</td><td>[http://www.uniprot.org/uniprot/?query=gene:LRRC6+AND+taxonomy:9606+AND+reviewed:yes LRRC6], [http://www.uniprot.org/uniprot/?query=gene:NDUFS6+AND+taxonomy:9606+AND+reviewed:yes NDUFS6], [http://www.uniprot.org/uniprot/?query=gene:SPATA22+AND+taxonomy:9606+AND+reviewed:yes SPATA22]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0072358</td><td>cardiovascular system development</td><td>[http://www.uniprot.org/uniprot/?query=gene:SLITRK5+AND+taxonomy:9606+AND+reviewed:yes SLITRK5], [http://www.uniprot.org/uniprot/?query=gene:SP2+AND+taxonomy:9606+AND+reviewed:yes SP2], [http://www.uniprot.org/uniprot/?query=gene:NXN+AND+taxonomy:9606+AND+reviewed:yes NXN], [http://www.uniprot.org/uniprot/?query=gene:KCNJ1+AND+taxonomy:9606+AND+reviewed:yes KCNJ1], [http://www.uniprot.org/uniprot/?query=gene:NDUFS6+AND+taxonomy:9606+AND+reviewed:yes NDUFS6], [http://www.uniprot.org/uniprot/?query=gene:POGLUT1+AND+taxonomy:9606+AND+reviewed:yes POGLUT1], [http://www.uniprot.org/uniprot/?query=gene:DDX17+AND+taxonomy:9606+AND+reviewed:yes DDX17], [http://www.uniprot.org/uniprot/?query=gene:KCNQ1+AND+taxonomy:9606+AND+reviewed:yes KCNQ1]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0060023</td><td>soft palate development</td><td>[http://www.uniprot.org/uniprot/?query=gene:TBX1+AND+taxonomy:9606+AND+reviewed:yes TBX1], [http://www.uniprot.org/uniprot/?query=gene:FOXE1+AND+taxonomy:9606+AND+reviewed:yes FOXE1], [http://www.uniprot.org/uniprot/?query=gene:FOXE3+AND+taxonomy:9606+AND+reviewed:yes FOXE3], [http://www.uniprot.org/uniprot/?query=gene:COL11A2+AND+taxonomy:9606+AND+reviewed:yes COL11A2], [http://www.uniprot.org/uniprot/?query=gene:TSHZ1+AND+taxonomy:9606+AND+reviewed:yes TSHZ1], [http://www.uniprot.org/uniprot/?query=gene:SOX11+AND+taxonomy:9606+AND+reviewed:yes SOX11]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0060465</td><td>pharynx development</td><td>[http://www.uniprot.org/uniprot/?query=gene:TBX2+AND+taxonomy:9606+AND+reviewed:yes TBX2], [http://www.uniprot.org/uniprot/?query=gene:FOXE1+AND+taxonomy:9606+AND+reviewed:yes FOXE1]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0061032</td><td>visceral serous pericardium development</td><td>[http://www.uniprot.org/uniprot/?query=gene:HAND2+AND+taxonomy:9606+AND+reviewed:yes HAND2], [http://www.uniprot.org/uniprot/?query=gene:WT1+AND+taxonomy:9606+AND+reviewed:yes WT1]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0061053</td><td>somite development</td><td>[http://www.uniprot.org/uniprot/?query=gene:PTCH1+AND+taxonomy:9606+AND+reviewed:yes PTCH1], [http://www.uniprot.org/uniprot/?query=gene:NOG+AND+taxonomy:9606+AND+reviewed:yes NOG], [http://www.uniprot.org/uniprot/?query=gene:IHH+AND+taxonomy:9606+AND+reviewed:yes IHH], [http://www.uniprot.org/uniprot/?query=gene:SMO+AND+taxonomy:9606+AND+reviewed:yes SMO], [http://www.uniprot.org/uniprot/?query=gene:SHH+AND+taxonomy:9606+AND+reviewed:yes SHH], [http://www.uniprot.org/uniprot/?query=gene:PPP2R3A+AND+taxonomy:9606+AND+reviewed:yes PPP2R3A], [http://www.uniprot.org/uniprot/?query=gene:SOX11+AND+taxonomy:9606+AND+reviewed:yes SOX11], [http://www.uniprot.org/uniprot/?query=gene:FRZB+AND+taxonomy:9606+AND+reviewed:yes FRZB]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0061056</td><td>sclerotome development</td><td>[http://www.uniprot.org/uniprot/?query=gene:SFRP2+AND+taxonomy:9606+AND+reviewed:yes SFRP2], [http://www.uniprot.org/uniprot/?query=gene:PAX1+AND+taxonomy:9606+AND+reviewed:yes PAX1]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0071109</td><td>superior temporal gyrus development</td><td>[http://www.uniprot.org/uniprot/?query=gene:GSK3B+AND+taxonomy:9606+AND+reviewed:yes GSK3B], [http://www.uniprot.org/uniprot/?query=gene:CNTNAP2+AND+taxonomy:9606+AND+reviewed:yes CNTNAP2]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0072233</td><td>metanephric thick ascending limb development</td><td>[http://www.uniprot.org/uniprot/?query=gene:POU3F3+AND+taxonomy:9606+AND+reviewed:yes POU3F3], [http://www.uniprot.org/uniprot/?query=gene:UMOD+AND+taxonomy:9606+AND+reviewed:yes UMOD]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0072053</td><td>renal inner medulla development</td><td>[http://www.uniprot.org/uniprot/?query=gene:WNT7B+AND+taxonomy:9606+AND+reviewed:yes WNT7B], [http://www.uniprot.org/uniprot/?query=gene:CTNNB1+AND+taxonomy:9606+AND+reviewed:yes CTNNB1]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0072054</td><td>renal outer medulla development</td><td>[http://www.uniprot.org/uniprot/?query=gene:WNT7B+AND+taxonomy:9606+AND+reviewed:yes WNT7B], [http://www.uniprot.org/uniprot/?query=gene:CTNNB1+AND+taxonomy:9606+AND+reviewed:yes CTNNB1]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0044117</td><td>growth of symbiont in host</td><td>[http://www.uniprot.org/uniprot/?query=gene:PGLYRP3+AND+taxonomy:9606+AND+reviewed:yes PGLYRP3], [http://www.uniprot.org/uniprot/?query=gene:PGLYRP2+AND+taxonomy:9606+AND+reviewed:yes PGLYRP2], [http://www.uniprot.org/uniprot/?query=gene:PGLYRP1+AND+taxonomy:9606+AND+reviewed:yes PGLYRP1], [http://www.uniprot.org/uniprot/?query=gene:PGLYRP4+AND+taxonomy:9606+AND+reviewed:yes PGLYRP4]</td></tr>
 
<tr class="s1"><td>2</td><td>GO:0031987</td><td>locomotion involved in locomotory behavior</td><td>[http://www.uniprot.org/uniprot/?query=gene:FZD4+AND+taxonomy:9606+AND+reviewed:yes FZD4], [http://www.uniprot.org/uniprot/?query=gene:CLN6+AND+taxonomy:9606+AND+reviewed:yes CLN6], [http://www.uniprot.org/uniprot/?query=gene:MYO5A+AND+taxonomy:9606+AND+reviewed:yes MYO5A]</td></tr>
 
<tr class="s2"><td>2</td><td>GO:0033058</td><td>directional locomotion</td><td>[http://www.uniprot.org/uniprot/?query=gene:GRIN2C+AND+taxonomy:9606+AND+reviewed:yes GRIN2C], [http://www.uniprot.org/uniprot/?query=gene:GRIN2A+AND+taxonomy:9606+AND+reviewed:yes GRIN2A], [http://www.uniprot.org/uniprot/?query=gene:ARPIN+AND+taxonomy:9606+AND+reviewed:yes ARPIN]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0003419</td><td>growth plate cartilage chondrocyte proliferation</td><td>[http://www.uniprot.org/uniprot/?query=gene:CER1+AND+taxonomy:9606+AND+reviewed:yes CER1], [http://www.uniprot.org/uniprot/?query=gene:NPPC+AND+taxonomy:9606+AND+reviewed:yes NPPC]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0014009</td><td>glial cell proliferation</td><td>[http://www.uniprot.org/uniprot/?query=gene:LGI4+AND+taxonomy:9606+AND+reviewed:yes LGI4], [http://www.uniprot.org/uniprot/?query=gene:SOX11+AND+taxonomy:9606+AND+reviewed:yes SOX11], [http://www.uniprot.org/uniprot/?query=gene:SOX4+AND+taxonomy:9606+AND+reviewed:yes SOX4], [http://www.uniprot.org/uniprot/?query=gene:PTK2B+AND+taxonomy:9606+AND+reviewed:yes PTK2B]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0014010</td><td>Schwann cell proliferation</td><td>[http://www.uniprot.org/uniprot/?query=gene:CTNNB1+AND+taxonomy:9606+AND+reviewed:yes CTNNB1], [http://www.uniprot.org/uniprot/?query=gene:NF2+AND+taxonomy:9606+AND+reviewed:yes NF2]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0048659</td><td>smooth muscle cell proliferation</td><td>[http://www.uniprot.org/uniprot/?query=gene:EDNRA+AND+taxonomy:9606+AND+reviewed:yes EDNRA], [http://www.uniprot.org/uniprot/?query=gene:AGT+AND+taxonomy:9606+AND+reviewed:yes AGT], [http://www.uniprot.org/uniprot/?query=gene:NAA35+AND+taxonomy:9606+AND+reviewed:yes NAA35]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0033687</td><td>osteoblast proliferation</td><td>[http://www.uniprot.org/uniprot/?query=gene:LRRC17+AND+taxonomy:9606+AND+reviewed:yes LRRC17], [http://www.uniprot.org/uniprot/?query=gene:OSR2+AND+taxonomy:9606+AND+reviewed:yes OSR2], [http://www.uniprot.org/uniprot/?query=gene:JUNB+AND+taxonomy:9606+AND+reviewed:yes JUNB], [http://www.uniprot.org/uniprot/?query=gene:FIGNL1+AND+taxonomy:9606+AND+reviewed:yes FIGNL1]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0035726</td><td>common myeloid progenitor cell proliferation</td><td>[http://www.uniprot.org/uniprot/?query=gene:UNCX+AND+taxonomy:9606+AND+reviewed:yes UNCX], [http://www.uniprot.org/uniprot/?query=gene:GSTP1+AND+taxonomy:9606+AND+reviewed:yes GSTP1], [http://www.uniprot.org/uniprot/?query=gene:FLT3+AND+taxonomy:9606+AND+reviewed:yes FLT3]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0035988</td><td>chondrocyte proliferation</td><td>[http://www.uniprot.org/uniprot/?query=gene:IHH+AND+taxonomy:9606+AND+reviewed:yes IHH], [http://www.uniprot.org/uniprot/?query=gene:HMGA2+AND+taxonomy:9606+AND+reviewed:yes HMGA2], [http://www.uniprot.org/uniprot/?query=gene:FGFR3+AND+taxonomy:9606+AND+reviewed:yes FGFR3], [http://www.uniprot.org/uniprot/?query=gene:DDR2+AND+taxonomy:9606+AND+reviewed:yes DDR2], [http://www.uniprot.org/uniprot/?query=gene:CTGF+AND+taxonomy:9606+AND+reviewed:yes CTGF]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0044342</td><td>type B pancreatic cell proliferation</td><td>[http://www.uniprot.org/uniprot/?query=gene:C19orf80+AND+taxonomy:9606+AND+reviewed:yes C19orf80], [http://www.uniprot.org/uniprot/?query=gene:IGFBP3+AND+taxonomy:9606+AND+reviewed:yes IGFBP3], [http://www.uniprot.org/uniprot/?query=gene:IGFBP4+AND+taxonomy:9606+AND+reviewed:yes IGFBP4], [http://www.uniprot.org/uniprot/?query=gene:IGFBP5+AND+taxonomy:9606+AND+reviewed:yes IGFBP5], [http://www.uniprot.org/uniprot/?query=gene:ADK+AND+taxonomy:9606+AND+reviewed:yes ADK], [http://www.uniprot.org/uniprot/?query=gene:BAD+AND+taxonomy:9606+AND+reviewed:yes BAD]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0048144</td><td>fibroblast proliferation</td><td>[http://www.uniprot.org/uniprot/?query=gene:WNT7B+AND+taxonomy:9606+AND+reviewed:yes WNT7B], [http://www.uniprot.org/uniprot/?query=gene:EDNRA+AND+taxonomy:9606+AND+reviewed:yes EDNRA], [http://www.uniprot.org/uniprot/?query=gene:SP2+AND+taxonomy:9606+AND+reviewed:yes SP2], [http://www.uniprot.org/uniprot/?query=gene:AGT+AND+taxonomy:9606+AND+reviewed:yes AGT]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:2001013</td><td>epithelial cell proliferation involved in renal tubule morphogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:MEF2C+AND+taxonomy:9606+AND+reviewed:yes MEF2C], [http://www.uniprot.org/uniprot/?query=gene:MEF2A+AND+taxonomy:9606+AND+reviewed:yes MEF2A], [http://www.uniprot.org/uniprot/?query=gene:MTSS1+AND+taxonomy:9606+AND+reviewed:yes MTSS1]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0051450</td><td>myoblast proliferation</td><td>[http://www.uniprot.org/uniprot/?query=gene:IGF1+AND+taxonomy:9606+AND+reviewed:yes IGF1], [http://www.uniprot.org/uniprot/?query=gene:MET+AND+taxonomy:9606+AND+reviewed:yes MET], [http://www.uniprot.org/uniprot/?query=gene:HGF+AND+taxonomy:9606+AND+reviewed:yes HGF], [http://www.uniprot.org/uniprot/?query=gene:GPX1+AND+taxonomy:9606+AND+reviewed:yes GPX1]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0061325</td><td>cell proliferation involved in outflow tract morphogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:HAND2+AND+taxonomy:9606+AND+reviewed:yes HAND2], [http://www.uniprot.org/uniprot/?query=gene:PITX2+AND+taxonomy:9606+AND+reviewed:yes PITX2]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0033278</td><td>cell proliferation in midbrain</td><td>[http://www.uniprot.org/uniprot/?query=gene:FZD3+AND+taxonomy:9606+AND+reviewed:yes FZD3], [http://www.uniprot.org/uniprot/?query=gene:FZD6+AND+taxonomy:9606+AND+reviewed:yes FZD6]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0002158</td><td>osteoclast proliferation</td><td>[http://www.uniprot.org/uniprot/?query=gene:NPR3+AND+taxonomy:9606+AND+reviewed:yes NPR3], [http://www.uniprot.org/uniprot/?query=gene:CSF1+AND+taxonomy:9606+AND+reviewed:yes CSF1], [http://www.uniprot.org/uniprot/?query=gene:TNFSF11+AND+taxonomy:9606+AND+reviewed:yes TNFSF11]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0032943</td><td>mononuclear cell proliferation</td><td>[http://www.uniprot.org/uniprot/?query=gene:ACE+AND+taxonomy:9606+AND+reviewed:yes ACE], [http://www.uniprot.org/uniprot/?query=gene:TGFB1+AND+taxonomy:9606+AND+reviewed:yes TGFB1]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0072089</td><td>stem cell proliferation</td><td>[http://www.uniprot.org/uniprot/?query=gene:ABCB1+AND+taxonomy:9606+AND+reviewed:yes ABCB1], [http://www.uniprot.org/uniprot/?query=gene:WNT7B+AND+taxonomy:9606+AND+reviewed:yes WNT7B], [http://www.uniprot.org/uniprot/?query=gene:ZNRF3+AND+taxonomy:9606+AND+reviewed:yes ZNRF3], [http://www.uniprot.org/uniprot/?query=gene:TRIM71+AND+taxonomy:9606+AND+reviewed:yes TRIM71], [http://www.uniprot.org/uniprot/?query=gene:CD34+AND+taxonomy:9606+AND+reviewed:yes CD34], [http://www.uniprot.org/uniprot/?query=gene:NES+AND+taxonomy:9606+AND+reviewed:yes NES], [http://www.uniprot.org/uniprot/?query=gene:RNF43+AND+taxonomy:9606+AND+reviewed:yes RNF43]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0010463</td><td>mesenchymal cell proliferation</td><td>[http://www.uniprot.org/uniprot/?query=gene:HAND2+AND+taxonomy:9606+AND+reviewed:yes HAND2], [http://www.uniprot.org/uniprot/?query=gene:FGF7+AND+taxonomy:9606+AND+reviewed:yes FGF7], [http://www.uniprot.org/uniprot/?query=gene:FGF4+AND+taxonomy:9606+AND+reviewed:yes FGF4]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0072203</td><td>cell proliferation involved in metanephros development</td><td>[http://www.uniprot.org/uniprot/?query=gene:PTCH1+AND+taxonomy:9606+AND+reviewed:yes PTCH1], [http://www.uniprot.org/uniprot/?query=gene:GPC3+AND+taxonomy:9606+AND+reviewed:yes GPC3]</td></tr>
 
<tr class="s1"><td>2</td><td>GO:0016265</td><td>death</td><td>[http://www.uniprot.org/uniprot/?query=gene:SLC18A2+AND+taxonomy:9606+AND+reviewed:yes SLC18A2], [http://www.uniprot.org/uniprot/?query=gene:TCF15+AND+taxonomy:9606+AND+reviewed:yes TCF15], [http://www.uniprot.org/uniprot/?query=gene:NR4A2+AND+taxonomy:9606+AND+reviewed:yes NR4A2]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0001543</td><td>ovarian follicle rupture</td><td>[http://www.uniprot.org/uniprot/?query=gene:NRIP1+AND+taxonomy:9606+AND+reviewed:yes NRIP1], [http://www.uniprot.org/uniprot/?query=gene:AGT+AND+taxonomy:9606+AND+reviewed:yes AGT]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0001546</td><td>preantral ovarian follicle growth</td><td>[http://www.uniprot.org/uniprot/?query=gene:GPR149+AND+taxonomy:9606+AND+reviewed:yes GPR149], [http://www.uniprot.org/uniprot/?query=gene:AMH+AND+taxonomy:9606+AND+reviewed:yes AMH]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0001550</td><td>ovarian cumulus expansion</td><td>[http://www.uniprot.org/uniprot/?query=gene:EREG+AND+taxonomy:9606+AND+reviewed:yes EREG], [http://www.uniprot.org/uniprot/?query=gene:BMPR1B+AND+taxonomy:9606+AND+reviewed:yes BMPR1B]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0001554</td><td>luteolysis</td><td>[http://www.uniprot.org/uniprot/?query=gene:MMP19+AND+taxonomy:9606+AND+reviewed:yes MMP19], [http://www.uniprot.org/uniprot/?query=gene:CASP2+AND+taxonomy:9606+AND+reviewed:yes CASP2]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0060112</td><td>generation of ovulation cycle rhythm</td><td>[http://www.uniprot.org/uniprot/?query=gene:KISS1+AND+taxonomy:9606+AND+reviewed:yes KISS1], [http://www.uniprot.org/uniprot/?query=gene:NPY5R+AND+taxonomy:9606+AND+reviewed:yes NPY5R]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0060206</td><td>estrous cycle phase</td><td>[http://www.uniprot.org/uniprot/?query=gene:GPR149+AND+taxonomy:9606+AND+reviewed:yes GPR149], [http://www.uniprot.org/uniprot/?query=gene:ETS1+AND+taxonomy:9606+AND+reviewed:yes ETS1], [http://www.uniprot.org/uniprot/?query=gene:ANXA1+AND+taxonomy:9606+AND+reviewed:yes ANXA1], [http://www.uniprot.org/uniprot/?query=gene:OXTR+AND+taxonomy:9606+AND+reviewed:yes OXTR], [http://www.uniprot.org/uniprot/?query=gene:NCOR2+AND+taxonomy:9606+AND+reviewed:yes NCOR2]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0007635</td><td>chemosensory behavior</td><td>[http://www.uniprot.org/uniprot/?query=gene:CASR+AND+taxonomy:9606+AND+reviewed:yes CASR], [http://www.uniprot.org/uniprot/?query=gene:TRPV1+AND+taxonomy:9606+AND+reviewed:yes TRPV1], [http://www.uniprot.org/uniprot/?query=gene:TAS2R1+AND+taxonomy:9606+AND+reviewed:yes TAS2R1], [http://www.uniprot.org/uniprot/?query=gene:TAS2R5+AND+taxonomy:9606+AND+reviewed:yes TAS2R5], [http://www.uniprot.org/uniprot/?query=gene:PRKCG+AND+taxonomy:9606+AND+reviewed:yes PRKCG], [http://www.uniprot.org/uniprot/?query=gene:OBP2B+AND+taxonomy:9606+AND+reviewed:yes OBP2B]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0015697</td><td>quaternary ammonium group transport</td><td>[http://www.uniprot.org/uniprot/?query=gene:SLC22A5+AND+taxonomy:9606+AND+reviewed:yes SLC22A5], [http://www.uniprot.org/uniprot/?query=gene:SLC22A3+AND+taxonomy:9606+AND+reviewed:yes SLC22A3], [http://www.uniprot.org/uniprot/?query=gene:SLC22A4+AND+taxonomy:9606+AND+reviewed:yes SLC22A4]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0015837</td><td>amine transport</td><td>[http://www.uniprot.org/uniprot/?query=gene:AQP9+AND+taxonomy:9606+AND+reviewed:yes AQP9], [http://www.uniprot.org/uniprot/?query=gene:SLC22A16+AND+taxonomy:9606+AND+reviewed:yes SLC22A16], [http://www.uniprot.org/uniprot/?query=gene:RHCG+AND+taxonomy:9606+AND+reviewed:yes RHCG]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0015844</td><td>monoamine transport</td><td>[http://www.uniprot.org/uniprot/?query=gene:SLC18A2+AND+taxonomy:9606+AND+reviewed:yes SLC18A2], [http://www.uniprot.org/uniprot/?query=gene:SLC18A1+AND+taxonomy:9606+AND+reviewed:yes SLC18A1], [http://www.uniprot.org/uniprot/?query=gene:PICK1+AND+taxonomy:9606+AND+reviewed:yes PICK1], [http://www.uniprot.org/uniprot/?query=gene:SLC6A3+AND+taxonomy:9606+AND+reviewed:yes SLC6A3], [http://www.uniprot.org/uniprot/?query=gene:SLC6A2+AND+taxonomy:9606+AND+reviewed:yes SLC6A2], [http://www.uniprot.org/uniprot/?query=gene:SLC6A4+AND+taxonomy:9606+AND+reviewed:yes SLC6A4]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0015851</td><td>nucleobase transport</td><td>[http://www.uniprot.org/uniprot/?query=gene:SLC23A2+AND+taxonomy:9606+AND+reviewed:yes SLC23A2], [http://www.uniprot.org/uniprot/?query=gene:SLC23A1+AND+taxonomy:9606+AND+reviewed:yes SLC23A1]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0015893</td><td>drug transport</td><td>[http://www.uniprot.org/uniprot/?query=gene:SLC17A3+AND+taxonomy:9606+AND+reviewed:yes SLC17A3], [http://www.uniprot.org/uniprot/?query=gene:PDZK1+AND+taxonomy:9606+AND+reviewed:yes PDZK1], [http://www.uniprot.org/uniprot/?query=gene:SLC22A5+AND+taxonomy:9606+AND+reviewed:yes SLC22A5], [http://www.uniprot.org/uniprot/?query=gene:SLC15A2+AND+taxonomy:9606+AND+reviewed:yes SLC15A2], [http://www.uniprot.org/uniprot/?query=gene:SLC22A18+AND+taxonomy:9606+AND+reviewed:yes SLC22A18]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0030185</td><td>nitric oxide transport</td><td>[http://www.uniprot.org/uniprot/?query=gene:AQP1+AND+taxonomy:9606+AND+reviewed:yes AQP1], [http://www.uniprot.org/uniprot/?query=gene:EDN1+AND+taxonomy:9606+AND+reviewed:yes EDN1], [http://www.uniprot.org/uniprot/?query=gene:HBB+AND+taxonomy:9606+AND+reviewed:yes HBB]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0030705</td><td>cytoskeleton-dependent intracellular transport</td><td>[http://www.uniprot.org/uniprot/?query=gene:TUBA1C+AND+taxonomy:9606+AND+reviewed:yes TUBA1C], [http://www.uniprot.org/uniprot/?query=gene:TUBA1B+AND+taxonomy:9606+AND+reviewed:yes TUBA1B], [http://www.uniprot.org/uniprot/?query=gene:TUBA1A+AND+taxonomy:9606+AND+reviewed:yes TUBA1A], [http://www.uniprot.org/uniprot/?query=gene:TUBB+AND+taxonomy:9606+AND+reviewed:yes TUBB], [http://www.uniprot.org/uniprot/?query=gene:KIF1B+AND+taxonomy:9606+AND+reviewed:yes KIF1B], [http://www.uniprot.org/uniprot/?query=gene:MYO10+AND+taxonomy:9606+AND+reviewed:yes MYO10]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0035526</td><td>retrograde transport, plasma membrane to Golgi</td><td>[http://www.uniprot.org/uniprot/?query=gene:USP6NL+AND+taxonomy:9606+AND+reviewed:yes USP6NL], [http://www.uniprot.org/uniprot/?query=gene:RAB43+AND+taxonomy:9606+AND+reviewed:yes RAB43]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0045056</td><td>transcytosis</td><td>[http://www.uniprot.org/uniprot/?query=gene:CHP1+AND+taxonomy:9606+AND+reviewed:yes CHP1], [http://www.uniprot.org/uniprot/?query=gene:FSHR+AND+taxonomy:9606+AND+reviewed:yes FSHR], [http://www.uniprot.org/uniprot/?query=gene:USO1+AND+taxonomy:9606+AND+reviewed:yes USO1], [http://www.uniprot.org/uniprot/?query=gene:GPIHBP1+AND+taxonomy:9606+AND+reviewed:yes GPIHBP1], [http://www.uniprot.org/uniprot/?query=gene:RAB17+AND+taxonomy:9606+AND+reviewed:yes RAB17]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0070633</td><td>transepithelial transport</td><td>[http://www.uniprot.org/uniprot/?query=gene:CXADR+AND+taxonomy:9606+AND+reviewed:yes CXADR], [http://www.uniprot.org/uniprot/?query=gene:SLC26A6+AND+taxonomy:9606+AND+reviewed:yes SLC26A6], [http://www.uniprot.org/uniprot/?query=gene:GPLD1+AND+taxonomy:9606+AND+reviewed:yes GPLD1]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0071985</td><td>multivesicular body sorting pathway</td><td>[http://www.uniprot.org/uniprot/?query=gene:RAB27A+AND+taxonomy:9606+AND+reviewed:yes RAB27A], [http://www.uniprot.org/uniprot/?query=gene:RAB27B+AND+taxonomy:9606+AND+reviewed:yes RAB27B], [http://www.uniprot.org/uniprot/?query=gene:SYTL4+AND+taxonomy:9606+AND+reviewed:yes SYTL4], [http://www.uniprot.org/uniprot/?query=gene:EXPH5+AND+taxonomy:9606+AND+reviewed:yes EXPH5]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0007622</td><td>rhythmic behavior</td><td>[http://www.uniprot.org/uniprot/?query=gene:EGR2+AND+taxonomy:9606+AND+reviewed:yes EGR2], [http://www.uniprot.org/uniprot/?query=gene:CHAT+AND+taxonomy:9606+AND+reviewed:yes CHAT]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0002357</td><td>defense response to tumor cell</td><td>[http://www.uniprot.org/uniprot/?query=gene:PRF1+AND+taxonomy:9606+AND+reviewed:yes PRF1], [http://www.uniprot.org/uniprot/?query=gene:PLK5+AND+taxonomy:9606+AND+reviewed:yes PLK5]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0001306</td><td>age-dependent response to oxidative stress</td><td>[http://www.uniprot.org/uniprot/?query=gene:SOD2+AND+taxonomy:9606+AND+reviewed:yes SOD2], [http://www.uniprot.org/uniprot/?query=gene:CLN8+AND+taxonomy:9606+AND+reviewed:yes CLN8], [http://www.uniprot.org/uniprot/?query=gene:COQ7+AND+taxonomy:9606+AND+reviewed:yes COQ7]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0033194</td><td>response to hydroperoxide</td><td>[http://www.uniprot.org/uniprot/?query=gene:JAK2+AND+taxonomy:9606+AND+reviewed:yes JAK2], [http://www.uniprot.org/uniprot/?query=gene:TRPM2+AND+taxonomy:9606+AND+reviewed:yes TRPM2], [http://www.uniprot.org/uniprot/?query=gene:CD38+AND+taxonomy:9606+AND+reviewed:yes CD38], [http://www.uniprot.org/uniprot/?query=gene:CHUK+AND+taxonomy:9606+AND+reviewed:yes CHUK], [http://www.uniprot.org/uniprot/?query=gene:GPX1+AND+taxonomy:9606+AND+reviewed:yes GPX1]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0006991</td><td>response to sterol depletion</td><td>[http://www.uniprot.org/uniprot/?query=gene:LYN+AND+taxonomy:9606+AND+reviewed:yes LYN], [http://www.uniprot.org/uniprot/?query=gene:INSIG1+AND+taxonomy:9606+AND+reviewed:yes INSIG1]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0009635</td><td>response to herbicide</td><td>[http://www.uniprot.org/uniprot/?query=gene:SLC18A2+AND+taxonomy:9606+AND+reviewed:yes SLC18A2], [http://www.uniprot.org/uniprot/?query=gene:TH+AND+taxonomy:9606+AND+reviewed:yes TH], [http://www.uniprot.org/uniprot/?query=gene:ARG1+AND+taxonomy:9606+AND+reviewed:yes ARG1], [http://www.uniprot.org/uniprot/?query=gene:LCN2+AND+taxonomy:9606+AND+reviewed:yes LCN2], [http://www.uniprot.org/uniprot/?query=gene:CYP1A1+AND+taxonomy:9606+AND+reviewed:yes CYP1A1], [http://www.uniprot.org/uniprot/?query=gene:CYP17A1+AND+taxonomy:9606+AND+reviewed:yes CYP17A1], [http://www.uniprot.org/uniprot/?query=gene:STAR+AND+taxonomy:9606+AND+reviewed:yes STAR], [http://www.uniprot.org/uniprot/?query=gene:HTRA2+AND+taxonomy:9606+AND+reviewed:yes HTRA2]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0034405</td><td>response to fluid shear stress</td><td>[http://www.uniprot.org/uniprot/?query=gene:CITED2+AND+taxonomy:9606+AND+reviewed:yes CITED2], [http://www.uniprot.org/uniprot/?query=gene:P2RX4+AND+taxonomy:9606+AND+reviewed:yes P2RX4], [http://www.uniprot.org/uniprot/?query=gene:P2RX7+AND+taxonomy:9606+AND+reviewed:yes P2RX7], [http://www.uniprot.org/uniprot/?query=gene:PDGFRB+AND+taxonomy:9606+AND+reviewed:yes PDGFRB], [http://www.uniprot.org/uniprot/?query=gene:NOS3+AND+taxonomy:9606+AND+reviewed:yes NOS3], [http://www.uniprot.org/uniprot/?query=gene:AKT1+AND+taxonomy:9606+AND+reviewed:yes AKT1]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0035902</td><td>response to immobilization stress</td><td>[http://www.uniprot.org/uniprot/?query=gene:CRHR1+AND+taxonomy:9606+AND+reviewed:yes CRHR1], [http://www.uniprot.org/uniprot/?query=gene:TPH1+AND+taxonomy:9606+AND+reviewed:yes TPH1], [http://www.uniprot.org/uniprot/?query=gene:CRH+AND+taxonomy:9606+AND+reviewed:yes CRH], [http://www.uniprot.org/uniprot/?query=gene:UCN3+AND+taxonomy:9606+AND+reviewed:yes UCN3]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0051409</td><td>response to nitrosative stress</td><td>[http://www.uniprot.org/uniprot/?query=gene:ADH5+AND+taxonomy:9606+AND+reviewed:yes ADH5], [http://www.uniprot.org/uniprot/?query=gene:GCLM+AND+taxonomy:9606+AND+reviewed:yes GCLM], [http://www.uniprot.org/uniprot/?query=gene:GCLC+AND+taxonomy:9606+AND+reviewed:yes GCLC], [http://www.uniprot.org/uniprot/?query=gene:DUSP6+AND+taxonomy:9606+AND+reviewed:yes DUSP6]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0042756</td><td>drinking behavior</td><td>[http://www.uniprot.org/uniprot/?query=gene:HTR1B+AND+taxonomy:9606+AND+reviewed:yes HTR1B], [http://www.uniprot.org/uniprot/?query=gene:OXT+AND+taxonomy:9606+AND+reviewed:yes OXT], [http://www.uniprot.org/uniprot/?query=gene:REN+AND+taxonomy:9606+AND+reviewed:yes REN], [http://www.uniprot.org/uniprot/?query=gene:APLN+AND+taxonomy:9606+AND+reviewed:yes APLN], [http://www.uniprot.org/uniprot/?query=gene:UCN+AND+taxonomy:9606+AND+reviewed:yes UCN]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0002118</td><td>aggressive behavior</td><td>[http://www.uniprot.org/uniprot/?query=gene:SNCG+AND+taxonomy:9606+AND+reviewed:yes SNCG], [http://www.uniprot.org/uniprot/?query=gene:NR2E1+AND+taxonomy:9606+AND+reviewed:yes NR2E1], [http://www.uniprot.org/uniprot/?query=gene:TACR1+AND+taxonomy:9606+AND+reviewed:yes TACR1]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0009590</td><td>detection of gravity</td><td>[http://www.uniprot.org/uniprot/?query=gene:OTOP1+AND+taxonomy:9606+AND+reviewed:yes OTOP1], [http://www.uniprot.org/uniprot/?query=gene:NOX3+AND+taxonomy:9606+AND+reviewed:yes NOX3]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0016048</td><td>detection of temperature stimulus</td><td>[http://www.uniprot.org/uniprot/?query=gene:NGFR+AND+taxonomy:9606+AND+reviewed:yes NGFR], [http://www.uniprot.org/uniprot/?query=gene:DRGX+AND+taxonomy:9606+AND+reviewed:yes DRGX]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0010996</td><td>response to auditory stimulus</td><td>[http://www.uniprot.org/uniprot/?query=gene:NTRK2+AND+taxonomy:9606+AND+reviewed:yes NTRK2], [http://www.uniprot.org/uniprot/?query=gene:CXCL10+AND+taxonomy:9606+AND+reviewed:yes CXCL10], [http://www.uniprot.org/uniprot/?query=gene:TACR1+AND+taxonomy:9606+AND+reviewed:yes TACR1]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0035994</td><td>response to muscle stretch</td><td>[http://www.uniprot.org/uniprot/?query=gene:TCAP+AND+taxonomy:9606+AND+reviewed:yes TCAP], [http://www.uniprot.org/uniprot/?query=gene:ANKRD1+AND+taxonomy:9606+AND+reviewed:yes ANKRD1]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0009649</td><td>entrainment of circadian clock</td><td>[http://www.uniprot.org/uniprot/?query=gene:PHLPP1+AND+taxonomy:9606+AND+reviewed:yes PHLPP1], [http://www.uniprot.org/uniprot/?query=gene:ATOH7+AND+taxonomy:9606+AND+reviewed:yes ATOH7], [http://www.uniprot.org/uniprot/?query=gene:ARNTL2+AND+taxonomy:9606+AND+reviewed:yes ARNTL2], [http://www.uniprot.org/uniprot/?query=gene:PER1+AND+taxonomy:9606+AND+reviewed:yes PER1], [http://www.uniprot.org/uniprot/?query=gene:ID2+AND+taxonomy:9606+AND+reviewed:yes ID2]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0009991</td><td>response to extracellular stimulus</td><td>[http://www.uniprot.org/uniprot/?query=gene:RASGRP4+AND+taxonomy:9606+AND+reviewed:yes RASGRP4], [http://www.uniprot.org/uniprot/?query=gene:RPS19+AND+taxonomy:9606+AND+reviewed:yes RPS19], [http://www.uniprot.org/uniprot/?query=gene:ACTA1+AND+taxonomy:9606+AND+reviewed:yes ACTA1]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0060005</td><td>vestibular reflex</td><td>[http://www.uniprot.org/uniprot/?query=gene:NR4A3+AND+taxonomy:9606+AND+reviewed:yes NR4A3], [http://www.uniprot.org/uniprot/?query=gene:TMC1+AND+taxonomy:9606+AND+reviewed:yes TMC1], [http://www.uniprot.org/uniprot/?query=gene:TMC2+AND+taxonomy:9606+AND+reviewed:yes TMC2]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0060013</td><td>righting reflex</td><td>[http://www.uniprot.org/uniprot/?query=gene:SHANK1+AND+taxonomy:9606+AND+reviewed:yes SHANK1], [http://www.uniprot.org/uniprot/?query=gene:PCDH15+AND+taxonomy:9606+AND+reviewed:yes PCDH15], [http://www.uniprot.org/uniprot/?query=gene:FOXP2+AND+taxonomy:9606+AND+reviewed:yes FOXP2], [http://www.uniprot.org/uniprot/?query=gene:GLRB+AND+taxonomy:9606+AND+reviewed:yes GLRB], [http://www.uniprot.org/uniprot/?query=gene:AFG3L2+AND+taxonomy:9606+AND+reviewed:yes AFG3L2], [http://www.uniprot.org/uniprot/?query=gene:GLRA1+AND+taxonomy:9606+AND+reviewed:yes GLRA1]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0097195</td><td>pilomotor reflex</td><td>[http://www.uniprot.org/uniprot/?query=gene:HPN+AND+taxonomy:9606+AND+reviewed:yes HPN], [http://www.uniprot.org/uniprot/?query=gene:ADRA1A+AND+taxonomy:9606+AND+reviewed:yes ADRA1A], [http://www.uniprot.org/uniprot/?query=gene:NPNT+AND+taxonomy:9606+AND+reviewed:yes NPNT]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0002238</td><td>response to molecule of fungal origin</td><td>[http://www.uniprot.org/uniprot/?query=gene:MYD88+AND+taxonomy:9606+AND+reviewed:yes MYD88], [http://www.uniprot.org/uniprot/?query=gene:TLR2+AND+taxonomy:9606+AND+reviewed:yes TLR2]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0009595</td><td>detection of biotic stimulus</td><td>[http://www.uniprot.org/uniprot/?query=gene:NLRP3+AND+taxonomy:9606+AND+reviewed:yes NLRP3], [http://www.uniprot.org/uniprot/?query=gene:NOD1+AND+taxonomy:9606+AND+reviewed:yes NOD1], [http://www.uniprot.org/uniprot/?query=gene:NOD2+AND+taxonomy:9606+AND+reviewed:yes NOD2]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0001562</td><td>response to protozoan</td><td>[http://www.uniprot.org/uniprot/?query=gene:VTCN1+AND+taxonomy:9606+AND+reviewed:yes VTCN1], [http://www.uniprot.org/uniprot/?query=gene:SPN+AND+taxonomy:9606+AND+reviewed:yes SPN], [http://www.uniprot.org/uniprot/?query=gene:IER3+AND+taxonomy:9606+AND+reviewed:yes IER3]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0009624</td><td>response to nematode</td><td>[http://www.uniprot.org/uniprot/?query=gene:IL25+AND+taxonomy:9606+AND+reviewed:yes IL25], [http://www.uniprot.org/uniprot/?query=gene:CYP1A1+AND+taxonomy:9606+AND+reviewed:yes CYP1A1], [http://www.uniprot.org/uniprot/?query=gene:ITLN1+AND+taxonomy:9606+AND+reviewed:yes ITLN1]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0071502</td><td>cellular response to temperature stimulus</td><td>[http://www.uniprot.org/uniprot/?query=gene:HTR1B+AND+taxonomy:9606+AND+reviewed:yes HTR1B], [http://www.uniprot.org/uniprot/?query=gene:HTR2B+AND+taxonomy:9606+AND+reviewed:yes HTR2B]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0010447</td><td>response to acidity</td><td>[http://www.uniprot.org/uniprot/?query=gene:GPR65+AND+taxonomy:9606+AND+reviewed:yes GPR65], [http://www.uniprot.org/uniprot/?query=gene:SLC9A1+AND+taxonomy:9606+AND+reviewed:yes SLC9A1]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0009582</td><td>detection of abiotic stimulus</td><td>[http://www.uniprot.org/uniprot/?query=gene:NPFFR2+AND+taxonomy:9606+AND+reviewed:yes NPFFR2], [http://www.uniprot.org/uniprot/?query=gene:TAC1+AND+taxonomy:9606+AND+reviewed:yes TAC1], [http://www.uniprot.org/uniprot/?query=gene:TIMELESS+AND+taxonomy:9606+AND+reviewed:yes TIMELESS], [http://www.uniprot.org/uniprot/?query=gene:TACR1+AND+taxonomy:9606+AND+reviewed:yes TACR1]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0014878</td><td>response to electrical stimulus involved in regulation of muscle adaptation</td><td>[http://www.uniprot.org/uniprot/?query=gene:RPS6KB1+AND+taxonomy:9606+AND+reviewed:yes RPS6KB1], [http://www.uniprot.org/uniprot/?query=gene:TRIM63+AND+taxonomy:9606+AND+reviewed:yes TRIM63], [http://www.uniprot.org/uniprot/?query=gene:MYOG+AND+taxonomy:9606+AND+reviewed:yes MYOG]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0003032</td><td>detection of oxygen</td><td>[http://www.uniprot.org/uniprot/?query=gene:SOD2+AND+taxonomy:9606+AND+reviewed:yes SOD2], [http://www.uniprot.org/uniprot/?query=gene:CYB5R4+AND+taxonomy:9606+AND+reviewed:yes CYB5R4], [http://www.uniprot.org/uniprot/?query=gene:SLC11A2+AND+taxonomy:9606+AND+reviewed:yes SLC11A2]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0003127</td><td>detection of nodal flow</td><td>[http://www.uniprot.org/uniprot/?query=gene:PKD2+AND+taxonomy:9606+AND+reviewed:yes PKD2], [http://www.uniprot.org/uniprot/?query=gene:PKD1L1+AND+taxonomy:9606+AND+reviewed:yes PKD1L1]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0014850</td><td>response to muscle activity</td><td>[http://www.uniprot.org/uniprot/?query=gene:ADSL+AND+taxonomy:9606+AND+reviewed:yes ADSL], [http://www.uniprot.org/uniprot/?query=gene:FNDC5+AND+taxonomy:9606+AND+reviewed:yes FNDC5], [http://www.uniprot.org/uniprot/?query=gene:MSTN+AND+taxonomy:9606+AND+reviewed:yes MSTN], [http://www.uniprot.org/uniprot/?query=gene:PPARGC1A+AND+taxonomy:9606+AND+reviewed:yes PPARGC1A], [http://www.uniprot.org/uniprot/?query=gene:TENC1+AND+taxonomy:9606+AND+reviewed:yes TENC1], [http://www.uniprot.org/uniprot/?query=gene:HIF1A+AND+taxonomy:9606+AND+reviewed:yes HIF1A], [http://www.uniprot.org/uniprot/?query=gene:CAPN3+AND+taxonomy:9606+AND+reviewed:yes CAPN3]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0014873</td><td>response to muscle activity involved in regulation of muscle adaptation</td><td>[http://www.uniprot.org/uniprot/?query=gene:AGT+AND+taxonomy:9606+AND+reviewed:yes AGT], [http://www.uniprot.org/uniprot/?query=gene:MYOG+AND+taxonomy:9606+AND+reviewed:yes MYOG]</td></tr>
 
<tr class="s2"><td>2</td><td>GO:0014854</td><td>response to inactivity</td><td>[http://www.uniprot.org/uniprot/?query=gene:DRD2+AND+taxonomy:9606+AND+reviewed:yes DRD2], [http://www.uniprot.org/uniprot/?query=gene:IL10+AND+taxonomy:9606+AND+reviewed:yes IL10]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0009410</td><td>response to xenobiotic stimulus</td><td>[http://www.uniprot.org/uniprot/?query=gene:AHR+AND+taxonomy:9606+AND+reviewed:yes AHR], [http://www.uniprot.org/uniprot/?query=gene:SCGB1A1+AND+taxonomy:9606+AND+reviewed:yes SCGB1A1], [http://www.uniprot.org/uniprot/?query=gene:SLITRK5+AND+taxonomy:9606+AND+reviewed:yes SLITRK5], [http://www.uniprot.org/uniprot/?query=gene:GCLC+AND+taxonomy:9606+AND+reviewed:yes GCLC], [http://www.uniprot.org/uniprot/?query=gene:GSS+AND+taxonomy:9606+AND+reviewed:yes GSS], [http://www.uniprot.org/uniprot/?query=gene:GPX1+AND+taxonomy:9606+AND+reviewed:yes GPX1]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0009593</td><td>detection of chemical stimulus</td><td>[http://www.uniprot.org/uniprot/?query=gene:DRGX+AND+taxonomy:9606+AND+reviewed:yes DRGX], [http://www.uniprot.org/uniprot/?query=gene:UGT2A1+AND+taxonomy:9606+AND+reviewed:yes UGT2A1]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0060992</td><td>response to fungicide</td><td>[http://www.uniprot.org/uniprot/?query=gene:GRIN1+AND+taxonomy:9606+AND+reviewed:yes GRIN1], [http://www.uniprot.org/uniprot/?query=gene:CYP17A1+AND+taxonomy:9606+AND+reviewed:yes CYP17A1], [http://www.uniprot.org/uniprot/?query=gene:STAR+AND+taxonomy:9606+AND+reviewed:yes STAR], [http://www.uniprot.org/uniprot/?query=gene:CYP11A1+AND+taxonomy:9606+AND+reviewed:yes CYP11A1]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0019236</td><td>response to pheromone</td><td>[http://www.uniprot.org/uniprot/?query=gene:VN1R17P+AND+taxonomy:9606+AND+reviewed:yes VN1R17P], [http://www.uniprot.org/uniprot/?query=gene:GPR180+AND+taxonomy:9606+AND+reviewed:yes GPR180], [http://www.uniprot.org/uniprot/?query=gene:TMEM145+AND+taxonomy:9606+AND+reviewed:yes TMEM145], [http://www.uniprot.org/uniprot/?query=gene:VN1R3+AND+taxonomy:9606+AND+reviewed:yes VN1R3], [http://www.uniprot.org/uniprot/?query=gene:VN1R2+AND+taxonomy:9606+AND+reviewed:yes VN1R2], [http://www.uniprot.org/uniprot/?query=gene:VN1R1+AND+taxonomy:9606+AND+reviewed:yes VN1R1], [http://www.uniprot.org/uniprot/?query=gene:VN1R4+AND+taxonomy:9606+AND+reviewed:yes VN1R4], [http://www.uniprot.org/uniprot/?query=gene:VN1R5+AND+taxonomy:9606+AND+reviewed:yes VN1R5]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0034465</td><td>response to carbon monoxide</td><td>[http://www.uniprot.org/uniprot/?query=gene:EGR1+AND+taxonomy:9606+AND+reviewed:yes EGR1], [http://www.uniprot.org/uniprot/?query=gene:KCNMA1+AND+taxonomy:9606+AND+reviewed:yes KCNMA1], [http://www.uniprot.org/uniprot/?query=gene:IL10+AND+taxonomy:9606+AND+reviewed:yes IL10]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0045472</td><td>response to ether</td><td>[http://www.uniprot.org/uniprot/?query=gene:TH+AND+taxonomy:9606+AND+reviewed:yes TH], [http://www.uniprot.org/uniprot/?query=gene:OXT+AND+taxonomy:9606+AND+reviewed:yes OXT], [http://www.uniprot.org/uniprot/?query=gene:MDM2+AND+taxonomy:9606+AND+reviewed:yes MDM2], [http://www.uniprot.org/uniprot/?query=gene:CRH+AND+taxonomy:9606+AND+reviewed:yes CRH], [http://www.uniprot.org/uniprot/?query=gene:mdm2+AND+taxonomy:9606+AND+reviewed:yes mdm2]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0046683</td><td>response to organophosphorus</td><td>[http://www.uniprot.org/uniprot/?query=gene:TYMS+AND+taxonomy:9606+AND+reviewed:yes TYMS], [http://www.uniprot.org/uniprot/?query=gene:RFC3+AND+taxonomy:9606+AND+reviewed:yes RFC3], [http://www.uniprot.org/uniprot/?query=gene:AKR1C1+AND+taxonomy:9606+AND+reviewed:yes AKR1C1], [http://www.uniprot.org/uniprot/?query=gene:TRIM16+AND+taxonomy:9606+AND+reviewed:yes TRIM16]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0051597</td><td>response to methylmercury</td><td>[http://www.uniprot.org/uniprot/?query=gene:ARG1+AND+taxonomy:9606+AND+reviewed:yes ARG1], [http://www.uniprot.org/uniprot/?query=gene:CPOX+AND+taxonomy:9606+AND+reviewed:yes CPOX], [http://www.uniprot.org/uniprot/?query=gene:CYP17A1+AND+taxonomy:9606+AND+reviewed:yes CYP17A1], [http://www.uniprot.org/uniprot/?query=gene:ARSB+AND+taxonomy:9606+AND+reviewed:yes ARSB], [http://www.uniprot.org/uniprot/?query=gene:S100B+AND+taxonomy:9606+AND+reviewed:yes S100B]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0010157</td><td>response to chlorate</td><td>[http://www.uniprot.org/uniprot/?query=gene:PTCH1+AND+taxonomy:9606+AND+reviewed:yes PTCH1], [http://www.uniprot.org/uniprot/?query=gene:PDX1+AND+taxonomy:9606+AND+reviewed:yes PDX1]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0034021</td><td>response to silicon dioxide</td><td>[http://www.uniprot.org/uniprot/?query=gene:SOD2+AND+taxonomy:9606+AND+reviewed:yes SOD2], [http://www.uniprot.org/uniprot/?query=gene:SCGB1A1+AND+taxonomy:9606+AND+reviewed:yes SCGB1A1]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0050906</td><td>detection of stimulus involved in sensory perception</td><td>[http://www.uniprot.org/uniprot/?query=gene:PPEF2+AND+taxonomy:9606+AND+reviewed:yes PPEF2], [http://www.uniprot.org/uniprot/?query=gene:PPEF1+AND+taxonomy:9606+AND+reviewed:yes PPEF1]</td></tr>
 
<tr class="s2"><td>2</td><td>GO:0051775</td><td>response to redox state</td><td>[http://www.uniprot.org/uniprot/?query=gene:FKBP1B+AND+taxonomy:9606+AND+reviewed:yes FKBP1B], [http://www.uniprot.org/uniprot/?query=gene:GLRX2+AND+taxonomy:9606+AND+reviewed:yes GLRX2], [http://www.uniprot.org/uniprot/?query=gene:ADH5+AND+taxonomy:9606+AND+reviewed:yes ADH5], [http://www.uniprot.org/uniprot/?query=gene:RNF7+AND+taxonomy:9606+AND+reviewed:yes RNF7], [http://www.uniprot.org/uniprot/?query=gene:SIRT2+AND+taxonomy:9606+AND+reviewed:yes SIRT2], [http://www.uniprot.org/uniprot/?query=gene:RYR2+AND+taxonomy:9606+AND+reviewed:yes RYR2], [http://www.uniprot.org/uniprot/?query=gene:VIMP+AND+taxonomy:9606+AND+reviewed:yes VIMP]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0008105</td><td>asymmetric protein localization</td><td>[http://www.uniprot.org/uniprot/?query=gene:SCRIB+AND+taxonomy:9606+AND+reviewed:yes SCRIB], [http://www.uniprot.org/uniprot/?query=gene:WNT7A+AND+taxonomy:9606+AND+reviewed:yes WNT7A], [http://www.uniprot.org/uniprot/?query=gene:COLQ+AND+taxonomy:9606+AND+reviewed:yes COLQ], [http://www.uniprot.org/uniprot/?query=gene:DYNC2H1+AND+taxonomy:9606+AND+reviewed:yes DYNC2H1]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0031503</td><td>protein complex localization</td><td>[http://www.uniprot.org/uniprot/?query=gene:KIF17+AND+taxonomy:9606+AND+reviewed:yes KIF17], [http://www.uniprot.org/uniprot/?query=gene:BIRC5+AND+taxonomy:9606+AND+reviewed:yes BIRC5], [http://www.uniprot.org/uniprot/?query=gene:DNMT3B+AND+taxonomy:9606+AND+reviewed:yes DNMT3B], [http://www.uniprot.org/uniprot/?query=gene:FKBP4+AND+taxonomy:9606+AND+reviewed:yes FKBP4]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:1901998</td><td>toxin transport</td><td>[http://www.uniprot.org/uniprot/?query=gene:SLC17A3+AND+taxonomy:9606+AND+reviewed:yes SLC17A3], [http://www.uniprot.org/uniprot/?query=gene:LRP6+AND+taxonomy:9606+AND+reviewed:yes LRP6], [http://www.uniprot.org/uniprot/?query=gene:ABCG1+AND+taxonomy:9606+AND+reviewed:yes ABCG1], [http://www.uniprot.org/uniprot/?query=gene:SLC7A8+AND+taxonomy:9606+AND+reviewed:yes SLC7A8]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0007097</td><td>nuclear migration</td><td>[http://www.uniprot.org/uniprot/?query=gene:SYNE2+AND+taxonomy:9606+AND+reviewed:yes SYNE2], [http://www.uniprot.org/uniprot/?query=gene:SUN2+AND+taxonomy:9606+AND+reviewed:yes SUN2], [http://www.uniprot.org/uniprot/?query=gene:PAFAH1B1+AND+taxonomy:9606+AND+reviewed:yes PAFAH1B1], [http://www.uniprot.org/uniprot/?query=gene:CDC42+AND+taxonomy:9606+AND+reviewed:yes CDC42], [http://www.uniprot.org/uniprot/?query=gene:MYH10+AND+taxonomy:9606+AND+reviewed:yes MYH10], [http://www.uniprot.org/uniprot/?query=gene:CDC42BPA+AND+taxonomy:9606+AND+reviewed:yes CDC42BPA]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0051303</td><td>establishment of chromosome localization</td><td>[http://www.uniprot.org/uniprot/?query=gene:NDE1+AND+taxonomy:9606+AND+reviewed:yes NDE1], [http://www.uniprot.org/uniprot/?query=gene:BIRC5+AND+taxonomy:9606+AND+reviewed:yes BIRC5]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0051310</td><td>metaphase plate congression</td><td>[http://www.uniprot.org/uniprot/?query=gene:CENPF+AND+taxonomy:9606+AND+reviewed:yes CENPF], [http://www.uniprot.org/uniprot/?query=gene:SPICE1+AND+taxonomy:9606+AND+reviewed:yes SPICE1]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0051654</td><td>establishment of mitochondrion localization</td><td>[http://www.uniprot.org/uniprot/?query=gene:PVRL2+AND+taxonomy:9606+AND+reviewed:yes PVRL2], [http://www.uniprot.org/uniprot/?query=gene:FEZ1+AND+taxonomy:9606+AND+reviewed:yes FEZ1]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0051683</td><td>establishment of Golgi localization</td><td>[http://www.uniprot.org/uniprot/?query=gene:ARHGAP21+AND+taxonomy:9606+AND+reviewed:yes ARHGAP21], [http://www.uniprot.org/uniprot/?query=gene:COPG1+AND+taxonomy:9606+AND+reviewed:yes COPG1], [http://www.uniprot.org/uniprot/?query=gene:CDC42+AND+taxonomy:9606+AND+reviewed:yes CDC42]</td></tr>
 
<tr class="s1"><td>2</td><td>GO:0009405</td><td>pathogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:TMEM181+AND+taxonomy:9606+AND+reviewed:yes TMEM181], [http://www.uniprot.org/uniprot/?query=gene:MECP2+AND+taxonomy:9606+AND+reviewed:yes MECP2], [http://www.uniprot.org/uniprot/?query=gene:CARM1+AND+taxonomy:9606+AND+reviewed:yes CARM1]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0051702</td><td>interaction with symbiont</td><td>[http://www.uniprot.org/uniprot/?query=gene:GPX1+AND+taxonomy:9606+AND+reviewed:yes GPX1], [http://www.uniprot.org/uniprot/?query=gene:GPX2+AND+taxonomy:9606+AND+reviewed:yes GPX2]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0006808</td><td>regulation of nitrogen utilization</td><td>[http://www.uniprot.org/uniprot/?query=gene:BCL2+AND+taxonomy:9606+AND+reviewed:yes BCL2], [http://www.uniprot.org/uniprot/?query=gene:BAX+AND+taxonomy:9606+AND+reviewed:yes BAX]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0032350</td><td>regulation of hormone metabolic process</td><td>[http://www.uniprot.org/uniprot/?query=gene:FSHR+AND+taxonomy:9606+AND+reviewed:yes FSHR], [http://www.uniprot.org/uniprot/?query=gene:TCF7L2+AND+taxonomy:9606+AND+reviewed:yes TCF7L2]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0060263</td><td>regulation of respiratory burst</td><td>[http://www.uniprot.org/uniprot/?query=gene:RAC2+AND+taxonomy:9606+AND+reviewed:yes RAC2], [http://www.uniprot.org/uniprot/?query=gene:RAC1+AND+taxonomy:9606+AND+reviewed:yes RAC1], [http://www.uniprot.org/uniprot/?query=gene:NOXO1+AND+taxonomy:9606+AND+reviewed:yes NOXO1], [http://www.uniprot.org/uniprot/?query=gene:NOXA1+AND+taxonomy:9606+AND+reviewed:yes NOXA1]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:2000188</td><td>regulation of cholesterol homeostasis</td><td>[http://www.uniprot.org/uniprot/?query=gene:NR1D1+AND+taxonomy:9606+AND+reviewed:yes NR1D1], [http://www.uniprot.org/uniprot/?query=gene:SREBF2+AND+taxonomy:9606+AND+reviewed:yes SREBF2], [http://www.uniprot.org/uniprot/?query=gene:FGFR4+AND+taxonomy:9606+AND+reviewed:yes FGFR4]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0040009</td><td>regulation of growth rate</td><td>[http://www.uniprot.org/uniprot/?query=gene:PARP1+AND+taxonomy:9606+AND+reviewed:yes PARP1], [http://www.uniprot.org/uniprot/?query=gene:WRN+AND+taxonomy:9606+AND+reviewed:yes WRN], [http://www.uniprot.org/uniprot/?query=gene:BNIPL+AND+taxonomy:9606+AND+reviewed:yes BNIPL]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0045927</td><td>positive regulation of growth</td><td>[http://www.uniprot.org/uniprot/?query=gene:TMX1+AND+taxonomy:9606+AND+reviewed:yes TMX1], [http://www.uniprot.org/uniprot/?query=gene:TFCP2L1+AND+taxonomy:9606+AND+reviewed:yes TFCP2L1], [http://www.uniprot.org/uniprot/?query=gene:HYAL1+AND+taxonomy:9606+AND+reviewed:yes HYAL1], [http://www.uniprot.org/uniprot/?query=gene:WFS1+AND+taxonomy:9606+AND+reviewed:yes WFS1], [http://www.uniprot.org/uniprot/?query=gene:PPM1F+AND+taxonomy:9606+AND+reviewed:yes PPM1F]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0042753</td><td>positive regulation of circadian rhythm</td><td>[http://www.uniprot.org/uniprot/?query=gene:BTRC+AND+taxonomy:9606+AND+reviewed:yes BTRC], [http://www.uniprot.org/uniprot/?query=gene:FBXW11+AND+taxonomy:9606+AND+reviewed:yes FBXW11]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0090083</td><td>regulation of inclusion body assembly</td><td>[http://www.uniprot.org/uniprot/?query=gene:SNCAIP+AND+taxonomy:9606+AND+reviewed:yes SNCAIP], [http://www.uniprot.org/uniprot/?query=gene:BAG5+AND+taxonomy:9606+AND+reviewed:yes BAG5]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:1901888</td><td>regulation of cell junction assembly</td><td>[http://www.uniprot.org/uniprot/?query=gene:RAPGEF1+AND+taxonomy:9606+AND+reviewed:yes RAPGEF1], [http://www.uniprot.org/uniprot/?query=gene:RAPGEF2+AND+taxonomy:9606+AND+reviewed:yes RAPGEF2], [http://www.uniprot.org/uniprot/?query=gene:RAP1B+AND+taxonomy:9606+AND+reviewed:yes RAP1B], [http://www.uniprot.org/uniprot/?query=gene:RAP1A+AND+taxonomy:9606+AND+reviewed:yes RAP1A]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:2001023</td><td>regulation of response to drug</td><td>[http://www.uniprot.org/uniprot/?query=gene:ADIRF+AND+taxonomy:9606+AND+reviewed:yes ADIRF], [http://www.uniprot.org/uniprot/?query=gene:GABRA4+AND+taxonomy:9606+AND+reviewed:yes GABRA4]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0048070</td><td>regulation of developmental pigmentation</td><td>[http://www.uniprot.org/uniprot/?query=gene:BCL2L11+AND+taxonomy:9606+AND+reviewed:yes BCL2L11], [http://www.uniprot.org/uniprot/?query=gene:EDN3+AND+taxonomy:9606+AND+reviewed:yes EDN3], [http://www.uniprot.org/uniprot/?query=gene:KIT+AND+taxonomy:9606+AND+reviewed:yes KIT], [http://www.uniprot.org/uniprot/?query=gene:VPS33A+AND+taxonomy:9606+AND+reviewed:yes VPS33A]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0032878</td><td>regulation of establishment or maintenance of cell polarity</td><td>[http://www.uniprot.org/uniprot/?query=gene:IGF1+AND+taxonomy:9606+AND+reviewed:yes IGF1], [http://www.uniprot.org/uniprot/?query=gene:LLGL2+AND+taxonomy:9606+AND+reviewed:yes LLGL2], [http://www.uniprot.org/uniprot/?query=gene:TEK+AND+taxonomy:9606+AND+reviewed:yes TEK]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0032970</td><td>regulation of actin filament-based process</td><td>[http://www.uniprot.org/uniprot/?query=gene:PARD3+AND+taxonomy:9606+AND+reviewed:yes PARD3], [http://www.uniprot.org/uniprot/?query=gene:CNN2+AND+taxonomy:9606+AND+reviewed:yes CNN2], [http://www.uniprot.org/uniprot/?query=gene:FRMD6+AND+taxonomy:9606+AND+reviewed:yes FRMD6]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0060968</td><td>regulation of gene silencing</td><td>[http://www.uniprot.org/uniprot/?query=gene:HIST1H3A+AND+taxonomy:9606+AND+reviewed:yes HIST1H3A], [http://www.uniprot.org/uniprot/?query=gene:CDK2+AND+taxonomy:9606+AND+reviewed:yes CDK2]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0034103</td><td>regulation of tissue remodeling</td><td>[http://www.uniprot.org/uniprot/?query=gene:CST3+AND+taxonomy:9606+AND+reviewed:yes CST3], [http://www.uniprot.org/uniprot/?query=gene:TP53+AND+taxonomy:9606+AND+reviewed:yes TP53], [http://www.uniprot.org/uniprot/?query=gene:THBS4+AND+taxonomy:9606+AND+reviewed:yes THBS4]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0042634</td><td>regulation of hair cycle</td><td>[http://www.uniprot.org/uniprot/?query=gene:NIPBL+AND+taxonomy:9606+AND+reviewed:yes NIPBL], [http://www.uniprot.org/uniprot/?query=gene:FA2H+AND+taxonomy:9606+AND+reviewed:yes FA2H]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0051917</td><td>regulation of fibrinolysis</td><td>[http://www.uniprot.org/uniprot/?query=gene:APOH+AND+taxonomy:9606+AND+reviewed:yes APOH], [http://www.uniprot.org/uniprot/?query=gene:FAP+AND+taxonomy:9606+AND+reviewed:yes FAP]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0097006</td><td>regulation of plasma lipoprotein particle levels</td><td>[http://www.uniprot.org/uniprot/?query=gene:LPCAT3+AND+taxonomy:9606+AND+reviewed:yes LPCAT3], [http://www.uniprot.org/uniprot/?query=gene:DGAT2+AND+taxonomy:9606+AND+reviewed:yes DGAT2]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:1900271</td><td>regulation of long-term synaptic potentiation</td><td>[http://www.uniprot.org/uniprot/?query=gene:NLGN3+AND+taxonomy:9606+AND+reviewed:yes NLGN3], [http://www.uniprot.org/uniprot/?query=gene:SHANK3+AND+taxonomy:9606+AND+reviewed:yes SHANK3]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0080154</td><td>regulation of fertilization</td><td>[http://www.uniprot.org/uniprot/?query=gene:RNASE10+AND+taxonomy:9606+AND+reviewed:yes RNASE10], [http://www.uniprot.org/uniprot/?query=gene:ASUN+AND+taxonomy:9606+AND+reviewed:yes ASUN], [http://www.uniprot.org/uniprot/?query=gene:PLCB1+AND+taxonomy:9606+AND+reviewed:yes PLCB1]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0001505</td><td>regulation of neurotransmitter levels</td><td>[http://www.uniprot.org/uniprot/?query=gene:ZNF219+AND+taxonomy:9606+AND+reviewed:yes ZNF219], [http://www.uniprot.org/uniprot/?query=gene:GABRA2+AND+taxonomy:9606+AND+reviewed:yes GABRA2], [http://www.uniprot.org/uniprot/?query=gene:PDE1B+AND+taxonomy:9606+AND+reviewed:yes PDE1B], [http://www.uniprot.org/uniprot/?query=gene:DVL1+AND+taxonomy:9606+AND+reviewed:yes DVL1]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0003073</td><td>regulation of systemic arterial blood pressure</td><td>[http://www.uniprot.org/uniprot/?query=gene:FSHR+AND+taxonomy:9606+AND+reviewed:yes FSHR], [http://www.uniprot.org/uniprot/?query=gene:GSK3A+AND+taxonomy:9606+AND+reviewed:yes GSK3A], [http://www.uniprot.org/uniprot/?query=gene:DDAH1+AND+taxonomy:9606+AND+reviewed:yes DDAH1], [http://www.uniprot.org/uniprot/?query=gene:PLCB3+AND+taxonomy:9606+AND+reviewed:yes PLCB3], [http://www.uniprot.org/uniprot/?query=gene:AR+AND+taxonomy:9606+AND+reviewed:yes AR]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0014916</td><td>regulation of lung blood pressure</td><td>[http://www.uniprot.org/uniprot/?query=gene:GCH1+AND+taxonomy:9606+AND+reviewed:yes GCH1], [http://www.uniprot.org/uniprot/?query=gene:BMPR2+AND+taxonomy:9606+AND+reviewed:yes BMPR2]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0010817</td><td>regulation of hormone levels</td><td>[http://www.uniprot.org/uniprot/?query=gene:BCAT2+AND+taxonomy:9606+AND+reviewed:yes BCAT2], [http://www.uniprot.org/uniprot/?query=gene:FOXA3+AND+taxonomy:9606+AND+reviewed:yes FOXA3], [http://www.uniprot.org/uniprot/?query=gene:FOXA2+AND+taxonomy:9606+AND+reviewed:yes FOXA2], [http://www.uniprot.org/uniprot/?query=gene:SOX8+AND+taxonomy:9606+AND+reviewed:yes SOX8]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0032098</td><td>regulation of appetite</td><td>[http://www.uniprot.org/uniprot/?query=gene:HTR2C+AND+taxonomy:9606+AND+reviewed:yes HTR2C], [http://www.uniprot.org/uniprot/?query=gene:GALP+AND+taxonomy:9606+AND+reviewed:yes GALP], [http://www.uniprot.org/uniprot/?query=gene:SLC22A3+AND+taxonomy:9606+AND+reviewed:yes SLC22A3], [http://www.uniprot.org/uniprot/?query=gene:HTR4+AND+taxonomy:9606+AND+reviewed:yes HTR4], [http://www.uniprot.org/uniprot/?query=gene:POMC+AND+taxonomy:9606+AND+reviewed:yes POMC]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0045838</td><td>positive regulation of membrane potential</td><td>[http://www.uniprot.org/uniprot/?query=gene:PIAS3+AND+taxonomy:9606+AND+reviewed:yes PIAS3], [http://www.uniprot.org/uniprot/?query=gene:ANK3+AND+taxonomy:9606+AND+reviewed:yes ANK3], [http://www.uniprot.org/uniprot/?query=gene:GIMAP5+AND+taxonomy:9606+AND+reviewed:yes GIMAP5]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0060075</td><td>regulation of resting membrane potential</td><td>[http://www.uniprot.org/uniprot/?query=gene:KCNJ10+AND+taxonomy:9606+AND+reviewed:yes KCNJ10], [http://www.uniprot.org/uniprot/?query=gene:PSEN1+AND+taxonomy:9606+AND+reviewed:yes PSEN1], [http://www.uniprot.org/uniprot/?query=gene:KCNJ2+AND+taxonomy:9606+AND+reviewed:yes KCNJ2]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0086036</td><td>regulation of cardiac muscle cell membrane potential</td><td>[http://www.uniprot.org/uniprot/?query=gene:ATP2A2+AND+taxonomy:9606+AND+reviewed:yes ATP2A2], [http://www.uniprot.org/uniprot/?query=gene:TRDN+AND+taxonomy:9606+AND+reviewed:yes TRDN], [http://www.uniprot.org/uniprot/?query=gene:EHD3+AND+taxonomy:9606+AND+reviewed:yes EHD3], [http://www.uniprot.org/uniprot/?query=gene:PLN+AND+taxonomy:9606+AND+reviewed:yes PLN]</td></tr>
 
<tr class="s1"><td>3</td><td>GO:0050803</td><td>regulation of synapse structure and activity</td><td>[http://www.uniprot.org/uniprot/?query=gene:PPT1+AND+taxonomy:9606+AND+reviewed:yes PPT1], [http://www.uniprot.org/uniprot/?query=gene:APP+AND+taxonomy:9606+AND+reviewed:yes APP], [http://www.uniprot.org/uniprot/?query=gene:SYNGAP1+AND+taxonomy:9606+AND+reviewed:yes SYNGAP1]</td></tr>
 
<tr class="s2"><td>3</td><td>GO:0040030</td><td>regulation of molecular function, epigenetic</td><td>[http://www.uniprot.org/uniprot/?query=gene:ASIP+AND+taxonomy:9606+AND+reviewed:yes ASIP], [http://www.uniprot.org/uniprot/?query=gene:CTCF+AND+taxonomy:9606+AND+reviewed:yes CTCF]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0051100</td><td>negative regulation of binding</td><td>[http://www.uniprot.org/uniprot/?query=gene:CYP2D6+AND+taxonomy:9606+AND+reviewed:yes CYP2D6], [http://www.uniprot.org/uniprot/?query=gene:YBX2+AND+taxonomy:9606+AND+reviewed:yes YBX2], [http://www.uniprot.org/uniprot/?query=gene:P2RY1+AND+taxonomy:9606+AND+reviewed:yes P2RY1]</td></tr>
 
<tr class="s2"><td>4</td><td>GO:0010324</td><td>membrane invagination</td><td>[http://www.uniprot.org/uniprot/?query=gene:FCHO2+AND+taxonomy:9606+AND+reviewed:yes FCHO2], [http://www.uniprot.org/uniprot/?query=gene:FNBP1L+AND+taxonomy:9606+AND+reviewed:yes FNBP1L]</td></tr>
 
<tr class="s1"><td>4</td><td>GO:0016557</td><td>peroxisome membrane biogenesis</td><td>[http://www.uniprot.org/uniprot/?query=gene:PEX11A+AND+taxonomy:9606+AND+reviewed:yes PEX11A], [http://www.uniprot.org/uniprot/?query=gene:PEX19+AND+taxonomy:9606+AND+reviewed:yes PEX19], [http://www.uniprot.org/uniprot/?query=gene:PEX16+AND+taxonomy:9606+AND+reviewed:yes PEX16], [http://www.uniprot.org/uniprot/?query=gene:PEX3+AND+taxonomy:9606+AND+reviewed:yes PEX3]</td></tr>
 
</table>
 
  
 +
'''Keep your systems simple.''' I would avoid choosing systems/processes that integrate sensory, nervous, hormonal and cellular components. This may become too complex. Narrowing it down, to a manageable "subsystem" is a valuable exercise in itself. Such a system may implement
 +
*integrating input,
 +
*transmitting input signals to their effectors,
 +
*regulating the process,
 +
*providing resources,
 +
*defining setpoints,
 +
*assembling or disassembling the system,
 +
*mediating interactions with other systems,
 +
*or similar...
  
 +
'''Keep your systems manageable.''' When considering how many genes are associated with a system, check the taxon section of the relevant GO terms' statistic on QuickGO. The number of genes involved in the process in humans is likely as large as the largest number for ANY species - although many of the human genes may not have been annotated for that process (yet). For example, if the mouse (mus musculus) has 20 annotated genes and humans have only two, that probably does not mean humans can achieve with only two genes that for which the mouse needs twenty. In this situation, looking for orthologues of mouse genes should lead you to human candidate genes. But as a corollary, if the mouse has many, many genes annotated, that particular process might not be so suitable for this project after all.
  
  
 +
{{Vspace}}
  
 
==Resources==
 
==Resources==

Latest revision as of 23:56, 26 November 2016

Constructing the GO term table



 

Extracting gene functions from GO and GOA

The table of selected biological process GO terms a starting point for system definition and gene selection.


 

The objective of selecting GO terms from the ontology is to find nodes that have a small number of genes associated to them (or their children). If the number of annotated genes is too small, not enough may be known about the system to usefully model it. If the number is too large, modelling the system will be too time consuming for the scope of a class project. It is also highly likely that the system should actually be broken down into subsystems, which ought to be modelled individually. I have chosen GO terms with from three to five annotated genes as a cutoff that seems workable.

Roughly, this selection works as follows:

1. Retrieve the ontology terms, and the list of annotated human genes from the database.
2. Remove all terms that are not in the biological process ontology.
3. Associate all human genes with their respective terms.
4. Remove all terms that are leafs (no children) AND have no genes annotated.
5. For each term, find all descendants.
6. Of all descendants, collect all annotated genes.
7. Make the list of genes unique. This is important since there may be more than one path to a gene and we don't want to double count it.
8. Store the number of genes associated to a term and its descendants.
9. Select terms that have 3 to 5 associated genes.
10. Remove terms that contain certain keywords that may make the process less suitable for our purposes, such as "development", "morphogenesis", "behavior".
11. Write the remaining terms into a Wiki table format, with links to GO terms and genes.

Details below.


 

Creation of the Process Table

The Process Table was created in the following steps:

1. I downloaded the most recent version of goa_human.gaf from the GOA repository at the EBI, released on November 22. 2016. The file contains gene names and GO terms - here is one line of the contents (selected columns):
UniProtID  GeneSymbol  GOtermID    Reference       EvidenceCode  Description                taxID
Q14209     E2F2        GO:0051726  GO_REF:0000019  IEA	          Transcription factor E2F2  taxon:9606		
2. I downloaded the GO term file go-basic.obo from its repository at GO - the Gene Ontology Consortium. It contains the actual ontology terms (45,896 terms), they look like this (some information omitted).
[Term]
id: GO:0051726
name: regulation of cell cycle
namespace: biological_process
def: "Any process that modulates the rate or extent of progression through the cell cycle." [GOC:ai, GOC:dph, GOC:tb]
is_a: GO:0050794 ! regulation of cellular process
relationship: regulates GO:0007049 ! cell cycle
Note the is_a relationship that points to the parent term, GO:0050794, of which GO:0051726 is a specialization. This means: the terms have parent-associations listed with them, but don't list child terms. This means we can go up to the root from each term, but we can't descend. We need to record the child terms for each node, to be able to navigate both up and down through the ontology.
3. Open this file in R and read all the terms that are labelled as namespace: biological_process into a data frame storing ID, name, definition, and parent term IDs. These are 29,309 terms. Then add each term ID to its parent terms as a child term.
4. Open the human GOA file and read all gene annotations into a data frame. These are 392,942. That's a lot - we expect at least three annotations for each of the 19,225 genes that GOA currently contains, one for each ontology, but we find on average 20 annotations. Next, add each gene symbol to the term data frame, if the annotation's GO ID is in our set.
5. Next, remove all terms that are leaves (i.e. they don't have children), AND have no annotated genes. These are terms that might be specific to fungi, prokaryotes, viruses or similar. Since our goal is to count the number of genes associated with each term, those can't contribute since their own count is zero. Deleting those nodes obviously creates new leaves in the ontology, so this process has to be iterated, until no more nodes can be removed. This deletes 11,733 terms from the ontology.
6. We need a function that finds all descendants of a term. In order to find and visit all descendants, start from a term and put its child(ren) into a queue. While the queue is not empty, remove the first ID from the queue, and add those of its children to the queue that we haven't visited before.
7. For each term, count all genes that are associated to it or to any of its descendants. The root term, GO:0008150 has 17,030 associated genes.
8. Next, select all terms that have from three to five associated genes AND contain none of a list of keywords. These keywords include: "proliferation", "development", "morphogenesis", "regression", "induction", "maturation", "formation", "growth", "*bolic process", "biosynthetic process", and "behavior". I feel that even though the GO terms may be manageable, the actual system would likely contain an unwieldy number of genes. I also removed all "positive regulation of ...", and "negative regulation of ..." terms. These always have a parent term: "regulation of ..." and that term would be the right one to consider.
9. Finally, the 1,224 selected terms were written into a table in an editable Wiki code format, including links to GO and UniProt.


 

How to use the table to adopt a function and define a "system" for the project

 

I have randomly chosen a term – GO:0001845 (phagolysosome assembly) – to illustrate the process:


 
1. Browse the table and find a function that interests you. It's very diverse and will give you a good first sense of the complexity of functions in the cell and our state of knowledge about them. Have a look at the term information. There is probably a link to an associated "GONUTS" page with more information.
2. Look at the function information available when you follow the links of the annotated genes to UniProt. Most of these genes have more than one GO term annotated to them, and taken together, these GO terms shed more light on how the "system" is more and different than its annotated GO terms. For example from the genes in GO:0001845 let's look at "SRPX". This gene codes for P78539 (SRPX). Here are the annotated processes in which this protein participates:
Just looking at these processes tells me a lot. The annotation is for one protein, but it is implied in several aspects of biology. Some of them are causal to others, and some of them are generalizations. Here, the phagolysosome needs to be assembled in order to function. Once it has been made, this enables stress response, and contact inhibition, likely via apoptotic pathways and autophagy. This phagolysosome assembly sounds like a good system to work on. But is the term too broad, or too narrow? Could I find a better name for it?
3. Follow the link to the phagolysosome assembly GOterm page at QuickGO, and explore the tabs that contain the Ancestor Chart and the Child Terms:
Relationship
to GO:0001845
Child Term Child Term Name
Part of GO:0090384 phagosome-lysosome docking
Part of GO:0090385 phagosome-lysosome fusion
Is a GO:0090387 phagolysosome assembly involved in apoptotic cell clearance


 

Explore how many proteins are annotated to this term. There are probably VERY many - so set a taxon filter on this table (taxon: 9606) to view only human proteins.


 

As a result of my first exploration I see:

  • There are probably around 20 proteins that I'll need to cnsider as system components;
  • most of them are RAB genes which have a reasonably well understood function. It will be interesting to find out how this function enables the process;
  • The mechanism of this system will likely include proteins that are specific to this process, and others that are involved in membrane fusion in a general sense and are recruited to this specific task.

This looks like an good starting point to define the components of a system. For now, I would be oK with calling it the "Phagosome / Lysosome Fusion System".


 

Considerations for choosing a system

Keep your systems simple. I would avoid choosing systems/processes that integrate sensory, nervous, hormonal and cellular components. This may become too complex. Narrowing it down, to a manageable "subsystem" is a valuable exercise in itself. Such a system may implement

  • integrating input,
  • transmitting input signals to their effectors,
  • regulating the process,
  • providing resources,
  • defining setpoints,
  • assembling or disassembling the system,
  • mediating interactions with other systems,
  • or similar...

Keep your systems manageable. When considering how many genes are associated with a system, check the taxon section of the relevant GO terms' statistic on QuickGO. The number of genes involved in the process in humans is likely as large as the largest number for ANY species - although many of the human genes may not have been annotated for that process (yet). For example, if the mouse (mus musculus) has 20 annotated genes and humans have only two, that probably does not mean humans can achieve with only two genes that for which the mouse needs twenty. In this situation, looking for orthologues of mouse genes should lead you to human candidate genes. But as a corollary, if the mouse has many, many genes annotated, that particular process might not be so suitable for this project after all.


 

Resources