-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmirna_curation_flowchart.json
More file actions
132 lines (128 loc) · 3.63 KB
/
mirna_curation_flowchart.json
File metadata and controls
132 lines (128 loc) · 3.63 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
124
125
126
127
128
129
130
131
132
{
"nodes": {
"experimental_evidence": {
"type": "decision",
"data": {
"desc": "Experimental Evidence?",
"condition": "hasExperimentalEvidence"
},
"transitions": {
"true": "functional_interaction",
"false": "no_annotation"
}
},
"functional_interaction": {
"type": "decision",
"data": {
"desc": "Functional interaction by reporter assay?",
"condition": "hasFunctionalInteraction"
},
"transitions": {
"true": "effect_endogenous_1",
"false": "mirna_mrna_binding"
}
},
"mirna_mrna_binding": {
"type": "decision",
"data": {
"desc": "miRNA-mRNA binding assay?",
"condition": "hasBindingAssay"
},
"transitions": {
"true": "effect_endogenous_2",
"false": "computational_prediction"
}
},
"effect_endogenous_1": {
"type": "decision",
"data": {
"desc": "Effect on endogenous target gene expression?",
"condition": "hasEndogenousEffect"
},
"transitions": {
"true": "mirna_changes",
"false": "validated_binding_only"
}
},
"effect_endogenous_2": {
"type": "decision",
"data": {
"desc": "Effect on endogenous target gene expression?",
"condition": "hasEndogenousEffect"
},
"transitions": {
"true": "mirna_changes",
"false": "no_annotation"
}
},
"computational_prediction": {
"type": "decision",
"data": {
"desc": "Computational target prediction?",
"condition": "hasComputationalPrediction"
},
"transitions": {
"true": "effect_endogenous_3",
"false": "no_annotation"
}
},
"effect_endogenous_3": {
"type": "decision",
"data": {
"desc": "Effect on endogenous target gene expression?",
"condition": "hasEndogenousEffect"
},
"transitions": {
"true": "no_validated_binding",
"false": "no_annotation"
}
},
"mirna_changes": {
"type": "decision",
"data": {
"desc": "miRNA inhibition or addition changes endogenous target mRNA level?",
"condition": "hasMiRNAEffect"
},
"transitions": {
"true": "validated_binding_mrna",
"false": "validated_binding_translation"
}
},
"no_annotation": {
"type": "terminal",
"data": {
"desc": "No annotation",
"terminal": "no_annotation"
}
},
"validated_binding_only": {
"type": "terminal",
"data": {
"desc": "Validated binding only",
"terminal" : "validated_binding_only"
}
},
"validated_binding_mrna": {
"type": "terminal",
"data": {
"desc": "Validated binding + evidence of mRNA destabilization",
"terminal" : "validated_binding_plus_destabilisation"
}
},
"validated_binding_translation": {
"type": "terminal",
"data": {
"desc": "Validated binding + evidence of inhibition of translation",
"terminal" : "validated_binding_plus_trans_inhibition"
}
},
"no_validated_binding": {
"type": "terminal",
"data": {
"desc": "No validated binding. Decreased expression of target",
"terminal" : "validated_binding_plus_decreased_expression"
}
}
},
"startNode": "experimental_evidence"
}