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,36 @@
|
|
1
|
+
## **Transcription coregulator activity**
|
2
|
+
|
3
|
+
The activity unit for a transcription coregulator is:
|
4
|
+
|
5
|
+
* **MF:** a child of transcription coregulator activity ([GO:0003712](https://www.ebi.ac.uk/QuickGO/term/GO%3A0003712)):
|
6
|
+
+ transcription coactivator activity ([GO:0003713](https://www.ebi.ac.uk/QuickGO/term/GO%3A0003713))
|
7
|
+
+ transcription corepressor activity ([GO:0003714](https://www.ebi.ac.uk/QuickGO/term/GO%3A0003714))
|
8
|
+
* **Context:**
|
9
|
+
+ has input:the transcription factor regulated, when known.
|
10
|
+
+ **BP** in which this transcriptional event is involved
|
11
|
+
+ **CC:** this activity occurs in the [nucleus](https://www.ebi.ac.uk/QuickGO/term/GO%3A0005634).
|
12
|
+
* The causal relation between the transcription coregulator activity and the transcription factor activity unit is ‘directly positively regulates’ or 'directly negatively regulates.
|
13
|
+
|
14
|
+
* If the causal relation between the coregulator and the target gene regulated needs to be captured, the causal relation is: ‘indirectly positively regulates’ or 'indirectly negatively regulates’, since there are many steps between the regulation of transcription and the activity of the target protein.
|
15
|
+
|
16
|
+
### Example: [**GO:0003714 transcription corepressor activity**](http://noctua.geneontology.org/workbench/noctua-visual-pathway-editor/?model_id=gomodel%3A62900b6400001630)
|
17
|
+
|
18
|
+

|
19
|
+
|
20
|
+
### Example: [**GO:0003713 transcription coactivator activity**](http://noctua.geneontology.org/workbench/noctua-visual-pathway-editor/?model_id=gomodel%3A63894f2500001048)
|
21
|
+
|
22
|
+

|
23
|
+
|
24
|
+
### Example: [**GO:0003712 transcription coregulator activity**](http://noctua.geneontology.org/workbench/noctua-visual-pathway-editor/?model_id=gomodel%3A648d0dc100000022) (BMAL1 binds specifically DNA)
|
25
|
+
|
26
|
+

|
27
|
+
|
28
|
+
### Example: [**Coregulator of an unknown transcription factor**](http://noctua.geneontology.org/workbench/noctua-visual-pathway-editor/?model_id=gomodel%3A62900b6400001630)
|
29
|
+
|
30
|
+

|
31
|
+
|
32
|
+
# Review information
|
33
|
+
|
34
|
+
To be reviewed date:
|
35
|
+
|
36
|
+
Created by: Cristina Casals
|
Binary file
|
Binary file
|
@@ -0,0 +1,43 @@
|
|
1
|
+
# Guidelines for annotating transporter activity
|
2
|
+
|
3
|
+
# Pathway Editor
|
4
|
+
|
5
|
+
The activity unit for a transmembrane transporter is:
|
6
|
+
|
7
|
+
* **MF**: 'enables' a child of transmembrane transporter activity [GO:0022857](https://www.ebi.ac.uk/QuickGO/term/GO%3A0022857)
|
8
|
+
* **Context:**
|
9
|
+
+ The movement of the small molecule substrate is represented by:
|
10
|
+
- small molecule (ChEBI) + ‘input of’ + the start location of the small molecule, captured with the relation 'located in'
|
11
|
+
- the transporter activity + ‘has output’ the small molecule (ChEBI) + the end location of the small molecule, captured with the relation 'located in'
|
12
|
+
+ **BP** 'part of' the BP in which this transporter activity participates
|
13
|
+
+ **CC** 'occurs in' a child of membrane ([GO:0016020](https://www.ebi.ac.uk/QuickGO/term/GO%3A0016020)), e. g.: lysosomal membrane ([GO:0005765](https://www.ebi.ac.uk/QuickGO/term/GO%3A0005765)).
|
14
|
+
|
15
|
+
**Example:** [**SLC17A9 transports ATP to the lysosomal lumen**](http://noctua.geneontology.org/workbench/noctua-visual-pathway-editor/?model_id=gomodel%3A63f809ec00001779)
|
16
|
+
|
17
|
+

|
18
|
+
|
19
|
+
##
|
20
|
+
|
21
|
+
## Form Editor
|
22
|
+
|
23
|
+
The activity unit for a transmembrane transporter is:
|
24
|
+
|
25
|
+
* **MF**: a child of transmembrane transporter activity [GO:0022857](https://www.ebi.ac.uk/QuickGO/term/GO%3A0022857)
|
26
|
+
* **Context:** The movement of the small molecule substrate is represented by:
|
27
|
+
+ 'has input’ the small molecule (ChEBI)
|
28
|
+
+ **BP** 'part of' the BP in which this transporter activity participates
|
29
|
+
+ **CC** 'occurs in' a child of membrane ([GO:0016020](https://www.ebi.ac.uk/QuickGO/term/GO%3A0016020)), e. g.: lysosomal membrane ([GO:0005765](https://www.ebi.ac.uk/QuickGO/term/GO%3A0005765))
|
30
|
+
|
31
|
+
**Example:** [**SLC17A9 transports ATP to the lysosomal lumen**](http://noctua.geneontology.org/workbench/noctua-visual-pathway-editor/?model_id=gomodel%3A63f809ec00001779)
|
32
|
+
|
33
|
+

|
34
|
+
|
35
|
+
# Differences between GO-CAM and standard annotation of a transmembrane transporter activity
|
36
|
+
|
37
|
+
In standard annotation (captured with the Noctua Form or Protein2GO), the localization of the molecule is not captured; neither is the output of the transporter, since that output relates to the localization of the molecule transported.
|
38
|
+
|
39
|
+
# Review information
|
40
|
+
|
41
|
+
Review date: 2023-07-20
|
42
|
+
|
43
|
+
Reviewed by:Cristina Casals, Pascale Gaudet, Patrick Masson
|
Binary file
|
Binary file
|
@@ -0,0 +1,31 @@
|
|
1
|
+
# Guidelines for annotating regulation and regulatory processes in GO-CAM
|
2
|
+
|
3
|
+
Molecular functions, and the biological processes of which they are a part, are often subject to some form of regulation, typically in response to changing environmental conditions or stimuli.
|
4
|
+
|
5
|
+
In GO, regulation has a very specific meaning: for one molecular function to regulate another, the **mechanism must be known**, it must occur under **specific** **conditions** (i.e. not constant), and may be **direct** (contiguous activities) or **indirect** (non-contiguous, with intervening activities). Regulatory activities may also have a **positive or negative effect** on the downstream activity.
|
6
|
+
|
7
|
+
Examples of regulatory molecular functions include, but are certainly not limited to, protein kinase activity, GTPase activator (GAP) activity, and transcription regulator activities.
|
8
|
+
|
9
|
+
Modeling regulation is an important aspect of GO-CAM curation but can differ according to how the regulatory activities function in the broader context of the biological process.
|
10
|
+
|
11
|
+
Examples of distinct ways to capture regulation in GO-CAMs are discussed below.
|
12
|
+
|
13
|
+
## Metabolic pathways and feedback regulatory mechanisms
|
14
|
+
|
15
|
+
Feedback mechanisms in which a product, or output, of one activity in a process inhibits another activity in a process (i.e. negative feedback loop) is an important way to regulate metabolic processes.
|
16
|
+
|
17
|
+
Feedback loops represent a type of process regulation that is ‘self-contained’, i.e. the regulatory activity is not typically part of another, larger regulatory process.
|
18
|
+
|
19
|
+
In these cases, curators include the regulatory activity in the metabolic model and capture the output molecules that stimulate the regulation and the causal relation between the regulatory and regulated activities.
|
20
|
+
|
21
|
+
An example of this type of regulation is found in the GDP-mannose biosynthetic process ([GO:0009298](https://amigo.geneontology.org/amigo/term/GO%3A0009298)), in which the terminal output generated by GMPPB, GDP-alpha-D-mannose, binds to, and stimulates the inhibitory activity of, GMPPA on GMPPB.
|
22
|
+
|
23
|
+
Figure 1 shows a cartoon schematic of how GMPPA inhibits GMPPB, while Figure 2 shows how this regulation is modeled in GO-CAM as part of the larger metabolic process. for *D. melanogaster* model for [GDP-mannose biosynthetic process from glucose (Dmel)](http://noctua.geneontology.org/workbench/noctua-visual-pathway-editor/?model_id=gomodel%3A662af8fa00000838).
|
24
|
+
|
25
|
+
In this model, the output, GDP-alpha-D-mannose, of the terminal activity in the pathway, mannose-1-phosphate guanylyltransferase (GTP) activity enabled by Gmppb, is a small molecule activator of the enzyme inhibitor activity enabled by Gmppa. When bound to GDP-alpha-D-mannose (2-), Gmppa undergoes a conformational change that then inhibits catalytic activity of Gmppb.
|
26
|
+
|
27
|
+

|
28
|
+
|
29
|
+
https://www.nature.com/articles/s41594-021-00591-9
|
30
|
+
|
31
|
+

|
@@ -0,0 +1,131 @@
|
|
1
|
+
Guidelines for DNA-binding transcription factor
|
2
|
+
annotation in eukaryotes
|
3
|
+
Pathway Editor
|
4
|
+
DNA-binding transcription factor activity - Single transcription target
|
5
|
+
The activity unit for a eukaryotic DNA-binding transcription factor is:
|
6
|
+
o MF: 'enables' a child of DNA binding transcription factor activity, RNA polymerase, IIspecific (GO:0000981):
|
7
|
+
▪
|
8
|
+
|
9
|
+
DNA-binding transcription activator activity, RNA polymerase, II-specific
|
10
|
+
(GO:0001228)
|
11
|
+
|
12
|
+
▪
|
13
|
+
|
14
|
+
DNA-binding transcription repressor activity, RNA polymerase II-specific
|
15
|
+
(GO:0001227)
|
16
|
+
|
17
|
+
o
|
18
|
+
|
19
|
+
Context:
|
20
|
+
▪
|
21
|
+
|
22
|
+
The relation between the DNA-binding transcription factor activity and the
|
23
|
+
gene it regulates is 'has input'
|
24
|
+
|
25
|
+
▪
|
26
|
+
|
27
|
+
BP: 'part of' regulation of the BP in which the target participates (if known).
|
28
|
+
|
29
|
+
▪
|
30
|
+
|
31
|
+
CC: 'occurs in' nucleus (GO:0005634)
|
32
|
+
|
33
|
+
▪
|
34
|
+
|
35
|
+
The causal relation between the transcription factor activity and the activity of
|
36
|
+
its target gene is: ‘indirectly positively regulates’ or 'indirectly negatively
|
37
|
+
regulates’, since there are many steps between the activation of transcription
|
38
|
+
and the activity of the target protein, including the production of a messenger
|
39
|
+
RNA that is translated into a protein, i. e the regulator does not directly
|
40
|
+
interact with the protein it regulates.
|
41
|
+
|
42
|
+
Example single target: FOXO3 regulation of G6PC1
|
43
|
+
|
44
|
+
DNA-binding transcription factor activity - Multiple transcription targets
|
45
|
+
In cases where transcription factor regulates multiple target genes, a separate activity unit is
|
46
|
+
captured for each transcriptional target.
|
47
|
+
|
48
|
+
Example multiple targets: FOXO3 regulation of G6PC1 and Pck1
|
49
|
+
|
50
|
+
Nuclear receptors and ligand-activated transcription factors
|
51
|
+
●
|
52
|
+
|
53
|
+
Nuclear receptors are positively regulated by a ligand, usually a small molecule
|
54
|
+
(ChEBI).
|
55
|
+
|
56
|
+
●
|
57
|
+
|
58
|
+
The activity unit for a nuclear receptor is:
|
59
|
+
○ MF: nuclear receptor activity (GO:0004879) (a child of transcription factor
|
60
|
+
activity)
|
61
|
+
○ Context: the causal relation between the small molecule and the nuclear
|
62
|
+
receptor is ‘is small activator of’.
|
63
|
+
○ Other data are captured the same way as for other transcription factors.
|
64
|
+
|
65
|
+
Example: Model for nuclear receptor annotation
|
66
|
+
|
67
|
+
Form Editor
|
68
|
+
DNA-binding transcription factor activity
|
69
|
+
o
|
70
|
+
|
71
|
+
MF: 'enables' a child of DNA binding transcription factor activity, RNA polymerase, IIspecific (GO:0000981):
|
72
|
+
▪
|
73
|
+
|
74
|
+
DNA-binding transcription activator activity, RNA polymerase, II-specific
|
75
|
+
(GO:0001228)
|
76
|
+
|
77
|
+
▪
|
78
|
+
|
79
|
+
DNA-binding transcription repressor activity, RNA polymerase II-specific
|
80
|
+
(GO:0001227)
|
81
|
+
|
82
|
+
o
|
83
|
+
|
84
|
+
Context:
|
85
|
+
▪
|
86
|
+
|
87
|
+
The relation between the DNA-binding transcription factor activity and the
|
88
|
+
gene it regulates is 'has input'. A single input is captured per activity unit.
|
89
|
+
|
90
|
+
▪
|
91
|
+
|
92
|
+
regulation of transcription may be 'part of' a larger BP, specifically,
|
93
|
+
regulation of the BP in which the target participates (if known).
|
94
|
+
|
95
|
+
▪
|
96
|
+
|
97
|
+
CC: 'occurs in' nucleus (GO:0005634)
|
98
|
+
|
99
|
+
Example DNA binding transcription factor activity: FOXO3 regulation of G6PC1
|
100
|
+
|
101
|
+
Nuclear receptors and ligand-activated transcription factors
|
102
|
+
Example: Model for nuclear receptor annotation guidelines
|
103
|
+
The annotations are the same as for DNA binding transcription factor activity, except using
|
104
|
+
the more precise MF nuclear receptor activity (GO:0004879).
|
105
|
+
|
106
|
+
Differences between GO-CAM and standard
|
107
|
+
annotation of a DNA-binding transcription factor
|
108
|
+
activity
|
109
|
+
In standard annotation (captured with the Noctua Form or Protein2GO), relations between
|
110
|
+
molecular functions are not captured, so there is no relation between the DNA binding
|
111
|
+
transcription factor and the MF of its transcriptional target.
|
112
|
+
For nuclear receptors, the relation between the small molecule activator and the transcription
|
113
|
+
factor is not captured.
|
114
|
+
|
115
|
+
Open questions
|
116
|
+
-
|
117
|
+
|
118
|
+
FORM: For nuclear receptors, the relation between the small molecule activator and
|
119
|
+
the transcription factor is not captured: can we add the relation in the Form?
|
120
|
+
|
121
|
+
Future features
|
122
|
+
Chromosomal coordinates of the promoter/enhancer/loop anchor binding site of a DNAbinding transcription factor will be captured as 'has input'. For for the human genome, the
|
123
|
+
syntax is: hg38_chr6:12334566-12335555* if we want to capture the chromosomal region
|
124
|
+
|
125
|
+
* https://eu.idtdna.com/pages/support/faqs/how-are-genomic-coordinates-defined
|
126
|
+
|
127
|
+
Review information
|
128
|
+
Review date: 2023-07-20
|
129
|
+
Reviewed by: Cristina Casals, Pascale Gaudet, Patrick Masson
|
130
|
+
|
131
|
+
|
@@ -0,0 +1,166 @@
|
|
1
|
+
E3 ubiquitin ligases
|
2
|
+
An E3 ubiquitin ligase is a protein that recruits an E2 ubiquitin-conjugating enzyme loaded
|
3
|
+
with ubiquitin, recognizes a protein substrate, and assists or directly catalyzes the transfer of
|
4
|
+
ubiquitin from the E2 to the protein substrate.
|
5
|
+
The recognition of the protein substrate can be done by the ubiquitin protein ligase itself or
|
6
|
+
through a complex composed of ubiquitin ligase-substrate adaptor and ubiquitin ligase
|
7
|
+
complex scaffolds.
|
8
|
+
https://en.wikipedia.org/wiki/Ubiquitin_ligase
|
9
|
+
|
10
|
+
How to annotate E3 ubiquitin ligases
|
11
|
+
E3 ligase that promotes ubiquitination by itself
|
12
|
+
The molecular activity unit for the ubiquitin ligase is:
|
13
|
+
○ MF: 'enables' ubiquitin protein ligase activity GO:0061630
|
14
|
+
○ 'has input' the substrate protein
|
15
|
+
○ BPs:
|
16
|
+
○ 'part of' ubiquitination (GO:0016567): if known, the BP should describe the
|
17
|
+
type of ubiquitination (K-48, K-63…)
|
18
|
+
ex: protein K48-linked ubiquitination GO:0070936; otherwise, use the parent protein
|
19
|
+
ubiquitination GO:0016567 or protein polyubiquitination GO:0000209.
|
20
|
+
● the ubiquitination is part_of the biological process in which the ubiquitination
|
21
|
+
is involved:
|
22
|
+
e. g. : proteasome-mediated ubiquitin-dependent protein catabolic process
|
23
|
+
GO:0043161 or children, such as: SCF-dependent proteasomal ubiquitindependent protein catabolic process (GO:0031146) or ubiquitin-dependent
|
24
|
+
protein catabolic process via the C-end degron rule pathway (GO:0140627)
|
25
|
+
● and/or part of’ the BP in which the ubiquitination is involved: DNA repair, DNA
|
26
|
+
damage response, lysosomal degradation, etc
|
27
|
+
regulated by this mechanism (ex: negative regulation of inflammatory
|
28
|
+
response, GO:0050728)
|
29
|
+
● The causal relation to the substrate molecular activity unit is: ‘indirectly negatively
|
30
|
+
regulates’.
|
31
|
+
|
32
|
+
Example: TRIM45-mediated degradation of TAB2 leading to inflammatory response
|
33
|
+
inhibition (Human)
|
34
|
+
|
35
|
+
An E3-ligase complex with adaptors and scaffold protein(s)
|
36
|
+
●
|
37
|
+
|
38
|
+
The molecular activity unit for the ubiquitin ligase complex scaffold, such as CUL4A
|
39
|
+
and/or DDB1 is:
|
40
|
+
○ MF: ubiquitin ligase complex scaffold activity GO:0160072
|
41
|
+
○ Has input both the ubiquitin ligase-substrate adaptor and the ubiquitin protein
|
42
|
+
ligase
|
43
|
+
○ BP: if known, the BP should describe the type of ubiquitination (K-48, K-63…)
|
44
|
+
ex: protein K48-linked ubiquitination GO:0070936
|
45
|
+
if not known, use a BP describing the biological process in which the
|
46
|
+
ubiquitination is involved in.
|
47
|
+
ex: proteasome-mediated ubiquitin-dependent protein catabolic process
|
48
|
+
GO:0043161 or children, such as: SCF-dependent proteasomal ubiquitindependent protein catabolic process (GO:0031146) or ubiquitin-dependent
|
49
|
+
protein catabolic process via the C-end degron rule pathway (GO:0140627)
|
50
|
+
‘Part of’ the BP regulated by this mechanism (ex: T cell activation,
|
51
|
+
GO:0042110)
|
52
|
+
|
53
|
+
●
|
54
|
+
|
55
|
+
The causal relation between the substrate molecular activity unit is: ‘directly
|
56
|
+
negatively regulates’ if it leads to degradation. (to decide for the other cases)
|
57
|
+
|
58
|
+
●
|
59
|
+
|
60
|
+
The causal relation to the ubiquitin ligase-substrate adaptor molecular activity unit is:
|
61
|
+
‘directly regulates’.
|
62
|
+
|
63
|
+
●
|
64
|
+
|
65
|
+
The molecular activity unit for the ubiquitin ligase-substrate adaptor is:
|
66
|
+
○ MF: ubiquitin ligase-substrate adaptor activity GO:1990756
|
67
|
+
○ Has input the substrate protein
|
68
|
+
○ BP: if known, the BP should describe the type of ubiquitination (K-48, K-63…)
|
69
|
+
ex: protein K48-linked ubiquitination GO:0070936
|
70
|
+
if not known, use a BP describing the biological process in which the
|
71
|
+
ubiquitination is involved in.
|
72
|
+
ex: proteasome-mediated ubiquitin-dependent protein catabolic process
|
73
|
+
GO:0043161 or children, such as: SCF-dependent proteasomal ubiquitin-
|
74
|
+
|
75
|
+
dependent protein catabolic process (GO:0031146) or ubiquitin-dependent
|
76
|
+
protein catabolic process via the C-end degron rule pathway (GO:0140627)
|
77
|
+
‘Part of’ the BP regulated by this mechanism (ex: T cell activation,
|
78
|
+
GO:0042110)
|
79
|
+
●
|
80
|
+
|
81
|
+
The causal relation to the ubiquitin ligase molecular activity unit is: ‘directly provides
|
82
|
+
input for’.
|
83
|
+
|
84
|
+
●
|
85
|
+
|
86
|
+
Annotation of the ubiquitin ligase is the same as above
|
87
|
+
|
88
|
+
Example: DCAF12 controls MOV10 during T cell activation. (Human)
|
89
|
+
|
90
|
+
When only substrate adaptor and substrate are known (scaffold and ligase not
|
91
|
+
known)
|
92
|
+
|
93
|
+
Example: FBXL19-mediated degradation of IL1R1 via GSK3B (Human)
|
94
|
+
|
95
|
+
●
|
96
|
+
|
97
|
+
The molecular activity unit for the ubiquitin ligase-substrate adaptor is:
|
98
|
+
○ MF: ubiquitin ligase-substrate adaptor activity GO:1990756
|
99
|
+
○ Has input the substrate protein
|
100
|
+
○ BP: if known, the BP should describe the type of ubiquitination (K-48, K-63…)
|
101
|
+
ex: protein K48-linked ubiquitination GO:0070936
|
102
|
+
|
103
|
+
if not known, use a BP describing the biological process in which the
|
104
|
+
ubiquitination is involved in.
|
105
|
+
ex: proteasome-mediated ubiquitin-dependent protein catabolic process
|
106
|
+
GO:0043161 or children, such as: SCF-dependent proteasomal ubiquitindependent protein catabolic process (GO:0031146) or ubiquitin-dependent
|
107
|
+
protein catabolic process via the C-end degron rule pathway (GO:0140627)
|
108
|
+
‘Part of’ the BP regulated by this mechanism (ex: T cell activation,
|
109
|
+
GO:0042110)
|
110
|
+
●
|
111
|
+
|
112
|
+
The causal relation to the substrate molecular activity unit is: ‘indirectly regulates’
|
113
|
+
since we don’t add/have information about the E3 ligase.
|
114
|
+
|
115
|
+
When only substrate adaptor, scaffold and substrate are known (ligase not known)
|
116
|
+
Ex: DCAF13 supports the spindle assembly and chromosome condensation during oocyte
|
117
|
+
meiotic division by targeting PTEN polyubiquitination and degradation. (Human)
|
118
|
+
|
119
|
+
●
|
120
|
+
|
121
|
+
●
|
122
|
+
●
|
123
|
+
|
124
|
+
The molecular activity unit for the ubiquitin ligase complex scaffold, such as CUL4A
|
125
|
+
and/or DDB1 is:
|
126
|
+
○ MF: ubiquitin ligase complex scaffold activity GO:0160072
|
127
|
+
○ Has input both the ubiquitin ligase-substrate adaptor and the ubiquitin protein
|
128
|
+
ligase
|
129
|
+
○ BP: if known, the BP should describe the type of ubiquitination (K-48, K-63…)
|
130
|
+
ex: protein K48-linked ubiquitination GO:0070936
|
131
|
+
if not known, use a BP describing the biological process in which the
|
132
|
+
ubiquitination is involved in.
|
133
|
+
ex: proteasome-mediated ubiquitin-dependent protein catabolic process
|
134
|
+
GO:0043161 or children, such as: SCF-dependent proteasomal ubiquitindependent protein catabolic process (GO:0031146) or ubiquitin-dependent
|
135
|
+
protein catabolic process via the C-end degron rule pathway (GO:0140627)
|
136
|
+
‘Part of’ the BP regulated by this mechanism (ex: T cell activation,
|
137
|
+
GO:0042110)
|
138
|
+
The causal relation to the ubiquitin ligase-substrate adaptor molecular activity unit is:
|
139
|
+
‘directly regulates’.
|
140
|
+
The molecular activity unit for the ubiquitin ligase-substrate adaptor is:
|
141
|
+
○ MF: ubiquitin ligase-substrate adaptor activity GO:1990756
|
142
|
+
○ Has input the substrate protein
|
143
|
+
○ BP: if known, the BP should describe the type of ubiquitination (K-48, K-63…)
|
144
|
+
ex: protein K48-linked ubiquitination GO:0070936
|
145
|
+
if not known, use a BP describing the biological process in which the
|
146
|
+
ubiquitination is involved in.
|
147
|
+
|
148
|
+
ex: proteasome-mediated ubiquitin-dependent protein catabolic process
|
149
|
+
GO:0043161 or children, such as: SCF-dependent proteasomal ubiquitindependent protein catabolic process (GO:0031146) or ubiquitin-dependent
|
150
|
+
protein catabolic process via the C-end degron rule pathway (GO:0140627)
|
151
|
+
‘Part of’ the BP regulated by this mechanism (ex: T cell activation,
|
152
|
+
GO:0042110)
|
153
|
+
●
|
154
|
+
|
155
|
+
The causal relation to the substrate molecular activity unit is: ‘indirectly regulates’
|
156
|
+
since we don’t add/have information about the E3 ligase.
|
157
|
+
|
158
|
+
Examples of larger processes in which various types of
|
159
|
+
ubiquitination play a role
|
160
|
+
|
161
|
+
Source: PMID:27285106
|
162
|
+
|
163
|
+
Review date:
|
164
|
+
Reviewed by:
|
165
|
+
|
166
|
+
|
@@ -0,0 +1 @@
|
|
1
|
+
|
@@ -0,0 +1,28 @@
|
|
1
|
+
How to annotate complexes in GO-CAM
|
2
|
+
When complexes are involved in specific activities, several options are available in GO-CAM
|
3
|
+
to represent them.
|
4
|
+
|
5
|
+
1- The subunit that carries the molecular activity is known:
|
6
|
+
In that case, the complex is not described and the activity(ies) is represented by the specific
|
7
|
+
protein (s) carrying the activity.
|
8
|
+
Ex:
|
9
|
+
|
10
|
+
In this example, all the proteins in the E3 ligase complex have a defined and precise activity.
|
11
|
+
Therefore, they are all displayed in the model. In this case, the scaffold activity is usually
|
12
|
+
represented first, activating subsequent activities from the complex.
|
13
|
+
|
14
|
+
2- The subunit which carries the molecular activity is not known:
|
15
|
+
|
16
|
+
If the precise subunit carrying the activity is not known, we can use the GO accession for the
|
17
|
+
complex.
|
18
|
+
Ex: Ragulator complex (GO:0071986): Ragulator is comprised of the membrane anchor
|
19
|
+
subunit LAMTOR1, LAMTOR2, LAMTOR3, LAMTOR4 and LAMTOR5.
|
20
|
+
|
21
|
+
In this example LAMTOR1 activity is known (protein-membrane adaptor activity) but the
|
22
|
+
protein that carries the guanyl-nucleotide exchange factor activity is not known, therefore we
|
23
|
+
use the complex ID from GO in this situation.
|
24
|
+
|
25
|
+
3- If the activity is shared by several proteins
|
26
|
+
EX: Heterodimeric receptor where both activities are important for activity.
|
27
|
+
|
28
|
+
|
@@ -0,0 +1,19 @@
|
|
1
|
+
How to annotate molecular adaptors
|
2
|
+
Here we describe how to capture a molecular adaptor activity which is defined as the binding
|
3
|
+
activity of a molecule that brings together two or more molecules through a selective, noncovalent, often stoichiometric interaction, permitting those molecules to function in a
|
4
|
+
coordinated way.
|
5
|
+
Example 1: TYROBP acts as an adaptor between a receptor and a downstream effector
|
6
|
+
|
7
|
+
The molecular activity unit for molecular adaptor may include:
|
8
|
+
o MF: molecular adaptor activity (GO:0060090) or one of its children
|
9
|
+
o Has input the two (or more) molecules it brings together.
|
10
|
+
o BP: the BP it participates in
|
11
|
+
o CC: the place where the activity occurs.
|
12
|
+
The relation with the downstream activity used is “directly positively regulates”
|
13
|
+
|
14
|
+
Example 2: When an adaptor brings together an enzyme and its substrate
|
15
|
+
|
16
|
+
The molecular activity is the same as above (MF, inputs, BP, CC)
|
17
|
+
But in that case, the relation with the downstream activity used is “provides input for”
|
18
|
+
|
19
|
+
|
@@ -0,0 +1,38 @@
|
|
1
|
+
Sequestering activity
|
2
|
+
A sequestering activity is defined as the binding to a specific molecule to prevent it from
|
3
|
+
interacting with other partners or to inhibit its localization to the area of the cell or complex
|
4
|
+
where the target is active.
|
5
|
+
|
6
|
+
Pathway Editor
|
7
|
+
The activity unit for sequestering activity is:
|
8
|
+
● MF: molecular sequestering activity (GO:0140313) or a child
|
9
|
+
● Context:
|
10
|
+
○ The relation between the protein that act to sequester and its target receptor
|
11
|
+
is 'has input'
|
12
|
+
○ BP: the BP it inhibits
|
13
|
+
○ CC: the place where the activity occurs.
|
14
|
+
●
|
15
|
+
○ The causal relation between the sequestering activity and the activity of the
|
16
|
+
protein it inhibits is 'directly positively regulates'.
|
17
|
+
|
18
|
+
Example 1: Sequestering activity of CAV1 on TLR4 signaling
|
19
|
+
|
20
|
+
The molecular activity unit for molecular adaptor may include:
|
21
|
+
o MF: molecular sequestering activity (GO:0140313) or one of its children
|
22
|
+
o
|
23
|
+
The relation with the downstream activity used is “directly negatively regulates”
|
24
|
+
|
25
|
+
Example 2: Sequestering activity of YWHAZ on RAF1
|
26
|
+
|
27
|
+
In that example, the difference in the cellular component between the two activities clearly
|
28
|
+
show that the YWHAZ protein sequesters RAF1 in the cytoplasm, preventing its activity in
|
29
|
+
the plasma membrane.
|
30
|
+
The relation used between both activities is “directly negatively regulates” because there
|
31
|
+
is direct interaction between both proteins.
|
32
|
+
|
33
|
+
Form Editor
|
34
|
+
|
35
|
+
Review date: 2023-06-22
|
36
|
+
Reviewed by: Pascale Gaudet, Patrick Masson
|
37
|
+
|
38
|
+
|
@@ -0,0 +1,52 @@
|
|
1
|
+
Guidelines for annotating molecular adaptor
|
2
|
+
activity
|
3
|
+
A molecular adaptor activity is the binding activity of a molecule that brings together two or
|
4
|
+
more molecules through a selective, non-covalent, often stoichiometric interaction, permitting
|
5
|
+
those molecules to function in a coordinated way.
|
6
|
+
|
7
|
+
Pathway Editor
|
8
|
+
The molecular activity unit for a molecular adaptor is:
|
9
|
+
●
|
10
|
+
●
|
11
|
+
|
12
|
+
MF: 'enables' molecular adaptor activity (GO:0060090) or a child
|
13
|
+
Context:
|
14
|
+
○ The relation between the adaptor activity and the two (or more) molecules it
|
15
|
+
brings together is 'has input'
|
16
|
+
○ BP: 'part of' the BP in which the adaptor participates
|
17
|
+
○ CC: 'occurs in' the cellular location where the activity takes place.
|
18
|
+
|
19
|
+
The relation between the adaptor and the proteins it adapts can be 'directly positively
|
20
|
+
regulates' or 'provides input for', depending if the activity of the adaptor is regulatory.
|
21
|
+
Example 1: TYROBP acts as an adaptor between a receptor and a downstream
|
22
|
+
effector
|
23
|
+
SIGLEC1 recognizes and endocytoses virions, which leads to activation of the TYROBP
|
24
|
+
molecular adaptor, which recruits PTPN11. The scaffolding activity of PTPN11 is activated
|
25
|
+
by TYROBP.
|
26
|
+
|
27
|
+
Example 2: An adaptor that brings together an enzyme and its substrate
|
28
|
+
|
29
|
+
In that case, the relation between the adaptor activity and the downstream activity is
|
30
|
+
'provides input for'.
|
31
|
+
|
32
|
+
Form Editor
|
33
|
+
●
|
34
|
+
●
|
35
|
+
|
36
|
+
MF: 'enables' molecular adaptor activity (GO:0060090) or a child
|
37
|
+
Context:
|
38
|
+
○ The relation between the adaptor activity and the two (or more) molecules it
|
39
|
+
brings together is 'has input'
|
40
|
+
○ BP: 'part of' the BP in which the adaptor participates
|
41
|
+
○ CC: 'occurs in' the cellular location where the activity takes place.
|
42
|
+
|
43
|
+
Differences between GO-CAM and standard
|
44
|
+
annotation of a molecular adaptor activity
|
45
|
+
In standard annotation (captured with the Noctua Form or Protein2GO), relations between
|
46
|
+
molecular functions are not captured.
|
47
|
+
|
48
|
+
Review information
|
49
|
+
Review date: 2023-07-20
|
50
|
+
Reviewed by: Cristina Casals, Pascale Gaudet, Patrick Masson
|
51
|
+
|
52
|
+
|
@@ -0,0 +1,59 @@
|
|
1
|
+
Guidelines for annotating molecular carrier activity
|
2
|
+
Pathway Editor
|
3
|
+
The activity unit for a molecular carrier is:
|
4
|
+
●
|
5
|
+
|
6
|
+
MF: a molecular carrier 'enables' molecular carrier activity (GO:0140104) or a child
|
7
|
+
|
8
|
+
●
|
9
|
+
|
10
|
+
Context:
|
11
|
+
o
|
12
|
+
|
13
|
+
o
|
14
|
+
|
15
|
+
o
|
16
|
+
|
17
|
+
The relation between a transported molecule and its carrier is 'has input'. The
|
18
|
+
carrier and the small molecule are linked with the 'has output' relation, so that the
|
19
|
+
small molecule can be the input for the next reaction.
|
20
|
+
BP 'part of' the process in the molecule using the small molecule participates, or
|
21
|
+
'part of' regulation of the process, if the carrier is regulators (rate-limiting for the
|
22
|
+
execution of the process)
|
23
|
+
CC: 'occurs in' the cellular location where the activity takes place.
|
24
|
+
|
25
|
+
Example 1: LPS is carried to its receptor by CD14
|
26
|
+
|
27
|
+
Form Editor
|
28
|
+
The activity unit for a molecular carrier is:
|
29
|
+
●
|
30
|
+
|
31
|
+
MF: a molecular carrier 'enables' molecular carrier activity (GO:0140104) or a child
|
32
|
+
|
33
|
+
●
|
34
|
+
|
35
|
+
Context:
|
36
|
+
o
|
37
|
+
|
38
|
+
o
|
39
|
+
|
40
|
+
o
|
41
|
+
|
42
|
+
The relation between a transported molecule and its carrier is 'has input'. The
|
43
|
+
carrier and the small molecule are linked with the 'has output' relation, so that the
|
44
|
+
small molecule can be the input for the next reaction.
|
45
|
+
BP 'part of' the process in the molecule using the small molecule participates, or
|
46
|
+
'part of' regulation of the process, if the carrier is regulators (rate-limiting for the
|
47
|
+
execution of the process)
|
48
|
+
CC: 'occurs in' the cellular location where the activity takes place.
|
49
|
+
|
50
|
+
Differences between GO-CAM and standard
|
51
|
+
annotation for a molecular carrier activity
|
52
|
+
The same information is captured for the carrier activity and its context; however in the standard
|
53
|
+
annotations,it is not possible to capture the order of the reactions.
|
54
|
+
|
55
|
+
Review information
|
56
|
+
Review date: 2023-07-25
|
57
|
+
Reviewed by: Cristina Casals, Pasclae Gaudet, Patrick Masson
|
58
|
+
|
59
|
+
|