Add all needed infrastructure for MSAprobs and GLprobs
[jabaws.git] / webservices / compbio / ws / client / ServicesUtil.java
index 7084028..8f9bcdc 100644 (file)
@@ -15,6 +15,8 @@ import compbio.runner.msa.ClustalW;
 import compbio.runner.msa.Mafft;\r
 import compbio.runner.msa.Muscle;\r
 import compbio.runner.msa.Probcons;\r
+import compbio.runner.msa.MSAprobs;\r
+import compbio.runner.msa.GLprobs;\r
 import compbio.runner.msa.Tcoffee;\r
 import compbio.runner.structure.RNAalifold;\r
 \r
@@ -31,7 +33,7 @@ public class ServicesUtil {
                return null;\r
        }\r
 \r
-       public static Class<? extends Executable<?>> getServiceImpl(Services service) {\r
+       private static Class<? extends Executable<?>> getServiceImpl(Services service) {\r
                switch (service) {\r
                        case AAConWS :\r
                                return AACon.class;\r
@@ -49,6 +51,10 @@ public class ServicesUtil {
                                return Tcoffee.class;\r
                        case ProbconsWS :\r
                                return Probcons.class;\r
+                       case MSAprobsWS :\r
+                               return MSAprobs.class;\r
+                       case GLprobsWS :\r
+                               return GLprobs.class;\r
                        case DisemblWS :\r
                                return Disembl.class;\r
                        case GlobPlotWS :\r