Skip to content

Commit

Permalink
Updated app.py to include about and references page.
Browse files Browse the repository at this point in the history
  • Loading branch information
mkayasth authored May 10, 2024
1 parent 5840ae4 commit e17bf92
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,14 @@ def run_command(fasta_sequence, reference_genome, email_address, task_id):
def home():
return render_template('index.html')

@app.route('/about')
def about():
return render_template('about.html')

@app.route('/references')
def references():
return render_template('references.html')

@app.route('/run', methods=['POST'])
def run_script():
fasta_sequence = request.form['fasta_sequence']
Expand Down

0 comments on commit e17bf92

Please sign in to comment.