From 3f0346b2bb57a97f177a13ceb709629545a0d87c Mon Sep 17 00:00:00 2001 From: Navan Chauhan Date: Thu, 10 Sep 2020 12:39:26 +0530 Subject: removed upload folder from config.ini --- app/views.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'app/views.py') diff --git a/app/views.py b/app/views.py index c272e73..698d621 100644 --- a/app/views.py +++ b/app/views.py @@ -127,8 +127,8 @@ def status(): done="Queued" if protein_name == None: protein_name = r[6] - - PDFReport = "/static/uploads/reports/" + str(jobID) + ".pdf" + + PDFReport = "./app/static/uploads/reports/" + str(jobID) + ".pdf" AndroidModel = "/static/uploads/3DModels/" + str(jobID) + ".gltf" iOSModel = "/static/uploads/3DModels/" + str(jobID) + ".usdz" @@ -247,6 +247,7 @@ def generate_pdbqts(): return render_template('pdbqt_form.html',form=myform) +tfWorking = 0 if app.config['LSTM']: try: import tensorflow as tf -- cgit v1.2.3