forked from colin-combe/ComplexViewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
json_object_template.txt
72 lines (64 loc) · 1.73 KB
/
json_object_template.txt
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
{
"dataRoot": {
"data": 'listType_mix_interactor_interaction'
},
"interactor": {
"sequence": 'string',
"type": 'cvType',
"organism": 'organismType',
"identifier": 'xrefType',
"label": "CRKL"
},
"organismType": {
"taxid": 'integer',
"common": 'string',
"scientific": 'string'
},
"xrefType": {
"db": 'string',
"id": 'string'
},
"cvType": {
"id": 'string',
"name": 'string'
},
"interaction": {
"experiment": 'experimentType',
"interactionType": 'cvType',
"source": 'participantType',
"target": 'participantType'
},
"experimentType": {
"detmethod": 'cvtype',
"pubid": 'xrefType',
"host": 'organismType',
"sourceDatabase" : 'cvType',
"experimentModification" : list_of_string,
"figure" : list_of_string,
},
"participantType": {
"identifier": 'xrefType',
"bioRole": 'cvType',
"exprole": 'cvType',
"identificationMethod": list_of_cvType,
"expressedIn": 'organismType',
"features": 'listType_feature'
},
"feature" : {
"id": 'string',
"name" : 'string',
"type" : 'cvType',
"category": 'string',
"role" : 'cvType',
"detmethods" : "listType_cvType",
"parameters" : "listType_cvType",
"InterPro" : 'string',
"sequenceData" : "listType_rangeData",
"linkedFeatures": 'listType_featureId'
}
"rangeData" : {
"interactorRef": 'string',
"participantRef" : 'string',
"pos" : 'string'
}
}