Spaces:
Sleeping
Sleeping
fix: Update text for detecting Adapter regions
Browse files
app.py
CHANGED
|
@@ -141,7 +141,7 @@ def create_gradio_app():
|
|
| 141 |
"""
|
| 142 |
<div class="header">
|
| 143 |
<h1>🧬 DeepChopper: DNA Sequence Analysis</h1>
|
| 144 |
-
<p>Analyze DNA sequences and detect
|
| 145 |
</div>
|
| 146 |
"""
|
| 147 |
)
|
|
@@ -155,7 +155,7 @@ def create_gradio_app():
|
|
| 155 |
submit_btn = gr.Button("Analyze", variant="primary")
|
| 156 |
|
| 157 |
with gr.Column(scale=1):
|
| 158 |
-
json_output = gr.JSON(label="Detected
|
| 159 |
highlighted_text = gr.HighlightedText(label="Highlighted Sequence")
|
| 160 |
|
| 161 |
submit_btn.click(fn=process_input, inputs=[text_input, file_input], outputs=[json_output, highlighted_text])
|
|
|
|
| 141 |
"""
|
| 142 |
<div class="header">
|
| 143 |
<h1>🧬 DeepChopper: DNA Sequence Analysis</h1>
|
| 144 |
+
<p>Analyze DNA sequences and detect Adapter sequences</p>
|
| 145 |
</div>
|
| 146 |
"""
|
| 147 |
)
|
|
|
|
| 155 |
submit_btn = gr.Button("Analyze", variant="primary")
|
| 156 |
|
| 157 |
with gr.Column(scale=1):
|
| 158 |
+
json_output = gr.JSON(label="Detected Adapter Regions")
|
| 159 |
highlighted_text = gr.HighlightedText(label="Highlighted Sequence")
|
| 160 |
|
| 161 |
submit_btn.click(fn=process_input, inputs=[text_input, file_input], outputs=[json_output, highlighted_text])
|