-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathbhuiyanschema1.json
More file actions
123 lines (123 loc) · 3.42 KB
/
Copy pathbhuiyanschema1.json
File metadata and controls
123 lines (123 loc) · 3.42 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
117
118
119
120
121
122
123
{
"$schema": "http://json-schema.org/draft-04/schema#",
"$id": "https://raw.githubusercontent.com/ubhuiyan/2021Fall-BIOC-6223/main/bhuiyanschema1",
"description": "Listed genes along with their accession number and length in base pairs",
"type": "object",
"properties": {
"Gene Data": {
"type": "array",
"items": [
{
"type": "object",
"properties": {
"Gene1": {
"type": "string",
"description": "Identifier for the first gene CO1"
},
"Length": {
"type": "integer",
"descrioption": "the legnth of CO1 in base pairs"
},
"Accession Number": {
"type": "string",
"description": "accession number for CO1 gene found on NCBI"
}
},
"required": [
"Gene1",
"Length",
"Accession Number"
]
},
{
"type": "object",
"properties": {
"Gene2": {
"type": "string",
"description": "Identifier for the second gene FGFR3"
},
"Length": {
"type": "integer",
"description": "Length of FGFR3 in base pairs"
},
"Accession Number": {
"type": "string",
"description": "Accession number of FGFR3 as found on NCBI"
}
},
"required": [
"Gene2",
"Length",
"Accession Number"
]
},
{
"type": "object",
"properties": {
"Gene3": {
"type": "string",
"description": "Identifier for the third gene HERC2"
},
"Length": {
"type": "integer",
"description": "length of HERC2 in base pairs"
},
"Accession Number": {
"type": "string",
"description": "accession number of HERC2 as found on NCBI"
}
},
"required": [
"Gene3",
"Length",
"Accession Number"
]
},
{
"type": "object",
"properties": {
"Gene4": {
"type": "string",
"description": "Fourth identifier for the HTT gene"
},
"Length": {
"type": "integer",
"description": "length for HTT gene in base pairs"
},
"Accession number": {
"type": "string",
"description": "accession number for HTT gene as found on NCBI"
}
},
"required": [
"Gene4",
"Length",
"Accession number"
]
},
{
"type": "object",
"properties": {
"Gene5": {
"type": "string",
"description": "Fifth identifier for the GUCY1A3 gene"
},
"Length": {
"type": "integer",
"description": "Length of GUCY1A3 gene in base pairs"
},
"Accession Number": {
"type": "string",
"description": "Accession number for GUCY1A3 gene as found on NCBI"
}
},
"required": [
"Gene5",
"Length",
"Accession Number"
]
}
]
}
}
}