aurelian 0.3.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- aurelian/__init__.py +9 -0
- aurelian/agents/__init__.py +0 -0
- aurelian/agents/amigo/__init__.py +3 -0
- aurelian/agents/amigo/amigo_agent.py +77 -0
- aurelian/agents/amigo/amigo_config.py +85 -0
- aurelian/agents/amigo/amigo_evals.py +73 -0
- aurelian/agents/amigo/amigo_gradio.py +52 -0
- aurelian/agents/amigo/amigo_mcp.py +152 -0
- aurelian/agents/amigo/amigo_tools.py +152 -0
- aurelian/agents/biblio/__init__.py +42 -0
- aurelian/agents/biblio/biblio_agent.py +94 -0
- aurelian/agents/biblio/biblio_config.py +40 -0
- aurelian/agents/biblio/biblio_gradio.py +67 -0
- aurelian/agents/biblio/biblio_mcp.py +115 -0
- aurelian/agents/biblio/biblio_tools.py +164 -0
- aurelian/agents/biblio_agent.py +46 -0
- aurelian/agents/checklist/__init__.py +44 -0
- aurelian/agents/checklist/checklist_agent.py +85 -0
- aurelian/agents/checklist/checklist_config.py +28 -0
- aurelian/agents/checklist/checklist_gradio.py +70 -0
- aurelian/agents/checklist/checklist_mcp.py +86 -0
- aurelian/agents/checklist/checklist_tools.py +141 -0
- aurelian/agents/checklist/content/checklists.yaml +7 -0
- aurelian/agents/checklist/content/streams.csv +136 -0
- aurelian/agents/checklist_agent.py +40 -0
- aurelian/agents/chemistry/__init__.py +3 -0
- aurelian/agents/chemistry/chemistry_agent.py +46 -0
- aurelian/agents/chemistry/chemistry_config.py +71 -0
- aurelian/agents/chemistry/chemistry_evals.py +79 -0
- aurelian/agents/chemistry/chemistry_gradio.py +50 -0
- aurelian/agents/chemistry/chemistry_mcp.py +120 -0
- aurelian/agents/chemistry/chemistry_tools.py +121 -0
- aurelian/agents/chemistry/image_agent.py +15 -0
- aurelian/agents/d4d/__init__.py +30 -0
- aurelian/agents/d4d/d4d_agent.py +72 -0
- aurelian/agents/d4d/d4d_config.py +46 -0
- aurelian/agents/d4d/d4d_gradio.py +58 -0
- aurelian/agents/d4d/d4d_mcp.py +71 -0
- aurelian/agents/d4d/d4d_tools.py +157 -0
- aurelian/agents/d4d_agent.py +64 -0
- aurelian/agents/diagnosis/__init__.py +33 -0
- aurelian/agents/diagnosis/diagnosis_agent.py +53 -0
- aurelian/agents/diagnosis/diagnosis_config.py +48 -0
- aurelian/agents/diagnosis/diagnosis_evals.py +76 -0
- aurelian/agents/diagnosis/diagnosis_gradio.py +52 -0
- aurelian/agents/diagnosis/diagnosis_mcp.py +141 -0
- aurelian/agents/diagnosis/diagnosis_tools.py +204 -0
- aurelian/agents/diagnosis_agent.py +28 -0
- aurelian/agents/draw/__init__.py +3 -0
- aurelian/agents/draw/draw_agent.py +39 -0
- aurelian/agents/draw/draw_config.py +26 -0
- aurelian/agents/draw/draw_gradio.py +50 -0
- aurelian/agents/draw/draw_mcp.py +94 -0
- aurelian/agents/draw/draw_tools.py +100 -0
- aurelian/agents/draw/judge_agent.py +18 -0
- aurelian/agents/filesystem/__init__.py +0 -0
- aurelian/agents/filesystem/filesystem_config.py +27 -0
- aurelian/agents/filesystem/filesystem_gradio.py +49 -0
- aurelian/agents/filesystem/filesystem_mcp.py +89 -0
- aurelian/agents/filesystem/filesystem_tools.py +95 -0
- aurelian/agents/filesystem/py.typed +0 -0
- aurelian/agents/github/__init__.py +0 -0
- aurelian/agents/github/github_agent.py +83 -0
- aurelian/agents/github/github_cli.py +248 -0
- aurelian/agents/github/github_config.py +22 -0
- aurelian/agents/github/github_gradio.py +152 -0
- aurelian/agents/github/github_mcp.py +252 -0
- aurelian/agents/github/github_tools.py +408 -0
- aurelian/agents/github/github_tools.py.tmp +413 -0
- aurelian/agents/goann/__init__.py +13 -0
- aurelian/agents/goann/documents/Transcription_Factors_Annotation_Guidelines.md +1000 -0
- aurelian/agents/goann/documents/Transcription_Factors_Annotation_Guidelines.pdf +0 -0
- aurelian/agents/goann/documents/Transcription_Factors_Annotation_Guidelines_Paper.md +693 -0
- aurelian/agents/goann/documents/Transcription_Factors_Annotation_Guidelines_Paper.pdf +0 -0
- aurelian/agents/goann/goann_agent.py +90 -0
- aurelian/agents/goann/goann_config.py +90 -0
- aurelian/agents/goann/goann_evals.py +104 -0
- aurelian/agents/goann/goann_gradio.py +62 -0
- aurelian/agents/goann/goann_mcp.py +0 -0
- aurelian/agents/goann/goann_tools.py +65 -0
- aurelian/agents/gocam/__init__.py +43 -0
- aurelian/agents/gocam/documents/DNA-binding transcription factor activity annotation guidelines.docx +0 -0
- aurelian/agents/gocam/documents/DNA-binding transcription factor activity annotation guidelines.pdf +0 -0
- aurelian/agents/gocam/documents/DNA-binding_transcription_factor_activity_annotation_guidelines.md +100 -0
- aurelian/agents/gocam/documents/E3 ubiquitin ligases.docx +0 -0
- aurelian/agents/gocam/documents/E3 ubiquitin ligases.pdf +0 -0
- aurelian/agents/gocam/documents/E3_ubiquitin_ligases.md +134 -0
- aurelian/agents/gocam/documents/GO-CAM annotation guidelines README.docx +0 -0
- aurelian/agents/gocam/documents/GO-CAM annotation guidelines README.pdf +0 -0
- aurelian/agents/gocam/documents/GO-CAM modelling guidelines TO DO.docx +0 -0
- aurelian/agents/gocam/documents/GO-CAM modelling guidelines TO DO.pdf +0 -0
- aurelian/agents/gocam/documents/GO-CAM_annotation_guidelines_README.md +1 -0
- aurelian/agents/gocam/documents/GO-CAM_modelling_guidelines_TO_DO.md +3 -0
- aurelian/agents/gocam/documents/How to annotate complexes in GO-CAM.docx +0 -0
- aurelian/agents/gocam/documents/How to annotate complexes in GO-CAM.pdf +0 -0
- aurelian/agents/gocam/documents/How to annotate molecular adaptors.docx +0 -0
- aurelian/agents/gocam/documents/How to annotate molecular adaptors.pdf +0 -0
- aurelian/agents/gocam/documents/How to annotate sequestering proteins.docx +0 -0
- aurelian/agents/gocam/documents/How to annotate sequestering proteins.pdf +0 -0
- aurelian/agents/gocam/documents/How_to_annotate_complexes_in_GO-CAM.md +29 -0
- aurelian/agents/gocam/documents/How_to_annotate_molecular_adaptors.md +31 -0
- aurelian/agents/gocam/documents/How_to_annotate_sequestering_proteins.md +42 -0
- aurelian/agents/gocam/documents/Molecular adaptor activity.docx +0 -0
- aurelian/agents/gocam/documents/Molecular adaptor activity.pdf +0 -0
- aurelian/agents/gocam/documents/Molecular carrier activity.docx +0 -0
- aurelian/agents/gocam/documents/Molecular carrier activity.pdf +0 -0
- aurelian/agents/gocam/documents/Molecular_adaptor_activity.md +51 -0
- aurelian/agents/gocam/documents/Molecular_carrier_activity.md +41 -0
- aurelian/agents/gocam/documents/Protein sequestering activity.docx +0 -0
- aurelian/agents/gocam/documents/Protein sequestering activity.pdf +0 -0
- aurelian/agents/gocam/documents/Protein_sequestering_activity.md +50 -0
- aurelian/agents/gocam/documents/Signaling receptor activity annotation guidelines.docx +0 -0
- aurelian/agents/gocam/documents/Signaling receptor activity annotation guidelines.pdf +0 -0
- aurelian/agents/gocam/documents/Signaling_receptor_activity_annotation_guidelines.md +187 -0
- aurelian/agents/gocam/documents/Transcription coregulator activity.docx +0 -0
- aurelian/agents/gocam/documents/Transcription coregulator activity.pdf +0 -0
- aurelian/agents/gocam/documents/Transcription_coregulator_activity.md +36 -0
- aurelian/agents/gocam/documents/Transporter activity annotation annotation guidelines.docx +0 -0
- aurelian/agents/gocam/documents/Transporter activity annotation annotation guidelines.pdf +0 -0
- aurelian/agents/gocam/documents/Transporter_activity_annotation_annotation_guidelines.md +43 -0
- Regulatory Processes in GO-CAM.docx +0 -0
- Regulatory Processes in GO-CAM.pdf +0 -0
- aurelian/agents/gocam/documents/WIP_-_Regulation_and_Regulatory_Processes_in_GO-CAM.md +31 -0
- aurelian/agents/gocam/documents/md/DNA-binding_transcription_factor_activity_annotation_guidelines.md +131 -0
- aurelian/agents/gocam/documents/md/E3_ubiquitin_ligases.md +166 -0
- aurelian/agents/gocam/documents/md/GO-CAM_annotation_guidelines_README.md +1 -0
- aurelian/agents/gocam/documents/md/GO-CAM_modelling_guidelines_TO_DO.md +5 -0
- aurelian/agents/gocam/documents/md/How_to_annotate_complexes_in_GO-CAM.md +28 -0
- aurelian/agents/gocam/documents/md/How_to_annotate_molecular_adaptors.md +19 -0
- aurelian/agents/gocam/documents/md/How_to_annotate_sequestering_proteins.md +38 -0
- aurelian/agents/gocam/documents/md/Molecular_adaptor_activity.md +52 -0
- aurelian/agents/gocam/documents/md/Molecular_carrier_activity.md +59 -0
- aurelian/agents/gocam/documents/md/Protein_sequestering_activity.md +52 -0
- aurelian/agents/gocam/documents/md/Signaling_receptor_activity_annotation_guidelines.md +271 -0
- aurelian/agents/gocam/documents/md/Transcription_coregulator_activity.md +54 -0
- aurelian/agents/gocam/documents/md/Transporter_activity_annotation_annotation_guidelines.md +38 -0
- aurelian/agents/gocam/documents/md/WIP_-_Regulation_and_Regulatory_Processes_in_GO-CAM.md +39 -0
- aurelian/agents/gocam/documents/pandoc_md/Signaling_receptor_activity_annotation_guidelines.md +334 -0
- aurelian/agents/gocam/gocam_agent.py +240 -0
- aurelian/agents/gocam/gocam_config.py +85 -0
- aurelian/agents/gocam/gocam_curator_agent.py +46 -0
- aurelian/agents/gocam/gocam_evals.py +67 -0
- aurelian/agents/gocam/gocam_gradio.py +89 -0
- aurelian/agents/gocam/gocam_mcp.py +224 -0
- aurelian/agents/gocam/gocam_tools.py +294 -0
- aurelian/agents/linkml/__init__.py +0 -0
- aurelian/agents/linkml/linkml_agent.py +62 -0
- aurelian/agents/linkml/linkml_config.py +48 -0
- aurelian/agents/linkml/linkml_evals.py +66 -0
- aurelian/agents/linkml/linkml_gradio.py +45 -0
- aurelian/agents/linkml/linkml_mcp.py +186 -0
- aurelian/agents/linkml/linkml_tools.py +102 -0
- aurelian/agents/literature/__init__.py +3 -0
- aurelian/agents/literature/literature_agent.py +55 -0
- aurelian/agents/literature/literature_config.py +35 -0
- aurelian/agents/literature/literature_gradio.py +52 -0
- aurelian/agents/literature/literature_mcp.py +174 -0
- aurelian/agents/literature/literature_tools.py +182 -0
- aurelian/agents/monarch/__init__.py +25 -0
- aurelian/agents/monarch/monarch_agent.py +44 -0
- aurelian/agents/monarch/monarch_config.py +45 -0
- aurelian/agents/monarch/monarch_gradio.py +51 -0
- aurelian/agents/monarch/monarch_mcp.py +65 -0
- aurelian/agents/monarch/monarch_tools.py +113 -0
- aurelian/agents/oak/__init__.py +0 -0
- aurelian/agents/oak/oak_config.py +27 -0
- aurelian/agents/oak/oak_gradio.py +57 -0
- aurelian/agents/ontology_mapper/__init__.py +31 -0
- aurelian/agents/ontology_mapper/ontology_mapper_agent.py +56 -0
- aurelian/agents/ontology_mapper/ontology_mapper_config.py +50 -0
- aurelian/agents/ontology_mapper/ontology_mapper_evals.py +108 -0
- aurelian/agents/ontology_mapper/ontology_mapper_gradio.py +58 -0
- aurelian/agents/ontology_mapper/ontology_mapper_mcp.py +81 -0
- aurelian/agents/ontology_mapper/ontology_mapper_tools.py +147 -0
- aurelian/agents/phenopackets/__init__.py +3 -0
- aurelian/agents/phenopackets/phenopackets_agent.py +58 -0
- aurelian/agents/phenopackets/phenopackets_config.py +72 -0
- aurelian/agents/phenopackets/phenopackets_evals.py +99 -0
- aurelian/agents/phenopackets/phenopackets_gradio.py +55 -0
- aurelian/agents/phenopackets/phenopackets_mcp.py +178 -0
- aurelian/agents/phenopackets/phenopackets_tools.py +127 -0
- aurelian/agents/rag/__init__.py +40 -0
- aurelian/agents/rag/rag_agent.py +83 -0
- aurelian/agents/rag/rag_config.py +80 -0
- aurelian/agents/rag/rag_gradio.py +67 -0
- aurelian/agents/rag/rag_mcp.py +107 -0
- aurelian/agents/rag/rag_tools.py +189 -0
- aurelian/agents/rag_agent.py +54 -0
- aurelian/agents/robot/__init__.py +0 -0
- aurelian/agents/robot/assets/__init__.py +3 -0
- aurelian/agents/robot/assets/template.md +384 -0
- aurelian/agents/robot/robot_config.py +25 -0
- aurelian/agents/robot/robot_gradio.py +46 -0
- aurelian/agents/robot/robot_mcp.py +100 -0
- aurelian/agents/robot/robot_ontology_agent.py +139 -0
- aurelian/agents/robot/robot_tools.py +50 -0
- aurelian/agents/talisman/__init__.py +3 -0
- aurelian/agents/talisman/talisman_agent.py +126 -0
- aurelian/agents/talisman/talisman_config.py +66 -0
- aurelian/agents/talisman/talisman_gradio.py +50 -0
- aurelian/agents/talisman/talisman_mcp.py +168 -0
- aurelian/agents/talisman/talisman_tools.py +720 -0
- aurelian/agents/ubergraph/__init__.py +40 -0
- aurelian/agents/ubergraph/ubergraph_agent.py +71 -0
- aurelian/agents/ubergraph/ubergraph_config.py +79 -0
- aurelian/agents/ubergraph/ubergraph_gradio.py +48 -0
- aurelian/agents/ubergraph/ubergraph_mcp.py +69 -0
- aurelian/agents/ubergraph/ubergraph_tools.py +118 -0
- aurelian/agents/uniprot/__init__.py +37 -0
- aurelian/agents/uniprot/uniprot_agent.py +43 -0
- aurelian/agents/uniprot/uniprot_config.py +43 -0
- aurelian/agents/uniprot/uniprot_evals.py +99 -0
- aurelian/agents/uniprot/uniprot_gradio.py +48 -0
- aurelian/agents/uniprot/uniprot_mcp.py +168 -0
- aurelian/agents/uniprot/uniprot_tools.py +136 -0
- aurelian/agents/web/__init__.py +0 -0
- aurelian/agents/web/web_config.py +27 -0
- aurelian/agents/web/web_gradio.py +48 -0
- aurelian/agents/web/web_mcp.py +50 -0
- aurelian/agents/web/web_tools.py +108 -0
- aurelian/chat.py +23 -0
- aurelian/cli.py +800 -0
- aurelian/dependencies/__init__.py +0 -0
- aurelian/dependencies/workdir.py +78 -0
- aurelian/mcp/__init__.py +0 -0
- aurelian/mcp/amigo_mcp_test.py +86 -0
- aurelian/mcp/config_generator.py +123 -0
- aurelian/mcp/example_config.json +43 -0
- aurelian/mcp/generate_sample_config.py +37 -0
- aurelian/mcp/gocam_mcp_test.py +126 -0
- aurelian/mcp/linkml_mcp_tools.py +190 -0
- aurelian/mcp/mcp_discovery.py +87 -0
- aurelian/mcp/mcp_test.py +31 -0
- aurelian/mcp/phenopackets_mcp_test.py +103 -0
- aurelian/tools/__init__.py +0 -0
- aurelian/tools/web/__init__.py +0 -0
- aurelian/tools/web/url_download.py +51 -0
- aurelian/utils/__init__.py +0 -0
- aurelian/utils/async_utils.py +15 -0
- aurelian/utils/data_utils.py +32 -0
- aurelian/utils/documentation_manager.py +59 -0
- aurelian/utils/doi_fetcher.py +238 -0
- aurelian/utils/ontology_utils.py +68 -0
- aurelian/utils/pdf_fetcher.py +23 -0
- aurelian/utils/process_logs.py +100 -0
- aurelian/utils/pubmed_utils.py +238 -0
- aurelian/utils/pytest_report_to_markdown.py +67 -0
- aurelian/utils/robot_ontology_utils.py +112 -0
- aurelian/utils/search_utils.py +95 -0
- aurelian-0.3.2.dist-info/LICENSE +22 -0
- aurelian-0.3.2.dist-info/METADATA +105 -0
- aurelian-0.3.2.dist-info/RECORD +254 -0
- aurelian-0.3.2.dist-info/WHEEL +4 -0
- aurelian-0.3.2.dist-info/entry_points.txt +3 -0
@@ -0,0 +1,134 @@
|
|
1
|
+
# E3 ubiquitin ligases
|
2
|
+
|
3
|
+
An **E3 ubiquitin ligase** is a protein that recruits an E2 ubiquitin-conjugating enzyme loaded with ubiquitin, recognizes a protein substrate, and assists or directly catalyzes the transfer of ubiquitin from the E2 to the protein substrate.
|
4
|
+
|
5
|
+
The recognition of the protein substrate can be done by the ubiquitin protein ligase itself or through a complex composed of ubiquitin ligase-substrate adaptor and ubiquitin ligase complex scaffolds.
|
6
|
+
|
7
|
+
<https://en.wikipedia.org/wiki/Ubiquitin_ligase>
|
8
|
+
|
9
|
+
# How to annotate E3 ubiquitin ligases
|
10
|
+
|
11
|
+
## E3 ligase that promotes ubiquitination by itself
|
12
|
+
|
13
|
+
The molecular activity unit for the ubiquitin ligase is:
|
14
|
+
|
15
|
+
* **MF**: 'enables' ubiquitin protein ligase activity [GO:0061630](https://www.ebi.ac.uk/QuickGO/GTerm?id=GO:0061630#term=history)
|
16
|
+
* 'has input'the substrate protein
|
17
|
+
* **BPs**:
|
18
|
+
* 'part of' ubiquitination ([GO:0016567](https://www.ebi.ac.uk/QuickGO/term/GO%3A0070936))**:** if known, the **BP** should describe the type of ubiquitination (K-48, K-63…)
|
19
|
+
|
20
|
+
ex: protein K48-linked ubiquitination [GO:0070936](https://www.ebi.ac.uk/QuickGO/term/GO%3A0070936); otherwise, use the parent protein ubiquitination GO:0016567 or protein polyubiquitination GO:0000209.
|
21
|
+
|
22
|
+
* the ubiquitination is part\_of the biological process in which the ubiquitination is involved:
|
23
|
+
|
24
|
+
e. g. : proteasome-mediated ubiquitin-dependent protein catabolic process [GO:0043161](https://www.ebi.ac.uk/QuickGO/GTerm?id=GO:0043161#term=history) or children, such as: SCF-dependent proteasomal ubiquitin-dependent protein catabolic process ([GO:0031146](https://www.ebi.ac.uk/QuickGO/term/GO%3A0031146)) or ubiquitin-dependent protein catabolic process via the C-end degron rule pathway ([GO:0140627](https://www.ebi.ac.uk/QuickGO/term/GO%3A0140627))
|
25
|
+
|
26
|
+
* and/or part of’ the BP in which the ubiquitination is involved: DNA repair, DNA damage response, lysosomal degradation, etc regulated by this mechanism (ex: negative regulation of inflammatory response, [GO:0050728](https://www.ebi.ac.uk/QuickGO/term/GO%3A0050728))
|
27
|
+
* The causal relation to the substrate molecular activity unit is: ‘indirectly negatively regulates’.
|
28
|
+
|
29
|
+
Example: [TRIM45-mediated degradation of TAB2 leading to inflammatory response inhibition (Human)](http://noctua.geneontology.org/workbench/noctua-visual-pathway-editor/?model_id=gomodel%3A63f809ec00000307)
|
30
|
+
|
31
|
+

|
32
|
+
|
33
|
+
## An E3-ligase complex with adaptors and scaffold protein(s)
|
34
|
+
|
35
|
+
####
|
36
|
+
|
37
|
+
* The molecular activity unit for the ubiquitin ligase complex scaffold, such as CUL4A and/or DDB1 is:
|
38
|
+
* **MF**: ubiquitin ligase complex scaffold activity [GO:0160072](https://www.ebi.ac.uk/QuickGO/GTerm?id=GO:0160072#term=history)
|
39
|
+
* Has **input** both the ubiquitin ligase-substrate adaptor and the ubiquitin protein ligase
|
40
|
+
* **BP**: if known, the **BP** should describe the type of ubiquitination (K-48, K-63…)
|
41
|
+
|
42
|
+
ex: protein K48-linked ubiquitination [GO:0070936](https://www.ebi.ac.uk/QuickGO/term/GO%3A0070936)
|
43
|
+
|
44
|
+
if not known, use a **BP** describing the biological process in which the ubiquitination is involved in.
|
45
|
+
|
46
|
+
ex: proteasome-mediated ubiquitin-dependent protein catabolic process [GO:0043161](https://www.ebi.ac.uk/QuickGO/GTerm?id=GO:0043161#term=history) or children, such as: SCF-dependent proteasomal ubiquitin-dependent protein catabolic process ([GO:0031146](https://www.ebi.ac.uk/QuickGO/term/GO%3A0031146)) or ubiquitin-dependent protein catabolic process via the C-end degron rule pathway ([GO:0140627](https://www.ebi.ac.uk/QuickGO/term/GO%3A0140627))
|
47
|
+
|
48
|
+
‘Part of’ the BP regulated by this mechanism (ex: T cell activation, [GO:0042110](https://www.ebi.ac.uk/QuickGO/term/GO%3A0042110))
|
49
|
+
|
50
|
+
* The causal relation between the substrate molecular activity unit is: ‘directly negatively regulates’ if it leads to degradation. (to decide for the other cases)
|
51
|
+
* The causal relation to the ubiquitin ligase-substrate adaptor molecular activity unit is: ‘directly regulates’.
|
52
|
+
* The molecular activity unit for the ubiquitin ligase-substrate adaptor is:
|
53
|
+
* **MF**: ubiquitin ligase-substrate adaptor activity [GO:1990756](http://amigo.geneontology.org/amigo/term/GO%3A1990756)
|
54
|
+
* Has **input** the substrate protein
|
55
|
+
* **BP**: if known, the **BP** should describe the type of ubiquitination (K-48, K-63…)
|
56
|
+
|
57
|
+
ex: protein K48-linked ubiquitination [GO:0070936](https://www.ebi.ac.uk/QuickGO/term/GO%3A0070936)
|
58
|
+
|
59
|
+
if not known, use a **BP** describing the biological process in which the ubiquitination is involved in.
|
60
|
+
|
61
|
+
ex: proteasome-mediated ubiquitin-dependent protein catabolic process [GO:0043161](https://www.ebi.ac.uk/QuickGO/GTerm?id=GO:0043161#term=history) or children, such as: SCF-dependent proteasomal ubiquitin-dependent protein catabolic process ([GO:0031146](https://www.ebi.ac.uk/QuickGO/term/GO%3A0031146)) or ubiquitin-dependent protein catabolic process via the C-end degron rule pathway ([GO:0140627](https://www.ebi.ac.uk/QuickGO/term/GO%3A0140627))
|
62
|
+
|
63
|
+
‘Part of’ the BP regulated by this mechanism (ex: T cell activation, [GO:0042110](https://www.ebi.ac.uk/QuickGO/term/GO%3A0042110))
|
64
|
+
|
65
|
+
* The causal relation to the ubiquitin ligase molecular activity unit is: ‘directly provides input for’.
|
66
|
+
* Annotation of the ubiquitin ligase is the same as [above](#_j8u1po26cp9w)
|
67
|
+
|
68
|
+
Example: [DCAF12 controls MOV10 during T cell activation. (Human)](http://noctua.geneontology.org/workbench/noctua-visual-pathway-editor/?model_id=gomodel%3A636d9ce800001192)
|
69
|
+
|
70
|
+

|
71
|
+
|
72
|
+
#### When only substrate adaptor and substrate are known (scaffold and ligase not known)
|
73
|
+
|
74
|
+
Example: [FBXL19-mediated degradation of IL1R1 via GSK3B (Human)](http://noctua.geneontology.org/workbench/noctua-visual-pathway-editor/?model_id=gomodel%3A63d320cd00001588)
|
75
|
+
|
76
|
+
* The molecular activity unit for the ubiquitin ligase-substrate adaptor is:
|
77
|
+
* **MF**: ubiquitin ligase-substrate adaptor activity [GO:1990756](http://amigo.geneontology.org/amigo/term/GO%3A1990756)
|
78
|
+
* Has **input** the substrate protein
|
79
|
+
* **BP**: if known, the **BP** should describe the type of ubiquitination (K-48, K-63…)
|
80
|
+
|
81
|
+
ex: protein K48-linked ubiquitination [GO:0070936](https://www.ebi.ac.uk/QuickGO/term/GO%3A0070936)
|
82
|
+
|
83
|
+
if not known, use a **BP** describing the biological process in which the ubiquitination is involved in.
|
84
|
+
|
85
|
+
ex: proteasome-mediated ubiquitin-dependent protein catabolic process [GO:0043161](https://www.ebi.ac.uk/QuickGO/GTerm?id=GO:0043161#term=history) or children, such as: SCF-dependent proteasomal ubiquitin-dependent protein catabolic process ([GO:0031146](https://www.ebi.ac.uk/QuickGO/term/GO%3A0031146)) or ubiquitin-dependent protein catabolic process via the C-end degron rule pathway ([GO:0140627](https://www.ebi.ac.uk/QuickGO/term/GO%3A0140627))
|
86
|
+
|
87
|
+
‘Part of’ the BP regulated by this mechanism (ex: T cell activation, [GO:0042110](https://www.ebi.ac.uk/QuickGO/term/GO%3A0042110))
|
88
|
+
|
89
|
+
* The causal relation to the substrate molecular activity unit is: ‘indirectly regulates’ since we don’t add/have information about the E3 ligase.
|
90
|
+
|
91
|
+
#### When only substrate adaptor, scaffold and substrate are known (ligase not known)
|
92
|
+
|
93
|
+
Ex: [DCAF13 supports the spindle assembly and chromosome condensation during oocyte meiotic division by targeting PTEN polyubiquitination and degradation. (Human)](http://noctua.geneontology.org/workbench/noctua-visual-pathway-editor/?model_id=gomodel%3A63c0ac2b00001634)
|
94
|
+
|
95
|
+

|
96
|
+
|
97
|
+
* The molecular activity unit for the ubiquitin ligase complex scaffold, such as CUL4A and/or DDB1 is:
|
98
|
+
* **MF**: ubiquitin ligase complex scaffold activity [GO:0160072](https://www.ebi.ac.uk/QuickGO/GTerm?id=GO:0160072#term=history)
|
99
|
+
* Has **input** both the ubiquitin ligase-substrate adaptor and the ubiquitin protein ligase
|
100
|
+
* **BP**: if known, the **BP** should describe the type of ubiquitination (K-48, K-63…)
|
101
|
+
|
102
|
+
ex: protein K48-linked ubiquitination [GO:0070936](https://www.ebi.ac.uk/QuickGO/term/GO%3A0070936)
|
103
|
+
|
104
|
+
if not known, use a **BP** describing the biological process in which the ubiquitination is involved in.
|
105
|
+
|
106
|
+
ex: proteasome-mediated ubiquitin-dependent protein catabolic process [GO:0043161](https://www.ebi.ac.uk/QuickGO/GTerm?id=GO:0043161#term=history) or children, such as: SCF-dependent proteasomal ubiquitin-dependent protein catabolic process ([GO:0031146](https://www.ebi.ac.uk/QuickGO/term/GO%3A0031146)) or ubiquitin-dependent protein catabolic process via the C-end degron rule pathway ([GO:0140627](https://www.ebi.ac.uk/QuickGO/term/GO%3A0140627))
|
107
|
+
|
108
|
+
‘Part of’ the BP regulated by this mechanism (ex: T cell activation, [GO:0042110](https://www.ebi.ac.uk/QuickGO/term/GO%3A0042110))
|
109
|
+
|
110
|
+
* The causal relation to the ubiquitin ligase-substrate adaptor molecular activity unit is: ‘directly regulates’.
|
111
|
+
* The molecular activity unit for the ubiquitin ligase-substrate adaptor is:
|
112
|
+
* **MF**: ubiquitin ligase-substrate adaptor activity [GO:1990756](http://amigo.geneontology.org/amigo/term/GO%3A1990756)
|
113
|
+
* Has **input** the substrate protein
|
114
|
+
* **BP**: if known, the **BP** should describe the type of ubiquitination (K-48, K-63…)
|
115
|
+
|
116
|
+
ex: protein K48-linked ubiquitination [GO:0070936](https://www.ebi.ac.uk/QuickGO/term/GO%3A0070936)
|
117
|
+
|
118
|
+
if not known, use a **BP** describing the biological process in which the ubiquitination is involved in.
|
119
|
+
|
120
|
+
ex: proteasome-mediated ubiquitin-dependent protein catabolic process [GO:0043161](https://www.ebi.ac.uk/QuickGO/GTerm?id=GO:0043161#term=history) or children, such as: SCF-dependent proteasomal ubiquitin-dependent protein catabolic process ([GO:0031146](https://www.ebi.ac.uk/QuickGO/term/GO%3A0031146)) or ubiquitin-dependent protein catabolic process via the C-end degron rule pathway ([GO:0140627](https://www.ebi.ac.uk/QuickGO/term/GO%3A0140627))
|
121
|
+
|
122
|
+
‘Part of’ the BP regulated by this mechanism (ex: T cell activation, [GO:0042110](https://www.ebi.ac.uk/QuickGO/term/GO%3A0042110))
|
123
|
+
|
124
|
+
* The causal relation to the substrate molecular activity unit is: ‘indirectly regulates’ since we don’t add/have information about the E3 ligase.
|
125
|
+
|
126
|
+
## Examples of larger processes in which various types of ubiquitination play a role
|
127
|
+
|
128
|
+

|
129
|
+
|
130
|
+
Source: PMID:[27285106](https://pubmed.ncbi.nlm.nih.gov/27285106)
|
131
|
+
|
132
|
+
**Review date:**
|
133
|
+
|
134
|
+
**Reviewed by:**
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1 @@
|
|
1
|
+
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,29 @@
|
|
1
|
+
# How to annotate complexes in GO-CAM
|
2
|
+
|
3
|
+
When complexes are involved in specific activities, several options are available in GO-CAM to represent them.
|
4
|
+
|
5
|
+
1. **The subunit that carries the molecular activity is known:**
|
6
|
+
|
7
|
+
In that case, the complex is not described and the activity(ies) is represented by the specific protein (s) carrying the activity.
|
8
|
+
|
9
|
+
Ex:
|
10
|
+
|
11
|
+

|
12
|
+
|
13
|
+
In this example, all the proteins in the E3 ligase complex have a defined and precise activity. Therefore, they are all displayed in the model. In this case, the scaffold activity is usually represented first, *activating subsequent activities from the* complex.
|
14
|
+
|
15
|
+
1. **The subunit which carries the molecular activity is not known:**
|
16
|
+
|
17
|
+
If the precise subunit carrying the activity is not known, we can use the GO accession for the complex.
|
18
|
+
|
19
|
+
Ex: Ragulator complex (GO:0071986): Ragulator is comprised of the membrane anchor subunit LAMTOR1, LAMTOR2, LAMTOR3, LAMTOR4 and LAMTOR5.
|
20
|
+
|
21
|
+

|
24
|
+
|
25
|
+
In this example LAMTOR1 activity is known (protein-membrane adaptor activity) but the protein that carries the guanyl-nucleotide exchange factor activity is not known, therefore we use the complex ID from GO in this situation.
|
26
|
+
|
27
|
+
1. **If the activity is shared by several proteins**
|
28
|
+
|
29
|
+
EX: Heterodimeric receptor where both activities are important for activity.
|
@@ -0,0 +1,31 @@
|
|
1
|
+
# How to annotate molecular adaptors
|
2
|
+
|
3
|
+
Here we describe how to capture a molecular adaptor activity which is defined as the binding activity of a molecule that brings together two or more molecules through a selective, non-covalent, often stoichiometric interaction, permitting those molecules to function in a coordinated way.
|
4
|
+
|
5
|
+
Example 1: [TYROBP acts as an adaptor between a receptor and a downstream effector](http://noctua.geneontology.org/workbench/noctua-visual-pathway-editor/?model_id=gomodel%3A633b013300001197)
|
6
|
+
|
7
|
+

|
10
|
+
|
11
|
+
The molecular activity unit for molecular adaptor may include:
|
12
|
+
|
13
|
+
o **MF**: molecular adaptor activity ([GO:0060090](https://www.ebi.ac.uk/QuickGO/term/GO%3A0060090)) or one of its children
|
14
|
+
|
15
|
+
o **Has input** the two (or more) molecules it brings together.
|
16
|
+
|
17
|
+
o **BP**: the BP it participates in
|
18
|
+
|
19
|
+
o **CC**: the place where the activity occurs.
|
20
|
+
|
21
|
+
The relation with the downstream activity used is **“directly positively regulates”**
|
22
|
+
|
23
|
+
Example 2: When an adaptor brings together an enzyme and its substrate
|
24
|
+
|
25
|
+

|
28
|
+
|
29
|
+
The molecular activity is the same as above (MF, inputs, BP, CC)
|
30
|
+
|
31
|
+
But in that case, the relation with the downstream activity used is “**provides input for**”
|
@@ -0,0 +1,42 @@
|
|
1
|
+
# Sequestering activity
|
2
|
+
|
3
|
+
A sequestering activity is defined as the binding to a specific molecule to prevent it from interacting with other partners or to inhibit its localization to the area of the cell or complex where the target is active.
|
4
|
+
|
5
|
+
# Pathway Editor
|
6
|
+
|
7
|
+
The activity unit for sequestering activity is:
|
8
|
+
|
9
|
+
* **MF**: molecular sequestering activity ([GO:0140313](https://www.ebi.ac.uk/QuickGO/term/GO%3A0140313)) or a child
|
10
|
+
* **Context:**
|
11
|
+
+ The relation between the protein that act to sequester and its target receptor is *'*has input'
|
12
|
+
+ **BP**: the BP it inhibits
|
13
|
+
+ **CC**: the place where the activity occurs.
|
14
|
+
+ The causal relation between the **sequestering activity** and the activity of the protein it inhibits is 'directly positively regulates'.
|
15
|
+
|
16
|
+
Example 1: [Sequestering activity of CAV1 on TLR4 signaling](http://noctua.geneontology.org/workbench/noctua-visual-pathway-editor/?model_id=gomodel%3A645d887900001414)
|
17
|
+
|
18
|
+

|
21
|
+
|
22
|
+
The molecular activity unit for molecular adaptor may include:
|
23
|
+
|
24
|
+
o **MF**: molecular sequestering activity ([GO:0140313](https://www.ebi.ac.uk/QuickGO/term/GO%3A0140313)) or one of its children
|
25
|
+
|
26
|
+
o
|
27
|
+
|
28
|
+
The relation with the downstream activity used is **“directly negatively regulates”**
|
29
|
+
|
30
|
+
Example 2: [Sequestering activity of YWHAZ on RAF1](http://noctua.geneontology.org/workbench/noctua-visual-pathway-editor/?model_id=gomodel%3A63d320cd00000820)
|
31
|
+
|
32
|
+

|
33
|
+
|
34
|
+
In that example, the difference in the cellular component between the two activities clearly show that the YWHAZ protein sequesters RAF1 in the cytoplasm, preventing its activity in the plasma membrane.
|
35
|
+
|
36
|
+
The relation used between both activities is **“directly negatively regulates”** because there is direct interaction between both proteins.
|
37
|
+
|
38
|
+
# Form Editor
|
39
|
+
|
40
|
+
Review date: 2023-06-22
|
41
|
+
|
42
|
+
Reviewed by: Pascale Gaudet, Patrick Masson
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,51 @@
|
|
1
|
+
# Guidelines for annotating molecular adaptor activity
|
2
|
+
|
3
|
+
A molecular adaptor activity is the binding activity of a molecule that brings together two or more molecules through a selective, non-covalent, often stoichiometric interaction, permitting those molecules to function in a coordinated way.
|
4
|
+
|
5
|
+
# Pathway Editor
|
6
|
+
|
7
|
+
The molecular activity unit for a molecular adaptor is:
|
8
|
+
|
9
|
+
* **MF**: 'enables' molecular adaptor activity ([GO:0060090](https://www.ebi.ac.uk/QuickGO/term/GO%3A0060090)) or a child
|
10
|
+
* **Context:**
|
11
|
+
+ The relation between the adaptor activity and the two (or more) molecules it brings together is 'has input'
|
12
|
+
+ **BP**: 'part of' the BP in which the adaptor participates
|
13
|
+
+ **CC**: 'occurs in' the cellular location where the activity takes place.
|
14
|
+
|
15
|
+
The relation between the adaptor and the proteins it adapts can be 'directly positively regulates' or 'provides input for', depending if the activity of the adaptor is regulatory.
|
16
|
+
|
17
|
+
**Example 1:** [**TYROBP acts as an adaptor between a receptor and a downstream effector**](http://noctua.geneontology.org/workbench/noctua-visual-pathway-editor/?model_id=gomodel%3A633b013300001197)
|
18
|
+
|
19
|
+
SIGLEC1 recognizes and endocytoses virions, which leads to activation of the TYROBP molecular adaptor, which recruits PTPN11. The scaffolding activity of PTPN11 is activated by TYROBP.
|
20
|
+
|
21
|
+

|
24
|
+
|
25
|
+
**Example 2:** [**An adaptor that brings together an enzyme and its substrate**](http://noctua.geneontology.org/workbench/noctua-visual-pathway-editor/?model_id=gomodel%3A636d9ce800001192)
|
26
|
+
|
27
|
+

|
28
|
+
|
29
|
+
In that case, the relation between the adaptor activity and the downstream activity is 'provides input for'.
|
30
|
+
|
31
|
+
## Form Editor
|
32
|
+
|
33
|
+
* **MF**: 'enables' molecular adaptor activity ([GO:0060090](https://www.ebi.ac.uk/QuickGO/term/GO%3A0060090)) or a child
|
34
|
+
* **Context:**
|
35
|
+
+ The relation between the adaptor activity and the two (or more) molecules it brings together is 'has input'
|
36
|
+
+ **BP**: 'part of' the BP in which the adaptor participates
|
37
|
+
+ **CC**: 'occurs in' the cellular location where the activity takes place.
|
38
|
+
|
39
|
+

|
40
|
+
|
41
|
+
# Differences between GO-CAM and standard annotation of a molecular adaptor activity
|
42
|
+
|
43
|
+
In standard annotation (captured with the Noctua Form or Protein2GO), relations between molecular functions are not captured.
|
44
|
+
|
45
|
+
#
|
46
|
+
|
47
|
+
# Review information
|
48
|
+
|
49
|
+
Review date: 2023-07-20
|
50
|
+
|
51
|
+
Reviewed by: Cristina Casals, Pascale Gaudet, Patrick Masson
|
@@ -0,0 +1,41 @@
|
|
1
|
+
Guidelines for annotating molecular carrier activity
|
2
|
+
|
3
|
+
#
|
4
|
+
|
5
|
+
# Pathway Editor
|
6
|
+
|
7
|
+
The activity unit for a molecular carrier is:
|
8
|
+
|
9
|
+
* **MF**: a molecular carrier 'enables' molecular carrier activity ([GO:0140104](https://www.ebi.ac.uk/QuickGO/term/GO%3A0048018)) or a child
|
10
|
+
* **Context:**
|
11
|
+
+ The relation between a transported molecule and its carrier is *'*has input'. The carrier and the small molecule are linked with the 'has output' relation, so that the small molecule can be the input for the next reaction.
|
12
|
+
+ **BP** 'part of' the process in the molecule using the small molecule participates, or 'part of' regulation of the process, if the carrier is regulators (rate-limiting for the execution of the process)
|
13
|
+
+ **CC**: 'occurs in' the cellular location where the activity takes place.
|
14
|
+
|
15
|
+
Example 1: [LPS is carried to its receptor by CD14](http://noctua.geneontology.org/workbench/noctua-visual-pathway-editor/?model_id=gomodel%3A5f46c3b700001031)
|
16
|
+
|
17
|
+

|
18
|
+
|
19
|
+
#
|
20
|
+
|
21
|
+
# Form Editor
|
22
|
+
|
23
|
+
The activity unit for a molecular carrier is:
|
24
|
+
|
25
|
+
* **MF**: a molecular carrier 'enables' molecular carrier activity ([GO:0140104](https://www.ebi.ac.uk/QuickGO/term/GO%3A0048018)) or a child
|
26
|
+
* **Context:**
|
27
|
+
+ The relation between a transported molecule and its carrier is *'*has input'. The carrier and the small molecule are linked with the 'has output' relation, so that the small molecule can be the input for the next reaction.
|
28
|
+
+ **BP** 'part of' the process in the molecule using the small molecule participates, or 'part of' regulation of the process, if the carrier is regulators (rate-limiting for the execution of the process)
|
29
|
+
+ **CC**: 'occurs in' the cellular location where the activity takes place.
|
30
|
+
|
31
|
+

|
32
|
+
|
33
|
+
# Differences between GO-CAM and standard annotation for a molecular carrier activity
|
34
|
+
|
35
|
+
The same information is captured for the carrier activity and its context; however in the standard annotations,it is not possible to capture the order of the reactions.
|
36
|
+
|
37
|
+
# Review information
|
38
|
+
|
39
|
+
Review date: 2023-07-25
|
40
|
+
|
41
|
+
Reviewed by: Cristina Casals, Pasclae Gaudet, Patrick Masson
|
Binary file
|
Binary file
|
@@ -0,0 +1,50 @@
|
|
1
|
+
# Guidelines for annotating molecular sequestering activity
|
2
|
+
|
3
|
+
A sequestering activity is defined as the binding to a specific molecule to prevent it from interacting with other partners or to inhibit its localization to the area of the cell or complex where the target is active.
|
4
|
+
|
5
|
+
# Pathway Editor
|
6
|
+
|
7
|
+
The activity unit for a molecular sequestering activity is:
|
8
|
+
|
9
|
+
* **MF**: molecular sequestering activity ([GO:0140313)](https://www.ebi.ac.uk/QuickGO/term/GO%3A0140313). **The most commonly used child is protein sequestering activity (**[**GO:0140311**](https://www.ebi.ac.uk/QuickGO/term/GO%3A0140311)**).**
|
10
|
+
* **Context:**
|
11
|
+
+ The relation between the protein that act to sequester and its target is *'*has input'
|
12
|
+
+ **BP**: 'part of' negative regulation of the BP in which the target protein participates .
|
13
|
+
+ **CC**: the location where the activity occurs.
|
14
|
+
+ The causal relation between the **sequestering activity** and the activity of the protein it inhibits is 'directly negatively regulates' because there is a direct interaction between the two proteins.
|
15
|
+
|
16
|
+
**Example 1:** [**Sequestering activity of CAV1 negatively regulates TLR4 signaling**](http://noctua.geneontology.org/workbench/noctua-visual-pathway-editor/?model_id=gomodel%3A645d887900001414)
|
17
|
+
|
18
|
+

|
21
|
+
|
22
|
+
**Example 2:** [**Trans-negative regulation of Sars-CoV-2 viral entry into host cell by LRRC15.**](http://noctua.geneontology.org/workbench/noctua-visual-pathway-editor/?model_id=gomodel%3A63f809ec00000027)
|
23
|
+
|
24
|
+
****
|
25
|
+
|
26
|
+
#
|
27
|
+
|
28
|
+
# Form Editor
|
29
|
+
|
30
|
+
The activity unit for sequestering activity is:
|
31
|
+
|
32
|
+
* **MF**: molecular sequestering activity ([GO:0140313](https://www.ebi.ac.uk/QuickGO/term/GO%3A0140313)) or a child
|
33
|
+
* **Context:**
|
34
|
+
+ The relation between the protein that act to sequester and its target receptor is *'*has input'
|
35
|
+
+ **BP**: negative regulation of the BP in which the regulated protein participates
|
36
|
+
+ **CC**: the location where the activity occurs.
|
37
|
+
|
38
|
+
**Example 1:** [**Sequestering activity of CAV1 negatively regulates TLR4 signaling**](http://noctua.geneontology.org/workbench/noctua-form/?model_id=gomodel%3A645d887900001414)
|
39
|
+
|
40
|
+

|
41
|
+
|
42
|
+
# Differences between GO-CAM and standard annotation of a sequestering activity
|
43
|
+
|
44
|
+
In standard annotation (captured with the Noctua Form or Protein2GO), relations between molecular functions are not captured, so there is no relation between the sequestering activity and the activity of the protein being sequestered.
|
45
|
+
|
46
|
+
# Review information
|
47
|
+
|
48
|
+
Review date: 2023-07-25
|
49
|
+
|
50
|
+
Reviewed by: Cristina Casals, Pascale Gaudet, Patrick Masson
|
Binary file
|
Binary file
|
@@ -0,0 +1,187 @@
|
|
1
|
+
Guidelines for annotating signaling receptor activity
|
2
|
+
|
3
|
+
Receptor activation by a ligand is represented differently in GO-CAM depending on whether the ligand is (i) a protein (i. e., encoded by a gene) or (ii) a small molecule.
|
4
|
+
|
5
|
+
# Pathway Editor
|
6
|
+
|
7
|
+
##
|
8
|
+
|
9
|
+
## Protein ligand-activated signaling receptor
|
10
|
+
|
11
|
+
### Ligand
|
12
|
+
|
13
|
+
The activity unit for a ligand of a signaling receptor is:
|
14
|
+
|
15
|
+
* **MF**: a ligand 'enables' receptor ligand activity ([GO:0048018](https://www.ebi.ac.uk/QuickGO/term/GO%3A0048018)) or a child
|
16
|
+
* **Context:**
|
17
|
+
+ The relation between a ligand and its target receptor is *'*has input'
|
18
|
+
+ **BP** 'part of' the process in which the ligand participates, usually a child of signal transduction ([GO:0007165](https://www.ebi.ac.uk/QuickGO/term/GO%3A0007165))
|
19
|
+
+ **CC:**
|
20
|
+
- extracellular ligands:'occurs in' extracellular space ([GO:0005615](https://www.ebi.ac.uk/QuickGO/term/GO%3A0005886))
|
21
|
+
- membrane-bound ligands: 'occurs in' plasma membrane ([GO:0005886](https://www.ebi.ac.uk/QuickGO/term/GO%3A0005886))
|
22
|
+
+ The causal relation between the **ligand activity** and the **receptor activity** is
|
23
|
+
'directly positively regulates'.
|
24
|
+
|
25
|
+
### Signaling receptor
|
26
|
+
|
27
|
+
The activity unit for a signaling receptor is:
|
28
|
+
|
29
|
+
* **MF:** 'enables' signaling receptor activity ([GO:0038023](https://www.ebi.ac.uk/QuickGO/term/GO%3A0038023)*)* or a child*.*
|
30
|
+
* **Context:**
|
31
|
+
+ The input (target) of the receptor is the **effector protein it regulates**, for example a molecular adaptor, captured with the *'*has input' relation.
|
32
|
+
+ **Note that the input (target) of the receptor is NOT its ligand**
|
33
|
+
* **BP** 'part of' the same BP/signal transduction pathway as the ligand
|
34
|
+
* **CC:** transmembrane receptors: 'occurs in' plasma membrane ([GO:0005886](https://www.ebi.ac.uk/QuickGO/term/GO%3A0005886))
|
35
|
+
+ The causal relation between the MF of the **receptor** and the MF of its **target** is 'directly positively regulates'*.*
|
36
|
+
|
37
|
+
**Example:** [**Insulin signaling model**](http://noctua.geneontology.org/workbench/noctua-visual-pathway-editor/?model_id=gomodel%3A6482692800000931)
|
38
|
+
|
39
|
+

|
40
|
+
|
41
|
+
##
|
42
|
+
|
43
|
+
##
|
44
|
+
|
45
|
+
##
|
46
|
+
|
47
|
+
##
|
48
|
+
|
49
|
+
## Small molecule-activated signaling receptor activity
|
50
|
+
|
51
|
+
* Since small molecules are not annotated in GO, a small molecule ligand does not have a molecular function. Instead, the **ligand** and the **receptor activity** are linked by the causal relation 'is small molecule activator'*.*
|
52
|
+
* The receptor's function, input, and contextual relations are the same as for protein ligand-activated receptors.
|
53
|
+
* Note that it is also possible to annotate an inhibitory ligand using the relation 'is small molecule inhibitor'*.*
|
54
|
+
* BP and CC annotations are the same as for protein ligand-activated receptor activity.
|
55
|
+
|
56
|
+
**Example:** [**Activation of a GPCR by succinate**](http://noctua.geneontology.org/workbench/noctua-visual-pathway-editor/?model_id=gomodel%3A648d0dc100000022)
|
57
|
+
|
58
|
+

|
59
|
+
|
60
|
+
##
|
61
|
+
|
62
|
+
## Special cases
|
63
|
+
|
64
|
+
###
|
65
|
+
|
66
|
+
### Receptor with coreceptor
|
67
|
+
|
68
|
+
This is common in immune receptors. The typical sequence of events is that the ligand binds the signaling receptor, which signals to the co-receptor to activate its downstream effector (such as a protein kinase).
|
69
|
+
|
70
|
+
**Example:** [**IL2 signaling pathway (Human)**](http://noctua.geneontology.org/workbench/noctua-visual-pathway-editor/?model_id=gomodel:6205c24300001663)
|
71
|
+
|
72
|
+
In this case, the receptor is activated by an information biomacromolecule (i.e. a protein). Interleukin-2 ([IL2](https://www.uniprot.org/uniprot/P60568)), a cytokine, activates its receptor, interleukin-2 receptor A ([IL2RA](https://www.uniprot.org/uniprot/P01589)).
|
73
|
+
|
74
|
+
IL2RA directly positively regulates (activates) [IL2RB](https://www.uniprot.org/uniprot/P14784), which phosphorylates and positively regulates [JAK1](https://www.uniprot.org/uniprotkb/P23458).
|
75
|
+
|
76
|
+
The activity unit for a signaling coreceptor is:
|
77
|
+
|
78
|
+
* **MF:** coreceptor activity ([GO:0015026](https://www.ebi.ac.uk/QuickGO/term/GO%3A0015026)*)*
|
79
|
+
* **Context:**
|
80
|
+
+ The relation between the receptor and its input (target) is the **signaling coreceptor** it regulates, captured with the *'*has input' relation
|
81
|
+
+ **Note that the input (target) of the coreceptor is NOT the ligand**
|
82
|
+
* **BP** 'part of' the BP in which the signaling receptor is involved, usually a child of signal transduction ([GO:0007165](https://www.ebi.ac.uk/QuickGO/term/GO%3A0007165))
|
83
|
+
* **CC:** transmembrane receptors: 'occurs in' plasma membrane ([GO:0005886](https://www.ebi.ac.uk/QuickGO/term/GO%3A0005886))
|
84
|
+
+ The causal relation between the MF of the **receptor** and the MF of its **coreceptor** is 'directly positively regulates'*.*
|
85
|
+
|
86
|
+

|
89
|
+
|
90
|
+
Note:
|
91
|
+
|
92
|
+
* cytokine activity is\_a receptor ligand activity
|
93
|
+
* interleukin-2 receptor activity is\_a signaling receptor activity
|
94
|
+
|
95
|
+
###
|
96
|
+
|
97
|
+
###
|
98
|
+
|
99
|
+
#
|
100
|
+
|
101
|
+
# Form Editor
|
102
|
+
|
103
|
+
## Protein ligand-activated signaling receptor
|
104
|
+
|
105
|
+
### Ligand activity
|
106
|
+
|
107
|
+
The activity unit for a ligand of a signaling receptor is:
|
108
|
+
|
109
|
+
* **MF**: a ligand 'enables' receptor ligand activity ([GO:0048018](https://www.ebi.ac.uk/QuickGO/term/GO%3A0048018)) or a child
|
110
|
+
* **Context:**
|
111
|
+
+ The relation between a ligand and its target receptor is *'*has input'
|
112
|
+
+ **BP** 'part of' the BP in which this ligand is involved (usually a child of signal transduction ([GO:0007165](https://www.ebi.ac.uk/QuickGO/term/GO%3A0007165)))
|
113
|
+
+ **CC:**
|
114
|
+
- extracellular ligands: 'occurs in' extracellular space ([GO:0005615](https://www.ebi.ac.uk/QuickGO/term/GO%3A0005886))
|
115
|
+
- membrane-bound ligands: 'occurs in' plasma membrane ([GO:0005886](https://www.ebi.ac.uk/QuickGO/term/GO%3A0005886))
|
116
|
+
* The causal relation between the ***ligand* *activity*** and the ***receptor activity*** is
|
117
|
+
'directly positively regulates'.
|
118
|
+
|
119
|
+
**Example:** [**Insulin signaling model**](http://noctua.geneontology.org/workbench/noctua-form/?model_id=gomodel%3A6482692800000931)
|
120
|
+
|
121
|
+

|
122
|
+
|
123
|
+
### Signaling receptor activity
|
124
|
+
|
125
|
+
The activity unit for a signaling receptor is:
|
126
|
+
|
127
|
+
* **MF:** The receptor 'enables' signaling receptor activity ([GO:0038023](https://www.ebi.ac.uk/QuickGO/term/GO%3A0038023)*)* or a child*.*
|
128
|
+
* **Context:**
|
129
|
+
+ The input (target) of the receptor is the **effector protein it regulates**, for example a molecular adaptor, captured with the *'*has input' relation
|
130
|
+
+ **Note that the input (target) of the receptor is NOT its ligand**
|
131
|
+
* **BP** in which the signaling receptor is involved, usually a child of signal transduction ([GO:0007165](https://www.ebi.ac.uk/QuickGO/term/GO%3A0007165))
|
132
|
+
* **CC:** 'occurs in' a child of cellular anatomical entity (GO:0110165). For transmembrane receptors, annotate to plasma membrane ([GO:0005886](https://www.ebi.ac.uk/QuickGO/term/GO%3A0005886))
|
133
|
+
|
134
|
+
**Example:** [**Insulin signaling model**](http://noctua.geneontology.org/workbench/noctua-form/?model_id=gomodel%3A6482692800000931)
|
135
|
+
|
136
|
+

|
137
|
+
|
138
|
+
* + The causal relation between the MF of the **receptor** and the MF of its **target** is 'directly positively regulates'*.*
|
139
|
+
|
140
|
+
##
|
141
|
+
|
142
|
+
## Small molecule-activated signaling receptor activity
|
143
|
+
|
144
|
+
* In the Form, small molecules are not captured, so the MF for the receptor. Therefore, the MF is 'enables' signaling receptor activity ([GO:0038023](https://www.ebi.ac.uk/QuickGO/term/GO%3A0038023)*)* or a child*.*
|
145
|
+
* BP and CC annotations are the same as for protein ligand-activated receptor activity.
|
146
|
+
|
147
|
+

|
148
|
+
|
149
|
+
##
|
150
|
+
|
151
|
+
## Receptor with coreceptor
|
152
|
+
|
153
|
+
###
|
154
|
+
|
155
|
+
**Example:** [**IL2 signaling pathway (Human)**](http://noctua.geneontology.org/workbench/noctua-form/?model_id=gomodel%3A6205c24300001663)
|
156
|
+
|
157
|
+
In this case, the receptor, interleukin-2 receptor A ([IL2RA](https://www.uniprot.org/uniprot/P01589)), is activated by a protein ligand, interleukin-2 ([IL2](https://www.uniprot.org/uniprot/P60568)). IL2RA directly positively regulates (activates) the coreceptor [IL2RB](https://www.uniprot.org/uniprot/P14784), which phosphorylates and positively regulates [JAK1](https://www.uniprot.org/uniprotkb/P23458).
|
158
|
+
|
159
|
+
The activity unit for a signaling coreceptor is:
|
160
|
+
|
161
|
+
* **MF:** The coreceptor 'enables' coreceptor activity ([GO:0015026](https://www.ebi.ac.uk/QuickGO/term/GO%3A0015026)*)* or a child*.*
|
162
|
+
* **Context:**
|
163
|
+
+ The input (target) of the coreceptor is the **signaling receptor** it regulates, captured with the *'*has input' relation
|
164
|
+
+ **Note that the input (target) of the coreceptor is NOT the ligand**
|
165
|
+
* **BP** 'part of' the BP in which the signaling receptor is involved, usually a child of signal transduction ([GO:0007165](https://www.ebi.ac.uk/QuickGO/term/GO%3A0007165))
|
166
|
+
* **CC:** transmembrane receptors:'occurs in' plasma membrane ([GO:0005886](https://www.ebi.ac.uk/QuickGO/term/GO%3A0005886))
|
167
|
+
|
168
|
+

|
169
|
+
|
170
|
+
Note:
|
171
|
+
|
172
|
+
* cytokine activity is\_a receptor ligand activity
|
173
|
+
* interleukin-2 receptor activity is\_a signaling receptor activity
|
174
|
+
|
175
|
+
##
|
176
|
+
|
177
|
+
## Differences between GO-CAM and standard annotation of a signaling receptor and its ligand
|
178
|
+
|
179
|
+
In standard annotation (captured with the Noctua Form or Protein2GO), relations between molecular functions are not captured, so there is no relation between the ligand activity and the signaling receptor activity, nor is there a relation between the signaling receptor activity and the activity of its target. Likewise for receptor activity and coreceptor activity, there is no relation between these activities captured in standard annotations.
|
180
|
+
|
181
|
+
#
|
182
|
+
|
183
|
+
# Review information
|
184
|
+
|
185
|
+
Review date: 2023-07-20
|
186
|
+
|
187
|
+
Reviewed by: Cristina Casals, Pascale Gaudet, Patrick Masson
|
Binary file
|
Binary file
|