-
Notifications
You must be signed in to change notification settings - Fork 89
/
gorefs.schema.yaml
117 lines (102 loc) · 2.4 KB
/
gorefs.schema.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
id: http://purl.obolibrary.org/obo/go/references/
name: GO_REF
title: GO_REF LinkML schema
description: LinkML schema representing the structure of GO_REF metadata
imports:
- linkml:types
prefixes:
linkml: https://w3id.org/linkml/
GO_REF: http://purl.obolibrary.org/obo/go/references/
ECO: http://purl.obolibrary.org/obo/eco.owl
PMID: http://www.ncbi.nlm.nih.gov/pubmed/
default_prefix: GO_REF
slots:
alt_id:
examples:
- value: GO_REF:0000009
multivalued: true
range: uriorcurie
pattern: GO_REF:[0-9]{7}
description: Alternate IDs for GO_REF.
authors:
examples:
- value: FlyBase
range: string
required: true
description: Author of the GOREF.
citation:
examples:
- value: PMID:11374909
range: uriorcurie
description: Publication for GO_REF.
comments:
multivalued: true
range: string
description: Comments.
description:
range: string
required: true
aliases:
- abstract
- definition
evidence_codes:
examples:
- value: ECO:0000501
multivalued: true
range: uriorcurie
pattern: ECO:[0-9]{7}
description: Evidence codes for GO_REF.
external_accession:
examples:
- value: J:164563
multivalued: true
range: uriorcurie
pattern: '[a-zA-Z\_]+:[0-9a-zA-Z\_]+'
description: >-
List of cross references from other databases for the same entity.
id:
examples:
- value: GO_REF:0000098
range: string
identifier: true
description: GO_REF identifier
pattern: GO_REF:[0-9]{7}
is_obsolete:
examples:
- value: true
range: boolean
description: >-
Boolean value indicating whether or not the GO_REF is still in use.
title:
examples:
- value: OBSOLETE Gene Ontology annotation based on research conference abstracts
range: string
description: Title.
required: true
url:
examples:
- value: http://www.ebi.ac.uk/GOA/ISS_method.html
range: uriorcurie
description: URL for further information.
pattern: 'http[s]?://'
year:
examples:
- value: 2014
range: integer
description: Year in which the GO_REF was created.
minimum_value: 1998
classes:
GoRef:
slots:
- alt_id
- authors
- citation
- comments
- description
- evidence_codes
- external_accession
- id
- is_obsolete
- title
- url
- year