From e17bf9269b9d5c99ee8c160d59f73d602dcac21d Mon Sep 17 00:00:00 2001 From: Merit Kayastha <90002479+mkayasth@users.noreply.github.com> Date: Fri, 10 May 2024 01:27:40 -0400 Subject: [PATCH] Updated app.py to include about and references page. --- app.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/app.py b/app.py index 40e03cb..5dfbee0 100644 --- a/app.py +++ b/app.py @@ -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']