-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmirna_curation_flowchart_author_intent.json
More file actions
156 lines (152 loc) · 4.58 KB
/
mirna_curation_flowchart_author_intent.json
File metadata and controls
156 lines (152 loc) · 4.58 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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
{
"nodes": {
"experimental_evidence": {
"type": "conditional_prompt_boolean",
"data": {
"desc": "Experimental Evidence?",
"condition": "hasExperimentalEvidence"
},
"transitions": {
"true": "functional_interaction",
"false": "no_annotation"
}
},
"functional_interaction": {
"type": "conditional_prompt_boolean",
"data": {
"desc": "Functional interaction by reporter assay?",
"condition": "hasFunctionalInteraction"
},
"transitions": {
"true": "effect_endogenous_1",
"false": "mirna_mrna_binding"
}
},
"mirna_mrna_binding": {
"type": "conditional_prompt_boolean",
"data": {
"desc": "miRNA-mRNA binding assay?",
"condition": "hasBindingAssay"
},
"transitions": {
"true": "effect_endogenous_2",
"false": "computational_prediction"
}
},
"effect_endogenous_1": {
"type": "conditional_prompt_boolean",
"data": {
"desc": "Effect on endogenous target gene expression?",
"condition": "hasEndogenousEffect"
},
"transitions": {
"true": "mirna_changes",
"false": "validated_binding_only"
}
},
"disease_model_1": {
"type": "conditional_tool_use",
"data": {
"desc": "Are the experiments being done in a disease context?",
"condition": "diseaseModel",
"tools": ["search_cellosaurus", "search_wikipedia"]
},
"transitions": {
"false" : "validated_binding_only",
"true": "validated_binding_mrna"
}
},
"disease_model_2": {
"type": "conditional_tool_use",
"data": {
"desc": "Are the experiments being done in a disease context?",
"condition": "diseaseModel",
"tools": ["search_cellosaurus", "search_wikipedia"]
},
"transitions": {
"false" : "validated_binding_only",
"true": "validated_binding_translation"
}
},
"effect_endogenous_2": {
"type": "conditional_prompt_boolean",
"data": {
"desc": "Effect on endogenous target gene expression?",
"condition": "hasEndogenousEffect"
},
"transitions": {
"true": "mirna_changes",
"false": "no_annotation"
}
},
"computational_prediction": {
"type": "conditional_prompt_boolean",
"data": {
"desc": "Computational target prediction?",
"condition": "hasComputationalPrediction"
},
"transitions": {
"true": "effect_endogenous_3",
"false": "no_annotation"
}
},
"effect_endogenous_3": {
"type": "conditional_prompt_boolean",
"data": {
"desc": "Effect on endogenous target gene expression?",
"condition": "hasEndogenousEffect"
},
"transitions": {
"true": "no_validated_binding",
"false": "no_annotation"
}
},
"mirna_changes": {
"type": "conditional_prompt_boolean",
"data": {
"desc": "miRNA inhibition or addition changes endogenous target mRNA level?",
"condition": "hasMiRNAEffect"
},
"transitions": {
"true": "disease_model_1",
"false": "disease_model_2"
}
},
"no_annotation": {
"type": "terminal_short_circuit",
"data": {
"desc": "No annotation",
"terminal": "no_annotation"
}
},
"validated_binding_only": {
"type": "terminal_full",
"data": {
"desc": "Validated binding only",
"terminal" : "validated_binding_only"
}
},
"validated_binding_mrna": {
"type": "terminal_full",
"data": {
"desc": "Validated binding + evidence of mRNA destabilization",
"terminal" : "validated_binding_plus_destabilisation"
}
},
"validated_binding_translation": {
"type": "terminal_full",
"data": {
"desc": "Validated binding + evidence of inhibition of translation",
"terminal" : "validated_binding_plus_trans_inhibition"
}
},
"no_validated_binding": {
"type": "terminal_conditional",
"data": {
"desc": "No validated binding. Decreased expression of target",
"terminal" : "validated_binding_plus_decreased_expression"
}
}
},
"startNode": "experimental_evidence"
}