-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgocam.yaml
161 lines (151 loc) · 4.13 KB
/
gocam.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
id: http://w3id.org/linkml/ai/templates/gocam
name: gocam-template
title: GO-CAM Template
description: >-
A template for GO-CAMs
license: https://creativecommons.org/publicdomain/zero/1.0/
prefixes:
linkml: https://w3id.org/linkml/
gocam: http://w3id.org/linkml/ai/templates/gocam/
default_prefix: gocam
default_range: string
imports:
- linkml:types
- core
classes:
GoCamAnnotations:
attributes:
genes:
description: semicolon-separated list of genes
multivalued: true
range: Gene
organisms:
description: semicolon-separated list of organism taxons
multivalued: true
range: Organism
gene_organisms:
annotations:
prompt: semicolon-separated list of asterisk separated gene to organism relationships
multivalued: true
range: GeneOrganismRelationship
activities:
description: semicolon-separated list of molecular activities
multivalued: true
range: MolecularActivity
gene_functions:
description: semicolon-separated list of gene to molecular activity relationships
multivalued: true
range: GeneMolecularActivityRelationship
cellular_processes:
description: semicolon-separated list of cellular processes
multivalued: true
range: CellularProcess
pathways:
description: semicolon-separated list of pathways
multivalued: true
range: Pathway
gene_gene_interactions:
description: semicolon-separated list of gene to gene interactions
multivalued: true
range: GeneGeneInteraction
gene_localizations:
description: >-
semicolon-separated list of genes plus their location in the cell;
for example, "gene1 / cytoplasm; gene2 / mitochondrion"
multivalued: true
range: GeneSubcellularLocalizationRelationship
Gene:
is_a: NamedEntity
id_prefixes:
- HGNC
annotations:
annotators: gilda:, bioportal:hgnc-nr
Pathway:
is_a: NamedEntity
id_prefixes:
- GO
annotations:
annotators: sqlite:obo:go
CellularProcess:
is_a: NamedEntity
id_prefixes:
- GO
annotations:
annotators: sqlite:obo:go
MolecularActivity:
is_a: NamedEntity
id_prefixes:
- GO
annotations:
annotators: sqlite:obo:go
CellularComponent:
is_a: NamedEntity
id_prefixes:
- GO
annotations:
annotators: sqlite:obo:go
Organism:
is_a: NamedEntity
id_prefixes:
- NCBITaxon
annotations:
annotators: gilda:, sqlite:obo:ncbitaxon
Molecule:
is_a: NamedEntity
id_prefixes:
- CHEBI
- PR
annotations:
annotators: gilda:, sqlite:obo:chebi
GeneOrganismRelationship:
is_a: Relationship
attributes:
gene:
range: Gene
organism:
range: Organism
GeneMolecularActivityRelationship:
is_a: Relationship
attributes:
gene:
range: Gene
annotations:
prompt: the name of the gene in the pair. This comes first.
molecular_activity:
range: MolecularActivity
annotations:
prompt: the name of the molecular function in the pair. This comes second. May be a GO term.
annotations:
prompt.example: |-
TODO
gene: HGNC:1234
molecular_activity: GO:0003674
GeneMolecularActivityRelationship2:
is_a: Relationship
attributes:
gene:
range: Gene
annotations:
prompt: the name of the gene.
molecular_activity:
range: MolecularActivity
annotations:
prompt: the name of the molecular activity, for example, ubiquitination. May be a GO term.
target:
range: Molecule
annotations:
prompt: the name of the molecular entity that is the target of the molecular activity.
GeneSubcellularLocalizationRelationship:
is_a: Relationship
attributes:
gene:
range: Gene
location:
range: CellularComponent
GeneGeneInteraction:
is_a: Relationship
attributes:
gene1:
range: Gene
gene2:
range: Gene