From 52c25750c8aa1cf013b9fca802e527d4b26fda26 Mon Sep 17 00:00:00 2001 From: Cezary Czaplewski Date: Fri, 4 Sep 2020 01:10:24 +0200 Subject: [PATCH] dock adv initial multiplex 3 --- django_simple/todo/views.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/django_simple/todo/views.py b/django_simple/todo/views.py index 7a541dc..1b3523c 100644 --- a/django_simple/todo/views.py +++ b/django_simple/todo/views.py @@ -969,6 +969,18 @@ def addmlist(request,task_id): 'temperatures': '["270", "280", "290", "300", "310", "320", "330", "345"]' } + elif task.unres_ff == 'FF2' and task.type=="dock": + data= {'name':task.name,'nrep':task.remd_nrep,'multiplexing': + '["3", "3", "3", "3", "3", "3", "3", "3"]', + 'temperatures': + '["270", "280", "290", "300", "310", "320", "330", "345"]' + } + elif task.unres_ff == 'opt-wtfsa-2' and task.type=="dock": + data= {'name':task.name,'nrep':task.remd_nrep,'multiplexing': + '["3", "3", "3", "3", "3", "3", "3", "3"]', + 'temperatures': + '["250", "260", "270", "280", "290", "300", "315", "330"]' + } elif task.unres_ff == 'FF2': data= {'name':task.name,'nrep':task.remd_nrep,'multiplexing': '["1", "1", "1", "1", "1", "1", "1", "1"]', -- 1.7.9.5