Category.java updated to include new category for RNA folding. RNAalifoldParameters...
[jabaws.git] / webservices / compbio / data / msa / Category.java
index 56bf1de..3de1b31 100644 (file)
@@ -34,6 +34,7 @@ public class Category {
        public static final String CATEGORY_ALIGNMENT = "Alignment";\r
        public static final String CATEGORY_DISORDER = "Protein Disorder";\r
        public static final String CATEGORY_CONSERVATION = "Conservation";\r
+       public static final String CATEGORY_RNASTRUCT = "RNA Structure Prediction";\r
 \r
        public String name;\r
        Set<Services> services;\r
@@ -78,10 +79,17 @@ public class Category {
                Category conservation = new Category(CATEGORY_CONSERVATION,\r
                                conservation_services);\r
 \r
+               Set<Services> rnastruct_services = new HashSet<Services>();\r
+               rnastruct_services.add(Services.RNAalifoldWS);\r
+               \r
+               Category rnastruct = new Category(CATEGORY_RNASTRUCT,\r
+                               rnastruct_services);\r
+               \r
                Set<Category> categories = new HashSet<Category>();\r
                categories.add(alignment);\r
                categories.add(disorder);\r
                categories.add(conservation);\r
+               categories.add(rnastruct);\r
 \r
                return categories;\r
        }\r