yangliz5 commited on
Commit
9e875d0
1 Parent(s): 64e8c41

fix: Update text for detecting Adapter regions

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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 artificial sequences</p>
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 Artificial 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])
 
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])