kipfriend commited on
Commit
e3cd57f
1 Parent(s): a43920a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -121,13 +121,13 @@ def get_protein_from_DNA(DNA):
121
  ##configure inputs/outputs
122
 
123
  input_module = gr.inputs.Textbox(label = "Enter your DNA sequence in the box:")
124
- output_module = gr.outputs.Textbox(label = 'Protein sequence')
125
 
126
  ### configure gradio, detailed can be found at https://www.gradio.app/docs/#i_slider
127
  interface = gr.Interface(fn=get_protein_from_DNA,
128
  inputs=input_module,
129
  outputs=output_module,
130
- title="CSCI1020 Demo 2: Web Application for DNA Transcrioption & RNA Translation",
131
  description= "Click examples below for a quick demo",
132
  theme = 'huggingface',
133
  layout = 'vertical'
121
  ##configure inputs/outputs
122
 
123
  input_module = gr.inputs.Textbox(label = "Enter your DNA sequence in the box:")
124
+ output_module = gr.outputs.Textbox(label = 'Protein sequences from ORFs 1-6:')
125
 
126
  ### configure gradio, detailed can be found at https://www.gradio.app/docs/#i_slider
127
  interface = gr.Interface(fn=get_protein_from_DNA,
128
  inputs=input_module,
129
  outputs=output_module,
130
+ title="CSCI1020 Demo 2: Web Application for DNA Transcription & RNA Translation",
131
  description= "Click examples below for a quick demo",
132
  theme = 'huggingface',
133
  layout = 'vertical'