diff --git a/epdb/views.py b/epdb/views.py index 56884492..0cf559a2 100644 --- a/epdb/views.py +++ b/epdb/views.py @@ -2967,7 +2967,7 @@ def jobs(request): raise BadRequest(f"Couldn't standardize SMILES {parts[0]}!") # name is optional - name = parts[1] if len(parts) > 1 else None + name = ",".join(parts[1:]) if len(parts) > 1 else None pred_data.append([smiles, name]) max_tps = 50 diff --git a/templates/batch_predict_pathway.html b/templates/batch_predict_pathway.html index b9e5412c..ed9f351c 100644 --- a/templates/batch_predict_pathway.html +++ b/templates/batch_predict_pathway.html @@ -9,6 +9,39 @@