-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathschema.json
More file actions
117 lines (116 loc) · 3.37 KB
/
schema.json
File metadata and controls
117 lines (116 loc) · 3.37 KB
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
{
"type": "object",
"properties": {
"classical_locus": {
"description": "Name of locus if available from classical genetic studies",
"type": "string"
},
"gene_symbols": {
"description": "List of gene symbols if available from literature",
"type": "array",
"items": {
"type": "string"
}
},
"gene_symbol_long": {
"description": "Descriptive name of gene symbol if available",
"type": "string"
},
"gene_model_pub_name": {
"description": "Gene name from publication",
"type": "string"
},
"gene_model_full_id": {
"description": "Gene name in Data Store, with full prefix",
"type": "string"
},
"confidence": {
"description": "Confidence of association",
"minimum": 1,
"maximum": 5,
"type": "integer"
},
"curators": {
"description": "Name of curators who worked on this",
"type": "array",
"items": {
"type": "string"
}
},
"comments": {
"description": "Free text comments",
"type": "array",
"items": {
"type": "string"
}
},
"phenotype_synopsis": {
"description": "Brief free-text phenotype description, e.g. \"Seed raffinose concentration\" or \"photoperiod insensitivity to short day conditions\"",
"type": "string"
},
"traits": {
"description": "List of traits associated with this gene",
"type": "array",
"items": {
"type": "object",
"properties": {
"entity_name": {
"description": "Short descriptive name of the ontology accession",
"type": "string"
},
"entity": {
"description": "Ontology accession for the trait",
"type": "string"
},
"quality_name": {
"description": "Short descriptive name for accession quality term",
"type": "string"
},
"quality": {
"description": "Ontology accession for the quality term",
"type": "string"
},
"relation_name": {
"description": "Short descriptive name for accession relation term",
"type": "string"
},
"relation": {
"description": "Ontology accession for the relation term",
"type": "string"
}
}
}
},
"references": {
"description": "List of references for this association",
"type": "array",
"items": {
"type": "object",
"properties": {
"citation": {
"description": "Citation in the format \"LastName, LastName et al., YEAR\"",
"type": "string"
},
"doi": {
"description": "DOI for the publication",
"type": "string"
},
"pmid": {
"description": "PubMed ID for the publication",
"minimum": 1,
"type": "integer"
}
}
}
}
},
"additionalProperties": false,
"required": [
"confidence",
"gene_model_full_id",
"gene_model_pub_name",
"phenotype_synopsis",
"references",
"traits"
]
}