From 3f406564745090b30c2d7cba7342547d7ddd7965 Mon Sep 17 00:00:00 2001 From: jprocter Date: Wed, 5 Sep 2012 23:20:44 +0100 Subject: [PATCH] JAL-979 tidy up shmmr hardcoded WS definition --- src/jalview/ws/rest/RestClient.java | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/jalview/ws/rest/RestClient.java b/src/jalview/ws/rest/RestClient.java index ac1188d..b1739a5 100644 --- a/src/jalview/ws/rest/RestClient.java +++ b/src/jalview/ws/rest/RestClient.java @@ -320,10 +320,8 @@ public class RestClient extends WSClient implements WSClientI, jalview.ws.rest.params.Alignment aliinput = new jalview.ws.rest.params.Alignment(); // SHMR server has a 65K limit for content pasted into the 'ali' parameter, so we always upload our files. - aliinput.token = "ali_file";//_file"; - aliinput.writeAsFile=true;//true; - //aliinput.token = "ali_file"; - //aliinput.writeAsFile=true; + aliinput.token = "ali_file"; + aliinput.writeAsFile=true; iparams.put(aliinput.token, aliinput); jalview.ws.rest.params.SeqGroupIndexVector sgroups = new jalview.ws.rest.params.SeqGroupIndexVector(); sgroups.setMinsize(2); -- 1.7.10.2