fix: typos
Browse files
app.py
CHANGED
|
@@ -113,19 +113,22 @@ with gr.Blocks() as demo:
|
|
| 113 |
regulatory_tasks = gr.CheckboxGroup(
|
| 114 |
choices=_TASKS["regulatory_elements"],
|
| 115 |
value=_TASKS["regulatory_elements"],
|
| 116 |
-
label="Regulatory Elements Downstream Tasks",
|
| 117 |
info="Human data.",
|
|
|
|
| 118 |
)
|
| 119 |
rna_tasks = gr.CheckboxGroup(
|
| 120 |
choices=_TASKS["RNA_production"],
|
| 121 |
value=_TASKS["RNA_production"],
|
| 122 |
-
label="RNA Production Downstream
|
| 123 |
info="Human data.",
|
|
|
|
| 124 |
)
|
| 125 |
histone_tasks = gr.CheckboxGroup(
|
| 126 |
choices=_TASKS["histone_marks"],
|
| 127 |
-
label="Histone Modification Downstream Tasks",
|
| 128 |
info="Yeast data.",
|
|
|
|
| 129 |
)
|
| 130 |
|
| 131 |
with gr.Tabs(elem_classes="tab-buttons") as tabs:
|
|
|
|
| 113 |
regulatory_tasks = gr.CheckboxGroup(
|
| 114 |
choices=_TASKS["regulatory_elements"],
|
| 115 |
value=_TASKS["regulatory_elements"],
|
| 116 |
+
label="Regulatory Elements Downstream Tasks.",
|
| 117 |
info="Human data.",
|
| 118 |
+
scale=3,
|
| 119 |
)
|
| 120 |
rna_tasks = gr.CheckboxGroup(
|
| 121 |
choices=_TASKS["RNA_production"],
|
| 122 |
value=_TASKS["RNA_production"],
|
| 123 |
+
label="RNA Production Downstream Tasks.",
|
| 124 |
info="Human data.",
|
| 125 |
+
scale=3,
|
| 126 |
)
|
| 127 |
histone_tasks = gr.CheckboxGroup(
|
| 128 |
choices=_TASKS["histone_marks"],
|
| 129 |
+
label="Histone Modification Downstream Tasks.",
|
| 130 |
info="Yeast data.",
|
| 131 |
+
scale=4,
|
| 132 |
)
|
| 133 |
|
| 134 |
with gr.Tabs(elem_classes="tab-buttons") as tabs:
|