forked from GWU-Bioinformatics/2021Fall-BIOC-6223
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKwanHang_Schema
40 lines (40 loc) · 1.28 KB
/
KwanHang_Schema
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
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id" : "https://raw.githubusercontent.com/dcmkv2/HW1/main/Schema",
"type": "object",
"title" : "Genes",
"description" : "Genes from NCBI Nucleotide",
"properties": {
"Genes": {
"type": "array",
"description" : "Details of the genes from NCBI Nucleotide",
"items": {
"type": "object",
"description" : "Definition, bp, and accession number of genes",
"required": [
"definition",
"bp",
"accession number"
],
"properties": {
"definition": {
"type": "string",
"description" : "Full gene name on NCBI",
"examples" : [ "Rat pineal gland phosducin mRNA, complete cds", "Salmo salar pineal gland rod-like opsin mRNA, complete cds" ]
},
"bp": {
"type": "integer",
"description" : "Number of base pairs of each gene",
"examples" : [ 1977, 2155 ],
},
"accession number": {
"type": "string",
"description" : "accession number of each gene pn NCBI",
"examples" : ["M60738", "CF937165"],
},
}
}
}
}
}
}