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,52 @@
|
|
1
|
+
Guidelines for annotating molecular sequestering
|
2
|
+
activity
|
3
|
+
A sequestering activity is defined as the binding to a specific molecule to prevent it from
|
4
|
+
interacting with other partners or to inhibit its localization to the area of the cell or complex
|
5
|
+
where the target is active.
|
6
|
+
|
7
|
+
Pathway Editor
|
8
|
+
The activity unit for a molecular sequestering activity is:
|
9
|
+
● MF: molecular sequestering activity (GO:0140313). The most commonly used
|
10
|
+
child is protein sequestering activity (GO:0140311).
|
11
|
+
●
|
12
|
+
|
13
|
+
Context:
|
14
|
+
○ The relation between the protein that act to sequester and its target is 'has
|
15
|
+
input'
|
16
|
+
○ BP: 'part of' negative regulation of the BP in which the target protein
|
17
|
+
participates .
|
18
|
+
○ CC: the location where the activity occurs.
|
19
|
+
○ The causal relation between the sequestering activity and the activity of the
|
20
|
+
protein it inhibits is 'directly negatively regulates' because there is a direct
|
21
|
+
interaction between the two proteins.
|
22
|
+
|
23
|
+
Example 1: Sequestering activity of CAV1 negatively regulates TLR4 signaling
|
24
|
+
|
25
|
+
Example 2: Trans-negative regulation of Sars-CoV-2 viral entry into host cell
|
26
|
+
by LRRC15.
|
27
|
+
|
28
|
+
Form Editor
|
29
|
+
The activity unit for sequestering activity is:
|
30
|
+
●
|
31
|
+
●
|
32
|
+
|
33
|
+
MF: molecular sequestering activity (GO:0140313) or a child
|
34
|
+
Context:
|
35
|
+
○ The relation between the protein that act to sequester and its target receptor
|
36
|
+
is 'has input'
|
37
|
+
○ BP: negative regulation of the BP in which the regulated protein participates
|
38
|
+
○ CC: the location where the activity occurs.
|
39
|
+
|
40
|
+
Example 1: Sequestering activity of CAV1 negatively regulates TLR4 signaling
|
41
|
+
|
42
|
+
Differences between GO-CAM and standard
|
43
|
+
annotation of a sequestering activity
|
44
|
+
In standard annotation (captured with the Noctua Form or Protein2GO), relations between
|
45
|
+
molecular functions are not captured, so there is no relation between the sequestering
|
46
|
+
activity and the activity of the protein being sequestered.
|
47
|
+
|
48
|
+
Review information
|
49
|
+
Review date: 2023-07-25
|
50
|
+
Reviewed by: Cristina Casals, Pascale Gaudet, Patrick Masson
|
51
|
+
|
52
|
+
|
@@ -0,0 +1,271 @@
|
|
1
|
+
Guidelines for annotating signaling receptor
|
2
|
+
activity
|
3
|
+
Receptor activation by a ligand is represented differently in GO-CAM depending on whether
|
4
|
+
the ligand is (i) a protein (i. e., encoded by a gene) or (ii) a small molecule.
|
5
|
+
|
6
|
+
Pathway Editor
|
7
|
+
Protein ligand-activated signaling receptor
|
8
|
+
Ligand
|
9
|
+
The activity unit for a ligand of a signaling receptor is:
|
10
|
+
●
|
11
|
+
|
12
|
+
MF: a ligand 'enables' receptor ligand activity (GO:0048018) or a child
|
13
|
+
|
14
|
+
●
|
15
|
+
|
16
|
+
Context:
|
17
|
+
o
|
18
|
+
o
|
19
|
+
o
|
20
|
+
|
21
|
+
The relation between a ligand and its target receptor is 'has input'
|
22
|
+
BP 'part of' the process in which the ligand participates, usually a child of
|
23
|
+
signal transduction (GO:0007165)
|
24
|
+
CC:
|
25
|
+
▪
|
26
|
+
|
27
|
+
extracellular ligands: 'occurs in' extracellular space (GO:0005615)
|
28
|
+
|
29
|
+
▪
|
30
|
+
|
31
|
+
membrane-bound ligands: 'occurs in' plasma membrane
|
32
|
+
(GO:0005886)
|
33
|
+
|
34
|
+
o
|
35
|
+
|
36
|
+
The causal relation between the ligand activity and the receptor activity is
|
37
|
+
'directly positively regulates'.
|
38
|
+
|
39
|
+
Signaling receptor
|
40
|
+
The activity unit for a signaling receptor is:
|
41
|
+
●
|
42
|
+
|
43
|
+
MF: 'enables' signaling receptor activity (GO:0038023) or a child.
|
44
|
+
|
45
|
+
●
|
46
|
+
|
47
|
+
Context:
|
48
|
+
o
|
49
|
+
o
|
50
|
+
|
51
|
+
The input (target) of the receptor is the effector protein it regulates, for
|
52
|
+
example a molecular adaptor, captured with the 'has input' relation.
|
53
|
+
Note that the input (target) of the receptor is NOT its ligand
|
54
|
+
|
55
|
+
●
|
56
|
+
|
57
|
+
BP 'part of' the same BP/signal transduction pathway as the ligand
|
58
|
+
|
59
|
+
●
|
60
|
+
|
61
|
+
CC: transmembrane receptors: 'occurs in' plasma membrane (GO:0005886)
|
62
|
+
|
63
|
+
o
|
64
|
+
|
65
|
+
The causal relation between the MF of the receptor and the MF of its target
|
66
|
+
is 'directly positively regulates'.
|
67
|
+
|
68
|
+
Example: Insulin signaling model
|
69
|
+
|
70
|
+
Small molecule-activated signaling receptor activity
|
71
|
+
●
|
72
|
+
|
73
|
+
Since small molecules are not annotated in GO, a small molecule ligand does not
|
74
|
+
have a molecular function. Instead, the ligand and the receptor activity are linked
|
75
|
+
by the causal relation 'is small molecule activator'.
|
76
|
+
|
77
|
+
●
|
78
|
+
|
79
|
+
The receptor's function, input, and contextual relations are the same as for protein
|
80
|
+
ligand-activated receptors.
|
81
|
+
|
82
|
+
●
|
83
|
+
|
84
|
+
Note that it is also possible to annotate an inhibitory ligand using the relation 'is small
|
85
|
+
molecule inhibitor'.
|
86
|
+
|
87
|
+
●
|
88
|
+
|
89
|
+
BP and CC annotations are the same as for protein ligand-activated receptor activity.
|
90
|
+
|
91
|
+
Example: Activation of a GPCR by succinate
|
92
|
+
|
93
|
+
Special cases
|
94
|
+
Receptor with coreceptor
|
95
|
+
This is common in immune receptors. The typical sequence of events is that the ligand binds
|
96
|
+
the signaling receptor, which signals to the co-receptor to activate its downstream effector
|
97
|
+
(such as a protein kinase).
|
98
|
+
|
99
|
+
Example: IL2 signaling pathway (Human)
|
100
|
+
In this case, the receptor is activated by an information biomacromolecule (i.e. a protein).
|
101
|
+
Interleukin-2 (IL2), a cytokine, activates its receptor, interleukin-2 receptor A (IL2RA).
|
102
|
+
IL2RA directly positively regulates (activates) IL2RB, which phosphorylates and positively
|
103
|
+
regulates JAK1.
|
104
|
+
The activity unit for a signaling coreceptor is:
|
105
|
+
●
|
106
|
+
|
107
|
+
MF: coreceptor activity (GO:0015026)
|
108
|
+
|
109
|
+
●
|
110
|
+
|
111
|
+
Context:
|
112
|
+
o
|
113
|
+
o
|
114
|
+
|
115
|
+
●
|
116
|
+
|
117
|
+
The relation between the receptor and its input (target) is the signaling
|
118
|
+
coreceptor it regulates, captured with the 'has input' relation
|
119
|
+
Note that the input (target) of the coreceptor is NOT the ligand
|
120
|
+
|
121
|
+
BP 'part of' the BP in which the signaling receptor is involved, usually a child of signal
|
122
|
+
transduction (GO:0007165)
|
123
|
+
|
124
|
+
●
|
125
|
+
|
126
|
+
CC: transmembrane receptors: 'occurs in' plasma membrane (GO:0005886)
|
127
|
+
o
|
128
|
+
|
129
|
+
The causal relation between the MF of the receptor and the MF of its
|
130
|
+
coreceptor is 'directly positively regulates'.
|
131
|
+
|
132
|
+
Note:
|
133
|
+
●
|
134
|
+
|
135
|
+
cytokine activity is_a receptor ligand activity
|
136
|
+
|
137
|
+
●
|
138
|
+
|
139
|
+
interleukin-2 receptor activity is_a signaling receptor activity
|
140
|
+
|
141
|
+
Form Editor
|
142
|
+
Protein ligand-activated signaling receptor
|
143
|
+
Ligand activity
|
144
|
+
The activity unit for a ligand of a signaling receptor is:
|
145
|
+
●
|
146
|
+
|
147
|
+
MF: a ligand 'enables' receptor ligand activity (GO:0048018) or a child
|
148
|
+
|
149
|
+
●
|
150
|
+
|
151
|
+
Context:
|
152
|
+
o
|
153
|
+
o
|
154
|
+
o
|
155
|
+
|
156
|
+
The relation between a ligand and its target receptor is 'has input'
|
157
|
+
BP 'part of' the BP in which this ligand is involved (usually a child of signal
|
158
|
+
transduction (GO:0007165))
|
159
|
+
CC:
|
160
|
+
▪
|
161
|
+
|
162
|
+
extracellular ligands: 'occurs in' extracellular space (GO:0005615)
|
163
|
+
|
164
|
+
▪
|
165
|
+
|
166
|
+
membrane-bound ligands: 'occurs in' plasma membrane
|
167
|
+
(GO:0005886)
|
168
|
+
|
169
|
+
●
|
170
|
+
|
171
|
+
The causal relation between the ligand activity and the receptor activity is
|
172
|
+
'directly positively regulates'.
|
173
|
+
|
174
|
+
Example: Insulin signaling model
|
175
|
+
|
176
|
+
Signaling receptor activity
|
177
|
+
The activity unit for a signaling receptor is:
|
178
|
+
|
179
|
+
●
|
180
|
+
|
181
|
+
MF: The receptor 'enables' signaling receptor activity (GO:0038023) or a child.
|
182
|
+
|
183
|
+
●
|
184
|
+
|
185
|
+
Context:
|
186
|
+
o
|
187
|
+
o
|
188
|
+
|
189
|
+
●
|
190
|
+
|
191
|
+
The input (target) of the receptor is the effector protein it regulates, for
|
192
|
+
example a molecular adaptor, captured with the 'has input' relation
|
193
|
+
Note that the input (target) of the receptor is NOT its ligand
|
194
|
+
|
195
|
+
BP in which the signaling receptor is involved, usually a child of signal transduction
|
196
|
+
(GO:0007165)
|
197
|
+
|
198
|
+
●
|
199
|
+
|
200
|
+
CC: 'occurs in' a child of cellular anatomical entity (GO:0110165). For
|
201
|
+
transmembrane receptors, annotate to plasma membrane (GO:0005886)
|
202
|
+
|
203
|
+
Example: Insulin signaling model
|
204
|
+
|
205
|
+
o
|
206
|
+
|
207
|
+
The causal relation between the MF of the receptor and the MF of its target
|
208
|
+
is 'directly positively regulates'.
|
209
|
+
|
210
|
+
Small molecule-activated signaling receptor activity
|
211
|
+
●
|
212
|
+
|
213
|
+
In the Form, small molecules are not captured, so the MF for the receptor. Therefore,
|
214
|
+
the MF is 'enables' signaling receptor activity (GO:0038023) or a child.
|
215
|
+
|
216
|
+
●
|
217
|
+
|
218
|
+
BP and CC annotations are the same as for protein ligand-activated receptor activity.
|
219
|
+
|
220
|
+
Receptor with coreceptor
|
221
|
+
Example: IL2 signaling pathway (Human)
|
222
|
+
In this case, the receptor, interleukin-2 receptor A (IL2RA), is activated by a protein ligand,
|
223
|
+
interleukin-2 (IL2). IL2RA directly positively regulates (activates) the coreceptor IL2RB,
|
224
|
+
which phosphorylates and positively regulates JAK1.
|
225
|
+
|
226
|
+
The activity unit for a signaling coreceptor is:
|
227
|
+
●
|
228
|
+
|
229
|
+
MF: The coreceptor 'enables' coreceptor activity (GO:0015026) or a child.
|
230
|
+
|
231
|
+
●
|
232
|
+
|
233
|
+
Context:
|
234
|
+
o
|
235
|
+
o
|
236
|
+
|
237
|
+
●
|
238
|
+
|
239
|
+
The input (target) of the coreceptor is the signaling receptor it regulates,
|
240
|
+
captured with the 'has input' relation
|
241
|
+
Note that the input (target) of the coreceptor is NOT the ligand
|
242
|
+
|
243
|
+
BP 'part of' the BP in which the signaling receptor is involved, usually a child of signal
|
244
|
+
transduction (GO:0007165)
|
245
|
+
|
246
|
+
●
|
247
|
+
|
248
|
+
CC: transmembrane receptors: 'occurs in' plasma membrane (GO:0005886)
|
249
|
+
|
250
|
+
Note:
|
251
|
+
●
|
252
|
+
|
253
|
+
cytokine activity is_a receptor ligand activity
|
254
|
+
|
255
|
+
●
|
256
|
+
|
257
|
+
interleukin-2 receptor activity is_a signaling receptor activity
|
258
|
+
|
259
|
+
Differences between GO-CAM and standard annotation of a
|
260
|
+
signaling receptor and its ligand
|
261
|
+
In standard annotation (captured with the Noctua Form or Protein2GO), relations between
|
262
|
+
molecular functions are not captured, so there is no relation between the ligand activity and
|
263
|
+
the signaling receptor activity, nor is there a relation between the signaling receptor activity
|
264
|
+
and the activity of its target. Likewise for receptor activity and coreceptor activity, there is no
|
265
|
+
relation between these activities captured in standard annotations.
|
266
|
+
|
267
|
+
Review information
|
268
|
+
Review date: 2023-07-20
|
269
|
+
Reviewed by: Cristina Casals, Pascale Gaudet, Patrick Masson
|
270
|
+
|
271
|
+
|
@@ -0,0 +1,54 @@
|
|
1
|
+
Transcription coregulator activity
|
2
|
+
The activity unit for a transcription coregulator is:
|
3
|
+
o
|
4
|
+
|
5
|
+
o
|
6
|
+
|
7
|
+
MF: a child of transcription coregulator activity (GO:0003712):
|
8
|
+
▪
|
9
|
+
|
10
|
+
transcription coactivator activity (GO:0003713)
|
11
|
+
|
12
|
+
▪
|
13
|
+
|
14
|
+
transcription corepressor activity (GO:0003714)
|
15
|
+
|
16
|
+
Context:
|
17
|
+
▪
|
18
|
+
|
19
|
+
has input: the transcription factor regulated, when known.
|
20
|
+
|
21
|
+
▪
|
22
|
+
|
23
|
+
BP in which this transcriptional event is involved
|
24
|
+
|
25
|
+
▪
|
26
|
+
|
27
|
+
CC: this activity occurs in the nucleus.
|
28
|
+
|
29
|
+
●
|
30
|
+
|
31
|
+
The causal relation between the transcription coregulator activity and the transcription
|
32
|
+
factor activity unit is ‘directly positively regulates’ or 'directly negatively regulates.
|
33
|
+
|
34
|
+
●
|
35
|
+
|
36
|
+
If the causal relation between the coregulator and the target gene regulated needs to be
|
37
|
+
captured, the causal relation is: ‘indirectly positively regulates’ or 'indirectly negatively
|
38
|
+
regulates’, since there are many steps between the regulation of transcription and the
|
39
|
+
activity of the target protein.
|
40
|
+
|
41
|
+
Example: GO:0003714 transcription corepressor activity
|
42
|
+
|
43
|
+
Example: GO:0003713 transcription coactivator activity
|
44
|
+
|
45
|
+
Example: GO:0003712 transcription coregulator activity (BMAL1 binds
|
46
|
+
specifically DNA)
|
47
|
+
|
48
|
+
Example: Coregulator of an unknown transcription factor
|
49
|
+
|
50
|
+
Review information
|
51
|
+
To be reviewed date:
|
52
|
+
Created by: Cristina Casals
|
53
|
+
|
54
|
+
|
@@ -0,0 +1,38 @@
|
|
1
|
+
Guidelines for annotating transporter activity
|
2
|
+
Pathway Editor
|
3
|
+
The activity unit for a transmembrane transporter is:
|
4
|
+
● MF: 'enables' a child of transmembrane transporter activity GO:0022857
|
5
|
+
● Context:
|
6
|
+
○ The movement of the small molecule substrate is represented by:
|
7
|
+
■ small molecule (ChEBI) + ‘input of’ + the start location of the small
|
8
|
+
molecule, captured with the relation 'located in'
|
9
|
+
■ the transporter activity + ‘has output’ the small molecule (ChEBI) + the
|
10
|
+
end location of the small molecule, captured with the relation 'located in'
|
11
|
+
○ BP 'part of' the BP in which this transporter activity participates
|
12
|
+
○ CC 'occurs in' a child of membrane (GO:0016020), e. g.: lysosomal membrane
|
13
|
+
(GO:0005765).
|
14
|
+
|
15
|
+
Example: SLC17A9 transports ATP to the lysosomal lumen
|
16
|
+
|
17
|
+
Form Editor
|
18
|
+
The activity unit for a transmembrane transporter is:
|
19
|
+
● MF: a child of transmembrane transporter activity GO:0022857
|
20
|
+
● Context: The movement of the small molecule substrate is represented by:
|
21
|
+
○ 'has input’ the small molecule (ChEBI)
|
22
|
+
○ BP 'part of' the BP in which this transporter activity participates
|
23
|
+
○ CC 'occurs in' a child of membrane (GO:0016020), e. g.: lysosomal membrane
|
24
|
+
(GO:0005765)
|
25
|
+
|
26
|
+
Example: SLC17A9 transports ATP to the lysosomal lumen
|
27
|
+
|
28
|
+
Differences between GO-CAM and standard
|
29
|
+
annotation of a transmembrane transporter activity
|
30
|
+
In standard annotation (captured with the Noctua Form or Protein2GO), the localization of the
|
31
|
+
molecule is not captured; neither is the output of the transporter, since that output relates to the
|
32
|
+
localization of the molecule transported.
|
33
|
+
|
34
|
+
Review information
|
35
|
+
Review date: 2023-07-20
|
36
|
+
Reviewed by:Cristina Casals, Pascale Gaudet, Patrick Masson
|
37
|
+
|
38
|
+
|
@@ -0,0 +1,39 @@
|
|
1
|
+
Guidelines for annotating regulation and regulatory
|
2
|
+
processes in GO-CAM
|
3
|
+
Molecular functions, and the biological processes of which they are a part, are often subject to
|
4
|
+
some form of regulation, typically in response to changing environmental conditions or stimuli.
|
5
|
+
In GO, regulation has a very specific meaning: for one molecular function to regulate another,
|
6
|
+
the mechanism must be known, it must occur under specific conditions (i.e. not constant),
|
7
|
+
and may be direct (contiguous activities) or indirect (non-contiguous, with intervening
|
8
|
+
activities). Regulatory activities may also have a positive or negative effect on the
|
9
|
+
downstream activity.
|
10
|
+
Examples of regulatory molecular functions include, but are certainly not limited to, protein
|
11
|
+
kinase activity, GTPase activator (GAP) activity, and transcription regulator activities.
|
12
|
+
Modeling regulation is an important aspect of GO-CAM curation but can differ according to how
|
13
|
+
the regulatory activities function in the broader context of the biological process.
|
14
|
+
Examples of distinct ways to capture regulation in GO-CAMs are discussed below.
|
15
|
+
|
16
|
+
Metabolic pathways and feedback regulatory mechanisms
|
17
|
+
Feedback mechanisms in which a product, or output, of one activity in a process inhibits another
|
18
|
+
activity in a process (i.e. negative feedback loop) is an important way to regulate metabolic
|
19
|
+
processes.
|
20
|
+
Feedback loops represent a type of process regulation that is ‘self-contained’, i.e. the regulatory
|
21
|
+
activity is not typically part of another, larger regulatory process.
|
22
|
+
In these cases, curators include the regulatory activity in the metabolic model and capture the
|
23
|
+
output molecules that stimulate the regulation and the causal relation between the regulatory
|
24
|
+
and regulated activities.
|
25
|
+
An example of this type of regulation is found in the GDP-mannose biosynthetic process
|
26
|
+
(GO:0009298), in which the terminal output generated by GMPPB, GDP-alpha-D-mannose,
|
27
|
+
binds to, and stimulates the inhibitory activity of, GMPPA on GMPPB.
|
28
|
+
Figure 1 shows a cartoon schematic of how GMPPA inhibits GMPPB, while Figure 2 shows how
|
29
|
+
this regulation is modeled in GO-CAM as part of the larger metabolic process. for D.
|
30
|
+
melanogaster model for GDP-mannose biosynthetic process from glucose (Dmel).
|
31
|
+
|
32
|
+
In this model, the output, GDP-alpha-D-mannose, of the terminal activity in the pathway,
|
33
|
+
mannose-1-phosphate guanylyltransferase (GTP) activity enabled by Gmppb, is a small
|
34
|
+
molecule activator of the enzyme inhibitor activity enabled by Gmppa. When bound to GDPalpha-D-mannose (2-), Gmppa undergoes a conformational change that then inhibits catalytic
|
35
|
+
activity of Gmppb.
|
36
|
+
|
37
|
+
https://www.nature.com/articles/s41594-021-00591-9
|
38
|
+
|
39
|
+
|