hdallatorre
commited on
Commit
•
1bd1754
1
Parent(s):
2900c2e
feat: Adjust last settings
Browse files
app.py
CHANGED
@@ -157,18 +157,21 @@ with gr.Blocks() as demo:
|
|
157 |
choices=_TASKS["regulatory_elements"],
|
158 |
value=_TASKS["regulatory_elements"],
|
159 |
label="Regulatory Elements Downstream Tasks.",
|
|
|
160 |
scale=3,
|
161 |
)
|
162 |
rna_tasks = gr.CheckboxGroup(
|
163 |
choices=_TASKS["RNA_production"],
|
164 |
value=_TASKS["RNA_production"],
|
165 |
label="RNA Production Downstream Tasks.",
|
|
|
166 |
scale=3,
|
167 |
)
|
168 |
histone_tasks = gr.CheckboxGroup(
|
169 |
choices=_TASKS["histone_marks"],
|
170 |
-
|
171 |
label="Histone Modification Downstream Tasks.",
|
|
|
172 |
scale=4,
|
173 |
)
|
174 |
|
|
|
157 |
choices=_TASKS["regulatory_elements"],
|
158 |
value=_TASKS["regulatory_elements"],
|
159 |
label="Regulatory Elements Downstream Tasks.",
|
160 |
+
info="Human data.",
|
161 |
scale=3,
|
162 |
)
|
163 |
rna_tasks = gr.CheckboxGroup(
|
164 |
choices=_TASKS["RNA_production"],
|
165 |
value=_TASKS["RNA_production"],
|
166 |
label="RNA Production Downstream Tasks.",
|
167 |
+
info="Human data.",
|
168 |
scale=3,
|
169 |
)
|
170 |
histone_tasks = gr.CheckboxGroup(
|
171 |
choices=_TASKS["histone_marks"],
|
172 |
+
value=_TASKS["histone_marks"],
|
173 |
label="Histone Modification Downstream Tasks.",
|
174 |
+
info="Human data.",
|
175 |
scale=4,
|
176 |
)
|
177 |
|