gocam 0.0.1__tar.gz
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.
- gocam-0.0.1/LICENSE +28 -0
- gocam-0.0.1/PKG-INFO +533 -0
- gocam-0.0.1/README.md +511 -0
- gocam-0.0.1/project/excel/gocam.xlsx +0 -0
- gocam-0.0.1/project/gocam.py +1210 -0
- gocam-0.0.1/project/graphql/gocam.graphql +248 -0
- gocam-0.0.1/project/jsonld/gocam.context.jsonld +255 -0
- gocam-0.0.1/project/jsonld/gocam.jsonld +2024 -0
- gocam-0.0.1/project/jsonschema/gocam.schema.json +829 -0
- gocam-0.0.1/project/owl/gocam.owl.ttl +999 -0
- gocam-0.0.1/project/prefixmap/gocam.yaml +31 -0
- gocam-0.0.1/project/protobuf/gocam.proto +219 -0
- gocam-0.0.1/project/shacl/gocam.shacl.ttl +827 -0
- gocam-0.0.1/project/shex/gocam.shex +333 -0
- gocam-0.0.1/project/sqlschema/gocam.sql +447 -0
- gocam-0.0.1/pyproject.toml +43 -0
- gocam-0.0.1/src/gocam/__init__.py +1 -0
- gocam-0.0.1/src/gocam/_version.py +7 -0
- gocam-0.0.1/src/gocam/cli.py +80 -0
- gocam-0.0.1/src/gocam/datamodel/__init__.py +7 -0
- gocam-0.0.1/src/gocam/datamodel/gocam.py +408 -0
- gocam-0.0.1/src/gocam/schema/gocam.yaml +406 -0
- gocam-0.0.1/src/gocam/translation/__init__.py +1 -0
- gocam-0.0.1/src/gocam/translation/minerva_wrapper.py +314 -0
gocam-0.0.1/LICENSE
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
|
|
2
|
+
Copyright (c) 2024, My Name
|
|
3
|
+
All rights reserved.
|
|
4
|
+
|
|
5
|
+
Redistribution and use in source and binary forms, with or without
|
|
6
|
+
modification, are permitted provided that the following conditions are met:
|
|
7
|
+
|
|
8
|
+
* Redistributions of source code must retain the above copyright notice, this
|
|
9
|
+
list of conditions and the following disclaimer.
|
|
10
|
+
|
|
11
|
+
* Redistributions in binary form must reproduce the above copyright notice,
|
|
12
|
+
this list of conditions and the following disclaimer in the documentation
|
|
13
|
+
and/or other materials provided with the distribution.
|
|
14
|
+
|
|
15
|
+
* Neither the name of pytest-gocam nor the names of its
|
|
16
|
+
contributors may be used to endorse or promote products derived from
|
|
17
|
+
this software without specific prior written permission.
|
|
18
|
+
|
|
19
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
20
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
21
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
22
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
23
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
24
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
25
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
26
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
27
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
28
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
gocam-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,533 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: gocam
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: GO CAM Data Model (Python)
|
|
5
|
+
License: BSD-3
|
|
6
|
+
Author: The Gene Ontology Consortium
|
|
7
|
+
Author-email: help@geneontology.org
|
|
8
|
+
Requires-Python: >=3.9,<4.0
|
|
9
|
+
Classifier: License :: Other/Proprietary License
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
15
|
+
Requires-Dist: click (>=8,<9)
|
|
16
|
+
Requires-Dist: linkml-runtime (>=1.1.24,<2.0.0)
|
|
17
|
+
Requires-Dist: pydantic (>=2,<3)
|
|
18
|
+
Requires-Dist: pyyaml (>=6,<7)
|
|
19
|
+
Requires-Dist: requests (>=2,<3)
|
|
20
|
+
Description-Content-Type: text/markdown
|
|
21
|
+
|
|
22
|
+
# gocam
|
|
23
|
+
|
|
24
|
+
GO CAM Data Model (Python)
|
|
25
|
+
|
|
26
|
+
## Website
|
|
27
|
+
|
|
28
|
+
[https://geneontology.github.io/gocam-py](https://geneontology.github.io/gocam-py)
|
|
29
|
+
|
|
30
|
+
## About
|
|
31
|
+
|
|
32
|
+
Example yaml/json
|
|
33
|
+
|
|
34
|
+
```yaml
|
|
35
|
+
id: gomodel:568b0f9600000284
|
|
36
|
+
title: Antibacterial innate immune response in the intestine via MAPK cascade (C.
|
|
37
|
+
elegans)
|
|
38
|
+
taxon: NCBITaxon:6239
|
|
39
|
+
status: production
|
|
40
|
+
comments:
|
|
41
|
+
- 'Automated change 2023-03-16: RO:0002212 replaced by RO:0002630'
|
|
42
|
+
- 'Automated change 2023-03-16: RO:0002213 replaced by RO:0002629'
|
|
43
|
+
activities:
|
|
44
|
+
- id: gomodel:568b0f9600000284/57ec3a7e00000079
|
|
45
|
+
enabled_by: WB:WBGene00006575
|
|
46
|
+
molecular_function:
|
|
47
|
+
evidence:
|
|
48
|
+
- term: ECO:0000314
|
|
49
|
+
reference: PMID:15625192
|
|
50
|
+
provenances:
|
|
51
|
+
- contributor: https://orcid.org/0000-0002-1706-4196
|
|
52
|
+
date: '2019-09-23'
|
|
53
|
+
provenances: []
|
|
54
|
+
term: GO:0035591
|
|
55
|
+
occurs_in:
|
|
56
|
+
evidence:
|
|
57
|
+
- term: ECO:0000314
|
|
58
|
+
reference: PMID:15625192
|
|
59
|
+
provenances:
|
|
60
|
+
- contributor: https://orcid.org/0000-0002-3013-9906
|
|
61
|
+
date: '2019-06-28'
|
|
62
|
+
term: GO:0005737
|
|
63
|
+
part_of:
|
|
64
|
+
evidence:
|
|
65
|
+
- term: ECO:0000315
|
|
66
|
+
reference: PMID:19837372
|
|
67
|
+
with_objects:
|
|
68
|
+
- WB:WBVar00241222|WB:WBVar00241223
|
|
69
|
+
provenances:
|
|
70
|
+
- contributor: https://orcid.org/0000-0002-1706-4196
|
|
71
|
+
date: '2021-07-08'
|
|
72
|
+
term: GO:0140367
|
|
73
|
+
causal_associations:
|
|
74
|
+
- evidence:
|
|
75
|
+
- term: ECO:0000315
|
|
76
|
+
reference: PMID:15123841
|
|
77
|
+
provenances:
|
|
78
|
+
- contributor: https://orcid.org/0000-0002-3013-9906
|
|
79
|
+
date: '2019-05-31'
|
|
80
|
+
predicate: RO:0002629
|
|
81
|
+
downstream_activity: gomodel:568b0f9600000284/57ec3a7e00000109
|
|
82
|
+
- id: gomodel:568b0f9600000284/580685bd00000135
|
|
83
|
+
enabled_by: WB:WBGene00011979
|
|
84
|
+
molecular_function:
|
|
85
|
+
evidence:
|
|
86
|
+
- term: ECO:0000307
|
|
87
|
+
reference: GO_REF:0000015
|
|
88
|
+
provenances:
|
|
89
|
+
- contributor: https://orcid.org/0000-0002-3013-9906
|
|
90
|
+
date: '2018-11-12'
|
|
91
|
+
provenances: []
|
|
92
|
+
term: GO:0003674
|
|
93
|
+
occurs_in:
|
|
94
|
+
evidence:
|
|
95
|
+
- term: ECO:0000307
|
|
96
|
+
reference: GO_REF:0000015
|
|
97
|
+
provenances:
|
|
98
|
+
- contributor: https://orcid.org/0000-0002-1706-4196
|
|
99
|
+
date: '2021-11-29'
|
|
100
|
+
term: GO:0110165
|
|
101
|
+
part_of:
|
|
102
|
+
evidence:
|
|
103
|
+
- term: ECO:0000270
|
|
104
|
+
reference: PMID:17096597
|
|
105
|
+
provenances:
|
|
106
|
+
- contributor: https://orcid.org/0000-0002-1706-4196
|
|
107
|
+
date: '2021-07-08'
|
|
108
|
+
term: GO:0140367
|
|
109
|
+
- id: gomodel:568b0f9600000284/5745387b00000588
|
|
110
|
+
enabled_by: WB:WBGene00012019
|
|
111
|
+
molecular_function:
|
|
112
|
+
evidence:
|
|
113
|
+
- term: ECO:0000314
|
|
114
|
+
reference: PMID:17728253
|
|
115
|
+
provenances:
|
|
116
|
+
- contributor: https://orcid.org/0000-0002-1706-4196
|
|
117
|
+
date: '2019-09-23'
|
|
118
|
+
provenances: []
|
|
119
|
+
term: GO:0004674
|
|
120
|
+
occurs_in:
|
|
121
|
+
evidence:
|
|
122
|
+
- term: ECO:0000314
|
|
123
|
+
reference: PMID:17728253
|
|
124
|
+
provenances:
|
|
125
|
+
- contributor: https://orcid.org/0000-0002-3013-9906
|
|
126
|
+
date: '2019-07-01'
|
|
127
|
+
term: GO:0009898
|
|
128
|
+
part_of:
|
|
129
|
+
evidence:
|
|
130
|
+
- term: ECO:0000315
|
|
131
|
+
reference: PMID:19371715
|
|
132
|
+
provenances:
|
|
133
|
+
- contributor: https://orcid.org/0000-0002-1706-4196
|
|
134
|
+
date: '2016-10-19'
|
|
135
|
+
term: GO:0140367
|
|
136
|
+
causal_associations:
|
|
137
|
+
- evidence:
|
|
138
|
+
- term: ECO:0000315
|
|
139
|
+
reference: PMID:19371715
|
|
140
|
+
provenances:
|
|
141
|
+
- contributor: https://orcid.org/0000-0002-3013-9906
|
|
142
|
+
date: '2019-07-02'
|
|
143
|
+
predicate: RO:0002629
|
|
144
|
+
downstream_activity: gomodel:568b0f9600000284/568b0f9600000285
|
|
145
|
+
- id: gomodel:568b0f9600000284/5b528b1100002286
|
|
146
|
+
enabled_by: WB:WBGene00006599
|
|
147
|
+
molecular_function:
|
|
148
|
+
evidence:
|
|
149
|
+
- term: ECO:0000501
|
|
150
|
+
reference: GO_REF:0000037
|
|
151
|
+
with_objects:
|
|
152
|
+
- UniProtKB-KW:KW-0723
|
|
153
|
+
provenances:
|
|
154
|
+
- contributor: https://orcid.org/0000-0002-3013-9906
|
|
155
|
+
date: '2018-09-06'
|
|
156
|
+
- term: ECO:0000315
|
|
157
|
+
reference: PMID:23072806
|
|
158
|
+
provenances:
|
|
159
|
+
- contributor: https://orcid.org/0000-0002-3013-9906
|
|
160
|
+
date: '2018-09-06'
|
|
161
|
+
- term: ECO:0000501
|
|
162
|
+
reference: GO_REF:0000002
|
|
163
|
+
with_objects:
|
|
164
|
+
- InterPro:IPR000961
|
|
165
|
+
provenances:
|
|
166
|
+
- contributor: https://orcid.org/0000-0002-3013-9906
|
|
167
|
+
date: '2018-09-06'
|
|
168
|
+
- term: ECO:0000318
|
|
169
|
+
reference: PAINT_REF:24356
|
|
170
|
+
with_objects:
|
|
171
|
+
- PANTHER:PTN000683254
|
|
172
|
+
provenances:
|
|
173
|
+
- contributor: https://orcid.org/0000-0002-3013-9906
|
|
174
|
+
date: '2018-09-06'
|
|
175
|
+
provenances: []
|
|
176
|
+
term: GO:0004674
|
|
177
|
+
part_of:
|
|
178
|
+
evidence:
|
|
179
|
+
- term: ECO:0000315
|
|
180
|
+
reference: PMID:22470487
|
|
181
|
+
provenances:
|
|
182
|
+
- contributor: https://orcid.org/0000-0002-3013-9906
|
|
183
|
+
date: '2018-09-06'
|
|
184
|
+
term: GO:0002225
|
|
185
|
+
causal_associations:
|
|
186
|
+
- evidence:
|
|
187
|
+
- term: ECO:0000316
|
|
188
|
+
reference: PMID:19371715
|
|
189
|
+
provenances:
|
|
190
|
+
- contributor: https://orcid.org/0000-0002-3013-9906
|
|
191
|
+
date: '2019-07-01'
|
|
192
|
+
predicate: RO:0002629
|
|
193
|
+
downstream_activity: gomodel:568b0f9600000284/5745387b00000588
|
|
194
|
+
- id: gomodel:568b0f9600000284/57ec3a7e00000119
|
|
195
|
+
enabled_by: WB:WBGene00004758
|
|
196
|
+
molecular_function:
|
|
197
|
+
evidence:
|
|
198
|
+
- term: ECO:0000314
|
|
199
|
+
reference: PMID:11751572
|
|
200
|
+
provenances:
|
|
201
|
+
- contributor: https://orcid.org/0000-0002-1706-4196
|
|
202
|
+
date: '2019-09-23'
|
|
203
|
+
provenances: []
|
|
204
|
+
term: GO:0004708
|
|
205
|
+
occurs_in:
|
|
206
|
+
evidence:
|
|
207
|
+
- term: ECO:0000318
|
|
208
|
+
reference: PMID:21873635
|
|
209
|
+
provenances:
|
|
210
|
+
- contributor: https://orcid.org/0000-0002-3013-9906
|
|
211
|
+
date: '2019-06-28'
|
|
212
|
+
term: GO:0005737
|
|
213
|
+
part_of:
|
|
214
|
+
evidence:
|
|
215
|
+
- term: ECO:0000315
|
|
216
|
+
reference: PMID:12142542
|
|
217
|
+
provenances:
|
|
218
|
+
- contributor: https://orcid.org/0000-0002-1706-4196
|
|
219
|
+
date: '2020-10-28'
|
|
220
|
+
term: GO:0140367
|
|
221
|
+
causal_associations:
|
|
222
|
+
- evidence:
|
|
223
|
+
- term: ECO:0000315
|
|
224
|
+
reference: PMID:12142542
|
|
225
|
+
provenances:
|
|
226
|
+
- contributor: https://orcid.org/0000-0002-3013-9906
|
|
227
|
+
date: '2019-05-31'
|
|
228
|
+
predicate: RO:0002629
|
|
229
|
+
downstream_activity: gomodel:568b0f9600000284/568b0f9600000285
|
|
230
|
+
- id: gomodel:568b0f9600000284/568b0f9600000285
|
|
231
|
+
enabled_by: WB:WBGene00004055
|
|
232
|
+
molecular_function:
|
|
233
|
+
evidence:
|
|
234
|
+
- term: ECO:0000314
|
|
235
|
+
reference: PMID:20369020
|
|
236
|
+
provenances:
|
|
237
|
+
- contributor: https://orcid.org/0000-0002-1706-4196
|
|
238
|
+
date: '2020-10-28'
|
|
239
|
+
provenances: []
|
|
240
|
+
term: GO:0004707
|
|
241
|
+
occurs_in:
|
|
242
|
+
evidence:
|
|
243
|
+
- term: ECO:0000314
|
|
244
|
+
reference: PMID:20133945
|
|
245
|
+
provenances:
|
|
246
|
+
- contributor: https://orcid.org/0000-0002-3013-9906
|
|
247
|
+
date: '2019-07-01'
|
|
248
|
+
term: GO:0005829
|
|
249
|
+
part_of:
|
|
250
|
+
evidence:
|
|
251
|
+
- term: ECO:0000315
|
|
252
|
+
reference: PMID:12142542
|
|
253
|
+
provenances:
|
|
254
|
+
- contributor: https://orcid.org/0000-0002-1706-4196
|
|
255
|
+
date: '2020-10-28'
|
|
256
|
+
term: GO:0140367
|
|
257
|
+
causal_associations:
|
|
258
|
+
- evidence:
|
|
259
|
+
- term: ECO:0000314
|
|
260
|
+
reference: PMID:20369020
|
|
261
|
+
provenances:
|
|
262
|
+
- contributor: https://orcid.org/0000-0002-3013-9906
|
|
263
|
+
date: '2019-05-31'
|
|
264
|
+
predicate: RO:0002629
|
|
265
|
+
downstream_activity: gomodel:568b0f9600000284/568b0f9600000287
|
|
266
|
+
- id: gomodel:568b0f9600000284/57ec3a7e00000109
|
|
267
|
+
enabled_by: WB:WBGene00003822
|
|
268
|
+
molecular_function:
|
|
269
|
+
evidence:
|
|
270
|
+
- term: ECO:0000314
|
|
271
|
+
reference: PMID:11751572
|
|
272
|
+
provenances:
|
|
273
|
+
- contributor: https://orcid.org/0000-0002-1706-4196
|
|
274
|
+
date: '2019-09-23'
|
|
275
|
+
provenances: []
|
|
276
|
+
term: GO:0004709
|
|
277
|
+
occurs_in:
|
|
278
|
+
evidence:
|
|
279
|
+
- term: ECO:0000314
|
|
280
|
+
reference: PMID:15625192
|
|
281
|
+
provenances:
|
|
282
|
+
- contributor: https://orcid.org/0000-0002-3013-9906
|
|
283
|
+
date: '2019-06-28'
|
|
284
|
+
term: GO:0005737
|
|
285
|
+
part_of:
|
|
286
|
+
evidence:
|
|
287
|
+
- term: ECO:0000315
|
|
288
|
+
reference: PMID:12142542
|
|
289
|
+
provenances:
|
|
290
|
+
- contributor: https://orcid.org/0000-0002-1706-4196
|
|
291
|
+
date: '2020-10-28'
|
|
292
|
+
term: GO:0140367
|
|
293
|
+
causal_associations:
|
|
294
|
+
- evidence:
|
|
295
|
+
- term: ECO:0000315
|
|
296
|
+
reference: PMID:12142542
|
|
297
|
+
provenances:
|
|
298
|
+
- contributor: https://orcid.org/0000-0002-3013-9906
|
|
299
|
+
date: '2019-05-31'
|
|
300
|
+
predicate: RO:0002629
|
|
301
|
+
downstream_activity: gomodel:568b0f9600000284/57ec3a7e00000119
|
|
302
|
+
- id: gomodel:568b0f9600000284/5b91dbd100000652
|
|
303
|
+
enabled_by: WB:WBGene00006923
|
|
304
|
+
molecular_function:
|
|
305
|
+
evidence:
|
|
306
|
+
- term: ECO:0000314
|
|
307
|
+
reference: PMID:15116070
|
|
308
|
+
provenances:
|
|
309
|
+
- contributor: https://orcid.org/0000-0002-3013-9906
|
|
310
|
+
date: '2018-10-08'
|
|
311
|
+
provenances: []
|
|
312
|
+
term: GO:0017017
|
|
313
|
+
occurs_in:
|
|
314
|
+
evidence:
|
|
315
|
+
- term: ECO:0000250
|
|
316
|
+
reference: PMID:15116070
|
|
317
|
+
with_objects:
|
|
318
|
+
- UniProt:Q920R2
|
|
319
|
+
provenances:
|
|
320
|
+
- contributor: https://orcid.org/0000-0002-3013-9906
|
|
321
|
+
date: '2019-07-01'
|
|
322
|
+
term: GO:0005737
|
|
323
|
+
part_of:
|
|
324
|
+
evidence:
|
|
325
|
+
- term: ECO:0000316
|
|
326
|
+
reference: PMID:22554143
|
|
327
|
+
with_objects:
|
|
328
|
+
- WB:WBGene00002187
|
|
329
|
+
provenances:
|
|
330
|
+
- contributor: https://orcid.org/0000-0002-3013-9906
|
|
331
|
+
date: '2018-10-08'
|
|
332
|
+
- term: ECO:0000315
|
|
333
|
+
reference: PMID:22554143
|
|
334
|
+
provenances:
|
|
335
|
+
- contributor: https://orcid.org/0000-0002-3013-9906
|
|
336
|
+
date: '2018-10-08'
|
|
337
|
+
term: GO:1900425
|
|
338
|
+
causal_associations:
|
|
339
|
+
- evidence:
|
|
340
|
+
- term: ECO:0000315
|
|
341
|
+
reference: PMID:22554143
|
|
342
|
+
provenances:
|
|
343
|
+
- contributor: https://orcid.org/0000-0002-3013-9906
|
|
344
|
+
date: '2018-10-09'
|
|
345
|
+
predicate: RO:0002630
|
|
346
|
+
downstream_activity: gomodel:568b0f9600000284/5b91dbd100000659
|
|
347
|
+
- evidence:
|
|
348
|
+
- term: ECO:0000315
|
|
349
|
+
reference: PMID:15256594
|
|
350
|
+
provenances:
|
|
351
|
+
- contributor: https://orcid.org/0000-0002-3013-9906
|
|
352
|
+
date: '2019-06-20'
|
|
353
|
+
- term: ECO:0000315
|
|
354
|
+
reference: PMID:22554143
|
|
355
|
+
provenances:
|
|
356
|
+
- contributor: https://orcid.org/0000-0002-1706-4196
|
|
357
|
+
date: '2020-10-28'
|
|
358
|
+
predicate: RO:0002630
|
|
359
|
+
downstream_activity: gomodel:568b0f9600000284/568b0f9600000285
|
|
360
|
+
- id: gomodel:568b0f9600000284/5b91dbd100000659
|
|
361
|
+
enabled_by: WB:WBGene00002187
|
|
362
|
+
molecular_function:
|
|
363
|
+
evidence:
|
|
364
|
+
- term: ECO:0000353
|
|
365
|
+
reference: PMID:12435362
|
|
366
|
+
with_objects:
|
|
367
|
+
- WB:WBGene00001599
|
|
368
|
+
provenances:
|
|
369
|
+
- contributor: https://orcid.org/0000-0002-3013-9906
|
|
370
|
+
date: '2018-10-08'
|
|
371
|
+
- term: ECO:0000353
|
|
372
|
+
reference: PMID:12435362
|
|
373
|
+
with_objects:
|
|
374
|
+
- WB:WBGene00001600
|
|
375
|
+
provenances:
|
|
376
|
+
- contributor: https://orcid.org/0000-0002-3013-9906
|
|
377
|
+
date: '2018-10-08'
|
|
378
|
+
- term: ECO:0000353
|
|
379
|
+
reference: PMID:23437011
|
|
380
|
+
with_objects:
|
|
381
|
+
- WB:WBGene00001345
|
|
382
|
+
provenances:
|
|
383
|
+
- contributor: https://orcid.org/0000-0002-3013-9906
|
|
384
|
+
date: '2018-10-08'
|
|
385
|
+
- term: ECO:0000353
|
|
386
|
+
reference: PMID:23437011
|
|
387
|
+
with_objects:
|
|
388
|
+
- WB:WBGene00001345
|
|
389
|
+
provenances:
|
|
390
|
+
- contributor: https://orcid.org/0000-0002-3013-9906
|
|
391
|
+
date: '2018-10-08'
|
|
392
|
+
provenances: []
|
|
393
|
+
term: GO:0005515
|
|
394
|
+
occurs_in:
|
|
395
|
+
evidence:
|
|
396
|
+
- term: ECO:0000314
|
|
397
|
+
reference: PMID:17699606
|
|
398
|
+
provenances:
|
|
399
|
+
- contributor: https://orcid.org/0000-0002-3013-9906
|
|
400
|
+
date: '2019-07-01'
|
|
401
|
+
term: GO:0005737
|
|
402
|
+
part_of:
|
|
403
|
+
evidence:
|
|
404
|
+
- term: ECO:0000315
|
|
405
|
+
reference: PMID:22554143
|
|
406
|
+
with_objects:
|
|
407
|
+
- WB:WBGene00002187
|
|
408
|
+
provenances:
|
|
409
|
+
- contributor: https://orcid.org/0000-0002-3013-9906
|
|
410
|
+
date: '2018-10-08'
|
|
411
|
+
term: GO:1900181
|
|
412
|
+
- id: gomodel:568b0f9600000284/568b0f9600000287
|
|
413
|
+
enabled_by: WB:WBGene00000223
|
|
414
|
+
molecular_function:
|
|
415
|
+
evidence:
|
|
416
|
+
- term: ECO:0000250
|
|
417
|
+
reference: PMID:20369020
|
|
418
|
+
provenances:
|
|
419
|
+
- contributor: https://orcid.org/0000-0002-3013-9906
|
|
420
|
+
date: '2018-10-29'
|
|
421
|
+
provenances: []
|
|
422
|
+
term: GO:0000981
|
|
423
|
+
occurs_in:
|
|
424
|
+
evidence:
|
|
425
|
+
- term: ECO:0000314
|
|
426
|
+
reference: PMID:20369020
|
|
427
|
+
provenances:
|
|
428
|
+
- contributor: https://orcid.org/0000-0002-3013-9906
|
|
429
|
+
date: '2018-10-29'
|
|
430
|
+
term: GO:0005634
|
|
431
|
+
part_of:
|
|
432
|
+
evidence:
|
|
433
|
+
- term: ECO:0000315
|
|
434
|
+
reference: PMID:20369020
|
|
435
|
+
provenances:
|
|
436
|
+
- contributor: https://orcid.org/0000-0002-1706-4196
|
|
437
|
+
date: '2020-10-28'
|
|
438
|
+
term: GO:0140367
|
|
439
|
+
causal_associations:
|
|
440
|
+
- evidence:
|
|
441
|
+
- term: ECO:0000315
|
|
442
|
+
reference: PMID:20369020
|
|
443
|
+
provenances:
|
|
444
|
+
- contributor: https://orcid.org/0000-0002-3013-9906
|
|
445
|
+
date: '2018-09-26'
|
|
446
|
+
- term: ECO:0000315
|
|
447
|
+
reference: PMID:19837372
|
|
448
|
+
provenances:
|
|
449
|
+
- contributor: https://orcid.org/0000-0002-3013-9906
|
|
450
|
+
date: '2018-10-31'
|
|
451
|
+
predicate: RO:0002629
|
|
452
|
+
downstream_activity: gomodel:568b0f9600000284/580685bd00000135
|
|
453
|
+
objects:
|
|
454
|
+
- id: WB:WBGene00006599
|
|
455
|
+
label: tpa-1 Cele
|
|
456
|
+
- id: GO:0004674
|
|
457
|
+
label: protein serine/threonine kinase activity
|
|
458
|
+
- id: GO:0002225
|
|
459
|
+
label: positive regulation of antimicrobial peptide production
|
|
460
|
+
- id: ECO:0000501
|
|
461
|
+
label: evidence used in automatic assertion
|
|
462
|
+
- id: ECO:0000315
|
|
463
|
+
label: mutant phenotype evidence used in manual assertion
|
|
464
|
+
- id: ECO:0000318
|
|
465
|
+
label: biological aspect of ancestor evidence used in manual assertion
|
|
466
|
+
- id: WB:WBGene00006923
|
|
467
|
+
label: vhp-1 Cele
|
|
468
|
+
- id: GO:0017017
|
|
469
|
+
label: MAP kinase tyrosine/serine/threonine phosphatase activity
|
|
470
|
+
- id: GO:1900425
|
|
471
|
+
label: negative regulation of defense response to bacterium
|
|
472
|
+
- id: ECO:0000314
|
|
473
|
+
label: direct assay evidence used in manual assertion
|
|
474
|
+
- id: ECO:0000316
|
|
475
|
+
label: genetic interaction evidence used in manual assertion
|
|
476
|
+
- id: WB:WBGene00002187
|
|
477
|
+
label: kgb-1 Cele
|
|
478
|
+
- id: GO:0005515
|
|
479
|
+
label: protein binding
|
|
480
|
+
- id: GO:1900181
|
|
481
|
+
label: negative regulation of protein localization to nucleus
|
|
482
|
+
- id: ECO:0000353
|
|
483
|
+
label: physical interaction evidence used in manual assertion
|
|
484
|
+
- id: ECO:0000250
|
|
485
|
+
label: sequence similarity evidence used in manual assertion
|
|
486
|
+
- id: ECO:0000307
|
|
487
|
+
label: no evidence data found used in manual assertion
|
|
488
|
+
- id: GO:0005737
|
|
489
|
+
label: cytoplasm
|
|
490
|
+
- id: GO:0005829
|
|
491
|
+
label: cytosol
|
|
492
|
+
- id: GO:0009898
|
|
493
|
+
label: cytoplasmic side of plasma membrane
|
|
494
|
+
- id: WB:WBGene00000223
|
|
495
|
+
label: atf-7 Cele
|
|
496
|
+
- id: WB:WBGene00004055
|
|
497
|
+
label: pmk-1 Cele
|
|
498
|
+
- id: WB:WBGene00004758
|
|
499
|
+
label: sek-1 Cele
|
|
500
|
+
- id: GO:0004707
|
|
501
|
+
label: MAP kinase activity
|
|
502
|
+
- id: GO:0000981
|
|
503
|
+
label: DNA-binding transcription factor activity, RNA polymerase II-specific
|
|
504
|
+
- id: GO:0005634
|
|
505
|
+
label: nucleus
|
|
506
|
+
- id: GO:0016045
|
|
507
|
+
label: detection of bacterium
|
|
508
|
+
- id: GO:0003674
|
|
509
|
+
label: molecular_function
|
|
510
|
+
- id: GO:0035591
|
|
511
|
+
label: signaling adaptor activity
|
|
512
|
+
- id: WB:WBGene00006575
|
|
513
|
+
label: tir-1 Cele
|
|
514
|
+
- id: GO:0004709
|
|
515
|
+
label: MAP kinase kinase kinase activity
|
|
516
|
+
- id: WB:WBGene00003822
|
|
517
|
+
label: nsy-1 Cele
|
|
518
|
+
- id: GO:0004708
|
|
519
|
+
label: MAP kinase kinase activity
|
|
520
|
+
- id: WB:WBGene00012019
|
|
521
|
+
label: dkf-2 Cele
|
|
522
|
+
- id: GO:0140367
|
|
523
|
+
label: antibacterial innate immune response
|
|
524
|
+
- id: WB:WBGene00011979
|
|
525
|
+
label: sysm-1 Cele
|
|
526
|
+
- id: ECO:0000270
|
|
527
|
+
label: expression pattern evidence used in manual assertion
|
|
528
|
+
- id: GO:0110165
|
|
529
|
+
label: cellular anatomical entity
|
|
530
|
+
|
|
531
|
+
```
|
|
532
|
+
|
|
533
|
+
|