X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fws%2Frest%2FRestJob.java;h=7bd9f490393877f7b69b9e3c8d8482f7fd06f5f7;hb=865a855a4ca87eadb3e5ff284ed32ed307d9c34b;hp=2392e762db0c512f91690fdeec984f5536669c11;hpb=c5194f1c46d312e923a44b3cc3b1d3d0fc304f5b;p=jalview.git diff --git a/src/jalview/ws/rest/RestJob.java b/src/jalview/ws/rest/RestJob.java index 2392e76..7bd9f49 100644 --- a/src/jalview/ws/rest/RestJob.java +++ b/src/jalview/ws/rest/RestJob.java @@ -1,6 +1,6 @@ /* - * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8) - * Copyright (C) 2012 J Procter, AM Waterhouse, LM Lui, J Engelhardt, G Barton, M Clamp, S Searle + * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.0b1) + * Copyright (C) 2014 The Jalview Authors * * This file is part of Jalview. * @@ -14,6 +14,7 @@ * PURPOSE. See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along with Jalview. If not, see . + * The Jalview Authors are detailed in the 'AUTHORS' file. */ package jalview.ws.rest; @@ -106,11 +107,11 @@ public class RestJob extends AWsJob } else { - // TODO: move validation of input data to SeqGroupIndexVector - if ((prm.getValue() instanceof SeqGroupIndexVector) - && (_input.getGroups() != null && _input.getGroups() - .size() >= prm.getValue().min)) + if (prm.getValue() instanceof SeqGroupIndexVector + && _input.getGroups() != null + && _input.getGroups().size() >= -1 + prm.getValue().min) { + // the test above is not rigorous but fixes JAL-1298, since submission will fail if the partition set doesn't contain at least one partition alinp.add(prm.getValue()); } else